@charset "UTF-8";
body  {
	font: 12px "Trebuchet MS";
	background: #CCCCCC url(images/atc-background-black.gif) repeat-y center;
	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: #333333;
}
a:link {
	color: #5D3422;
	text-decoration: none;
}
a:visited {
	color: #5D3422;
	text-decoration: none;
}
a:hover {
	color: #41586B;
	text-decoration: underline;
}
a:active {
	color: #41586B;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent h1 {
	font-size: 1.6em;
	color: #273440;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent h2 {
	font-size: 1.2em;
	color: #889382;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.dataTable {
	text-align: center;
	border: 1px solid #5D3422;
}
.dataTable th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #5D3422;
	text-align: left;
	padding: 6px;
}
.dataTable   th.top {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #5D3422;
	text-align: center;
	padding: 6px;
}
.dataTable td {
	border: 1px solid #5D3422;
}
.twoColFixLtHdr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: justify;
	border-top: 2px solid #929B8C;
	border-right: 2px solid #929B8C;
	border-bottom: 2px none #929B8C;
	border-left: 2px solid #929B8C;
} 
.callout {
	padding: 5px;
	float: right;
	border: 1px solid #929B8C;
	margin: 0px 0px 5px 5px;
}
.callout p {
	text-align: center;
	padding: 0px;
	margin: 0px 0px 2px;
}
.twoColFixLtHdr #header {
	background: #41586B;
	padding: 0px;  /* 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. */
	margin: 0px;
} 
.twoColFixLtHdr #header #NavBar {
	margin: 0px;
	width: 100%;
	background-color: #41586b;
	padding: 0px;
}
.twoColFixLtHdr #header img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #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: #41586B; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px;
	color: #FFFFFF;
	margin-top: 27px;
	margin-left: 31px;
	text-align: center;
}
.twoColFixLtHdr #sidebar1 h3 {
	font-size: 1.4em;
	letter-spacing: 0.1em;
	margin-top: 14px;
	margin-bottom: 6px;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: 1em;
	margin-top: 2px;
	margin-bottom: 6px;
}
.twoColFixLtHdr #sidebar1 h4 {
	color: #CCCCCC;
	margin-top: 12px;
	margin-bottom: 6px;
	font-size: 1.2em;
	font-weight: bold;
}
.twoColFixLtHdr #mainContent h4 {
	font-size: 1em;
}
.twoColFixLtHdr #mainContent {
	margin: 27px 0 0 260px; /* 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 0 18px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 1em;
	line-height: 1.4em;
	overflow: visible;
} 
.Item {
	margin: 0px;
	padding: 0px;
}
.FloatLeft {
	margin-right: 10px;
	margin-bottom: 10px;
	float: left;
}
.FloatRight {
	margin-bottom: 10px;
	float: right;
	margin-left: 10px;
}
.twoColFixLtHdr #footer {
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000 url(images/fulcrum-logo-black.jpg) no-repeat 770px 10px;
	font-size: 1em;
	text-align: center;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #000000;
	color: #FFFFFF;
} 
.fineprint {
	font-size: .9em;
}
.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 */
}
.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;
}
.twoColFixLtHdr #header #headbottom {
	background-image: url(images/header-bottom.gif);
	background-repeat: repeat-x;
	height: 8px;
	clear: both;
}
.twoColFixLtHdr #sidebar1 a:link {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFFFFF;
}
.twoColFixLtHdr #sidebar1 a:visited {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFFFFF;
}
.twoColFixLtHdr #sidebar1 a:hover {
	color: #CCCCCC;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCCCCC;
}
.twoColFixLtHdr #sidebar1 a:active {
	color: #CCCCCC;
	text-decoration: none;
}
.Subhead {
	font-size: 1.1em;
	font-weight: bold;
}
.twoColFixLtHdr #sidebar1 img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.divider {
	background-color: #5D3422;
	margin: 0px;
	padding: 0px;
	height: 1px;
}
.FlushLeft {
	text-align: left;
}
.twoColFixLtHdr #sidebar1 ul {
	text-align: left;
	margin-left: 13px;
	padding-left: 0px;
	list-style-position: outside;
	list-style-type: square;
}
.twoColFixLtHdr #sidebar1 li {
	margin-bottom: 5px;
}
.twoColFixLtHdr #footer a:link {
	color: #FFFFFF;
	text-decoration: underline;
}
.twoColFixLtHdr #footer a:visited {
	color: #FFFFFF;
	text-decoration: underline;
}
.twoColFixLtHdr #footer a:hover {
	color: #CCCCCC;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:active {
	color: #CCCCCC;
	text-decoration: underline;
}
