/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.1
 * @type		transitional
 * @browsers	Windows: IE7+, Opera7+, Firefox3+
 *				Mac OS: Safari2+, Firefox3+
 *
 * @link		http://www.lwis.net/free-css-drop-down-menu
 * @copyright	2008-2012 Live Web Initiatives, http://www.lwis.net
 *
 */


/* -- Base drop-down styling -- */

ul.dropdown {
 font-weight: normal; /* bold */
}

	ul.dropdown li {
	 padding: 3px 10px;
	 border-style: solid;
	 border-width: 1px 1px 1px 1px;
	 border-color: #c9c9c9 ;
	 background-color: #6495ed;
	 }
	 
	.submenu li:first-child {
	 	-moz-border-radius-topright: 5px;
		border-top-right-radius: 5px;
	}

	.submenu li:last-child {
	 	-moz-border-radius-bottomleft: 5px;
		border-bottom-left-radius: 5px;
	}

	ul li:first-child {
	 	-moz-border-radius-topleft: 5px;
		border-top-left-radius: 5px;
	}

	ul li:last-child {
	 	-moz-border-radius-bottomright: 5px;
		border-bottom-right-radius: 5px;
	}

	.dir li:first-child {
	 	-moz-border-radius-topright: 5px;
		border-top-right-radius: 5px;
	}

	.dir li:last-child {
	 	-moz-border-radius-bottomleft: 5px;
		border-bottom-left-radius: 5px;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover,
	ul.dropdown li.on {
	 background-color: #4475cd;
	 color: #fff;
	 border-color: #a0a0ff;
	 cursor: pointer;
	}
	
	ul li.li_disabled {
	 color: #bbb;
	}
	ul li.li_disabled:hover,
	ul li.li_disabled.hover	 {
	 color: #bbb;
	 cursor: not-allowed;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #fff; text-decoration: none; }
	ul.dropdown a:hover		{ color: #fff; }
	ul.dropdown a:active	{ color: #fff; }

	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: -1px;
	 margin-left: -1px;

	}

		ul.dropdown ul li {
		 font-weight: normal;
		}


/* -- Supporting class `dir` -- */

ul.dropdown *.dir {
 padding-right: 20px;
 background-image: url("img/nav-down.png");
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url("img/nav-right.png");
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

ul.dropdown-upward *.dir {
 background-image: url("img/nav-up.png");
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url("img/nav-right.png");
}

ul.dropdown-vertical-rtl *.dir,
ul.dropdown-horizontal > li.dropdown-vertical-rtl ul *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url("img/nav-left.png");
 background-position: 2px 50%;
}