/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
	font-family: verdana, arial, sans-serif;
	width:500;
	font-weight: bold;
	z-index: 10;
	position: relative;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left; 
position:relative;
}
/* style the links to be 125px wide by 30px high. Set the color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
width:125px; 
height:30px; 
color:#fff; 
line-height:30px; 
font-size:10px;
}
/* set up the background images relative to this css file */
.about {background:#fff url(../images/menu1.jpg);}
.aboutdrop {background:transparent url(../images/menu1.jpg) 0 -31px;}
.ride {background:#fff url(../images/menu2.jpg);}
.ridedrop {background:transparent url(../images/menu2.jpg) 0 -31px;}
.jet {background:#fff url(../images/menu3.jpg);}
.jetdrop {background:transparent url(../images/menu3.jpg) 0 -31px;}
.contact {background:#fff url(../images/menu4.jpg);}
.contactdrop {background:transparent url(../images/menu4.jpg) 0 -31px;}

/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#ffcc00; 
}
.menu ul li:hover a span {display:none;}

/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute; 
top:30px; 
left:0; 
width:125px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:block; 
color:#fff;
}
/* style the hidden span text */
.menu ul li:hover ul li a span {
	display:none;
	position:absolute;
	left:125px;
	top:0;
	background:#FFCC00;
	width:125px;
	padding:10px 10px 10px 10px;
	color:#003366;
	border: solid #000 5px;
}
/* style the first letter of the span text */
.menu ul li:hover ul li a span:first-letter {
font-weight:bold;
font-size:1.2em;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li:hover {
background:#000;
}
/* make the span text visible */
.menu ul li:hover ul li:hover span {
display:block;
text-align:left;
line-height:1.5em;
}
/* position the span text on the left of the last menu item */
.menu ul li:hover ul.left li:hover span {
left:-155px;
}
