@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
         {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 40px;
}
ul.dropdown li ul
   {
	list-style: none;
	margin: 0;
	padding: 0;
	height: 20px;
}

ul.dropdown {
	position: relative;
	z-index: 297;
	float: none;
	width: 100%;
	height: 40px;
}

ul.dropdown li {
	float: left;
	line-height: 40px;
	vertical-align: middle;
	zoom: 1;
}

ul.dropdown li.hover,
ul.dropdown li:hover {
	position: relative;
	z-index: 599;
	cursor: default;
	color: #FFFFFF;
}

ul.dropdown ul {
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 598;
	width: auto;
}

ul.dropdown li.last ul
{
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: auto;
	z-index: 598;
	width: auto;
	right: 0px;
}


ul.dropdown ul li {
	float: none;
}


ul.dropdown ul ul {
 top: 1px;
 left: 99%;
}

ul.dropdown li:hover > ul {
 visibility: visible;
}

@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute. All Rights Reserved.
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *
 s

@import "helper.css";*/


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */


ul.dropdown {
	font-weight: normal;
	background-repeat: no-repeat;
}
ul.dropdown a
{
	color: #FFF;
	text-decoration: none;
	text-shadow: 1px 1px 1px #222;
	/*filter: dropshadow(color=#222, offx=1, offy=1);*/

}


	ul.dropdown li {
	color: #FFF;
	line-height: 40px;
	font-family: "Trebuchet MS";
	font-size: 13px;
	font-weight: bold;
	text-transform: none;
	padding-left: 26px;
	padding-right: 26px;
	background-image: url(../images/menu-bg.jpg);
	background-repeat: no-repeat;
	background-position: center 0px;
	}
ul.dropdown li.hover,
ul.dropdown li:hover   
,ul.dropdown li.selected
{
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(../images/menu-bg.jpg);
	background-repeat: no-repeat;
	background-position: center -40px;
	text-shadow: 1px 1px 1px #000;
	/*filter: dropshadow(color=#000, offx=1, offy=1);*/

	}
ul.dropdown a:link,	ul.dropdown a:visited 	{
	text-decoration: none;
	display: block;
}
ul.dropdown li a:hover		{
	color: #FFFFFF;
	text-shadow: 1px 1px 1px #000;
	/*filter: dropshadow(color=#222, offx=1, offy=1);*/

}
ul.dropdown li:hover a {
	color:#FFFFFF
}

ul.dropdown li:hover li a
{
	color:#FFF
}


	/* -- level mark -- */

	ul.dropdown ul {
	margin-top: 0px;
	width: auto;
	background-color: #eee;
	}
ul.dropdown ul li     {
	font-weight: normal;
	text-transform: none;
	font-size: 12px;
	white-space: nowrap;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #0190D4;
	border-top-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
	color: #FFFFFF;
	background-color: #007cc2;
	background-image: none;
	line-height: 35px;
	text-decoration: none;
	height: 35px;
	text-align: left;
		}
ul.dropdown ul li:hover
        {
	font-weight: normal;
	color: #FFF;
	background-color: #F38121;
	background-image: none;
}
