/* common styling */
/* set up the overall width of the nav div, the font and the margins */
.nav {
/*font-family: arial, sans-serif; 
width:750px; 
margin:0; 
margin:50px 0;*/}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.nav 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 */
.nav ul li {float:left;position:relative;color:#fff;}
.nav ul li a.p, .nav ul li a.p:visited {/*width:100px*/;color:#fff;}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.nav ul li a, .nav ul li a:visited {display:block; text-align:center; text-decoration:none;/* width:100px;*/ height:18px; /*border:1px solid #fff;*/
/*border-width:1px 1px 0 0;*/
/*background:#c9c9a7; */
line-height:28px; font-size:12px;color:#fff;}
/* make the dropdown ul invisible */
.nav ul li ul {display: none;width:190px;padding-top:6px;}
/* specific to non IE browsers */
/* set the background and foreground color of the main nav li on hover */
.nav ul li:hover a {color:#fff; background:#fff;}
/* make the sub nav ul visible and position it beneath the main nav list item */
.nav ul li:hover ul {display:block; position:absolute; top:18px; left:0; width:180px;color:#fff;}
/* style the background and foreground color of the subnav links */
.nav ul li:hover ul li a {display:block; background: #894B40; color:#fff;font-size:12px;width:140px;height:28px; text-align:left; padding-left:10px; padding-top:4px;border-bottom:1px solid #996059;}
/* style the background and forground colors of the links on hover */
.nav ul li:hover ul li a:hover {background:#7A3F37; color:#fff;}


