/* CSS 
SubNav at bottom of document */

/*------------*/
/* Start Nav */
#nav_holder {
	clear: both;
	text-align: center;
	padding-left: 90px;
	height: 26px;
	margin-bottom: 5px;
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
}

#nav {
	font-weight: bold;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}

#nav li {
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
	height: 26px;
	line-height: 26px;
}

#nav li a {
	height: 26px;
	line-height: 26px;
	color: #eeeeee;
	text-decoration: none;
	padding: 3px 25px;
	border-left: 1px solid #cccccc;
	text-transform: uppercase;
}
#nav li a.home { border: none; }

#nav li a:hover {
	color: #cccccc;
	background: #30588b;
}
/* second level menu lists if needed */
#nav li ul {
	background: #f4f4f4;
	border: double #999999;
	border-top: none;
	display: none;
	position: absolute;
	top: 26px;
	left: 0px;
	text-align: left;
	padding-top: 5px;
	padding-bottom: 5px;
	list-style: none;
}
/* end 'if needed' lists */
/* define second level menu width - especially for ie7 */

#nav li.about ul,
#nav li.about ul li {
	width: 140px;
	padding-left: 5px;
	margin: 0;
}
#nav li.practice ul,
#nav li.practice ul li {
	width: 140px;
	padding-left: 5px;
	margin: 0;
}
/* second and 3rd level lists */
#nav li ul li {
	height: 20px;
	line-height: 20px;
	text-align: left;
	padding: 0;
	margin: 0;
}

#nav li ul li a {
	display: block;
	padding: 0px;
	margin: 0;
	line-height: 18px;
	border: none;
	color: #0a3873;
}

#nav li ul li a:hover {
	background-image: none;
	background-color: transparent;
}

#nav li:hover ul, #nav li.over ul { display: block; }

/*  end second & 3rd level lists */
/***********/
/* END NAV */
/***********/

/*****BEGIN SUBNAV ****/

/* Start SubNav */
#sub_nav_holder {
	clear: both;
	text-align: center;
	height: 25px;
	z-index: 10;
	border-top: 1px solid #999999;
}

#sub_nav {
	font-weight: bold;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12px;
}

#sub_nav li {
	display: inline;
	margin: 0;
	padding: 0;
	height: 25px;
	line-height: 25px;
}

#sub_nav li a {
	line-height: 25px;
	color: #0a3873;
	font-weight: bold;
	text-decoration: none;
	padding: 3px 25px;
}
#sub_nav li a:hover {
	color: #666666;
}
/* *** end subnav *** */