@charset "UTF-8";

/**
 * Horizontal CSS Drop-Down Menu Module
 *
 * @file		dropdown.css
 * @package		Dropdown
 * @version		0.7.1
 * @type		Transitional
 * @stacks		597-599
 * @browsers	Windows: IE6+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2006-2008 Live Web Institute. All Rights Reserved.
 *
 */

ul.dropdown,
ul.dropdown li,
ul.dropdown ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

ul.dropdown {
	position: relative;
	z-index: 50;
	float: left;
}

ul.dropdown li {
	float: left;
	line-height: 1.3em;
	zoom: 1;
	display: block;
	background-image: url(images/nav_sep.png);
	background-repeat: no-repeat;
	background-position: right center;
}
ul.dropdown li:last-child {
	background-image: none;
}

ul.dropdown li a {
	color: #007AC3;
	text-decoration: none;
	float: left;
	height: 34px;
	padding-right: 20px;
	padding-left: 20px;
	font-weight: normal;
	font-size: 16px;
	padding-top: 16px;
	background-repeat: no-repeat;
	background-position: right center;
}
ul.dropdown li a:hover /*ul.dropdown li:hover*/ {
	background-image: url(images/bg_nav_hover.jpg);
	background-repeat: repeat-x;
	background-position: left 45px;
}
ul.dropdown li.hover,
ul.dropdown li:hover {
 position: relative;
 z-index: 55;
 cursor: default;
}
ul.dropdown ul {
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 51;
	width: 200px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #9ABEE5;
	border-right-color: #9ABEE5;
	border-bottom-color: #9ABEE5;
	border-left-color: #9ABEE5;
	-webkit-border-radius: 0px 0px 5px 5px;
	border-radius: 0px 0px 5px 5px;
	/*-webkit-box-shadow: 1px 1px 2px 2px #666;
	box-shadow: 1px 1px 2px 2px #666;*/
	padding-bottom: 10px;
	background-color: #007AC3;
	padding-top: 10px;
}

ul.dropdown ul li {
	float: none;
}
ul.dropdown ul li a {
	width: 160px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-weight: normal;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	height: auto;
	font-size: 12px;
	color: #FFFFFF;
}
ul.dropdown ul li a:hover {
	background-color: #007AC3;
	background-image: none;
	text-decoration: none;
	font-weight: bold;
	font-size: 12.5px;
}
ul.dropdown    li  a.current_nav  {
	background-image: url(images/bg_nav_hover.jpg);
	background-repeat: repeat-x;
	background-position: left 45px;
}
ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}
ul.dropdown li:hover > ul {
 visibility: visible;
}
