/* common styling */
/* set up the overall width of the menu div, the font and the margins with a relative position*/

.menu2 {
width:748px;
margin:0;
position:relative;
z-index:90;

}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu2 ul {
padding:0;
margin:0;
list-style-type: none;
border:0;
}
/* float the list so that the items are in a line */
.menu2 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. */
.menu2 ul li a, .menu2 ul li a:visited {
display:block;
text-align:center;
text-decoration:none;
width:148px;
height:130px;
color:#000;
border:1px solid #fff;
border-width:1px 1px 0 0;
background:#b2b6a6;
line-height:20px;
font-size:11px;
}
/* make the dropdown ul invisible */
.menu2 ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu2 ul li:hover a {
color:#fff;
background:#073a79;
}
/* make the sub menu ul visible and position it beneath the first list item */
.menu2 ul li:hover ul {
text-align:left;
display:block;
position:absolute;
top: 130px;
left:0;
text-align:left;
}
/* make the sub menu ul li the full width with padding and border. Add an auto scroll bar */
.menu2 ul li:hover ul li {
background:#707367;
color:#000;
padding:10px;
width:728px;
/*height: 220px;*/ /*added*/
/*border:20px solid #073a79;*/
}
/*float the image left with padding and no border */
.menu2 ul li:hover ul li img {
float:left;
padding:10px 10px 10px 0;
border:0;
}
/* style the paragraph font height */
.menu2 ul li:hover ul li p, .menu2 ul li:hover ul li h2 {
color: #ffffff;
background-color: #707367;
}
.menu2 ul li:hover ul li h2
{
	width: 100%;
}

.menu2 ul li:hover ul li h2 span.price
{
	position: absolute;
	left: 160px;
	border: 1px solid #ffffff;
	padding: 4px;
	font-size: 14px;
	font-weight: 700;
}

.menu2 ul li:hover ul li h2 span.footage
{
	position: absolute;
	right: 20px;
	border: 1px solid #ffffff;
	padding: 4px;
	font-size: 14px;
	font-weight: 700;
}

/* style the background and foreground color of the submenu links */
.menu2 ul li:hover ul li a {
display:inline;
background:#eee;
color:#c00;
text-decoration:underline;
border:0;
}
/* style the background and forground colors of the links on hover */
.menu2 ul li:hover ul li a:hover {
text-decoration:none;
color:#000;
background-color: #073a79;
}
