﻿#menu .Menu1
{
    margin: 0 auto;
    height: 36px;
}
#menu .Item
{
    /* CSS class for non-selected Menu Item */
    /*background: url(Images/button.png) no-repeat;
    background-position: center center;*/
    width: 120px; /*height: 32px;*/
    text-align: center;
    border-collapse: collapse;
    padding: 10px 0px 10px 0px;
}

#menu .Item, x:-moz-any-link
{
    /*for firefox 1 and 2*/
    /*background: url(Images/button.png) no-repeat;
    background-position: center center;*/
    width: 120px; /*height: 32px;*/
    text-align: center;
    border-collapse: collapse;
    padding: 10px 0px 10px 0px;
}

#menu .Item, x:-moz-any-link, x:default
{
    /*for firefox 3 and newer*/
    /*background: url(Images/button.png) no-repeat;
    background-position: center center;*/
    width: 120px; /*height: 32px;*/
    text-align: center;
    border-collapse: collapse;
    padding: 10px 0px 10px 0px;
}

#menu .ItemSelected
{
    /* CSS class for hovering and selected Menu Item       ... which can be split up, of course! */ /*background: url(Images/btnSelected.png) no-repeat;   background-position:center center;*/
    width: 120px;
    border-collapse: collapse;
    color: #333;
}

#menu .SubMenu
{
    background: url(Images/buttonsub.png);
    background-repeat: repeat-y;
    background-position:  left center;
    background-color: #FFF;
    padding: 0px 0px 0px 20px;
    width: 140px;
}

#menu .SubItem
{
   width: 140px;
   padding: 5px 5px 5px 0px;
   margin: 0px 0px 0px 5px;
   height: 20px;
}

#menu .SubItemHover
{
    /*background: url(Images/button.png) no-repeat;
    background-position: left center;*/
    background-color: #E41715;
    color: #333;
}

#menu .ItemHover
{
    /*background: url(Images/button.png) no-repeat;
    background-position: center center;*/
    color: #333;
}

/* CSS classes for standard Links, only valid inside the #menu DIV */
#menu a, #menu a:visited
{
    background: transparent !important;
    display: block;
    }

#menu a:hover, #menu a:active, #menu a:focus
{
    background: transparent !important;
    display: block;
}

