@charset "UTF-8";
/* CSS Document */

.navbar {
	height: 40px;
	width: 1050px;
	padding: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	margin-top: 0px;
	background-color: #1A6499;
	-webkit-box-shadow: 0 8px 6px -6px black;
	   -moz-box-shadow: 0 8px 6px -6px black;
	        box-shadow: 0 8px 6px -6px black;
}
.navbar ul {
	font-family: 'Bitter', serif;
	font-size: 14px;
	display: inline;
	list-style: none;
	margin: 0;
    padding: 0;
}
.navbar ul li {
	display: block;
	position: relative;
	float: left;
	color: #FFF;
	height: 40px;
	width: auto;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #207EC3; 
}
.navbar li ul{
	display: none;
}
.navbar ul li a {
	display: block;
	line-height: 40px;
	color: #fff;
	letter-spacing: 1px;
	text-decoration: none;
	padding: 0px 14px;
	background-color: #13639B;
	transition: background-color .5s ease-in;
	-webkit-transition: background-color .3s ease-in;
	-moz-transition: background-color .3s ease-in;
	-o-transition: background-color .3s ease-in;
}
.navbar ul li a:hover {
	background-color: #207EC4;
}
ul li a.current,ul li a.current:hover,ul li a.current:active{
	background: #fff;
	color: #CC6633;
}
li:hover ul {
	display: block;
	position: absolute;
	top: 41px;
	z-index: 500;
	-webkit-box-shadow: 0 8px 6px -6px black;
	   -moz-box-shadow: 0 8px 6px -6px black;
	        box-shadow: 0 8px 6px -6px black;
}
li:hover li {
	float: none;
}
li:hover a {
	background-color: #207EC4;
}
li:hover li a:hover {
	background: #207EC4;
}
