@charset "UTF-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
  line-height: (value);
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Centers the page content container in IE 5 browsers. */
	line-height: 13pt;
	background-color: #FFF;
}
/* Commonly used to style page titles. */
h1 {
	color: #900;
	font-size: 16pt;
	font-weight: bold;
	line-height: normal;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
/* Commonly used to style section titles. */
h2 {
	color: #63715E;
	font-size: 13pt;
	font-weight: bold;
	line-height: normal;
	padding-top: 10px;
	background-repeat: repeat-x;
}

h3 {
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #C00;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #C00;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #C00;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
	text-align: left;
	font-weight: bold;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
}
#outerWrapper #top {
	margin: 10px;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	border: 0px solid #999;
	padding: 0px;
	height: 90px;
	width: 980px;
	background-image: url(images/header_img/header_noFlash.jpg);
}
#outerWrapper #topNavigation {
	height: 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-left: 0px;
	border-bottom-width: 0px;
	border-bottom-color: #999;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
	padding-top: 2px;
	color: #999;
	border-bottom-style: none;
	padding-bottom: 3px;
}
#outerWrapper #contentWrapper {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	height: auto;
}

#outerWrapper #contentWrapper #content hr {
	color: #D9E7D7;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0px;
	margin-right: 232px;
	margin-bottom: 0px;
	margin-left: 232px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: inherit;
}
#outerWrapper    #contentWrapper #content .imgFloatRight{
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
	clear: none;
}
#outerWrapper #contentWrapper #content .imgBikeFloatLeft{
	clear: both;
	float: left;
}

#outerWrapper #contentWrapper #content table tr td div {
	clear: both;
	float: left;
}

#outerWrapper #contentWrapper #content table tr td div a img {
	clear: right;
	float: left;
}

#outerWrapper #contentWrapper #content h2 {
	padding-top: 10px;
	padding-bottom: 10px;
}

#outerWrapper #contentWrapper #content img {
	border: 1px solid #999;
	margin-bottom: 10px;
	float: left;
	clear: none;
}

#outerWrapper #contentWrapper #content p img {
	float: right;
}

#outerWrapper #contentWrapper #content p {
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
}

#outerWrapper #contentWrapper #leftColumn1 table tr td h3 {
	font-weight: bold;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 230px;
	margin-right: 0px;
	border: 0px solid #999;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#outerWrapper #contentWrapper #leftColumn1 table tr td {
	background-color: #FFF;
	border: 1pt solid #999;
	padding: 0px;
	margin-top: 10px;
	font-weight: bold;
}

#outerWrapper #contentWrapper #leftColumn1 table tr td h2 {
	color: #666;
	background-color: #CCC;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #C30;
}

#outerWrapper #contentWrapper #leftColumn1 table tr td p {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 230px;
	margin-left: 0px;
	height: inherit;
	border-left-width: 1px;
	border-left-style: none;
	border-left-color: #666;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td {
	border: 1pt solid #999;
	text-align: left;
	padding: 0px;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td h2 {
	color: #666;
	background-color: #CCC;
	padding-top: 1px;
	padding-right: 5px;
	padding-bottom: 1px;
	padding-left: 5px;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #C30;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td p {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	text-align: left;
	font-weight: bold;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td table {
	margin-left: 10px;
	width: 180px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	margin: 10px 10px 10px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border: 1px solid #999;
	text-align: center;
}

h2banner {
	color: #63715E;
	font-size: 14pt;
	font-weight: bold;
	line-height: normal;
	padding-top: 0px;
	background-repeat: repeat-x;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td ul li {
	font-size: 95%;
	line-height: normal;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td hr {
	color: #999;
}
#outerWrapper #contentWrapper #content table td {
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #C00;
	padding-top: 5px;
}
#small     {
	margin-right: 10px;
}

#outerWrapper #contentWrapper #rightColumn1 table tr td a img {
	padding-top: 3px;
}

#outerWrapper #contentWrapper #content table tr td table {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#swatchcolors {
	border: 0;
	height: 100px;
	width: 150px;
	overflow: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
}

#swatchcolors ul {
	list-style-position: outside;
}

#swatchcolors li {
	list-style-type: none;
	height: 24px;
	margin-bottom: 0px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 6px;
	padding-left: 30px;
	text-align: left;
	list-style-position: outside;
	margin-left: -20px;
	line-height: 11px;
}

#swatchcolors li p {
display: inline;
text-transform: uppercase;
font-weight:bold;
}

#outerWrapper #contentWrapper #content h1 .imgLogo {
	float: right;
	padding: 10px;
}
#headerBlog  {
	height: auto;
	width: 980px;
	margin: 0px;
	padding: 0px;
}
#footerBLog  {
	margin: 10px 10px 10px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border: 1px solid #999;
	text-align: center;
}

#outerWrapper #contentWrapper #content #imageWrapper {
	float: left;
	width: 494px;
}
#outerWrapper    #contentWrapper #content #imageWrapper #f3lt{
	float: left;
	width: 280px;
}
#outerWrapper    #contentWrapper #content #imageWrapper #f3rt{
	float: right;
	width: 200px;
}

#outerWrapper #contentWrapper #contentSearch {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 232px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: inherit;
}

