@charset "UTF-8";
/* CSS Document */
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;
	background-image: url(../images/htmlBackground.jpg);
	background-repeat: repeat;
}
.twoColFixLtHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	padding: 0;
} 
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* 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. */
	height: 205px;
	background-image: url(../images/headerBackground.png);
	background-repeat: no-repeat;
	margin: 0;
	position: relative;
} 
.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;
	text-indent: -1000px;
	float: left;
}
.twoColFixLtHdr #header img {
	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: 30px 0 0 0;
}
#mainNavbar {
	position: absolute;
	bottom: 0px;
	left: 35px;
}
#mainNavbar ul  {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 100%;
	list-style-type: none;
}
#mainNavbar li {
	float: left;
	display: block;
	margin: 0;
	padding: 0;
}
#mainNavbar li a:link,#mainNavbar li a:visited {
	font-size: 1em;
	line-height: 38px;
	color: #FFF;
	margin-right: 10px;
	text-decoration: none;
	padding: 0 15px;
	display: block;
	background-image: url(../images/nav_rollover.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
#mainNavbar li a:hover {
	background-image: url(../images/nav_rollover.gif);
	background-repeat: no-repeat;
	background-position: left top;
	color: #333;
	border: none;
}
#mainNavbar ul li a.current{
	line-height: 38px;
	color: #CCC;
	height: 43px;
	margin-top: -5px;
	cursor: default;
	background-image: url(../images/nav_current.gif);
	background-repeat: no-repeat;
}
#mainNavbar ul li a.current:hover {
	color: #CCC;
	cursor: default;
}
.twoColFixLtHdr #mainVisual {
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
	padding: 0px;
	height: 210px;
	margin: 0 auto;
}
.twoColFixLtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 0 20px;
	background-image: url(../images/SidebarGradation.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #D4EAFF;
}
.twoColFixLtHdr #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
	margin: 0;
}
.twoColFixLtHdr #sidebar1 p {
	font-size: .75em;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #container #sidebar1 h4 {
	font-size: 0.75em;
	font-weight: bold;
	margin: 0px;
	padding: 5px 0 0 0;
}
.twoColFixLtHdr #sidebarLeft {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	margin: 0px 0 0 20px;
	background-image: url(../images/SidebarGradationshort.jpg);
	background-repeat: no-repeat;
	height: 255px;
	background-position: right bottom;
	background-color: #D4EAFF;
}
.twoColFixLtHdr #sidebarLeft ul {
	font-size: 0.8em;
	text-transform: uppercase;
	list-style-type: none;
	line-height: 1.2;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	margin: 0px;
	padding: 0px;
	color: #fff;
}
.twoColFixLtHdr #sidebarLeft  li {
	background-color: #4071B8;
}
.twoColFixLtHdr #sidebarLeft ul li a:link, #sidebarLeft ul li a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	line-height: 1.2;
}
.twoColFixLtHdr #sidebarLeft ul li a:hover {
	color: #999;
	background-color: #0F3198;
	display: block;
	line-height: 1.2;
}
.twoColFixLtHdr #sidebarLeft li a {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding-left: 5px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #4071B8;
}
#sidebarLeft ul li a.currentSub {
	color: #999;
	cursor: default;
	background-color: #0f3198;
}
#sidbarLeft ul li a.currentSub:hover {
	color: #999;
	cursor: default;
	background-color: #0f3198;
}
.moreLink {
	font-size: .65em;
	font-style: italic;
	font-weight: bold;
	text-align: right;
}
.twoColFixLtHdr #mainContent {
	margin: 0 px; /* 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: 15px 260px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
	height: 400px;
} 
.twoColFixLtHdr #mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_single {
	margin: 0 px; /* 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: 15px 40px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_single h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #mainContent_single h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #mainContent_single p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_single ul {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	list-style-type: none;
	padding-bottom: 10px;
}
.twoColFixLtHdr #mainContent_single li {
	float: left;
	padding-right: 25px;
}
.twoColFixLtHdr #mainContent_left {
	margin: 0 px; /* 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: 15px 40px 0 210px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_left h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
.twoColFixLtHdr #container #mainContent_left h4 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0px;
	padding-top: 10px;
}
.twoColFixLtHdr #container #mainContent_left h5 {
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixLtHdr #mainContent_left p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000;
	margin: 0px;
	padding: 5px 0 0 0;
	line-height: 1.5;
}
.twoColFixLtHdr #mainContent_left #contactList ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	padding: 0px 15px;
	float: left;
	list-style: none;
}
.twoColFixLtHdr #mainContent_left #contactList li {
	margin: 0px;
	padding: 0px;
	float: none;
	font-weight: normal;
}
#mainContent_left #contactList li.title{
	font-size: 1.1em;
	font-weight: bolder;
}
.twoColFixLtHdr #mainContent_News {
	margin: 0 px; /* 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: 15px 260px 0 40px;
	background-image: url(../images/contentBackground.png);
	background-repeat: repeat-y;
}
.twoColFixLtHdr #mainContent_News h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.8em;
	font-style: italic;
	font-weight: normal;
	color: #1772BC;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	margin: 0;
}
#mainContent_left #availableInventory ul {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 37px;
	text-align: center;
	display: block;
	list-style-type: none;
	text-indent: -10000px;
	margin-right: 45px;
}
#availableInventory ul #excel a:link,#availableInventory ul #excel a:visited{
	background-image: url(../images/availableInventoryExcel.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center top;
	text-decoration: none;
}
#availableInventory ul #excel a:hover {
	background-image: url(../images/availableInventoryExcel.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
}
#availableInventory ul #pdf a:link, #availableInventory ul #pdf a:visited {
	background-image: url(../images/availableInventoryPdf.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center top;
	text-decoration: none;
}
#availableInventory ul #pdf a:hover {
	background-image: url(../images/availableInventoryPdf.png);
	display: block;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-decoration: none;
}
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-image: url(../images/footerBackground.png);
	background-repeat: no-repeat;
	height: 146px;
	margin: 0;
} 
.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 */
	text-align: center;
	font-size: 0.6em;
	font-weight: bold;
}
.twoColFixLtHdr #footer p img {
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin: 0px;
	padding-top: 10px;
}
.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;
}
.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;
}
#mainContent_left #availableInventory ul li {
	padding-bottom: 20px;
}
.twoColFixLtHdr #container #mainVisual img {
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	border-style: none;
	margin-left: 19px;
}
.ruleDivision {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #4471B9;
}

