/* ===================================== Start Nav Bar =============================== */

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/artists_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.menu {
font-family: verdana, arial, sans-serif; 
width:798px; 
position:relative;
z-index:100;
margin: 0 auto;
}
/* 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; 
position:relative;
}
/* style the links (main) to be 133px wide by 30px high. Set the color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
width:133px; 
height:30px; 
color:#000000; 
line-height:30px; 
font-size:10px;
}
/* set up the background images relative to this css file */
.about {background:#fff url(navbar_about.jpg);}
.about_list {background:transparent url(navbar_about.jpg) 0 -31px;}
.services {background:#fff url(navbar_services.jpg);}
.services_list {background:transparent url(navbar_services.jpg) 0 -31px;}
.showcase {background:#fff url(navbar_showcase.jpg);}
.showcase_list {background:transparent url(navbar_showcase.jpg) 0 -31px;}
.clients {background:#fff url(navbar_clients.jpg);}
.clients_list {background:transparent url(navbar_clients.jpg) 0 -31px;}
.merchandise {background:#fff url(navbar_merchandise.jpg);}
.merchandise_list {background:transparent url(navbar_merchandise.jpg) 0 -31px;}
.contact {background:#fff url(navbar_contact.jpg);}
.contact_list {background:transparent url(navbar_contact.jpg) 0 -31px;}

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

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#FFFFFF; 
}
.menu ul li:hover a span {display:none;}

/* make the sub menu (drop down) ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
visibility:visible; 
top:30px; 
left:0; 
width:133px;
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a {
display:block; 
color:#FFFFFF;
}
/* style the hidden span (description) text */
.menu ul li:hover ul li a span {
display:none;
position:absolute;
left:133px; top:0;
background:#FFFFFF;
width:133px;
/* Up, Right, Down, Left */
padding: 8px 10px 7px 10px;
/* Description text color */
color:#000000;
}
/* style the first letter of the span text */
.menu ul li:hover ul li a span:first-letter {
font-weight: normal;
font-size: inherit;
}
/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li:hover {
background: #000000;
}
/* make the span text visible */
.menu ul li:hover ul li:hover span {
display:block;
text-align:left;
line-height:1.5em;
}
/* position the span text on the left of the last menu item */
.menu ul li:hover ul.left li:hover span {
left:-152px;
}
/* ===================================== End Nav Bar =============================== */