@font-face{
    font-family: "Ubuntu";
    src: url( "/lib/fonts/ubuntu/Ubuntu-Regular.ttf" );
}
@font-face{
    font-family: "Ubuntu";
    src: url( "/lib/fonts/ubuntu/Ubuntu-Italic.ttf" );
    font-style: italic;
}
@font-face{
    font-family: "Ubuntu";
    src: url( "/lib/fonts/ubuntu/Ubuntu-Bold.ttf" );
    font-weight: bold;
}
@font-face{
    font-family: "Ubuntu";
    src: url( "/lib/fonts/ubuntu/Ubuntu-BoldItalic.ttf" );
    font-weight: bold;
    font-style: italic;
}

html{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    color: #444444;
    font-size: 18px;
    font-family: "Ubuntu", "Segoe UI", Arial, Helvetica, sans-serif;
    background: #ffffff;
    cursor: default;
}
body{
    display: flex;
    padding-top: 60px;
    flex-direction: column;
}
*{
    transition: box-shadow 0.2s ease,
                background-color 0.2s ease,
                border-color 0.2s ease,
                color 0.2s ease,
                outline 0.2s ease;
}
*, *:before, *:after {
    -moz-box-sizing: inherit;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}
a, a:link, a:visited{
    color: #0066c0;
    _color: #2484c6;
    cursor: pointer;
    text-decoration: none;
}
a:hover{
    color: #0042af;
    text-decoration: underline;
}
a:active{
    color: #444444;
}
img, form, fieldset{
    padding: 0;
    margin: 0;
}
input, textarea, select, button{
    color: #262626;
    font-size: 100%;
    font-family: "Ubuntu", "Segoe UI", Arial, Helvetica, sans-serif;
}
h1, h2, h3{
    margin: 0;
    padding: 0;
    font-weight: bold;
}
h1{
    font-size: 150%;
}
h2{
    font-size: 130%;
}
h3{
    font-size: 115%;
}

label, .clk{
    cursor: pointer;
}
.hide{
    display: none;
}
.f-l{
    float: left;
}
.f-r{
    float: right;
}
.clear{
    clear: both;
}
.wider{
    width: 120%;
}
.warn{
    color: #c45500;
}
.cap{
    font-weight: bold;
    color: #005293;
    white-space: nowrap;
}
.blur{
    filter: blur(12px);
}
.asterisk{
}
.a-l{
    text-align: left;
}
.a-r{
    text-align: right;
}
.a-c{
    text-align: center;
}
.v-t{
    vertical-align: top;
}
.v-m{
    vertical-align: middle;
}
.v-b{
    vertical-align: bottom;
}
.bd{
    font-weight: bold;
}

.btn, a.btn{
    cursor: pointer;
    height: 40px;
    padding: 0 10px;
    color: #fff;
    font-weight: normal;
    background: #0067b8;
    line-height: 40px;
    border: none;
    text-decoration: none;
}
a.btn{
    display: inline-block;
}
.btn:hover{
    background: #005da6;
    box-shadow: 2px 2px 2px #aaaaaa;
}
.btn:active{
    background: #005293;
    box-shadow: none;
}
.btn .far,
.btn .fas,
.btn .fal{
    margin: 0 5px 0 0;
    font-size: 120%;
    vertical-align: -10%;
}

.in-long{
    width: 100%;
}
.in-txt, .in-txtarea, .in-date, .in-ckb{
    border: 1px solid #d7d1d1;
    transition: outline 0s;
}
.in-txtarea{
}
.in-txt, .in-date{
    padding: 0 5px;
    height: 32px;
}
.in-txt:hover, .in-txtarea:hover, .in-date:hover, .in-ckb:hover{
    outline: 2px solid #d7d1d1;
}
.in-txt:focus, .in-txtarea:focus, .in-date:focus, .in-ckb:focus{
    background-color: #ffffff;
    outline: 2px solid #93cd3a;
}
.in-ckb{
    transform: scale(1.5);
}
.in-ckb:focus{
    background-color: #ffffff;
    outline: 2px solid #93cd3a;
}
.in-err{
    outline: 2px solid #c45500;
}
.in-date{
    width: 140px;
    padding-left: 36px;
}
.in-date.in-time{
    width:190px;
}
.in-num{
    width: 100px;
    text-align: center;
}
.in-num-s{
    width: 60px;
    text-align: center;
}
.in-dis{
    background: #f1f1f1;
}
.in-dis:focus{
    background: #f1f1f1;
    outline: none;
}
.in-file{
    width: 280px;
}
.in-icon{
    position: absolute;
    margin: 0 0 0 8px;
    font-size: 24px;
    line-height: 32px;
    color: #757575;
}

.err{
    color: #c45500;
    border: 2px solid #c45500;
}
.ckd{
    background: #eee;
}
.hint{
    color: #888;
    font-size: 90%;
}
.col{
    display: table-cell;
}


.no-sc{
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    background: #005293;
    border-top: 1px solid #ffffff;
    z-index: 9999;
}



.err-404{
    margin: 80px auto 100px;
    max-width: 600px;
    text-align: center;
}
.err-404 .txt{
    font-size: 120%;
}
.err-404 .links{
    margin: 30px 0;
}




/**
* Top header
*/
.header-container{
    position: fixed;
    flex: 0 0 auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #0066c0;
    border-bottom: 2px solid #0067b8;
    overflow: hidden;
}
.top-header{
    display: flex;
    min-width: 900px;
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.top-header a{
    color: #ffffff;
    text-decoration: none;
}
.top-header .logo{
    flex: 3 0 auto;
    font-size: 180%;
    font-weight: bold;
}
.top-header .cur{
    font-weight: bold;
    background: #2484c6;
    border-radius: 3px;
}
.top-header .link{
    display: block;
    flex: 1 0 auto;
    padding: 5px 0;
    font-size: 90%;
    text-align: center;
}
.top-header .link:hover{
    color: #ffffff;
    background: #2484c6;
    __color: #0067b8;
    __background: #ffffff;
    border-radius: 3px;
}
.top-header .link i{
    font-size: 120%;
    vertical-align: -10%;
}



.content-container{
    flex: 1 0 auto;
}
.content{
    max-width: 1200px;
    min-width: 900px;
    margin: 0 auto;
    padding: 20px 10px 40px 10px;
}


.footer-container{
    flex: 0 0 auto;
    padding: 30px 0 20px 0;
    border-top: 2px solid #0067b8;
    background: #ffffff;
}
.footer-menus{
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    font-size: 85%;
    align-content: center;
}
.footer-menus .cur{
    font-weight: bold;
}
.footer-menus .link{
    display: block;
    flex: 1 0 auto;
    padding: 5px 0;
    text-align: center;
}
.footer-menus .link:hover{
    color: #ffffff;
    text-decoration: none;
    background: #2484c6;
    border-radius: 3px;
}
.footer-menus .link i{
    font-size: 120%;
    vertical-align: -10%;
}

.footer-links{
    margin: 20px 0 10px 0;
    color: #888888;
    font-size: 80%;
    text-align: center;
}
.footer-links a, .footer-links span{
    display: inline-block;
    margin: 0 20px;
}
.power{
    color: #888888;
    font-size: 80%;
    text-align: center;
}


.errors, .messages{
    width: 600px;
    margin: 20px auto;
    padding: 20px;
    color: #ffffff;
    background: #0067b8;
}
.errors{
    background: #c45500;
}


.page-title{
    min-width: 900px;
    padding: 30px;
    font-size: 200%;
    font-weight: normal;
    text-align: center;
    background: #f6f6f6;
}


.page{
    line-height: 28px;
}
.page p{
    margin: 0 0 10px 0;
}

.p-feat{
}
.p-feat .feat{
    margin: 0 0 40px 0;
}
.p-feat .feat .t{
    font-size: 120%;
    font-weight: bold;
}
.p-feat .feat .c{
    margin: 10px 0;
    line-height: 28px;
}
.p-feat .feat ul{
    margin: 10px 0;
    padding: 0 20px;
}
.p-feat .feat li{
    margin: 0 0 10px 0;
}


.p-pricing{
    line-height: 28px;
}
.p-pricing h2{
    font-size: 120%;
    font-weight: bold;
}
.p-pricing .gst{
    font-size: 80%;
}
.p-pricing .b{
    margin: 0 0 40px 0;
}
.p-pricing ul{
    margin: 0;
    padding: 0;
}
.p-pricing li{
    margin: 0 0 10px 26px;
}
.p-pricing .d{
    margin: 0 0 5px 0;
}
.p-pricing .d .e{
    display: inline-block;
    width: 80px;
}
.p-pricing .s{
    width: 800px;
    margin: 0 0 5px 0;
    border-bottom: 1px solid #dddddd;
}
.p-pricing .s .t{
    display: inline-block;
    width: 400px;
}
.p-pricing .s .p1,
.p-pricing .s .p2{
    display: inline-block;
    width: 180px;
    text-align: center;
}

.p-about{
    line-height: 28px;
}


.p-qna{
}
.p-qna .qna{
    margin: 0 0 40px 0;
}
.p-qna .qna h3{
    margin: 0;
    padding: 0;
    font-size: 100%;
}
.p-qna .qna .q{
    font-size: 120%;
    font-weight: bold;
}
.p-qna .qna .a{
    margin: 10px 0 0 30px;
    line-height: 28px;
}
.p-qna .qna ul{
    margin: 10px 0;
    padding: 0 20px;
}
.p-qna .qna li{
    margin: 0 0 10px 0;
}


.p-contact{
}
.p-contact .tb55{
    width: 100%;
    padding: 30px;
    max-width: 600px;
    margin: 10px auto;
    background: #f6f6f6;
}
.p-contact .tb55 td{
    padding: 5px;
}
.p-contact .btn{
    padding-left: 40px;
    padding-right: 40px;
}
.p-contact .txt{
    margin: 10px 0;
    text-align: center;
}
.p-contact .direct{
    width: 600px;
    margin: 10px auto;
    padding: 10px 30px;
    background: #f6f6f6;
}
.p-contact .or{
    padding: 20px;
    font-size: 200%;
    font-weight: normal;
    text-align: center;
}
.p-contact .cs{
    font-size: 140%;
    margin: 20px 0 20px 50px;
}
.p-contact .cs .c{
    display: inline-block;
    width: 110px;
}
.p-contact .cs i{
    font-size: 120%;
}







