/* CSS Document */

.navbar {
margin:0; 
position:relative;
width:805px;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.navbar 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 */
.navbar ul li {
float:left; 
position:relative;
}
/* style the links to be 150px wide by 30px high. Set the color and the font size. */
.navbar ul li a, .navbar ul li a:visited {
display:block; 
text-decoration:none; 
/* width:150px; 
height:30px; 
color:#fff; */
line-height:33px; 
}
/* set up the background images relative to this css file 
.navbarCompanyDrop {visibility:hidden;} */


/* make the dropdown ul invisible */
.navbar ul li ul {
visibility:hidden;
position:absolute;
}

/* make the sub menu ul visible and position it beneath the main menu list item */
.navbar ul li:hover ul {
visibility:visible; 
top:57px; 
left:-79px; 
}

/* style the background and foreground color of the submenu links */
.navbar ul li:hover ul li a {
display:inline;
color:#4F3E22;
}

.navbar ul li:hover ul li span {
position:absolute;
top:-4px;
left:8px;
font-size:12px;
}

.navbar ul li:hover ul li {
background: url(images/dropDownBckgrd.gif) top left no-repeat;
width:343px;
height:23px;
}

a#home img {background: url(images/CompanyGrowthHome.jpg) top left no-repeat;}
a#home:hover img {background: url(images/CompanyGrowthHomeOver.jpg) top left no-repeat;}

a#company img {background: url(images/CompanyGrowthCompany.jpg) top left no-repeat;}
a#company:hover img {background: url(images/CompanyGrowthCompanyOver.jpg) top left no-repeat;}

a#life_settlements img {background: url(images/CompanyGrowthSettlements.jpg) top left no-repeat;}
a#life_settlements:hover img {background: url(images/CompanyGrowthSettlementsOver.jpg) top left no-repeat;}

a#CompanyGrowth img {background: url(images/CompanyGrowthCompanyGrowth.jpg) top left no-repeat;}
a#CompanyGrowth:hover img {background: url(images/CompanyGrowthCompanyGrowthOver.jpg) top left no-repeat;}

a#Officers img {background: url(images/CompanyGrowthOfficers.jpg) top left no-repeat;}
a#Officers:hover img {background: url(images/CompanyGrowthOfficersOver.jpg) top left no-repeat;}

a#investor_relations img {background: url(images/CompanyGrowthInvestor.jpg) top left no-repeat;}
a#investor_relations:hover img {background: url(images/CompanyGrowthInvestorOver.jpg) top left no-repeat;}

a#contact_us img {background: url(images/CompanyGrowthContact.jpg) top left no-repeat;}
a#contact_us:hover img {background: url(images/CompanyGrowthContactOver.jpg) top left no-repeat;}

.navBarImage {background: url(images/CompanyGrowthNavBar.jpg) top left no-repeat; width:805px; height:258px; clear:left;}
