/*set text size*/


/*set a width of the whole ddmenu*/
#ddmenu{
position: absolute;
top: 96px;
left: 0px;
padding: 0px 0px 0px 96px ;
width:100%;
min-width: 1200px;
background: #602B00;
float: left;
z-index: 40;
}

/*remove the margins padding and list discs*/
#ddmenu ul {
list-style: none;
margin: 0;
padding: 0;
width: 8em;
float: left;
border-left: 1px white solid;
z-index: 40;
}


/*Visually format the menus*/

#ddmenu a, #ddmenu h2 {
font: bold 14px arial, helvetica, sans-serif;
display: block;
text-align: center;
border-width: 0 1px 0 0px;
border-style: solid;
border-color: #ffffff;
margin: 0;
padding: 0;
}

#ddmenu h2 {
color: #ffec74;
background-color: #602B00;
background-image: url(../images/bbbkgnd.gif);
line-height: 32px;
text-transform: uppercase;
}


#ddmenu a {
color: #ffec74;
height: 22px;
background-color: #635346;
padding: 8px 0px 0px 0px;
text-decoration: none;
}

#ddmenu a.home{
font-size: 14px;
background-color: transparent;
}


#ddmenu a:hover {
color: #a00;
background: #d8b98d;
}

/*Position the pop outs*/

#ddmenu ul ul {
position: absolute;
border-top: 1px white solid;
border-left: none;
border-right: none;
border-bottom: none;
top: 32px;
left: 0;
}

/*Make the position of the list items relative to their parent ul*/

#ddmenu li {
position: relative;
margin: 0px; /*remove the margins set in text.css*/
}

#ddmenu ul ul li {
border-color: #f1eeea;
border-width: 0px 1px 1px 1px;
border-style: solid;
}

#ddmenu ul ul li a{
border: none;
}

#ddmenu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

#ddmenu ul ul {
position: absolute;
width: 100%;
padding: 0;
margin:0;
z-index: 500;
}

/*Hide the pop outs*/

div#ddmenu ul ul {
display: none;
}

/*Show the pop outs when a second level li is hovered over*/
div#ddmenu ul li:hover ul
{display: block;}


