/* CSS resetter */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 10pt;
}

/* hack to set DIV to 100% */
html, body {
    height: 100%;
}

body {
    min-height: 100%;
}

table {
    border: none;
}

li {
    list-style-type: none;
    margin-left: 1.6em;
}

ul {
    margin-bottom: 1em;
}

a {
    color: #9e2149;
    text-decoration: underline;
}

input {
    border: 0;
}

.field {
    border: 0 solid #9e2149;
    border-bottom-width: 3px;
}

.button {
    color: white;
    background-color: #9e2149;
}

/* three main sections */
.body, .footer, .header {
    width: 100%;
    overflow: hidden;
}

.body {
    height: 75%;
}

.header {
}

.footer {
    /*position: absolute;*/
    /*bottom: 0;*/
    background-color: #9e2149;
    color: white;
}

.borderless, .vline {
    border: none;
}

.vline {
    margin: 10pt;
    height: 60px;
    width: 1px;
}

.headerImage {
    width: 100%;
    background-image: url(../images/header.png);
}

.center {
    text-align: center;
}

.hidden {
    display: none;
}

.mobile {
    width: 410px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.red {
    color: red;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.decorated {
    list-style-type: circle;
}

.title {
    font-size: large;
    margin-bottom: 1em;
    font-weight: bold;
}

.vcenter {
    position: absolute;
    top: 35%;
}