@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
 *
 */




/*-------------------------------------------------/
 * @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: bold;
}

	ul.dropdown li {
	 padding: 0px 10px 0px 10px;
	 
	 border-left:1px solid #fff; border-right:1px solid #fff;
	 background-color: #fff;
	 background-image: url(../../../../images/bullet_arrow.gif);
 		background-position: 5% 50%;
 		background-repeat: no-repeat;
	 color: #444444;
	}

	ul.dropdown li.hover {
	 }
	ul.dropdown li:hover {
	
	 color: #444444;
	}

	ul.dropdown a:link	{ color: #993333; text-decoration: none; padding-left:10px;}
	ul.dropdown a:visited	{ color: #993333; text-decoration: none; padding-left:10px;}
	ul.dropdown a:hover		{ color: #993333; text-decoration: underline; padding-left:10px;}
	ul.dropdown a:active	{ color: #993333; text-decoration: none; padding-left:10px;}


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 225px;
	 margin-top: 0px;
	}

		ul.dropdown ul li {
		 border-left:1px solid #b9121b; border-right:1px solid #b9121b;
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 display: inline;
 padding-right: 15px;
 background-image: url(../../../../images/bullet_arrow4.gif);
 background-position: 95% 50%;
 background-repeat: no-repeat;

}

