@charset "utf-8";
body  {
	font: 62.5% Verdana, Arial, Helvetica, sans-serif;
	background: #e1e1e1;
	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;
}
.twoColFixLtHdr #container { 
	width: 750px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixLtHdr #mainContent a:link {
	color:#2075ac;
}

.twoColFixLtHdr #mainContent a:visited {
	color:#2075ac;
}

.twoColFixLtHdr #mainContent a:hover {
	color:#00aeef;
	text-decoration:line-through;
}

.twoColFixLtHdr #sidebar1 a:link{
	color:#2075ac;
}

.twoColFixLtHdr #sidebar1 a:visited {
	color:#2075ac;
}

.twoColFixLtHdr #sidebar1 a:hover {
	color:#00aeef;
	text-decoration:line-through;
}

.twoColFixLtHdr #sidebar2 a:link {
	color:#2075ac;
}

.twoColFixLtHdr #sidebar2 a:visited {
	color:#2075ac;
}

.twoColFixLtHdr #sidebar2 a:hover {
	color:#00aeef;
	text-decoration:line-through;
}

.twoColFixLtHdr h1 {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-weight:normal;
	font-size: 2em;
	color: #492a0b;
	margin:1em 0;
	/*padding: 50px 0 0 0;*/
}

.twoColFixLtHdr h2 {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 1.7em;
	font-weight:normal;
	color: #492a0b;
	margin: 1em 0 ;
	padding: 1em 0 0 0;
}

.twoColFixLtHdr h3 {
	font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
	font-size: 1.4em;
	color: #2075ac;
	margin: 0;
}

.twoColFixLtHdr strong {
	color: #2075ac;
}

.twoColFixLtHdr #header { 
	/*background: #DDDDDD; */
	padding: 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 #MenuBar1 {
	width:100%;
	background-color:#d1d1d1;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 215px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 20px 10px 50px;
	font-size:1.1em;
	line-height:1.4em;
}

.twoColFixLtHdr #sidebar2 { 
	margin: 10px 0 0 290px; /* 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: 20px 50px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position:relative;
	border-left:3px solid #d1d1d1;
	font-size:1.2em;
	line-height:1.5em;
} 

.twoColFixLtHdr #mainContent { 
	margin: 0;
	padding: 30px 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	position:relative;
	font-size:1.2em;
	line-height:1.5em;
} 

.twoColFixLtHdr #mainContent ul { 
	margin: 0;
	padding: 0 0 0 .5em;
	list-style:none;
}

.twoColFixLtHdr #mainContent li { 
	margin: 1em 0;
}

.twoColFixLtHdr #footer { 
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(../images/footerBg.gif) repeat-x;
	text-align:right;
	font-size:1em;
	color: #fff;
	margin-top:10px;
} 

.twoColFixLtHdr #footer a:link {
	color:#fff;
	text-decoration:none;
}

.twoColFixLtHdr #footer a:visited {
	color:#fff;
	text-decoration:none;
}

.twoColFixLtHdr #footer a:hover {
	color:#00aeef;
	text-decoration:underline;
}

.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;
}

.img-wrapper-fltrt {
	clear: left;
	float: right;
	margin: 5px 7px 8px 7px;
	background: url(../images/shadow.gif) no-repeat bottom right;
}

.img-wrapper-fltrt   img {
	margin: -3px 3px 3px -3px;
	border: solid #cfcfcf 1px;
	padding: 4px;
	background-color: #FFFFFF;
}

.img-wrapper-fltlft {
	clear: right;
	float: left;
	margin: 5px 8px 8px 0;
	background: url(../images/shadow.gif) no-repeat bottom right;
}

.img-wrapper-fltlft img {
	margin: -3px 3px 3px -3px;
	border: solid #cfcfcf 1px;
	padding: 4px;
	background-color: #FFFFFF;
}

.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;
}

/* CSS for Contact Form */

.twoColFixLtHdr form {
	margin:15px 10px 10px 10px;
	font: 1em "Trebuchet MS", Verdana, Arial, sans-serif;
}

.twoColFixLtHdr legend {
	font: .8em "Trebuchet MS", Verdana, Arial, sans-serif;
	display:block;
}

.twoColFixLtHdr label {
	font-weight: bold;
	font: 1em "Trebuchet MS", Verdana, Arial, sans-serif;
	display:block;
}

.twoColFixLtHdr textarea {
	height:150px;
	width: 540px;
	color: #2075ac;
	font: 1em "Trebuchet MS", Verdana, Arial, sans-serif;
}

.twoColFixLtHdr .textInput {
	width:250px;
	color: #2075ac;
	font: 1em "Trebuchet MS", Verdana, Arial, sans-serif;
}

.twoColFixLtHdr  select {
	display: block;
	position: relative;
}

.clearIt {
	clear:both;
}


/* Add this style for warning messages */
.twoColFixLtHdr .warning {
	font-weight:bold;
	color:#da0000;
}

.twoColFixLtHdr .formParagraph {
	/*font-size: 1.3em;*/
	font-weight: bold;
}
georgia {
	font-family: Georgia, Times New Roman, Times, serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Tahoma, Geneva, sans-serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Arial Black, Gadget, sans-serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: MS Serif, New York, serif;
}
.twoColFixLtHdr #container #sidebar2 h3 {
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}
.twoColFixLtHdr #container #sidebar1 .twoColFixLtHdr {
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}
.twoColFixLtHdr #container #sidebar1 h2 {
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}
.kgded {
	font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
}
