@import url("gfx/MasterFloatRESETv10.css"); /* Upload stylesheet to GFX folder */
@import url("gfx/960_24_col.css"); /* Upload stylesheet to GFX folder */

/* 1.ROOT */

body {
	margin: 0;
	color: #000;
	font : 100%/1.4 "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-image: url(gfx/bg-body.jpg);
	background-repeat: repeat-x;
	background-color: #fff;
	}
	body#internal { 
		background-image: url(gfx/bg-body-internal.jpg);
		background-repeat: repeat-x;
		}

/* 2.HEADINGS */

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: "Times New Roman", Times, serif ;
	font-weight : normal;
	
	}

h1 { 
	margin-bottom : 15px;
	font-size : 26px; /* 48 / 16 = 3 */
	line-height : 32px; 
	color:#5d4232;
	}

h2 { 
	margin-bottom : 15px;
	font-size : 20px; /* 36 / 16 = 2 */
	line-height : 28px;
	color:#734504; 
	}

h3 { 
	margin-bottom : 1em;
	font-size : 1.5em; /* 24 / 16 = 1.5 */
	line-height : 1.3; 
	}

h4 { 
	margin-bottom : 1.25em;
	font-size : 1.25em; /* 20 / 16 = 1.25 */
	line-height : 1.25; 
	}

h5 { 
	margin-bottom : 1.5em;
	font-size : 1em; /* 16 / 16 = 1 */ 
	}

h6 { 
	font-size : 1em; /* 16 / 16 = 1 */ 
	}

/* 3.TYPOGRAPHY */

p, 
ol, 
ul, 
dl, 
address { 
	margin-bottom : 14px; 
	font-size : 14px;
	line-height: 24px;
	}

ul, 
ol { 
	margin : 0 0 1.5em 24px; 
	padding-left : 24px; 
	list-style-position: outside;
	}

ul { 
	list-style-type : disc; 
	}

ol { 
	list-style-type : decimal; 
	}

ul li , 
ol li  { 
	margin : 0;
	font-size : 1em; /* 16 / 16 = 1 */ 
	}

dl, 
dd { 
	margin-bottom : 1.5em;
	}

dt { 
	font-weight : normal; 
	}

blockquote  { 
	margin : 0 0 1.5em 24px; 
	padding-left : 24px; 
	border-left : 1px solid rgb(200,200,200); /* hex code can be used here too */
	font-style : italic; 
	}

blockquote:before, 
blockquote:after, 
q:before, 
q:after {
	content : '';
	content : none; 
	}

b, 
strong	{ 
	font-weight : bold; 
	}

i, 
em { 
	font-style : italic; 
	}

sup, 
sub { 
	position : relative;
	font-size : 75%; 
	line-height : 0; 
	}

sup { 
	top : -.5em; 
	}

sub { 
	bottom : -.25em; 
	}

address { 
	font-style : normal;
	}

/* images */

.img-right {
	float:right;
	margin: 0px 0px 15px 15px;
	
	}

/* 4.LINKS */





a, 
a:visited {
	outline : none;
	color : #8f2a10; 
	
	}
 
a:hover { 
	outline : none;
	color : rgb(40,40,40); /* hex code can be used here too */
	text-decoration : underline; 
	}
 
a:active, 
a:focus { 
	outline : none;
	color : rgb(0,0,0); /* hex code can be used here too */
	}

/* 5.NAVIGATION/MENU */

/* Feel free to change up this area as you see fit in order
to best suit your design. */

div#menu {
	height: 45px; 
	width: 960px;
	
	}

ul#nav {
	margin: 0;
	padding: 0;
	border-left: 1px solid #303030;
	}
	ul#nav li {
		float: left;
		padding: 0;
		list-style: none;
		list-style-image: none;
		border-right: 1px solid #2C2C2C;
		}
		ul#nav li.last {
			}
		ul#nav li.first {
			}
		ul#nav li a {
			font-size: 16px;
			font-family:Arial, Helvetica, sans-serif;
			text-decoration: none;
			line-height:45px; /* line height is better than top and bottom padding */
			display: block;
			text-align: left;
			padding: 0px 12px;
			white-space: nowrap;
			font-weight: normal;
			color: #fff;
			}
		/* yes, you can combine the bottom two styles if you would like or need to */	
		ul#nav li.current a {
			background: #783726;
			}
		ul#nav li a:hover {
			background: #000;
			}
			ul#nav li ul { /* second-level lists */
			position: absolute;
			/*background: orange;*/
			width: 10em;
			left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
			margin-left:-25px;
		}
		
		ul#nav li ul li a, ul#nav li.current ul li a {
			font-size: 14px;
			font-family:Arial, Helvetica, sans-serif;
			text-decoration: none;
			line-height:25px; /* line height is better than top and bottom padding */
			display: block;
			text-align: left;
			padding: 0px 15px;
			white-space: nowrap;
			font-weight: normal;
			color: #fff;
			background-color: #666;
			border-bottom: 1px solid #333333;
                        width:150px;
			}
			
		ul#nav li ul li a:hover, ul#nav li.current ul li a:hover {
			background: #783726;
			}
		 
		ul#nav li ul ul { /* third-and-above-level lists */
			margin: -1em 0 0 10em;
		}
		 
		ul#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
			left: -999em;
		}
		 
		ul#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
			left: auto;
		}

/* 6.MAIN */

.clear {clear:both; margin:0px; height:0px;}

#wrapper-header {
	margin-bottom:12px;
	}
	
#wrapper-footer {
	background-color:#000000;
	padding-bottom:20px;
	}	

#logo {
	position:absolute;
	top:45px;
	left:0px;
	}
	
.phone {
  color: #FFFFFF;
  font-family: "Times New Roman",Times,serif;
  font-size: 30px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  right: 0;
  text-align: right;
  text-shadow: 2px 2px 2px #3B3B3B;
  top: 80px;
  width: 400px;
}
	
.phone strong {
	color:#f0dc58;
	font-weight:bold;
	}	

.header {
	height:474px;
	position:relative;
	border-bottom:10px solid #7e5537;
	}
	
.header-internal {
	height:292px;
	position:relative;
	border-bottom:10px solid #7e5537;
	}	
	
.animation {
	position:absolute;
	bottom:0px;
	left:0px;
	}	
	
.content {
	padding: 20px 0 15px;
	position:relative;
	}	

.sidebar {
	padding:20px 0 15px;
	}
	
.footer {
	background-image: url(gfx/bf-footer.png);
	background-repeat:no-repeat;
	background-position:center top;
	padding-top:15px;
	
	}	

/* 7. WIDGET AREAS */


	
div#widgetbottom,
div#widgettop {
	width: 950px;
	border: 1px solid #cfcfcf;
	background: #fff;
	
	}
	.footer .widget-wrapper
 {
		float: left;
		width: 280px;
		margin: 0px 10px;
		
		}
		div#widgetbottom > *:after,
		div#widgettop > *:after {
			content:'';
			clear: left;
			}

/* 8.WIDGET STYLING */

/* Change the overall widget-wrapper class, you may add additional properties in 
this area as needed such as border, border-radius, etc. Calculator ID's are used
because their backgrounds are super, ultra stubborn to get rid of */
.widget-wrapper {
	background: none;
	position: relative; /* IE8 and below */
	z-index: 09; /* IE8 and below */
	padding:0px;
	
	}
	
.sidebar .widget-wrapper {
	 
	position: relative; /* IE8 and below */
	z-index: 09; /* IE8 and below */
	background-image: url(gfx/bg-widget-top.jpg);
	background-repeat:no-repeat;
	background-position:top center;
	}	
	
.sidebar .widget-title {
	
	border-bottom: medium hidden !important;
	}	
	

.sidebar .widget-title h3 {
  border-bottom: medium hidden !important;
  color: #FFFFFF;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}
	
.sidebar .widget-body {
  background-image: url("gfx/bg-widget-bottom.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  height:auto !important;
}

	
/* add widget header bg that will show up as a tab-styled graphic for the h3 below */ 
.widget-title {
	border-bottom: 1px solid #ccc;
	position: relative; /* IE8 and below */
	z-index: 09; /* IE8 and below */
	}
	/* the heading tag within each widget, this will change heading style for widgets 
	specifically, don't forget about font color */
	.widget-title h3 {
		color: #986d4e;
		margin: 0;
		font-size:24px;
		}

.widget-body { /* should correct centering of elements inside of most widgets */
	text-align: center;
	height:275px;
	
	}
	
	.sidebar .widget-body p {color:#000;}
	.widget-body p { /* can further effect elements inside on most widgets */
		text-align: left; 
		color:#fff;
		}
		.widget-body a, .widget-body:visited {
			text-decoration:underline;
			color:#aa4630;
			}

div#twtr-widget-1 div.twtr-doc div.twtr-hd h3 {
	display: none;
}

/* 9.MODULES */

/* click to call link*/
a.sms-button {
	width: 150px;
	display:inline;
	font-size:12px;
	line-height:30px;
        margin-left:20px;
	}

/* facebook like link */
div#fblike {
	float: left;
	margin: 15px;
	color: #333;
}

/* default contact us form */
div#contact_us_container {
	/* should inherit most of the body styling */
	}
	div#contact_us_container .astrix{
		color: red;
	}


/* search module */
div#modulesearch {
	position: absolute;
	top: 5px;
	right: 0px;
}

/* print page and send to friend links found in content area */
span.print-page-link, 
span.sendtofriend-link {
	margin: 0px 5px 0px 30px;
	display:inline;
	font-size:12px;
}

/* language link styling for spanish, french, and english */
div#languagelinks {
}

/* 10.FOOTER AREA */

/* mirror module for utility nav */
ul#mirror-menu-module {
  border-left: 1px solid #CFCFCF;
  clear: both;
  height: 20px;
  margin: 0 auto 40px;
  padding: 0 0;
  width: 710px;
  z-index: 9;
}
	ul#mirror-menu-module li {
		float: left;
		padding: 0 8px;
		list-style: none;
		text-align: center;
		border-right: 1px solid #cfcfcf;
		font-size:12px;
		line-height:20px;
	
		}
	ul#mirror-menu-module a {
		color:#fff;
		}
		ul#mirror-menu-module a:hover {color:#fff; text-decoration: underline;
			}

/* misc links and text that may be generated using platform dynamic tags*/
div#footerdata, 
span.footerLinks {
	text-align: center;
	margin: 10px auto;
	clear: both;
}

a.print-map {
	font-size: 10px;
}

/* ATT Copyright */
div#copyright {
  clear: both;
  color: #EEEEEE;
  font-size: 10px;
  margin: 15px 5px;
  text-align: right;
  width: 310px;
  float:left;
  font-family:Verdana, Geneva, sans-serif;
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
  
}

body#internal div#copyright {
  clear: both;
  color: #EEEEEE;
  font-size: 10px;
  margin: 15px 0px;
  text-align: center;
  width:950px;
  float:left;
  font-family:Verdana, Geneva, sans-serif;
  font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
  font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
  
}


.

/* 11.WEBSPLANET DEFAULT */

/* WebsPlanet Platform Default classes for many of their
dynamic tags that we may not have covered above. This should
hypothetically overwrite any styling we made above if you style
the below classes. NOTE: Be sure that you are targeting the 
correct class selector below.  */

.languages {}
.headerimage {}
.slogan {}
.logo {}
.menu {}
.menu_rollover {}
.menu_active {}
.skinBg {}
.skinAlign {}
.footerText {}
.footerLinks {}

.text {}
.titles {}
.titles_path {}
.titles_in {}

.modules_table_border {}
.modules_table_data {}
.modules_td {}
.dark_text {}
.dark_links {}

.content_pages_table {}
.content_pages_table td {}

.nextprevout {}
.nextprevin {}
.nextprevactive {}

.printv_link {}
.printv_table {}
.printv_body {}
.printv_content_title {}
.sendtoafriend_link {}
.sendtoafriend_body {}
.sendtoafriend_data {}

.astrix {}
.form_field_text {}
.text_field {}
.text_field_big {}
.buttons {}

.search_button {}
.search_field {}
.search_text {}
.search_result_highlight {}

.login_field {}

.side_menu {}
.side_menu_sub {}

.gallery_titles {}
.gallery_text {}
.gallery_links {}

.user_normal {}
.user_self {}
.user_admin {}
.quote {}

.price {}
.top_categories_titles {}
.multimulti_attribute_image {}

.replies_page_toplinks_table {}
.replies_page_toplinks_td {}
.replies_page_toplinks_link {}
.replies_page_replylink {}

/* Modules */

.module-wrapper {}
.module-title {}
.module-content {}

/* callout */

.callout {
	background-image:url(gfx/bg-callout.jpg);
	background-repeat:no-repeat;
	height:334px;
	text-align:center;
	}
	
.callout h3 {
	font-size:18px;
	color:#fff;
	font-family:"Times New Roman", Times, serif;
	line-height:50px;
	margin: 5px 0 15px;
	}
	
.callout p {
  color: #181515;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 12px;
  height: 65px;
  line-height: 16px;
  margin: 10px 17px 0;
  text-align: left;
}	
	
a.callout-button, a.callout-button:visited {
  background-image: url("gfx/callout-button-long.jpg");
  background-position: left bottom;
  background-repeat: no-repeat;
  color: #FFFFFF;
  display: inline-block;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 11px;
  height: 28px;
  line-height: 28px;
  margin: 10px;
  padding: 0 0 0 35px;
  text-align: left;
  width: auto;
text-decoration:none;
}

a.callout-button:hover {
  background-position: left top !important;
  text-decoration:none;
	}
	
	
a.callout-button span, a.callout-button:visited span {
  background-image: url("gfx/callout-button-end.jpg");
  background-position: right bottom;
  background-repeat: no-repeat;
  display: block;
  line-height: 28px;
  padding: 0 15px 0 0;
}

a.callout-button:hover span {
	background-position: right top;
	}


/* contact form */

.column_One, .column_Two {
  width: 50%;
}

.form-row .form_field_text {
  float: left;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
}

.text_field {
  width: 90%;
}

.aremandatory {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 10px;
}

.privacy {font-size:10px; line-height:16px;}

.sendtoafriend_body {background-image:none !important;}

/* reviews */

.sidebar .reviewBody {color:#000;}