@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
 *
 */



/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */
div.cwMenu {
	padding: 3px 6px;
	background-image: url(images/shadow-cwMenuBar.png);
	padding:0px;
	background-repeat: repeat-x;
	background-position: bottom;
	
}
ul.cwMenu {
	font-weight: bold;
	font-size: 100%;
	float: right;
}
ul.cwMenu li {
	padding: 3px 6px;
	color: #000;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #fff;
	border-right-color: #d9d9d9;
	border-bottom-color: #d9d9d9;
	border-left-color: #d9d9d9;
}
/*Todos que NÃO são de primeiro nível*/
ul.cwMenu ul {
	background-image: url(images/shadow-cwMenu.png);
	background-repeat: repeat;
	/*border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #999;
	border-bottom-color: #999;
	border-top-color: #CCC;
	border-left-color: #CCC;*/
	padding-top: 0px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 3px;
}

ul.cwMenu li.hover,  ul.cwMenu li:hover {
	background-color: #eee;
	color: #000;
}
ul.cwMenu a:link,  ul.cwMenu a:visited {
	color: #000;
	text-decoration: none;
}
ul.cwMenu a:hover {
	color: #000;
}
ul.cwMenu a:active {
	color: #ffa500;
}
/* -- level mark -- */

ul.cwMenu ul {
	width: 150px;
	margin-top: 1px;
}
ul.cwMenu ul li {
	font-weight: normal;
	background-color: #FFF;
}
/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.cwMenu *.dir {
	padding-right: 20px;
	background-image: url(images/nav-arrow-down.png);
	background-position: 100% 50%;
	background-repeat: no-repeat;
}
/* -- Components override -- */

ul.cwMenu-horizontal ul *.dir {
	padding-right: 15px;
	background-image: url(images/nav-arrow-right.png);
	background-position: 100% 50%;
	background-repeat: no-repeat;
}
ul.cwMenu-upward *.dir {
	background-image: url(images/nav-arrow-top.png);
}
ul.cwMenu-vertical *.dir, ul.cwMenu-upward ul *.dir {
	background-image: url(images/nav-arrow-right.png);
}
ul.cwMenu-vertical-rtl *.dir {
	padding-right: 10px;
	padding-left: 15px;
	background-image: url(images/nav-arrow-left.png);
	background-position: 0 50%;
}
