header, footer {
    background-color: #dcdcd1;                                            
    text-align: left;
}

header h1 {
    display:inline-block;  
    color: #00109c;                                                            
    font-size: 18pt;                                                         
    font-family: "돋움, Arial";
    vertical-align:top;   
}

nav {
    background-color: #dcdcd1;                                            
    text-align: left;
}    

.btnlogin {
    background-color: #ecc996;
    border: no;
    color: black;
    padding: 1px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: "돋움, Arial";
    font-weight: bold;
    font-size: 10;
    margin: 0px 0px;
    cursor: pointer;
}

section h2 {
    color: #000000; 
    font-size: 14pt; 
    text-align: justify;                         
    font-family: "돋움, Arial";
}   

section p {
    color: #000000; 
    font-size: 12pt; 
    text-align: justify;                         
    font-family: "돋움, Arial";
}  

footer p {
    color: #1904f9; 
    font-size: 9pt; 
    text-align: center;                      
    font-family: "돋움, Arial"; 
    font-weight: bold;
    padding: 6px;
}  

a:link, a:visited, a:active {
    color: #000000;    
    background-color: transparent;                                  
    text-decoration: none;
}  

/* 신메뉴 *******************************************/
* {
    margin: 0;
    padding: 0;
}
    
ul li{
    list-style: none;
}
a {
    text-decoration: none;
    color:#333;
}

#menu {
    font:bold 10px "malgun gothic";
    width:auto;
    height:30px;
    background: #ccc;
    color:black;
    line-height: 30px; 
    margin:auto 0 0 auto;
    text-align: center;
}

#menu > ul > li {
    float:left;
    width:100px;
    position:relative;
}
#menu > ul > li > ul {
    width:100px;
    display:none;
    position: absolute;
    font-size:9px;
    background: skyblue;
}
#menu > ul > li:hover > ul {
    display:block;
    
}
#menu > ul > li > ul > li:hover {
    background: orange;
    transition: ease 1s;
}

/*******   신메뉴 끝 *************/
