.lftbg{
	float:left;
	background:url(../Images/dot_10.gif) no-repeat 5px 6px;
	}
.lftbg span.char{
	float:left;
	padding-left:25px;
	}
.rgtbg{
	float:right;
	width:23px;
	height:15px;
	margin:5px 5px 0 0;
	display:inline;
	background:url(../Images/arrow1_10.gif) no-repeat 15px 0;
	}
/* common styling */
/* set up the overall width of the menu div, the font and the margins */
.menu {
font-family: arial, sans-serif; 
width:100%; 
margin:0; 
background:#008db3
}
/* 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;
width:100%;
position:relative;
}
/* style the links to be 104px wide by 22px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
cursor:pointer;
text-align:left; 
text-decoration:none; 
width:100%; 
height:24px; 
color:white;
font-weight:bold;
background:url(../images/hover.gif) 0 -24px repeat-x; 
line-height:24px; 
}
.menu ul li a:hover {
background:url(../images/hover.gif) repeat-x; 

}
/* 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 */

/* 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:-1px; 
left:100%;
border:1px solid #507095;
border-bottom:none;
width:158px;
}