/**
 * CSSReset.com - How To Keep Footer At Bottom of Page with CSS
 *
 * Original Tutorial: http://www.cssreset.com/2010/css-tutorials/how-to-keep-footer-at-bottom-of-page-with-css/
 * License: Free - do whatever you like with it! Credit and linkbacks much appreciated.
 *
 * NB: Make sure the value for 'padding-bottom' on #content is equal to or greater than the height of #footer.
 */

/*------------------ GLOBAL ----------------- */
html,
body {
    margin-top: 20px;
    border-radius: 50px;
    padding:0;
    height:100%;
    background-color: #4FA1C7 !important;
}

a {
    text-decoration: none;
    color: white;
}

#wrapper {
    border: 1px solid lightgray;
}

.redError {
    font-size: 12px;
    color: red;
    margin-top: -15px;
    width: 505px;
    text-align: center;
}

/*------------------ HEADER ----------------- */
#header {
    background-color:#FFFFFF;
    height: 65px;
}

#infoHeader {
    padding: 10px;
}

.centered-logos {
    text-align: center !important;
}

.centered-logos p {
    margin: 0;
    padding: 0;
}

/*------------------ CONTENT ----------------- */
#content {
    color: #444444;
    font-family: Georgia, serif;
}

#docstrackLogo {
    margin: 15px 0 0 15px;
}

#view {
    max-height: 450px;
    max-width: 500px;
    margin: auto;
    width: 50%;
    margin-top: 50px;
    text-align: center;
}

#sectionTitle {
    color: #444444;
    text-align: center;
}

#view p {
    text-align: center;
    font-style: italic;
}

#signUpOptions {
    margin-top: 50px;
}

form {
    margin-top: 30px;
}

#signUpOptions input {
    margin-top: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 80% !important;
    width: 300px !important;
    min-width: 150px !important;
}

#signUpOptions input[placeholder] {
    text-align: left;
    padding-left: 10px;
}

#forgotPassword {
    margin-top: 20px;
    font-style: normal;
    font-size: 12px;
}

#confirmButton {
    margin: 8% 0 0 0;
    min-height: 30px;
    min-width: 100px;
    color: white;
    background-color: #00AA00;
    font-size: 14px;
    border: 0;
    position: relative;

    border-bottom: 3px solid green;
    border-radius: 8px;
}

/*------------------ FOOTER ----------------- */
#footer {
    background:#011434;
    width:100%;
    min-height:115px;
    bottom:0;
    left:0;
    right: 0;
}
#infoFooter {
    padding: 10px;
}

#links {
    float: right;
    margin-right: 27%;
    padding-top: 20px;
    text-align: center;
}
#copyright {
    clear: both;
    text-align: center;
}

/*---------------POLICY-SPECIFIC---------------*/
#ppBody, .whitespace
{
    font-size:11pt;
    background-color: #FFFFFF;
}

#ppHeader
{
    font-family:verdana;
    text-align: center !important;
    font-size: 22px;
}

.ppConsistencies
{
    display:none;
}

.divider {
    border-color: #4FA1C7;
}