/***************/
/* Wrapper Div */
/***************/
.livedd{
}

/************/
/* Main Nav */
/************/
.livedd ul{
        background: url(images/nav.gif) 0px 0px repeat-x;
        height:31px;
        line-height:31px;
        margin: 0;
        padding:0;
        
        font-size:11px;
        font-weight:bold;
        font-family:Tahoma, Arial, Verdana, sans-serif;
        text-transform:uppercase;
        text-decoration:none;
        
        list-style-type: none;
        text-align: left; /* Set to left, center, or right to align the menu as desired */
}

/******************/
/* Main Nav Items */
/******************/
.livedd li{
        display: inline;
        margin: 0;
}

.livedd li a{
        text-decoration: none;
		color:#FFF;
        padding:9px 11px;
}

.livedd li a:visited{
}

/*************************************/
/* Hovered Item w/OUT Sub - Main Nav */
/*************************************/
.livedd li a:hover{
        background: url(images/nav.gif) 0px -62px repeat-x;
        color:#FFF;
        padding:9px 11px;
}

/**********************************/
/* Hovered Item w/ Sub - Main Nav */
/**********************************/
.livedd li.selected{
}

.livedd li.selected a{
		background: url(images/nav.gif) 0px -62px repeat-x;
}

.livedd li.selected a:hover{
        text-decoration: none;
}

/******************************/
/* Separator Style - Main Nav */
/******************************/
.livedd li.separator{
}

/****************/
/* Dropdown Nav */
/****************/
.livedd_sub{
        position:absolute;
        top: 0;
        margin-top:-2px;
        border: 1px solid #88c451;
        border-width:1px 1px 0 1px;
        font-size:11px;
        font-family:"Trebuchet MS",Tahoma, Arial, sans-serif;
        line-height:18px;
        z-index:100;
        background-color: white;
        width: 220px;
        visibility: hidden;
}

/**********************/
/* Dropdown Nav Items */
/**********************/
.livedd_sub a{
        width: auto;
        display: block;
        text-indent: 5px;
        border: 0 solid #88c451;
        border-bottom-width: 1px;
        padding: 2px 0;
        text-decoration: none;
        color: black;
}

.livedd_sub a:hover{
        background-color: #94d659;
        color:#FFF;
}

/****************/
/* Hacks / Misc */
/****************/
/*IE only hacks*/
* html .livedd_sub a{width: 100%;}
* html .livedd_sub{margin-top:-1px;margin-left:1px;}