/* 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: 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: 1px; /*sets the height of Main menu*/ 
            padding-top:1px; /*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: 25px; /*sets the height of sub menu*/
        padding-top:5px; /*sets top padding of sub menu text*/  
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 34px; /*sets distance between menu and sub menu (for mozilla)*/
			margin-left: -1px;
			width: 129px;
			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: #FFFFFF;
			border-color: #FFFFFF;
			font-family:Arial, Helvetica, sans-serif;
			font-size:12px;
			font-weight:bold;
		}
		.menuborder li a:hover{
			color: #FFFFFF;
			border-color: #FFFFFF;

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



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

		.menucolor1 a{

		width:50px;
		}
		.menucolor2 a{
		background-image:url(../images/header_assembly/btn_mygarage.gif);
		background-repeat:no-repeat;
		background-color:#667195;
		width:99px;
		}	
		.menucolor3 a{
		background-image:url(../images/header_assembly/btn_autofinancing.gif);
		background-repeat:no-repeat;
		background-color:#667195;
		width:143px;
		}	
		.menucolor4 a{
		background-image:url(../images/header_assembly/btn_resources.gif);
		background-repeat:no-repeat;
		background-color:#667195;
		width:123px;
		}
		.menucolor5 a{
		background-image:url(../images/header_assembly/btn_contactus.gif);
		background-repeat:no-repeat;
		background-color:#667195;
		width:106px;
		}																			

        .submenucolor a{
                background-color:#58617B;
		background-image:none; 
        }		