/* General menu styling */
.nav {
display:block;
	float:left;
	width:660px;
	margin:0;
	padding:0px;
	list-style:none;
	font-size:13px;
	font-weight:normal;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	background-color:;  /*tobbar warna asal #00004B */
	height: 50px;
}

.nav>li {
display: block;
float: left; 
margin: 0;
padding: 0;

}

.nav>li>a {
display: block;
position: relative;
padding: 10px 20px;
font-family:Verdana, Arial, Helvetica, sans-serif;
color: #fff;
font-size: 13px;
text-decoration: none;


-webkit-transition: color .3s ease-in;
-moz-transition: color .3s ease-in;
-o-transition: color .3s ease-in;
-ms-transition: color .3s ease-in;
}

.nav>li>a:hover, .nav>li:hover>a {
color: #059BD8;
}

.nav>.dropdown>a {
padding: 10px 30px 20px 30px;
}

.dropdown>a::after {
content: "";
position: absolute;
top: 20px;
right: 10px;
width: 30px;
height: 7px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);

}
 
.dropdown>a:hover::after, .dropdown:hover>a::after {
border-color: #059BD8;

}

.nav ul {
position: absolute;
margin: 0;
padding: 0;
list-style: none;
display: block;
}

/* General layout settings for the link containers of the submenus */
.nav ul li {
position: absolute;
top: -9999px; 
height: 0px;
display: block;
margin: 0;
padding: 0;

-webkit-transition: height .2s ease-in;
-moz-transition: height .2s ease-in;
-o-transition: height .2s ease-in;
-ms-transition: height .2s ease-in;
}

.dropdown:hover>ul>li {
height: 30px;
position: relative;
top: auto;
}


.nav ul li a {

padding: 4px 20px;
width: 160px;
display: block;
position: relative;
font-family: "Open Sans Condensed", Arial, Helvetica, sans-serif; 
color: #ffffff;
text-decoration: none;
font-size: 12px;
padding:7px 10px;
background-color: black;
background: rgba(0, 0, 0, .5);
-webkit-transition: color .3s ease-in, background .3s ease-in;
-moz-transition: color .3s ease-in, background .3s ease-in;
-o-transition: color .3s ease-in, background .3s ease-in;
-ms-transition: color .3s ease-in, background .3s ease-in;
}


/*  time select dropdown*/
.nav ul li:hover>a, .nav ul li a:hover {
color: #ffffff;
background: rgba(0, 0, 0, .75);
background-color: ;   /*warna asal #00004B */
}

.nav ul .dropdown:hover ul {
left: 160px;
top: 0px;
}


.nav ul .dropdown a::after {
width: 6px;
height: 6px;
border-bottom: 0;
border-right: 1px solid #fff;
border-top: 1px solid #fff;
top: 12px;
}

.nav ul .dropdown:hover>a::after, .nav ul .dropdown>a:hover::after {
border-right: 1px solid #0fd0f9;
border-top: 1px solid #0fd0f9;
}

.active{
background-color: #059BD8;
color: #059BD8;
}