@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 "../../../free-css-drop-down-menu/css/dropdown/themes/_template/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: bold;
}

ul.dropdown li {
	 padding: 4px 30px 5px;
	 background-color: rgb(236,26,36);
	}
	
ul.dropdown ul li {
	 background-color:#000;
	 filter:alpha(opacity=97);
	-moz-opacity:0.97;
	-khtml-opacity: 0.97;
	opacity: 0.97;
	}

ul.dropdown li.hover,
ul.dropdown li:hover {
	 background-color:#333;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color:#fff; text-decoration: none;}
	ul.dropdown a:hover		{ color:#fff;}
	ul.dropdown a:active	{ color:#fff;}

	ul.dropdown li.precast a:link,
	ul.dropdown li.precast a:visited {	color:#eee; text-decoration:none; margin-bottom:-1px;
										padding-bottom:1px; padding-left:2px; padding-right:3px;}
	ul.dropdown li.precast a:hover	 { 	color: #eee; text-decoration:none;}
	ul.dropdown li.precast a:active	 {  color: #eee; text-decoration:none;}

	ul.dropdown li.precast li.precastdrop a:link,
	ul.dropdown li.precast li.precastdrop a:visited	{ color:#000; border-left:3px solid transparent; padding:3px 1px 1px 5px; text-decoration:none; font-weight:normal;}
	ul.dropdown li.precast li.precastdrop a:hover,
	ul.dropdown li.precast li.precastdrop a:active	{ color:#555; border-left:4px solid #000; padding:2px 1px 2px 5px; text-decoration:underline; font-weight:normal;}

	/* -- level mark -- */

	ul.dropdown ul {
	 width:178px;
	 margin-top:0px;
	 margin-left:1px;
	}

	ul.dropdown ul li {
	 font-weight: normal;
	}

/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */

ul.dropdown *.dir {
 padding-right: 0px;
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 1px;
 padding-left: 15px;
 background-position: 0 50%;
}