﻿@charset "UTF-8";

/****common class****/

.clear-fix {
    *zoom: 1;
    *overflow: hidden;
}

    .clear-fix:after {
        display: table;
        content: "";
        height: 0;
        width: 0;
        clear: both;
        visibility: hidden;
    }

.fl {
    float: left;
}

.fr {
    float: right;
}

.pos-r {
    position: relative;
}

.pos-a {
    position: absolute;
}

.pos-f {
    position: fixed;
}

.w1000 {
    width: 1000px;
}

.ml5 {
    margin-left: 5px;
}

.ml20 {
    margin-left: 20px;
}

.ml60 {
    margin-left: 60px;
}

.ml90 {
    margin-left: 90px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.pd20 {
    padding: 20px;
}

.lh2em {
    line-height: 2em;
}

.help-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.help-inline {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.box-center {
    margin-left: auto;
    margin-right: auto;
}

a.red-link, .red-text {
    color: #fc844e;
}

    a.red-link:hover {
        color: #e20b35;
        text-decoration: underline;
    }

a.blue-link, .blue-text {
    color: #62bae7;
}

    a.blue-link:hover {
        color: #5dabf0;
        text-decoration: underline;
    }


.h30 {
    height: 30px;
    line-height: 30px;
}
.h20 {
    height: 20px;
    line-height: 20px;
}