@charset "utf-8";
/* CSS Document */

	
	
a.navlink:active{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:left;
	display:block;
	font-weight:normal;
	text-decoration:none;
	color:#000;}
	
a.navlink:visited{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	display:block;
	text-align:left;
	text-decoration:none;
	font-weight:normal;
	color:#000;}
	
a.navlink:link{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	text-align:left;
	text-decoration:none;
	display:block;
	font-weight:normal;
	color:#000;}
	
a.navlink:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	display:block;
	text-decoration:none;
	text-align:left;
	font-weight:normal;
	color:#b2ab9b;}


/* style the outer div to give it width */
.menu {
width:343px;
background-color:#dde8ff;
height:23px;
font-size:14px;
font-family:Arial, Helvetica, sans-serif;
z-index:5;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:200px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
min-width:67px;
position:relative;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#000; 
min-width:67px; 
height:21px; 
border:1px solid #dde8ff;
border-right-color:#FFF;
border-width:1px 1px 0 0; 
background:#dde8ff; 
padding:0px 6px 0px 6px; 
line-height:22px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
min-width:70px
w\idth:69px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#dde8ff;
}
/* style the second level hover */
.menu ul ul a.drop:hover {
background:#c9ba65;
}
.menu ul ul :hover > a.drop {
background:#c9ba65;
}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menu ul ul ul a:hover{
background:#b2ab9b;
}
.menu ul ul ul :hover > a {
background:#b2ab9b;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {border-collapse:collapse; border:0; position:absolute; left:0; bottom:-1px;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
border-left:1px solid #fff;
bottom:22px;
left:0; 
margin:0px 0px 0px 20px;
width:200px;
z-index:5;
}
* html .menu ul ul {
bottom:22px;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:url(http://www.hazemaguk.com/images/nav-dd-bg.png);
color:#fff; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:180px
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:200px;
w\idth:180px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#94a6cb; 
/*background:#dde8ff;*/
}
.menu :hover > a, .menu ul ul :hover > a {
color:#002b83;
background:#dde8ff;
}

/* 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;
height:auto;
}

