@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
 */

#nav {
	margin:-30px 0 15px -40px;
	padding:25px 0 15px 20px;
	font-size:15px;
	width:940px;
	text-align:left;
	font-family:Arial, Helvetica, sans-serif;
	}

#menu ul.dropdown {
 	font-weight: normal;
	background: #006600;
	background: linear-gradient(top, #00FF00 0%, #006600 100%);  
	background: -moz-linear-gradient(top, #00FF00 0%, #006600 100%); 
	background: -webkit-linear-gradient(top, #00FF00 0%,#006600 100%); 
	box-shadow: 0px 0px 9px rgba(0,0,0,0.15);
}

#menu 	ul.dropdown li {
	 padding: 4px 10px; /* hier Innenabstände einstellen - siehe auch unten */
	 border-style: solid;
	 border-width: 1px 1px 1px 0; /* Original 1 1 1 0 */
	 border-color: #fff #d9d9d9 #d9d9d9;
	 background-color:#009900; /* background color of all menus */
	 color: #FFFFFF; /* text color */
	}

#menu 	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #FF9900;	/* Hoverfarbe aller Menus */
	background: #AAFFAA;
	background: -o-linear-gradient(top, #009900 0%, #00CC00 100%); /* For Opera 11.1 to 12.0 */
	background: -moz-linear-gradient(top, #009900 0%, #00CC00 100%);
	background: -webkit-linear-gradient(top, #009900 0%,#00CC00 100%);
	background: linear-gradient(top, #009900 0%, #00CC00 100%);
	color: #00FFFF; /* Textfarbe */
	}

	#menu ul.dropdown a:link,
	#menu ul.dropdown a:visited	{ color: #FFFFFF; text-decoration: none; } /* text color */
	#menu ul.dropdown a:hover	{ color: #00FFFF; } /* text color */
	#menu ul.dropdown a:active	{ color: #0000FF; }


	/* -- level mark -- */

#menu 	ul.dropdown ul {
	 width: 150px;
	 margin-top: 1px;
	 padding:15px 0 5px 0; /* moves sub-menus down */
	}

#menu 		ul.dropdown ul li {
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


#menu ul.dropdown *.dir {
 padding-right: 7px; /* hier wie oben Abstand einstellen */
 /*background-image: url(images/nav-arrow-down.png);*/ /* Pfeil nach unten */
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

#menu ul.dropdown *.top {
	background-color:transparent; /* Hintergrund der sichtbaren Buttonleiste */
	border-color:transparent;
	}

/* -- Components override -- */

#menu ul.dropdown-horizontal ul *.dir {
 padding-right: 10px;
 /*background-image: url(images/nav-arrow-right.png);*/ /* Pfeil nach rechts */
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

#menu ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

#menu ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

#menu ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}