/* ----- wrapper -------------- */

.wrapper {
    width: 1015px;
    height: 100%;
    margin: 0px auto;
    position: relative;
}

/* ----- header -------------- */

.header {
    width: 980px;
    margin: 0 auto;
    background-color: #ffffff;
}

.header__body {
    padding-bottom: 19px;
}

.header__logo {
    position: relative;
    height: 107px;
    background: url("img/header-logo-background.png") repeat-x scroll 0 0 #7E7E7E;
}

.header__title {
    display: block;
    position: absolute;
    left: 50px;
    top: 17px;
    width: 766px;
    height: 49px;
    background: url("img/header-logo-title.png") no-repeat scroll 0 0 transparent;
}

.header__subtitle {
    position: absolute;
    right: 70px;
    top: 73px;
    text-transform: uppercase;
    text-shadow: 0 0 3px #FFFFFF;
    font-size: 12px;
    color: #3E1C04;
}

.header__info {
    position: absolute;
    left: 50px;
    top: 73px;
    padding: 4px 20px;
    background-color: #ffee00;
    text-shadow: 0 0 3px #FFFFFF;
    font-weight: 900;
    font-size: 14px;
    color: #a70c0c;
}

.header__support {
    position: absolute;
    left: 230px;
    top: 73px;
    padding: 4px 20px;
    background-color: #88ff00;
    text-shadow: 0 0 3px #FFFFFF;
    font-weight: 900;
    font-size: 14px;
    color: #0011ff;
}

/* ----- header__menu -------------- */

.header__menu {
    position: relative;
    height: 38px;
    background: url("img/header-menu-background.png") repeat-x scroll 0 0 #960F03;
    line-height: 38px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.header__menu ul {
    list-style: none;
}

.header__menu a,
.header__menu span {
    display: block;
    padding: 0 20px;
    transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
}

.header__menu a {
    color: #FFFFFF;
}

.header__menu a:hover,
.header__menu a.selected {
    background: #600902;
    text-decoration: none;
}

.header__menu-list span.header__menu-menu {
    color: #FFFFFF;
}

.header__menu-list span.header__menu-active {
    background: transparent url('img/background.jpg') repeat top left;
    color: #960F03;
}

/* --- 1 level - line --- */

.header__menu-list li {
    position: relative;
    float: left;
    padding-left: 2px;
    background: url("img/header-menu-razd.png") repeat-y scroll left top transparent;
}

.header__menu-list ul {
    display: none;
    position: absolute;
    min-width: 260px;
    background: url("img/header-menu-background.png") repeat-y scroll 0 0 #960F03;
}

/* --- 2 level - down --- */

.header__menu-list-down {
    left: 0;
    top: 100%;
    z-index: 100;
}

.header__menu-list>li:hover .header__menu-list-down {
    display: block;
}

.header__menu-list-down li {
    padding: 2px;
}

.header__menu-list-down a,
.header__menu-list-down span {
    min-width: 260px;
}

/* --- 3 level - right --- */

.header__menu-list-right {
    left: 100%;
    top: 0px;
    z-index: 100;
}

.header__menu-list-down>li:hover .header__menu-list-right {
    display: block;
}

.header__menu-list-right a,
.header__menu-list-right span {
    min-width: 300px;
}

/* ----- footer -------------- */

footer {
    width: 1000px;
    height: 45px;
    margin: 0 auto;
    padding-top: 1rem;
    font-size: 90%;
    color: #999999;
}

.footer__copyright {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* ----- content -------------- */

main {
    width: 100%;
    margin: 0px auto;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 12px;
}

.content__title {
    padding: 0 0 1rem 0;
    text-align: center;
    line-height: 2rem;
    font-size: 20px;
    font-weight: 900;
}

.content__filter {
    background: #ffffff;
}

.content__messages {
    margin-bottom: 1rem;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    text-align: center;
    line-height: 1.5rem;
}

.message_info,
.message_success,
.message_debug,
.message_warning,
.message_error {
    padding: 1rem;
    font-size: 16px;
    font-weight: 700;
}

.message_info,
.message_success {
    border: 3px solid #080;
}

.message_debug,
.message_warning,
.message_error {
    background-color: #ff0;
    border: 3px solid #f00;
}

.message_background {
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    background-color: #5e5373;
    color: #fff;
}

/* --------------------------- */