/* DEMO CSS */
a{
	color:red;
	text-decoration:none;
}
body{
	
}

.ad{
	clear:both;
	text-align:center;
	padding:5px;
}

/* END DEMO CSS */
#menu{
	font-family:arial;	/* Font for main menu items */
	/*width:198px;	/* Width of main menu */
	margin:0 auto;
}
#menu	li{	/* Main menu <li> */
	list-style-type:none;	/* No bullets */
	margin:0px;	/* No margin - needed for Opera */
	height:31px;
}
#menu ul{
	margin:0px;	/* No <ul> air */
	padding:0px;	/* No <ul> air */
	
}
#menu ul li ul{	/* Styling for those who doesn't have javascript enabled */
	padding-left:10px;
}
#menu li a{	/* Main menu links */
	text-decoration:none;	/* No underline */
	
	/* 20 pixel height */
	vertical-align:middle;	/* Align text in the middle */	
	/*margin:1px;	/* A little bit of air */
	padding:4px 0 0 0;	/* Air between border and text inside */

	display:block;
}
#menu	li a:hover,#menu .activeMainMenuItem{
	
}
.subMenu{	
	visibility:hidden;
	position: absolute;
	overflow:hidden;
	border:1px solid #9C5B0B;
	background-color: #F3F2EC;
	filter: alpha(opacity=90);-moz-opacity:.90;opacity:.90;
	font-family:arial;
	text-align:left;

}
.subMenu ul{
	margin:0;
	padding:0px;
}
.subMenu ul li{
	list-style-type:none;
	margin:0px;
	padding:1px;/* 1px of air between submenu border and sub menu item - (the "white" space you see on mouse over )*/	
}
.subMenu ul li a{	/* Sub menu items */	
	white-space:nowrap;	/* No line break */
	/*color:#935c33;
	font-family: Verdana;
	font-size:11px;
	font-weight:Bold;
	text-decoration:none;	/* 16 pixels height */
	padding:1px;
		/* 1px of "air" inside */
	/*height:27px;	/* 16 pixels height */
	/*line-height:16px;	/* 16 pixels height */
	display:block;	/* Display as block - you shouldn't change this */
}
.subMenu ul li a:hover{	/* Sub menu items - mouse over effects */
	/*font-family:Verdana;
	color:#ff6600; 
	font-size:11px;
	font-weight:bold;
	text-decoration:none;*/
	padding:1px;	/* 1px of "air" inside */
	/*height:27px; */
}