/* CSS Document */
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: 166px;
		}
		.vertical li a{
			display: block;
			width: auto;
			text-decoration: none;
			height: 15px;
			padding: .1em 5px;
			padding-left: 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: 165px;
		}


/*this is the css for the horizontal version*/

		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			display: block;
			height: 2.4em;
			float:left;
		}
		.horizontal li{
			float: left;
			display: inline;
		}
		.horizontal li a{
			text-decoration: none;
			float: left;
			display: block;
			border-left: none;
            height: 20px; /*sets the height of Main menu*/ 
            padding-top:7px; /*sets top padding of Main menu text*/						
		}
		.horizontal li li a{
			border: 1px solid;    /*sets border of submenu*/    
			border-color: #FF6600; /*sets border color of submenu*/ 
			height: 28px; /*sets the height of sub menu*/
			padding-top:5px; /*sets top padding of sub menu text*/  
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 29px; /*sets distance between menu and sub menu (for mozilla)*/
			margin-left: -1px;
			width: 153px;
			border: none;
			display: block;
			height: auto;
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: .1em;
			margin-left: 167px;
				
		}
		.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: #FFFFFF;
			border-color: #FFFFFF;
			border: 1px solid;
			font-family:Arial, Helvetica, sans-serif;
			font-size:11px;
			font-weight:bold;

		}
		.menuborder li a:link{
			color: #FFFFFF;
		}
		.menuborder li a:visited{
			color: #FFFFFF;
		}
		.menuborder li a:active{
			color: #FFFFFF;
		}
		.menuborder li a:hover{
			color: #FFFFFF;
			border-color: #FFFFFF;
			border: 1px solid;
			background-color: #CC0000;
		}
		.menuborder ul{
			border-color: #FFFFFF;
		}
		
		.menuborderv li a{
			color: #888888;
			border: 1px solid;
			border-color: #FFFFFF;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 10px;
			font-weight: bold;
			
			background-repeat:no-repeat;
			background-position:right;

		}
		
		.menuborderv li a:hover{
			color: #FFFFFF;
			border-color: #FFFFFF;
			border: 1px solid;
			background-color: #000099;

		}
	
		.menuborderv ul{
			border-color: #FFFFFF;
			
		}

/* navigator 3*/
		.menuborderv3 li a{
			color: #000099;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 11px;
		}
		
		.menuborderv3 li a:hover{
			color: #c80308;
		}


/*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*/


		.menucolorv3 a{
		color: #000099;
		width:135px;
		}		
		
		.menucolorv a{
		background-color: #e4e4e4;
        width:auto;

		}		
		
		.menucolor1 a{
		background-color:#016079;
                width:165px;

		}																			
		.menucolor2 a{
		background-color:#579DAC;
        width:150px;
		}
		.menucolor3 a{
		background-color:#6EB74B;
        width:165px;
		}	
		.menucolor4 a{
		background-color:#C37A34;
                width:150px;
		}	
		.menucolor5 a{
			background-color:#C6B67B;
            width:140px;
		}

        .submenucolor a{
            background-color:#58617B;
			background-image:none; 
        }
	
		.down3  li ul {
			width: 167px;
		}		