@charset "utf-8";
* {
    margin: 0;
    padding: 0;
}

body {
    font: 14px/1.3em Arial, Helvetica, sans-serif;
    background-color: #666;
}

.alert-danger {
    display: none;
}

h1, h2, h3, ul, li {
    margin-bottom: 16px;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

h1#logo {
    text-indent: -9999px;
    height: 100px;
    margin: 20px;
    background: no-repeat center center;
}

#header {
    position: relative;
    overflow: hidden;
    background-color: #666;
}

#error {
    background: none repeat scroll 0 0 #ffc;
    border-radius: 8px;
    box-shadow: 0 1px 4px #888;
    margin: 16px;
    overflow: hidden;
    padding: 24px;
}

#middle {
    background: #efefef;
}

#content {
    text-align: justify;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 940px;
    clear: both;
    overflow: hidden;
}

#content ul li {
    margin-left: 16px;
}

#forms {
    overflow: hidden;
    margin-bottom: 16px;
}

#forms #before {
    float: left;
    width: 400px;
    margin: 8px;
}

#forms #after {
    float: right;
    width: 400px;
    margin: 8px;
}

#forms ul {
    list-style: none;
    padding: 0;
}

#forms ul li {
    margin: 0;
}

#forms input[type='text'] {
    border: 1px solid #ccc;
    box-shadow: 0 0 4px #888;
    color: #666;
    height: 20px;
    margin-bottom: 10px;
    padding: 3px 6px;
    width: 250px;
}

#forms label {
    display: inline-block;
    font-size: 12px;
    margin: 0 6px 10px 0;
    padding: 3px 0;
    text-align: right;
    width: 124px;
}

#buttons {
    margin: 0 auto 32px
}

#footer {
    background-color: #666;
}

#footer a, #footer a:visited {
    color: #e096ff;
    text-decoration: none;
}

#footer a:hover, #footer a:active {
    text-decoration: underline;
}

#footer p {
    margin-bottom: 10px;
    text-align: center;
}

#footer-left {
    color: white;
}

.wrapper {
    clear: both;
    max-width: 940px;
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
}

.text-bold {
    font-weight: bold;
}

.button {
    background-color: #666;
    border: medium none;
    border-radius: 8px 8px 8px 8px;
    box-shadow: 0 1px 4px #888;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 24px;
    height: auto;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 -2px 1px #3f5983;
    margin: 0 8px 8px;
    line-height: normal;
}

.button:hover {
    background: #555;
    color: #fff;
    text-decoration: none;
}

.button:active {
    background: #333;
}

.reasons {
    padding: 0 24px 8px;
    background: #FFF;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px #888;
    overflow: hidden;
}

.reasons ul li {
    margin-bottom: 4px;
}

.one-third {
    float: left;
    margin-right: 16px;
    width: 254px;
}

.one-half {
    float: left;
    margin-right: 32px;
    width: 430px;
}

.last {
    clear: right;
    margin-right: 0;
}

.row {
    margin: 0;
}

.glyphicon-refresh-animate {
    -animation: spin 1s infinite linear;
    -ms-animation: spinms 1s infinite linear;
    -webkit-animation: spinw 1s infinite linear;
    -moz-animation: spinm 1s infinite linear;
}

@keyframes spin {
    from {
        transform: scale(1) rotate(0);
    }
    to {
        transform: scale(1) rotate(360deg);
    }
}

@-webkit-keyframes spinw {
    from {
        -webkit-transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinm {
    from {
        -moz-transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes spinms {
    from {
        -ms-transform: rotate(0);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

.modal-dialog {
    top: 35%;
}

.modal-header {
    text-align: center;
    border-bottom: none;
}
