@charset "UTF-8";
body  {
	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: #9E0508;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-image: url(../images/bg-body-60.jpg);
	background-repeat: repeat;
	line-height: normal;
}
a:visited, a:focus {
	color:#ffc;
	text-decoration: underline;
	outline: none;
	border: none;
}

ul.MenuBarActive { 
	margin: 0 205px 0 0; /* the right margin on this div element creates the column down the right 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 */
} 

#mainContent
{
	padding-left: 15px;
}

#mainContent h1
{
	font-size: 165%;
	margin-top: 0px;
	padding-top: 10px;
	font-weight: bold;
}

#mainContent h2
{
	font-size: 135%;
}

#mainContent h3
{
	font-size: 120%;
}

#mainContent img
{
	border: 2px solid #593714;
}
/* this allows #sidebar1 to sit close to the horizontal menu (<hr> used as a spacer in the content of mainContent) */
#mainContent hr {
	margin-top: 0;
}

#container {
	width: 900px;
	margin: 0 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. */
	background-color: #FFC;
} 

#header {
	/* [disabled]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. */
	background-image: url(../images/bg-header-photos.jpg);
} 
#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 */
}

#header2{
	height: 2.8em;
	background-image: url(../images/bg-nav2.jpg);
	color: #FFF;
	background-repeat: repeat;
}

/*#header2 a:link, 
#header2 a:active, 
#header2 a:visited, 
#header2 a:focus
{
	text-decoration: none;
	outline: none;
	border: none;

}

#header2 a:link, 
#header2 a:active, 
#header2 a:visited, 
#header2 a:focus
{
	text-decoration: none;
	outline: none;
	border: none;

}
*/

#breadcrumbs{
	padding-top: 10px;
	font-size: 85%;
	color: #ffc;
}

.smaller-85
{
	font-size: 85%;
}

#breadcrumbs a,
#footer a,
#sidebar1 a,
#mainContent a {
	color:#9E0508;
	padding-top: 2px;
	padding-right: 3px;
	padding-bottom: 2px;
	padding-left: 3px;
}

#breadcrumbs a:link, 
#breadcrumbs a:active, 
#breadcrumbs a:visited, 
#breadcrumbs a:focus,
#footer a:link, 
#footer a:active, 
#footer a:visited, 
#footer a:focus
{
	color:#ffc;
	text-decoration: underline;
	outline: none;
	border: none;
}


#sidebar1 p a:link, 
#sidebar1 p a:active, 
#sidebar1 p a:visited, 
#sidebar1 p a:focus,
#sidebar1 h3 a:link, 
#sidebar1 h3 a:active, 
#sidebar1 h3 a:visited, 
#sidebar1 h3 a:focus,
#sidebar1 table tr td a:link,
#sidebar1 table tr td a:active,
#sidebar1 table tr td a:visited,
#sidebar1 table tr td a:focus,
#mainContent a:link, 
#mainContent a:active, 
#mainContent a:visited, 
#mainContent a:focus
{
	/* [disabled]color:#9E0508; */
	text-decoration: underline;
	outline: none;
	border: none;
}

#breadcrumbs a:hover,
#footer a:hover
{
	background-color:#FFCC33;
	color: #000;
}

#sidebar1 p a:hover,
#sidebar1 h3 a:hover,
#sidebar1 table tr td a:hover,
#mainContent a:hover
{
	background-color:#FFCC33;
}



#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	background-image: url(../images/bg-sidebar.jpg);
	background-repeat: repeat-x;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #5E3B13;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	margin-left: 10px;
}

#sidebar1 p, #sidebar1 h2, #sidebar1 h3
{
	margin-left: 20px;
}

#sidebar1 img{
	outline:none;
	border: none;
}

/*#mainContent #sidebar1 #sidebar1-img,
#mainContent #sidebar1 #sidebar1-img a:link,
#mainContent #sidebar1 #sidebar1-img a:visited,
#mainContent #sidebar1 #sidebar1-img a,
#mainContent #sidebar1 #sidebar1-img a:focus,
#mainContent #sidebar1 #sidebar1-img a:active{
background-color: none;
outline: none;
text-decoration: none;
border: none;
}*/

.states a:hover
{
	text-decoration: none;
	border: none;
	background-color: none;
}



#footer {
	padding: 0 10px 0 20px;
	font-size: 85%;
	background-image: url(../images/bg-nav2.jpg);
	background-repeat: repeat;
	color: #000;
} 
#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;
}
.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;
}

.fltrt-img
{
	border: medium solid #000;
	float: right;
	margin: 5px;
}
.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;
}

.strong-125percent
{
	font-size: 125%;
	font-weight: bold;
}

.strong-115percent
{
	font-size: 115%;
	font-weight: bold;
}

.strong-100percent
{
	font-size: 100%;
	font-weight: bold;
}

#mainContent table tr .strong-115percent a img
{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#mainContent .img-no-border
{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.ul-small-spacing li,
.ul-small-spacing p
{
	margin-bottom: 5px;
	margin-top: 2px;
}

#map
{
	text-align: center;
	margin: 10px;
}

#mainContent .supplier_logo
{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	clear: left;
}

#mainContent .600-width
{
	padding: 10px;
	width: 600px;
}

/*------ Slideshow ------*/
#slideshow img{
	
}
#features {
	overflow: hidden;
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 10px;
	/* [disabled]float: right; */
	padding-top: 10px;
	padding-right: 4px;
	text-align: center;
	padding-left: 0px;
	margin-left: 10px;
	}

#features img{
	text-align: center;
	vertical-align: middle;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border: 2px solid #C60;
}

.caption
{
	text-align: center;
	font-size: 100%;
	font-weight: bold;
	color: #000;
	margin-top: 0px;
	padding-top: 0px;
}

.slide
{
	position: static;
	top: 220px;
}

/*size of the frame */
.jshowoff {
	width: 640px;
	height: 260px;
	}
.jshowoff div, .jshowoff img, .jshowoff {
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	}
	
.jshowoff.images div
{
	width: 650px;
}
	
.jshowoff img {
	verical-align: middle;
	text-align: center;
}
.jshowoff h2, .jshowoff p {
	font-size: 18px;
	padding: 15px 20px 0px;
	margin: 0;
	}
.jshowoff p {
	font-size: 125%;
	line-height: 15px;
	color: #9E0508;
	}
#eddie {
	float: right;
	padding: 15px 20px 15px 20px;
	}
.jshowoff-slidelinks {
	margin: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	}
.jshowoff-slidelinks a, .jshowoff-controls a {
	display: block;
	color: #000;
	float: left;
	text-decoration: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	outline: none;
	font-size: 90%;
	line-height: 14px;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 5px;
	margin-left: 20px;
	}

p.jshowoff-controls {
	overflow: auto;
	height: 1%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	padding-top: 35px;
	padding-right: 0px;
	padding-bottom: 0px;
	margin-left: 200px;
	color: #000;
	}
#features .jshowoff-controls p a {
	font-size: 120%;
	line-height: 15px;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 5px;
	padding-left: 12px;
	color: #FFF;
	background-image: url(../images/bg-nav2.jpg);
	}
	
#features .jshowoff-controls a:link, 
#features .jshowoff-controls a:active, 
#features .jshowoff-controls a:visited, 
#features .jshowoff-controls a:focus
{
	text-decoration: none;
	outline: none;
	color: 000;
	/* [disabled]background-image: url(../images/bg-nav2.jpg); */
	background-color: #ffcc33;
	padding: 7px;
}

#features .jshowoff-controls a:hover
{
	text-decoration: none;
	outline: none;
	background-color: #FFCC33;
	color: #000;
}

	
/* End for Slideshow */
.plain-table tr td{
	padding: 5px;
	border: 1px solid #339;
}
.plain-table {
	border-collapse:collapse;
}

#sidebar1 table tr td
{
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 85%;
}
