@charset "UTF-8";
/* CSS Document */
@charset "UTF-8";
/* CSS Document */

/*Strip the ul of padding and list styling*/
ul.top-nav, ul.hidden {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
}

/*Create a horizontal list with spacing*/
.top-nav li {
	display:inline-block;
	float: left;
}

/*Style for menu links*/
.top-nav li a {
	display:block;
	height: 29px;
	line-height: 29px;
	font-size:14px;
	font-weight:400;
	text-align:center;
	color: #fff;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #4962A0;
}

/*Hover state for top level links*/
.top-nav li:hover a { background-color:#05264C;
}

/*Style for dropdown links*/
.top-nav li:hover ul a {
	background: #225293;
	font-size: 12px;
	color: #fff;
	text-align:left;
	height: 27px;
	line-height: 27px;
}

/*Hover state for dropdown links*/
.top-nav li:hover ul a:hover {
	color: #fff;
	background:#062953;
}

/*Hide dropdown links until they are needed*/
.top-nav li ul {
	display: none;
}

/*Make dropdown links vertical*/
.top-nav li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.top-nav li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}

/*Display the dropdown on hover*/
.top-nav li a:hover + .hidden, .hidden:hover {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.show-menu {
	text-decoration: none;
	color: #fff;
	font-size:14px;
	background: #062955;
	text-align: center;
	padding: 7px 0;
	display: none;
}

/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}


/*Responsive Styles*/

@media screen and (max-width : 767px){
	/*Make dropdown links appear inline*/
	ul.top-nav, ul.hidden {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.top-nav li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.top-nav li, .top-nav li a, .top-nav li ul li a {
		width: 100%;
		padding-left: 0px;
	}
	.top-nav li:hover ul a { text-align:center;}
	/*Display 'show menu' link*/
	.show-menu {
		display:block;
	}
	.top-nav li a { background:#324E80;}
}
@media (min-width: 768px) {
	.top-nav li a {padding-right: 15px; padding-left: 15px;	background-image: url(images/top-nav-bckg.png);	background-repeat: repeat-x;}
	}
	
/* left col nav*/

ul.leftnav {
	list-style: none;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
.leftnav a {
	font-size: 13px;
	font-weight: bold;
	color: #444;
	display: block;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	padding-left: 10px;
}
.leftnav li a:hover {
	color: #214198;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #15357D;
	text-decoration: none;
}

.leftnav li.lastitem a {
}
.leftnav li.lastitem a:hover {
}
.leftnav li.active span.menuhere{
	font-weight: bold;
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
	font-size: 13px;
	color: #333;
	padding-left: 10px;
	background-color: #D4D4D4;
}
.leftnav2 li.active span.innermenuhere{
	display: block;
	padding-left: 18px;
	font-size: 12px;
	color: #333;
	background-color: #D4D4D4;
}
ul.leftnav2 {
	list-style: none;
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.leftnav2 a {
	font-size: 12px;
	font-weight: normal;
	color: #444;
	display: block;
	padding-left: 18px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.leftnav2 li a:hover {
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.leftnav2 li.lastitem a {
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}
.leftnav2 li.lastitem a:hover {
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}