

body {
	margin:0 auto;
}


/*--navigation wrapper--*/
#navwrapper {
	margin:0 auto; 
	background-color: #2D2D2D;
	position: relative;
}


#nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px; 
	padding-top:4px;
}

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}

/*--main nav links style--*/
#nav a {
	display:block;
	padding:7px 7px 7px 7px; 
	color:#ccc; 
	text-decoration:none;
}

#nav a.dmenu {

}

#nav a.dmenu:hover {
	color:#3366CC !important;
	background-color: #fff !important;
}

#nav li {
	float: left;
}

#nav li {position: relative;}

/* hide from IE, mac */
#nav li {position: static; width: auto;}
/* end hiding from IE5 mac */

/*--drop down menu styling--*/
#nav li ul {
	position: absolute;
	display: none;
	margin-left:-1px;
	padding-bottom:10px;
	background-color: #FFFFFF;
	border: 1px solid #bbb;
	border-top:none;
	-moz-box-shadow: 0 0 5px #ddd;
	-webkit-box-shadow: 0 0 5px #ddd;
	box-shadow: 0 0 5px #ddd;
	/*--make it top of all the elements on page, so that it can be visible--*/
	z-index:5000; 
}

#nav li:hover a, #nav a:focus,
#nav a:active {
	padding:7px 7px 7px 7px;
	color:#fff; 
	background:#444; 
	text-decoration:none; 
}
	
#nav a.parent, #nav a.parent:hover {
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

#nav li ul, #nav ul li {
	width: 17em;
}

#nav ul li ul {
	margin-top:-2.4em;
	margin-left:17em;
}

/*--drop down menu styling is different from main nav, strict rule--*/
#nav ul li a  {
	color: #3366CC !important;
	border-right: 0;
}
#nav ul li a:hover  {
	color:#3366CC !important;
	background-color: #eef3fb !important;
	border-right: 0;
}

/*--the selected, current item in the navigation menu--*/
#nav a.current{
	color:#fff;
	font-weight:bold; 
	background:#2D2D2D; 
	text-decoration:none; 
	border-top:2px solid #C33;
	padding-bottom:5px; /*--removing 2px border from 7px padding--*/
}

#nav a.current:hover{
	padding-bottom:5px; /*--removing 2px border from 7px padding--*/
}

/* SHOW SUBMENU 1 */
#nav li:hover ul, #nav li.over ul {
	display:block;
}
#nav li:hover ul ul, #nav li.over ul {
	display:none;
}
#nav li:hover ul ul ul, #nav li.over ul {
	display:none;
}
/* SHOW SUBMENU 2 */
#nav li li:hover ul, #nav li.over ul {
	display:block;
}
/* SHOW SUBMENU 3 */
#nav li li li:hover ul, #nav li.over ul {
	display:block;
}

#nav li:hover ul a{
	color: #000000;
	background-color: transparent;
}

#nav ul a:hover {
	background-color: #606060!important;
	color: #FFFFFF !important;
}

 /*--used in drop down menu items--*/
.menuseprator{border-bottom:1px solid #ddd; margin:10px 0 10px 0;}

/*--for showing down arrow in drop down menu item--
.arrowdown{color#eee; font-size:0.5em;}  */

/*--for the left navigation menu--*/
.floatleft{float:left;} 

/*--for the right options navigation menu--*/
.floatright{float:right} 

/*--clear all floating, left and right--*/
.clear{clear:both;} 

.arrowdown {
	position: relative;
	top: -1px;
	border-style: solid dashed dashed;
	border-color: transparent;
	border-top-color: silver;
	display: -moz-inline-box;
	display: inline-block;
	font-size: 0;
	height: 0;
	line-height: 0;
	width: 0;
	border-width: 3px 3px 0;
	padding-top: 1px;
	left: 4px;
}
.arrowright {
	position: relative;
	top: -1px;
	border-style: dashed solid solid;
	border-color: transparent;
	border-top-color: silver;
	display: -moz-inline-box;
	display: inline-block;
	font-size: 0;
	height: 0;
	line-height: 0;
	width: 0;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 3px solid silver;
	padding-top: 1px;
	left: 4px;
}	