/**
 * HTML and BODY
 */

body {
    background-color: #fff;
    margin: 0px;
}

p, td, div {
    color: #424242;
    font-size: 14px;
    font-family: 'Open Sans', sans serif;
}

hr {
    border: 0px;
    border-bottom: 1px dotted #aaa;
}


/**
 * Template
 */

#header {
    box-sizing: border-box;
    width: 100%;
    max-width: 1170px;
    margin: 25px auto 5px auto;
}

#titlebar {
    box-sizing: border-box;
    width: 100%;
    background-color: #000;
}

#titlebar_inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 0px;
    font-family: 'Open Sans', sans serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    color: #fff;
}

#content {
    box-sizing: border-box;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

#footer {
    box-sizing: border-box;
    width: 100%;
    background-color: #f2f2f2;
    border-top: 1px solid #D8D8D8;
    min-height: 40px;
}

#footer_inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    line-height: 40px;
}

@media only screen and (max-width: 1170px) {
    #header {
        padding-left: 10px;
        padding-right: 10px;
    }

    #titlebar {
        padding-left: 10px;
        padding-right: 10px;
    }

    #content {
        padding-left: 10px;
        padding-right: 10px;
    }

    #footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}


/**
 * Headers
 */

h1 {
    color: #424242;
    font-size: 22px;
}

h2 {
    color: #424242;
    font-size: 18px;
}

th {
    background-color: #ccc;
    border-bottom: 1px solid #000;
    text-align: left;
}

th img {
    position: relative;
    top: 3px;
}


/**
 * Links
 */

a {
    color: #005596;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}


/**
 * Input Form
 */

input[type='text'], select {
    box-sizing: border-box;
    width: 90%;
    max-width: 300px;
}


/**
 * Buttons
 */

input[type='submit'] {
    background-color: #91bc3c;
    color: #fff;
    padding: 10px;
    font-size: 16px;
    transition: all .2s ease-in-out;
    border-width: 0;
    font-weight: 700;
    font-family: "Open Sans";
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

input[type='submit']:hover {
    background-color: #E80008;
}


/**
 * REGISTRATION
 */

.regPriceCurrent {
    background-color: #015697;
    color: #ffffff;
    text-align: center;
    height: 40px;
    width: 130px;
}

.regPriceNotCurrent {
    background-color: #fff;
    text-align: center;
    width: 130px;
}

.regHeaderCurrent {
    background-color: #015697;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #000;
}

.regHeaderNotCurrent {
    text-align: center;
    border-bottom: 1px solid #000;
}


/**
 * FRONT PAGE
 */

a.indexCourse {
    text-decoration: none;
}

.indexCourse {
    display: block;
    text-decoration: none;
    float: left;
    width: 210px;
    margin: 0 5px 15px 0;
    padding: 0 0 0 3px;
    color: #000;
}

.indexCourse:hover {
    background-color: #efefef;
}

a.indexCourse:hover {
    cursor: pointer;
}

.indexCourse span {
    color: #005596;
    font-weight: bold;
}

a.indexCourse:hover span {
    text-decoration: underline;
}
