/* TABS */

.tabs_div {
    height: 28px;
    padding-right: 4px;
    padding-left: 4px;
    margin-bottom: 14px;
    width: 720px;
}

.tab {
    float:right;
    width: 144px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
}

.tab:hover {
}

.tab a {
    color: #333;
    display: block;
    height: 26px;
    line-height: 24px;
    text-shadow: #ffffff 0px 1px 0;
    background-color: #F5F5F5;
    background: -moz-linear-gradient(-90deg, #FBFBFB, #D1D1D1);
    background: -webkit-gradient(linear, left top, left bottom, from(#FBFBFB), to(#D1D1D1));
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr=#FBFBFB, endColorStr=#D1D1D1);
    border: 1px solid #777;
    border-left-color: #D0D0D0;
}

.tab:first-child a {
    -moz-border-radius: 0 10px 10px 0;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-top-right-radius: 10px;
}

.lasttab a {  /* using .lasttab instead of :last-child for IE */
    border-left-color: #777;
    -moz-border-radius: 10px 0 0 10px;
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-top-left-radius: 10px;
}

.tab a:visited {
    color: #333;
}

.tab a:hover, #chosentab a {
    color: white;
    text-shadow: black 0px 1px 0;
    border-left-color: #777;
}

.tab a:hover, #chosentab a:hover {
    background-color: #5A5A5A;
    background: -moz-linear-gradient(-90deg, #626262, #525252);
    background: -webkit-gradient(linear, left top, left bottom, from(#626262), to(#525252));
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr=#626262, endColorStr=#525252);
}

#chosentab a {
    background-color: #7A7A7A;
    background: -moz-linear-gradient(-90deg, #828282, #727272);
    background: -webkit-gradient(linear, left top, left bottom, from(#828282), to(#727272));
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr=#828282, endColorStr=#727272);
}

#content_wrapper {
    background: white;
    margin: auto;
    width: 676px;
    padding: 20px;
}
