#header {
    width: 100%;
    height: 70px;
    z-index: 10;
	margin-bottom: 20px;
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.15);
	background-color: #fff;
}

#header >  section {
    width: 100%;
}

#header > section > div {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* 헤더 탑(인포) 부분 */
#header > section.header-top {
    height: 70px;
}
#header > section.header-top > div > div.top-logo {
    width: 496px;
    height: 100%;
    background-color: lightgrey;
}
#header > section.header-top > div > div.top-info {
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header > section.header-top > div > div.top-info > .manual-download {
	padding: 0 18px;
	height: 33px;
    background-color: #f2f8fd;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header > section.header-top > div > div.top-info > .manual-download > span:first-child {
    color: #12166d;
    font-weight: 700;
    margin-right: 3px;
    font-size: 14px;
    cursor: pointer;
}
#header > section.header-top > div > div.top-info > .manual-download > span:first-child > a{
    color: #12166d;
}
#header > section.header-top > div > div.top-info > .manual-download > span:last-child > img {
 	margin-top: 8px;
    width: 20px;
    cursor: pointer;
}
#header > section.header-top > div > div.top-info > .top-info-menu {
	display: flex;
	align-items: center;
}
#header > section.header-top > div > div.top-info > .top-info-menu > div {
	margin-left: 6px;
}
#header > section.header-top > div > div.top-info > .top-info-menu > .server-time {
	background-color: #f2f8fd;
	padding: 0 18px;
	height: 33px;
	display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
}

/* 헤더 메뉴 부분 */
#header > section.header-menu {
    background-color: #253586;
    height: 60px;
}
#header > section.header-menu > div > div.main-menu {
    width: auto;
    height: 100%;
    position: relative;
}
#header > section.header-menu > div > div.main-menu > div.main-menu-title {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
#header > section.header-menu > div > div.main-menu > div.main-menu-title > a {
    color:#fff;
    cursor: pointer;
}
#header > section.header-menu > div > div.main-menu > div.main-menu-select > a {
    /* color:#253586; */
    font-weight: 900;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu {
    display: none;
    position: absolute;
    width: 200px;
    min-height: 100px;
    background-color: #fff;
    top: 60px;
    left: 0;
    padding: 8px;
    border: 1px solid #333;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul {
    border-bottom: 1px solid #333;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul:last-child {
    border-bottom: 0;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul > li {
    padding: 8px;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul > li > a {
    color:#333;
    cursor: pointer;
    padding-left: 5px;
}

/* 각 메뉴 마우스 오버시 동작하는 스타일 */
#header > section.header-menu > div > div.main-menu:hover > div.main-menu-title > a {
    font-weight: 900;
}
#header > section.header-menu > div > div.main-menu:hover > div.sub-menu {
    display: block;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul > li.sub-menu-route:hover {
    background-color: #253586;
}
#header > section.header-menu > div > div.main-menu > div.sub-menu > ul > li.sub-menu-route:hover > a {
    color: #fff;
    font-weight: 700;
}




#footer {
    width: 100%;
    height: 110px;
    background-color: #46484C;
    padding: 24px;
}

#footer > section {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#footer > section > .footer-logo {
    width: 361px;
    height: 100%;
    background-color: lightgrey;
}
#footer > section > .copyright {
    padding-left: 10px;
    align-self: flex-end;
    font-size: 14px;
}
#footer > section > .copyright > p {
    color: #919192;
}