/*
Линия с обеих сторон текста
*/fieldset.title {
    border-top: 1px solid #aaa;
    border-bottom: none;
    border-left: none;
    border-right: none;
    display: block;
    text-align: center;
}

fieldset.title legend {
    padding: 5px 10px;
}

/*Линия с обеих сторон вариант 2*/

h1 {
    position: relative;
    margin-top: 20px;

}

h1.one {
    margin-top: 0;
}

h1.one:before {
    content: "";
    display: block;
    border-top: solid 1px black;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    z-index: 1;
    padding-left: 100px;
}

h1.one span {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 5;

}


/*Линия с обеих сторон вариант 3*/
h3 {
    position: relative;
    text-align: center;
    font-weight: bold;
}

h3 span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

h3:before {
    background: #ddd;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    width: 100%;
}

h3:before {
    left: 0;
}

/*Clearboth*/
.clear {
    clear: both;
}