﻿html {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-size: 1.07rem;
    font-weight: 400;
    font-family: 'Segoe UI', Roboto, Arial, Verdana, sans-serif, Helvetica, Sans-Serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    color: #404549;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, a:link, a:visited {
    color: #242628;
    outline: none;
    text-decoration: none;
}

    a:active, a:hover {
        color: #0086EF;
    }

    a:hover {
        text-decoration: none;
    }

img {
    vertical-align: bottom;
    border-style: none;
    padding: 6px;
}

p {
    margin: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
}

h1, h2, h3,
h4, h5, h6 {
    font-weight: 600;
    margin: 0;
    padding: 8px 10px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Desktop (balanced size) */
h1 {
    font-size: 1.45vw;
}

h2 {
    font-size: 1.20vw;
}

h3 {
    font-size: 1.05vw;
}

h4 {
    font-size: 0.95vw;
}

h5 {
    font-size: 0.85vw;
}

h6 {
    font-size: 0.75vw;
}

/* Mobile */
@media (max-width: 1200px) {
    h1 {
        font-size: 5.5vw;
    }

    h2 {
        font-size: 4.7vw;
    }

    h3 {
        font-size: 4.0vw;
    }

    h4 {
        font-size: 3.6vw;
    }

    h5 {
        font-size: 3.2vw;
    }

    h6 {
        font-size: 2.9vw;
    }
}


h5 a:link, h5 a:visited, h5 a:active {
    text-decoration: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0 none;
}

th {
    text-align: left;
    border: none 0px;
    padding: 3px;
}

    th a {
        display: block;
        position: relative;
    }

        th a:link, th a:visited, th a:active, th a:hover {
        }

        th a:hover {
        }

    th.asc a, th.desc a {
    }

        th.asc a:after, th.desc a:after {
            display: block;
            position: absolute;
            right: 0em;
            top: 0;
        }

        th.asc a:after {
            content: '▲';
        }

        th.desc a:after {
            content: '▼';
        }

td {
    border: 0 none;
    vertical-align: top;
    text-align: left;
    padding: 3px;
}

tr.pager td {
}

tr:nth-child(even) {
    background-color: #f8f8f8;
}

fieldset {
    margin: 2px 0 2px 0;
    padding: 2px 2px 2px 2px;
    border: 1px solid #CCCCCC;
    background-color: #F9F9F9;
}

    fieldset p {
        margin: 2px 12px 10px 10px;
    }

legend {
    font-size: 1.4em;
    padding: 2px 4px 8px 4px;
    color: #0086EF;
}
/*
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}*/

/*li {
    float: left;
}

    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 16px;
        text-decoration: none;
    }

    li a:hover {
        background-color: #eeeeee;
    }*/

input[type="text"], input[type="password"] {
    border: 1px solid #eeeeee;
    background-color: #fafafa;
    height: 34px;
    font-size: 1.00em;
    width: 100%;
    box-sizing:border-box;
    padding: 2px 6px 0px 6px;
    /*margin: 0px 0px 0px 10px;*/
}

    input[type="text"]:hover, input[type="password"]:hover {
        border: 1px solid #cccccc;
        -moz-box-shadow: #cccccc 0px 0 10px;
        -webkit-box-shadow: #cccccc 0px 0 10px;
        box-shadow: #cccccc 0px 0 4px;
    }

    input[type="text"]:focus, input[type="password"]:focus {
        border: 1px solid #acacac;
        background-color: #ffffff;
        -moz-box-shadow: #acacac 0px 0 10px;
        -webkit-box-shadow: #acacac 0px 0 10px;
        box-shadow: #acacac 0px 0 4px;
    }

input[type="submit"] {
    font-size: 1em;
    top: 0px;
    left: 0px;
}


select {
    width: 98%;
    height: 36px;
    line-height: 36px;
    padding: 6px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-image: url('TextBox/textbox-backround.gif');
    color: #000000;
    font-size: 1.0em;
    border: 1px solid #CCCCCC;
}

textarea {
    border: 1px solid #eeeeee;
    background-color: #fafafa;
    height: 34px;
    font-size: 1.10em;
    width: 100%;
    padding: 2px 6px 0px 6px;
    margin: 0px 0px 0px 10px;
}

input[type="file"] {
    border: 1px solid #CCCCCC;
    padding: 6px;
    margin-bottom: 0px;
}