/* tabs */

.tabs {
    width: 100%;
    overflow: hidden;
    zoom: 1;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 1;
}
.tabs dt {
    float: left;
    position: relative;
    margin-right: 5px;
    padding: 0 5px;
    height: 26px;
    line-height: 26px;
    font-size: 13px;
    color: #555555;
    cursor: pointer;
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    background: #e8e8e8;
    background: -moz-linear-gradient(top, #e8e8e8 80%, #bdbdbd 130%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, #e8e8e8), color-stop(130%, #bdbdbd));
    background: linear-gradient(top, #e8e8e8 80%, #bdbdbd 130%);
    background: -webkit-linear-gradient(top, #e8e8e8 80%, #bdbdbd 130%);
    background: -ms-linear-gradient(top, #e8e8e8 80%, #bdbdbd 130%);
    background: -o-linear-gradient(top, #e8e8e8 80%, #bdbdbd 130%);
}
.tabs dt:hover {
    background: #cacaca;
    border-color: #bbb;
}
.tabs dt.selected {
    cursor: auto;
    color: #fff;
    background: #cacaca;
    border-color: #bbb;
}
.tabs dd {
    background: #fff;
    display: none;
    float: right;
    width: 100%;
    position: relative;
    z-index: 2;
    margin: 26px 0 0 -100%
}
.tabs dd.selected {
    display: block;
}
.tabs .tab-content {
    border: 1px solid #CCC;
    overflow: hidden;
    padding: 10px;
}
.tabs .moduletable {
    margin-top: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
}
.tabs_clr {
    clear: both;
    font-size: 0;
    height: 0;
    line-height: 0
}
/* sliders */

.sliders {
    width: 100%;
    border-bottom: solid 1px #5b6976;
    margin: 10px 0;
}
.sliders .title {
    background: #e9e7e7 url(../images/arrow-square.gif) no-repeat right -51px;
    padding: 7px 15px;
    margin: 0;
    font-size: 1.2em;
    line-height: 1em;
    font-weight: bold;
    border: solid 1px #5b6976;
    border-bottom: none;
    cursor: pointer;
}
.sliders .title:hover {
    background-color: #4d6276;
}
.sliders .title.active {
    background-position: right 5px;
}
.sliders .desc {
    margin: 0;
    padding: 10px 15px 20px;
    background: #f7f7f7;
    border-left: solid 1px #5b6976;
    border-right: solid 1px #5b6976;
}
/* spoilers */

.spoilers {
    width: 100%;
}
.spoilers .title {
    background: #5b6976 url(../images/arrow-square.png) no-repeat right -45px;
	color: #fff;
    padding: 9px 15px;
    margin: 0;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1em;
    font-weight: normal;
    border: solid 1px #5b6976;
    cursor: pointer;
}
.spoilers .title:hover {
    background-color: #486076;
}
.spoilers .title.active {
    background-position: right 11px;
}
.spoilers .desc {
    display: none;
    margin: 0;
    padding: 10px 15px 20px;
    background: #f7f7f7;
    border-left: solid 1px #5b6976;
    border-right: solid 1px #5b6976;
    border-bottom: solid 1px #5b6976;
}