﻿@charset "UTF-8";

/** 
 * NVIDIA CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		NVIDIA
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE6+, 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 url('helper.css');



/*------------------------------------------------------------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				*(.class|:hover)
 * @level sep	ul
 */


/* ----- ALL LEVELS (incl. first) */

ul.dropdown {
	font: normal 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	background-color: #DAE3EC;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #000000;
	border-bottom-color: #000000;
}
ul.dropdown li {
	background-color: #DAE3EC;
	color: #FFFFFF;
	line-height: normal;
}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	}

	ul.dropdown a:link,
	ul.dropdown a:visited {
	text-decoration: none;
	}

	ul.dropdown a:link,
	ul.dropdown a:visited {
	padding: 5px 10px 5px 10px;
	color: #093A7F;
	text-decoration: none;
	display: block;
}
	
	ul.dropdown a:hover {
	color: #FFFFFF;
	background-color: #093A7F;
	text-decoration: none;
	}
	ul.dropdown a:active { color: #FFFFFF; }


/* ----- END LEVEL */


	/* ----- NON-FIRST LEVEL */

	ul.dropdown ul {
		width: 170px;
		padding: 0;
		background-color: #DAE3EC;
		color: #0C387F;
		font-size: 11px;
		text-transform: none;
		filter: alpha(opacity=90);
		-moz-opacity: .9;
		KhtmlOpacity: .9;
		opacity: .9;
	}

	ul.dropdown ul li {
		background-color: transparent;
		color: #FFFFFF;
		filter: none;
	}

	ul.dropdown ul li.hover,
	ul.dropdown ul li:hover {
	}

	ul.dropdown ul a:link,
	ul.dropdown ul a:visited {
	color: #093A7F;
}

	ul.dropdown ul a:hover {
		color: #FFF;
		text-decoration: none;
	}

	ul.dropdown ul a:active {
		color: #FFF;
	}


/* ----- END LEVEL */



/*------------------------------------------------------------------------------------------------------/
 * @section	Support Class 'dir'
 * @level sep	ul, .class
 */


/* ----- ALL LEVELS (incl. first) */

ul.dropdown *.dir {
	background-image: none;
	background-position: 100% 50%;
	background-repeat: no-repeat;
	margin-right: auto;
	margin-left: auto;
}

/* ----- END LEVEL */


/* Components override */



