@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		9;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	33;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* ******************** NEW  PAGE ******************** */

body {
	margin: 0;
	padding: 0;
	font-family: "Century Gothic", "Apple Gothic", Verdana, sans-serif;	
	background-color:#4f3b3b; /* may have to change to black if the 1px crack can't be fixed */
}
a, a:link, a:visited {
	color: #FFF;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
p {
	font-size: 12px;
	line-height: 1.6;
	color:  #fff;
}


.button:hover {
   border-top-color: #28597a;
   background: #28597a;
   color: #ccc;
   }
.button:active {
   border-top-color: #1b435e;
   background: #1b435e;
   }
 
.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.food{
background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;	
	}








h1 {
	color: #F00;
}


h2 {
	color:#fff;
	text-align:center;
	position: relative;
	width:  100%;
	margin-left:  -3.3066%;
	padding:  12px 3.3066% 10px;
	font: 700 17px/1.2 adobe-garamond-pro, Georgia, serif;
	text-transform: uppercase;
}

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 93.3868%;
	padding-left: 3.3066%;
	padding-right: 3.3066%;
	background-color: #2f2122;
	/* Firefox v3.6+ */
	background-image: -moz-linear-gradient(50% 0% -90deg, rgb(79,59,59) 28%, rgb(137,126,126) 100%, rgb(79,59,59) 0%);
	/* safari v4.0+ and by Chrome v3.0+ */
	background-image: -webkit-gradient(linear, 50% 0%, 49% 91%, color-stop(0.28, rgb(79,59,59)), color-stop(1, rgb(137,126,126)), color-stop(0, rgb(79,59,59)));
	/* Chrome v10.0+ and by safari nightly build*/
	background-image: -webkit-linear-gradient(-90deg, rgb(79,59,59) 28%, rgb(137,126,126) 100%, rgb(79,59,59) 0%);
	/* Opera v11.10+ */
	background-image: -o-linear-gradient(-90deg, rgb(79,59,59) 28%, rgb(137,126,126) 100%, rgb(79,59,59) 0%);
	background-image: linear-gradient(-90deg, rgb(79,59,59) 28%, rgb(137,126,126) 100%, rgb(79,59,59) 0%);
	position: relative;
}
#header {
	clear: both;
	float: left;
	padding: 0 3.3066%;
	margin-left: -3.3066%;
	width: 100%;
	display: block;
	position: relative;
	min-height: 255px;
	background: url(../img/hero.jpg) no-repeat center center;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}

#head-top {
	clear: both;
	float: left;
	width: 100%;
	padding: 0 3.3066%;
	margin-left: -3.3066%;
	display: block;
	min-height: 50px;
	background-color: #311b1c; /* use this as the demo for changing to RGBA */
	background-color: rgba(49,27,28,.5);
}
#nav {
	width: 20.04%;
	position:  absolute;
	left:  0;
	top: 0;
	min-height:  50px;
	background-color: rgba(49,27,28,.5);
	background-image: url(../img/icn-triangle.png);
	background-repeat: no-repeat;
	background-position: 25px center; 
	-webkit-transition: width .5s ease-out 1s;
	-moz-transition: width 0.5s ease-out 0.1s; 
	-ms-transition: width 0.5s ease-out 0.1s;
	-o-transition: width 0.5s ease-out 0.1s;
	transition: width 0.5s ease-out 0.1s;
}
ul.sneaky-nav {
	width: 100%;
	position:  absolute;
	-webkit-transform: translateY(-300px);
	-moz-transform: translateY(-300px);
	-ms-transform: translateY(-300px);
	-o-transform: translateY(-300px);
	transform: translateY(-300px);
	-webkit-transition: all 0.5s ease-in-out 0.1s;
	-moz-transition: all 0.5s ease-in-out 0.1s;
	-ms-transition: all 0.5s ease-in-out 0.1s;
	-o-transition: all 0.5s ease-in-out 0.1s;
	transition: all 0.5s ease-in-out 0.1s;
}
ul.sneaky-nav a {
	text-decoration: none;
}
#nav:hover, #nav:focus {
	width: 100%;
	-webkit-transition: width 0s ease-in 0s;
	-moz-transition: width 0s ease-in 0s;
	-ms-transition: width 0s ease-in 0s; 
	-o-transition: width 0s ease-in 0s;
	transition: width 0s ease-in 0s;
}
#nav:hover ul.sneaky-nav, #nav:focus ul.sneaky-nav {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	z-index: 2;
}
#logo {
	width: 46.6933%;
	position: absolute;
	top: 5px;
	left:  50%;
	margin-left: -68px;
}
#logo img {
	width: 136px;
	height:  42px;
}
#cart {
	position:  absolute;
	right: 0;
	top: 0;
	width: 20.04%;
	background-color: rgba(49,27,28,.5);
	background-image: url(../img/icn-cart.png);
	background-repeat:  no-repeat;
	background-position:center center;
	min-height:  50px;
}
#cart span {
	display: block;
	text-indent: -999em;
}
.hero-text {
	background-color: rgb(23,31,31);
	background-color: rgba(23,31,31,.5);
	position: static;
	bottom: relative;
	right: -525;
	left: 780px;
}
.hero-text h1 {
	font: 12px/1.5 madrone-std, Madrone, serif;
	font-style: normal;
	font-weight: 400; /* update other builds */
	color: #FFF;
	text-transform: uppercase;
	margin: 0 10px;
	padding-top: 10px;
}
.hero-text h1 span {
	display: block;
	color:#dfd8bc;
	font-size: 25px;
	position: relative;
	line-height: 1;
	padding-top: 15px;
}
.hero-text h1 span:after {
	content:  "";
	position:  absolute;
	top:  0;
	left: 0;
	height:  10px;
	width:165px;
	background-image: url(../img/trans-divider.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.hero-text p {
	font-size:  11px;
	line-height: 1.4;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow: 0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow: 0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
	margin-top: 0;
	margin-left: 10px;
}
h2.bar {
	border-bottom: 2px solid #695959;
	/* Firefox v3.5+ */
	-moz-text-shadow: 0px 2px 1px rgba(0,0,0,0.47);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow: 0px 2px 1px rgba(0,0,0,0.47);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow: 0px 2px 1px rgba(0,0,0,0.47);
	background-color: #675353; /*fallback for non-gradient browsers */
	/* Firefox v3.6+ */
	background-image: -moz-linear-gradient(50% 0% -90deg, rgb(99,82,82) 0%, rgb(88,72,72) 34%, rgb(80,66,66) 63%, rgb(73,61,61) 100%);
	/* safari v4.0+ and by Chrome v3.0+ */
	background-image: -webkit-gradient(linear, 50% 0%, 50% 115%, color-stop(0, rgb(99,82,82)), color-stop(0.34, rgb(88,72,72)), color-stop(0.63, rgb(80,66,66)), color-stop(1, rgb(73,61,61)));
	/* Chrome v10.0+ and by safari nightly build*/
	background-image: -webkit-linear-gradient(-90deg, rgb(99,82,82) 0%, rgb(88,72,72) 34%, rgb(80,66,66) 63%, rgb(73,61,61) 100%);
	/* Opera v11.10+ */
	background-image: -o-linear-gradient(-90deg, rgb(99,82,82) 0%, rgb(88,72,72) 34%, rgb(80,66,66) 63%, rgb(73,61,61) 100%);
	background-image: linear-gradient(-90deg, rgb(99,82,82) 0%, rgb(88,72,72) 34%, rgb(80,66,66) 63%, rgb(73,61,61) 100%); 
}
h2.bar:after {
	
	content: "";
	position: absolute;
	top: 0;
	right:  0;
	left:  0;
	bottom:  -8px;
	border-bottom: 5px solid #4B3F3F;
}
#sale {
	
	clear: both;
	float: left;
	padding: 0 -3.3066%;
	margin-left: 3.3066%;
	width: 100%;
	display: block;
}
#sale h2 {
	
	background-color: #514141;
	border-top:  3px solid #7d9c9c;
	border-bottom:  3px solid #7d9c9c;
	margin-top: 0;
	font-weight:  normal;
	position:  relative;
	/* Firefox v3.5+ */
	-moz-box-shadow:5px 5px 4px rgba(0,0,0,0.32);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-box-shadow:5px 5px 4px rgba(0,0,0,0.32);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	box-shadow:5px 5px 4px rgba(0,0,0,0.32);
}
#sale h2:before {
	
	content:  "";
	background-color:#e1d7b3;
	position: absolute;
	top: 0;
	right:  0;
	bottom:  0;
	left:  0;
	width: 30px;
}
#sale h2:after {
	
	content:  "";
	position: absolute;
	top: 0;
	right:  0;
	bottom:  0;
	left:  20px;
	width: 0;
	border-top: 21px solid #514141;
	border-bottom: 21px solid #514141;
	border-left: 21px solid #e1d7b3;
}
#sale p {
	
	margin-top: 0;
	width: 65%;
	margin-left:  -3.3066%%;
	padding: 20px 12% 20px 30%;
	font-size:  13px;
	background-color:#667274;
	background-image: url(../img/icn-tag.gif);
	background-repeat: no-repeat;
	background-position: 10% center;
}
#sale b {
	
	font-weight:  bold;
	font-size: 18px;
}
#sale span {
	
	display: block;
}
#feature {
	
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#feature h2 {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;	
}
#feature-hold {
	
	width: 100%;
	clear: both;
	float: left;
	margin-left: -2.5%;
	display: block;
	border: solid white 10px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	height: 170px; 
	/* Firefox v3.5+ */
	-moz-box-shadow:0px 7px 3px rgba(0,0,0,0.29);
/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-box-shadow:0px 7px 3px rgba(0,0,0,0.29);
/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	box-shadow:0px 7px 3px rgba(0,0,0,0.29);
}
.arrow {
	
	position:  absolute;
	z-index: 2;
	width: 60px;
	height:  70px;
	background-color: rgba(25,32,32,.5);
}
.arrow span {
	
	display: block;
	position:  absolute;
	top: 24px;
	width: 22px;
	height:  22px;
	background-image:  url(../img/icn-triangle.png);
	background-repeat: no-repeat;
	background-position: center center;
}
.left {
	top: 40px;
	left: 0;
}
.left span {
	right:  12px;
	-webkit-transform: rotate(90deg) translateY(7px);
	-moz-transform: rotate(90deg) translateY(7px);
	transform: rotate(90deg) translateY(7px);
}
.rt {
	top: 40px;
	right: 0;
}
.rt span {
	left:  12px;
	-webkit-transform: rotate(270deg) translateY(7px);
	-moz-transform: rotate(270deg) translateY(7px);
	transform: rotate(270deg) translateY(7px);
}
.feature-mask {
	width: 400%;
}
.pic img {
	width:  100%;
	margin-top: -50%;
	display: block;
	float: left;
}
#pic-one, #pic-two, #pic-three, #pic-four {
	clear: none;
	float: left;
	margin-left: 0;
	width: 25%;
	display: block;
	position:  relative;
}
.content { 
	position: absolute;
	top: 145px;
	z-index:  5;
	text-align:  center;
	width: 100%;
	background: #FFF;
}
.content p {
	color:  #514141;
	font-size: 15px;
	margin: 5px;
}
.content a, .content h3 {
	display: none;	
}
#magazine {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#design-hold {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#des-head {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#designer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 46.6933%;
	background-image: url(../img/alice.jpg);
	background-size: 220px 180px;
	background-repeat: no-repeat;
	background-position: -16px -20px;
	position: relative;
	overflow: visible;
	z-index: 0;
}
.alice {
	border:  5px solid white;
	height:  140px;
}
#designer:after { 
	content: "";
	position: absolute;
	z-index: -1;
	height: 20px;
	width: 40%;
	left: 59%;
	bottom: 0;
	right: 0;
	background-color: rgba(51,51,51,0.5);
	-webkit-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-moz-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-webkit-transform:  rotate(5deg);
	-moz-transform:  rotate(5deg);
	-ms-transform:  rotate(5deg);
	-o-transform:  rotate(5deg);
	transform:  rotate(5deg);
}
#des-text {
	clear: none;
	float: left;
	margin-left: 6.6132%;
	width: 46.6933%;
	display: block;
}
#catalog {
	display: none;
}
#stacker {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#tip {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#road {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#connect {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#plur-to-go {
	width:280px;
	padding: 10px;
	margin: 0 auto;
	display: block;
	-webkit-border-top-right-radius: 27px;
	-moz-border-radius-topright: 27px;
	border-top-right-radius: 27px;
	background-image: -moz-linear-gradient(top, rgba(84,65,65,1) 0%, rgba(84,65,65,0.83) 44%, rgba(84,65,65,0.27) 69%, rgba(84,65,65,0) 94%); /* FF3.6+ */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(84,65,65,1)), color-stop(44%, rgba(84,65,65,0.83)), color-stop(69%, rgba(84,65,65,0.27)), color-stop(94%, rgba(84,65,65,0))); /* Chrome,Safari4+ */
	background-image: -webkit-linear-gradient(top, rgba(84,65,65,1) 0%, rgba(84,65,65,0.83) 44%, rgba(84,65,65,0.27) 69%, rgba(84,65,65,0) 94%); /* Chrome10+,Safari5.1+ */
	background-image: -o-linear-gradient(top, rgba(84,65,65,1) 0%, rgba(84,65,65,0.83) 44%, rgba(84,65,65,0.27) 69%, rgba(84,65,65,0) 94%); /* Opera 11.10+ */
	background-image: -ms-linear-gradient(top, rgba(84,65,65,1) 0%, rgba(84,65,65,0.83) 44%, rgba(84,65,65,0.27) 69%, rgba(84,65,65,0) 94%); /* IE10+ */
	background-image: linear-gradient(top, rgba(84,65,65,1) 0%, rgba(84,65,65,0.83) 44%, rgba(84,65,65,0.27) 69%, rgba(84,65,65,0) 94%); /* W3C */
}
.nocssgradients #plur-to-go {
	background-color:#4f3b3b;
}
#plur-to-go .emblem {
	width: 100%;
	height: 210px;
	max-width: 270px;
	margin: 0 auto;
	position: relative;
	background-color: #a4e6e6;
	-webkit-border-top-right-radius: 27px;
	-webkit-border-bottom-left-radius: 27px;
	-moz-border-radius-topright: 27px;
	-moz-border-radius-bottomleft: 27px;
	border-top-right-radius: 27px;
	border-bottom-left-radius: 27px;
	/* Firefox v3.6+ */
	background-image: -moz-linear-gradient(43% -3% -90deg, rgb(164,230,230) 0%, rgb(136,190,190) 3%, rgb(75,107,107) 100%);
	/* safari v4.0+ and by Chrome v3.0+ */
	background-image: -webkit-gradient(linear, 43% -3%, 43% 164%, color-stop(0, rgb(164,230,230)), color-stop(0.03, rgb(136,190,190)), color-stop(1, rgb(75,107,107)));
	/* Chrome v10.0+ and by safari nightly build*/
	background-image: -webkit-linear-gradient(-90deg, rgb(164,230,230) 0%, rgb(136,190,190) 3%, rgb(75,107,107) 100%);
	/* Opera v11.10+ */
	background-image: -o-linear-gradient(-90deg, rgb(164,230,230) 0%, rgb(136,190,190) 3%, rgb(75,107,107) 100%);
	background-image: linear-gradient(-90deg, rgb(164,230,230) 0%, rgb(136,190,190) 3%, rgb(75,107,107) 100%);
	/* Firefox v3.5+ */
	-moz-box-shadow: 2px 2px 1px rgba(0,0,0,0.28);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-box-shadow: 2px 2px 1px rgba(0,0,0,0.28);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	box-shadow: 2px 2px 1px rgba(0,0,0,0.28);
}
#plur-to-go p {
	font: 19px madrone-std, Madrone, serif;
	text-transform: uppercase;
	text-align: center;
	padding-top: 25px;
	margin-top: 0;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px 1px 1px rgba(0,0,0,0.07);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px 1px 1px rgba(0,0,0,0.07);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px 1px 1px rgba(0,0,0,0.07);
}
#plur-to-go span {
	display: block;
	font-size:  35px;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px 1px 1px rgba(0,0,0,0.31);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px 1px 1px rgba(0,0,0,0.31);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px 1px 1px rgba(0,0,0,0.31);
}
#plur-to-go b {
	color:  #2E3334;
}
#plur-to-go img {
	display:  block;
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin-left: -44px;
}
#plur-to-go .plur-feat {
	color: white;
	text-align: center;
	margin:  5px;
	list-style: none;
	padding:  0;
}
.plur-feat li {
	padding-top: 4px;
}
#plur-to-go p.callout {
	color:#e0d7b2;
	padding: 15px 0;
	font: 15px/70% madrone-std, Madrone, serif;
	text-transform: uppercase;
	text-align: center;
	background-color:#402b2b;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px 2px 2px rgba(0,0,0,0.65);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px 2px 2px rgba(0,0,0,0.65);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px 2px 2px rgba(0,0,0,0.65);
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	/* Firefox v3.5+ */
	-moz-box-shadow:0px 4px 1px rgba(64,43,43,0.17);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-box-shadow:0px 4px 1px rgba(64,43,43,0.17);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	box-shadow:0px 4px 1px rgba(64,43,43,0.17);
}
#social {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	padding: 0 3.3066%%;
	margin-left:  -3.3066%%;
	background-color: #7A6D6D;

}
#social ul {
	color:  #fff;
	font: 400 15px/1.3 adobe-garamond-pro, Georgia, serif;
	text-align:  center;
	text-transform: uppercase;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px -1px 0px rgba(49,49,49,0.32);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px -1px 0px rgba(49,49,49,0.32);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px -1px 0px rgba(49,49,49,0.32);
}
#social li {
	display: inline-block;
	padding:  13px 10px 13px 13px;
	position:  relative;
}
#social li:before {
	content:  "| ";
	position:  absolute;
	left: 0;
	top: 15px;
	font-size:  11px;
	-webkit-transform:  rotate(15deg);
	-moz-transform:  rotate(15deg);
	-ms-transform:  rotate(15deg);
	-o-transform:  rotate(15deg);
	transform:  rotate(15deg);
}
#social li:first-child:before {
	content: "";
}
#footer {
	clear: both;
	float: left;
	padding: 0 3.3066%%;
	margin-left:  -3.3066%%;
	width: 100%;
	display: block;
	background-color:  #444;
}
#footer ul {
	width: 100%;
	padding: 0 3.3066%%;
	margin-left:  -3.3066%%;
	border-top:  1px solid #857979;
}
#footer ul a {
	text-decoration:  none;
}
.main a {
	display:  block;
	width:  100%;
	font: 400 18px/2 adobe-garamond-pro, Georgia, serif;
	text-transform: uppercase;
	background-color:  #5B4B4B;
	border-bottom: 1px solid #877C7C;
	width: 100%;
	padding: 3px 3.3066%%;
	margin-left:  -3.3066%%;
}
.main a:hover, .main a:active, .main a:focus {
	background: #4A4141;
}
.policy {
	display: inline-block;
	text-align: left;
	width: 46%;
	padding: 10px 0;
	font-size:  11px;
}
.first {
	text-align: right;
}
.first:after {
	content: " |";
	color:  #FFF;
}
.small {
	color:  #858594;
	text-align: center;
	margin-top: 0;
	margin-bottom: 0;
	font-size:  11px;
}
.disclaim {
	font-size: 11px;
	margin: 0 60px;
	text-align: center;
	padding-bottom: 10px;
}

/* Tablet Layout: 481px to 901px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 97.165%;
	padding-left: 1.4175%;
	padding-right: 1.4175%;
	min-width: 665px;
}
#header {
	min-height:  343px;	
	background-position:  center center;
	padding: 0 1.4175%;
	margin-left:  -1.4175%;
}
#head-top {
	clear: both;
	float: left;
	padding: 0 1.4175%;
	margin-left: -1.4175%;
	width: 100%;
	display: block;
}
#nav {
	clear: none;
	margin-left: 250px;
	margin-right: 300px;
	width: 65%;
	position:  static;
	background-color:  transparent;
	background-image: none;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
#nav:hover {
	width: 65%;	/*must match the above width or there will be a jump due to the mobile transition. */
}
ul.sneaky-nav {
	margin: 0;
	padding: 0;
	position:  static;
	-webkit-transform: none; /* the overrides */
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	
}
#nav li {
	display: inline-block;
}
#nav li a {
	display:  inline-block;
	padding:  15px 25px 10px 0;
	font: 16px adobe-garamond-pro, Georgia, serif;
	text-transform: uppercase;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px -1px 0px rgba(0,0,0,0.75);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px -1px 0px rgba(0,0,0,0.75);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px -1px 0px rgba(0,0,0,0.75);
		
}
ul.sneaky-nav a {
	text-decoration: none;	
}

ul.sneaky-nav a:hover, ul.sneaky-nav a:focus {
	text-decoration: none;
	color: #8CD4D7;
}
#nav:hover ul.sneaky-nav, #nav:focus ul.sneaky-nav {
	-webkit-transform: none; /* the overrides */
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
#logo {
	margin-left:  0;
	left:  48px;
	top: 0;
	width: 170px;
	height: 57px;
	background-color:#6f9c9e;
	/* Firefox v3.6+ */
	background-image:
	-moz-linear-gradient(50% 11% -90deg,
	rgb(111,156,158) 3%,
	rgb(86,130,135) 53%,
	rgb(62,105,113) 100%,
	rgb(111,156,158) 0%);
	/* safari v4.0+ and by Chrome v3.0+ */
	background-image:
	-webkit-gradient(linear,
	50% 11%,
	50% 100%,
	color-stop(0.03, rgb(111,156,158)),
	color-stop(0.53, rgb(86,130,135)),
	color-stop(1, rgb(62,105,113)),
	color-stop(0, rgb(111,156,158)));
	/* Chrome v10.0+ and by safari nightly build*/
	background-image:
	-webkit-linear-gradient(-90deg,
	rgb(111,156,158) 3%,
	rgb(86,130,135) 53%,
	rgb(62,105,113) 100%,
	rgb(111,156,158) 0%);
	/* Opera v11.10+ */
	background-image:
	-o-linear-gradient(-90deg,
	rgb(111,156,158) 3%,
	rgb(86,130,135) 53%,
	rgb(62,105,113) 100%,
	rgb(111,156,158) 0%);
	background-image:
	linear-gradient(-90deg,
	rgb(111,156,158) 3%,
	rgb(86,130,135) 53%,
	rgb(62,105,113) 100%,
	rgb(111,156,158) 0%);
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
#logo img {
	left:  46px;
	width: 127px;
	height: 39px;
	margin: 5px auto;
	display: block;
}
#cart {
	width: 20.04%;
	background-color: transparent;
	background-position: 70% center;
	min-height:  50px;
}
#hero-text {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
.hero-text {
	background-color: transparent;
	position: static;
	right: auto;
	bottom: 293px;
}
.hero-text h1 {
	font-size: 17px;
	padding-left: 5px;
	-webkit-text-shadow: 1px 1px 5px rgba(0,0,0,.5);
	-moz-text-shadow: 1px 1px 5px rgba(0,0,0,.5);
	text-shadow: 1px 1px 5px rgba(0,0,0,.5);
}
.hero-text h1 span {
	font-size:  34px;	
}
.hero-text h1 span:after {
	left: 25px;	
}
.hero-text p {
	padding-left: 5px;
	float: none;
	font-size: 14px;
	-webkit-text-shadow: 0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
	-moz-text-shadow: 0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
	text-shadow: 0px 0px 0 #FFF, 0px -1px 5px rgba(0,0,0,0.75);
}
h2 {
	text-align: left;
	position: relative;
	width:  auto;
	margin-left:  0;
	padding:  0;
	font-size: 20px;
}
h2.bar {
	border: none;
	-moz-text-shadow: none;
	-webkit-text-shadow: none;
	text-shadow: none;
	background: none;
	font-weight: 500;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
h2.bar:after, #feature-yeah h2:before, #feature-yeah h2:after {
	content: "";
	position:  static;
	border-color:  transparent; 
}
#sale {
	border:  3px solid #7D9C9C;
	border-left: none;
	border-right: none;
	padding:  0 1.4175%;;
	margin-left: 1.4175%;
	background-color:#514141;
	-webkit-box-shadow:0 5px 4px rgba(0,0,0,0.32);
	-moz-box-shadow:0 5px 4px rgba(0,0,0,0.32);
	box-shadow:0 5px 4px rgba(0,0,0,0.32);
}
#sale h2 { 

	float: left;
	background-color:#e1d7b3;
	border: none;
	line-height:  1;
	padding: 16px 1% 11px 3%;
	margin: 0 0 0 -2.5%;
	width:  28%;
	min-width: 200px; 
	color:#193f51;
	font: 700 16px/1.3 adobe-garamond-pro, Georgia, serif;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px -1px 0px rgba(255,255,255,0.75);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px -1px 0px rgba(255,255,255,0.75);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px -1px 0px rgba(255,255,255,0.75);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
#sale h2:before {
	width:1px;
}
#sale h2:after {
	right: -46px;
	left: auto;
	height: 0;
	border-left: #e1d7b3 23px solid;
	border-right:  transparent 23px solid;
	border-bottom:  transparent 23px solid;
	border-top: transparent 23px solid;
}
#sale p {
	margin: 10px 0 5px 35%;
	padding:  5px 0 5px 6%;
	width: 65%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing:border-box;
	font-size: 12px;
	background-color: transparent;
	background-image: url(../img/icn-tag-mauve.png);
	background-position: left center;
}
#sale b {
	font-size: 14px;
}
#sale span {
	display: inline;
	margin-right: 0px;
}

#feature {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-top: 1.5em;
}
#feature-hold {
	margin-left: 0;
	padding-bottom: 10px;
	height: auto;
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.feature-mask {
	width: 100%;
	border:  none;
	height: auto;
	overflow: visible;
}
.arrow {
	display: none;	
}
#pic-one, #pic-two, #pic-three {
	float: left;
	margin-left: 2.835%;
	width: 31.4432%;
	display: block;
	position:relative; /*added this for corners*/
	z-index: 0;
}
#pic-one:after, #pic-two:after, #pic-three:after, #pic-four:after { 
	content: "";
	position: absolute;
	z-index: -1;
	height: 20px;
	width: 40%;
	left: 59%;
	bottom: 0;
	right: 0;
	background-color: rgba(51,51,51,0.5);
	-webkit-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-moz-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-webkit-transform:  rotate(5deg);
	-moz-transform:  rotate(5deg);
	-ms-transform:  rotate(5deg);
	-o-transform:  rotate(5deg);
	transform:  rotate(5deg);
}
#feature li:first-child {
	margin-left: 0;
}
#pic-four {
	display: none;
}
.pic {
	position: relative;
	border: 5px solid white;
	overflow: hidden;
	text-align: center;
}
.pic img {
	width:  auto;
	margin-top: 0;
	display: block;
	float: none;
	position:  relative;
}
.pic p {
	font-weight: normal;
	-moz-text-shadow:  none;
	-webkit-text-shadow: none;
	text-shadow: none;
	color: white;	
}
.content .desc {
	margin:  10px 0;
	clear:  both;
	color:  #FFF;
	font-size: 10px;
	text-transform: uppercase;
	position: absolute;
	top: 5%;
	width: 100%;
	-webkit-transition: all 1s linear 0;
	-moz-transition: all 1s linear 0;
	-ms-transition: all 1s linear 0;
	-o-transition: all 1s linear 0;
	transition: all 1s linear 0;
}
.content {
	background-color: rgba(0,0,0,.3);
	overflow: hidden;
	top: 80%;
	bottom: 0;
	min-height: 270px;
	-webkit-transition: all .5s linear 0s;
	-moz-transition: all .5s ease 0s;
	-ms-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}
.content:hover {
	top: 0;
	bottom: 0;
}
.content:hover .desc {
	top: 53%;
	font-size: 110%;
	-webkit-transition: all .5s linear 0s;
	-moz-transition: all .5s linear 0s;
	-ms-transition: all .5s linear 0s;
	-o-transition: all .5s linear 0s;
	transition: all .5s linear 0s;
}
.content .info {
	color: white;
	display: block;
	font-weight: normal;
	font-size: 18px;
	width: 100%;
	position: absolute;
	bottom: 10%;
}
.content h3 {
	margin: 0;
	width: 100%;
	text-transform: uppercase;
	color: #fff;
	display: block;
	font: 400 25px/1.3 adobe-garamond-pro, Georgia, serif;
	padding: 0px 0 10px;
	float: none;
	position: absolute;
	top: 45%;
}
.content h3:after {
	content:  "";
	position:  absolute;
	top:  40px;
	left:  50%;
	margin-left:  -84px;
	height:  10px;
	width:165px;
	background-image: url(../img/trans-divider.png);
	background-repeat: no-repeat;
	background-position: center top;
}
#magazine {
	border-top: #533F41 solid 4px;
	margin-top:  39px;
}
#magazine p {
	line-height:  1.8;
	font-size:  13px;
}
#design-hold {
	border-top:  #533F41 solid 1px;
	margin-top:  2px;	
}
#des-head {
	clear: both;
	float: left;
	width: 65.7216%;
	display: block;
	margin-left: 34.2783%;
}
#designer {
	clear: none;
	width: 31.4432%;
	display: block;
	margin-top: -3em;
	background-position: 0 0;
	background-size: cover;
}
.alice  {
	height: 180px;	
}
#des-text {
	margin-left: 2.835%;
	width: 65.7216%;
}
#tip h2, #road h2 {
	margin-top: 30px;
	margin-bottom: 0;
	padding-bottom: 5px;
	border-bottom: #533F41 solid 4px;
}
#tip p, #road p:first-of-type {
	border-top: #533F41 solid 1px;
	margin-top: 2px;
	padding-top: 10px;
}
#connect, #plur-to-go, #social span {
	display: none;
}
#social {
	margin-left: 59.9656%;
	width: 31.4432%;
	background: none;
	padding-top: 40px;
	padding-bottom: 15px;
}
#social ul {
	text-align: right;
}
#social li {
	width: 29px;
	height:  26px;
	padding:  0;
	margin: 0 5px 0 45px;
	background-repeat: no-repeat;
	background-position: center top;
}
#twit {
	background-image: url(../img/icn-twitter.png);
}
#social #twit {
	background-position: 0 1px;
}
#bookface {
	background-image: url(../img/icn-fbook.png);
}
#social li:before {
	content:  "";
	-webkit-transform: none;
	-moz-transform:  none;
	transform: none;
}
#footer {
	text-align: center;
	padding: 0 1.4175%;
	margin-left:  -1.4175%;
}
#footer ul {
	padding: 0 1.4175%;
	margin-left:  -1.4175%;
	border-top: none;
}
#footer .main, #footer .policy {
	display: inline-block;
	width: auto;
	padding: 10px 1px 2px;
	text-transform: uppercase;
	/* Firefox v3.5+ */
	-moz-text-shadow:0px -1px 0px rgba(0,0,0,0.75);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-text-shadow:0px -1px 0px rgba(0,0,0,0.75);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	text-shadow:0px -1px 0px rgba(0,0,0,0.75);
}
.main a, .policy a {
	display:  inline-block;
	width:  auto;
	text-transform: none;
	background-color:  transparent;
	border-bottom: none;
	width: auto;
	padding: 0;
	margin-left:  0;
	font-size:  11px;
	font-family: "Century Gothic", "Apple Gothic", Verdana, sans-serif;
}
.main a:hover, .main a:active, .main a:focus, .policy a:hover, .policy a:active, .policy a:focus {
	background: transparent;
	text-decoration: underline;
}
.first {
	text-align: left;
}
.first:after {
	content: "";
}
#footer li:before {
	content:  "| ";
	color:  #fff;
	margin-right: 2px;
}
#footer li:first-child:before {
	content:  "";
}

}

/* Desktop Layout: 801px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 801px) {
body {
	background-color:#211818;
	background-image: url(../img/back-pattern.png);
	background-repeat: repeat, no-repeat;
	/* Firefox v3.6+ */
	background-image: url(../img/back-pattern.png),-moz-linear-gradient(50% 0% -90deg, rgba(133,92,94,0) 0%, rgba(133,92,94,1) 33%, rgba(133,92,94,0) 90%);
	/* safari v4.0+ and by Chrome v3.0+ */
	background-image: url(../img/back-pattern.png),-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0, rgba(133,92,94,0)), color-stop(0.33, rgba(133,92,94,1)), color-stop(0.9, rgba(133,92,94,0)));
	/* Chrome v10.0+ and by safari nightly build*/
	background-image: url(../img/back-pattern.png),-webkit-linear-gradient(-90deg, rgba(133,92,94,0) 0%, rgba(133,92,94,1) 33%, rgba(133,92,94,0) 90%);
	/* Opera v11.10+ */
	background-image:  url(../img/back-pattern.png),-o-linear-gradient(-90deg, rgba(133,92,94,0) 0%, rgba(133,92,94,1) 33%, rgba(133,92,94,0) 90%);
	background-image: url(../img/back-pattern.png),linear-gradient(-90deg, rgba(133,92,94,0) 0%, rgba(133,92,94,1) 33%, rgba(133,92,94,0) 90%);	
}
.gridContainer {
	width: 85.8887%;
	max-width: 1232px;
	min-width: 820px;
	padding-left: 1.0556%;
	padding-right: 1.0556%;
	margin: auto;
	/* Firefox v3.5+ */
	-moz-box-shadow:0px 0px 27px rgba(0,27,35,0.55);
	/* Safari v3.0+ and by Chrome v0.2+ */
	-webkit-box-shadow:0px 0px 27px rgba(0,27,35,0.55);
	/* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+  and by Opera v10.5+ */
	box-shadow:0px 0px 27px rgba(0,27,35,0.55);
}
#header {
	padding: 0 1.3%;
	margin-left: -1.3%;
	color: white;
	min-height: 414px;
}
#logo {
	left: 36px;
	top: 0;
	display: block;
	padding-top: 9px;
	text-align:  center;
	background-size:  271px 94px;
}
#nav:hover {
	width:  55%;
}
ul.sneaky-nav {
		text-align:  left;
}
#cart {
	width: 15%;
	background-position: 40% center;
}
#cart span {
	display: inline;
	text-indent: 0em;
}
#cart p {
	font-size: 10px;
	line-height: 1.1;
	float: right;
	width:  50px;
	padding-top: 4px;
	padding-right: 4px;
}
#sale {
	margin-left: -0.1%;
	clear: none;
	padding-top: 0;
	padding-right: 0.1%;
	padding-bottom: 0;
	padding-left: 0.3%;
}
#sale h2 {
	width: 21.4165%;
	padding-left: 1.3%;
	padding-right: 0;
	margin-left: -1.3%;
}
#sale p {
	margin: 10px 0 5px 32%;
}
h2 {
	font-size: 17px;
}
h3 {
	float: left;
	color: #FFF;
	font-size: 14px;
}
#tip h2 {
	margin-top: 0;	
}
#feature {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#feature-hold {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#pic-one, #pic-two, #pic-three, #pic-four {
	clear: none;
	float: left;
	margin-left: 2.1113%;
	width: 23.4165%;
	display: block;
}
#feature li:first-child {
	margin-left: 0;
}
.content:hover .desc {
	font-size: 100%;
}
#magazine {
	border-top: none;
	margin-top: 0px;
	padding-bottom: 10px;
}
#design-hold {
	width: 23.4165%;
	border-top: none;
	position:relative;
}
#design-hold:after { /* corner on the designer spotlight */
	content: "";
	position:  absolute;
	height:  20px;
	width: 40%;
	left:  59%;
	bottom: 0;
	right: 0;
	background-color: rgba(51,51,51,0.5);
	-webkit-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-moz-box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	box-shadow: 2px 2px 5px rgba(51,51,51,0.5);
	-webkit-transform:  rotate(5deg);
	-moz-transform:  rotate(5deg);
	-ms-transform:  rotate(5deg);
	-o-transform:  rotate(5deg);
	transform:  rotate(5deg);
}
#des-head {
	clear: both;
	float: left;
	margin-left: 0;
	padding-bottom: 5px;
	padding-top: 5px;
	width: 100%;
	display: block;
}
#designer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-top: 0;
	position:  static; /* overrides the drop shadow for tablet */
}
#des-text {
	clear: both;
	margin-left: 0;
	width: 100%;
	background-color: #FFF;
	position:  relative;
	z-index: 5;
}
#des-text p {
	color:  #333;
	padding: 0 8px 0 5px;
	line-height: 1.2;
}
#catalog {
	clear: none;
	float: left;
	margin-left: 53.1669%;
	width: 23.4165%;
	display: block;
}
#catalog h3 {
	background-color:#402b2b;
	position:  relative;	
	float: none;
	padding: 12px 0 11px 65px;
	color:#fff;
	font: 700 13px/1.2 adobe-garamond-pro, Georgia, serif;
	text-transform: uppercase;
	margin-right:  20px;
	background-image:url(../img/icn-catalog.gif);
	background-repeat: no-repeat;
	background-position: 20px center;
}
#catalog h3:after {
	content: "";
	position:  absolute;
	top: 0px;
	bottom: 0;
	right: -37px;
	left: auto;
	height: 0;
	width: 0;
	border-left: #402b2b 19px solid;
	border-right:  transparent 19px solid;
	border-bottom:  transparent 19px solid;
	border-top: transparent 19px solid;
}
#tip {
	clear: none;
}
#connect {
	clear: none;
	margin-left: 2.1113%;
	width: 23.4165%;
	display: block;
}
#connect h2 {
	display:  none;	
}
#plur-to-go {
	clear: both;
	float: left;
	width: 96%;
	display: block;
	padding: 2%;
	margin: 0 auto;
}
#plur-to-go p.callout {
	font-size: 13px;	
}
#plur-to-go p {
	line-height:  1.2;
}
#plur-to-go span {
	font-size: 28px;
}
.plur-feat li {
	color:  #DADADA;	
}
#stacker {
	clear: none;
	margin-left: 2.1113%;
	width: 48.9443%;
	margin-top: -5px;
}
#social {
	margin-left: 0;
	width: 23.4165%;
	position: absolute;
	top: 480px;
	right: 0;
	padding-top: 0px;
}
#social li {
	margin: 0 10px 0 10px;
}
#social span {
	display: none;
}
#footer {
	clear: both;
	float: left;
	width: 100%;
	display: block;
	padding: 0 1.3%;
	margin-left: -1.3%;
}
.important {
	font-weight: bold;	
}
}
/* common properties to follow MQ */
.offlft {
	display:  block;
	text-indent: -999em;
}
.no-top {
	margin-top:  0;
}
.bc #header {
	min-height: 0;	
	background:  none;
}
.bc .bc-content {
	min-height:  500px;	
}
