/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
nav ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
/* tables still need cellspacing="0" in the markup */
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
	display:block;
	height:1px;
	border:0;
	border-top:1px solid #ccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}
/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body {

	font:13px/1.231 sans-serif;
*font-size:small;
} /* hack retained to preserve specificity */
select, input, textarea, button {
	font:99% sans-serif;
}
/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp {
	font-family: monospace, sans-serif;
}
/* 
 * minimal base styles 
 */


body, select, input, textarea {
	/* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  Font-Family: "Trebuchet MS", Helvetica, sans-serif;
	color: #444;/* set your base font here, to apply evenly */
 
}
/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
/* always force a scrollbar in non-IE */ 
html {
	overflow-y: scroll;
}
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active {
	outline: none;
}
a, a:active, a:visited { /* color: #607890; */
}
a:hover {
	color: #036;
}
ul, ol {
	margin-left: 1.8em;
}
ol {
	list-style-type: decimal;
}
/* Remove margins for navigation lists */
nav ul, nav li {
	margin: 0;
}
small {
	font-size: 85%;
}
strong, th {
	font-weight: bold;
}
td, td img {
	vertical-align: top;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
pre {
	padding: 15px;
	/* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
	white-space: pre-wrap; /* CSS 2.1 */
	white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
	word-wrap: break-word; /* IE */
}
textarea {
	overflow: auto;
} /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend {
	margin-left: -7px;
} /* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] {
	vertical-align: text-bottom;
}
input[type="checkbox"] {
	vertical-align: bottom;
}
.ie7 input[type="checkbox"] {
	vertical-align: baseline;
}
.ie6 input {
	vertical-align: text-bottom;
}
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button {
	cursor: pointer;
}
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea {
	margin: 0;
}

/* colors for form validity */
input:valid, textarea:valid {
}
input:invalid, textarea:invalid {
 border-radius: 1px;
 -moz-box-shadow: 0px 0px 5px red;
 -webkit-box-shadow: 0px 0px 5px red;
 box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, .no-boxshadow textarea:invalid {
background-color: #f0dddd;
}


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection {
background: #29EC7E;
color:#000;
text-shadow: none;
}
::selection {
	background:#29EC7E;
	color:#000;
	text-shadow: none;
}
/*  j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #FF5E99;
}
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {
	width: auto;
	overflow: visible;
}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {
	-ms-interpolation-mode: bicubic;
}
/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir {
	display: block;
	text-indent: -999em;
	overflow: hidden;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden {
	display: none;
	visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
	visibility: hidden;
}
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
.clearfix:after {
	clear: both;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix {
	zoom: 1;
}
.clr {
	display: block;
	clear: both;
	height: 0px;
	line-height:0%;
	float: none;
}
/* Primary Styles
    Author: Andrew Nickerson
 */



html {
/*background-image: url(../images/htmlBg.gif);
	background-position: 0 400px;
	background-repeat: repeat-x;*/

}
body {
	background: #fff;
	
}
/* General Text Editing */

a {
	color: #11934a;
	text-decoration: none;
}
/* General Layout Editing */
#container {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
#header {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}
#main {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}



#logo {
	position: absolute;
	left: 315px;
	top:-45px;
}



#mainimage {
	position: relative;
	z-index: 5;
	margin-top: -37px;
	display: block;
	
/*	height: 489px;
	background-image: url(../images/topimg.jpg);
*/	

	height: 487px;
	background-image: url('../slideshow/images/slideBg.jpg');
	background-position: center 10px;
	background-repeat: no-repeat;
}
#mainimage .btn {
	top: 400px;
	background-image: url(../images/btn.png);
	float: left;
	padding: 4px 16px;
/* 	position: absolute; */
}
#mainimage .btn a {
	color: white;
	font-size: 9pt;
	text-transform: uppercase;
	font-style: italic;
	text-decoration: none;
}
#mainimage .btn a:hover {
	color: #11934a;
}



#slideshowButtons{
    bottom: 53px;
    display: block;
    overflow: hidden;
    position: absolute;
    right: 67px;
    z-index: 20;
}
/*
	left: 624px;
	padding:7px 12px;
*/

#mainimage .btn2 {
/*
	left:794px;
	padding:7px 15px;
*/
}


#main {
	margin-top: 30px;
	margin-bottom: 20px;
}


#main #left-col {
	float: left;
	width: 40%;
}


#main #left-col p {
	line-height: 19px;
}
#council-logo {
	display: block;
	width: 145px;
	margin: 20px auto;
}



body.homepage #main #left-col {
	float: left;
	width: 48% !important;
}

body.homepage #main #right-col {
width: 470px !important;
	float: left;

}

#main #right-col {
/*	float: right;
	width: 58%;
*/	
	padding-left: 10px;
	float: right;
width: 660px !important;
}

	


#main h1 {
	background-image: url("../images/headerbar.png");
	background-repeat: no-repeat;
	color: white;
	font-family: arvo;
	font-size: 17pt;
	font-weight: 100;
	left: -15px;
	margin-bottom: 20px;
	margin-top: -7px;
	padding: 17px 15px 15px 40px;
	position: relative;
	text-transform: uppercase;
	width: 100%;
}
#main h2 {
	margin: 10px 0;
	font-family: arvo;
	font-size: 20pt;
	font-weight: bold;
	line-height: 24px;
	position: relative;
	width: 100%;
	color: black;
}
#main h3 {
	font-family: arvo;
	font-size: 10pt;
	font-weight: bold;
	position: relative;
	width: 100%;
	margin-bottom: 5px;
}


body.featured-products-body #main #left-col, 
body.new-products-body #main #left-col {
	width: 490px !important;
	float:left;
	padding: 0px !important;
	display: block;
}



 
body.featured-products-body #main #right-col ,
body.new-products-body #main #right-col {
	width: 490px !important;
	float: right;
	padding: 0px !important;
	display: block;

}



body.featured-products-body #main #left-col .featured-product, 
body.new-products-body #main #left-col .featured-product,
body.featured-products-body #main #right-col .featured-product ,
body.new-products-body #main #right-col .featured-product {
	margin-left: 0px;
}




.featured-product {
	margin-left: 15px;
	border-bottom: 1px solid #CCC;
	width: 480px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
	min-height:90px;
}

.new-product {
	background-image: url(../images/new.png);
	background-repeat: no-repeat;
	display: block;
	width: 95px;
	height: 30px;
	position: absolute;
	top: 10px;
	left: -7px;
}
.feat-product {
	background-image: url(../images/featured.png);
	background-repeat: no-repeat;
	display: block;
	width: 120px;
	height: 32px;
	position: absolute;
	top: 10px;
	left: -7px;
}
.disc-product {
	background-image: url(../images/discounted.png);
	background-repeat: no-repeat;
	display: block;
	width: 130px;
	height: 32px;
	position: absolute;
	top: 10px;
	left: -7px;
}
.featured-product .more {
	font-weight: bold;
}
.featured-product .featured-img {
	float: left;
	height: 80px;
	margin-right: 10px;
	overflow:hidden;
	width: 240px;
}
.featured-product .info {
	float:right;
	width: 42%;
}
.featured-product .info p {
	font-size: 8pt;
	line-height: 13px;
	margin: 0 0 0px 0 !important;
}
.featured-product .one-line {
	padding-top: 0px;
	margin: 0 0 0px 0 !important;
}
#main .callout {
	display: block;
	margin: 20px 0px 10px;
	font-size: 14pt;
	color: #8e8e8e;
	font-style: italic;
}


 #footer {
	width: 950px;
	margin: 0 auto;
	position: relative;
		background-image: url(../images/footerbar.jpg);
	background-repeat: repeat-x;

}

#footer-wrap {
	height: 90px;
	min-width: 1000px;
}
#footer {
	bottom: -125px;
	color: white;
	left: 0px;
	margin-top: -50px;
	padding: 25px;
	position: absolute;
}
#footerlogo {
	float: left;
	margin-right: 20px;
}
#phone-number {
	position: relative;
	top: 3px;
	float: left;
	text-align: right;
	line-height: 12pt;
}
#footer #phone-number .super-bold {
	font-size: 18pt;
	font-weight: bold;
}
#legal {
	text-decoration: none;
	font-size: 8pt;
	text-align: right;
	float: right;
	width: 340px;
}
#legal #logo-tire {
	position: relative;
	top: -8px;
	float: right;
	margin-left: 20px;
}
#legal .text a {
	margin-left: 15px;
	color: #11934A;
}
#legal .text #credits {
	color: #11934A;
}
#legal .text a:hover {
	color: #fff;
}
/* Navigation Layout */

#header {
	position: relative;
	z-index: 10;
}
#header ul {
	margin: 0;
	font-family: Arvo, Trebutche MS, Helvetica, sanserif;
	list-style: none outside none;
}
#topnav ul li {
	float: left;
	padding: 0px 10px;
}
#topnav ul a {
	text-transform: uppercase;
	text-decoration: none;
}
#topnav .nav-little, #header .nav-big {
	padding: 0 30px;
	width: 920px;
}


#topnav .nav-little {
	height: 20px;
	display: block;
	margin-top: 45px;
}
#topnav .nav-little .level-2 {
	display: none;
}
#topnav .nav-little li a {
	color: black;
	font-size: 8pt;
}
#topnav .nav-big {
	height: 80px;
}
#topnav .nav-big {
	padding-top: 5px;
	height: 70px;
	font-size: 10pt;
	background-image: url(../images/navbar.png);
	width: 940px;
	background-repeat: no-repeat;
}
#topnav .nav-big li {
	height: 22px;
	padding: 22px 0 0;
	position: relative;
}
#topnav .nav-big ul li a {
    color: white;
    font-size: 9pt;
    padding: 28px 10px;
}
#topnav .nav-left {
	float: left;
}
#topnav .nav-left li {
}
#topnav .nav-right {
	float: right;
}
#topnav ul.1st-level {
	position: relative;
}
#topnav .level-1 {
	top: 40px;
}
#topnav .level-1 .level-2 {
	display: none;
	background-color: black;
	left: 0px;
	position: absolute;
	top: 55px;
	width: 280px;
	z-index: 2;
	background-image: url(../images/dropdownbg-1.jpg);
	background-repeat: repeat-y;
}
#topnav .nav-big .level-1 .level-2 li {
	padding: 10px 15px 10px;
	display: block;
	
/*	height: inherit;
*/	

position: relative;
	clear: left;
}
#topnav .nav-big .level-1 .level-2 li:hover {
	background-color:#11934a;
}
#topnav .nav-big .level-1 .level-2 li.first {
	margin-top: 10px;
}
#topnav .nav-big .level-1 .level-2 .nav-highlight {
	background-color: #11934a;
	height: 53px;
	width: 100%;
	display: block;
 margin-bottom:
}
#topnav .nav-big .level-1 .level-2 .nav-highlight-short {
	background-color: #11934a;
	
/*	height: 37px;
*/	

width: 100%;
	display: block;
 margin-bottom:
}


#topnav .nav-big .level-1 .level-2 li.last {
	margin-bottom: 10px;
}
#topnav .nav-big .level-1 .level-2 li a {
	font-size: 10pt;
	width: 250px;
	display: block;
	padding: 0;
	font-size: 10pt;
}
#topnav .nav-big .level-1 .level-2 .level-3 {
	display: none;
	background-image: url(../images/dropdownbg-2.jpg);
	background-repeat: repeat-y;
	position: absolute;
	left:280px;
	background-color: #11934A;
	width: 250px;
	top: 0;
}
#topnav .nav-big .level-1 .level-2 .level-3 li a {
	width: 220px;
	font-size: 8pt;
}
/* HOVER BUSINESS */


#topnav .nav-little a:hover {
	color: #11934A;
}
#topnav .level-1 li:hover {
	background-color: #ab1317;
}
#topnav .level-1 li.nav-products:hover a {
	background-image: url(../images/arrow-products.png);
	background-repeat: no-repeat;
	background-position: center 45px;
	overflow: visible;
}
#topnav .level-1 li.nav-tech:hover a {
	background-image: url(../images/arrow-tech.png);
	background-repeat: no-repeat;
	background-position: center 45px;
}
#topnav .level-1 li.nav-install:hover a {
	background-image: url(../images/arrow-install.png);
	background-repeat: no-repeat;
	background-position: center 45px;
}
#topnav .level-1 li.nav-faq:hover a {
	background-image: url(../images/arrow-request.png);
	background-repeat: no-repeat;
	background-position: center 46px;
}
#topnav .level-1 li.nav-request:hover a {
	background-image: url(../images/arrow-request.png);
	background-repeat: no-repeat;
	background-position: center 45px;
}
#topnav .level-1 li.nav-contact:hover a {
	background-image: url(../images/arrow-contact.png);
	background-repeat: no-repeat;
	background-position: center 45px;
}
#topnav .level-1 li:hover ul.level-2 {
	display: block;
}
#topnav .nav-big .level-1 .level-2 li:hover ul.level-3 {
	display: block;
}



/* Rules for inside pages */


.insidepage #main {
width: 1000px;


}







.insidepage #mainimage {
	background-image: url(../images/inside-topimg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	height: 220px;
	margin-bottom: -20px;
}

.insidepage #mainimage h1 {
	display: inline;
	float: right;
	font-size: 45pt;
	position: absolute;
	right: 90px;
	text-align: right;
	text-transform: uppercase;
	top: 115px;
	font-family: arvo;
	color: #11934a;
}
.insidepage #right-col .stats {
	margin-top: 15px;
	font-size:14px !important;
	color: #8e8e8e;
	width: 42%;
	float: left;
	line-height: 15px;
	font-style: italic;
}
.editableDesc {
	clear: left;
	padding-top: 10px;
}
a.pdfLink, a.wordLink, a.plainTextLink {
	font-size: 110%;
	text-decoration: none;
	padding: 10px 0 10px 40px;
	cursor:pointer;
	display: block;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin: 0 0 0 10px 0;
}
a.pdfLink {
	background-image: url(../images/pdf.png);
}
a.wordLink {
	background-image: url(../images/word.jpg);
}
a.plainTextLink {
	background-image: url(../images/plainText.jpg);
	padding: 10px 0 10px 50px;
}
a.quoteLink {
	color: white;
	font-size: 9pt;
	text-transform: uppercase;
	font-style: italic;
	text-decoration: none;
	height: 12px;
	width: 166px;
	padding: 8px 10px;
	display:block;
	cursor:pointer;
	background-image: url(../images/btn.png);
	background-position: 0 0;
	background-repeat: no-repeat;
}
a.bigLink {
	color: white;
	font-size: 9pt;
	text-transform: uppercase;
	font-style: italic;
	text-decoration: none;
	height: 12px;
	width: 250px;
	padding: 12px 10px 12px 30px;
	display:block;
	cursor:pointer;
	background-image: url(../images/btnBig.jpg);
	background-position: 0 0;
	background-repeat: no-repeat;
}
a.quoteLink:hover {
	color: #11934a;
}
.insidepage #main h3 {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #8e8e8e;
	font-size: 12pt;
	font-weight: bold;
	font-style: italic;
	margin-top: 5px;
}
.insidepage #main #right-col p {
	margin: 15px 0;
}
/* Correction for new product and discounted product page */
.insidepage #main #right-col .featured-product p {
	margin: 0
}
.two-col #main #left-col {
	width: 48%;
}
.two-col #main #right-col {
	width: 48%;
}
#credits {
	display: block;
	position: relative;
	top: 15px;
}
#legal #credits a {
	margin: 0;
}
/* Generic Rules for Inside Page Sub-Navigation  */
.sidebar #main #left-col {
/*	width: 370px;
*/	
width: 310px;
}


.sidebar #right-col {
	width: 60% !important;
}



.insidepage #left-col #sidebar-nav {
	background-color: #11934a;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-image: url(../images/sidebarTop.gif);
	background-position: -1px 0;
	background-repeat: no-repeat;
	padding: 10px 15px 0 15px;
}
.insidepage #left-col #sidebar-nav #sidebarBottom {
	background-image: url(../images/sidebarBottom.gif);
	background-position: -1px bottom;
	background-repeat: no-repeat;
	background-color:white;
	padding: 10px 15px;
	position: relative;
	left: -15px;
	top: 10px;
/*	width: 390px;
*/	
width: 280px !important;

}
/*.insidepage #left-col #sidebar-nav{
	background-color: #11934a;
	-moz-border-radius: 10px;
	border-radius: 10px; 
	padding: 10px 15px;
	
	

}
*/





.insidepage #left-col #sidebar-nav ul {
	list-style: none outside none;
	margin: 0;
	position: relative;
	top: -3px;
}
.insidepage #left-col #sidebar-nav ul li a {
	text-decoration: none;
	color:  white;
}
.insidepage #left-col #sidebar-nav .level-1 li a {
	visibility: hidden;
}
.insidepage #left-col #sidebar-nav .level-2 li a {
	visibility: visible;
	font-family: arvo;
/*	font-size: 13pt;
*/	font-size: 15px !important;

	color: white;
}
.insidepage #left-col #sidebar-nav .level-3 {
	margin: 10px 0 10px 0;
}
.insidepage #left-col #sidebar-nav .level-3 li a {
	padding-left: 0px;
	
/*	font-size: 12pt;*/
	font-size: 13px !important;
	
	
	color: #29ec7e;
}
.insidepage #left-col #sidebar-nav .level-3 li a:hover {
	color: #d6f40d;
/*	background-image: url(../images/arrow.png);
	background-position: 0 5px;
	background-repeat: no-repeat;
*/}
.about #left-col #sidebar-nav .level-2 li a:hover {
	color: #d6f40d;
/*	background-image: url(../images/arrow.png);
	background-position: 0px 4px;
	background-repeat: no-repeat;
	padding: 0 0 0 10px;
*/
}
.tech #left-col #sidebar-nav .level-2 li a:hover {
	color: #d6f40d;
/*	background-image: url(../images/arrow.png);
	background-position: 0px 4px;
	background-repeat: no-repeat;
	padding: 0 0 0 10px;
*/}






/* Classes for Various Swatch Colours for product availability */

#colors {
	padding-top: 0px;
	position:relative;
}
#colors span {
	margin-bottom: 5px;
	width: 32%;
	float: left;
	font-size: 7pt;
	color: #000;
	text-transform: uppercase;
	color: #3e3e3e;
}
#colors .swatch {
	width: 17px;
	height: 14px;
	display: block;
	float: left;
	margin-right: 5px;
}
#colors .brown .swatch {
	background-color:#7e5145;
}
#colors .redwood .swatch {
	background-color:#7a4642;
}
#colors .grey .swatch {
	background-color:#6c7077;
}
#colors .green .swatch {
	background-color:#45634c;
}
#colors .terra-cotta .swatch {
	background-color:#972000;
}
#colors .black .swatch {
	background-color:#444041;
}
#colors .brown .swatch {
	background-color:#7e5145;
}









/* new cms color */

.colors_new {
	padding-top: 0px;
	position:relative;
}
.colors_new span {
	margin-bottom: 5px;
	width: 32%;
	float: left;
	font-size: 7pt;
	color: #000;
	text-transform: uppercase;
	color: #3e3e3e;
}
.colors_new p {
clear: left;
margin:2px 0;
}

.colors_new img.swatch_new {
	width: 24px;
	height: 24px;
	display: block;
margin:2px 5px 2 0;
}


.largeSwatch_new {
	position: absolute;
	top: -120px;
	height: 100px;
	width: 100px;
}


/* end of cms colors */




/* new cms textures */


.colors_newt {
	padding-top: 0px;
	position:relative;
}
.colors_newt span {
	margin-bottom: 5px;
	width: 32%;
	float: left;
	font-size: 7pt;
	color: #000;
	text-transform: uppercase;
	color: #3e3e3e;
}
.colors_newt p {
clear: left;
margin:2px 0;
}

.colors_newt img.swatch_newt {
	width: 24px;
	height: 24px;
	display: block;
margin:2px 5px 2 0;
}


.largeSwatch_newt {
	position: absolute;
	top: -120px;
	height: 100px;
	width: 100px;
}


/* end of cms textures */



/* Hiding Unecessary nav based on Body Class */

.insidepage #left-col #sidebar-nav .nav-little {
	display: none;
}
.products #left-col #sidebar-nav .nav-tech, .products #left-col #sidebar-nav .nav-install, .products #left-col #sidebar-nav .nav-faq, .products #left-col #sidebar-nav .nav-request, .products #left-col #sidebar-nav .nav-contact {
	display: none;
}
.tech #left-col #sidebar-nav .nav-products, .tech #left-col #sidebar-nav .nav-install, .tech #left-col #sidebar-nav .nav-faq, .tech #left-col #sidebar-nav .nav-request, .tech #left-col #sidebar-nav .nav-contact {
	display: none;
}
.install #left-col #sidebar-nav .nav-products, .install #left-col #sidebar-nav .nav-tech, .install #left-col #sidebar-nav .nav-faq, .install #left-col #sidebar-nav .nav-request, .install #left-col #sidebar-nav .nav-contact {
	display: none;
}
.about #sidebar-nav .nav-big {
	display: none;
}
.about #left-col #sidebar-nav .nav-little {
	display: block;
}
.about #left-col #sidebar-nav .nav-little {
	visibility: hidden;
}
.about #left-col #sidebar-nav .nav-little .nav-home, .about #left-col #sidebar-nav .nav-little .nav-discounted, .about #left-col #sidebar-nav .nav-little .nav-new, .about #left-col #sidebar-nav .nav-little .nav-press {
	display: none;
}
.about #left-col #sidebar-nav .nav-little level-2 {
	visibility: visible;
}
/* Stuff For the Slideshow */
	#slideshow {
	width: 355px;
	float: right;
	padding-left: 10px;
}
#slideshow-image {
	height: 270px;
	position: relative;
}
.medium img {
	width: 355px;
	height: 255px;
}
.fullsize {
	z-index: 1;
	display: none;
}
.fullsize img {
	border: 10px solid white;
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);
}
.trigger:hover .fullsize {
	display: block;
	border: 2px solid #000;
	position: absolute;
	left: -400px;
	top: -100px;
}
#slideshow-image img {
	position: absolute;
	top: 0;
	left: 0;
}


ul#thumbs {
	list-style: none outside none;
	margin: 0;
	position: relative;
	z-index:100;
}
ul#thumbs li img {
	width: 85px;
	height: 63px;
}
ul#thumbs li {
	margin-right: 3px;
	float: left;
	cursor: pointer;
}
.accordionButton {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #8e8e8e;
	font-size: 12pt;
	font-weight: bold;
	font-style: italic;
	margin-top: 5px;
	cursor:pointer;
	padding-left: 10px;
	/*		background-image: url(../images/q.jpg);
	background-position: 0 middle ;
	background-repeat: no-repeat;
*/	line-height:20px;
}
.accordionContent {
	padding-left: 35px;
	/*		background-image: url(../images/a.jpg);
	background-position: 0 middle ;
	background-repeat: no-repeat;
*/	line-height:20px;
}
ul.faqList {
	padding: 10px 0 0px 0;
}
ul.faqList li:hover {
	color: #11934a !important;
}
/* Rules for Sidebar Inside pages */


/* Rules for no-sidebar Inside pages */



/* Rules For each specific Page */
/* Rules for Contact Page */
.contact #container #main #left-col {
	width: 400px !important;
	text-align: right;
}


.contact #container #main #right-col {
	width: 430px !important;
	float: left;
}



/* Rules for Request Info Page */


.request #container #main #left-col {
	width: 470px !important;
}


.request #container #main #right-col {
	width: 500px !important;
	float: left;
}


.request #container #main #right-col {
	padding-top: 40px;
}
.request #container #main #left-col #sidebar-nav {
	display: none;
}
.request #main ul {
	list-style: none outside none;
	margin:0;
}
.request #main ul li {
	margin: 5px 0;
}
.request #main #left-col ul li label {
	float: left;
	display: block;
	width: 140px;
}
.request #main #right-col label.longLab {
	float: left;
	width: 230px;
}
.request #main label {
	color: #8E8E8E;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 10pt;
	font-style: italic;
	font-weight: bold;
	margin-top: 5px;
	/* 	text-align: right; */
	position: relative;
	top: -4px;/* 	right: 5px; */
}
.request #main input {
	/*	height: 25px;
*/	float: left;
}
.request #main select.long, .request #main ul li input.long {
	width: 297px;
}
.request #main input.medium, .request #main select.medium {
	width: 187px;
}
.request #main input.short {
	width: 77px;
}
.prodCheckTable td {
	padding: 3px 10px 3px 0;
	font-size:85%;
}
.prodCheckTable td input {
	margin-right: 6px;
}
.request #main input:focus, .request #main select:focus, .request #main textarea:focus {
	background-color: #4ba976;/* -webkit-box-shadow: 0px 3px 2px #406a54 inset;
  box-shadow: 0px 3px 2px #406a54 inset;
	-moz-box-shadow: 0px 3px 2px #406a54 inset;
*/}
.request #main textarea {
	width: 507px;
}
#comments {
	height: 70px;
}
.request #main input.submit {
	padding: 2px 10px;
	border: 2px solid #1D9443;
}
.hidHear {
	line-height: 20px;
}
.quoteError {
	position: relative;
	top: -590px;
	z-index:100;
}
.request #main .notice {
	color: #1D9443;
}






/* Rules for the slideshow */


.news #right-col img {
	max-width:100%;
}
.news #right-col .photo-left {
	float: left;
	margin: 0 10px 10px 0;
}
.news #right-col .photo-right {
	float: right;
	margin: 0 0 10px 10px;
}
.news #right-col a h3 {
	color: #11934A;
}
.news #right-col a h3:hover {
	color: #003366;
}
.news #main #right-col .article-link .date {
	margin: 0 0 10px;
}



/* product map*/



.mapRow {
	width: 100%;
	padding-bottom: 35px;
}


.mapRow li,
.mapRow ul li {
	list-style:none;
}

.mapRow ul li {
	margin: 5px 0 0px 0;
}

.mapCatName {
	font-size:120%;
	color: black;
}


li.mapListItem {
	float: left;
	width: 300px;
	padding-right: 30px;
}

li.mapListItem ul {
padding: 5px 0 0 15px;
margin: 0 0 0 0;
}







/*newsletter subscribe forms */
form.newsletterForm {
	width: 280px;
}
form.newsletterForm label {
	width: 65px;
	float: left;
	margin: 12px 0 0 0;
}
form.newsletterForm input {
	width: 180px;
	float: right;
	margin: 7px 0 0 0;
}
form.newsletterForm input.submit {
	width: auto;
	float: none;
	margin: 10px 0 0 90px;
}
/*  editable content */
.editable {
	text-align: left !important;
}
.editable p, .editable ul {
	margin: 0 0 10px 0 !important;
	line-height: 1.3em!important;
}
.editable ul li {
	list-style: disc !important;
	margin: 0 0 3px 0;
	line-height: 1.3em!important;
}
.editable ul {
	list-style: disc !important;
	margin-left: 13px !important;
}
.editable ol {
	list-style:decimal!important;
	list-style-type:decimal!important;
}
.editable ol li {
	margin-bottom: 7px !important;
}



#google-plus {
	position:absolute;
	top: 450px;
	right: 28px;
}




/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) {
/* Style adjustments for portrait mode goes here */
  
}
 @media all and (orientation:landscape) {
/* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 700px) {
#footerlogo {
	width: 20%;
}
#footer #phone-number .super-bold {
	font-size: 15pt;
}
#footer #phone-number {
	font-size: 11pt;
}
#legal {
	font-size: 6pt;
}
/* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
* {
	background: transparent !important;
	color: #444 !important;
	text-shadow: none !important;
}
a, a:visited {
	color: #444 !important;
	text-decoration: underline;
}
a:after {
	content: " (" attr(href) ")";
}
abbr:after {
	content: " (" attr(title) ")";
}
.ir a:after {
	content: "";
}  /* Don't show links for images */
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
thead {
	display: table-header-group;
} /* css-discuss.incutio.com/wiki/Printing_Tables */
tr, img {
	page-break-inside: avoid;
}
 @page {
margin: 0.5cm;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}


