/* Top Row */

#Menu {
	float: left;
	display: inline;
	width: 1001px;
	margin-top: 4px;
	margin-bottom: 18px;
	padding: 0px;
	background-color: #000;
}

/* hack to correct IE5.5 faulty box model */
* html #Menu { 
	width: 1001px;
	w\idth: 1001px;}

/* remove all the bullets, borders and padding from the default list styling */
#Menu ul { 
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float: left;
}

#Menu ul ul {
	width: 172px;
}

#Menu ul ul ul {
	width: 150px;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#Menu li { 
	float: left;
	position: relative;
}

/* style the links for the top level */
#Menu li a.home {
	display: block;
	background: url(../images/menu/home.jpg) top left no-repeat;
	width: 202px;
	height: 33px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.home:hover {
	background: url(../images/menu/home.jpg) bottom left no-repeat;
	outline: none;	
}

#Menu li a.about {
	display: block;
	background: url(../images/menu/about.jpg) top left no-repeat;
	width: 203px;
	height: 33px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.about:hover {
	background: url(../images/menu/about.jpg) bottom left no-repeat;
	outline: none;
}

#Menu li a.service {
	display: block;
	background: url(../images/menu/services.jpg) top left no-repeat;
	width: 200px;
	height: 33px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.service:hover {
	background: url(../images/menu/services.jpg) bottom left no-repeat;
	outline: none;
}

#Menu li a.fleet {
	display: block;
	background: url(../images/menu/fleet.jpg) top left no-repeat;
	width: 199px;
	height: 33px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.fleet:hover {
	background: url(../images/menu/fleet.jpg) bottom left no-repeat;
	outline: none;	
}

#Menu li a.contact {
	display: block;
	background: url(../images/menu/contact.jpg) top left no-repeat;
	width: 197px;
	height: 33px;
	text-indent: -9999px;
	outline: none;
}

#Menu li a.contact:hover {
	background: url(../images/menu/contact.jpg) bottom left no-repeat;
	outline: none;
}

/* a hack so that IE5.5 faulty box model is corrected 
* html #Menu a, * html #Menu a:visited { 
	width: 149px;
	w\idth: 138px;
}*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
#Menu ul ul { 
	visibility: hidden;
	position: absolute;
	z-index: 100;
	height: 0;
	top: 33px;
	left: 0px;
	width: 196px;
}

/* another hack for IE5.5 */
* html #Menu ul ul { 
	top: 33px;
	t\op: 32px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#Menu table {
	position: absolute;
	top: 0;
	left: 0;
	border-collapse: collapse;
}

/* style the second level links */
#Menu ul ul a, #Menu ul ul a:visited {
	display: block;
	background: #000;
	color: #999999;
	height: auto;
	padding: 6px 14px;
	width: 164px;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	border-width: 0 1px 1px 1px;
	border-left: #979797 1px solid;
	border-right: #979797 1px solid;	
	opacity:0.9;
	outline: none;
}


/* yet another hack for IE5.5 */
* html #Menu ul ul a, * html #Menu ul ul a:visited {
	width: 172px;
	w\idth: 171px;
}

#Menu ul ul a:hover{
	color:#fff;
	background: #000;
	text-decoration: none;
	outline: none;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#Menu ul ul ul { 
	visibility: hidden;
	position: absolute;
	z-index: 0;
	height: 0;
	top: 0px;
	left: 193px;
}

/* another hack for IE5.5 */
* html #Menu ul ul ul { 
	top: 0px;
	t\op: 0px;
}

/* style the second level links */
#Menu ul ul ul a, #Menu ul ul ul a:visited {
	display: block;
	background: #000;
	color: #999999;
	height: auto;
	padding: 6px 14px;
	width: 142px;
	font-size: 13px;
	font-weight: bold;
	text-decoration: none;
	border-width: 0 1px 1px 1px;
	border-left: #979797 1px solid;
	border-right: #979797 1px solid;	
	opacity:0.9;
	outline: none;
}

#Menu ul ul ul a:hover{
	color:#fff;
	background: #000;
	text-decoration: none;
	outline: none;
}

/* style the top level hover */
#Menu a:hover{
	background: none;
}


#Menu :hover > a {
	color:#007dc3;
}

#Menu ul ul :hover > a {
	color:#fff;
	background: #000;
}

/* make the second level visible when hover on first level list OR link */
#Menu ul li:hover ul,
#Menu ul a:hover ul{
	visibility: visible;
}

/* keep the third level hidden when you hover on first level list OR link */
#Menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
#Menu ul :hover ul :hover ul{ visibility:visible;}