#menuv {
	width: 180px;
	float: left;
	font-size: 14px;
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	background-color: #FF0000;
}

#menuv ul {					/*main menu*/
list-style: none;				/*remove bullets*/
margin: 0;
padding: 0;
}


#menuv a {
	display : block;
	margin:0;
	text-decoration:none;
	color: #FFFFFF;
	border: thin solid #FF0000;
	white-space: nowrap;
	padding-top: 3px;
	padding-right: 2px;
	padding-bottom: 3px;
	padding-left: 2px;
	background-color: #FF0000;
}



#menuv ul li a:hover {			/*when mouse overing menus */
	color: #FF0000;
	background: #FFFFFF;
	border: thin solid #CCCCCC;
}

#menuv a.parent{ 							/*displays the white pointer on the pop out menus */
	background-image: url(red/pointer_w.jpg);
	background-repeat: no-repeat;
	background-position:right center;
}
#menuv a.parent:hover {							/*displays the red pointer on the pop out menus */
	background-image: url(red/pointer_r.jpg);
	background-repeat: no-repeat;
	background-position:right center;
	}
#menuv ul li{
	position: relative;
	z-index:1;
}

#menuv ul ul ul, #menuv ul ul { 		/*pop out menu for PRODUCTS & Application Guides*/
	position:absolute;
	top:0;
	left: 100%;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;		/*font size & type of pop out menus*/
	font-size: 10px;
	font-weight: bold;
	width: 140px;
	text-align: left;
	background: #FF0000;
}
 #menuv ul ul.bigger_width{		/*pop out menu for DOCUMENTATION and ENGINEERING*/
	position:absolute;
	top:0;
	left: 100%;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;		/*font size & type of pop out menus*/
	font-size: 10px;
	font-weight: bold;
	width: 175px;
	text-align: left;
	background: #FF0000;
}
#menuv ul ul.medimun_width {		/*pop out menu for DOCUMENTATION and ENGINEERING*/
	position:absolute;
	top:0;
	left: 100%;
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;		/*font size & type of pop out menus*/
	font-size: 10px;
	font-weight: bold;
	width: 155px;
	text-align: left;
	background: #FF0000;
}

#menuv ul ul ul li a, #menuv ul ul li a, #menuv ul ul li a:hover, #menuv ul ul ul li a:hover { 	
	border: 1px solid #CCCCCC;		 /*place border around text on pop out menus*/
}
	
div#menuv ul ul,				 /*hide popo out menus*/
div#menuv ul ul ul,
div#menuv ul li:hover ul ul,
div#menuv ul li:hover ul ul ul{
	display:none;
}

div#menuv ul li:hover ul,		 /*on mouse over show pop out menus*/
div#menuv ul ul li:hover ul,
div#menuv ul ul ul li:hover ul{
	display:block;	
}





