.maintext {
	font-family: Tahoma, Verdana, Arial;
	font-size: 12px;
	line-height: 18px;
	color: #333333;
	text-decoration: none;
}
.thumbnail_caption {
	font-family: Tahoma, Verdana, Arial;
	font-size: 11px;
	color: #333333;
	text-decoration: none;
}



/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
font-family: Tahoma;
margin-left: 90px;
}
/* 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;
}

/* use the table to position the dropdown list */

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:12px;
width:110px;
padding:5px 0;
color:#000000;
background:#F3F3F3;
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* style the links hover */
.menu :hover{
color:#444;
background:#EFD8D8;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
margin-top: 0px;
margin-left: 0px;
}
/* make the sub level visible on hover list or link */
.menu ul :hover ul{
visibility:visible;
}