 @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 "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 {
    margin-left: 40px;
	text-align:left;
}

ul.dropdown li {
    border-bottom: #ddd solid 1px;
    color: #000;
}

ul.dropdown li.hover, ul.dropdown li:hover {
    cursor: pointer;
	background-color:#f0be00;
}

ul.dropdown a:visited, ul.dropdown a:link {
	height:15px;
    color: #0D6F8A;
    text-decoration: none;
    display: block;
	padding:5px 0px 5px 5px;
}

ul.dropdown a:hover {
    color: #fff;
    text-decoration: none;
}
/* -- level mark -- */
ul.dropdown ul {
    width: 150px;
    margin-top: 1px;
    border: #d76a01 solid 1px;
    background-color: #a0d1fa;
}

ul.dropdown ul li {
    font-weight: normal;
	padding-left:5px;
}
/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */
ul.dropdown *.dir {
    padding-right: 20px;
    background-image: url(expand_right.png);
    background-position: 100% 50%;
    background-repeat: no-repeat;
}
/* -- Components override -- */
ul.dropdown-horizontal ul *.dir {
    padding-right: 15px;
    background-image: url(expand_right.png);
    background-position: 100% 50%;
    background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
    background-image: url(expand_right.png);
}

ul.dropdown-vertical *.dir, ul.dropdown-upward ul *.dir {
    background-image: url(expand_right.png);
}

ul.dropdown-vertical-rtl *.dir {
    padding-right: 10px;
    padding-left: 15px;
    background-image: url(expand_right.png);
    background-position: 0 50%;
}