

/* CSS Document */

/* Menu
---------------------------------------------------------------------------------------- */

/*eliminates scroll bars in IE*/
html {
	overflow-y:scroll;
	overflow-x: hidden;}

/******************** type  styles  ***********************/
/*clears all margins to allow page to be centered with a page "wrapper"*/

*{
	margin:0;
	top:0;
}



#menu {
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	/*border-bottom: 1px solid #DFCDCA;  background color B88E87*/
	font-size: 100%;
	z-index: 100;
	
	background-color: #67433D;   
}	
/*	background-color: #885951;*/
/* Clearfix */
#menu:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	z-index: 100;
}
#menu li {
	float: left;
	margin-top: 0px;
	padding: 0;
	position: relative;
	z-index: 100;
}
#menu a {
	float: left;
	display: block;
	text-decoration: none;
	color: #F3E3E4;
	font-weight: bold;
	/*border-right-width: 1px;*/
	border-left-width: 1px;
	/*border-right-style: solid;*/
	border-left-style: solid;
	/*border-right-color: #DFCDCA;*/
	border-left-color: #DFCDCA;
	filter:Alpha(Opacity=70);
	-moz-opacity:.80;
	opacity:.80;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
	z-index: 100;
}




#menu a:hover {
	background: #B88E87;
	color: #FFFFFF;
	z-index: 100;
}
/* The Drop Down: */
#menu .parent a {
	z-index: 100;
/*	background-image: url(IMAGES/bullet_arrow_down.gif);
	background-repeat: no-repeat;
	background-position: right center;*/
}
#menu .activeParent a {
	color: #333300;
	z-index: 100;
	background-color: #FFFFFF; /*background-color: 333300*/
	/*background-image: url(IMAGES/bullet_arrow_down.gif);
	background-repeat: no-repeat;
	background-position: right center;*/
}
#menu .parent ul {display: none;z-index: 100;} /* Hides the dropdown */
#menu .activeParent ul {
	float: left;
	width: 235px; /* The width of the dropdown */
	margin: 0;
	padding: 0;
	position: absolute;
	top: 1.2em; /* You may need to change this if you change font-size or padding on the menu */
	left: 0;
	list-style: none;
	z-index: 100;
}
#menu .activeParent li {
	float: left;
	margin: 0;
	padding:  0 ;
	z-index: 100;
}
#menu .activeParent li a {
	float: left;
	width: 235px; /* The width of the dropdown */
	margin: 0;
	color: #FFFFFF;
	display: block;
	font-size: 90%;
	background-color: #003366;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #DFCDCA;
	border-bottom-color: #DFCDCA;
	border-left-color: #DFCDCA;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	z-index: 100;
}
#menu a.new {
	float: left;
	display: block;
	text-decoration: none;
	color: #F3E3E4;
	font-weight: bold;
	/*border-right-width: 1px;*/
	border-left-width: 1px;
	/*border-right-style: solid;*/
	border-left-style: solid;
	/*border-right-color: #DFCDCA;*/
	border-left-color: #DFCDCA;
	filter:Alpha(Opacity=70);
	-moz-opacity:.70;
	opacity:.70;
	padding-top: 1px;
	padding-right: 8px;
	padding-bottom: 1px;
	padding-left: 8px;
	z-index: 100;
}

#menu .activeParent li a.new {
	float: left;
	width: 135px; /* The width of the dropdown */
	margin: 0;
	color: #FFFFFF;
	display: block;
	font-size: 90%;
	background-color: #003366;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #DFCDCA;
	border-bottom-color: #DFCDCA;
	border-left-color: #DFCDCA;
	padding-top: 3px;
	padding-right: 8px;
	padding-bottom: 3px;
	padding-left: 8px;
	z-index: 100;
}

#menu .activeParent li a.new:hover {
	color: #333333;
	background-color: #DFCDCA;
	z-index: 100;
}

#menu .activeParent li a:hover {
	color: #333333;
	background-color: #DFCDCA;
	z-index: 100;
}