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

	ul.dropdown li { background-color: #0078AD; color: #FFF; }

	ul.dropdown a:link,
	ul.dropdown a:visited	{ font-size: 12px; display: block; padding: 0 10px; line-height: 22px; color: #FFF; text-decoration: none; }
	
	/* -- level 2 -- */

	ul.dropdown ul li { border-bottom: solid 1px #FFF; background-color: #0078AD; color: #FFF; }
	ul.dropdown ul li.first {
		border-top: solid 1px #FFF;
		border-top-right-radius: 10px;
		-moz-border-radius-topright: 10px;
		-webkit-border-top-right-radius: 10px;
	}
	ul.dropdown ul li.last {
		border-bottom-left-radius: 10px; border-bottom-right-radius: 10px;
		-moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px;
		-webkit-border-bottom-left-radius: 10px; -webkit-border-bottom-right-radius: 10px;
	}

	ul.dropdown ul li.hover,
	ul.dropdown ul li:hover { background-color: #DDE9F3; color: #FFF; }

	ul.dropdown ul li.hover a,
	ul.dropdown ul li:hover a { color: #00703C; }
	
	ul.dropdown ul a:link,
	ul.dropdown ul a:visited	{ line-height: 24px; color: #FFF; }
	ul.dropdown ul a:hover		{ color: #00703C; }
	ul.dropdown ul a:active		{ color: #00703C; }
	
	/* -- level 3 -- */

	ul.dropdown ul ul li { background-color: #DDE9F3; color: #FFF; }
	ul.dropdown ul ul li.first { border-top: none; }
	
	ul.dropdown ul ul a:link,
	ul.dropdown ul ul a:visited	{ color: #00703C; }
	ul.dropdown ul ul a:hover	{ text-decoration: underline; }
	ul.dropdown ul ul a:active	{ text-decoration: underline; }

	/* -- level mark -- */

	ul.dropdown ul { width: 300px; margin-top: 7px; }
	ul.dropdown ul li { font-weight: normal; }
	ul.dropdown ul ul { width: 200px; margin-top: 1px; }

	/* -- dir -- */
	
	ul.dropdown ul li.dir { background: #0078AD url(arrow.png) no-repeat right top; }
	ul.dropdown ul li.dir:hover { background: none; background-color: #DDE9F3; }

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