@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 {
	color: #FB0B11;
	font-size:100%;
	font-family:"Trebuchet MS", Arial, sans-serif;
	width: 100%;
}

	ul.dropdown li {
	 padding: 5px 0px 5px 0px; /*vertical padding (gray above text)*/
	 border-style: solid;
	 border-width: 0px 2px 3px 2px; /*vertical borders (black); 4px of black btwx each menu item*/
	 border-color: #000000;
	 background-color: #222222; /*Gray background*/
	 color: #FB0B11;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #333333;
	 color: #6699FF;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #FB0B11; text-decoration: none; }
	ul.dropdown a:hover		{ color: #6699FF; }
	ul.dropdown a:active	{ color: #FBOB11; }


	/* -- level mark -- */

	ul.dropdown ul {
	 width: 270px;
	 /*text-align:left;*/
	 margin-top: 3px;  /*drop down the "drop down" items by 3 px to seperate the "drop down" menu from the main horiz menu" */
	 margin-left: -2px; /*push drop down menu over 2 px to left to account for difference in border widths */
	}

		ul.dropdown ul li {
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @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%;
}