/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: 192px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color:#0b55a0;
  overflow-x: hidden;
  padding-top: 0px;
  color: whitesmoke;
}

.sidenav2 {
  height: 100%;
  width: 192px;
  position: relative;
  float: left;
  z-index: 1;
  top: 0;
  left: 0;
  background-color:#0b55a0;
  padding-top: 0px;
  color: whitesmoke;
}

.sidenav:hover{
	background-color: #0c4e93;
}
/* On mouse-over */
.sidenav dropdown-btn:hover {
  color: #f1f1f1;
  background-color: #0e2438;
  cursor: default;
}

.sidenav a:hover {
  color: #f1f1f1;
  background-color: #0e2438;
}

/* Add an active class to the active dropdown button */
.active {
  background-color:#d9dbdd;
  color: #002156;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  /*background-color: #d9dbdd;*/
  padding-left: 15px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 15px;}
}

.menu{
	padding-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

ul li{
	padding-left: 10px;
}

ul.menu li ul {
	/*display:none;
	display:block;
	width: 100%;
	position:relative;
	text-decoration: none;
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;*/
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: opacity 800ms, visibility 3ms;
}

ul.menu li:hover ul {
	visibility: visible;
	opacity: 1;
	width: 100%;
	position:relative;
	text-decoration: none;
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
}

ul.menu li ul li a {
	display:block;
	width: 100%;
	position:relative;
	display: block;
	text-decoration: none;
	text-align: left;
	padding: 6px 6px 6px 2px;
	color: whitesmoke;
}

ul.menu li ul li a:hover {
	background-color: #063465;
}

.dropdown-btn {
	position: relative;
	top: 0px;
	right: 0px;
	left: 0px;
	text-decoration: none;
	color: whitesmoke;
	display: block;
	border: none;
	background: none;
	padding: 6px 6px 10px 10px;
	text-align: left;
	outline: none;
	font-size: 16px;
	text-shadow: 1px 2px black;
}

.dropdown-btn:hover {
	background-color:  #094584;
}

.dropdown-btn a {
	display:block;
	width: 100%;
	position:relative;
	display: block;
	text-decoration: none;
	text-align: left;
	color: whitesmoke;
}

.dropdown-btn a:hover {
	background-color:  #094584;
}

.sub_item{
	width: 100%;
	position: relative;
}