/* Фон страницы */
.w_background {
    position: fixed; 
    width: 100%; 
    height: 100%; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0; 
    z-index: -5;
}

/* главная страница */
#w_main {
    display: inline-block; 
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    
}

/* Блок в котором расположен весь контент */
.w_general {
    /* min-width: 900px; */
    max-width: 780px; 
    margin:0 auto;
    margin-top: 4%; 
    text-align: center;
    font-size: 15px;
    /* font-family: Times New Roman; */
    font-family: Roboto,sans-serif;
}
@media only screen and (max-width: 979px) {
    .w_general {
        width: 100%;
        margin-top: 0;
    }
}

/* Заголовок страницы */
.w_admin {
    border-radius: 10px 10px 10px 10px; 
    margin-bottom: 10px;
    width: 100%; 
    background: rgba(255, 255, 255, 0.701961);
}

/* Заголовок страницы */
.w_head {
    border-radius: 10px 10px 0px 0px; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.701961);
    padding-bottom: 10px;
}


/* Бокс с контентом страницы */
.w_content {
    background: rgba(255, 255, 255, 0.9); 
    width: 100%; 
    height: auto; 
}

/* Бокс категории сверху */
.w_category_top {
    height: auto;  
    background: rgba(204, 204, 204, 0.3); 
    width: 100%; 
    font-family: Times New Roman;
}

/* Бокс категории снизу */
.w_category_bottom {
    height: auto; 
    background: rgba(204, 204, 204, 0.3);
    bottom: 0; 
    width: 100%; 
    font-family: Times New Roman;
    text-align:left;
}

/* Содержимое категории */
.w_category_text {
    text-align: left; 
    padding-left: 19px;
    text-decoration: none;
    font-weight: bold;
    background: url(../img/home.png) no-repeat 2px 2px;
    background-size: 14px;
    padding-top:1px;
    padding-bottom:1px;
    display: inline-block;
}

/* Ссылки в категориии */
.w_category_link {
    color: #008CBA;
    text-decoration: none;
}

/* Ссылки в категориии при наведении */
.w_category_link:hover {
    text-decoration: none;
}

/* Контент с информацией */
.w_data {
    text-align: left; 
    padding: 5px;
}
*{ box-sizing: border-box }