/* Start CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* End CSS Reset */

body {
    line-height: 1;
    background: url("images/bg.jpg") repeat fixed 0 0 #DADBDB;
    padding: 30px 0 !important;
    color: #7D7D7B;
    font-family: Ubuntu,Helvetica,Arial,sans-serif;
    font-size: 15px;
    height: auto;
    margin: 0;
    padding: 25px 0;
    width: auto;
}

a {
    color: #12AEE8;
    text-decoration: none;
}

a:hover {
    color: #1096C8;
}

p {
    line-height: 1.7em;
    margin: 0 0 20px;
}

b,
strong {
    font-weight: bold;
}

ul.horizontal-list li {
    float: left;
    padding: 0 10px 0 0;
    margin: 0 10px 0 0;
    background: url('images/divider.gif') no-repeat right 7px;
}

ul.horizontal-list li.last {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #696969;
    font-weight: normal;
    margin: 0 0 15px;
}
.subpageContent h2,
.subpageContent h3,
.subpageContent h4,
.subpageContent h5,
.subpageContent h6 {
    margin-top: 20px;
}

h1 {
    font-size: 34px;
}

h1.first {
    padding-top: 0;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}

input,
button,
select,
textarea {
    width: 300px;    
}

select {
    width: 326px;
    padding: 6px 6px 7px 6px;
}

input[type=submit],
input[type=button],
input[type=reset],
input[type=radio],
input[type=checkbox],
button {
    width: auto;
}

input[type=radio] {
    float: left;
    margin: 3px 10px 3px 0;
}

input[type=checkbox] {
    float: left;
    margin: 4px 10px 4px 0;
}

input[type=text] {
    line-height: 17px;
}

button,
input[type=submit],
input[type=button],
input[type=reset] {
    ackground: url("images/btn_bkg.png") repeat-x scroll 0 0 #12AEE8;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    line-height: 17px;
    margin: 0 5px 0 0;
    position: relative;
    text-decoration: none;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
    padding: 5px 15px;

}

button[disabled=disabled],
input[disabled=disabled] {
    opacity: 0.6;
    cursor: default;
}

.ie7 button,
.ie8 button {
    border: 1px solid #DDDDDD;
}

body button:hover,
body input[type=submit]:hover,
body input[type=button]:hover,
body input[type=reset]:hover {
    background-color: #1096c8;
    color: #fff;
}

button[disabled=disabled]:hover,
input[disabled=disabled]:hover {
    background: #F5F5F5;
}

legend {
    padding: 0 5px 0 5px;
    font-size: 18px;
}

fieldset {
    padding: 10px;
    margin: 0 0 20px 0;
    border: 1px solid #DDDDDD;
}

input[type="text"]:focus
{
    outline: none;
    background: #f7f7f7;
}

textarea:focus
{
    outline: none;
    background: #f7f7f7;
}    