﻿#tabContainer
{
    margin-bottom: 40px;
    min-height: 600px;
}
#tabContainer label:hover
{
    background-color: #D8D1CB;
    color: #465c71;
}
.tab
{
    background-color: #A99D93;
    border-radius: 5px 5px 0 0;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: medium;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    width: 250px;
}
.activeTab
{
    background-color: #918377;
    border-radius: 5px 5px 0 0;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Arial;
    font-size: medium;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    width: 250px;
}

/*Control Message Box*/
.modal
{
    z-index: 10;
    position: fixed;
    background-color: #000;
}

/*Control Message Box*/
#messageBox
{
    border-color: lightgray;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    background-color: White;
    display: none;
    position: fixed;
    width: 350px;
    z-index: 1000000;
}
#m-title
{
    background-color: #808080;
    border-radius: 9px 9px 0 0;
    color: #FFFFFF;
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
#m-message
{
    display: inline-block;
    font-size: 11px;
    margin: 10px;
    text-align: center;
    width: 100%;
}
#m-close
{
    margin-left: 335px;
    margin-top: -10px;
    position: absolute;
}
.m-cancel
{
    background-image: url("../Img/MsgBox/Cancel.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    cursor: pointer;
    float: right;
    height: 32px;
    margin-right: 10px;
    width: 32px;
}
.m-acept
{
    background-image: url("../Img/MsgBox/Acept.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    cursor: pointer;
    float: right;
    height: 32px;
    margin-right: 10px;
    width: 32px;
}
.closeIcoButton
{
    background-image: url("../Img/MsgBox/delete.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    cursor: pointer;
    height: 25px;
    width: 25px;
}