/* CSS Document */
.mlmenu ul {margin:0; padding:0; list-style:none}
/*this is the css for the vertical version*/
	
	    .vertical ul{
			list-style-type: none;
			padding: 0px;
			border-top: 1px solid;
			width: 204px;
		}
		.vertical li a{
			display: block;
			width: 200px;
			text-decoration: none;
			height: 20px;
			padding: .1em 5px;
			border: 1px solid;
			border-top: 0px;
		}
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline;
		}
		.vertical li ul{
			position: absolute;
			margin-top: -1.3em;
			margin-left: 200px;
		}


/*this is the css for the horizontal version*/
		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			display: block;
			float:left;
			
		}

		.horizontal li{
			float: left;
			display: inline;
			
		}

		.horizontal li a{
			text-decoration: none;
			float: left;
			display: block;
			border-left: none;
            height: 35px; /*sets the height of Main menu*/ 
            padding-top:15px; /*sets top padding of Main menu text*/	
			padding-left:0px;
			text-align:center;
		}
		.horizontal li li a{
			border:solid #cccccc 1px;    /*sets border of submenu*/  
			height: auto; /*sets the height of sub menu*/
			padding-top:5px; /*sets top padding of sub menu text*/  
			height:20px;
			
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 50px; /*sets distance between menu and sub menu (for mozilla)*/
			margin-left: -1px;
			width: 99px;
			border: none;
			display: block;
			height: auto;
			border-left:solid #cccccc 0px;
			
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: .5em;
			margin-left: 200px;	
		}
		.horizontal li ul li a{
			border:solid #cccccc 1px;	
			
		}


/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
		/*Not sure if I recommend this or not*/
		.inaccesible li ul{
			display: none;
		}


/*Arrow code - looks like <a class="haschild" href="#">Text <span>Arrow</span></a> can be turned on/off with arrow class*/
		.arrow a span{
			padding-left: 1em;
		}
		.arrow a:hover span{
			padding-left: 1em;
		}
		.arrow a span.noshow{
			visibility: hidden;
		}

/*Plus code*/
		.plus a span{
			padding-left: 1em;
		}

/*Menu custom colors*/
		.menuborder li a{
			color: #333333;
			font-family:Arial, Helvetica, sans-serif;
			font-size: 12px;
			font-weight:500;
		}
		.menuborder li a:hover{
			color: #333333;
			
		}
		.menuborder ul{
			border-color: #F58220;
		}

/*Menu background color. For multiple color menu just place a number after the class name e.g( menucolor1, menucolor2.... upto the number of parent menus/links ). The default menu background color class name is "menucolor1" If multiple menu colors is disabled*/
		.menucolor a{
			background-image:url(../images/nav_divider.gif); 
			background-position:right; 
			background-repeat:no-repeat;
			width:100px;
			color: #333333;
			height:50px;
			font-size: 12px;
			padding-right:5px;
		}
        .submenucolor a{
			background-image:none;
			background-color:#FFFDF4;
			width:200PX;
			border:solid #cccccc 1px;
        }
        .submenucolor a:hover{
			background-image:none;
			background-color:#759dd9;
        }	

.head
{
	background-image:url(../images/contentmain1.png); 
	width:957px; 
	height:694px;"
}		