﻿img
{
    border: 0;
}

a
{
    color: #00649C; /*#698d00;*/
    text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

h1
{
    margin-top: 0;
}

h2
{
    color: #fff;
    background: #4f4f4f; /* Old browsers */ /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: -moz-linear-gradient(top,  #4f4f4f 0%, #474747 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4f4f4f), color-stop(100%,#474747)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #4f4f4f 0%,#474747 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #4f4f4f 0%,#474747 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #4f4f4f 0%,#474747 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #4f4f4f 0%,#474747 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4f4f4f', endColorstr='#474747',GradientType=0 ); /* IE6-8 */
    padding: 8px 12px;
    font-size: 18px;
}

h2 img
{
    /* This is intended for 24x24px images. Moves the text back up a bit so they look centered. */
    margin-bottom: -4px;
}

h2 a
{
    font-size: 12px;
    font-weight: normal;
    float: right;
    color: #C2D680;
    line-height: 22px;
}

h2 .sub-header
{
    display: inline-block;
    float: right;
    color: #ddd;
    font-size: 15px;
    padding-top: 3px;
}

h3
{
    line-height: 25px;
    color: #525252;
    margin: 15px 0 0 0;
    font-size: 19px;
    font-weight: normal;
}

h4
{
    color: #fff;
    background-color: #4f4f4f;
    padding: 5px 7px;
    margin: 8px 0;
}

h4 a
{
    color: #C2D680;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
}

h5
{
    background-color: #f2f1f1;
    color: #4f4f4f;
    padding: 4px 0;
    margin: 0;
}


textarea
{
    font-family: inherit;
}

input[type=text], input[type=password], textarea, select
{
    border-radius: 1px;
    border: solid 1px #c9c8c8;
    padding: 4px 3px;
}

input[type=text]:focus, textarea:focus, select:focus
{
    outline: none;
    border-color: #046BA6;
}

hr
{
    border-top: none;
    border-bottom: solid 1px #aaa;
}

fieldset
{
    margin-bottom: 10px;
    border-radius: 4px;
    border: solid 1px #bbb;
}

h1 + hr
{
    display: none;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 21px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #9DB636;
}

input:focus + .slider {
    box-shadow: 0 0 1px #9DB636;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }