@charset "utf-8";
/* CSS Document */

/***************************MENU STYLING - DO NOT CHANGE*/
/* set up the overall width of the menu div, the font and the margins with a relative position*/
.menu 
{font-family: verdana, arial, sans-serif; width: 100%; margin: 1px;  position: absolute; top: 1px; left: 100px; z-index: 2000;}/*changed position from relative to absolute*/

/* I have the drop down menu items wrapped in <p></p> tags so I can style them separately*/
.menu p
{font-size: 11px; line-height: 1em; margin-right: 1px; padding-top: 5px; padding-bottom: 5px;text-align: center;}

/* 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; border:0;}

/* float the list so that the items are in a line */
.menu ul li 
{float:left; position:relative; margin-right:1px;}

/* style the links and set the background color and the font size on menu items. */
.menu ul li a, 
.menu ul li a:visited 
{display:block; text-align: center; text-decoration: none; width: 155px; height: 40px; /*sets the main menu img vertical height*/ color: #2d0202; /*this is the main menu text color*/ background: url(images/tab_top.gif); border: none; line-height: 36px; /*sets the main menu text up or down on the img*/ font-size: 12px; font-weight: 600;}

/* Get rid of any default table style */
table {border-collapse:collapse;margin:0; padding:0;}

/* make the dropdown ul invisible */
.menu ul li ul {display: none;}

/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a, 
.menu ul li a:hover
{color:#c9bf9e; border:0;}

/* make the sub menu ul visible and position it beneath the first list item */
.menu ul li:hover ul, 
.menu ul li a:hover ul
{text-align:center; display:block; position:absolute; top: 35px; /*sets the top of the dropdown down from the top menu*/ left:-15px; z-index:1500;
padding: 0 30px 20px 20px; /*0 30px 20px 20px;*/ background: url(images/tab_bot.gif) 20px /*<-don't change*/ 100% /*<-don't change*/ no-repeat;}

/* make the sub menu ul li the full width with padding and border. Add an auto scroll bar */
.menu ul li:hover ul li, 
.menu ul li a:hover ul li
{background:#587963; color: #000;/*<-black*/ width: 150px; height: auto; } /*adding height auto removes scroll bars*/

/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a, 
.menu ul li a:hover ul li a
{display:block; background:#587963; /*dropdown color*/ color:#c9bf9e; /*<-text color on dropdown*/ border-right: 2px solid #587963; width:auto; height: 35px; /*<-sets the height of the menu dropdown items*/  text-align:left; text-decoration:none; border:0; /*text-indent:10px;*/}

/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover
{text-decoration:none; color:#fff; background:#A56142;}


