/* common styling */
/* set up the overall width of the menu div, the font and the margins with a relative position*/

.menu1 {
	font-family: verdana, arial, sans-serif;
	position:relative;
	width:768px;
	text-align:left;
}

.menu1 .item{
	padding-top:9px;
	line-height:15px;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu1 .ul {
	list-style-type: none;
	margin:0;
	padding:0;
}
/* float the list so that the items are in a line */
.menu1 .ul .li {
	float:left;	
}
/* style the links to be 249px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu1 .ul .li a, .menu .ul .li a:visited {
	display:block; 
	text-decoration:none; 
	line-height:15px;
	padding-top:9px;
	padding-left:200px;
}
/* make the dropdown ul invisible */
.menu1 .ul .li .ul {
	display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu1 .ul .li:hover a {
}
/* make the sub menu ul visible and position it beneath the first list item */
.menu1 .ul .li:hover .ul {
	text-align:left;
	display:block; 
	position:absolute;
	left:0px;
	top:24px;
}
/* make the sub menu ul li the full width with padding and border. Add an auto scroll bar */
.menu1 .ul .li:hover .ul .li {
	color:#FFF;
	width:758px;
	padding:2px 10px;
	line-height:25px;
	overflow:auto;
	background:#000;
	margin-top:-54px;
	border-top:1px solid #db0101;
	filter:alpha (opacity=70);
	height:25px;
}
/*float the image left with padding and no border */
.menu1 .ul .li:hover .ul .li img {
	float:left; 
	padding:10px 10px 10px 0; 
	border:0;
}
/* style the paragraph font height */
.menu1 .ul .li:hover .ul .li p {
	font-size:0.9em;
}
/* style the background and foreground color of the submenu links */
.menu1 .ul .li:hover .ul .li a {
	display:inline;
	color:#FFF;
}
/* style the background and forground colors of the links on hover */

.menu1 .ul .li .ul .li a:link {
	color: #FFFFFF;
	text-decoration: none;	
	padding-left:0px;
}
.menu1 .ul .li .ul .li a:visited {
	text-decoration: none;
	color: #FFFFFF;
	padding-left:0px;
}
.menu1 .ul .li .ul .li a:hover {
	text-decoration: underline;
	color: #FFFFFF;
	padding-left:0px;
}
.menu1 .ul .li .ul .li a:active {
	text-decoration: none;
	color: #FFFFFF;
	padding-left:0px;
}
