@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
 */


.dropdown>ul {
 font-weight: bold;
 width:600px;
 height:35px;
}

	.dropdown>ul li {
	 padding: 7px 10px;
	 border-style: solid;
	 border-width: 0px 1px 0px 0;
	 border-color: #fff #a9a9a9 #d9d9d9;
	 background-image: url(../gfx/mainmenu_bg.png);
	 background-repeat: no-repeat;
	 background-position:-180px bottom;
	 background-color: #50597C;
	 color: #000;
	}

	.dropdown>ul li.hover,
	.dropdown>ul li:hover,
	.dropdown>ul li.inpath,
	.dropdown>ul li#activeitem {
	 background-image: none;
	 background-repeat: no-repeat;
	 background-position:0px bottom;
	 background-color: #1E2843;

	 color: #000;
	}

	.dropdown>ul a:link,
	.dropdown>ul a:visited	{ color: #000; text-decoration: none; }
	.dropdown>ul a:hover		{ color: #000; }
	.dropdown>ul a:active	{ color: #000; }


	/* -- level mark -- */

	.dropdown>ul ul {
	 width: 150px;
/* 	 margin-top: 1px; */
	}

		.dropdown>ul ul li {
		 font-weight: normal;
		 border:none;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


.dropdown>ul *.dir {
 padding-right: 20px;
 background-image: url(images/nav-arrow-down.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- Components override -- */

.dropdown>ul-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url(images/nav-arrow-right.png);
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

.dropdown>ul-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

.dropdown>ul-vertical *.dir,
.dropdown>ul-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

.dropdown>ul-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}
