/********************************************************************************************************
	HTML STYLE TAGS
/*******************************************************************************************************/
* {
	margin: 0;
	padding: 10;
	}
html, body, div, p, form, input, select, textarea, fieldset {
	color: #CCCCCC;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: normal;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	font-weight: normal;
}
a:link {
	text-decoration: none;
	color: #6666ff;
}
a:visited {
	text-decoration: none;
	color: #6666FF;
}
a:hover {
	text-decoration: none;
	color: #66FFFF;
}
a:active {
	text-decoration: none;
	color: #6666FF;
}

body {
	background: #ffffff;
}

/********************************************************************************************************
	MAIN LAYOUT REGIONS
/*******************************************************************************************************/
#dropdownNav {
	position: relative;
	float: left;
	display: inline;
	margin: 0 10px 0 0px;
	z-index: 2000;
	width: 300px;
	height: 32px;
	background: #ffffff;

}

/********************************************************************************************************
	DROPDOWN NAV LINKS
/*******************************************************************************************************/
#dropdownNav ul {
	float: left;
	list-style: inline;
	width: 100%;
}
#dropdownNav li {
	display: block;
	float: left;
	position:relative;
	height: 22px;
	_height /**/:32px;
	margin-left: 10px;
	padding: 10px 11px 0 0px;
	color: #333333;
	font-size: 10px;
	line-height: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: normal;
	cursor:default


	}
#dropdownNav li ul {
	/* second-level lists */
	position: absolute;
	left: -9999px;
	top: 32px;
	width: 225px;
	background: #ffffff;
	_float/**/:left;
	
}
/* #dropdownNav li:hover ul, */
#dropdownNav li.over ul, 
#dropdownNav li.endover ul {
	/* lists nested under hovered list items */
	left: 0;
}
#dropdownNav li li {
	width: 225px;
	background: #ffffff;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 15px;
	text-transform: none;
	font-weight: normal;
	letter-spacing: 0;
	height: auto;
	_float/**/:left;
}
#dropdownNav li li a {
	display: block;
	padding: 5px 9px;
	text-decoration: none;
	color: #333333;
}
#dropdownNav li:hover li:hover, 
#dropdownNav li li.over {
	background: #cccccc;
}
#dropdownNav li:hover li:hover a, 
#dropdownNav li li.over a {
	color: #333333;

}
