/* 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: 0px solid;
			width: 171px;
		}
		.vertical li a{
			display: block;
			width: 171px;
			text-decoration: none;
			height: 15px;
			padding: .1em 5px;
			border: 0px 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: 171px;
		}


/*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: 27px; /*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: 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: .24em;
			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:14px;
			font-weight:bold;
		}
		.menuborder li a:hover{
			color: #FFFFFF;
			border-color: #FFFFFF;

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

		}
		
		.menuborderv li a:hover{
			border: 0px solid;
			color:#FFFFFF;
		}
	
		.menuborderv ul{
			border-color: #FFFFFF;
			
		}


		.menucolorv3 a{
			color:#FFCC66;
			width:171px;
		}		



		/*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:130; height:90; background-image:url(../images/btn_buyingbasics2.png);
		}
		.menucolor2 a{
		width:130;
		}	
		.menucolor3 a{
		width:130;
		}	
		.menucolor4 a{
		width:130;
		}
		.menucolor5 a{
		width:130;
		}																			

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