@charset "UTF-8";

/*-------------Basic Structure-------------*/

body  {
	
	background: #9fb0b7 url(images/bg_body.gif) repeat;
	margin: 15px 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 */
	
}
#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; /* 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. */
} 
#header { 
	background: #FFFFFF;
	/*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. */
} 
/*#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 
}*/
#content{
	background: #e4e4d7 url(images/bg_content.gif) bottom left repeat-y;
	
}
#contentinner1{
	
	background: url(images/bg_chair.jpg) bottom left no-repeat;
	padding: 15px 0 15px 15px;
	width: 765px;
	/*background-image: url(images/bg_content3.gif);
	background-position: bottom left;
	background-repeat: no-repeat;
	background-color: transparent;
	padding: 15px 0 15px 15px;
	background: url(images/bg_content2.gif) top left no-repeat;*/
}
#contentinner2{
/*	background: url(images/bg_content3.gif) 0% 100% no-repeat;
	*/
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 320px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
#mainContent {
	float: left;
	width: 410px;
	padding: 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0 0 130px 0;
} 
#footer {
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#607c8f url(images/bg_footer.gif) top left no-repeat;
	border-top: 1px solid #000000;
	width: 760px;
} 
#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;
}
.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;
}

/*-------------End Basic Structure-------------*/

/*-------------Links-------------*/

a{
	color: #9c0101;
}

/*-------------EndLinks-------------*/

/*-------------Text Styles-------------*/

body{
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 70%;
	color: #404040;
}
p{
	margin: .5em 0;
	font-size: 1em;
	line-height: 1.5em;
}
h1{
	margin: .5em 0;
	padding: 0;
	font-size: 2.5em;
	font-weight: normal;
}
h1#logo{
	float: left;
	font-size: 1px;
	text-indent: -9000px;
	margin: 0;
}
h2{
	margin: .5em 0;
	font-size: 2em;
	font-weight: normal;
}
h2#call{
	display: block;
	float: right;
	height: 74px;
	width: 400px;
	background: url(images/callforquote.jpg) 0 0 no-repeat;
	text-indent: -9000px;
	margin: 0;	
}
h3{
	margin: .5em 0;
	font-size: 1.5em;
	font-weight: bold;
}
#footer p{
	color: #d5d5d5;
	text-align: center;
}
cite{
	display: block;
	font-weight: bold;
	font-style: italic;
	margin: -5px 20px 10px 20px;
}
blockquote{
	margin: 0 20px;
	padding: 5px 0;
}
address{
	margin: 1em 0;
	font-size: 1em;
	line-height: 1.5em;
	font-style: normal;
}
/*-------------End Text Styles-------------*/

/*-------------Navigation-------------*/

#nav {
	bottom:0;
	background: #607c8f;
	width:780px;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
#nav ul {
	margin:0;
	padding:0;
	list-style:none;
	position: relative;	
}
#nav li {
	font-size:1em;
	float:left;
	margin:0;
	padding:0;
	background-image:none;
	line-height:normal;
	text-indent:0;
	text-transform: uppercase;
	font-weight: bold;
}
#nav a{
	display:block;
	padding:4px 16px 3px 16px;
	margin: 0;
	color:#fff;
	text-decoration:none;
	white-space:nowrap;	
}

/* Following rule allows entire region of link to to be 
   clickable in IE/Win. Holly Hack explained here:
   http://www.positioniseverything.net/explorer/escape-floats.html */
* html #nav a {
	width:1%;
}
#nav #current strong, #nav #current a {
	background-repeat:no-repeat;
}
#nav a:hover{
	background: #526a7a;
}  
#nav #current a:hover, #nav #current{
	background: #3a4a56;
}
#nav a strong, #nav #current a strong {
	background:none;
	padding:0;
	border:none;
}
#subnav {
	bottom:0;
	background: #d1d1a5;
	width:780px;
	border-bottom: 1px solid #000;
}
#subnav ul {
	margin:0;
	padding:0;
	list-style:none;
	position: relative;	
}
#subnav li {
	font-size:1em;
	float:left;
	margin:0;
	padding:0;
	background-image:none;
	line-height:normal;
	text-indent:0;
	/*text-transform: uppercase;*/
}
#subnav a{
	display:block;
	padding:4px 16px 3px 16px;
	margin: 0;
	color:#333;
	text-decoration:none;
	white-space:nowrap;
}

/* Following rule allows entire region of link to to be 
   clickable in IE/Win. Holly Hack explained here:
   http://www.positioniseverything.net/explorer/escape-floats.html */
* html #subnav a {
	width:1%;
}
#subnav #current strong, #subnav #current a {
	background-repeat:no-repeat;
}
#subnav a:hover{
	background: #b3b390;
}  
#subnav #current a:hover, #subnav #current{
	background: #99997c;
}
#subnav a strong, #subnav #current a strong {
	background:none;
	padding:0;
	border:none;
}
#subnav #products{
	width: 780px;
	background: #d1d1a5;
	color: #333333;
}

/*-------------End Navigation-------------*/



/*-------------Side Thumbs-------------*/

ul#sidethumbs{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul#sidethumbs li{
	display: inline;
	float: left;
	margin: 0 13px 15px 0;
	padding: 0;
}
ul#sidethumbs li span{
	display: block;
	width: 140px;
}
ul#sidethumbs li a{
	color: #404141;
	text-decoration: none;
}
ul#sidethumbs li a img{
	border: 1px solid #666666;
}
ul#sidethumbs li a:hover{
	color: #9c0101;
}
ul#sidethumbs li a:hover img{
	border: 1px solid #9c0101;
}


/*-------------Side Thumbs-------------*/

/*-------------Misc. Styles-------------*/

.pad1{
	padding: 10px 0;
}
.consultationbg, .spaceplanningbg, .productsalesbg, .deliverybg, .installationbg, .financingbg{
	/*padding-left: 150px;*/
}
.aboutitem{
	clear: both;
	margin: 10px 0;
	padding: 10px 0;
	border-top:1px solid #CCCCCC;
}
.aboutitem ul{
	margin: 0 0 0 20px;
	padding: 0;
}
.aboutitem li{
	list-style-type: disc;
	list-style-position: outside;
}
.aboutiteminner{
	margin-left: 185px;
}
.aboutimage{
	float: left;
	margin-bottom: 10px;
}


/*-------------End Misc. Styles-------------*/
