@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
 *
 */

ul.classic {
 list-style: disc;
 margin-bottom: 1em;
 padding-left: 2em;
}

h1,h2,h3 {
 margin-bottom: .5em;
 font-family: Arial, Helvetica, sans-serif;
 line-height: normal;
}

h1 {
 border-bottom: solid 1px #d9d9d9;
 font-weight: normal;
 font-size: 180%;
 text-indent: 5px;
 letter-spacing: -1px;
}

.dropdown-upward {
 margin-top: 400px !important;
}


/*-------------------------------------------------/
 * @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;
 padding:0;
 margin:0;
}

	ul.dropdown li {
	background-color:#434343;
	border-color:#434343 #D9D9D9;
	border-style:solid;
	border-width:0 1px 0 0;
	/*color:#FFFFFF;*/
	font-size:14px;
	}

	ul.dropdown li:hover {
	 background-color:#eee;
	 color: #000;
	}
	ul.dropdown li.hover{
	background-color:#eee;
	}
	
	ul.dropdown li a {
	color:#FFFFFF;
	padding:7px 15px;
	font-size:14px;
	display:block;
	text-decoration:none;
	}
	ul.dropdown li a:hover {
	color:#000;
	padding:7px 15px;
	font-size:14px;
	display:block;
	text-decoration:none;
	}
	
	ul.dropdown .on a {
	background-color:#eee;
	color:#000;
	padding:7px 15px;
	font-size:14px;
	display:block;
	text-decoration:none;
	}
	
	/*ul.dropdown a:link,
	ul.dropdown a:visited	{ text-decoration: none; }
	ul.dropdown a:hover		{ color: #000; }
	ul.dropdown a:active	{ color: #000; }*/

	ul.dropdown .dir:hover a{
	 background-color: #eee;
	 color: #000;
	 text-decoration:none;
	}
	ul.dropdown .dir ul li a:hover{
	 color:#000;
	 background-color: #d1d1d1;
	 text-decoration:none;
	}
	ul.dropdown .dir ul li a {
	 background-color: #eee;
	 color: #000;
	 text-decoration:none;
	}
	

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 0px;
	}

		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%;
}


