@charset "utf-8";
body { margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ padding: 0; text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ color: #ffffff; background-color: #e1e1e1; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 62.5%; }
p { font-size: 1.1em; line-height: 1.7em; }
h2 { font-size: 1.4em; font-weight: bold; color: #ff9f02; padding-top: 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #fff; padding-bottom: 10px; }
ul { margin: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 15px; }
li { font-size: 1.1em; line-height: 1.7em; }
table { font-size: 1.1em; line-height: 1.7em; }
a { color: #fff; text-decoration: none; font-weight: bold; }
a:hover, a:active, a:focus { text-decoration: underline; color: #ff9f02; }
.top40 { padding-top: 40px; }

#container { width: 779px; text-align: left; /* this overrides the text-align: center on the body element. */ background-color: #fff; background-image: url(images/container_bg.jpg); background-repeat: repeat-y; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-left-style: solid; font-size: 1em; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto; }

#header { background-color: #DDDDDD; background-image: url(images/header_bg.jpg); width: 740px; padding: 0; border-bottom-width: 8px; border-bottom-style: solid; border-bottom-color: #ff9f02; height: 120px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 20px; }
#header h1 { margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ padding-top: 10px; padding-right: 0; padding-bottom: 10px; padding-left: 20px; }

#header h3 { font-size: 18px; color: #009; font-weight: lighter; margin: 0px; float: right; padding-top: 0px; padding-right: 20px; padding-bottom: 0px; padding-left: 0px; bottom: 30px; position: relative; }

#photo_panel { background-image: url(images/photo_panel.jpg); background-repeat: no-repeat; height: 200px; width: 740px; margin-left: 20px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #ff9f02; }

#leftcol { float: left; /* since this element is floated, a width must be given */ width: 345px; background-color: #1b1a52; background-image: url(images/left_col_bg.jpg); background-repeat: repeat-x; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 20px; padding-top: 0px; padding-right: 40px; padding-bottom: 40px; padding-left: 40px; }
#rightcol { background-color: #1b1a52; background-image: url(images/right_col_bg.jpg); background-repeat: no-repeat; float: left; width: 235px; margin: 0; padding-top: 0px; padding-right: 40px; padding-bottom: 40px; padding-left: 40px; }



#footer { width: 660px; margin-left: 20px; background-image: url(images/footer_bg.jpg); background-repeat: repeat-y; padding-top: 0; padding-right: 40px; padding-bottom: 20px; padding-left: 40px; background-position: left top; float: left; }
#credit { color: #000; padding-top: 10px; padding-bottom: 10px; }
#credit a { color: #000; text-decoration: underline; font-weight: normal; }

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */ float: right; margin-left: 8px; }
.fltlft { /* this class can be used to float an element left in your page */ float: left; margin-right: 8px; }
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */ clear:both; height:0; font-size: 1px; line-height: 0px; }
