html, body {
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
}

body {
    font-family: Verdana;
    
    /* For old browsers that do not support multiple backgrounds */
    background-color: #013368;
    background-image: url(../img/bg-pattern.png);
    background-position: center top;
    background-repeat: repeat-x;
    
    /* For new browsers that support multiple backgrounds */
    background: url(../img/bg.png) center top no-repeat, url(../img/bg-pattern.png) center top repeat-x, #013368;
}

#container {
    background-color: white;
    width: 500px;
    min-height: 100%;
    margin: 0 auto;
    box-shadow: 0 0 20px -5px black;
}

#header h1 {
  text-indent: -9999px; /* Hide text */
  background: url(../img/logo.png) center 10px no-repeat;
  height: 266px;
  margin: 0;
  padding: 0;
}

#content {
    padding: 30px;
    overflow: hidden;
}

#footer {
    clear: both;
}


.error-box {
    background-color: #ffdddd;
    color: #bb1111;
    border: 1px solid #bb1111;
    padding: 15px;
}

.button {
    color: white;
    border: 1px solid #14314f;
    padding: 20px;
    box-shadow: inset 0 1px #829fc1;
    text-shadow: 1px 1px black;
    border-radius: 10px;
    text-align: center;    

    background: #00519c; /* Old browsers */
    background: -moz-linear-gradient(top,  #00519c 0%, #073b72 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00519c), color-stop(100%,#073b72)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #00519c 0%,#073b72 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #00519c 0%,#073b72 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #00519c 0%,#073b72 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #00519c 0%,#073b72 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00519c', endColorstr='#073b72',GradientType=0 ); /* IE6-9 */
}

.button:hover {
    background: #006ccc; /* Old browsers */
    background: -moz-linear-gradient(top,  #006ccc 0%, #0a5199 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#006ccc), color-stop(100%,#0a5199)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #006ccc 0%,#0a5199 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #006ccc 0%,#0a5199 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #006ccc 0%,#0a5199 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #006ccc 0%,#0a5199 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#006ccc', endColorstr='#0a5199',GradientType=0 ); /* IE6-9 */
}


.button:active {
    background: #0a5199; /* Old browsers */
    background: -moz-linear-gradient(top,  #0a5199 0%, #006ccc 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0a5199), color-stop(100%,#006ccc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #0a5199 0%,#006ccc 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #0a5199 0%,#006ccc 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #0a5199 0%,#006ccc 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #0a5199 0%,#006ccc 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a5199', endColorstr='#006ccc',GradientType=0 ); /* IE6-9 */
}
