@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
 */


ul.dropdown {

 font-size: smaller;
 padding-top:4px; /* -- Position from the top -- */


}



	/* -- Main Menu Links -- */
	ul.dropdown li {
	font-size:11px;
	 padding: 6px 12px; /* height and width of each main menu*/
	 
	/* setup main menu items and apply border*/
	 background-color:#EBEBEB;
	 border-right:#CCCCCC 1px solid;
	 border-top:#CCCCCC 1px solid;
	 border-bottom:#CCCCCC 1px solid;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color:#DDDDDD; /* ALL HOVER OVER BACKGROUND COLOUR*/
	}

	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #000; text-decoration: none; } /* ALL Links text colour*/
	ul.dropdown a:hover		{ color:#5B2F8E; }
	ul.dropdown a:active	{   }


	/* -- level mark -- */
/* -- The actual dropdowns -- */
	ul.dropdown ul {
	 width: 165px;
	 margin-top: 0px;
	 border-bottom:#666666 1px solid;
	 border-top:#CCCCCC 1px solid;
	}
	
	/* -- Just the text color of the actual dropdown items -- 
	ul.dropdown ul a:link{
	color:#669900; 
	}
	*/
	
	/* -- USED TO MAKE THE WHOLE MENU LI INTO A LINK -- */
	ul.dropdown ul a{
	display:block;
	}
	
		/* -- The actual dropdowns -- */
		ul.dropdown ul li {
		 font-weight: normal;
		 	  background-color:#EBEBEB;
			   border-bottom:none;
			    border-top:none;
			 border-left:#999999 1px solid;
			 border-right:#999999 1px solid;
		}



/*-------------------------------------------------/
 * @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;
 
}

ul.dropdown-upward *.dir {
 background-image: url(images/nav-arrow-top.png);
}

ul.dropdown-vertical *.dir,
ul.dropdown-upward ul *.dir {
 background-image: url(images/nav-arrow-right.png);
}

ul.dropdown-vertical-rtl *.dir {
 padding-right: 10px;
 padding-left: 15px;
 background-image: url(images/nav-arrow-left.png);
 background-position: 0 50%;
}

/* -- Color of main drop down items -- */
.mainLink{
color:#000000;
}
