img#logoposition { margin-left:91px; margin-bottom: 8px; margin-top: 16px;}
/* remove the bullets, padding and margins from the lists */

.menu ul{
list-style-type:none;
padding:0;
margin:0;
float:right;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
margin-left: 7px;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:3px;
top:20px;
}

/* style all the links */
.menu a, .menu :visited {
	display:block;
	font-size:11px;
	width:139px;
	padding:6px 0 5px 0;
	color:#FFFFFF;
	background:#000000;
	text-decoration:none;
	/*margin-right:1px;*/
text-align:center;
	line-height: 14px;
}

.menu ul ul a, .menu ul ul :visited {
display:block;
font-size:11px;
width:100px;
padding:5px 0 5px 39px;
color:#FFFFFF;
background:#000000;
text-decoration:none;
/*margin-right:1px;*/
text-align: left;
line-height: 14px;
}
/* style the links hover */
.menu ul ul a:hover{
color:#FFD65A;
background:#5C5E60 url(../img/arrow_right.gif) no-repeat 25px center;
padding:5px 0 5px 41px;
width:98px;
}


/* style the links hover */
.menu a:hover{
color:#FFFFFF;
background:#939598;
padding:8px 0 3px 0;
text-decoration:none;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:124px;
height:0;
margin-left: -7px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul,
body#services .menu ul li a#services-tl:hover {
visibility:visible;
}

