/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {


/* === content header === */
.mainheader {
    text-align: center;
    background-image: url();
    padding-top: 10px;
    background-position: 0px 0px;
    padding-bottom: 30px;
}
.mainheader h1 {
    display: inline-block;
    position: relative;
    background-color: #fff;
    padding: 0 0px;
    font-weight: bold;
    font-size: 15px;
    margin: 0;
}

.mainheader h1:before {
    content:"";
    background-image: url();
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
}
.mainheader h1:after {
    content:"";
    background-image: url();
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
}

.headertitle {
    display: inline-block;
    position: relative;
    background-color: #fff;
    padding: 0 30px;
    font-weight: bold;
    font-size: 22px;
}
.headertitle:before {
    content:"";
    background-image: url();
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0
}
.headertitle:after {
    content:"";
    background-image: url();
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
}


}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}