@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.1
 * @type		transitional
 * @browsers	Windows: IE5+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *
 */
 
 /* External Fonts 

font-family: 'Open Sans', sans-serif;
font-weight: 400, 600


/*-------------------------------------------------/
 * @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;
 width: 100%;
 height: 30px;
 text-align: center;
}

	ul.dropdown li {
		color: #fff;
		font: 600 15px 'Open Sans', Arial, sans-serif;
		padding: 0 15px;
		line-height: 30px;
		height: 30px;
	}
	
	ul.dropdown li:last-child {
		padding: 0 14px 0 13px;
		
		float: right;
	}


	ul.dropdown li.hover,
	ul.dropdown li:hover {
	color: #fff;
	background: url(../images/nav_on.png) repeat-x;
	}

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


	/* -- level mark -- */

	ul.dropdown ul {
	 margin-top: 0px;
	 width: auto;
	 box-shadow: 0 0 5px #ababab;
	 background: #fff;
	 
	}

		ul.dropdown ul li {
		 font-weight: normal;
		 background: #fff;
		 text-align: left;
		 color: #fff;
		 border-right: none;
		}
		
		ul.dropdown ul li:last-child {
		 float: left;
		}

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


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


ul.dropdown a li.dir {
	color: #fff;
}

.current {
    background: url(../images/nav_on.png) repeat-x;
}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
	color: #fff;
}

ul.dropdown-horizontal ul li.dir {
	color: #fff;
}

ul.dropdown-upward *.dir {

}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {

}

ul.dropdown-vertical-rtl *.dir {

}