@charset "utf-8";
/* CSS Document */

body {
	font: 85% "Trebuchet MS", Arial, Verdana, Arial, Helvetica, sans-serif; /* 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;
	background-color: #FFFFFF;
	margin: 50px;
}
.jkg3col #container {
	background-image:url(../images/source_images/bkgrnd.png);
	background-repeat:no-repeat;
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px; /* 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. */
	padding: 0px;
}
.jkg3col #left_bar {
	/*background:; the background color will be displayed for the length of the content in the column, but no further */
	position: absolute;
	top: 10px;
	left: 0;
	width: 140px; /* 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: 0; /* padding keeps the content of the div away from the edges */
	clear: none;
	overflow: visible;
}
.jkg3col #right_bar {
	/*background:; the background color will be displayed for the length of the content in the column, but no further */
	position: absolute;
	top: 140px;
	left: 500px;
	width: 280px; /* 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: 0; /* padding keeps the content of the div away from the edges */
	margin-left: 0px;
	height: 310px;
	overflow: auto;
}
.jkg3col #header {
	padding: 0 10px;
	margin-left: 0px;
	margin-right: 300px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.jkg3col #footer {
	text-align:center;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	overflow: hidden;
}
.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;
}
.jkg3col #content {
	padding: 0 10px;
	margin-left: 140px;
	margin-right: 140px;
	margin-top: 10px;
	margin-bottom: 0px;
}

