/* Define font and margins for the entire body tag. */
body
{
    background: #735A4D;
}
html, input, textarea, select
{
    font-family: Arial, tahoma, verdana;
    font-size: 12px;
    color: #46362D;
}

/* top-align each td tag vertically. Individual td tags can over overridden later. */
td
{
    vertical-align: top;
}

/* Center the entire content block in the middle of the body. */
#PageWrapper
{
    margin: auto;
    width: 800px;
    background-color: #efe7d0;
    border-right: #e2d3ac thin solid;
    border-top: #e2d3ac thin solid;
    border-left: #e2d3ac thin solid;
    border-bottom: #e2d3ac thin solid;
}

/* Set the width, margin and border for the MainContent block. */
#MainContent
{
    width: 750px;
    min-height: 450px;
    height: 100%;
    padding: 10px 10px 40px;
   /* background-color: #efe7d0; */
   background-color: #ffffff;
   margin: 9px;
   border:  #e2d3ac thin solid;
    float: left;
    clear: both;
}


/*======= columns =======*/
#col_1
{
    width: 170px;
    height: 100%;
    float: left;
    padding-top: 20px;
    padding-right: 9px;
}
#col_2
{
    width: 330px;
    padding-right: 9px;
    float: left;
    height: 100%;
    padding-top: 20px;
}
#col_3
{
    width: 160px;
    padding-top: 20px;
    margin-left: 555px;
    height: 100%;
}
.separate
{
    width: 15px;
    margin-right: 5px;
    float: left;
}
.separate img
{
    margin-top: 20px;
}
.elements  
{
    width: 300px;
    float: left;
  
}

ul
{
    margin: 0;
    padding: 0;
}
li
{
    background: url(images/list_bull.gif) top left no-repeat;
}
li a
{
    line-height: 16px;
    color: #EA6C13;
    text-decoration: underline;
}
li a:hover
{
    text-decoration: none;
    color: #EA6C13;
}

/*footer*/
#footer
{
    color: #DECEA4;
    margin-top: auto;
    padding: 16px 15px 17px 12px;
    width: 770px;
    text-align: center;
    color: #735A4D;
    font-size: 90%;
    clear: both;
}
#footer a
{
    color: #EA6C13;
    text-decoration: none;
}
#footer a:hover
{
    color: #DECEA4;
    text-decoration: underline;
}
#footer span
{
    float: right;
    color: #DECEA4;
}

/* Give a width to the main menu. */
#MainMenu
{
    width: 770px;
    padding: 0 0 0 35px;
    margin: 0px;
}


/* Define the width and border for the sub menu.*/
#SubMenu
{
    width: 764px;
    clear: both;
    height: 25px;
    padding: 0 0 0 20px;
}

/* Remove the bullets and margin from each ul tag in the main and sub menu. */
#MainMenu ul, #SubMenu ul, AdminMenu ul
{
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Define the appearance of the menu items in the Main Menu. The background-image property is used to give each item the Tab background. */
#MainMenu li
{
    float: left;
    height: 23px;
    padding-top: 5px;
    text-align: center;
    font-size: 15px;
    width: 86px;
    background-repeat: no-repeat;
    background-image: url(../Images/MenuBackground.gif);
    font-weight: bold;
}

/* Change the background image for a selected Main Menu item to the Selected tab. */
#MainMenu li.Selected
{
    background-image: url(../Images/MenuBackgroundSelected.gif);
}

/* Apply marging and padding for the entire ul tag in the SubMenu div. */
#SubMenu ul
{
    margin: 5px 0 0 0;
    padding: 0 0 0 20px;
}

/* Change behavior for each of the single menu items in the Sub Menu. */
#SubMenu li
{
    margin: 0;
    padding: 0;
    display: inline;
    padding-right: 15px;
    font-size: 110%;
}

/* Change the appearance of the links inside the main and sub menu items. This is the text that appears as the menu. */
#MainMenu a, #SubMenu a, #AdminMenu a
{
    color: #ffffff;
    text-decoration: none;
}

/* Change the color of a sub menu to black. */
#SubMenu a
{
    color: #0c7dc3;
}

/* Change the font-weight of a selected sub menu item to bold. */
#SubMenu a.Selected
{
    font-weight: bold;
    color: #336699;
}

/* Change the margin for the ul tag that holds the Admin menu in the Management folder. */
#AdminMenu
{
    width: 764px;
    clear: both;
    height: 25px;
    padding: 0 0 0 20px;
}

#AdminMenu ul
{
    margin: 5px 0 0 0;
    padding: 0 0 0 20px;
}

#AdminMenu li
{
    margin: 0;
    padding: 0;
    display: inline;
    padding-right: 15px;
    font-size: 95%;
}

/* Change the color and font size for the menu items in the Admin menu. */
#AdminMenu a
{
    color: #0c7dc3;
}


