/* CSS Document */

/* --- ToolTip CSS adapted from: http://trentrichardson.com/examples/csstooltips --- */

/* --- base settings for body and html --- */

html {
color:#000;
margin:0;
padding:0;
}

body {
font-family:Helvetica, sans-serif;
color:#000;
text-align:center;
background:url(images/stripe.png) repeat;
margin:0;
padding:0;
}

img {
border:none;
}

a {
outline:none;
}

a.tt {
position:relative;
z-index:24;
color:#3CA3FF;
font-weight:700;
text-decoration:none;
}

a.tt span {
display:none;
}

a.tt:hover {
z-index:25;
color:#aaf;
background:#000;
}

a.tt:hover span.tooltip {
display:block;
position:absolute;
top:0px;
left:-40px;
width:200px;
color:#930;
text-align:center;
filter:alpha(opacity:90);
-khtml-Opacity: 0.90;
-moz-opacity: 0.90;
opacity: 0.90;
}

a.tt:hover span.top {
display:block;
background:url(./images/bubble.gif) no-repeat top;
padding:30px 8px 0;
}

a.tt:hover span.middle {
display:block;
background:url(./images/bubble_filler.gif) repeat bottom;
padding:0 8px;
}

a.tt:hover span.bottom {
display:block;
color:#548912;
background:url(./images/bubble.gif) no-repeat bottom;
padding:3px 8px 10px;
}

#wrapper {
text-align:left;
border:0;
width:550px;
background:#FFF;
margin:20px auto;
padding:20px 0;
}

#header {
text-align:center;
margin:0 0 15px;
}

#leftcol {
float:left;
margin-left:50px;
width:150px;
text-align:left;
}

#rightcol {
float:right;
margin-right:50px;
width:150px;
text-align:right;
}

#centercol {
float:left;
width:150px;
text-align:center;
}

.spacer {
margin-bottom:30px;
}

#footer {
clear:both;
font-family:Arial, Helvetica, sans-serif;
padding-top:20px;
text-align:center;
}

a:link,a:active,a:visited {
text-decoration:none;
}