/* first generation smart phone */
@media screen and (max-width:480px) {

}

/* smart phone */
@media screen and (min-width:480px) and (max-width:768px) {

}

/* tablet */
@media screen and (min-width:768px) and (max-width:1024px) {

}

/* desktop */
@media screen and (min-width:1024px) {

}

.lfloat {
    float: left;
}

.rfloat {
    float: right;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.datepicker {
    margin-right: 3px;
}

.ta-center {
    text-align: center;
}

.ta-left {
    text-align: left;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.hide {
    display: none;
}

.badge {
    display: block;
    position: absolute;
    top: -10px;
    right: 100px;
    line-height: 16px;
    height: 16px;
    padding: 0 5px;
    font-family: Arial, sans-serif;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.25);
    border: 1px solid;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08);
}

.badge.green {
    background: #77cc51;
    border-color: #59ad33;
    background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51);
    background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51);
    background-image: -o-linear-gradient(top, #a5dd8c, #77cc51);
    background-image: linear-gradient(to bottom, #a5dd8c, #77cc51);
}

.badge.yellow {
    background: #faba3e;
    border-color: #f4a306;
    background-image: -webkit-linear-gradient(top, #fcd589, #faba3e);
    background-image: -moz-linear-gradient(top, #fcd589, #faba3e);
    background-image: -o-linear-gradient(top, #fcd589, #faba3e);
    background-image: linear-gradient(to bottom, #fcd589, #faba3e);
}

.badge.red {
    background: #fa623f;
    border-color: #fa5a35;
    background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: -o-linear-gradient(top, #fc9f8a, #fa623f);
    background-image: linear-gradient(to bottom, #fc9f8a, #fa623f);
}

.captcha div {
    padding: 0;
    border: none;
}

.width-45 {
    width: 45%;
}

.width-46 {
    width: 46%;
}

.width-47 {
    width: 47%;
}

.width-50 {
    width: 50%;
}

.width-90 {
    width: 90%;
}

.width-80 {
    width: 80%;
}

.width-100 {
    width: 100%;
}

.margin-1px {
    margin: 1px;
}

.margin-3px {
    margin: 3px;
}

.margin-5px {
    margin: 5px;
}

.margin-vertical-5px {
    margin: 5px 0;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.dec-through {
    text-decoration: line-through;
}

.size-05 {
    font-size: 0.5em;
}

.size-07 {
    font-size: 0.7em;
}

.size-08 {
    font-size: 0.8em;
}

.size-09 {
    font-size: 0.9em;
}

.size-11 {
    font-size: 1.1em;
}

.size-12 {
    font-size: 1.2em;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 15; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.clear-fix:before,
.clear-fix:after {
    display: table;
    content: " ";
}
.clear-fix:after {
    clear: both;
}
.align-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
.block-title {
    background-color: #fff;
    color: #666;
    font-size: 24px;
}
.margin-5-0-10-10 {
    margin: 5px 0 10px 10px;
}
.title-padding-5-10-10 {
    padding: 5px 10px 10px;
}
.content-padding-10-5 {
    padding:10px 5px;
}
.input-margin-5-0,.select-margin-5-0 {
    margin: 5px 0;
}
.boxsizing-borderbox{
    box-sizing: border-box;
}