@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
 *
 */

@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 {

 margin-left:0px;
 border-left:1px solid #fff;
 list-style:none;
 color: #093c47;
}

	ul.dropdown li {
	 padding: 7px 10px;/*for width between top bar menu items -- affects dropdowns and top menu*/
	 border-style: solid;
	 border-width: 0px 1px 0px 0px;
	 border-color: #fff;
	
	 color: #093c47;
	
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover: {
	color: #40940F;
	}
	

	/*colors for top bar menu items*/
.menuBar a {font-weight:bold;}

	ul.dropdown a:link{ color: #093c47; text-decoration: none; }
	ul.dropdown a:visited	{ color: #093c47; text-decoration: none; }
	ul.dropdown a:hover		{ color: #40940F; text-decoration: none; }
	ul.dropdown a:active	{ color: #093c47; text-decoration: none; }


	/* -- level mark -- */
/*colors for topdown off top menu - level1*/
	ul.dropdown ul {
	 width: 150px;
	 margin-top: 0px;
	 border-left:1px solid #fff;
	 list-style:none;
	 background-color:#eeeeee;
	 font-weight:normal;
	}

/*affects the drop-down menu off the top bar menu*/
		ul.dropdown ul li {
		 font-weight: normal;
		 border-bottom:1px dashed #e0e0e0;
		line-height:18px;
		padding:0px;
		margin:0px;
		padding-left:5px;
		font-size:13px;
		padding-top:3px;
		padding-bottom:3px;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 20px;
 background-image: url(images/nav-arrow-down.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}
