@charset "utf-8";
/* CSS Document */
body  {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero body margin and padding to account for differing browsers */
	padding: 0;
	text-align: center; /* centers the container in IE 5* browsers. Text is left aligned in the #container */
	color: #333;
	background-image:url(../Images/cssimages/black_line-bg.gif);
	background-repeat:repeat-x;
}
a:link, a:visited  {
	color: #00F; text-decoration: none;
}
a:hover {
	color: #00F; text-decoration: underline;
}
a:active {
	color: #666; text-decoration: underline;
}
h1, h3, h4 {
	font-family: Verdana, Helvetica, sans-serif; color: #333; font-weight: bold; text-decoration: none;
	text-align:left;
	margin: 0;
	padding: 0;
}
h1 {
	font-size: 0.9em;
	background:none;
}
h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	line-height:1.1em;
	color: #555;
	padding: 10px 20px 7px 0;
	border-bottom: solid 2px #666;
	text-align:left;
	text-transform:capitalize;
}
h3 {
	font-size: 0.9em;
}
h4 {
	font-size: 0.8em;
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be 
sure that background graphics in the columns take that into account. Built correctly, this is more 
accessible for those that need larger font sizes, since the width of the columns remains proportionate. 
If this is undesirable with your design, simply change the width to a pixel size and be sure to change 
the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, 
if you decrease the text size overall by using a font-size: 80% on the body element or the #container, 
remember that the column widths will downsize proportionately. You may want to increase their widths, 
and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: 
#navbar is given a 70% font size and #mainContent is given an 85% font size), this will proportionately 
change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to 
create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 
100% of the available space. It is here so that if you want to decrease the size of the overall 
container - perhaps leaving a bit of margin on each side - this will already be available for 
adjustment.
*/
#container { 
	width: 100%;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right:10%;
	background-image: url(../Images/cssimages/container-bg.jpg);
	background-repeat:no-repeat;
}  
#header { 
	height:100px;
	padding: 0 0 0 300px;  /* this padding matches the left alignment of the elements in the divs 
that appear beneath it. If an image is used in the #header instead of text, you may want to remove the 
padding. */
	vertical-align:bottom;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 45px 0 0 120px ; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 0.7em; 
	text-align: left;
	width:400px;
	background:none;
}
/* Tips for navbar:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be 
adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to 
the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and 
right margin on those elements as seen in the ".dfd2010 #navbar p" rule.
*/
#navbar {
	position:absolute;
	top:100px;
	left:0;
	width:200px; /* since this element is floated, a width must be given */
	padding:55px 0 0 20px; /* padding keeps the content of the div away from the edges */
	font-size:0.8em;
}
#navbar_back {
	z-index:-100;
	position: absolute;
	top:299px;
	left:0;
	height:560px;
	width:182px;
	background-color:#FFF;
	background-image:url(../Images/cssimages/wavy_fade.jpg);
	background-repeat:no-repeat;
	padding:10px 0 0 0; /* padding keeps the content of the div away from the edges */
}
#mainContent {
 	top:100px;
	margin: 0 200px 0 200px; /* the right margin can be given in ems or pixels. It creates the space 
down the right side of the page. */ 
	padding: 0 2em 0 4em; /* padding here creates white space "inside the box." */
	max-width:780px;
	min-width:400px;
	font-size: 0.75em;
	text-align:justify;
	line-height:1.4em;
	background-image:url(../Images/cssimages/main_content_bg.jpg);
	background-repeat:no-repeat;
	background-position:left -9px;
	background-color:#FFF;
} 
#footer {
	padding: 5px 30px; /* this padding should match the alignment of the elements in the divs above it. */
	background: #FFF;
	max-width:980px;
	min-width:500px;
	font-size:0.65em;
	text-align: center;
	line-height:1.4em;
	vertical-align: top;
	border-top: .05em dotted #999;
	margin: 0 20px 0 20px;
	clear: both;
} 
#footer h3 {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
}
#footer p {
	margin:0;
}
#footer .address {
	padding-top:6px;
	padding-bottom:6px;
}
#footer h3 {
	text-align: center;
}
#navbar ul {
	margin-left: 0px;
	padding-left: 0px;
	padding-right: 0px;
	margin-right: 0px;
}
#navbar li {
	background-color: #FFF;
	background-image: url(../Images/cssimages/mon01.jpg);
	background-repeat: no-repeat;
	line-height: 22px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;
	font-weight:700;
	list-style-position: outside;
	list-style-type: none;
	border:none;
	text-align: left;
	text-indent: 32px;
	margin-top: 10px;
	letter-spacing: 0.09em;
	width: 100%;
	color: #000;
}
#navbar a:link {
	color: #333;
	text-decoration: none;
}
#navbar a:visited {
	text-decoration: none;
	color: #333;
}
#navbar a:hover {
	text-decoration: none;
	color: #339999;
}
#navbar a:active {
	text-decoration: none;
	color: #F00;
}
#sidebar {
	position:absolute;
	top:125px;
	right:15px;
	width: 180px; /* since this element is floated, a width must be given */
	padding:0 0 0 5px; /* top and bottom padding create visual space within this div */
	font-size: 0.7em;
	background:none;
}
#sidebar p {
	text-align:left;
}
#sidebar form input {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	margin-top:0.7em;
}
#sidebar img {
	border: none;
	margin-top: 20px;
}
#navbar h3, #navbar p, #sidebar p, #sidebar h3, #sidebar img, #sidebar form input  {
	margin-left: 10px; /* the left and right margin should be given to every element that will be 
placed in the side columns */
	margin-right: 10px;
}
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #navbar div, the margins of the #mainContent div will be based on its font-size and the width of the #navbar div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and navbar is created with the left margin on the mainContent div. No matter how much content the navbar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #navbar space when the content in #navbar ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent p, h1, h2, h3 {
	background-color:#FFF;
}
#mainContent #banner {
	text-align: right;
	padding: 0 0 0 15px;
}
#mainContent blockquote {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.9em;
	color: #000;
	background-color: #F0FFFF;
	max-width:400px;
	text-align: left;
	border-left-width: 0.5em;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left: solid 0.5em #1A9FAE;
	padding: 5px 5px 5px 10px;
	margin: 10px 20px 10px 10px;
}
#mainContent blockquote p {
	margin: 0px;
	padding: 0px;
	background-color: #F0FFFF;
}
#mainContent blockquote h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0px;
	padding: 0px;
	font-size: 1em;
	background-color: #F0FFFF;
}
#mainContent p {
	margin-top:0;
	background-color:#FFF;
}
#mainContent .imgMain_slider {
	height:222px;
	width:330px;
	padding: 12px;
	margin: 5px 5px 0 0;
	text-decoration: none;
	background-image:url(../Images/cssimages/polaroid_bg.jpg);
	background-repeat:no-repeat;
}
#validator {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFF;
	background-color: #666;
	margin-top: 10px;
}
#validator a {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #FFF;
}
.blackStripe {
	float: right;
	height: 30px;
	width: 101%;
	margin: 0;
	z-index: -90;
	background-image: url(../Images/cssimages/black_line-bg.gif);
	background-repeat: repeat-x;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding: 10px;
}
.blueTable_Title {
	margin:10px 0 -3px 10px;
	vertical-align:top;
	border:none;
	background-image:url(../Images/cssimages/bluecorner.gif);
	background-repeat:no-repeat;
	height:19px;
	background-color:#0099CC;
	color:#FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size:0.9em;
	font-weight:bold;
	text-indent:15px;
	padding-bottom:2px;
	max-width:inherit;
	display: table;
}
.blueTable {
	display: inline-block;
	margin: 0 0 20px 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border:solid #0099CC medium;
	font-family: Arial, Helvetica, sans-serif;
	font-size:0.9em;
	text-align: left;
	color:#333;
	padding: 10px 10px 0 10px;
	min-width:300px;
}
.blueTableWithTableInside {
	display: inline-block;
	margin: 0 0 20px 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border:solid #0099CC thin;
	font-family: Arial, Helvetica, sans-serif;
	font-size:0.9em;
	text-align: left;
	color:#333;
	min-width:300px;
	background-color: #0099CC;
}
.blueTableWithTableInside table tr td {
	background-color: #FFF;
	padding: 2px;
	margin: 0px;
}
.code_blue {
	color: #009;
}
.code_green {
	color: #090;
}
.code_LinkBlue {
	color: Blue;
}
.code_purple {
	color: #606;
}
.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;
}
.floatingMenu {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; 	font-size: 9pt; background:none;
	text-align: center;
	vertical-align: middle;
	border: none;
	position: absolute;
	right:0px;
	z-index: 100;
	margin: 0px;
}
.floatingMenu_index {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 9pt;	background: none;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #1A9FAE;
	position: absolute;
	z-index: 100;
	margin: 0px;
	width:200px;
	padding: 3px 0 3px 3px;
}
.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;
}
.formBack {
	display: inline-block;
	overflow: hidden;
	margin: 0 0 20px 10px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border:solid #0099CC medium;
	background-color:#0099CC;
	font-family: Arial, Helvetica, sans-serif;
	font-size:0.9em;
	text-align: left;
	color:#333;
	padding: 0;
}
.Image_Title {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;	font-size: 10px;
	text-decoration: none;
	list-style-type: disc;
	text-align: center;
}
.link_box {
	cursor:text;
	text-align: left;
	padding: 4px;
	border: 1px solid #999;
	margin: 10px 5px 10px 0;
	background-color:#FFF;
	font-size: 0.85em;
	max-width: 400px;
}
.mainTable {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	background-color: #FFFFCC;
}
.mainTable tr td ul {
	margin-top: 0px;
	padding-top: 5px;
}
.mainTable caption {
	margin-bottom:1.0em;
	text-align: left;
	font-weight: bold;
}
.News_Blink {	
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 9pt;
	font-weight: bold;
	text-decoration: blink;
	color: #000099;
}
.table {
	font-size:7.0em;
	background-color: #CFF;
	border: 1px solid #999;
}
.unavailable {
	color: #CCC;
	font-family: Verdana, Geneva, sans-serif; font-size: 8pt;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}

[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#navbar, #sidebar { padding-top: 30px; }
#mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
