@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	
	background: #666666;
	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;
}

.style1 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
}
.style2 {
	font-size: x-small
}
.style3 {
	font-weight: bold;
	font-size: 14px;
}

.style5 {
	font-weight: bold;
	font-size: 12px;
}
.topofmap {
	font-weight: bold;
	font-size: 10px;
	border: 2px solid #000000;
	position: absolute;
	top: 300px;
}

.mapstyle {
	width: 176px;
	height: 200px;
	border: 2px solid #000000;
	position: absolute;
	top: 320px;
}

.twoColFixsrvtable {
	list-style-position: inside;
	list-style-type: circle;
	left: 20px;
}

.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #CCCCCC;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background: #CCCCCC;
	padding: 0 0 0 0;  /* 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. */
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* 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: #DDDDDD;
	height: 600px;
	/*}

.twoColFixLtHdr #list-menu {
width: 136px;
/* this width value is also effected by
the padding we will later set on the links. */
}

.twoColFixLtHdr #list-menu ul {
margin: 0; 
padding: 0;
list-style-type: none;
} 

.twoColFixLtHdr #list-menu a {
display: block;
width:170px;
padding: 2px 2px 2px 6px;
border: 2px solid #1D1F2E;
background: #dcdcdc;
text-decoration: none; 
filter:blendTrans(duration=0.5);
} 

.twoColFixLtHdr #list-menu a:link, #list-menu a:active, #list-menu a:visited {
color: #000000;
}

.twoColFixLtHdr #list-menu a:hover {
border: 1px solid #000000;
background: #333333;
color: #ffffff;
} 

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 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 sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 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.
*/
.twoColFixLtHdr #mainContent {
	margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixFix. It creates the space down the right side of the page. */
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
} 
/* Miscellaneous classes for reuse */
.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;
}
