/*
 * MISC
 * ---------------------------------------------------------------------------------------------------------------------
 */
*, *:before, *:after {
    padding: 0; margin: 0; border: 0;
    box-sizing: border-box; -moz-box-sizing: border-box;
    -webkit-text-size-adjust: 100%; /* Making shure mobile devices dont scale up text */
}


body,
input,
textarea,
select {
    font-size: 13px;
    font-family: arial, verdana, sans-serif;
    color: #333;
    line-height: 150%;
}

body { background: #E9EBEE; }

a {
    color: #43609C;
    text-decoration: none;
}

h1 {
    margin-bottom: 5px;
    color: #43609C;
    line-height: 100%;
    font-size: 26px;
    font-weight: bold;
}
h2 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 19.5px;
    font-weight: bold;
}
h3 {
    margin-bottom: 5px;
    font-size: 15.2167px;
    font-weight: bold;
}

p { margin-bottom: 10px; }
p.example {
    font-size: 12px;
    color: #888;
}

ul { margin-left: 18px; }
li { padding-left: 5px; }


/*
 * MAIN ELEMENTS
 * ---------------------------------------------------------------------------------------------------------------------
 */

main {
    width: 925px;
    min-height: 200px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 20px;
    border: 1px solid #DFE0E4;
    border-top: 2px solid #43609C;
    border-bottom: 2px solid #DFE0E4;
    border-radius: 4px;
    padding: 30px;
    padding-bottom: 10px;
    background: #fff;
}

section {
    margin-bottom: 40px;
}

.search-type {
    margin-bottom: 20px;
    border-bottom: 1px solid #DFE0E4;
    padding-bottom: 10px;
}

footer {
    width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 0 20px;
    text-align: center;
    color: #888;
    font-size: 11px;
}

@media screen and (max-width: 800px) {

    main,
    footer {
        width: 100%;
    }

}

/*
 * INPUT FORMS AND BUTTONS
 * ---------------------------------------------------------------------------------------------------------------------
 */

input,
select {
    border: 1px solid #aaa;
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 4px;
}
select {
    padding: 4px 8px;
}

#username-input {
    width: 400px;
}

.input-wrap {
    line-height: 300%;
    margin-bottom: 5px;
}

.loading {
    vertical-align: middle;
    display: none;
}

.button {
    background: #43609C;
    border-radius: 4px;
    padding: 6px 8px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.link-remove {
    color: #43609C;
    cursor: pointer;
}

.red-color {
    color: #FF3030;
}

#inline {
    display: inline;
}