html {
    background: #011341 url( ../img/background.gif );
    color: #001444;
    float: left;
    padding-bottom: 20px;
    width: 100%;
    /*height: 100%;*/
    margin-bottom: 1px; /* forces vertical scroll bar -- otherwise pages "jump" when going from scrolled to non-scrolled */
}

body {
    font: 14px "Arial", "Segoe UI";
    text-align: center;
}

#wrapper {
    margin: auto;
    color: #001444;
    text-align: left;
    width: 900px;
}

#header, #body, #bottom {
    clear: both;
    float: left;
    width: 100%;
}


/* Header */
#header {
    margin-top: 40px;
    position: relative;
    height: 99px;
}

#header div.tlc {
    position: absolute;
    background-image: url( ../img/header_ls.gif );
    width: 7px;
    height: 99px;
    top: 0;
    left: 0;
}

#header div.ts {
    background-image: url( ../img/header_bg.gif );
    margin: 0 7px 0 7px;
    height: 99px;

}

#header div.trc {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url( ../img/header_rs.gif );
    width: 7px;
    height: 99px;
}

#header .logo {
    position: absolute;
    background-image: url( ../img/logo.png );
    width: 205px;
    height: 60px;
    top: 13px;
    right: 45px;
}

#header .launch {
    position: absolute;
    top: 65px;
    right: 90px;
    color: #00FF40;
    cursor: pointer;
    text-decoration: underline;
}

#header .title {
    position: absolute;
    top: 10px;
    left: 15px;
    color: white;
    font-size: 32px;
    padding: 5px;
}

#header .titleReg {
    font-size: 18px;
    vertical-align: top;
}

/* Body */
#body {
    position: relative;
    background-color: #F7FAFB;
    padding-bottom: 20px;
}

#body #minHeight {
    float: right;
    width: 10px;
    height: 620px;
    margin-bottom: -1px;
}

#content {
    padding: 20px 20px 10px 20px;
    padding-bottom: 2px;
}

/* Bottom */
#bottom {
    color: white;
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
    padding-bottom: 20px;
}

#bottom .copy {
    font-family: "Arial";
    padding-right: 3px
}

#bottom a {
    color: white;
    margin: 0 6px 0 6px;
    text-decoration: none;
}

#bottom a:hover {
    color: #00FF40;
}


/* Navifation */
#nav {
   position: absolute;
   bottom: 0;
   left: 10px;
}

#nav .menu {
   float:left;
   margin: 0 3px 0 3px;
   padding: 2px 5px 3px 5px;
   text-align: center;
   font-size: 17px;
   color: #9deeed;
   cursor: pointer;
}

#nav .menu:hover {
   color: #00FF40;
}

#nav div.selected {
    background-color: white;
    color: #763509;

    border-top: solid #96460F 1px;
    border-left: solid #96460F 1px;
    border-right: solid #96460F 1px;
    border-bottom-width: 0;
    border-bottom-color: transparent;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
}

#nav div.selected:hover {
   color: #763509;
}

/* Layout */
.border {
    padding: 10px;
    text-align: left;

    background-color: #e0e4e8;
    border: 3px solid #b2bbc6;

    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
/*    behavior: url(css/border-radius.htc);*/
}

.page {
    width: 830px;
}

.page .title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 5px;
}

.page .leftColumn {
    width: 410px;
/*    border: 1px solid black; */
}

.page .rightColumn {
    width: 400px;
    float: right;
}

.page table.layout {
    width: 100%;
}

.page table.layout th, .page table.layout td {
    vertical-align: top;
}

.page table.layout td.leftColumn {
    width: 410px;
}

.page table.layout td.rightColumn {
    width: 400px;
}

/* Hint box */
.hintBox {
   font-size: 12px;

   padding: 10px;
   background-color: #d4d8dc;
   border: 3px solid #b2bbc6;

   border-radius: 20px;
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
/*   behavior: url(css/border-radius.htc); */
}

.hintBox p {
   line-height: 20px;
   margin-bottom: 10px;
}

/* Buttons */
button.button {
    font-size: 16px;
    height: 28px;
    padding: 0 2px 0 2px;
    background: url(../img/btn.png) repeat-x;
    font-weight: bold;
    color: black;
    border: 2px solid #515151;
    cursor: pointer;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-user-select: none;
    -webkit-user-select: none;
}

button.button.disabled {
    color: #999999;
    border-color: #bbbbbb;
    cursor: default;
}

body.working button.button.busy {
    background: url(../img/busy.gif) no-repeat 2px center;
    color: #bbbbbb;
    border-color: #bbbbbb;
    cursor: default;
}

/* Checkbox button */
button.checkbox {
    background: url(../img/checkbox.gif) no-repeat center center;
    border: none;
    cursor: pointer;
    font-size: 1px;
    min-width: 16px !important;
    min-height: 16px !important;
}

button.checkbox.on {
    background: url(../img/checkboxOn.gif) no-repeat center center;
}


