a {text-decoration:none; color:blue;}
a:link {text-decoration:underline;}
a:visited { text-decoration:none}
a:hover {color:#5f00ff; text-decoration:underline}
td {text-align:justify; font-family:굴림체; font-size:9pt; color:#111666}
/***td 안에 padding:5pt를 넣으면 테이블의 셀패딩이 말을 듣지 않는다***/
p {font-family:굴림체; margin-left:5pt; text-indent:-5pt; font-size:10pt; text-align:justify; line-height:150%;}
.feyn {font-family:inherit; margin-left:10pt; text-indent:-5pt; font-size:9pt; text-align:justify; line-height:150%;}


.floating-menu {
    font-family:;
    background: ;
    padding: 0px;
    width: 155px;
    z-index:;
    position: fixed;
}


.floating-menu2 {
    font-family:;
    background: ;
    padding: 0px;
    width: 155px;
    z-index:;
    right:5px;
    position: fixed;
}

.floating-menu3 {
    font-family:;
    background: ;
    padding: 0px;
    width: 400px;
    z-index:;
    right:5px;
    position: fixed;
} 

body{
    background:;
}
.nav{
    background: #37f;
    text-align:left;
}
.navbar {
    overflow: hidden;
    background-color: white;/*메뉴판 바탕색**/
    
}

.navbar a {
    float: left;
    font-size: 16px;
    color: blue;
    text-align: center;
    padding: 14px 14px;
    text-decoration: none;
    border: none;
}

.dropdown {
    float:left;
    overflow: hidden;
    
}

.dropdown .dropbtn {/**메뉴판*/
    font-size: 20px;  
    border: none;
    outline: none;
    color:black;/*색갈*/
    padding:;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: white;/*cursor 갖다대면 변하는 색갈*/
}

.dropdown-content {
    display: none;
    position: absolute;
    
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color:#5f00ff;
    font-size:14px;
    padding: 2px 5px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #F5F5DC;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/***multilevel dropdown****/
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


