@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
 */
a {
 z-index: 100;
}

ul, li {
 z-index: 1;
}

ul.dropdown {
 position: relative;
 top: -5px;
 left: 18px;
 font-weight: bold;
 font-size: 0.9em;
}

	ul.dropdown li {
	 text-align: center;
	 width: 143px;
	 padding: 7px 10px;
	 background-image: url('images/pencil-inactive.png');
	 background-color: #fff;
	 background-repeat: no-repeat;
	 background-position: 40% 50%;
	 color: #fff;
	}
	
	ul.dropdown li.active {	
	 background-image: url('images/pencil-active.png');
	}
	
	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-image: url('images/pencil-mouseover.png');
	}

	ul.dropdown a {
	 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 a:visited {
	 color: #fff;
	 }
	 
ul.dropdown a:link {
	 color: #fff;
	 }
	 
ul.dropdown a:active {
	 color: #fff;
	 }
	 
ul.dropdown a:hover {
	 color: #fff;
	 }

ul.dropdown *.dir ul li {
	 background-image: url('');
	 background-color: #eb0;
	 color: #111;
	 font-weight: bold;
	 text-align: left;
}


/* -- 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 {
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-position: 0 50%;
}
