/* 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: 18px; /*sets the height of Main menu*/ 
            padding-top:2px; /*sets top padding of Main menu text*/	
			padding-left:0px;
			text-align:center;
		}
		.horizontal li li a{
			border: 0px solid;    /*sets border of submenu*/    
			border-color: #FF6600; /*sets border color of submenu*/ 
			height: auto; /*sets the height of sub menu*/
			padding-top:0px; /*sets top padding of sub menu text*/  
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 18px; /*sets distance between menu and sub menu (for mozilla)*/
			margin-left: -1px;
			width: 99px;
			border: none;
			display: block;
			height: auto;	
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: .1em;
			margin-left: 124px;	
		}
		.horizontal li ul li a{
			border-color:#FFFFFF;	
		}


/*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:#cccccc;
			font-family:Arial, Helvetica, sans-serif;
			font-size:11px;
			font-weight:500;
		}
		.menuborder li a:hover{
			color: #FFFFFF;
		}
		.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{
			color: #333333; 
			text-decoration : none;
			font-size: 12px; 
			font-family:  Arial, Verdana, Helvetica, sans-serif; 
			font-weight: bold;
			float:left; 
			padding-top:7px; 
			padding-left:12px;
			padding-right:12px;
		}																			
		
		.menucolor a:hover{
			color: #52c1ee; 
			text-decoration : none;
			font-size: 12px; 
			font-family:  Arial, Verdana, Helvetica, sans-serif; 
			font-weight: bold; 
			float:left; 
			padding-top:7px; 
			padding-left:12px;
			padding-right:12px;
		}
		
		
        .submenucolor a{
			background-image:none; 
        }