@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 {
 
 float:right;
}
ul.dropdown li 
{
padding: 7px 10px;
background-color:#FFF;
color: #000;
}
	ul.dropdown li.hover,
	ul.dropdown li:hover { background-color:#fff ; color: #000; }
	ul.dropdown > li > ul > li:hover { background-color:#00AE58; }
	ul.dropdown > li > ul > li > ul > li:hover { background-color:#00AE58; }
	ul.dropdown a:link,
	ul.dropdown a:visited	{ color: #000; text-decoration: none; }
	ul.dropdown a:hover		{ color: #000; }
	ul.dropdown a:active	{ color: #ffa500; }
ul.dropdown ul 
{
width: 150px;
margin-top: 1px;
}

 /*
 background-image: url(../images/gs_art_trefoil.gif);
 background-position: 113% 15%;
 background-repeat: no-repeat;
 */
 
 * {
 margin: 0;
 padding: 0;
}

ul.classic {
 list-style: disc;
 margin-bottom: 1em;
 padding-left: 2em;
}

.dropdown-upward {
 margin-top: 400px !important;
}

html { overflow-y: scroll; }

.clear {
	clear: both;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}




