.menu{
	border:none;
	border:0px;
	margin:0px;
	padding:0px;
	width: 100%;
	font: 90% Verdana, arial, Helvetica, sans-serif;
	font-weight: bold;
	}
.menu ul{
	background: #228b22;
	color:white; /*color of selected text in drop down menu*/
	height:25px;
	list-style:none;
	margin:0;
	padding:0;
	}
	.menu li{
		float:left;
		padding:0px;
		}
	.menu li a{
		background:#228b22 url("images/seperator.gif") bottom right no-repeat;
		color:white; /*Color of unselected menu text*/
		display:block;
		font-weight: bold; /*normal*/
		line-height:25px; /*35px*/
		margin:0px;
		padding:0px 20px; /*25px*/
		text-align:center;
		text-decoration:none;
		}
		.menu li a:hover, .menu ul li:hover a{
			background: #000080 ; /* color of main bar selected background */
			color: #fff;  /* color of selected item text */
			text-decoration:none;
			}
	.menu li ul{
		background:#228b22; 
		display:none;
		height:auto;
		padding:0px;
		margin:0px;
		border:0px;
		position:absolute;
		width:250px;
		z-index:200;
		}
	.menu li:hover ul{
		display:block;
		
		}
	.menu li li {
		background:url('images/sub_sep.gif') bottom left no-repeat;
		display:block;
		float:none;
		margin:0px;
		padding:0px;
		width:250px;
		}
	.menu li:hover li a{
		background:none;
		
		}
	.menu li ul a{
		display:block;
		height:25px; /*25px*/
		font-size: 100%;/*font-size:12px; */
		font-style:normal;
		margin:0px;
		padding:0px 5px 0px 15px;
		text-align:left;
		}
		.menu li ul a:hover, .menu li ul li:hover a{
			background:#000080 url('images/hover_sub.gif') center left no-repeat ; /*color of text in drop down menu*/
			border:0px;
			color:#fff; /*color of selected text in drop down menu*/
			text-decoration:none;
			}
	.menu p{
		clear:left;
		}	

		
