#welcomeContent blockquote {
	margin-bottom: 48px;
}
/* Version: 2025-12-08-v11 - Fixed sticky nav icons on desktop */
/* ----------------------------------------------------------------
CSS Custom Properties (Modern Variables)
-----------------------------------------------------------------*/
:root {
	/* Colors */
	--color-primary: #ff3d00;
	--color-secondary: #bba43f;
	--color-accent: #91b46e;
	--color-text: #000;
	--color-text-light: #333;
	--color-text-muted: #444;
	--color-text-gray: #868686;
	--color-bg: #fff;
	--color-bg-light: #f3f3f3;
	--color-bg-gray: #e0e0e0;
	--color-footer: #7c9297;
	--color-link: #bba43f;
	--color-link-hover: #e6c84d;
	--color-border: #ddd;
	--color-focus: #0066cc;
	
	/* Typography */
	--font-primary: 'Droid Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
	--font-serif: 'Droid Serif', Georgia, 'Times New Roman', serif;
	--font-display: 'BebasNeueRegular', sans-serif;
	--font-size-base: 16px;
	--line-height-base: 1.6;
	
	/* Spacing */
	--spacing-xs: 5px;
	--spacing-sm: 10px;
	--spacing-md: 20px;
	--spacing-lg: 30px;
	--spacing-xl: 40px;
	
	/* Layout */
	--container-max-width: 960px;
	--container-width-tablet: 720px;
	--container-width-mobile: 100%;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	
	/* Border Radius */
	--radius-sm: 3px;
	--radius-md: 4px;
	--radius-lg: 15px;
	
	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
	--shadow-md: 0 2px 8px rgba(0, 0, 0, 0.15);
	--shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------------------
Accessibility
-----------------------------------------------------------------*/
.visuallyhidden {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.visuallyhidden:focus {
	position: static;
	width: auto;
	height: auto;
}

/* ----------------------------------------------------------------
Basic Reset 
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
    line-height: 1.5;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	outline: 0;
	text-decoration: none;
}

/* ----------------------------------------------------------------
Helper Classes
-----------------------------------------------------------------*/
/* Legacy float helpers - kept for compatibility */
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.clearFix {
	clear: both;
}
.group:before,
.group:after {
	content: "";
	display: table;
}
.group:after {
	clear: both;
}

/* Modern Flexbox utilities */
.flex {
	display: flex;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-column {
	display: flex;
	flex-direction: column;
}

/* Modern Grid utilities */
.grid {
	display: grid;
	gap: var(--spacing-md);
}
.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
}
}
.group {
	zoom: 1;
}
.centerThis {
	max-width: var(--container-max-width);
	width: 100%;
	margin: 0 auto;
	position: relative;
}

/* ----------------------------------------------------------------
General Fonts, Links, Headings & Inputs Styling
-----------------------------------------------------------------*/
body {
	font-size: var(--font-size-base);
	font-family: var(--font-primary);
	font-weight: normal;
	color: #000;
	text-rendering: optimizeLegibility;
}
p {
	font-size: 100%;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	margin-bottom: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	text-rendering: optimizeLegibility;
}
h1 {
	font-size: 36px;
	color: #eb3f00;
	margin-bottom: 15px;
}
h2 {
	font-size: 26px;
	color: #333;
	margin-bottom: 15px;
}
h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 12px;
}
h4 {
	font-size: 22px;
	color: #333;
	margin-bottom: 10px;
}
h5 {
	font-size: 16px;
	color: #333;
	margin-bottom: 8px;
}
h6 {
	font-size: 16px;
	color: #333;
	margin-bottom: 6px;
	line-height: 24px;
}
a,
a:active,
a:link {
	color: #bba43f;
	text-decoration: none;
	outline: none;
}
a:visited {
	color: #b19b3b;
	text-decoration: none;
	outline: none;
}
a:hover,
a:focus {
	color: #000000;
	text-decoration: none;
	outline: none;
}
em,
i {
	font-style: italic;
}
strong,
b {
	font-weight: bold;
}

body,
p,
button {
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
}

@font-face {
	font-family: "BebasNeueRegular";
	src: url(../uploads/assets/BebasNeue-webfont.eot);
	src: url(../uploads/assets/BebasNeue-webfont.eot%3F%23iefix)
			format("embedded-opentype"),
		url(../uploads/assets/BebasNeue-webfont.woff) format("woff"),
		url(../uploads/assets/BebasNeue-webfont.ttf) format("truetype"),
		url(https://sasgp.com/uploads/assets/BebasNeue-webfont.svg%23BebasNeueRegular)
			format("svg");
	font-weight: normal;
	font-style: normal;
}
h1,
h2,
h3 {
	font-family: "BebasNeueRegular";
}
#logoText {
	font-size: 50px;
	font-family: "BebasNeueRegular";
}
#mc_embed_signup label {
	font-size: 22px;
	font-family: "BebasNeueRegular";
}
#spotlightsWrapper figcaption h2 {
	font-size: 28px;
}
#sidebar h1 {
	font-size: 32px;
}
#subPages ul li a,
#subPages ul li a:link,
#subPages ul li a:active,
#subPages ul li a:visited {
	font-family: "BebasNeueRegular";
	font-size: 20px;
}
#facebookLike h1 {
	font-size: 24px;
}
#twitterFeed h1 {
	margin: 0 !important;
}
#middleCol #latestNewsWidget h1 {
	font-size: 26px;
}
#shopByWrapper h1 {
	font-size: 26px;
}
#commentsTitle {
	font-size: 22px;
}
.collectionProductLarge header h2 {
	font-size: 24px;
}
#productReviews h3 {
	font-size: 22px;
}
#priceTitle {
	font-family: "BebasNeueRegular";
	font-size: 22px;
}
#productBy {
	width: 90px;
}

/* ----------------------------------------------------------------
Modern Button System - Consolidated from .addToCart and .btnStyle
-----------------------------------------------------------------*/
.btn,
.addToCart,
.btnStyle {
	/* Base styles */
	font-family: var(--font-display);
	line-height: 40px !important;
	height: 40px;
	font-size: 18px;
	text-transform: uppercase;
	text-align: center;
	padding: 0 10px;
	
	/* Visual */
	background: var(--color-link-hover) url(../uploads/assets/btnStyleGradient.png) repeat-x 0 0;
	color: var(--color-text);
	border: 1px solid var(--color-link-hover);
	border-radius: var(--radius-md);
	
	/* Interaction */
	cursor: pointer;
	opacity: 1;
	outline: 0;
	margin: 0;
	transition: background-color var(--transition-fast);
	
	/* Display */
	display: inline-block;
	text-decoration: none;
}

.btn:focus,
.btn:hover,
.addToCart:focus,
.addToCart:hover,
.btnStyle:focus,
.btnStyle:hover {
	background-color: #f3d351;
}

.btn:active,
.addToCart:active,
.btnStyle:active {
	background: var(--color-link-hover);
}

.btn.disabled,
.btn:disabled,
.disabled,
.disabled:focus,
.disabled:hover,
.disabled:active {
	opacity: 0.7;
	cursor: not-allowed;
	background: var(--color-link-hover) url(../uploads/assets/btnStyleGradient.png) repeat-x 0 0;
	color: var(--color-text);
}

.addToCart {
	width: 90px;
}

/* Button variants */
.btn-primary {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.btn-secondary {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: #fff;
}

.btn-download {
	background: linear-gradient(to bottom, #3f3285 0%, #352973 100%);
	border-color: #352973;
	color: #e6c84d !important;
	width: auto;
	min-width: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	white-space: nowrap;
	font-size: 16px;
	height: 38px;
	line-height: 38px !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.btn-download:hover,
.btn-download:focus,
.btn-download:active,
.btn-download:visited {
	background: linear-gradient(to bottom, #4a3b96 0%, #3f3285 100%);
	color: #ffffff !important;
	text-decoration: none;
}

.btn-download svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	filter: brightness(0) invert(1);
}

.product-intro {
	margin-bottom: 20px;
}

.product-content-wrapper {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.product-list-column {
	flex: 1;
	min-width: 0;
}

.product-image-column {
	flex: 0 0 280px;
}

.product-image-column img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Toilet modules portrait layout */
.toilet-modules-layout {
	display: flex;
	gap: 40px;
	margin-bottom: 40px;
	align-items: flex-start;
}

.toilet-modules-layout .text-column {
	flex: 1;
	min-width: 0;
}

.toilet-modules-layout .image-column {
	flex: 0 0 280px;
}

.toilet-modules-layout .image-column img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 960px) {
	.product-content-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	
	.product-image-column {
		flex: 1;
		max-width: 100%;
	}
	
	.toilet-modules-layout {
		flex-direction: column;
		gap: 20px;
	}
	
	.toilet-modules-layout .image-column {
		flex: 1;
	}
}

/* Contact Page Styles */
.contact-intro {
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-left: 4px solid #1a365d;
	border-radius: 4px;
}

.contact-intro p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

.contact-intro a {
	color: #1a365d;
	font-weight: 600;
	text-decoration: underline;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.contact-card {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	border-bottom: 2px solid #1a365d;
	color: #1a365d;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.contact-item:last-child {
	margin-bottom: 0;
}

.contact-item svg {
	flex-shrink: 0;
	margin-top: 2px;
	color: #1a365d;
}

.contact-item strong {
	display: block;
	color: #1a365d;
	margin-bottom: 4px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item a {
	color: #333;
	text-decoration: none;
	font-size: 15px;
	transition: color 0.2s;
}

.contact-item a:hover {
	color: #bba43f;
}

@media screen and (max-width: 767px) {
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.product-certifications {
	max-width: 100%;
	width: 100%;
	margin: 0 0 40px 0;
	padding: 0 25px 20px 25px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	box-sizing: border-box;
	clear: both;
	position: relative;
}

@media screen and (max-width: 959px) {
	.product-certifications {
		max-width: 720px;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 30px 15px 20px 15px;
	}
}

@media screen and (max-width: 767px) {
	.product-certifications {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px 15px;
	}
}

.product-certifications > div {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	padding: 25px;
	border-radius: 2px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.product-certifications h5 {
	color: #1a365d;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 12px 0;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.product-certifications h5::before {
	display: none;
}

.product-certifications p {
	color: #4a5568;
	line-height: 1.7;
	margin: 0;
	font-size: 13px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.product-certifications .cert-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 10px 0 0 0;
	font-size: 11px;
}

.product-certifications .cert-badge {
	background: #1a365d;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 2px;
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

#certdivcontainer {
	overflow: hidden;
	margin-top: 20px;
}

.cert-bodies-section {
	width: auto;
	background: #f8f9fa;
	border: 1px solid #e0e0e0;
	padding: 25px;
	margin: 40px 25px 22px 25px;
	border-radius: 2px;
	box-sizing: border-box;
	clear: both;
	display: flex;
	align-items: center;
	gap: 40px;
}

.cert-bodies-text {
	flex: 0 0 auto;
	min-width: 280px;
}

.cert-bodies-text h5 {
	color: #1a365d;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 8px 0;
}

.cert-bodies-text p {
	color: #4a5568;
	line-height: 1.6;
	margin: 0;
	font-size: 13px;
}

.cert-bodies-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	flex: 1;
}

.cert-bodies-section .cert-badge {
	background: #1a365d;
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 2px;
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
	font-size: 13px;
}

@media screen and (max-width: 767px) {
	.cert-bodies-section {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 25px;
	}
	
	.cert-bodies-text {
		min-width: auto;
	}
}

#relatedProductsTitle {
	font-size: 20px;
}
#basketRight h3,
#shipping-calculator h3 {
	font-weight: 700;
	font-size: 14px;
	font-family: "Droid Sans";
}
.nivo-caption h3 {
	font-size: 30px;
	line-height:1;
}

h4,
h5,
h6 {
	font-family: "Droid Sans";
	font-weight: 700;
}
.articleWrapper h2 {
	font-size: 18px;
	font-family: "Droid Sans";
	text-transform: none;
}
#latestNewsWidget h2 {
	font-size: 14px;
	font-family: "Droid Sans";
	text-transform: none;
}
.collectionProduct header h2,
.relatedProduct h2,
.featuredProduct h2 {
	font-family: "Droid Sans";
	font-size: 14px;
}

/* ----------------------------------------------------------------
General Styling
-----------------------------------------------------------------*/

html {
	min-height: 100%;
	min-width: 100%;
	background: #e0e0e0;
}
body {
	min-height: 100%;
	min-width: 100%;
background-color: #341175;
}
body#tinymce {
	color: black;
}
#topWrapper {
	min-width: 100%;
	background-color: #ffffff;
}
#topWrapper::before {
	content: none;
}
#topWrapper::after {
	content: none;
}
#topHeader::before {
	content: none;
}
#topHeader::after {
	content: none;
}
#topHeader {
	height: 136px;
	position: relative;
	z-index: 1;
}
#topHeader.fixedNavPadding {
	padding-bottom: 45px;
}
#headerLeft {
	width: 710px;
	float: left;
	position: relative;
	z-index: 2;
}
#headerRight {
	width: 250px;
	float: right;
	margin: 0;
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 136px;
}
#socialLinks {
	display: flex;
	align-items: center;
	gap: 15px;
	float: right;
	position: relative;
	z-index: 1;
}
#socialLinks a {
	opacity: 0.9;
	filter: alpha(opacity=90);
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	text-indent: -9999px;
	position: relative;
}
#socialLinks a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: #1a365d;
	transition: background var(--transition-fast);
}
#socialLinks a#facebookLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#emailLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#phoneLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#twitterLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#vimeoLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="23 7 16 12 23 17 23 7"/><rect x="1" y="5" width="15" height="14" rx="2" ry="2"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="23 7 16 12 23 17 23 7"/><rect x="1" y="5" width="15" height="14" rx="2" ry="2"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#pinterestLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M8.5 14.5c-.5 2-1.5 3.5-2.5 3.5-1 0-1.5-2-1-4 .5-2 2-5 3.5-5 1.5 0 1.5 2.5.5 3.5"/><path d="M12 3c3.5 0 6.5 3 6.5 6.5 0 3-2 5.5-4.5 5.5-1 0-2-.5-2-1.5 0-1.5 1.5-2 1.5-4 0-2-2-2.5-3-1.5-1 1-1 3 0 4.5"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M8.5 14.5c-.5 2-1.5 3.5-2.5 3.5-1 0-1.5-2-1-4 .5-2 2-5 3.5-5 1.5 0 1.5 2.5.5 3.5"/><path d="M12 3c3.5 0 6.5 3 6.5 6.5 0 3-2 5.5-4.5 5.5-1 0-2-.5-2-1.5 0-1.5 1.5-2 1.5-4 0-2-2-2.5-3-1.5-1 1-1 3 0 4.5"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a#youTubeLink::before {
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"/><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"/></svg>') no-repeat center;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"/><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"/></svg>') no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
}
#socialLinks a:hover::before {
	background: #bba43f;
}
#socialLinks a:focus,
#socialLinks a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
#searchWrapper {
	width: 250px;
	height: 35px;
	float: right;
	margin: 30px 0 0;
	position: relative;
	z-index: 90;
}
#searchInput {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
	color: #fff;
	width: 100px;
	height: 18px;
	padding: 5px 30px 5px 10px;
	float: right;
	display: block;
	outline: 0;
	border: 0;
	background: #000;
	border-radius: 15px;
}
#searchInput:focus {
	outline: none;
	background: #333;
}
#searchButton {
	position: absolute;
	top: 0px;
	right: 6px;
	z-index: 100;
	width: 15px;
	height: 25px;
	background: url(../uploads/assets/searchButton.png) no-repeat 0 0;
	display: block;
	margin-top: 8px;
	margin-left: -20px;
	outline: 0;
	border: 0;
	text-transform: uppercase;
	color: transparent;
	text-indent: -9999px;
	cursor: pointer;
}
#logoWrapper {
	width: 680px;
	height: 136px;
	line-height: 136px;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
	z-index: 2;
}

#logo {
	vertical-align: middle;
	opacity: 1;
	-transition-property: opacity;
	-webkit-transition-duration: 0.4s;
}
#logo:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}

#navWrapper {
	min-width: 100%;
	background: #333 url(../uploads/assets/airNav_bkgd.png) repeat-x 0 0;
	height: 45px;
	position: relative;
	z-index: 999;
}
#navWrapper.fixedNavWrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	-moz-box-shadow: 0 0 20px #000;
	-webkit-box-shadow: 0 0 20px #000;
	box-shadow: 0 0 20px #000;
}
	-webkit-box-shadow: 0 0 20px #000;
	box-shadow: 0 0 20px #000;
}
#navWrapper.fixedNavWrapper #mobileContactIcons {
	display: flex;
	position: absolute;
	top: 10px;
	right: 20px;
	gap: 12px;
}
#navWrapper.fixedNavWrapper #mobileContactIcons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	position: relative;
}
#navWrapper.fixedNavWrapper #mobileEmailLink::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
	transition: opacity 0.2s ease;
}
#navWrapper.fixedNavWrapper #mobilePhoneLink::before {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
	transition: opacity 0.2s ease;
}
#navWrapper.fixedNavWrapper #mobileContactIcons a:hover::before {
	opacity: 0.7;
}
#navWrapper select {
	display: none;
}
#mobileContactIcons {
	display: flex;
}
#mainNav li {
	float: left;
	margin: 0 30px 0 15px;
	position: relative;
}
#mainNav li:first-child {
	margin-left: 0;
}
#mainNav li:last-child {
	margin-right: 0;
}
#mainNav li a,
#mainNav li a:link,
#mainNav li a:active,
#mainNav li a:visited {
	padding: 5px 8px 5px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 44px;
	font-size: 14px;
}
#mainNav li a:focus,
#mainNav li a:hover {
	color: #b19b3b;
}
#mainNav li.activePage a,
#mainNav li.activePage a:link,
#mainNav li.activePage a:active,
#mainNav li.activePage a:visited,
#mainNav li.activePage a:focus,
#mainNav li.activePage a:hover,
#mainNav li.hoveredPage a,
#mainNav li.hoveredPage a:link,
#mainNav li.hoveredPage a:active,
#mainNav li.hoveredPage a:visited,
#mainNav li.hoveredPage a:focus,
#mainNav li.hoveredPage a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
	background: #111111;
	border-radius: 3px;
	box-shadow: 0 0 1px #777;
}
#mainNav li ul {
	display: none;
	position: absolute;
	z-index: 999;
	top: 33px;
	left: 0;
	width: 160px;
	background: #111111;
	padding: 10px 0 0;
	margin: 0;
	box-shadow: 0 1px 1px #777;
	border-radius: 3px;
	border-top-left-radius: 0;
	background-clip: padding-box;
}
#mainNav li ul li {
	float: none;
	padding: 0;
	margin: 0;
	height: auto;
	width: 160px;
}
#mainNav li ul li a,
#mainNav li ul li a:link,
#mainNav li ul li a:active,
#mainNav li ul li a:visited,
#mainNav li.activePage ul li a,
#mainNav li.activePage ul li a:link,
#mainNav li.activePage ul li a:active,
#mainNav li.activePage ul li a:visited,
#mainNav li.hoveredPage ul li a,
#mainNav li.hoveredPage ul li a:link,
#mainNav li.hoveredPage ul li a:active,
#mainNav li.hoveredPage ul li a:visited {
	font-size: 12px;
	background: 0 !important;
	height: auto;
	width: auto;
	padding: 10px;
	text-align: left;
	margin: 0;
	display: block;
	line-height: 15px;
	border-radius: 0;
	border: 0;
	box-shadow: 0 0 0 #777;
}
#mainNav li ul li a:focus,
#mainNav li ul li a:hover,
#mainNav li.activePage ul li a:focus,
#mainNav li.activePage ul li a:hover,
#mainNav li.hoveredPage ul li a:focus,
#mainNav li.hoveredPage ul li a:hover {
	background: 0;
}
.hasChildrenArrow {
	display: inline;
	width: 1px;
	height: 2px;
	padding: 2px 5px;
	background: url(../uploads/assets/hasChildrenArrow.png) no-repeat 50%
		50%;
}

/* ----------------------------------------------------------------
Content
-----------------------------------------------------------------*/
#contentWrapper {
	min-width: 100%;
	position: relative;
	z-index: 90;
}
#content {
	min-height: 550px;
	background: #fff;
	width: 948px;
	padding: 6px 6px 0px;
	box-shadow: 0 0 6px #666666;
	/* padding-bottom: 60px; */
	margin-bottom: 20px;
}
#contentSections {
	margin: 30px 0;
}
#welcomeCol {
	width: 100%;
	margin: 6px 0 0 0;
	box-sizing: border-box;
}
#welcomeContent {
	background: #fff;
}
#middleCol {
	width: 216px;
	margin: 0 6px 0 0;
	padding: 0 8px;
}
#rightCol {
	width: 232px;
	margin: 6px 0 0 0;
}
#mainContent {
	width: 650px;
	padding: 25px 0 25px 25px;
}

/* Full width mainContent when no sidebar */
#mainContent[style*="max-width: 100%"] {
	width: auto !important;
}
#pageHeader {
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x left
		bottom;
	margin-bottom: 25px;
}
#breadcrumbs {
	font-size: 11px;
	text-transform: uppercase;
	margin-bottom: 6px;
}
#breadcrumbs a,
#breadcrumbs a:link,
#breadcrumbs a:visited,
#breadcrumbs a:active,
#breadcrumbs span.separator {
	color: #999;
}
#breadcrumbs a:focus,
#breadcrumbs a:hover {
	color: #000;
}
#breadcrumbs span.page-title {
	color: #444;
}
#pageHeader h1 {
	margin-bottom: 0px;
	padding-bottom: 25px;
}

/* ----------------------------------------------------------------
Footer
-----------------------------------------------------------------*/
#footerWrapper {
	width: 100%;
	background: #888894;
	min-height: 210px;
	margin-top: -15px;
	position: relative;
	z-index: 100;
}
#footerWrapper::before {
	content: '';
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 Q150,10 300,30 T600,30 T900,30 T1200,30 L1200,60 L0,60 Z" fill="%23888894"/></svg>') bottom center no-repeat;
	background-size: 100% 50px;
	z-index: -1;
}
#footerNavWrapper {
	padding: 30px 0 0;
}
#footerNavWrapper select {
	display: none;
}
#footerNav li {
	float: left;
	width: auto;
	margin: 0 60px 0 0;
}
#footerNav li:last-child {
	margin: 0;
}
#footerNav li a,
#footerNav li a:link,
#footerNav li a:active {
	text-transform: uppercase;
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
}
#footerNav li a:focus,
#footerNav li a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
#footerNav li ul {
	margin: 10px 0 0;
}
#footerNav li ul li {
	float: none;
	margin: 0 0 3px 0;
}
#footerNav li ul li a,
#footerNav li ul li a:link,
#footerNav li ul li a:active {
	text-transform: none;
	font-size: 12px;
	color: #ffffff;
	font-weight: 400;
}
#footerNav li ul li a:focus,
#footerNav li ul li a:hover {
	color: #000;
}
#footerLeft {
	width: 625px;
}
#footerRight {
	width: 288px;
	margin: 20px 0 10px 0;
	padding: 15px 0 0 30px;
	border-left: 1px solid #999;
}
#footerRight p {
	margin: 0 0 20px;
}
#footerContact {
	width: 100%;
	display: block;
	font-size: 11px;
	line-height: 15px;
	display: block;
	height: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin: 30px 0 10px 0;
}
#copyright {
	width: 100%;
	display: block;
	font-size: 11px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}
#copyright span {
	display: inline-block;
}
#copyright a,
#copyright a:link,
#copyright a:visited {
	color: #ffffff;
}
#copyright a:focus,
#copyright a:hover,
#copyright a:active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.tel {
	display: inline-block;
	background: url(../uploads/assets/footerIcons.png) no-repeat 0 -18px;
	padding-left: 24px;
	margin-right: 30px;
	color: white;
}
.address {
	color: white;
	background: url(../uploads/assets/footerIcons.png) no-repeat 0 -40px;
	padding-left: 20px;
	margin-right: 30px;
}
#footerContact .email,
#footerContact .email:link,
#footerContact .email:active,
#footerContact .email:visited {
	background: url(../uploads/assets/footerIcons.png) no-repeat 0 1px;
	padding-left: 24px;
	color: #ffffff;
}
#footerContact .email:focus,
#footerContact .email:hover {
	color: #ffffff;
}
#mc_embed_signup {
	width: 100%;
	overflow: hidden;
}
#mc_embed_signup label {
	display: block;
	color: #fff;
	font-weight: normal;
	margin-bottom: 10px;
}
#mc_embed_signup #mce-EMAIL {
	float: left;
	color: #ccc;
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	width: 209px;
	padding: 0 10px;
	height: 37px;
	outline: 0;
	background: #444;
	border: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
#mc_embed_signup #mce-EMAIL:focus {
	color: #fff;
	background: #333;
}
#mc_embed_signup #fbrp__33 {
	font-size: 12px;
	float: left;
	cursor: pointer;
	width: 59px;
	height: 37px;
	text-align: center;
	outline: 0;
	text-transform: uppercase;
	color: #ddd;
	outline: 0;
	border: 0;
	background: #2b2b2b;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJiMmIyYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #2b2b2b 0%, #000000 100%);
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		color-stop(0%, #2b2b2b),
		color-stop(100%, #000000)
	);
	background: -webkit-linear-gradient(top, #2b2b2b 0%, #000000 100%);
	background: -o-linear-gradient(top, #2b2b2b 0%, #000000 100%);
	background: -ms-linear-gradient(top, #2b2b2b 0%, #000000 100%);
	background: linear-gradient(top, #2b2b2b 0%, #000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b2b2b', endColorstr='#000000',GradientType=0 );
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
#mc_embed_signup #fbrp__33:focus,
#mc_embed_signup #fbrp__33:hover {
	color: #fff;
}
#paymentMethods {
	margin: 30px 0 0;
}
#paymentMethods h5 {
	color: #ffffff;
	font-size: 14px;
	display: block;
	height: 15px;
}
#paymentMethods p img {
	margin: 0 0 0 6px;
}
#paymentMethods p img:first-child {
	margin: 0 !important;
}

/* ----------------------------------------------------------------
Billboard
-----------------------------------------------------------------*/
#billboardWrapper {
	background: #f3f3f3 url(../uploads/assets/progress.gif) no-repeat 50%
		50%;
	height: 388px;
	width: 948px;
	overflow: hidden;
}
#billboard {
	height: 388px;
	width: 948px;
}

/* ----------------------------------------------------------------
Ads Styling
-----------------------------------------------------------------*/
#spotlightsWrapper {
	margin: 6px 0 0 0;
}
#largeSpotlight {
	width: 472px;
	background: #333;
	height: 300px;
	margin: 0 6px 0 0;
	overflow: hidden;
	position: relative;
}
#middleSpotlight,
#rightSpotlight {
	width: 232px;
	background: #333;
	height: 300px;
	margin: 0 6px 0 0;
	overflow: hidden;
	position: relative;
}
#rightSpotlight {
	margin-right: 0;
}
#spotlightsWrapper img {
	position: relative;
	z-index: 100;
}
#spotlightsWrapper figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 110;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
}
#largeSpotlightText {
	width: 448px;
	padding: 18px 12px 14px;
}
#largeSpotlight:hover figcaption,
#middleSpotlight:hover figcaption,
#rightSpotlight:hover figcaption {
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 1);
}
#rightSpotlightText,
#middleSpotlightText {
	width: 224px;
	padding: 18px 12px 14px;
}
#spotlightsWrapper figcaption h2 {
	margin-bottom: 0px;
	color: #fff;
	display: inline;
}

/* ----------------------------------------------------------------
Testimonials Widget
-----------------------------------------------------------------*/
.testimonials blockquote {
	background: url(../uploads/assets/airQuoteBottom.png) no-repeat right
		bottom;
	font-size: 15px;
	line-height: 22px;
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
}
.testimonials blockquote p {
	background: url(../uploads/assets/airQuoteTop.png) no-repeat 0 0;
	padding: 14px 24px 14px 24px;
	margin: 0 0 18px 0;
	color: #ccc;
	text-align: center;
	font-size: 15px;
	line-height: 22px;
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
}
.testimonials .quoteAuthor {
	display: block;
	margin: 0 35px 0 0;
	text-align: right;
	font-size: 13px;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
}
#middleCol .testimonials {
	padding-top: 6px;
}
#middleCol .testimonials h1 {
	display: none;
}

/* ----------------------------------------------------------------
Sidebars
-----------------------------------------------------------------*/
#sidebar {
	width: 241px;
	margin: 27px -11px 30px 0;
	color: #000;
	font-size: 14px;
}
#sidebar p {
	color: #000;
}
#sidebarBkgd {
	background: url(../uploads/assets/airSidebar_bkgd.png) repeat-y 0 0;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
#topBar {
	width: 241px;
	height: 4px;
	display: block;
	background: url(../uploads/assets/topBar.png) no-repeat 0 0;
}
#sidebar section {
	border-top: 2px solid black;
	padding: 15px 10px;
}
#sidebar h1 {
}
#subPages ul {
	border-top: 2px solid #000;
}
#subPages ul li {
	border-bottom: 1px solid #ddd;
	padding: 0 1px;
}
#subPages ul li a,
#subPages ul li a:link,
#subPages ul li a:active,
#subPages ul li a:visited {
	padding: 10px 9px;
	display: block;
	color: #000;
}
#subPages ul li a:focus,
#subPages ul li a:hover {
	background: #eee;
	color: #444;
}
#latestNewsWidget article {
	margin-bottom: 20px;
}
#latestNewsWidget h2 {
	font-size: 14px;
	line-height: 16px;
	margin: 0;
}
#facebookLike iframe {
	background: #fff;
}
#facebookLike h1 {
}
#blogTags {
	margin-bottom: 30px;
}
#blogTags li {
	float: left;
	margin: 0 2px 6px 0;
}
#blogTags li a,
#blogTags li a:link,
#blogTags li a:active,
#blogTags li a:visited {
	padding: 5px;
	color: #999;
	font-size: 12px;
	display: block;
	transition: background-color 0.2s ease-in;
	border-radius: 3px;
}
#blogTags li a:focus,
#blogTags li a:hover,
#blogTags li.activeTag a,
#blogTags li.activeTag a:link,
#blogTags li.activeTag a:active,
#blogTags li.activeTag a:visited,
#blogTags li.activeTag a:focus,
#blogTags li.activeTag a:hover {
	background: #888;
	color: #fff;
}
#twitterFeed h1 {
	margin: 0 !important;
}
#twitterHeader,
#twitterHeader:link,
#twitterHeader:active,
#twitterHeader:visited {
	color: #000;
}
#twitterHeader:focus,
#twitterHeader:hover {
	color: #bba43f;
}
.twtr-doc {
	width: 216px !important;
}
.twtr-ft,
.twtr-hd {
	display: none;
}
.twtr-timeline {
	height: 100% !important;
}
.twtr-bd {
	font-weight: bold;
	color: #111;
	font-weight: normal !important;
}
.twtr-bd p {
	color: #111 !important;
	line-height: 18px;
}
.twtr-widget .twtr-tweet {
	padding: 20px 0 20px 0;
	color: #111 !important;
	border: 0 !important;
	border-bottom: 1px solid #ddd !important;
}
.twtr-widget p {
	line-height: 18px !important;
}
.twtr-tweet-text p em {
	margin-top: 3px;
	font-size: 10px !important;
}
.twtr-widget .twtr-tweet-wrap {
	padding: 0 !important;
	border: 0;
}
#copy {
	margin: 20px 0 0 0;
	color: #111;
	line-height: 40px;
}
.index #sidebar {
	width: 241px;
	margin: -10px -11px 30px 0;
}
.index #sidebarBkgd {
	padding-bottom: 0;
}
.index #sidebar section {
	padding: 12px;
}
.index #middleCol .twtr-doc {
	width: 196px !important;
	padding: 0 10px;
}
.index #facebookLike h1 {
	display: none;
}
#welcomeContent {
	padding: 0 20px;
}
#welcomeContent h1,
#middleCol #latestNewsWidget h1 {
}

/* ----------------------------------------------------------------
Article/Blog Templates
-----------------------------------------------------------------*/
#articleHeader {
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x left
		bottom;
	margin-bottom: 25px;
}
#articleHeader h1 {
	margin-bottom: 0px;
}
#articleHeader .articleMeta {
	padding-bottom: 20px;
}
#articleHeader time {
	margin-top: 2px;
}
.articleDate {
	width: 36px;
	height: 40px;
	float: left;
	margin: 0 16px 20px 0;
}
.dateMonth {
	width: 36px;
	background: #ff3c00;
	color: #fff;
	display: block;
	height: 15px;
	line-height: 15px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.dateDay {
	width: 34px;
	height: 22px;
	line-height: 21px;
	color: #777;
	text-align: center;
	display: block;
	font-size: 13px;
	font-weight: bold;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	border: 1px solid #ddd;
	border-top: 0;
	background-clip: padding-box;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}
.articleSummary {
	margin: 0 0 0 52px;
}
.articleSummary p {
	margin: 0;
}
.articleSummary a {
	white-space: nowrap;
}
.articleMeta {
	color: #868686;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 15px;
}
.articleMeta a {
	white-space: nowrap;
}
.articleWrapper h2 {
	line-height: 22px;
	margin-bottom: 2px;
}
.articleWrapper,
#articleBody {
	border-bottom: 1px solid #eee;
	margin-bottom: 40px;
	padding-bottom: 40px;
}
#latestNews {
	position: relative;
}
#latestNews .articleWrapper {
	border-bottom: 0;
	margin-bottom: 0px;
	padding-bottom: 0px;
}
#latestNews h1 {
	margin-bottom: 15px;
	width: 183px;
	height: 49px;
	background: url(https://sasgp.com/uploads/assets/latestNewsHeading.png)
		no-repeat 0 0;
	color: #fff;
	padding: 12px 0 0 15px;
	margin-left: -11px;
}
#latestNews .articleDate {
	width: 36px;
	height: 40px;
	float: left;
	margin: 0 16px 0 10px;
}
#latestNews .articleSummary {
	border-bottom: 1px solid #eaeaea;
	padding: 0 10px 30px 52px;
	margin: 0 0 20px 10px;
}
#latestNewsRotatorNav {
	position: absolute;
	top: 20px;
	left: 136px;
	z-index: 200;
}
#latestNewsPrev,
#latestNewsNext {
	float: left;
	margin: 0 5px 0 0;
	background: url(../uploads/assets/latestNewsRotatorNav.png) no-repeat 0
		0;
	width: 9px;
	height: 12px;
	display: block;
	text-indent: -9999px;
}
#latestNewsNext {
	background-position: -9px 0;
}
#latestNews,
#latestNewsRotator,
#latestNews .articleWrapper {
	width: 472px !important;
}
#articleTags {
	background: url(../uploads/assets/tagsIcon.gif) no-repeat 0 3px;
	margin-bottom: 30px;
}
#articleTags li {
	float: left;
	margin: 0 2px 6px 0;
}
#articleTags li:first-child {
	margin-left: 30px;
}
#articleTags li a,
#articleTags li a:link,
#articleTags li a:active,
#articleTags li a:visited {
	padding: 5px;
	background: #eee;
	color: #111;
	font-size: 11px;
	display: block;
	transition: background-color 0.2s ease-in;
	border-radius: 3px;
}
#articleTags li a:focus,
#articleTags li a:hover {
	background: #aaa;
	color: #000;
}
#comments {
	margin: 0 0 50px 0;
}
#commentsList {
	list-style: none outside !important;
	margin: 0 0 30px 0 !important;
}
#commentsList article {
	list-style: none outside !important;
	border-bottom: 1px solid #ddd;
	padding: 15px;
	margin: 0 !important;
	background: #f3f3f3;
}
#commentsList article p {
	margin-bottom: 8px;
	color: #555;
	line-height: 18px;
	font-size: 12px;
}
#commentsList article .commentDetails p {
	color: #999;
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
}
#commentsList article.odd {
	background: #fff;
}
.commentGravatar {
	float: left;
	padding: 4px;
	background: #fff;
	border: 1px solid #ddd;
	margin: 0 15px 15px 0;
}
.commentFieldRow label {
}
.commentFieldRow p {
	margin: 0 0 30px 0 !important;
	min-height: 30px;
	clear: both;
}
.commentFieldRow input,
.commentFieldRow textarea {
	float: left;
	padding: 9px !important;
}
.commentFieldRow textarea {
	width: 400px;
}
.noticeSuccess p {
	padding: 10px 15px;
	background: #e3f5d6;
	color: #378c09;
	margin: 10px 0;
	border-radius: 4px;
	background-clip: padding-box;
}
.errors,
.noticeError p {
	padding: 10px 15px;
	background: #f0cbcc;
	color: #990000;
	margin: 10px 0;
	border-radius: 4px;
	background-clip: padding-box;
}
.errors {
	margin-bottom: 30px !important;
}
.errors ul {
	margin: 0 !important;
}
.errors ul li {
	list-style: none;
	margin: 0 !important;
	padding: 10px 0;
}
#commentsTitle {
	margin-bottom: 25px;
}
#commentForm h2 {
	margin-bottom: 20px;
}

/* ----------------------------------------------------------------
Collection Template
-----------------------------------------------------------------*/
#collectionHeader {
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x left
		bottom;
	margin: 0 0 30px 23px;
	width: 900px;
	overflow: hidden;
	padding: 25px 0 15px;
}
#collectionDescription {
	border-bottom: 1px solid #eaeaea;
	margin: 0 25px 30px;
	padding-bottom: 10px;
}
#collectionImageWrapper img {
	border: 0;
	padding: 0;
	max-width: 100%;
	margin-bottom: 20px;
}
#collectionHeader h1 {
	margin: 0;
	padding: 0 15px 10px 0;
	float: left;
}
#subCollections {
	padding: 0 4px;
	background: #eee;
	margin: -4px 0 0 0;
	border-radius: 4px;
}
#subCollections a,
#subCollections a:link,
#subCollections a:visited {
	text-transform: uppercase;
	font-size: 11px;
	color: #444;
	padding: 3px 7px;
	display: inline-block;
	background: #eee;
	margin: 8px 4px;
	border-radius: 4px;
}
#subCollections a:focus,
#subCollections a:hover,
#subCollections a:active {
	background: #ccc;
}
#subCollections a.activeSubCollection {
	background: #111;
	color: #fff;
	border-radius: 4px;
}
#collectionProducts {
	width: 923px;
	margin: 0 0 30px 23px;
}
.collectionProduct {
	float: left;
	margin: 0 14px 30px 0;
	position: relative;
	height: 290px;
	width: 215px;
}
.collectionProduct .collectionProductImageWrapper {
	text-align: center;
	background: #fff;
	display: block;
	height: 215px;
	width: 215px;
	line-height: 212px;
	overflow: hidden;
	box-shadow: 0 0 1px #bbb;
}
.collectionProduct .collectionProductImageWrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity 0.2s ease-in;
}
.collectionProduct .collectionProductImageWrapper:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.collectionProduct header {
	margin: 8px 0 0;
	padding: 0 7px;
}
.collectionProduct header h2 {
	color: #000;
	margin: 0 0 3px 0;
	font-weight: 700;
	line-height: 21px;
}
.collectionProduct header .productVendor {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
	color: #919191;
}
.collectionProduct header .collectionProductPrice {
	color: #91b46e;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 12px;
}
.collectionProductLarge {
	float: left;
	margin: 0 15px 60px 0;
	position: relative;
	height: 290px;
	width: 290px;
}
.collectionProductLarge .collectionProductImageWrapper {
	text-align: center;
	background: #fff;
	display: block;
	height: 290px;
	width: 290px;
	line-height: 288px;
	overflow: hidden;
	box-shadow: 0 0 1px #bbb;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity 0.2s ease-in;
}
.collectionProductLarge img {
	display: inline;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity 0.2s ease-in;
}
.collectionProductLarge:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.collectionProductLarge header {
	background: url(../uploads/assets/airFeaturedProductHeader.png)
		no-repeat 0 0;
	width: 259px;
	position: absolute;
	bottom: 15px;
	left: -5px;
	padding: 15px 12px;
	color: #fff;
}
.collectionProductLarge header h2 {
	color: #fff;
	text-shadow: -1px -1px 0 #000;
	margin: 0 0 3px 0;
	line-height: 21px;
}
.collectionProductLarge header .productVendor {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
	color: #ddd;
}
.collectionProductLarge header .collectionProductPrice {
	color: #91b46e;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.oldPriceCollection {
	font-weight: 400;
	color: #999;
	font-size: 10px;
	text-decoration: line-through;
	padding-right: 5px;
}
.onSale {
	width: 34px;
	height: 18px;
	line-height: 18px;
	text-align: center;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #fff;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 999;
	border-radius: 4px;
	font-size: 10px;
	font-weight: bold;
	background: #91b46e;
}
.productWrapperLink {
	position: relative;
	display: block !important;
	width: 100%;
	height: 100%;
}

/* ----------------------------------------------------------------
Product Template
-----------------------------------------------------------------*/
#productHeader {
	margin-bottom: 20px;
}
#productHeader h1 {
	margin: 15px 0 5px 0;
}
#productVendor {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	color: #333;
	font-size: 12px;
}
#productDetails {
	width: 320px;
}
#productOptions {
}
#productImages {
	width: 320px;
}
#productImages a {
	float: left;
	margin: 0 12px 6px 0;
}
#featuredThumb img {
	box-shadow: 0 0 1px #bbb;
}
#productImages .productThumb {
	background: #fff;
	text-align: center;
	overflow: hidden;
	height: 50px;
	line-height: 50px;
	box-shadow: 0 0 1px #bbb;
}
#productImages .productThumb img {
	display: inline;
	text-align: center;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	opacity: 0.5;
	filter: alpha(opacity=50);
	transition: opacity 0.2s ease-in;
}
#productImages .productThumb:hover img,
#productImages .activeThumb img {
	opacity: 1;
	filter: alpha(opacity=100);
}
#productTags {
	background: url(../uploads/assets/tagsIcon.gif) no-repeat 0 3px;
	margin-bottom: 30px;
}
#productTags li {
	float: left;
	margin: 0 2px 6px 0;
}
#productTags li:first-child {
	margin-left: 30px;
}
#productTags li a,
#productTags li a:link,
#productTags li a:active,
#productTags li a:visited {
	padding: 5px;
	background: #eee;
	color: #111;
	font-size: 11px;
	display: block;
	transition: background-color 0.2s ease-in;
	border-radius: 3px;
}
#productTags li a:focus,
#productTags li a:hover {
	background: #aaa;
	color: #000;
}
#productContent {
	margin-bottom: 30px;
	width: 552px;
	padding: 50px 0 0;
}

#productDescription {
	padding: 0 40px 30px 0;
}
#productReviews {
	background: url(../uploads/assets/horzSep.gif) no-repeat left top;
	padding: 40px 40px 30px 0;
}
#socialSharing {
	background: url(../uploads/assets/socialSharing.jpg) no-repeat 0 0;
	width: 98px;
	height: 500px;
	text-align: right;
	padding: 50px 0 0 0;
}
#socialSharing span {
	margin: 0 0 5px 0;
}
#productReviews h3 {
}
#productPriceWrapper {
	width: 190px;
	float: left;
	margin: 10px 0 0;
}
#productPrice {
	margin: 0 0 10px 0;
	font-weight: 700;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 20px;
	color: #91b46e;
}
#oldPrice {
	padding: 6px 10px 0 0;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #999;
	text-decoration: line-through;
}
.productOnSale {
	width: 34px;
	height: 18px;
	margin: 0 0 0 5px;
	line-height: 18px;
	text-align: center;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	color: #fff;
	display: inline-block;
	border-radius: 4px;
	font-size: 10px;
	font-weight: bold;
	background: #91b46e;
}
#priceTitle {
	color: #000;
}
#productBuy {
	float: right;
	text-align: right;
}
#purchaseWrapper {
	padding: 30px 0;
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x 0 0;
}
#productVariants {
	padding-bottom: 10px;
}
#productVariants label {
	float: left;
	width: 168px;
	margin: 3px 0 10px 0;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 700;
	color: #999;
}
#productVariants .selector-wrapper {
	float: none;
	margin: 0 0 10px 0;
}
#productVariants .selector-wrapper select {
	height: 20px;
	width: 150px;
}
.addToCart {
	opacity: 1;
	filter: alpha(opacity=100);
	cursor: pointer;
	text-align: center;
	padding: 0 10px;
	line-height: 40px;
	height: 40px;
	background: #e6c84d url(../uploads/assets/btnStyleGradient.png)
		repeat-x 0 0;
	color: #000000;
	outline: 0;
	margin: 0;
	border: 1px solid #e6c84d;
	border-radius: 4px;
	background-clip: padding-box;
}
.addToCart:focus,
.addToCart:hover {
	background-color: #f3d351;
}
.addToCart:active {
	background: #e6c84d;
}
.disabled,
.disabled:focus,
.disabled:hover,
.disabled:active {
	opacity: 0.7;
	filter: alpha(opacity=70);
	cursor: default;
	background: #e6c84d url(../uploads/assets/btnStyleGradient.png)
		repeat-x 0 0;
	color: #000000;
	outline: 0;
	margin: 0;
	border: 1px solid #e6c84d;
	text-transform: uppercase;
	border-radius: 4px;
	background-clip: padding-box;
}

/* ----------------------------------------------------------------
Featured Products
-----------------------------------------------------------------*/
#featuredProducts {
	min-height: 300px;
	height: auto;
	background: url(../uploads/assets/airFeaturedProducts_bkgd.png)
		repeat-x 0 0;
	padding: 40px 0 20px 33px;
	width: 935px;
	margin-left: -10px;
	position: relative;
}
#featuredProductsList {
	display: block;
}

#bestSellersList {
	display: none;
}

#featuredProductsNav {
	position: absolute;
	top: -22px;
	left: 23px;
}
#featuredProductsLink,
#bestSellersLink {
	cursor: pointer;
	border: 0;
	outline: 0;
	margin-right: 1px;
	color: #474747;
	background: #cdcdcd;
	float: left;
	text-align: center;
	padding: 0 11px;
	display: block;
	height: 27px;
	line-height: 27px;
	font-weight: 700;
	font-size: 18px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}
.featuredProductsActive {
	background: url(../uploads/assets/airFeaturedProductsLink.jpg) repeat 0
		0 !important;
	color: #fff !important;
}
#featuredProducts .collectionProduct header h2 {
	color: #fff;
}
#featuredProducts .collectionProduct {
	margin-bottom: 0;
}
#featuredProducts .collectionProduct .collectionProductImageWrapper {
	box-shadow: 0 0 3px #000;
}

/* ----------------------------------------------------------------
Related Products
---------------------------------------------------------------- */
#relatedProducts {
	width: 958px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	padding-bottom: 30px;
	margin-left: -6px;
	background: #eaeaea url(../uploads/assets/relatedProducts_bkgd.jpg)
		repeat 0 0;
}
#relatedProductsBar {
	margin: 20px 0;
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x 0 0;
	border-bottom: 1px solid #fff;
	height: 5px;
	width: 100%;
	display: block;
}
#relatedProductsTitle {
	color: #000;
	margin: 0 0 20px 27px;
}
#relatedProductsListing {
	margin-left: 27px;
}
.relatedProduct {
	float: left;
	margin: 0 14px 30px 0;
	position: relative;
	height: 250px;
	width: 215px;
}
.relatedProduct .relatedProductImageWrapper {
	text-align: center;
	display: block;
	height: 215px;
	width: 215px;
	line-height: 215px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 1px #bbb;
}
.relatedProduct .relatedProductImageWrapper img {
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
	display: inline;
	vertical-align: middle;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: opacity 0.2s ease-in;
}
.relatedProduct .relatedProductImageWrapper:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
.relatedProduct header {
	margin: 8px 0 0;
	padding: 0 7px;
}
.relatedProduct header h2 {
	color: #000;
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 3px 0;
}
.relatedProduct header .productVendor {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
	color: #919191;
}
.relatedProduct header .collectionProductPrice {
	color: #91b46e;
	font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 12px;
}

/* ----------------------------------------------------------------
Shipping Calculator Styling
---------------------------------------------------------------- */
#shipping-calculator {
	overflow: hidden;
	width: 360px;
	padding: 40px 40px 30px 0;
	border-right: 1px solid #ddd;
}
#wrapper-response {
	margin-bottom: 15px;
}
#wrapper-response * {
	font-size: 12px;
}
#shipping-rates {
	list-style-type: square;
	padding-left: 0;
	margin-left: 0;
	list-style-position: inside;
}
.get_rates {
	margin: 30px 0 0 !important;
	float: right;
	display: block;
}
#shipping-calculator h3 {
	font-weight: 700;
	font-size: 14px;
	font-family: "Droid Sans";
}
#shipping-calculator p.success {
	padding: 10px 15px;
	background: #bde0a8;
	border-radius: 6px;
	color: green;
}
#shipping-calculator p.error {
	padding: 10px 15px;
	background: #eebdbd;
	border-radius: 6px;
	color: #990000;
}
#shipping-rates li {
	font-weight: bold;
	list-style: none;
	padding: 10px 15px;
	background: #ddd;
	margin: 0 0 10px 0;
	border-radius: 6px;
}
#shipping-calculator label {
	width: 155px;
	display: inline-block;
	font-weight: 700;
}
#shipping-calculator select {
	width: 200px;
}

/* ----------------------------------------------------------------
Shopping Cart
---------------------------------------------------------------- */
#cartEmpty {
	margin: 0 0 30px 25px;
}
#cartStuff {
	padding: 0 23px 40px 23px !important;
}
#shippingWeightError {
	padding: 10px;
	font-weight: bold;
	color: #990000;
	background: #f4dfdc;
	border: 1px solid #990000;
	border-radius: 4px;
	background-clip: padding-box;
}
#basket {
	width: 100%;
	margin: 0 0 24px;
	border: 0;
	font-weight: 400;
	font-size: 14px;
}
#basketHeader {
	padding: 7px 10px !important;
	font-size: 13px;
	color: #fff;
	border: 1px solid #000;
	background: #000;
	text-align: center;
}
#basketHeader div {
	float: left;
	width: 90px;
	padding: 0 10px;
	text-align: center;
}
#basketHeader #itemsHeader {
	text-align: left;
	width: 430px !important;
	padding-left: 0;
}
#basket #headerRow {
	border-color: #000;
	background: #fff;
	color: #fff;
	border-bottom: 2px solid #000;
}
#basket .basketColumn {
	float: left;
	width: 90px;
	text-align: center;
	vertical-align: middle;
	line-height: 50px;
	padding: 0px 10px;
}
.basketImages {
	margin: 0;
	width: 50px;
	height: 50px;
	text-align: center;
	overflow: hidden;
	float: left;
	border: 1px solid #ccc;
	background: #fff;
}
.basketImages img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	vertical-align: middle;
	text-align: center;
}
.titleCol {
	width: 430px !important;
	line-height: 52px;
	padding-left: 0 !important;
}
.basketDesc {
	float: left;
	margin: 0 0 0 15px;
}
.basketDesc h6 {
	font-size: 13px;
}
.basketOdd,
.basketEven {
	padding: 7px 10px;
	border: 1px solid #eaeaea;
	border-top: 0;
}
.basketEven {
	background-color: #f3f3f3;
}
#specialInstructions {
	width: 450px;
}
#basketRight {
	width: 450px;
	padding: 30px 0 30px 0;
}
#basketRight h3 {
	text-align: right;
	padding: 4px 0px 15px;
}
#basket p {
	margin-bottom: 0px;
}
.removeCol {
	border: 0px;
}
.remove img {
	margin: 0;
}
#updateCart {
	display: inline-block;
	margin-right: 20px;
}
#subTotal span {
	color: #91b46e;
}
.additional-checkout-buttons {
	float: right;
	text-align: right;
	margin: 30px 0 0;
}

/* ----------------------------------------------------------------
Content Styling
-----------------------------------------------------------------*/
.textile ul,
.textile ol {
	margin: 20px 0;
	font-size: 108%;
	line-height: 21px;
}
.textile ul ul,
.textile ol ol {
	margin: 0 20px;
}
.textile ul li {
	list-style: disc outside;
	margin: 0 20px 10px;
}
.textile ol li {
	list-style: decimal outside;
	margin: 0 20px 10px;
}
.successForm {
	padding: 10px 15px;
	background: #bde0a8;
	color: green;
	border-radius: 5px;
	text-transform: uppercase;
}
.errorForm {
	padding: 10px 15px;
	background: #eebdbd;
	color: #990000;
	border-radius: 5px;
	text-transform: uppercase;
}
.textile table {
	border: 1px solid #ddd;
	border-collapse: collapse;
	background-color: #fff;
	width: 100%;
	margin: 20px 0;
}
.textile table thead {
	display: table-header-group;
	vertical-align: middle;
	font-weight: bold;
	background: #f0f0f0;
}
.textile table th {
	border: 1px solid #ddd;
	padding: 5px;
	background-color: #f0f0f0;
}
.textile table td {
	border: 1px solid #ddd;
	padding: 5px;
	background-color: #fff;
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
	background-color: rgb(0, 0, 0) !important;
	box-shadow: inset 0 0 20px #e2db72;
}
.textile img {
	padding: 4px;
	border: 1px solid #ddd;
	background: #fff;
	margin: 0 0 30px 0;
	max-width: 95%;
}
.textile iframe,
.textile video,
.textile audio {
	max-width: 100%;
}
.textile p > img {
	margin: 0;
}
.textile blockquote,
.textile q {
	quotes: none;
	margin: 10px 30px;
	padding: 10px 20px;
	border-left: 5px solid #dfdfdf;
	background-color: #f6f6f6;
	font-family: "Droid Serif", Georgia, "Times New Romain", serif;
	line-height: 21px;
	font-size: 108%;
	font-style: italic;
}
.textile blockquote:before,
.textile blockquote:after,
.textile q:before,
.textile q:after {
	content: none;
}
.textile label {
	line-height: 25px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.textile input[type="text"],
.textile input[type="password"],
.textile input[type="telephone"],
.textile input[type="tel"],
.textile input[type="email"],
.textile textarea,
.quantityCol input {
	color: #333;
	max-width: 100%;
	padding: 10px;
	background: #fff;
	font-weight: bold;
	font-size: 12px;
	border: 1px solid #aaa;
	box-shadow: inset 0px 1px 4px 0px rgba(0, 0, 0, 0.3);
}
.textile input[type="text"]:focus,
.textile input[type="password"]:focus,
.textile input[type="telephone"]:focus,
.textile input[type="tel"]:focus,
.textile input[type="email"]:focus,
.textile textarea:focus,
.quantityCol input:focus {
	background: #fff;
	font-weight: bold;
	font-size: 12px;
	border: 1px solid #444;
	outline: 0;
}

/* Legacy .btnStyle for enquiry buttons - grey background */
.btnStyle {
	cursor: pointer;
	padding: 0 10px;
	text-align: center;
	height: 40px;
	line-height: 40px;
	color: #111;
	display: block;
	outline: 0;
	border: 1px solid #ccc;
	background: #eee url(../uploads/assets/btnStyleGradient.png) repeat-x 0 0;
	margin: 0;
	border-radius: 4px;
}
.btnStyle:focus,
.btnStyle:hover {
	background-color: #f6f6f6;
}
.btnStyle:active {
	background: #ddd;
}

/* ----------------------------------------------------------------
Pagination
-----------------------------------------------------------------*/
#pagination {
	margin: 0 0 30px;
	padding: 0;
	overflow: hidden;
}
#collectionContent #pagination {
	margin: 0 30px;
	padding: 30px 0;
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x 0 0;
}
#pagination span a {
	display: block;
	height: 36px;
	width: 100%;
}
#paginationPrev,
#paginationNoPrev {
	float: left;
	height: 36px;
	width: 31px;
	display: block;
	text-indent: -9999px;
}
#paginationPrev a,
#paginationPrev a:link,
#paginationPrev a:visited,
#paginationPrev a:active {
	background: url(../uploads/assets/pagination.jpg) no-repeat 0 0;
}
#paginationPrev a:focus,
#paginationPrev a:hover {
	background-position: 0 -36px;
}
#paginationNoPrev {
	background: url(../uploads/assets/pagination.jpg) no-repeat 0 -72px;
}
#paginationNext,
#paginationNoNext {
	float: left;
	height: 36px;
	width: 32px;
	display: block;
	text-indent: -9999px;
}
#paginationNext a,
#paginationNext a:link,
#paginationNext a:visited,
#paginationNext a:active {
	background: url(../uploads/assets/pagination.jpg) no-repeat right top;
}
#paginationNext a:focus,
#paginationNext a:hover {
	background-position: right -36px;
}
#paginationNoNext {
	display: block;
	height: 36px;
	width: 32px;
	background: url(../uploads/assets/pagination.jpg) no-repeat right
		bottom;
}
.paginationLink {
	float: left;
	width: 32px;
	height: 36px;
}
.paginationLink a,
.paginationLink a:link,
.paginationLink a:active,
.paginationLink a:visited {
	height: 36px;
	width: 32px;
	color: #aaa;
	background: url(../uploads/assets/pagination.jpg) no-repeat -31px 0;
	display: block;
	text-align: center;
	line-height: 36px;
	font-weight: 700;
	font-family: "Droid Sans";
}
.paginationLink a:focus,
.paginationLink a:hover {
	background-position: -31px -36px;
	color: #555;
}
#paginationCurrent {
	float: left;
	height: 36px;
	width: 32px;
	color: #000;
	background: url(../uploads/assets/pagination.jpg) no-repeat -31px 0;
	display: block;
	text-align: center;
	line-height: 36px;
	font-weight: 700;
	font-family: "Droid Sans";
}
#showingNumbers {
	float: left;
	margin: 12px 0 12px 12px;
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	font-size: 12px;
	color: #777;
}
.blogPagination {
	margin: 30px 0 80px 0 !important;
}

/* ----------------------------------------------------------------
jQuery Nivo Slider v2.7.1
* http://nivo.dev7studios.com
* Copyright 2011,Gilbert Pellegrom
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
-----------------------------------------------------------------*/
.nivoSlider {
	position: relative;
}
.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
}
.nivoSlider a.nivo-imageLink {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	z-index: 6;
	display: none;
}
.nivo-slice {
	display: block;
	position: absolute;
	z-index: 5;
	height: 100%;
}
.nivo-box {
	display: block;
	position: absolute;
	z-index: 5;
}
.nivo-caption {
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #000;
	color: #fff;
	opacity: 0.9;
	width: 100%;
	z-index: 8;
}
.nivo-caption p {
	padding: 5px;
	margin: 0;
}
.nivo-caption a {
	display: inline !important;
}
.nivo-html-caption {
	display: none;
}
.nivo-directionNav a {
	position: absolute;
	top: 45%;
	z-index: 9;
	cursor: pointer;
}
.nivo-prevNav {
	left: 0px;
}
.nivo-nextNav {
	right: 0px;
}
.nivo-controlNav a {
	position: relative;
	z-index: 9;
	cursor: pointer;
}
.nivo-controlNav a.active {
	font-weight: bold;
}
.nivoSlider {
	position: relative;
	width: 948px;
	height: 388px;
}
.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	display: none;
}
.nivoSlider a {
	border: 0;
	display: block;
}
.nivo-controlNav {
	position: absolute;
	left: 50%;
	bottom: -42px;
	margin-left: -40px;
}
.nivo-controlNav a {
	display: block;
	width: 22px;
	height: 22px;
	background: url(../uploads/assets/bullets.png) no-repeat;
	text-indent: -9999px;
	border: 0;
	margin-right: 3px;
	float: left;
}
.nivo-controlNav a.active {
	background-position: 0 -22px;
}
.nivo-directionNav a {
	display: block;
	width: 30px;
	height: 30px;
	background: url(../uploads/assets/arrows.png) no-repeat;
	text-indent: -9999px;
	border: 0;
}
a.nivo-nextNav {
	background-position: -30px 0;
	right: 15px;
}
a.nivo-prevNav {
	left: 15px;
}
.nivo-caption {
	width: 928px;
	padding: 15px 10px 10px;
	color: #fff;
}
.nivo-caption a {
	color: #fff;
}
.nivo-caption a:hover {
	color: #fff;
}
.nivo-caption h3 {
	color: #fff;
	margin: 0 0 5px 0;
}
.nivo-caption span {
	font-family: "Droid Serif", Georgia, "Times New Roman", serif;
	font-style: italic;
	color: #ddd;
	font-size: 13px;
}

/* ----------------------------------------------------------------
Search Template
-----------------------------------------------------------------*/
#searchResults ul li {
	list-style: none outside !important;
}
.searchResultsImage {
	margin: 0 20px 0 0;
}
#searchResultsListings li {
	margin: 0;
	padding: 40px 0 20px 0;
	border-bottom: 1px solid #eaeaea;
}
#searchResults .btnStyle {
	margin-left: 10px;
}

/* ----------------------------------------------------------------
Account Templates
-----------------------------------------------------------------*/
#accountTemplate {
	padding: 25px 22px 80px;
}
.action_bottom {
	margin: 30px 0;
}
.action_bottom span {
	float: left;
	margin: 13px 0 0 15px;
}
.action_bottom input {
	float: left;
}
.action_top {
	padding-top: 10px;
	text-align: center;
}
.action_link a {
	padding: 2px 3px;
	text-decoration: underline;
}
.action_link a:hover {
	color: #000000 !important;
	background-color: #eeeeee;
}
.action_edit a {
	padding: 0;
}
.action_delete a {
	padding: 0;
}
.action_delete {
	border-left: 1px solid #dddddd;
	padding-left: 6px;
}
.action_return a {
	display: inline-block;
}
.note p {
	margin: 0;
	padding: 0;
}
.address_form {
	width: 280px;
}
.address_table {
	background: #f0f0f0;
	width: 428px;
	float: left;
	margin: 10px 30px 60px 0;
	border-radius: 4px;
}
.oddAddress {
	margin-right: 0;
}
.address_title {
	padding-bottom: 5px;
}
.cancelled_order,
.cancelled_order a {
	color: #bbbbbb;
}
.customer_address {
	padding: 20px;
}
.customer_address form {
}
.customer_address_table {
	margin: 0;
	border: 0 !important;
}
.customer_address .view_address {
}
.customer_address .view_address p {
	padding-bottom: 0;
	margin: 0;
}
.default_address {
	font-style: italic;
}
.even {
	background-color: #f6f6f6;
}
.large_form {
	margin: 0 0 15px 0;
	width: 790px;
}
.note {
	color: #777777;
	font-size: 12px;
	font-weight: normal;
}
.note_first {
	font-weight: bold;
}
.order_date {
	padding: 12px 15px;
	text-align: left;
	background: #f4f8e4;
	margin-bottom: 20px;
}
.order_number {
	width: 100px;
}
.order_section_title {
	padding-bottom: 15px;
}
.order_summary {
	color: #222222;
}
.order_summary .label {
	padding: 10px 35px 10px 6px;
}
.order_summary td {
	border: none;
	text-align: center !important;
}
.order_total td {
	border-bottom: 1px solid #cccccc;
	border-top: 1px solid #cccccc;
	font-weight: bold;
}
.status_paid,
.status_authorized,
.status_filed,
.status_pending,
.status_abandoned,
.status_fulfilled,
.status_partial,
.status_unfulfilled,
.status_restocked,
.status_voided,
.status_refunded {
	font-size: 12px;
	padding: 1px 4px;
	margin: 0;
	border-radius: 3px;
}
.status_paid,
.status_authorized,
.status_fulfilled {
	background-color: #80bd4e;
	color: #ffffff;
}
.status_filed,
.status_pending,
.status_unfulfilled {
	background-color: #eeeeee;
	color: #000000;
}
.status_abandoned,
.status_voided,
.status_refunded,
.status_restocked {
	background-color: #af9c7e;
	color: #ffffff;
}
.value {
	text-align: left;
}
.textile #customer_orders table td {
	text-align: center !important;
}
#address_tables .label {
	color: #777777;
	font-size: 12px;
	padding-right: 35px;
	width: 100px;
}
#add_address {
	margin: 0 0 40px;
}
#add_address td,
#address_tables td {
	padding: 2px 0;
}
#add_address td,
#address_tables td {
	border: none;
}
#accountTemplate table {
	background-color: #ddd !important;
	margin: 0 !important;
	text-align: center;
}
#add_address table,
#address_tables table {
	text-align: left;
}
#address_pagination {
	padding-top: 20px;
}
#admin_header {
	padding-bottom: 40px;
	position: relative;
}
#admin_header .title {
	border-bottom: 1px solid #eeeeee;
	font-weight: normal;
	padding-bottom: 15px;
	text-align: center;
}
#badtoken {
	width: 200px;
}
#customer,
#recover-password {
	width: 100%;
}
#guest {
	min-height: 300px;
	border-left: 1px solid #dddddd;
	margin-left: 25px;
	padding-left: 45px;
	width: 180px;
	position: absolute;
	top: 129px;
	right: 240px;
}
#customer_detail .name {
	padding-bottom: 5px;
}
#customer_sidebar {
	float: left;
	padding-right: 30px;
	text-align: left;
	width: 200px;
}
#customer_orders {
	width: 640px;
	float: right;
}
#customer_orders .date {
	width: 125px;
}
#forgot_password a {
	background-color: #f5f5f5;
	color: #aaaaaa;
	display: block;
	height: 34px;
	float: left;
	line-height: 34px;
	text-align: center;
	width: 203px;
	border: 1px solid #e8e8e8;
	border-left: none;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}
#forgot_password a:hover {
	background-color: #f3f3f3;
	color: #777777;
	text-decoration: underline;
}
#logout {
	font-size: 11px;
	position: absolute;
	right: 0;
	top: 0;
}
#order_address {
	float: left;
	width: 200px;
	padding: 12px;
	background: #efefef;
	border: 1px solid #ddd;
	margin-bottom: 30px;
}
#order_address p {
	line-height: 1.2em;
	text-align: left;
}
#order_cancelled {
	margin-bottom: 20px;
	border-radius: 3px;
}
#order_cancelled_title {
	padding-bottom: 0;
}
#order_details {
	width: 640px;
}
#order_details,
#order_notes {
	float: right;
	margin: 10px 0 0 60px;
}
#order_details .money {
	white-space: nowrap;
}
#order_payment {
	border-bottom: 1px solid #dddddd;
	padding: 10px 0 15px;
}
#order_shipping {
	padding: 25px 0 10px;
}
#order_notes {
	width: 580px;
}
#tagline {
	font-weight: normal;
}
#tagline .subtitle {
	color: #888888;
	font-size: 14px;
}
#template {
	text-align: center;
}
.template_header {
	padding-bottom: 20px;
	margin-bottom: 30px;
	background: url(../uploads/assets/doubleStripe.jpg) repeat-x bottom
		left;
}
.template_header .title {
	color: #000;
	font-weight: normal;
	margin: 0;
	padding: 0;
}
#forgotPasswordLink {
	margin-top: 10px;
	display: inline-block;
}
#view_address {
	display: block;
	margin-top: 15px;
}
.edit_address form {
	background: #fff;
}
.edit_address .action_bottom {
	margin-bottom: 0;
	padding: 0 0 30px;
}
#customer_sidebar {
	padding: 12px;
	background: #efefef;
	border: 1px solid #ddd;
}
#view_address {
	background: #333;
	color: #fff;
	height: 30px;
	line-height: 30px;
	text-align: center;
}
#addAddressLink {
	width: 120px;
	margin-bottom: 60px;
	color: #000;
}
td.alignTextLeft {
	text-align: left !important;
	padding-left: 6px;
}

.cloud-zoom-lens {
	background-color: #fff;
	cursor: move;
}
.cloud-zoom-title {
	display: none;
}
.cloud-zoom-big {
	overflow: hidden;
	-mox-box-shadow: 0 0 3px #000;
	box-shadow: 0 0 3px #000;
}
.cloud-zoom-loading {
	background: #fff url(../uploads/assets/progress.gif) no-repeat 50% 50%;
	padding: 10px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	padding: 2px;
	height: 31px;
	width: 31px;
	text-indent: -9999px;
	border-radius: 3px;
}
#wrap {
	height: 100% !important;
	clear: left;
}
.mousetrap {
	width: 100%;
}

.noty_bar {
	position: fixed;
	display: none;
	z-index: 9999999;
}
.noty_bar .noty_close {
	cursor: pointer;
}
.noty_modal {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 10000;
	opacity: 0.6;
	display: none;
	left: 0;
	top: 0;
}
ul.noty_container {
	position: fixed;
	z-index: 9999999;
	margin: 0px;
	padding: 0px;
	list-style: none;
	width: 300px;
}
ul.noty_container li {
	position: relative;
	float: left;
	clear: both;
	list-style: none;
	padding: 0px;
	margin: 10px 0 0 0;
	width: 300px;
}
ul.noty_container.noty_layout_topLeft {
	left: 20px;
	top: 20px;
}
ul.noty_container.noty_layout_topRight {
	right: 40px;
	top: 20px;
}
ul.noty_container.noty_layout_bottomLeft {
	left: 20px;
	bottom: 20px;
}
ul.noty_container.noty_layout_bottomRight {
	right: 40px;
	bottom: 20px;
}
ul.noty_container.noty_layout_topRight li {
	float: right;
}
.noty_bar.noty_layout_top {
	top: 0;
	left: 0;
	width: 100%;
}
.noty_bar.noty_layout_bottom {
	bottom: 0;
	left: 0;
	min-width: 100%;
	width: 100%;
}
.noty_bar.noty_layout_center {
	top: 40%;
}
.noty_bar.noty_layout_topLeft,
.noty_bar.noty_layout_topRight,
.noty_bar.noty_layout_bottomLeft,
.noty_bar.noty_layout_bottomRight {
	width: 100%;
	clear: both;
	position: relative;
}
.noty_bar.noty_layout_topCenter {
	top: 20px;
}
.noty_bar.noty_theme_default {
}
.noty_text {
	float: left;
}
.noty_buttons {
	float: left;
	margin: -7px 0 0 20px;
}
.noty_bar.noty_theme_default .noty_message {
	padding: 15px 30px 3px;
	font-size: 16px;
	font-weight: bold;
	width: auto;
}
.noty_bar.noty_theme_default .noty_message .btnStyle {
	float: left;
	font-size: 15px;
	margin-right: 6px;
	margin-bottom: 6px;
}
.noty_bar.noty_theme_default .noty_close {
	position: absolute;
	top: 10px;
	right: 10px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAORJREFUeNq0lU0OgjAQhRm5gUl3rLyBB3BDQjwI4TDcgmu4NqwNJGxdueqWA4zzCJoxtvxoeckLzbz2C5ShEDNHDiXis/gkPooPY/0uvomv4ov48bUSQGUSF+Ka51WPc0kzNGwvLnm9ynHtB5B+hGkoaWDB/6t4AZOFe7ZkTxMAc1dqreU0TbnrunetbVvOsmzIPMoBrFwJYGgCY8wAgjFGDZlHFYCNK9EAXPUYmUcNgL0v1dAFMKjfRSsVx/H0hC0eOfhLmWwbfTcYozbXNsEbO/int8nhEPz4CnbAUuhfwFOAAQAA48KKOuexjwAAAABJRU5ErkJggg==");
	width: 20px;
	height: 20px;
}
.noty_modal.noty_theme_default {
	opacity: 0.7;
}
.noty_bar.noty_theme_default.noty_layout_top {
	border-bottom: 1px solid #000;
}
.noty_bar.noty_theme_default.noty_layout_bottom {
	border-top: 1px solid #000;
}
.noty_bar.noty_theme_default.noty_layout_center {
	width: auto;
	padding: 4px;
	border: 3px solid #eee;
	border-radius: 10px;
}
.noty_bar.noty_theme_default.noty_layout_center .noty_close {
	right: -9px;
	top: -10px;
}
.noty_bar.noty_theme_default.noty_layout_topLeft,
.noty_bar.noty_theme_default.noty_layout_topRight,
.noty_bar.noty_theme_default.noty_layout_bottomLeft,
.noty_bar.noty_theme_default.noty_layout_bottomRight {
	padding: 4px;
	border: 3px solid #eee;
	border-radius: 5px;
}
.noty_bar.noty_theme_default.noty_layout_topLeft .noty_close,
.noty_bar.noty_theme_default.noty_layout_topRight .noty_close,
.noty_bar.noty_theme_default.noty_layout_bottomLeft .noty_close,
.noty_bar .visitCart {
	opacity: 1;
	filter: alpha(opacity=100);
	cursor: pointer;
	text-align: center;
	padding: 0 10px;
	line-height: 30px !important;
	height: 30px;
	background: #e6c84d url(../uploads/assets/btnStyleGradient.png)
		repeat-x 0 0;
	color: #000000;
	outline: 0;
	margin: 0;
	border: 1px solid #e6c84d;
	border-radius: 4px;
	background-clip: padding-box;
}
.noty_bar .visitCart:focus,
.noty_bar .visitCart:hover {
	background-color: #f3d351;
}
.noty_bar .visitCart:active {
	background: #e6c84d;
}
.noty_bar .continueShopping {
	height: 30px;
	line-height: 30px !important;
}
.noty_bar.noty_theme_default.noty_alert {
	background-color: #fff;
	color: #000;
	border-color: #000;
}
.noty_bar.noty_theme_default.noty_error {
	background-color: red;
	color: #fff;
	border-color: darkred;
}
.noty_bar.noty_theme_default.noty_success {
	background-color: #222;
	color: #fff;
	border-color: #000;
}

/*! fancyBox v2.0.4 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-tmp iframe,
.fancybox-tmp object {
	vertical-align: top;
	padding: 0;
	margin: 0;
}
.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1002;
}
.fancybox-outer {
	padding: 0;
	margin: 0;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	border-radius: 4px;
}
.fancybox-opened {
	z-index: 1003;
}
.fancybox-opened .fancybox-outer {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-inner {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	position: relative;
	outline: none;
	overflow: hidden;
}
.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 10px;
}
.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	vertical-align: top;
}
.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}
#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -21px;
	margin-left: -21px;
	width: 42px;
	height: 42px;
	background: url(../uploads/assets/fancybox_loading.gif);
	opacity: 0.8;
	cursor: pointer;
	z-index: 1010;
}
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
	background-image: url("https://sasgp.com/tmp/cache/fancybox_sprite.png");
}
.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 1004;
}
.fancybox-prev,
.fancybox-next {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	background: transparent url(../uploads/assets/blank.gif); /* helps IE */
	z-index: 1003;
}
.fancybox-prev {
	left: 0;
}
.fancybox-next {
	right: 0;
}
.fancybox-prev span,
.fancybox-next span {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 36px;
	height: 36px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 1003;
}
.fancybox-prev span {
	background-position: 0 -36px;
}
.fancybox-next span {
	background-position: 0 -72px;
}
.fancybox-prev:hover,
.fancybox-next:hover {
	visibility: visible;
}
.fancybox-prev:hover span {
	left: 20px;
}
.fancybox-next:hover span {
	left: auto;
	right: 20px;
}
.fancybox-tmp {
	position: absolute;
	top: -9999px;
	left: -9999px;
	padding: 0;
	overflow: visible;
	visibility: hidden;
}
/* Overlay helper */
#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 1001;
	background: #000;
}
/* Title helper */
.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 1005;
}
.fancybox-opened .fancybox-title {
	visibility: visible;
}
.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 1003;
	text-align: center;
}
.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #fff;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}
.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}
.fancybox-title-inside-wrap {
	margin-top: 10px;
}
.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, 0.8);
}
/* Stylesheet: GT1 : Main Modified On 2025-08-09 17:50:50 */

/* ----------------------------------------------------------------
Desktop 960px and above - Sticky nav icons
-----------------------------------------------------------------*/
@media screen and (min-width: 960px) {
	#navWrapper.fixedNavWrapper #mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 960px) / 2 + 15px);
		gap: 15px;
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		text-indent: -9999px;
		position: relative;
	}
	#navWrapper.fixedNavWrapper #mobileEmailLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#navWrapper.fixedNavWrapper #mobilePhoneLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons a:hover::before {
		opacity: 0.7;
	}
}

/* ----------------------------------------------------------------
Screen widths 959px - 768px | Target is iPad in Portrait
-----------------------------------------------------------------*/
@media screen and (max-width: 959px) and (min-width: 768px) {
	html {
		-webkit-text-size-adjust: none;
	}
	#extraStyleWrapper {
	}
	.centerThis {
		width: 720px;
		margin: 0 auto;
	}
	#utilityNavWrapper {
		width: 590px;
	}
	#headerLeft {
		width: 470px;
	}
	#logoWrapper {
		width: 470px;
	}
	#mainNav {
		display: none;
	}
	#navWrapper {
		position: relative;
	}
	#navWrapper select {
		display: block;
		font-size: 15px;
		font-weight: 700;
		width: 360px;
		height: 25px;
		position: absolute;
		top: 9px;
		left: 50%;
		margin-left: -360px;
	}
	#navWrapper.fixedNavWrapper {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		box-shadow: 0 0 20px #000;
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 720px) / 2 + 15px);
		gap: 12px;
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		text-indent: -9999px;
		position: relative;
	}
	#navWrapper.fixedNavWrapper #mobileEmailLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#navWrapper.fixedNavWrapper #mobilePhoneLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons a:hover::before {
		opacity: 0.7;
	}
	#topHeader.fixedNavPadding {
		padding-bottom: 0;
	}
	#footerLeft {
		width: 100%;
		text-align: center;
	}
	#footerRight {
		width: 100%;
		border: 0;
		text-align: center;
		padding: 10px 0 30px;
		margin: 0;
	}
	#mc_embed_signup {
		width: 360px;
		float: none;
		display: inline-block;
		vertical-align: top;
		text-align: left;
	}
	#mc_embed_signup #mce-EMAIL {
		margin-left: 0;
	}
	#paymentMethods {
		width: 360px;
		float: none;
		display: inline-block;
		vertical-align: top;
		text-align: center;
		margin: 0;
		padding: 0;
	}
	#content {
		width: 100%;
		padding: 0;
	}
	#mainContent {
		width: 430px;
	}
	#sidebar {
		margin-right: -4px;
	}
	.index #sidebar {
		margin-right: -4px;
	}
	   #welcomeCol {
		   width: 100%;
		   margin-left: 0;
	   }
	#latestNewsRotator,
	#latestNews .articleWrapper {
		width: 430px !important;
	}
	#middleCol {
		display: none;
	}
	#mainContent .textile img,
	#mainContent .textile iframe,
	#mainContent .textile embed {
		max-width: 420px;
	}
	#mainContent textarea {
		max-width: 380px;
	}
	#billboardWrapper,
	#billboard,
	.nivo-slider,
	.nivo-slider img {
		width: 720px;
		height: 295px;
	}
	#largeSpotlight {
		margin-left: 5px;
	}
	#middleSpotlight {
		margin-right: 0;
	}
	#rightSpotlight,
	#rightSpotlight img {
		display: none;
	}
	#collectionHeader {
		width: 675px;
	}
	#collectionProducts {
		width: 694px;
		padding: 0 0 0 23px;
		margin: 0 0 30px 0;
	}
	.collectionProductLarge {
		float: left;
		margin: 0 15px 30px 0;
		position: relative;
		height: 290px;
		width: 215px;
	}
	.collectionProductLarge .collectionProductImageWrapper {
		background: #fff;
		display: block;
		height: 215px;
		width: 215px;
		line-height: 212px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.collectionProductLarge .collectionProductImageWrapper img {
		display: inline;
		vertical-align: middle;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.collectionProductLarge .collectionProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.collectionProductLarge header {
		left: auto;
		bottom: auto;
		margin: 8px 0 0;
		padding: 0 7px;
		background: 0;
		width: 208px;
	}
	.collectionProduct header h2,
	.collectionProductLarge header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-weight: 700;
		font-size: 16px;
		margin: 0 0 3px 0;
		font-family: "Droid Sans";
	}
	.collectionProductLarge header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 12px;
		color: #919191;
	}
	.collectionProductLarge header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 12px;
	}
	.collectionProduct {
		margin: 0 15px 30px 0;
	}
	#productContent {
		width: 100%;
	}
	#productDetails {
		width: 100% !important;
	}
	#productReviews iframe {
		width: 420px !important;
	}
	#socialSharing {
		display: none;
	}
	#productPriceWrapper {
		width: 180px;
	}
	#priceTitle,
	#productPrice {
		font-size: 18px;
	}
	#productImages {
		width: 100%;
		margin-bottom: 20px;
	}
	#relatedProducts {
		width: 718px;
		margin: 0;
	}
	#relatedProducts .relatedProduct {
		margin: 10px 0 35px 15px;
	}
	.productFour {
		display: none;
	}
	#relatedProductsListing {
		margin-left: 7px;
	}
	#featuredProducts {
		width: 100%;
		padding: 30px 0 10px 0;
		background-position: -10px 0;
		margin-left: 0;
	}
	#featuredProducts .collectionProduct {
		margin: 10px 0 0 19px;
	}
	#customer_orders {
		width: 660px;
		float: left;
		margin: 30px 0 0;
	}
	#order_address {
		float: none;
		width: 635px;
		padding: 12px;
		background: #efefef;
		border: 1px solid #ddd;
		margin-bottom: 30px;
	}
	#order_payment {
		border-bottom: 0;
		padding: 10px 0 15px;
		width: 296px;
		float: left;
	}
	#order_shipping {
		padding: 10px 0 15px;
		float: left;
		width: 296px;
		margin-left: 40px;
	}
	#order_details {
		width: 100%;
	}
	#shipping-calculator {
		width: 300px;
	}
	#address_zip {
		width: 120px;
	}
	.get_rates {
		margin: 0 !important;
	}
	#basketRight {
		width: 300px;
	}
	#basketRight textarea {
		width: 276px;
	}
	.cart #collectionHeader {
		width: 673px;
	}
	#priceHeader,
	#qtyHeader,
	#totalHeader,
	#deleteHeader,
	.priceCol {
		width: 74px !important;
	}
	#basket .basketColumn {
		width: 74px;
	}
	#basketHeader #itemsHeader {
		width: 260px !important;
	}
	.titleCol {
		width: 273px !important;
		line-height: 19px;
		padding: 0 !important;
	}
	.basketDesc {
		line-height: 18px;
		text-align: left;
		width: 200px;
		padding: 8px 0 0;
		margin: 0 0 0 15px;
	}
	#specialInstructions {
		width: 300px;
	}
	input,
	textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
}

/* ----------------------------------------------------------------
Screen widths 767px - 600px | Target is Kindle
---------------------------------------------------------------- */
@media screen and (max-width: 767px) and (min-width: 600px) {
	html {
		-webkit-text-size-adjust: none;
	}
	#extraStyleWrapper {
	}
	.centerThis {
		width: 580px;
		margin: 0 auto;
	}
	#homeIcon,
	#homeIcon:link,
	#homeIcon:active,
	#homeIcon:visited {
		color: #ffffff;
		background: 0;
		text-indent: 0;
		height: auto;
		width: auto;
		display: inline;
		margin: 0;
		padding: 0;
	}
	#homeIcon:focus,
	#homeIcon:hover {
		color: #e6c84d;
	}
	#utilityNavWrapper {
		width: 580px;
		overflow: hidden;
	}
	#utilityNav li {
		margin: 0 12px 0 0important;
	}
	#utilityNav li a {
		font-size: 11px;
	}
	#yourCart,
	#yourCart:link,
	#yourCart:active,
	#yourCart:visited,
	#yourCart:focus,
	#yourCart:hover {
		color: #ffffff;
		background: 0 !important;
		margin: 0;
		width: auto;
		text-align: right !important;
		font-size: 11px;
		position: absolute;
		top: 181px;
		right: 10px;
		z-index: 1000;
	}
	#headerLeft {
		width: 580px;
		float: none;
	}
	#headerRight {
		display: none;
	}
	#mainNav {
		display: none;
	}
	#navWrapper {
		position: relative;
		height: 45px;
	}
	#navWrapper.fixedNavWrapper {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 580px) / 2 + 15px);
		gap: 12px;
	}
	#navWrapper select {
		display: block;
		font-size: 15px;
		font-weight: 700;
		max-width: 30%;
		width: 100%;
		height: 25px;
		position: absolute;
		top: 9px;
		left: calc((100% - 580px) / 2 + 15px);
		background-color: #fff;
		color: #333;
		border: 1px solid #ccc;
	}
	#mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 580px) / 2 + 15px);
		gap: 12px;
	}
	#mobileContactIcons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		text-indent: -9999px;
		position: relative;
	}
	#mobileEmailLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobilePhoneLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobileContactIcons a:hover::before {
		opacity: 0.7;
	}
	#topHeader.fixedNavPadding {
		padding-bottom: 0;
	}
	#logoWrapper {
		width: 580px;
		margin: 0;
		/* text-align: center; */
		vertical-align: middle;
		float: none;
	}
	#logo {
		max-width: 90%;
		text-align: center;
		vertical-align: middle;
	}
	#content {
		width: 100%;
		padding: 0;
	}
	#mainContent {
		width: 538px;
		padding: 30px 20px;
	}
	#mainContent .textile img,
	#mainContent .textile iframe,
	#mainContent .textile embed {
		max-width: 528px;
	}
	.textile label {
		line-height: 25px;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 4px;
	}
	.textile input[type="text"],
	.textile input[type="password"],
	.textile input[type="telephone"],
	.textile input[type="tel"],
	.textile input[type="email"],
	.textile textarea {
		width: 100%;
		max-width: 378px !important;
		margin-bottom: 15px;
	}
	#sidebar {
		display: none;
	}
	.index #sidebar {
		margin-right: -4px;
	}
	#latestNews,
	#latestNewsRotator,
	#latestNews .articleWrapper {
		width: 580px !important;
	}
	#latestNews .articleDate {
		margin: 0 8px 30px 8px;
	}
	#latestNews .articleSummary {
		margin: 0 8px 30px 8px;
		padding: 0 15px 30px 44px !important;
	}
	#footerContact {
		line-height: 19px;
	}
	#copyright {
		margin: 22px 0 20px 0;
		line-height: 19px;
	}
	#footerNavWrapper #footerNav {
		display: none;
	}
	#footerNavWrapper select {
		display: block;
		width: 200px;
		height: 25px;
		font-size: 15px;
		font-weight: 700;
		margin: 0 auto;
	}
	#footerLeft {
		width: 580px;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	#footerRight {
		width: 580px;
		border: 0;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	#mc_embed_signup {
		width: 290px;
		padding: 0;
		text-align: left;
		float: left;
	}
	#paymentMethods {
		width: 290px;
		padding: 0;
		text-align: left;
		margin: 15px 0 0;
		float: right;
	}
	#mc_embed_signup #mce-EMAIL {
		width: 160px;
		margin-left: 0 !important;
	}
	#billboardWrapper,
	#billboard,
	.nivo-slider,
	.nivo-slider img {
		display: none;
	}
	#largeSpotlight,
	#largeSpotlight img {
		width: 384px;
		height: auto;
	}
	#largeSpotlight {
		margin: 0 2px;
	}
	#middleSpotlight,
	#middleSpotlight img {
		width: 189px;
		height: auto;
		margin: 0;
	}
	#rightSpotlight,
	#rightSpotlight img {
		display: none;
	}
	#contentSections {
		margin: 20px 0 30px;
	}
	#welcomeCol {
		width: 100%;
		margin: 0;
		/* padding: 0 0 50px 0; */
	}
	#latestNews h1 {
		margin-left: -5px;
	}
	#middleCol {
		display: none;
	}
	#collectionHeader {
		width: 534px;
		margin-bottom: 0;
	}
	#collectionDescription {
		margin: 20px auto 0;
		width: 534px;
	}
	#collectionDescription p {
		margin: 0;
	}
	#collectionProducts {
		width: 557px;
		padding: 0;
		margin-bottom: 30px;
	}
	.collectionProduct,
	.collectionProductLarge {
		float: left;
		margin: 20px 0 0;
		padding: 0 0 20px 0;
		border-bottom: 1px solid #eaeaea;
		position: relative;
		height: 95px;
		width: 540px;
	}
	.collectionProduct .collectionProductImageWrapper,
	.collectionProductLarge .collectionProductImageWrapper {
		float: left;
		background: #fff;
		display: block;
		height: 95px;
		width: 95px;
		line-height: 91px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.collectionProduct .collectionProductImageWrapper img,
	.collectionProductLarge .collectionProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.collectionProduct .collectionProductImageWrapper:hover img,
	.collectionProductLarge .collectionProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.collectionProduct header,
	.collectionProductLarge header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 15px;
		width: 425px;
		padding: 0;
		background: 0;
	}
	.collectionProduct header h2,
	.collectionProductLarge header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-weight: 700;
		font-size: 16px;
		margin: 0 0 3px 0;
		padding-right: 50px;
		font-family: "Droid Sans";
	}
	.collectionProduct header .productVendor,
	.collectionProductLarge header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 14px;
		color: #919191;
	}
	.collectionProduct header .collectionProductPrice,
	.collectionProductLarge header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 18px;
	}
	.collectionProduct header .oldPriceCollection,
	.collectionProductLarge header .oldPriceCollection {
		font-size: 13px;
	}
	#featuredProducts {
		width: 100%;
		padding: 30px 0 10px;
		background-position: -10px 0;
		margin-left: 0 !important;
		height: auto;
		background: url(../uploads/assets/airFeaturedProductsLink.jpg) repeat
			0 0;
	}
	#featuredProducts .collectionProduct {
		margin: 0px 0 20px 20px;
		border-bottom: 1px solid #666;
	}
	#featuredProducts .collectionProduct a {
		display: block;
		width: 100%;
		height: 100%;
	}
	#featuredProductsNav {
		top: -27px;
	}
	#featuredProductsNav button {
		font-size: 14px;
		height: 35px;
		line-height: 35px;
		width: 138px;
		padding: 0;
	}
	#relatedProducts {
		width: 100%;
		margin: 0;
	}
	#relatedProductsListing {
		margin-left: 0;
	}
	#relatedProductsTitle {
		margin: 0 0 0 20px;
	}
	.relatedProduct {
		-webkit-tap-highlight-color: #fff;
		float: left;
		margin: 0;
		padding: 20px 0;
		border-bottom: 1px solid #ccc;
		position: relative;
		height: 95px;
		width: 100%;
	}
	.relatedProduct a {
		display: block;
		height: 100%;
		width: 100%;
	}
	.relatedProduct .relatedProductImageWrapper {
		margin-left: 20px;
		float: left;
		background: #fff;
		display: block;
		height: 95px;
		width: 95px;
		line-height: 95px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.relatedProduct .relatedProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.relatedProduct .relatedProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.relatedProduct header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 10px;
		width: 440px;
		padding: 0;
		background: 0;
	}
	.relatedProduct header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-size: 16px;
		margin: 0 0 3px 0;
		padding-right: 50px;
	}
	.relatedProduct header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 14px;
		color: #919191;
	}
	.relatedProduct header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 16px;
	}
	.relatedProduct header .oldPriceCollection {
		font-size: 13px;
	}
	#productDetails {
		width: 100%;
	}
	#productContent {
		width: 100%;
	}
	#productReviews iframe {
		width: 540px !important;
	}
	#socialSharing {
		display: none;
	}
	#productPriceWrapper {
		width: 210px;
	}
	#priceTitle,
	#productPrice {
		font-size: 18px;
	}
	#productImages {
		width: 100%;
		margin-bottom: 20px;
	}
	#shipping-calculator {
		width: 248px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		border: 0;
	}
	#shipping-calculator label {
		width: 193px;
		display: inline-block;
		font-weight: 700;
	}
	#address_zip {
		width: 78px;
	}
	.get_rates {
		margin: 0 !important;
	}
	#basketRight,
	#specialInstructions {
		float: left;
		width: 286px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0;
	}
	#specialInstructions textarea {
		width: 260px !important;
	}
	.cart #collectionHeader {
		width: 532px;
		margin-bottom: 20px;
	}
	#priceHeader,
	#qtyHeader,
	#totalHeader,
	#deleteHeader,
	.linePriceCol {
		display: none;
	}
	#basket .basketColumn {
		width: 64px;
	}
	#basketHeader #itemsHeader {
		width: 240px !important;
	}
	.titleCol {
		width: 310px !important;
		line-height: 19px;
		padding: 0 !important;
	}
	.basketDesc {
		line-height: 13px;
		text-align: left;
		width: 238px;
		padding: 8px 0 0;
		margin: 0 0 0 15px;
	}
	.quantityCol {
		margin-left: 0;
	}
	.basketOdd,
	.basketEven {
		position: relative;
	}
	.deleteCol {
		position: absolute;
		top: 7px;
		right: -14px;
	}
	.priceCol {
		position: absolute;
		bottom: 10px;
		left: 400px;
	}
	#accountTemplate {
		padding: 25px 20px 50px;
	}
	#customer_sidebar {
		width: 254px;
	}
	#customer_orders {
		width: 100%;
		float: left;
		margin: 30px 0 0;
	}
	#customer_orders table {
		width: 100%;
		padding: 0;
	}
	#order_address {
		float: none;
		width: 512px;
		background: #efefef;
		border: 1px solid #ddd;
		margin-bottom: 30px;
	}
	#order_payment {
		border-bottom: 0;
		padding: 10px 0 15px;
		width: 230px;
		float: left;
	}
	#order_shipping {
		padding: 10px 0 15px;
		float: left;
		width: 230px;
		margin-left: 0;
	}
	#order_details {
		width: 100%;
	}
	.large_form {
		width: 260px;
		margin: 0;
	}
	.address_table {
		width: 100%;
		font-size: 11px;
		line-height: 13px !important;
	}
	.customer_address {
		padding: 10px;
	}
	#address_tables .label,
	#address_tables label {
		line-height: 13px !important;
		font-size: 10px;
		padding: 0;
		color: #000;
	}
	.customer_address_table input[type="text"],
	.customer_address_table input[type="password"],
	.customer_address_table input[type="telephone"],
	.customer_address_table input[type="tel"],
	.customer_address_table input[type="email"],
	.customer_address_table textarea,
	.customer_address_table select {
		width: 190px;
	}
	#guest {
		width: 100%;
		padding: 30px 0 0;
		margin: 0;
		border: 0;
		position: relative;
		top: 0;
		left: 0;
	}
	#searchAgainInput {
		width: 300px;
	}
	table,
	caption,
	tbody,
	tfoot,
	thead,
	tr,
	th,
	td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	caption,
	th {
		text-align: center;
	}
	table {
		font-size: 10px;
	}
	table tr,
	table th {
		padding: 5px 0 !important;
	}
	table td {
		padding: 5px 2px !important;
	}
	input,
	textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
}

/* ----------------------------------------------------------------
Screen widths 599px - 480px Target is mobile devices in Landscape
---------------------------------------------------------------- */
@media screen and (max-width: 599px) and (min-width: 480px) {
	html {
		-webkit-text-size-adjust: none;
	}
	#extraStyleWrapper {
	}
	.centerThis {
		width: 440px;
		margin: 0 auto;
	}
	#homeIcon,
	#homeIcon:link,
	#homeIcon:active,
	#homeIcon:visited {
		background: 0;
		text-indent: 0;
		height: auto;
		width: auto;
		display: inline;
		margin: 0;
		padding: 0;
	}
	#homeIcon:focus,
	#homeIcon:hover {
		color: #e6c84d;
	}
	#utilityNavWrapper {
		width: 440px;
		overflow: hidden;
	}
	#utilityNav li {
		margin: 0 12px 0 0important;
	}
	#utilityNav li a {
		font-size: 11px;
	}
	#yourCart,
	#yourCart:link,
	#yourCart:active,
	#yourCart:visited,
	#yourCart:focus,
	#yourCart:hover {
		color: #ffffff;
		background: 0 !important;
		margin: 0;
		width: auto;
		text-align: right !important;
		font-size: 11px;
		position: absolute;
		top: 181px;
		right: 10px;
		z-index: 1000;
	}
	#headerLeft {
		width: 440px;
		float: none;
	}
	#headerRight {
		display: none;
	}
	#mainNav {
		display: none;
	}
	#navWrapper {
		position: relative;
		height: 45px;
	}
	#navWrapper.fixedNavWrapper {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 440px) / 2 + 10px);
		gap: 10px;
	}
	#navWrapper select {
		display: block;
		font-size: 15px;
		font-weight: 700;
		max-width: 30%;
		width: 100%;
		height: 25px;
		position: absolute;
		top: 9px;
		left: calc((100% - 440px) / 2 + 10px);
		background-color: #fff;
		color: #333;
		border: 1px solid #ccc;
	}
	#mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 440px) / 2 + 10px);
		gap: 10px;
	}
	#mobileContactIcons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		text-indent: -9999px;
		position: relative;
	}
	#mobileEmailLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobilePhoneLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobileContactIcons a:hover::before {
		opacity: 0.7;
	}
	#topHeader.fixedNavPadding {
		padding-bottom: 0;
	}
	#logoWrapper {
		width: 440px;
		margin: 0;
		text-align: center;
		vertical-align: middle;
		float: none;
	}
	#logo {
		max-width: 90%;
		text-align: center;
		vertical-align: middle;
	}
	#content {
		width: 100%;
		padding: 0;
	}
	#logoText {
		font-size: 38px;
	}
	#mainContent {
		width: 398px;
		padding: 30px 20px;
	}
	#mainContent .textile img,
	#mainContent .textile iframe,
	#mainContent .textile embed {
		max-width: 388px;
	}
	.textile label {
		line-height: 25px;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 4px;
	}
	.textile input[type="text"],
	.textile input[type="password"],
	.textile input[type="telephone"],
	.textile input[type="tel"],
	.textile input[type="email"],
	.textile textarea {
		width: 100%;
		max-width: 378px !important;
		margin-bottom: 15px;
	}
	#sidebar {
		display: none;
	}
	.index #sidebar {
		margin-right: -4px;
	}
	#latestNews,
	#latestNewsRotator,
	#latestNews .articleWrapper {
		width: 440px !important;
	}
	#latestNews .articleDate {
		margin: 0 8px 30px 8px;
	}
	#latestNews .articleSummary {
		margin: 0 8px 30px 8px;
		padding: 0 15px 30px 44px !important;
	}
	#footerContact {
		line-height: 19px;
	}
	#copyright {
		margin: 22px 0 20px 0;
		line-height: 19px;
	}
	#footerNavWrapper #footerNav {
		display: none;
	}
	#footerNavWrapper select {
		display: block;
		width: 200px;
		height: 25px;
		font-size: 15px;
		font-weight: 700;
		margin: 0 auto;
	}
	#footerLeft {
		width: 440px;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	#footerRight {
		width: 440px;
		border: 0;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	#mc_embed_signup {
		width: 440px;
		padding: 0;
	}
	#mc_embed_signup #mce-EMAIL {
		width: 203px;
	}
	#mc_embed_signup #mc-embedded-subscribe {
		width: 64px;
	}
	#paymentMethods {
		width: 440px;
		padding: 0;
		margin: 15px 0 0;
	}
	#mc_embed_signup #mce-EMAIL {
		margin-left: 74px !important;
	}
	#paymentMethods h5 {
		display: none;
	}
	#billboardWrapper,
	#billboard,
	.nivo-slider,
	.nivo-slider img,
	#middleSpotlight,
	#rightSpotlight {
		display: none;
	}
	#largeSpotlight,
	#largeSpotlight img {
		width: 440px;
		height: auto;
		margin: 0;
	}
	#contentSections {
		margin: 20px 0 30px;
	}
	#welcomeCol {
		width: 100%;
		margin: 0;
		padding: 0 0 50px 0;
	}
	#latestNews h1 {
		margin-left: -5px;
	}
	#middleCol {
		display: none;
	}
	#collectionHeader {
		width: 390px;
		margin-bottom: 0;
	}
	#collectionDescription {
		margin: 20px auto 0;
		width: 390px;
	}
	#collectionDescription p {
		margin: 0;
	}
	#collectionProducts {
		width: 390px;
		margin-bottom: 30px;
	}
	.collectionProduct,
	.collectionProductLarge {
		float: left;
		margin: 20px 0 0;
		padding: 0 0 20px 0;
		border-bottom: 1px solid #eaeaea;
		position: relative;
		height: 95px;
		width: 390px;
	}
	.collectionProduct .collectionProductImageWrapper,
	.collectionProductLarge .collectionProductImageWrapper {
		float: left;
		background: #fff;
		display: block;
		height: 95px;
		width: 95px;
		line-height: 91px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.collectionProduct .collectionProductImageWrapper img,
	.collectionProductLarge .collectionProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.collectionProduct .collectionProductImageWrapper:hover img,
	.collectionProductLarge .collectionProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.collectionProduct header,
	.collectionProductLarge header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 15px;
		width: 270px;
		padding: 0;
		background: 0;
	}
	.collectionProduct header h2,
	.collectionProductLarge header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-weight: 700;
		font-size: 17px;
		margin: 0 0 3px 0;
		padding-right: 50px;
		font-family: "Droid Sans";
	}
	.collectionProduct header .productVendor,
	.collectionProductLarge header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 14px;
		color: #919191;
	}
	.collectionProduct header .collectionProductPrice,
	.collectionProductLarge header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 18px;
	}
	.collectionProduct header .oldPriceCollection,
	.collectionProductLarge header .oldPriceCollection {
		font-size: 13px;
	}
	#featuredProducts {
		width: 100%;
		padding: 20px 0 40px;
		margin-left: 0;
		height: auto;
		background: url(../uploads/assets/airFeaturedProductsLink.jpg) repeat
			0 0;
	}
	#featuredProducts .collectionProduct,
	#featuredProducts .collectionProductLarge {
		float: left;
		margin: 20px 0 0;
		padding: 0 20px 20px 20px;
		border-bottom: 1px solid #666;
		position: relative;
		height: 95px;
		width: 400px;
	}
	#featuredProducts .collectionProduct a,
	#featuredProducts .collectionProductLarge a {
		-webkit-tap-highlight-color: #666;
		display: block;
		width: 100%;
		height: 100%;
	}
	#featuredProductsNav {
		top: -35px;
	}
	#featuredProductsNav a {
		font-size: 14px;
		height: 35px;
		line-height: 35px;
		width: 138px;
		padding: 0;
	}
	#relatedProducts {
		width: 438px;
		margin: 0;
	}
	#relatedProductsListing {
		margin-left: 0;
	}
	#relatedProductsTitle {
		margin: 0 0 0 10px;
	}
	.relatedProduct {
		-webkit-tap-highlight-color: #fff;
		float: left;
		margin: 0;
		padding: 20px 0;
		border-bottom: 1px solid #ccc;
		position: relative;
		height: 95px;
		width: 100%;
	}
	.relatedProduct a {
		display: block;
		height: 100%;
		width: 100%;
	}
	.relatedProduct .relatedProductImageWrapper {
		margin-left: 10px;
		float: left;
		background: #fff;
		display: block;
		height: 95px;
		width: 95px;
		line-height: 95px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.relatedProduct .relatedProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.relatedProduct .relatedProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.relatedProduct header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 10px;
		width: 310px;
		padding: 0;
		background: 0;
	}
	.relatedProduct header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-size: 14px;
		margin: 0 0 3px 0;
		padding-right: 50px;
	}
	.relatedProduct header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 14px;
		color: #919191;
	}
	.relatedProduct header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 16px;
	}
	.relatedProduct header .oldPriceCollection {
		font-size: 12px;
	}
	#productDetails,
	#productContent {
		width: 100%;
	}
	#productImages {
		width: 100%;
		margin: 0 0 20px 0 !important;
	}
	#featuredThumb img {
		width: 100% !important;
	}
	#productReviews iframe {
		width: 398px !important;
	}
	#socialSharing {
		display: none;
	}
	#productPriceWrapper {
		width: 260px;
	}
	#priceTitle,
	#productPrice {
		font-size: 18px;
	}
	#shipping-calculator {
		width: 398px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		border: 0;
	}
	#shipping-calculator label {
		width: 193px;
		display: inline-block;
		font-weight: 700;
	}
	#address_zip {
		width: 177px;
	}
	.get_rates {
		margin: 0 !important;
	}
	#basketRight,
	#specialInstructions {
		float: none;
		width: 398px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0;
	}
	.cart #collectionHeader {
		width: 392px;
		margin-bottom: 20px;
	}
	#priceHeader,
	#qtyHeader,
	#totalHeader,
	#deleteHeader,
	.linePriceCol {
		display: none;
	}
	#basket .basketColumn {
		width: 64px;
	}
	#basketHeader #itemsHeader {
		width: 240px !important;
	}
	.titleCol {
		width: 260px !important;
		line-height: 19px;
		padding: 0 !important;
	}
	.basketDesc {
		line-height: 13px;
		text-align: left;
		width: 188px;
		padding: 8px 0 0;
		margin: 0 0 0 15px;
	}
	.quantityCol {
		margin-left: 0;
	}
	.basketOdd,
	.basketEven {
		position: relative;
	}
	.deleteCol {
		position: absolute;
		top: 7px;
		right: -14px;
	}
	.priceCol {
		position: absolute;
		bottom: -10px;
		left: 60px;
	}
	#accountTemplate {
		padding: 25px 20px 50px;
	}
	#customer_sidebar {
		width: 254px;
	}
	#customer_orders {
		width: 100%;
		float: left;
		margin: 30px 0 0;
	}
	#customer_orders table {
		width: 100%;
		padding: 0;
	}
	#order_address {
		float: none;
		width: 252px;
		background: #efefef;
		border: 1px solid #ddd;
		margin-bottom: 30px;
	}
	#order_payment {
		border-bottom: 0;
		padding: 10px 0 15px;
		width: 280px;
		float: none;
	}
	#order_shipping {
		padding: 10px 0 15px;
		float: left;
		width: 280px;
		margin-left: 0;
	}
	#order_details {
		width: 100%;
	}
	.large_form {
		width: 260px;
		margin: 0;
	}
	.address_table {
		width: 100%;
		font-size: 11px;
		line-height: 13px !important;
	}
	.customer_address {
		padding: 10px;
	}
	#address_tables .label,
	#address_tables label {
		line-height: 13px !important;
		font-size: 10px;
		padding: 0;
		color: #000;
	}
	.customer_address_table input[type="text"],
	.customer_address_table input[type="password"],
	.customer_address_table input[type="telephone"],
	.customer_address_table input[type="tel"],
	.customer_address_table input[type="email"],
	.customer_address_table textarea,
	.customer_address_table select {
		width: 190px;
	}
	#guest {
		width: 100%;
		padding: 30px 0 0;
		margin: 0;
		border: 0;
		position: relative;
		top: 0;
		left: 0;
	}
	#searchAgainInput {
		width: 300px;
	}
	table,
	caption,
	tbody,
	tfoot,
	thead,
	tr,
	th,
	td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	caption,
	th {
		text-align: center;
	}
	table {
		font-size: 10px;
	}
	table tr,
	table th {
		padding: 5px 0 !important;
	}
	table td {
		padding: 5px 2px !important;
	}
	.noty_text {
		float: none;
	}
	.noty_buttons {
		float: none;
		margin: 12px 0 0;
	}
	input,
	textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
}

/* ----------------------------------------------------------------
Screen widths below 320px | Target is mobile devices in Portrait
-----------------------------------------------------------------*/
@media all and (max-width: 479px) {
	html {
		-webkit-text-size-adjust: none;
	}
	#extraStyleWrapper {
	}
	.centerThis {
		width: 320px;
		margin: 0 auto;
	}
	#homeIcon,
	#homeIcon:link,
	#homeIcon:active,
	#homeIcon:visited {
		background: 0;
		text-indent: 0;
		height: auto;
		width: auto;
		display: inline;
		margin: 0;
		padding: 0;
	}
	#homeIcon:focus,
	#homeIcon:hover {
		color: #e6c84d;
	}
	#utilityNavWrapper {
		width: 320px;
		overflow: hidden;
	}
	#utilityNav li {
		margin: 0 12px 0 !important;
	}
	#utilityNav li a {
		font-size: 11px;
	}
	#yourCart,
	#yourCart:link,
	#yourCart:active,
	#yourCart:visited,
	#yourCart:focus,
	#yourCart:hover {
		color: #ffffff;
		background: 0 !important;
		margin: 0;
		width: auto;
		text-align: right !important;
		font-size: 11px;
		position: absolute;
		top: 180px;
		right: 10px;
		z-index: 1000;
	}
	#headerLeft {
		width: 320px;
		float: none;
	}
	#headerRight {
		display: none;
	}
	#mainNav {
		display: none;
	}
	#navWrapper {
		position: relative;
		height: 45px;
	}
	#navWrapper.fixedNavWrapper {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	}
	#navWrapper.fixedNavWrapper #mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 320px) / 2 + 10px);
		gap: 8px;
	}
	#navWrapper select {
		display: block;
		font-size: 15px;
		font-weight: 700;
		max-width: 30%;
		width: 100%;
		height: 25px;
		position: absolute;
		top: 9px;
		left: calc((100% - 320px) / 2 - 10px);
		background-color: #fff;
		color: #333;
		border: 1px solid #ccc;
	}
	#mobileContactIcons {
		display: flex;
		position: absolute;
		top: 10px;
		right: calc((100% - 320px) / 2 + 10px);
		gap: 8px;
	}
	#mobileContactIcons a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		text-indent: -9999px;
		position: relative;
	}
	#mobileEmailLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 7l-10 7L2 7"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobilePhoneLink::before {
		content: '';
		position: absolute;
		width: 20px;
		height: 20px;
		background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/></svg>') center/contain no-repeat;
		transition: opacity 0.2s ease;
	}
	#mobileContactIcons a:hover::before {
		opacity: 0.7;
	}
	#topHeader.fixedNavPadding {
		padding-bottom: 0;
	}
	#logoWrapper {
		width: 320px;
		margin: 0;
		text-align: center;
		vertical-align: middle;
		float: none;
	}
	#logo {
		max-width: 90%;
		text-align: center;
		vertical-align: middle;
	}
	#content {
		width: 100%;
		padding: 0;
	}
	#logoText {
		font-size: 30px;
	}
	#content {
		width: 100%;
		padding: 0;
	}
	#mainContent {
		width: 280px;
		padding: 30px 20px;
	}
	#mainContent .textile img,
	#mainContent .textile iframe,
	#mainContent .textile embed {
		max-width: 270px;
	}
	.textile label {
		line-height: 25px;
		font-weight: 700;
		text-transform: uppercase;
		margin-bottom: 4px;
	}
	.textile input[type="text"],
	.textile input[type="password"],
	.textile input[type="telephone"],
	.textile input[type="tel"],
	.textile input[type="email"],
	.textile textarea {
		width: 100%;
		max-width: 260px !important;
		margin-bottom: 15px;
	}
	#sidebar {
		display: none;
	}
	.index #sidebar {
		margin-right: -4px;
	}
	#latestNews,
	#latestNewsRotator,
	#latestNews .articleWrapper {
		width: 320px !important;
	}
	#latestNews .articleDate {
		margin: 0 8px 30px 8px;
	}
	.articleSummary {
		padding: 0 !important;
		margin: 0 !important;
	}
	#latestNews .articleSummary {
		margin: 0 0 30px 0 !important;
		padding: 0 10px 20px 10px !important;
	}
	#footerContact {
		line-height: 18px;
	}
	#copyright {
		margin: 24px 0 20px 0;
		line-height: 18px;
	}
	#footerNavWrapper #footerNav {
		display: none;
	}
	#footerNavWrapper select {
		display: block;
		width: 200px;
		height: 25px;
		font-size: 15px;
		font-weight: 700;
		margin: 0 auto;
	}
	#footerLeft {
		width: 320px;
		text-align: center;
		padding: 0;
		margin: 0;
	}
	#footerRight {
		width: 320px;
		border: 0;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	#mc_embed_signup {
		width: 320px;
		padding: 0;
	}
	#mc_embed_signup #mce-EMAIL {
		width: 203px;
	}
	#mc_embed_signup #mc-embedded-subscribe {
		width: 64px;
	}
	#paymentMethods {
		width: 320px;
		padding: 0;
		margin: 15px 0 0;
	}
	#paymentMethods h5 {
		display: none;
	}
	#spotlightsWrapper figcaption h2 {
		font-size: 23px;
	}
	#billboardWrapper,
	#billboard,
	.nivo-slider,
	.nivo-slider img,
	#middleSpotlight,
	#rightSpotlight {
		display: none;
	}
	#largeSpotlight,
	#largeSpotlight img {
		width: 318px;
		height: auto;
		margin: 0;
	}
	#contentSections {
		margin: 20px 0 30px;
	}
	#welcomeCol {
		width: 100%;
		margin: 0;
		padding: 0 0 50px 0;
	}
	#latestNews h1 {
		margin-left: -5px;
	}
	#middleCol {
		display: none;
	}
	#collectionHeader {
		width: 274px;
		margin-bottom: 0px;
	}
	#collectionDescription {
		margin: 20px auto 0;
		width: 280px;
	}
	#collectionDescription p {
		margin: 0;
	}
	#collectionProducts {
		width: 100%;
		padding-right: 0;
		margin: 0 0 30px 0;
	}
	.onSale {
		top: 10px;
		right: 10px;
	}
	.collectionProduct,
	.collectionProductLarge {
		-webkit-tap-highlight-color: #fff;
		float: left;
		margin: 0;
		padding: 20px 0;
		border-bottom: 1px solid #eaeaea;
		position: relative;
		height: 65px;
		width: 100%;
	}
	.collectionProduct .collectionProductImageWrapper,
	.collectionProductLarge .collectionProductImageWrapper {
		margin-left: 15px;
		float: left;
		background: #fff;
		display: block;
		height: 65px;
		width: 65px;
		line-height: 61px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.collectionProduct .collectionProductImageWrapper img,
	.collectionProductLarge .collectionProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.collectionProduct .collectionProductImageWrapper:hover img,
	.collectionProductLarge .collectionProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.collectionProduct header,
	.collectionProductLarge header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 10px;
		width: 210px;
		padding: 0;
		background: 0;
	}
	.collectionProduct header h2,
	.collectionProductLarge header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-weight: 700;
		font-size: 14px;
		margin: 0 0 3px 0;
		padding-right: 50px;
		font-family: "Droid Sans";
	}
	.collectionProduct header .productVendor,
	.collectionProductLarge header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 12px;
		color: #919191;
	}
	.collectionProduct header .collectionProductPrice,
	.collectionProductLarge header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 16px;
	}
	.collectionProduct header .oldPriceCollection,
	.collectionProductLarge header .oldPriceCollection {
		font-size: 12px;
	}
	#collectionContent #pagination {
		margin: 20px 20px 80px 20px;
	}
	#featuredProducts {
		width: 100%;
		padding: 20px 0 40px 0;
		background-position: -10px 0;
		margin-left: 0;
		height: auto;
		background: url(../uploads/assets/airFeaturedProductsLink.jpg) repeat
			0 0;
	}
	#featuredProductsNav {
		top: -35px;
	}
	#featuredProductsNav a {
		font-size: 14px;
		height: 35px;
		line-height: 35px;
		width: 138px;
		padding: 0;
	}
	#featuredProducts .collectionProduct {
		-webkit-tap-highlight-color: #777;
		border-bottom: 1px solid #555;
	}
	#featuredProducts .collectionProduct a {
		display: block;
		width: 100%;
		height: 100%;
	}
	#relatedProducts {
		width: 318px;
		margin: 0;
	}
	#relatedProductsListing {
		margin-left: 0;
	}
	#relatedProductsTitle {
		margin: 0 0 0 20px;
	}
	.relatedProduct {
		-webkit-tap-highlight-color: #fff;
		float: left;
		margin: 0;
		padding: 20px 0;
		border-bottom: 1px solid #ccc;
		position: relative;
		height: 65px;
		width: 100%;
	}
	.relatedProduct a {
		display: block;
		height: 100%;
		width: 100%;
	}
	.relatedProduct .relatedProductImageWrapper {
		margin-left: 10px;
		float: left;
		background: #fff;
		display: block;
		height: 65px;
		width: 65px;
		line-height: 65px;
		overflow: hidden;
		box-shadow: 0 0 1px #bbb;
	}
	.relatedProduct .relatedProductImageWrapper img {
		vertical-align: middle;
		display: inline;
		opacity: 1;
		filter: alpha(opacity=100);
		transition: opacity 0.2s ease-in;
	}
	.relatedProduct .relatedProductImageWrapper:hover img {
		opacity: 0.7;
		filter: alpha(opacity=70);
	}
	.relatedProduct header {
		position: relative;
		left: auto;
		bottom: 0;
		float: left;
		margin: 10px 0 0 10px;
		width: 220px;
		padding: 0;
		background: 0;
	}
	.relatedProduct header h2 {
		color: #000;
		text-shadow: 0 0 0;
		font-size: 14px;
		font-weight: 700;
		text-transform: uppercase;
		margin: 0 0 3px 0;
		padding-right: 50px;
	}
	.relatedProduct header .productVendor {
		font-family: "Droid Serif", Georgia, "Times New Roman", serif;
		font-style: italic;
		font-size: 14px;
		color: #919191;
	}
	.relatedProduct header .collectionProductPrice {
		color: #91b46e;
		font-family: "Droid Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
		font-weight: 700;
		font-size: 16px;
	}
	.relatedProduct header .oldPriceCollection {
		font-size: 12px;
	}
	#productDetails,
	#productContent {
		width: 100%;
	}
	#productImages {
		width: 100%;
		margin: 0 0 20px 0 !important;
	}
	#productDescription {
		padding-right: 0;
	}
	#featuredThumb {
		margin-bottom: 12px !important;
	}
	#featuredThumb img {
		width: 100%;
	}
	#socialSharing {
		display: none;
	}
	#productPriceWrapper {
		width: 180px;
	}
	#priceTitle,
	#productPrice {
		font-size: 18px;
	}
	#productReviews iframe {
		width: 280px !important;
	}
	#mc_embed_signup #mce-EMAIL {
		margin-left: 16px;
	}
	#shipping-calculator {
		width: 280px !important;
		margin: 0 auto !important;
		padding: 0 !important;
		border: 0;
	}
	#address_zip {
		width: 100px;
	}
	.get_rates {
		margin: 0 !important;
	}
	#basketRight,
	#specialInstructions {
		float: none;
		width: 280px !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0;
	}
	.cart #collectionHeader {
		width: 274px;
		margin-bottom: 20px;
	}
	#priceHeader,
	#qtyHeader,
	#totalHeader,
	#deleteHeader,
	.priceCol {
		display: none;
	}
	#basket .basketColumn {
		width: 64px;
	}
	#basketHeader #itemsHeader {
		width: 240px !important;
	}
	.titleCol {
		width: 260px !important;
		line-height: 19px;
		padding: 0 !important;
	}
	.basketDesc {
		line-height: 18px;
		text-align: left;
		width: 188px;
		padding: 8px 0 0;
		margin: 0 0 0 15px;
	}
	.quantityCol {
		margin-left: 0;
	}
	#accountTemplate {
		padding: 25px 20px 50px;
	}
	#customer_sidebar {
		width: 254px;
	}
	#customer_orders {
		width: 100%;
		float: left;
		margin: 30px 0 0;
	}
	#customer_orders table {
		width: 100%;
		padding: 0;
	}
	#order_address {
		float: none;
		width: 252px;
		background: #efefef;
		border: 1px solid #ddd;
		margin-bottom: 30px;
	}
	#order_payment {
		border-bottom: 0;
		padding: 10px 0 15px;
		width: 280px;
		float: none;
	}
	#order_shipping {
		padding: 10px 0 15px;
		float: left;
		width: 280px;
		margin-left: 0;
	}
	#order_details {
		width: 100%;
	}
	.large_form {
		width: 260px;
		margin: 0;
	}
	.address_table {
		width: 100%;
		font-size: 11px;
		line-height: 13px !important;
	}
	.customer_address {
		padding: 10px;
	}
	#address_tables .label,
	#address_tables label {
		line-height: 13px !important;
		font-size: 10px;
		padding: 0;
		color: #000;
	}
	.customer_address_table input[type="text"],
	.customer_address_table input[type="password"],
	.customer_address_table input[type="telephone"],
	.customer_address_table input[type="tel"],
	.customer_address_table input[type="email"],
	.customer_address_table textarea,
	.customer_address_table select {
		width: 190px;
	}
	#guest {
		width: 100%;
		padding: 30px 0 0;
		margin: 0;
		border: 0;
		position: relative;
		top: 0;
		left: 0;
	}
	table,
	caption,
	tbody,
	tfoot,
	thead,
	tr,
	th,
	td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	caption,
	th {
		text-align: center;
	}
	table {
		font-size: 10px;
	}
	table tr,
	table th {
		padding: 5px 0 !important;
	}
	table td {
		padding: 5px 2px !important;
	}
	.noty_text {
		float: none;
	}
	.noty_buttons {
		float: none;
		margin: 12px 0 0;
	}
	input,
	textarea {
		-webkit-appearance: none;
		border-radius: 0;
	}
}
/* Stylesheet: GT1 : Mobile Modified On 2013-03-10 17:11:02 */
.responsive {
	width: 100%;
	height: auto;
}

div.website,
div.website * {
	display: none !important;
}

#largeSpotlightText {
	background-color: #32078f;
}

#largeSpotlight:hover figcaption,
#middleSpotlight:hover figcaption,
#rightSpotlight:hover figcaption {
	background-color: rgb(0, 6, 139);
}

#largeSpotlight figcaption {
	background-color: rgba(129, 143, 172, 0.7);
}
#middleSpotlight figcaption {
	background-color: ;
}
#rightSpotlight figcaption {
	background-color: rgba(4, 1, 95, 0.7);
}

#navWrapper {
	background: #352973;
	background-color: #352973;
}

#pageHeader h1 {
	color: #bdac55;
}

#topWrapper {
	background: #fff;
	background-color: #ffffff;
}

div.nivo-caption {
	background-color: #341175;
}

#contentWrapper {
	background-color: #c8c8c8;
}

#searchInput {
	background-color: #5e5e5e;
}

#largeSpotlightText {
	background-color: #4b489e;
}

/* Marine Products - Modern Card Grid Layout (only for main products page) */
#products.productList {
	margin: 30px 0;
	padding: 0;
}

#products.productList ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

#products.productList li {
	font-size: 1em;
	font-weight: normal;
	line-height: 1.5em;
	color: inherit;
	margin: 0;
}

#products.productList li a {
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 0;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	min-height: 220px;
}

#products.productList li a .product-thumbnail {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-radius: 6px 6px 0 0;
	transition: transform 0.3s ease;
}

#products.productList li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(53, 41, 115, 0.1), transparent);
	transition: left 0.5s ease;
	pointer-events: none;
}

#products.productList li a:hover::before {
	left: 100%;
}

#products.productList li a:hover {
	background: linear-gradient(135deg, #352973 0%, #4a3b96 100%);
	border-color: #352973;
	box-shadow: 0 8px 24px rgba(53, 41, 115, 0.25);
	transform: translateY(-4px);
}

#products.productList li a:hover .product-thumbnail {
	transform: scale(1.05);
}

#products.productList li a span {
	display: block;
	font-family: var(--font-display);
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #352973;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
	padding: 20px 15px;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

#products.productList li a:hover span {
	color: #e6c84d;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	#products.productList ul {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	#products.productList li a {
		min-height: 200px;
	}
	
	#products.productList li a .product-thumbnail {
		height: 140px;
	}
	
	#products.productList li a span {
		font-size: 18px;
		padding: 15px 10px;
	}
}

/* Regular product detail lists with bullets (individual product pages without .productList class) */
#products:not(.productList) {
	list-style: disc;
	padding-left: 25px;
	margin: 15px 0;
}

#products:not(.productList) li {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.3em;
	color: #352973;
	margin: 8px 0;
	list-style: disc;
}

#sidebarBkgd {
	padding-bottom: 5px;
}

#sidebar section {
	padding: 0;
}
#sideMenu {
	line-height: 1.2em;
}
#sideContact p {
	font-size: 1em;
}

#sideContact h2 {
	font-size: 1.3em;
}
#sideContact .email {
	background: url(../uploads/assets/footerIcons.png) no-repeat 0 1px;
	padding-left: 24px;
}

/* ----------------------------------------------------------------
Modern Accessibility & Focus Indicators
-----------------------------------------------------------------*/
/* Visible focus indicators for keyboard navigation (WCAG 2.1) */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
	outline: 2px solid #0066cc;
	outline-offset: 2px;
}

/* Focus visible for modern browsers (only shows on keyboard focus) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid #0066cc;
	outline-offset: 2px;
}

/* Remove default outline when using focus-visible */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
	outline: none;
}

/* Skip link for screen readers */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: #fff;
	padding: 8px;
	text-decoration: none;
	z-index: 100000;
}

.skip-link:focus {
	top: 0;
}

/* Stylesheet: GT1 : Edits Modified On 2025-08-09 17:47:03 */
