/*  Nations Light Blue Main Menu Bar CSS for Menus using English */

.buttonmenu ul{
   margin: 0;
   padding: 0;
   font: bold 12px arial, tahoma;
   list-style-type: none;
   border-bottom: 0px solid gray;
   background: #5A8CE7;
   overflow: hidden;
   width: 100%
}

.buttonmenu li{
   display: inline;
   margin: 0
}

.buttonmenu li a{
   float: left;
   display: block;
   text-decoration: none;
   margin: 0;
   padding: 3px 21px 3px 20px; /*padding inside each tab*/
   border: 2px solid #5A8CE7;
   color: white;
   background: #5A8CE7
}

.buttonmenu li a:visited{
   color: white
}

.buttonmenu li a:hover{
   color: #E40000;
   background: #FFEC8D; /*background of tabs for hover state */
   border-style: outset
}

.buttonmenu a.selected{
   color: #E40000;
   background: #FFEC8D /*background of tab with "selected" class assigned to its LI */
}

/*  End Main Menu Bar definitions */

/*  Nations Light Blue Main Menu Bar CSS for menus in spanish*/

.buttonmenu_sp ul{
   margin: 0;
   padding: 0;
   font: bold 12px arial, tahoma;
   list-style-type: none;
   border-bottom: 0px solid gray;
   background: #5A8CE7;
   overflow: hidden;
   width: 100%
}

.buttonmenu_sp li{
   display: inline;
   margin: 0
}

.buttonmenu_sp li a{
   float: left;
   display: block;
   text-decoration: none;
   margin: 0;
   padding: 2px 17px 3px 17px; /*padding inside each tab*/
    border: 2px solid #5A8CE7;
   color: white;
   background: #5A8CE7
}

.buttonmenu_sp li a:visited{
   color: white
}

.buttonmenu_sp li a:hover{
   color: #E40000;
   background: #FFEC8D; /*background of tabs for hover state */
   border-style: outset
}

.buttonmenu_sp a.selected{
   color: #E40000;
   background: #FFEC8D /*background of tab with "selected" class assigned to its LI */
}

/*  End Main Menu Bar definitions */

/* Define Sub Drop Down Menus */


.ddsubmenustyle, .ddsubmenustyle div{ /*topmost and sub ULs, respectively*/
    font: normal 11px arial, tahoma;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    list-style-type: none;
    background: white;
    border: 1px solid #6B97E9;
    border-bottom-width: 0;
    visibility: hidden;
   z-index: 100;
}

.ddsubmenustyle ul{
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
border: 0px none;
}

.ddsubmenustyle li a{
    font: normal arial, tahoma;
    display: block;
    width: 200px; /*width of menu (not including side paddings)*/
    color: black;
    background-color: #FFFFD3;
    text-decoration: none;
    padding: 3px 2px 3px 5px;
    border-bottom: 2px solid #6B97E9;
    box-shadow: 3px 3px 6px #0F214C;
}

* html .ddsubmenustyle li{ /*IE6 CSS hack*/
    display: inline-block;
    width: 200px; /*width of menu (include side paddings of LI A*/
}

.ddsubmenustyle li a:hover{
    background-color: #FFFFAB;
    color: #E40000;
}

/* ######### Neutral CSS  ######### */

.downarrowpointer{ /*CSS for "down" arrow image added to top menu items*/
    padding-left: 4px;
    border: 0;
}

.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
    position: absolute;
    padding-top: 3px;
    left: 100px;
    border: 0;
}

.ddiframeshim{
    position: absolute;
    z-index: 500;
    background: transparent;
    border-width: 0;
    width: 0;
    height: 0;
    display: block;
}


