@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+
 *
 * @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;
	color: white;
	background-color: gray;
}

	ul.dropdown li {
	 border-style: solid;
	 border-width: 1px 1px 1px 0;
	 background-color: gray;
	 color: white;
	border-top-color: #7f7f7f;
	border-top-width: 1px;
	border-right-width: 1px;
	border-right-color: #3f3f3f;
	border-bottom-width: 1px;
	border-bottom-color: #3f3f3f;
	border-left-width: 0;
	border-left-color: #656565;
	padding: 7px 10px;
}

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

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


	/* -- level mark -- */
	
	ul.dropdown ul {
	 margin-top: 1px;
}
		ul.dropdown ul li {
		 font-weight: normal;
		}

		
	#navi_top_item1 {
	width: 140px;
}
	#navi_top_item2 {
	width: 102px;
}
	#navi_top_item3 {
	width: 45px;
}
	#navi_top_item4 {
	width: 69px;
}
	#navi_top_item5 {
	width: 153px;
}
	#navi_top_item6 {
	width: 85px;
}
		
	#navi_item1 {
	width: 195px;
}
	#navi_item2 {
	width: 170px;
}
	#navi_item3 {
	width: 210px;
}
	#navi_item4 {
	width: 140px;
}
	#navi_item5 {
	width: 200px;
}
/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 10px;
 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: 20px;
 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%;
}