
body {
  font-family: sans-serif, 'Nanum Gothic';
  font-size: 16px;  
}

*, *:before, *:after {
  -webkit-border-sizing: border-box;
  -moz-border-sizing: border-box;
  border-sizing: border-box;
}

.title {
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  line-height: 1;
  color:#042d70;  
  color: rgba(4, 45, 112, 0.6);  
}
.sidemenu {
  z-index: 1;
  width: 180px;
  margin: 5px 0px 0px -17px;      
}

.sidemenu > ul {
  list-style: none;
  padding: 0px;    
  margin: 10 0 10 0;       
}

.sidemenu a {
  display:block;
  height:30px;  
  text-decoration: none;  
  color:dimgray;         
}

.dropdown {
  position: relative;
  font-size:13px;
  font-weight: bold;
  text-decoration: none;      
}

.dropdown [data-toggle="dropdown"] {  
  display: block;
  color: dimgrey;  
  height:17px;
  background: none;      
  -moz-box-shadow: 0 0px 0 #ccc inset, 0 -1px 0 #ccc inset;
  -webkit-box-shadow: 0 0px 0px #ccc inset, 0 -1px 0 #ccc inset;
  box-shadow: 0 0px 0 #ccc inset, 0 -1px 0 #ccc inset;
  padding-left:10px;  
  padding-bottom: 6px;
  margin-bottom: 5px;  
}
.dropdown:hover {  
  color: #042d70;
  color: rgba(4, 45, 112, 0.8); 
}

.dropdown [data-toggle="dropdown"]:before {
  position: absolute;
  display: block;
  content: '\25BC';
  font-size: 9px;
  color: gray;
  top: 3px;
  right: 10px;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.dropdown > .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding-left:0px;      
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -moz-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -moz-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  animation: hideAnimation 0.2s ease-out;
  -moz-animation: hideAnimation 0.2s ease-out;
  -webkit-animation: hideAnimation 0.2s ease-out;
}
.dropdown > .dropdown-menu li {
  padding: 0;       
}
.dropdown > .dropdown-menu li a {
  display: block;  
  font-size:12px;
  font-weight: 100;  
  background: none;
  -moz-box-shadow: 0 0px 0 #ccc inset, 0 -1px 0 #ccc inset;
  -webkit-box-shadow: 0 0px 0 #ccc inset, 0 -1px 0 #ccc inset;
  box-shadow: 0 0px 0 #ccc inset, 0 -1px 0 #ccc inset;  
  text-decoration: none;      
  height: 17px;
  color:dimgrey;
  display:block;
  padding-left: 15px;
  padding-bottom: 6px;
  margin-bottom: 5px;  
}
.dropdown > .dropdown-menu li a:hover {
  background: #EEE;  
}
.dropdown > input[type="checkbox"] {  
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%; 
}
.dropdown > input[type="checkbox"]:checked ~ .dropdown-menu {  
  max-height: 9999px;  
  display: block; 
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  animation: showAnimation 0.2s ease-in-out;
  -moz-animation: showAnimation 0.2s ease-in-out;
  -webkit-animation: showAnimation 0.2s ease-in-out;
  -moz-transition: max-height 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out;
  -webkit-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
}
.dropdown > input[type="checkbox"]:checked + a[data-toggle="dropdown"]:before {
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}


