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: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #FFF;
}
a {
	text-decoration: none;
	color: #0055A5;
}
a:hover {
	color: #06F;
}
a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
h2 {
	margin: 0px;
	font-weight: normal;
	color: #333;
	font-size: 1.2em;
}
h3 {
	font-size: 1em;
	font-weight: normal;
	color: #000;
	display: inline;
	margin: 0px;
	padding: 0px;
}
.layout #container {
	width: 780px;  /* 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: left; /* this overrides the text-align: center on the body element. */
} 
.layout #mainContent {
	float: left;
	width: 470px;
}
.layout #mainContent #leftCol {
	float: left;
	width: 200px;
	text-align: center;
}
.layout #mainContent #leftCol p {
	margin-top: 0px;
}
.layout #mainContent #rightCol {
	float: right;
	width: 250px;
	margin-right: 10px;
}
.layout #mainContent #rightCol p {
	margin-top: 0px;
}
.logoFloat {
}
.logoFloat a {
	font-size: .9em;
	font-style: italic;
}
.logoFloat  img {
	float: left;
}
.logoFloat .content {
	overflow: auto;
	height: 70px;
}
#rightCol p {
	font-size: 1em;
}
.layout #header {
	height: 80px;
	padding-top: 0px;
	padding-bottom: 0;
	padding-left: 42px;
} 
.layout #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 */
}
.layout #sidebar1 {
	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: 0px;
}

.layout #contentWrapper{
	float: right;
	width: 630px;
}
.layout #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px; /* padding keeps the content of the div away from the edges */
	display: inline;
}
#sidebar2 #commercialAddToCart {
	font-size: 0.8em;
	text-align: center;
	padding: 6px;
	border: 1px solid #CCC;
	margin-top: 8px;
	margin-right: auto;
	margin-left: auto;
}
#addToCartBtn #commercialPrice {
	display: block;
	height: 30px;
	line-height: 30px;
	vertical-align: middle;
	font-size: 1.6em;
	font-weight: bold;
	color: #0052A1;
}
#addToCartBtn input {
	vertical-align: middle;
}
.layout #footer {
	line-height: 18px;
	vertical-align: middle;
	text-align: center;
	font-size: 0.9em;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.layout #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.layout #footer span  {
	font-size: 0.9em;
	color: #999;
}
.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;
}
.floatContainer {
	float: left;
	width: 470px;
	position: relative;
	font-size: 1em;
}
.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;
}
#header #links  {
	text-align: center;
	font-size: .8em;
	line-height: 18px;
	position: relative;
	top: 40px;
	float: right;
	width: 300px;
}
#header #links li {
	display: inline;
	vertical-align: middle;
	padding-right: 6px;
	padding-left: 6px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999;
	height: 18px;
}
#header #links ul .end {
	border-right-style: none;
}
#sidebar1 #tagline {
	text-align: center;
	letter-spacing: .2em;
	margin-top: 6px;
	font-size: .8em;
}
#sidebar1 #mainLinks {
	font-weight: bold;
	padding-right: 12px;
	text-align: right;
	padding-top: 24px;
	line-height: 1.3em;
}
#sidebar1 #links {
	text-align: right;
	padding-right: 12px;
	padding-top: 18px;
	line-height: 1.2em;
}
#sidebar1 .heading {
	font-size: 1.3em;
	color: #CCC;
}
#sidebar1 #links #seeAll {
	font-style: italic;
	display: inline;
	line-height: 2em;
}
#titleBar {
	background-image: url(images/global/titlebar-background.gif);
	background-repeat: no-repeat;
	height: 34px;
	width: 630px;
}
#titleBar h1 {
	font-weight: bold;
	color: #FFF;
	margin: 0px;
	padding: 0px;
	font-size: 1.1em;
	text-align: center;
	line-height: 34px;
}
.breadcrumbs {
	background-image: url(images/global/titlebar-background.gif);
	background-repeat: no-repeat;
	height: 34px;
	width: 630px;
	color: #4F7CB4;
	line-height: 34px;
	padding-left: 0px;
}
.breadcrumbs a {
	color: #9BACE7;
}
.breadcrumbs ul {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
	margin: 0px;
	height: 34px;
	line-height: 34px;
	font-size: 10px;
}
.breadcrumbs ul li {
	padding-right: 22px;
	padding-left: 2px;
	background-image: url(images/global/navbar_divider_2.gif);
	background-repeat: no-repeat;
	background-position: right;
	height: 34px;
	line-height: 34px;
	float: left;
	list-style-type: none;
}
.breadcrumbs #current   {
	padding-right: 2px;
	padding-left: 2px;
	background-repeat: no-repeat;
	height: 34px;
	line-height: 34px;
	float: left;
	list-style-type: none;
	background-image: none;
}
#productBox {
	background-color: #86AAE8;
	height: 120px;
	position: relative;
}
#quoteBox {
	background-image: url(images/global/quoteBoxBG.jpg);
	background-repeat: repeat-x;
	height: 50px;
	width: 160px;
	position: relative;
	text-align: center;
	color: #959A39;
	padding-top: 70px;
	font-size: 0.9em;
}
#quoteBox #quoteBtn {
	position: absolute;
	top: 24px;
	left: 36px;
	width: 90px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
	font-weight: bold;
}
#productName {
	position: absolute;
	bottom: 5px;
	left: 210px;
	letter-spacing: 0.1em;
	color: #CAE0FA;
}
#productName h1 {
	color: #FFF;
	padding: 0px;
	margin: 0px;
	display: inline;
}
/* CSS Document */

#brochureBox {
	background-color: #b9cff0;
	text-align: center;
	height: 100px;
	font-size: 0.9em;
	padding-top: 20px;
	padding-right: 20px;
	padding-left: 20px;
}
.tabContainer {
	height: 40px;
	color: #999999;
	font-size: 11px;
	margin-bottom: 20px;
	float: left;
	width: 470px;
	background-image: url(images/global/tab-bg.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}
.tabContainer a {
	display:block;
	color: #666;
	padding-right: 15px;
	padding-left: 15px;
    }
.tabContainer a:hover {
	color: #333;
    }
.tabContainer ul {
    margin:0;
    padding:0;
    list-style:none;
    }
.tabContainer li {
	float:left;
	margin:0;
	padding:0;
	list-style-type: none;
	line-height: 40px;
    }
.tabContainer #current {
	background-color: #FFF;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-image: url(images/global/tab-current.gif);
    }
.tabContainer #current a {
    }
.tabContainer #current a:hover {
	color: #666;
}
img {
	margin: 0px;
	padding: 0px;
}
.infoLinks {
	color: #666666;
	width: 140px;
	margin-left: 10px;
	line-height: 18px;
	margin-top: 20px;
}
.infoLinks a {
	color: #999999;
}
.infoLinks a:hover {
	color: #666666;
}
.leftAlign {
	text-align: left;
}
.centerAlign {
	text-align: center;
}
.SwitchContainer {
	height: 20px;
	width: 180px;
	margin: 20px;
}
.Switch2RightOff {
	line-height: 20px;
	background-image: url(images/global/switch2_right_off.gif);
	text-align: center;
	float: right;
	height: 20px;
	width: 90px;
	font-weight: bold;
	color: #999999;
}
.Switch2LeftOn {
	font-size: 12px;
	color: #3366CC;
	text-align: center;
	float: left;
	height: 20px;
	width: 90px;
	line-height: 20px;
	background-image: url(images/global/switch2_left_on.gif);
	font-weight: bold;
}
.Switch2LeftOff {
	font-size: 12px;
	color: #3366CC;
	text-align: center;
	float: left;
	height: 20px;
	width: 90px;
	line-height: 20px;
	background-image: url(images/global/switch2_left_off.gif);
	font-weight: bold;
}
.Switch2RightOn {
	line-height: 20px;
	background-image: url(images/global/switch2_right_on.gif);
	text-align: center;
	float: right;
	height: 20px;
	width: 90px;
	font-weight: bold;
	color: #3366CC;
}
.whiteBtnContainer {
	height: 40px;
	width: 420px;
	background-image: url(images/global/whiteBtnBarBG.gif);
	text-align: center;
	font-size: 10px;
	color: #CCC;
	margin: auto;
}
.whiteBtnOn {
	padding-right: 8px;
	padding-left: 8px;
	display: inline;
	background-image: url(images/global/whiteBtnArrowBG.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 40px;
	line-height: 40px;
	vertical-align: text-top;
	padding-bottom: 4px;
	color: #999;
}
.whiteBtnOff a {
	color: #CCC;
}
.whiteBtnOff a:hover {
	color: #666;
}
.whiteBtnOff {
	display: inline;
	padding-right: 8px;
	padding-left: 8px;
	line-height: 40px;
	vertical-align: text-top;
}
.bikesparked {
	border: 1px solid #CCCCCC;
	width: 50%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.price {
	color: #0055A5;
	font-size: 1.7em;
	font-weight: bold;
}
.freeLayoutContainer {
	height: 180px;
	width: 180px;
	background-image: url(images/products/ultra_space_saver/free_layout_bg.gif);
	background-repeat: repeat-x;
	font-size: 0.9em;
	padding: 10px;
}
#aboutRightCol {
	float: right;
	width: 400px;
	margin-top: 30px;
}
#aboutLeftCol {
	float: left;
	width: 200px;
	text-align: center;
	margin-top: 30px;
}
#aboutTabContainer {
	background-image: url(images/global/tab-bg.gif);
	background-repeat: repeat-x;
	width: 630px;
	height: 40px;
	background-position: bottom;
}
.quotebox {
	text-align: left;
	font-size: 0.9em;
	background-image: url(images/global/quote-in.gif);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 16px;
	padding-right: 24px;
	padding-bottom: 16px;
	padding-left: 24px;
	color: #990;
	margin-top: 4em;
}
.quotebox p {
	background-image: url(images/global/quote-out.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	padding-bottom: 12px;
}
.attribute {
	font-style: italic;
	text-align: right;
	font-size: 0.9em;
	color: #666;
}
.logoOffset {
	height: 70px;
	margin-left: -110px;
	float: left;
	padding-right: 12px;
	width: 90px;
}
#singleColumn {
	padding: 20px;
}

