/* ==================================================================
SCREEN STYLESHEET
SMS AUTO FABRICS 
---------------------------------------------------------------------
AUTHORS: Wes Hatten - BUSWAH@GMAIL.COM, aaron@method21.net
	 Lochlan McIntosh

=====================================================================
COLOR TABLE
---------------------------------------------------------------------
BACKGROUND				#EEE;
SIDEBAR GRAY			#D3D3D3;
DARK GRAY				#6C6C6C;
RED						#900;
===================================================================== */
/* GLOBALS
===================================================================== */
@import url(/css/fancy.css);

body {
	margin: 0;
	padding: 0;
	font: normal 75% Arial, Verdana, "Lucida Grande", sans-serif;
	background: #eee url(/images/bg.jpg) repeat-x top right;
}
a {
	overflow: hidden; 
	color: #900;
	outline: none;
}
a img {
	border: none;
}
a:hover {
	text-decoration: none;
	cursor: pointer;
}
h1, h2, h3, h4 {
	margin: .3em 0;
	clear: both;
}
h1 {
	font-size: 20pt;
}
.resetList, .resetList li ul {
	margin: 0;
	padding: 0;
}
.resetList li {
	list-style: none;
	padding: 0;
	margin: 0;
}
.floatLeft {
	float: left;
	margin: 0 10px 10px 0;
}
.floatRight, [align=right] {
	float: right;
	margin: 0 0 10px 10px;
}
.clear, .clearBoth {
	clear: both;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* FORMS */
input,textarea {
	font: inherit;
	padding: 3px;
}
input.inputButton { /* SEE IE6, IE7 */
	text-indent: -9999px;
	border: none;
	cursor: pointer;
}
.B_crumbBox { /* DEFAULT CLASS FOR MODX BREADCRUMB */
	margin: 3px 0 10px;	
	display: block;
}
/* STRUCTURE
===================================================================== */
#wrapper {
	min-width: 780px;
	max-width: 960px;
	margin: 3% auto 0;
	background: url(/images/wrapper_bkg-left.gif) repeat-y left top;
	position: relative;
}				
#bodyCushion {
	background: transparent url(/images/wrapper_bkg-right.gif) repeat-y right top;
	padding: 0 20px; /* PADDING DOES NOT AFFECT WIDTH IN MOZILLA SINCE NO WIDTH IS DEFINED */
}
#ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 21px;
	height: 114px;
	background: url(/images/bkg-top_left.png) no-repeat left top;
}
#ur {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 163px;
	background: url(/images/bkg-top_right.png) no-repeat right top;
}
/* HEADER
===================================================================== */
#header {
	background: url(/images/bkg-header_repeat.png) repeat-x left top;
	height: 90px;
	position: relative;
}
#logo {
	width: 214px;
	height: 46px;
	background: url(/images/logo.png) no-repeat top left;
	text-indent: -9999px;
	margin: 25px 0 0 0;
}
#phoneNumber {
	margin: 20px 0 0 0;
	color: #fff;
	text-align: right;
	font-size: 20pt;
}

#tagline {
	color: #fff;
	position: absolute;
	right: 0;
	top: 30px;
	font-size: 17pt;
	margin-top: 17px;
}

#searchButton {
	display: block;
	width: 110px;
	height: 30px;
	position: absolute;
	right: 15px;
	top: 80px;
	background: url(/images/btn-search.gif) no-repeat top left;
	text-indent: -9999px;
}

#billboard {
	background: url(/images/homepage_banner.png) no-repeat left top;
	height: 223px;
}
#billboard #banner {
	color: #FFF;
	background: #900;
	padding: 4px 4px 4px 30px;
	width: 450px;
	position: absolute;
	top: 120px;
	left: -10px;
	overflow: visible;
	display: none;
}
#billboard #banner h1 {
	margin: 0;
}

/* NAVIGATION
===================================================================== */
#nav {
	height: 24px;
	color: #FFF;
	text-transform: uppercase;
	position: relative;
	border-bottom: solid 4px #900;
}
#nav li {
	float: left;
	display: block;
	margin: 0 3px;
	width: auto;
}
#nav li:hover {

}
#nav li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
	padding: 5px 12px;
	outline: none;
}
#nav li a.hasChildren {
	background: url(/images/icon_arrow_down-white.gif) no-repeat right center;
}
#nav li.first {

}
#nav li a:hover, #nav li:hover a,#nav li.liHover a:hover, #nav li.liHover:hover a  { /* ADDED LI:HOVER SO THE MAIN NAV STAYS HILIGHTED */
	background: #900;
}

#nav li a.current {
	background: #900;
}
#nav li ul {
	width: 100%;
	position: absolute;
	left: 0;
	height: auto;
	background: #740000 url(/images/bkg-subnav_repeat.gif) repeat-x left top;
	z-index: 99;
}
#nav li ul li {
	float: left;
	font-size: .95em;
	width: auto;
}
#nav li ul li a {
	padding: 4px 12px;
	margin: 5px 0;
	border-right: 1px solid #5C0404;
	background: transparent !important;
}
#nav li ul li.last a {
	border: none;
}
#nav li ul li a:hover {
	text-decoration: underline;
}
/* SUCKERFISH STYLES */
#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	z-index: 99;
}

#nav li:hover ul, #nav li.liHover ul { /* lists nested under hovered list items */
	/*left: auto;*/
	left: 0; /* CHANGED BECAUSE I WANT IT TO BE AT LEFT EDGE WHEN APPEARS */
}

/* CONTENT
===================================================================== */
#contentWrapper {
	background: #FFF url(/images/bkg-internal_content.gif) repeat-y top right;
	min-height: 750px;
/*	position: relative;*//* THIS WAS MAKING SUB NAV DROP BEHIND */
}
#contentWrapper:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#content {
	margin-right: 211px;
	padding: 10px;
	background: url(/images/internal_top_grade.gif) repeat-x left top;
}
#content p {
	line-height: 1.6;
}
#content h1 {
	margin: 0 0 10px;
}

#content h2 {
	color: #900;
	border-bottom: 1px solid #000;
	padding-top: 0;
	font-size: 18pt;
}


#bottomPattern {
	height: 46px;
	margin: 25px 0 0 0;
	position: relative;
	bottom: 0;
	right: 252px;
	background: transparent url(/images/bgContentBottom.png) repeat-x bottom left;
}
iframe {
	width: 100%;
	height: 350px;
}
/* 	TESTIMONIALS
===================================================================== */

.testimonial {
	width: 500px;
	background: url(/images/testimonial-paper-center.gif) repeat-y center top;
	margin: 10px auto;
}

.testimonial .testTop {
	background: url(/images/testimonial-paper-top.gif) no-repeat center top;
}
.testimonial .testBottom {
	background: url(/images/testimonial-paper-bottom.gif) no-repeat center bottom;
	padding: 20px 30px;
}
/* HOMEPAGE BUCKETS */
ul#buckets { text-align: center; clear: both; }
ul#buckets li {
	background: #EEE url(/images/bkg-bucket.gif) no-repeat right bottom;
	border: solid 1px #B3B3B3;
	margin: 0 auto;
	padding: 0 10px;
	margin-bottom: 10px;
	text-align: left;
}
ul#buckets li h2 {
	font-size: 14pt;
	color: #000;
	border-bottom-color: #B3B3B3;
	padding-bottom: 5px;
}

ul#buckets li p {
	padding-right: 83px;
	background: no-repeat right top;
	min-height: 82px;
}
ul#buckets li.search p { background-image: url(/images/buckets/thumb-search.gif) }

/* SEARCH RESULT PAGES
===================================================================== */
#searchForm {
	border: solid 1px #BBB;
	background: #EEE;
	margin: 10px 0 20px;
	padding: 10px;
}
ul.resultPageNumbers {
	text-align: center;
	/*border-bottom: solid 1px #333;*/
	height: 2em;
	clear: both;
	margin: 0 0 5px;
}
ul.resultPageNumbers li {
	text-align: center;
	margin-right: 5px;
	width: 25px;	
	float: left;
}
ul.resultPageNumbers li.current {
	background: #FFF;
	border: solid 1px #333;
	/*border-bottom: solid 1px #FFF;*/
	margin-bottom: -1px;
	padding: 2px 0;
	line-height: 1.6em;
}
ul.resultPageNumbers a {
	display: block;
	line-height: 1.7em;
	width: 25px;	
	background: #222;
	color: #FFF;
	text-decoration: none;
	padding: 2px 0;

}
ul.resultPageNumbers a:hover {
	background: #900;
}

#resultContainer {
	padding: 10px 0;
}
.resultDetails {
	margin: 0;
}
.resultSet { 
	border-bottom: solid 1px #555;
	margin: 0 0 10px;
	overflow: auto;
	clear: both;
}

.resultSet form {
	overflow: auto;
	margin: 0;
}

.resultRow {
	overflow: auto;
}
.singleResult, .multiResult {
	margin: 7px;
	background: #EEE;
	padding: 0;
	text-align: center;
	width: 160px;
	height: 160px;
	float: left;
}

a.swatch, .no_image {
	height: 100px;
	width: 100px;
	overflow: hidden;
	border: solid 2px #333;
	margin: 5px auto;
	display: block;
	background: center center;
}
p.no_image {
	background: transparent url(/images/no-image.gif) no-repeat center center;
	padding-top: 32px;
	padding-bottom: 40px;
	color: #444produ;
	height: auto;
	border: none;
}

a.swatch:hover {
	border: solid 2px #900;
}

.requestButton {
	width: 130px;
	height: 30px;
	background: transparent url(/images/btn-request.gif) no-repeat center top ;
	margin: 10px 0;
	clear: both; /* CLEARS FLOAT FOR resultSet form IN IE6 */
}
.requestButton:hover {
	background: transparent url(/images/btn-request.gif) no-repeat center -30px ;
}





span.spacer {
	clear: both;
}
.resultMeta {
	text-align: left;
}

span.result_cloth {
	display: block;
	width: 170px;
	float: left;
	text-align: center;
}
span.result_vinyl {
	display: block;
	width: 170px;
	float: left;
	text-align: center;
}
span.result_leather {
	display: block;
	width: 170px;
	float: left;
	text-align: center;
}
hr.result_hr {
	clear: both;
	border: none;
	border-bottom: solid 1px #333;
}




/* SIDEBAR
===================================================================== */
#sidebar {
	width: 210px;
	position: absolute;
	top: 118px;
	right: 20px; /* NEW POSITION BECAUSE NOW RELATIVE TO WRAPPER */
	z-index: 2
}

#sidebar a {
	color: #000;
}
.sideModule {
	background: url(/images/sidebar_module_divider.gif) no-repeat top left;
	padding: 30px 15px 0;
	margin: 0 0 10px;
	text-align: justify;
}
#sidebar h3 {
	color: #900;
	font-size: 14pt;
}

#sidenav li a{
	background: url(/images/nav-right_arrow_lite.gif) no-repeat left center;
}
#sidenav li.active a, #sidenav li.active a:hover { /* ADDED HOVER STATE SO IT DOESNT CHANGE WHEN ACTIVE IS ROLLED OVER */
	background: url(/images/nav-right_arrow_red.gif) no-repeat left center;
}
#sidenav a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 3px 0 3px 15px;
}
#sidenav li a:hover {
	background: url(/images/nav-right_arrow.gif) no-repeat left center;
}
/* POPUPS
===================================================================== */
#popupHeader {
	background: url(/images/bkg-header_repeat.png) repeat-x left -30px;
	padding: 20px 10px;
}
#popup {
	padding: 20px;
	overflow: auto;
}

/* QUICK FORM
===================================================================== */
#quickform label {
	padding: 3px 10px 0 0;
	margin: 0 0 3px 0;
	display: block;
}
#quickform li {
	margin: 0 0 5px 0;
}
#quickform input, #quickform textarea {
	border: 1px solid #737272;
	background: #EEE url(/images/quick_input_background.gif) no-repeat left top;
	width: 175px; /* RESTRICT SAFARI RESIZE */
	max-width: 175px; /* RESTRICT SAFARI RESIZE */
	max-height: 250px; /* RESTRICT SAFARI RESIZE */
}

#quickform input:focus, #quickform textarea:focus{
	background: #FFF url(/images/quick_input_background_1.gif) no-repeat left top;
}
#quickform input.inputButton {
	background: url(/images/sidebar_send_button.gif) no-repeat left top;
	width: 60px;
	height: 20px;
	border: none;
}

/* CONTACT FORMS
===================================================================== */
form#contactForm {
	background: #FFF;
	padding: 20px;
	border: solid 1px #6C6C6C;
	margin: 0 0 20px;
}
ul#contactFields {
	width: 500px;
	margin: 0 auto;
}
#contactFields li {
	clear: both;
	border-bottom: solid 1px #D3D3D3;
	margin-bottom: 5px;
	padding:5px 0;
}
#contactFields li.last {
	border: none;
}
#contactFields label {
	width: 400px;
	clear: both;
	font-weight: bold;
	text-align: right;
	display: block;
}
#contactFields input, #contactFields textarea {
	margin: 0 0 0 5px;
	border: 1px solid #737272;
	background: #EEE url(/images/quick_input_background.gif) no-repeat left top;
	width: 300px; /* RESTRICT SAFARI RESIZE */
	max-width: 300px; /* RESTRICT SAFARI RESIZE */
	max-height: 250px; /* RESTRICT SAFARI RESIZE */
	vertical-align: baseline;
}
#contactFields input:focus, #contactFields textarea:focus {
	background: #FFF url(/images/quick_input_background_1.gif) no-repeat left top;
}
#contactFields input.inputButton {
	background: url(/images/send_btn-big.gif) no-repeat left top;
	width: 200px;
	height: 30px;
	border: none;
	margin-left: 130px;
}
/* FEATURED PRODUCTS
===================================================================== */
#featuredProducts, #featuredHoundstooth {
	width: 100%;
	margin: 0 auto;
	overflow: auto;
}
li.featuredItem {
	background: #EEE;
	margin: 0 5px 10px;
	overflow: auto;
	padding: 10px;
	width: 44%;
	float: left;
}
#featuredProducts li.featuredItem p {
	margin: 0;
	line-height: 1.2;
}
li.featuredItem img {
	width: 90px;
	height: 45px;
	float: right;
	margin: -20px 0 7px 7px;
}
li.featuredItem h3 {
	font-size: 11pt;
	width: 70%; /* FORCES THE LINE TO BREAK WHERE THUMBNAIL STARTS */
}

/* FAQ
===================================================================== */
#questions {
	background: #EEE;
	border: solid 1px #B3B3B3;
	padding: 15px;
}
#answers {
	margin: 10px 15px 0;
}
#answers li {
	border-bottom: solid 1px #B3B3B3;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
/* FAQ
===================================================================== */
#faq #content p{
	margin: 0;
}
#faq #content li {
	margin-bottom: 10px;
}
/* GALLERY
===================================================================== */
.gallerySwatches {
	margin: 10px 0;
}
.gallerySwatches li {
/*
	background: #eee;
	border: 1px solid #737272;
	margin: 0 4px 5px;
	padding: 3px;
*/
	float: left;
	width: 120px;
	height: 110px;
	text-align: center;
	margin-right: 5px;
}
.gallerySwatches a h3 {
	text-decoration: underline;
	font-size: 9pt;
	height: 2.1em;
	vertical-align: middle;
	overflow: ellipsis;
}
.gallerySwatches a:hover h3 {
	text-decoration: none;
}
.gallerySwatches ul {
	clear: both;
	overflow: auto;
}
#galleryAll a {
	display: block;
	font-size: 11pt;
	text-decoration: none;
	border: solid 1px #BBB;
	background: #EEE url(/images/arrow-down-black.gif) no-repeat 3px center;
	padding: 7px 5px 7px 20px;
	
}
#galleryAll a.selected { background: #EEE url(/images/arrow-up-black.gif) no-repeat 3px center; }
#galleryAll li { margin-bottom: 5px;}


#galleryAll .gallerySwatches a { /* FOR LINKS THAT ARE NOT TRIGGERS */
	display: inline;
	background: transparent;
	border: none;
	padding: inherit;
}
/* FOOTER
===================================================================== */
#footer {
	background: url(/images/bkg-bottom_repeat.gif) repeat-x left top;
	min-width: 780px;
	max-width: 960px;
	height: 36px;
	margin: 0 auto 30px;
	color: #FFF;
	font-size: .9em;
}
#footer #footerCushion {
	background:  url(/images/bkg-bottom_right.gif) no-repeat right top;
	height: 36px;
}
#footer ul {
	background: url(/images/bkg-bottom_left.gif) no-repeat left top;
	height: 36px;
	padding: 8px 0 0 20px;
}
#footer ul li {
	display: inline;
}
#footer a {
	color: #FFF;
	padding: 0 5px;
}
#footer a:hover {
	text-decoration: none;
}
/* SAMPLE REQUEST FORM
===================================================================== */
#sampleForm {
	
}
#sampleForm li {
	padding: 5px 2px;
	border-bottom: solid 1px #D3D3D3;
}
#sampleForm input, #sampleForm textarea {
	margin: 2px 0;
	padding: 3px;
	border: 1px solid #737272;
	background: #EEE url(/images/quick_input_background.gif) no-repeat left top;
	width: 200px;
}

#sampleForm input:focus, #sampleForm textarea:focus {
	background: #FFF url(/images/quick_input_background_1.gif) no-repeat left top;
}
#sampleForm textarea {
	width: 400px; /* RESTRICT SAFARI RESIZE */
	max-width: 400px; /* RESTRICT SAFARI RESIZE */
	max-height: 300px; /* RESTRICT SAFARI RESIZE */
	background-image: none;
}
.alertError {
	background-color: #C00;
	margin: 2px;
	padding: 5px;
	color: #FFF;
}
.formerror {
	margin: 2px;
	padding: 5px;
	color: #CC0000;
}
#sampleForm .formerror input{
	background-color: #F00 !important;
	background-image: none;
	color: #FFF;
}

table.requested_samples {
	border-collapse: collapse;
	table-layout: auto;
	margin-left: auto;
	margin-right: auto;
}

table.requested_samples td {
	border: solid 1px rgb(211,211,211);
	padding: 2px;
	text-align: center;
}

table.requested_samples th {
	background: #6C6C6C;
	color: #FFF;
	border-right: solid 1px #EEE;
	padding: 3px 2px;
}
#sampleForm input.checkbox {
	background: transparent;
	margin-right: 5px;
	width: auto;
}
#checkboxField {
	width: 550px;
	overflow: auto;
	margin-bottom: 10px;
}
#checkboxField label {
	display: block;
	width: 150px;
	float: left;
}
li.alt {}