@charset "UTF-8";
body  {
	font: 100% Georgia, "Times New Roman", Times, serif;
	font-size:11px;
	background: #d8d8ce;
	line-height:14px;
	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: #666666;
	background-image:url(/images/page-bg.gif);
	background-repeat:repeat-x;
}
.twoColFixRtHdr #container { 
	width: 754px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(/images/container-bg.gif);
	background-repeat:repeat;
} 
.twoColFixRtHdr #header { 
	padding-left: 4px;
	background-image:url(/images/header-bg.gif);
} 
.twoColFixRtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #menu { 
	padding-left: 20px;
	padding-top: 24px;
	height:20px;
	background-image:url(/images/menu-bg.gif);
	color:#FFFFFF;
	font-variant:small-caps;
}

.twoColFixRtHdr .menusmallcap {
	font-variant:small-caps;
	font-size:16px;
}
.twoColFixRtHdr #container #menu a {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration:none;
	font-variant: small-caps;
	}
.twoColFixRtHdr #container #menu hover:a {
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration:none;
	font-variant:small-caps;
	}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 8px 5px;
	text-align:center;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 230px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 8px 0 14px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image:url(images/container-bg.gif);
} 

.twoColFixRtHdr #mainContent p { 
	margin-top: 3px;
	margin-bottom:0px;
	padding-bottom:3px;
	padding-top:3px;
} 

.twoColFixRtHdr #footer { 
	padding: 24px 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	height: 20px;
	background-image:url(images/footer-bg.gif);
	color:#FFFFFF;
	font-size:9px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 9px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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; 
}


.narrowbox {
	border: thin dotted #999999;
	background:#f2f2ee;
}



.dots {
	width: 100%;
	border-style:none;
	border-top: thin dotted #999999;
	padding-top:10px;
}


.twoColFixRtHdr #container #mainContent #widebox {
	width: 100%;
	border: thin dotted #999999;
	background:#f2f2ee;
}
.twoColFixRtHdr #mainContent  #widebox p { 
	margin-top: 3px;
	margin-bottom:0px;
	padding-bottom:0px;
	padding-top:3px;
} 

.twoColFixRtHdr #container #mainContent  #widebox h2 {
	font-size: 17px;
	color: #0090d3;
	margin-top:6px;
	margin-bottom:0;
	font-variant:small-caps;
	font-weight:bold;
}

.twoColFixRtHdr #container #mainContent h2 {
	font-size: 17px;
	color: #0090d3;
	margin-top:10px;
	margin-bottom:0;
	font-variant:small-caps;
	font-weight:bold;
}
.twoColFixRtHdr #container #mainContent h3 {
	font-size: 14px;
	font-weight:bold;
	color: #0090d3;
	margin-top:10px;
	margin-bottom:0;
	font-variant:normal;
	}

.twoColFixRtHdr .smallcap {
	font: 75% Georgia, "Times New Roman", Times, serif;
}
.twoColFixRtHdr .mainsmallcap {
	font-variant:small-caps;
	font-size:14px;
}
.float-left {
	float:left;
}

.float-right {
	float:right;
}

a {
	color: #FF0000;
}
a:hover {
	color: #000000;
}
.twoColFixRtHdr #container #mainContent #anchorlink {
	padding: 5px 10px; /* top and bottom 5, left and right 10 */
} 
.twoColFixRtHdr #container #mainContent #anchorlink a {
	font-size: 9px;
	color: #0090d3;
	text-decoration: none;
} 
.alert {
background-color:#FFFFFF;
border:dashed thin #666666;
}.twoColFixRtHdr #container #mainContent #nopad h2 {
	margin-top: 0px;
	padding-top: 0px;
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */
top:auto;
left:auto;

}