html {margin: 0px; padding: 0px; background: url("../images/clouds.jpg") repeat;}

body {
    margin: 0px;
    padding: 0px;
    font-family: Comic Sans,Comic Sans MS,cursive;
}

.left_column {
    position: absolute;
    left:10px;
    top: 240px;
    width: 103px;
}

.middle_column {
    margin-left: 79px;
    margin-right:159px;
    position: relative;
    width: auto;
    top: 65px;
    /*
    IE5x PC mis-implements the box model. Because of that we sometimes have
    to perform a little CSS trickery to get pixel-perfect display across browsers.
    The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
    parsing bug in IE5x PC that will prematurly close a style rule when it runs
    into the string "\"}\"". After that string appears in a rule, then, we can override
    previously set attribute values and only browsers without the parse bug will
    recognize the new values. So any of the name-value pairs above this comment
    that we need to override for browsers with correct box-model implementations
    will be listed below.
    
    We use the voice-family property because it is likely to be used very infrequently,
    and where it is used it will be set on the body tag. So the second voice-family value 
    of "inherit" will override our bogus "\"}\"" value and allow the proper value to
    cascade down from the body tag.
    
    The style rule immediately following this rule offers another chance for CSS2
    aware browsers to pick up the values meant for correct box-model implementations.
    It uses a CSS2 selector that will be ignored by IE5x PC.
    
    Read more at http://www.glish.com/css/hacks.asp
    */
    
    voice-family: "\"}\"";
    voice-family: inherit;
    margin-left: 71px;
    margin-right:151px;
}

html>body .middle_column {
    margin-left: 71px;
    margin-right:151px;
}

.right_column {
    position: absolute;
    right:10px;
    top: 240px;
    width:135px;
    text-align: center;
    font-size: 10pt;
}

.navSeperator {
    color: #03004C; 
    background-color: #03004C
}

.banner {
    voice-family: "\"}\"";
    voice-family: inherit;
    padding: 0px;
    margin: 0px auto;
    text-align: center;
}

#slogan {
    font-size: 12pt;
    position: relative;
    text-align: center;
    left: 2%;
    top: 5em;
    float: left;
}

.green {
    color: #005B23;
    font-weight: 700;
    font-style: italic;
}

#totalsContainer {
    font-size: 8pt;
    color: #03004C;
    text-align: left;
}

#logo {
    position: relative;
    right: 10%;
}

#joinLogin {
    font-size:9pt;
    position:absolute;
    right:2%;
    top:0px;
}

#loginFormContainer {
    text-align: left;
}

.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navLink {
    background: url("../images/button.gif") no-repeat;
    border: none;
    width: 103px;
    height: 30px;
    text-align: center;
    
}

.navLink a {
    color: white;
    font-size: 9pt;
    text-decoration: none;
    top: -3px;
    position: relative;
}

.red {
    color: red;
}

input[type="submit"], input[type="reset"], input[type="button"], .button {
    background: url("../images/button.gif") no-repeat;
    border: none;
    width: 103px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.button-link {
    color: white;
    text-decoration: none;
}

/*
* Rounded corners
*/

.dialog {
    position:relative;
    margin:0px auto;
    min-width:8em;
    max-width:1550px; /* based on image dimensions - not quite consistent with drip styles yet */
    color:#000;
    z-index:1;
    margin-left:60px; /* default, width of left corner */
    margin-bottom:0.5em; /* spacing under dialog */
}

.dialog .content,
.dialog .t,
.dialog .b,
.dialog .b div {
    background:transparent url(../images/dialog.png) no-repeat top right;
    _background-image:url(../images/dialog.gif);
}

.dialog .content {
    position:relative;
    zoom:1;
    _overflow-y:hidden;
    padding:0px 13px 0px 13px;
}

.dialog .t {
    /* top+left vertical slice */
    position:absolute;
    left:0px;
    top:0px;
    width:13px; /* top slice width */
    margin-left:-13px;
    height:100%;
    _height:1600px; /* arbitrary long height, IE 6 */
    background-position:top left;
}

.dialog .b {
    /* bottom */
    position:relative;
    width:100%;
}

.dialog .b,
.dialog .b div {
    height:30px; /* height of bottom cap/shade */
    font-size:1px;
}

.dialog .b {
    background-position:bottom right;
}

.dialog .b div {
    position:relative;
    width:13px; /* bottom corner width */
    margin-left:-13px;
    background-position:bottom left;
}

.dialog .hd,
.dialog .bd,
.dialog .ft {
    position:relative;
}

.dialog .wrapper {
    /* extra content protector - preventing vertical overflow (past background) */
    position:static;
    max-height:1150px;
    overflow:auto; /* note that overflow:auto causes a rather annoying redraw "lag" in Firefox 2, and may degrade performance. Might be worth trying without if you aren't worried about height/overflow issues. */
}

.dialog h1,
.dialog p {
    margin:0px; /* margins will blow out backgrounds, leaving whitespace. */
    padding:0.5em 0px 0.5em 0px;
}

.dialog h1 {
    padding-bottom:0px;
}
