<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #CCCCCC;
}
.layout #container {
	width: 965px;
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	display: block;
	position: relative;
} 
.layout #header {
	background-color: #666666;
} 
.layout #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: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
.layout #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #EBEBEB;
	display: block;
	position: relative;
}

.layout #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	display: block;
	position: relative;
} 

.layout #toolbar {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	background-color: #999999;
	background-repeat: repeat-x;
	line-height: 21px;
	padding: 5px;
}

.layout #container #toolbar a {
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	padding-right: 5px;
	padding-left: 5px;
}

.layout #container #toolbar a:link {
	color: #FFFFFF;
	text-decoration: none;
	
}
.layout #container #toolbar a:visited {
	color: #FFFFFF;
	text-decoration: none;
	

}
.layout #container #toolbar a:hover {
	color: #FFCC00;
	text-decoration: none;
	
}

.layout #container #header .contact {
	line-height: 150%;
	color: #FFFFFF;
	float: right;
	margin-top: 10px;
	margin-right: 10px;
	font-size: 12px;
	font-weight: bold;
	padding: 0px;
	text-align: right;
}




.layout #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
.layout #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: 10px 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: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}
.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;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckerdiv ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: 200px; /* Width of Menu Items */
}
	
.suckerdiv ul li{
position: relative;
}
	
/*Sub level menu items */
.suckerdiv ul li ul{
	position: absolute;
	width: 200px; /*sub menu width*/
	top: 0;
	visibility: hidden;
}

/* Sub level menu links style */
.suckerdiv ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
text-decoration: none;
background: #fff;
padding: 1px 5px;
}

.suckerdiv ul li a:visited{
color: black;
}

.suckerdiv ul li a:hover{
background-color: yellow;
}

.suckerdiv .subfolderstyle{
background: url(../media/arrow-list.gif) no-repeat center right;
}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */


#thumbnail
{
	display: block;
	width: 220px;
	height: 220px;
	background: url("../images/thumbnail_bg.jpg") no-repeat 0 0;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	font-size: 12px;
	color: #364272;
	text-align: center;
	line-height: 150%;
}

#thumbnail span {
	width: 200px;
	position: relative;
	display: block;
	margin-right: 10px;
	margin-left: 10px;
}

a:link {
	color: #0066CC;
	text-decoration: none;
}
a:visited {
	color: #006699;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: none;
}
#thumbnail img {
	margin-top: 20px;
}

#thumbnail:hover
{
	background-position: 0 -220px;
	color: #80C54C;
}
</pre></body></html>