/* -------------------------------------------------------------- 

   Luna
   A premium Big Cartel theme by Singlenaut
     
   Version: 1.0
   
   http://singlenaut.com
   office@singlenaut.com
   
   Big Cartel - Simple shopping cart for artists
   http://bigcartel.com

/* -------------------------------------------------------------- 
  CSS Reset [ Resets default browser styles ]
-------------------------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/  v2.0 | 20110126   License: none (public domain) */

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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;}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;}blockquote:before,blockquote:after,q:before,q:after{content:none;}table{border-collapse:collapse;border-spacing:0;}

   
/* -------------------------------------------------------------- 
  Base styles
-------------------------------------------------------------- */

html, body {
  width: 100%;
  height: 100%;
  }

body {
  font-weight: normal;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;	
  background: #fff;
  }
	
::-moz-selection{ background: yellow; color:#333; }
::selection { background: yellow; color:#333; }	

p, blockquote, ul, ol, dl {
  font-size: 15px;
  margin-bottom: 1.2em;	
  line-height: 1.3em;
  }

strong { font-weight: bold; }
em { font-style: italic; }

a,
a:link,
a:visited {
  position: relative;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  border-bottom-color: rgba(0,0,0,.2);	
  -webkit-transition: color .6s ease-in;
  -moz-transition: color .6s ease-in;
  -ms-transition: color .6s ease-in;
  -o-transition: color .6s ease-in;
  transition: color .6s ease-in;  	  
  }

a:hover,
a:active {
  -webkit-transition: color 0 ease-in;	
  -moz-transition: color 0 ease-in;
  -ms-transition: color 0 ease-in;
  -o-transition: color 0 ease-in;
  transition: color 0 ease-in;     	
  }

a img {
  display: block;
  text-decoration: none;
  border: none;
  }

img {
  border: none;
  -ms-interpolation-mode: bicubic;
  }	
	
img,
embed,
object,
video {
  max-width: 100%;
  }	
  
  
/* -------------------------------------------------------------- 
  Elements / Shared
-------------------------------------------------------------- */  

.button {
  padding: 15px 0;
  width: 220px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;  
  background: transparent;
  border: 2px solid #000;
  -webkit-font-smoothing: subpixel-antialiased;  
  -webkit-transition: all .6s ease-in;
  -moz-transition: all .6s ease-in;
  -ms-transition: all .6s ease-in;
  -o-transition: all .6s ease-in;
  transition: all .6s ease-in;   	    
  }
  
.button:hover {
  border-color: #777;
  color: #777;
  -webkit-transition: all 0 ease-in;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-transition: all 0 ease-in;
  -ms-transition: all 0 ease-in;
  -o-transition: all 0 ease-in;
  transition: all 0 ease-in;     		  
  }
  
.button.disabled {
  text-align: center;
  color: #b5b5b5;  
  border-color: #b5b5b5;
  cursor: default;
  }
  
.button.disabled:hover {
  color: #b5b5b5;  
  border-color: #b5b5b5;
  cursor: default;
  }   
  
input,
textarea {
  padding: 10px 8px;
  width: 194px;
  border: none;
  border: 2px solid transparent;  
  background: #ebebeb;
  outline: none;
  -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,.2); 
  box-shadow: inset 1px 1px 3px rgba(0,0,0,.2);  
  }  
  
input:focus,
textarea:focus {
  border: 2px solid #333;
  -webkit-box-shadow: inset 1px 1px 3px rgba(0,0,0,.2);
  box-shadow: inset 1px 1px 3px rgba(0,0,0,.2);
  outline: none;
  }
  
label {
  display: block;
  float: left;
  width: 170px;
  padding-right: 30px;
  margin-top: 10px;
  text-align: right;  
  font-size: 13px;
  }
  
@-webkit-keyframes reset { from { opacity: 0; } to { opacity: 0; } }
@-webkit-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes reset { from { opacity: 0; } to { opacity: 0; } }
@-moz-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-o-keyframes reset { from { opacity: 0; } to { opacity: 0; } }
@-o-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@-ms-keyframes reset { from { opacity: 0; } to { opacity: 0; } }
@-ms-keyframes fade-in { from { opacity:0; } to { opacity:1; } }
@keyframes reset { from { opacity: 0; } to { opacity: 0; } }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

.fade_in{
  -webkit-animation-name: reset, fade-in;
  -webkit-animation-duration: .7s;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  -moz-animation-name: reset, fade-in;
  -moz-animation-duration: .7s;
  -moz-animation-timing-function: ease-in;
  -moz-animation-iteration-count: 1;
  -o-animation-name: reset, fade-in;
  -o-animation-duration: .7s;
  -o-animation-timing-function: ease-in; 
  -o-animation-iteration-count: 1; 
  -ms-animation-name: reset, fade-in;
  -ms-animation-duration: .7s;
  -ms-animation-timing-function: ease-in;
  -ms-animation-iteration-count: 1;
  animation-name: reset, fade-in;
  animation-duration: .7s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  }        
  
#error {
  margin-top: -30px;  
  margin-bottom: 40px;
  }  
  
#error li {
  opacity: .5;
  filter: alpha(opacity=50); /* IE6-IE8 */
  width: 690px;
  margin: 0 auto;
  padding: 6px 0 3px;
  font-size: 12px;
  text-align: center;
  margin-bottom: 2px;
  border-radius: 4px;
  background: #4ff2d9;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0, .4);
  box-shadow: 0 1px 2px rgba(0,0,0, .4);
  font-weight: normal;
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  }


/* -------------------------------------------------------------- 
  Structure
-------------------------------------------------------------- */

.strip {
  overflow: hidden;
  background: transparent;
  }

.canvas {
  position: relative;
  width: 900px;
  margin: 0 auto;
  clear: both;  
  }
  
#content {
  margin-top: -10px;
  padding: 70px 0;
  }  

#page_body {
  width: 530px;
  margin: 0 auto;
  }
    
    
/* -------------------------------------------------------------- 
  Site Header
-------------------------------------------------------------- */  

#site_header header {
  margin: 0;
  }
  
#site_header header h1 {
  margin: 60px auto 78px;
  font-size: 42px;
  text-transform: uppercase;
  letter-spacing: 6px;
  padding-right: 6px;
  text-align: center;
  white-space:nowrap;
  }
  
#site_header header h1 a { border: none; }
  
#site_header h1#store_name {
  width: 80%;
  }  
  
#site_header #branding {
  text-align: center;
  padding: 40px 0 55px;
  }  
  
#site_header #branding a img {
  margin: 0 auto;
  } 
  
#site_header #branding a h1 {
  display: none;
  }
  
  
/* -------------------------------------------------------------- 
  Site Footer
-------------------------------------------------------------- */  

#site_footer footer {
  width: 100%;
  clear: both;
  float: left;
  margin-top: 65px;
  padding-bottom: 10px;
  text-align: center;
  }
  
#site_footer footer h3 {
  display: none;
  }  
  
#site_footer ul {
  text-decoration: none;  
  border: none;  
  }  
  
#site_footer li {
  display: inline-block;
  font-size: 12px;
  -webkit-font-smoothing: subpixel-antialiased;   
  }

#site_footer li a {
  display: block;
  padding: 0 8px;
  border: none;
  }

#site_footer footer p {
  font-size: 11px;
  color: #999;  
  font-style: italic;  
  }

#site_footer #website {
  display: block;
  margin: 35px auto 20px;
  width: 140px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-font-smoothing: subpixel-antialiased;
  border: 1px solid #000;
  }

#site_footer #website:hover {
  border-color: #777;
  }

#site_footer #search input {
  display: none;
  padding: 0;
  width: auto;
  border: none;
  background: transparent;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
  font-size: 12px;
  -webkit-font-smoothing: subpixel-antialiased;
  }


/* -------------------------------------------------------------- 
  Main Nav
-------------------------------------------------------------- */

#main_nav {
  overflow: hidden;
  width: 52%;
  margin: 0 auto;
  border-bottom: 1px solid #e5e5e5;
  text-align: center; 
  }   
  
#main_nav ul {
  margin: 0;
  }

#main_nav li {
  display: inline-block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-font-smoothing: subpixel-antialiased;
  }  
  
#main_nav li a {
  display: block;
  padding: 20px 15px 13px;
  color: #858585;
  border: 0;
  }
  
#main_nav li a:hover,
#main_nav li.selected a {
  color: #000;
  }  

#mobile_nav {
  display: none;
  }  
  
  
/* -------------------------------------------------------------- 
  Home Page / Products Page / Products List
-------------------------------------------------------------- */    

#home_page #content,
#products_page #content {
  margin-top: 0;
  padding: 0;
  background: transparent;
  }
  
#products_page #content {
  margin-top: -10px;
  }  

#products_page #products {
  margin-bottom: 30px;
  }

#products {
  float: left;
  clear: both;
  margin: 0 0 0 -30px;
  line-height: 0;
  }
  
.product,
.product_header {
  -webkit-transition: all .45s ease-out;       
  -moz-transition: all .45s ease-out; 
  -ms-transition: all .45s ease-out; 
  -o-transition: all .45s ease-out; 
  transition:  all .45s ease-out; 
  }

.product {
  position: relative;
  float: left;
  width: 280px;
  height: 280px;
  margin: 0 0 30px 30px;      
  background: transparent;
  }

.product a {
  position: static;
  display: block;
  overflow: hidden;  
  width: 100%;
  height: 100%;
  font-size: 12px;
  color: #fff !important;
  border-radius: 4px;    
  background: transparent;
  border: none;
  }
  
.product a:hover {
  color: #fff !important;
  }  

.product .product_header {
  position: absolute;
  z-index: 1;
  opacity: 0;
  filter: alpha(opacity=0); /* IE6-IE8 */
  width: 100%;
  margin: 45% auto 0; 
  }

.product_header h2,
.product_header h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: normal;
  text-align: center;        
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
  }

.product_header h2 {
  width: 95%;
  margin: 0 auto;
  font-size: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  }

.product_header h3 {
  margin-left: -1px;
  }

.product_header h3 span {
  position: relative;
  top: -3px;
  font-size: .7em;  
  }

.product_header .dash {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto 10px;
  background: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
  }

.product_header h5 {
  position: absolute;
  top: -13px;
  left: 0;
  width: 100%;
  font-size: 11px;
  font-style: italic;
  color: #ddd;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0,0,0,.7);
  }     
  
.product_thumb {
  margin: 0;
  }

.product_thumb img {
  width: 280px;
  border-radius: 4px;
  }

.product:hover {
 background: transparent; 
  }

.product a:hover {
  overflow: hidden;  
  -webkit-box-shadow: 0 1px 8px rgba(0,0,0,.4); 
  box-shadow: 0 1px 8px rgba(0,0,0,.4);
  -moz-background-clip: padding; 
  -webkit-background-clip: padding-box; 
  background-clip: padding-box;  
  }

.product a:hover .product_header {
  opacity: .9;
  filter: alpha(opacity=90); /* IE6-IE8 */
  margin-top: 40%;
  }
  
.product a:hover .product_thumb {
  opacity: .4;
  filter: alpha(opacity=40); /* IE6-IE8 */
  }

#pagination {
  float: left;
  width: 100%;
  margin: 2px 0 56px;
  text-align: center;
  font-size: 13px;
  }
  
#pagination span,
#pagination a {
  padding: 8px 4px;
  border: none;
  }  
  
#pagination .disabled,
#pagination .next,
#pagination .previous {
  display: none;
  }  
  
#pagination .current {
  text-decoration: underline;
  }
  
.category_nav {
  clear: both;
  padding: 28px 0 10px;
  float: left;
  width: 100%;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  }
  
.category_nav:first-child {
  position: relative;
  z-index: 4;
  margin-top: 0;
  margin-bottom: 60px;
  }  
  
.category_nav nav {  
  text-align: center;
  width: 100%;
  margin: 0;   
  }  
  
.category_nav.double nav.categories,
.category_nav.double nav.artists {
  width: 44%;
  display: inline-block;
  }  

.category_nav.double nav.categories {
  text-align: right;
  margin-right: 40px;
  }
  
.category_nav.double nav.artists {
  text-align: left;
  margin-left: 40px;
  }  

.category_nav h3 {
  display: inline-block;
  padding: 0 8px 0 0;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;    
  }

.category_nav ul {
  display: inline-block;  
  }  
  
.category_nav li {
  display: inline-block;
  font-size: 13px;
  }   
  
.category_nav li:after {
  content:"/";
  padding: 0 0 0 4px;
  }
  
.category_nav li a {
  border: none;
  }
  
.category_nav li.selected a {
  text-decoration: underline;
  }
  
.category_nav li:last-child:after {
  content: "";
  }
     
.alert-noproducts {
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: #999;
  }

  
/* -------------------------------------------------------------- 
  Product Page 
-------------------------------------------------------------- */ 
  
.page_header.product_header.fixed {
  position: fixed !important;
  }

.page_header.product_header h2,
.page_header.product_header h3 {
  text-shadow: none;
  }
  
.page_header.product_header h2 {
  font-size: 24px;
  text-transform: uppercase;
  }

.page_header.product_header h3 {
  font-size: 20px;
  margin-left: -4px;
  }

.page_header.product_header h3 span {
  position: relative;
  top: -5px;
  font-size: .6em;  
  }

.page_header.product_header .dash {
  height: 2px;
  background: #000;
  -webkit-box-shadow: none;
  box-shadow: none;  
  }
  
.page_header.product_header h5 {
  top: -19px;
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  }     
  
.page_header {
  margin-bottom: 30px;
  }  
    
#product_page #content .product_header {
  position: relative;
  float: left;
  width: 220px;
  margin-top: 10px;
  margin-bottom: 0;
  }

#product_info {
  float: left;
  clear: left;
  width: 220px;
  margin-top: 22px;
  }

#product_description h2,
#product_description h3{
  margin: 0 0 .5em 0;
  font-size: 14px;
  }

#product_description h3 {
  font-size: 12px;
  }

#product_description ul,
#product_description ol {
  list-style-type: circle;
  list-style-position: outside;
  width: 100%;
  }
  
#product_images {
  float: right;
  position: relative;
  max-width: 550px;
  margin-top: 2px;
  }

#product_images li {
  margin-bottom: 15px;
  line-height: 0; 
  }
  
#product_images li:last-child { margin: 0; }  
  
#product_images li img {  
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 8px rgba(0,0,0,.4); 
  box-shadow: 0 1px 8px rgba(0,0,0,.4); 
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; 
  }
  
#product_inventory {
  margin: 35px 0 0px 0;
  padding: 18px 10px 8px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  }  
  
#product_inventory h3 {
  margin-bottom: 13px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .3em;
  text-align: center;
  }  

#product_inventory li {
  width: 200px;
  }

#product_inventory li h5 {
  margin-top: 7px;
  font-size: 12px;
  }

#product_inventory .bar {
  width: 100%;
  height: 2px;  
  background: #dedede;
  }

#product_inventory .bar span {
  display: block;
  height: 2px;  
  }

#product_inventory .bar span em {
  display: none;
  }

#product_form {
  margin-top: 40px;
  }
  
#product_form select {
  width: 220px;
  margin-bottom: 15px;
  } 
  
#product_info .button.disabled {
  margin-top: 40px;
  }

#social_links {
  width: 100%;
  margin-top: 40px;
  border: 1px solid #ccc;
  }

#social_links li {
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #ccc;
  }  

#social_links li:first-child {
  border: none;
  }

#social_links li h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  }

#social_links .social_action {
  display: none;
  }

#social_links li:hover h4 {
  display: none;
  }

#social_links li:hover .social_action {
  display: block;
  }

#social_links #social_facebook:hover {
  padding-bottom: 6px;
  }
  
#social_links #social_facebook iframe {
  margin: 0 auto 0 30px;
  }

#social_links #social_tweet iframe {
  width: 50% !important;
  height: 20px;
  margin-left: 30px !important;
  }

#social_links #social_tweet:hover {
  padding-bottom: 6px;
  }

#social_links #social_pinterest iframe {
  width: 50% !important;
  height: 20px;
  margin-left: 60px !important;
  }

#social_links #social_pinterest:hover {
  padding-bottom: 6px;
  }

#more_products {
  position: relative;
  overflow: hidden;
  clear: both;
  margin-top: 39px;
  padding-bottom: 31px;
  border-bottom: 1px solid #e5e5e5;
  }
  
#more_products h3:first-child {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 3px;
  }

#more_products ul#products {
  margin-top: 39px;
  }

#more_products nav {
  position: absolute;
  top: 0;
  right: 0;
  }
 
#more_products nav li {
  margin-top: 3px;
  display: inline-block;
  font-size: 13px;
  }   

#more_products ul#products li:nth-child(4) {
  display: none;
  } 
  
#more_products.no_products {
  margin-top: 0;
  padding: 20px 0;
  }

#more_products.no_products nav {
  position: relative;
  text-align: center;
  }

#more_products.no_products nav ul {
  margin-bottom: 0;
  }

#more_products nav li:after {
  content:"/";
  padding: 0 0 0 4px;
  }
  
#more_products nav li:last-child:after {
  content:"";
  }    

#more_products nav li a {
  padding: 5px 3px 3px;
  border: none;
  text-decoration: underline;
  } 


/* -------------------------------------------------------------- 
  About / Custom Page
-------------------------------------------------------------- */  

.custom #page_body p:first-child,
#contact_page #page_body p:first-child {
  font-size: 20px;
  line-height: 28px;
  font-style: italic;
  }
  
#about_page #page_body img {
  margin-bottom: 1.5em;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,.4);
  box-shadow: 0 2px 8px rgba(0,0,0,.4);    
  }  
  
.custom #page_body h2 { 
  font-size: 16px; 
  font-weight: normal; 
  margin: 1.5em 0 .7em;
  line-height: 1.2em;
  }   
  
.custom #page_body h3,
.custom #page_body h4 {
  font-size: 14px;
  line-height: 1.1em;
  margin: 1.8em 0 .7em;
  }

.custom #page_body h4 {
  font-size: 12px;
  }

.custom #page_body ul {
  list-style-type: circle;
  list-style-position: inside;
  width: 100%;
  }  
  

/* -------------------------------------------------------------- 
  Contact
-------------------------------------------------------------- */   

#contact_page #page_body p:first-child {
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
  }
  
#contact_page #page_body p#thank_you {
  padding-bottom: 0 !important;
  border: none !important;
  text-align: center;
  }    

#contact_links {
  padding-bottom: 15px;
  margin-top: -10px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  }

#contact_links.no_intro {
  margin-top: 40px;
  padding-top: 14px;
  border-top: 1px solid #e5e5e5;
  }

#contact_links li {
  display: inline-block;
  font-size: 13px;
  }   
  
#contact_links li:after {
  content:"/";
  padding: 0 0 0 4px;
  }
  
#contact_links li:last-child:after {
  content:"";
  }    

#contact_links li a {
  border: none;
  }  
  
#contact_form {
  width: 100%;
  }

#contact_form ul {
  margin-bottom: 40px;
  }

#contact_form li {
  padding: 4px 0;
  }

#contact_form label {
  width: 100%;
  float: none;
  margin-bottom: 5px;
  text-align: left;
  }

#contact_form input,
#contact_form textarea {
  width: 510px;
  margin: 0;  
  } 
  
#contact_form textarea {
  height: 180px;
  }   

#captcha_img {
  overflow: hidden;
  }

#captcha_img #captcha_phrase {
  float: right;
  } 
  
#captcha_img input {
  float: left;
  width: 365px;
  padding: 17px 8px;
  margin-right: 20px;
  }  
  
#captcha_img img {
  -webkit-box-shadow: 1px 1px 1px #ccc;
  box-shadow: 1px 1px 1px #ccc;
  border-radius: 4px;
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  }
  
#contact_page #contact_button {
  clear: both;
  }

  
/* -------------------------------------------------------------- 
  Cart
-------------------------------------------------------------- */    

#cart_page #site_header {
  background: #f0f0f0;
  }
  
#cart_page #site_footer footer {
  margin-top: 0;
  }

#cart-form {
  padding: 0 15px;
  }
  
#cart-form.no_options {
  overflow: hidden;
  margin-bottom: 80px;
  }  

#cart_items {
  float: left;
  width: 580px;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  }
  
#cart_items ul {
  margin-bottom: 0;
  }  
  
#cart_items li {
  position: relative;
  overflow: hidden;
  padding: 0 0 0 0;
  margin: 0;   
  line-height: 0;   
  border-top: 1px solid #e5e5e5;
  }
  
#cart_items .item_image {
  float: left;
  margin: 20px 40px 20px 100px;
  text-align: center;
  width: 90px;
  height: 60px; 
  /* vertically center image within */
  display:-webkit-box;
  -webkit-box-pack:center;
  -webkit-box-align:center;
  display:-moz-box;
  -moz-box-pack:center;
  -moz-box-align:center;
  display:box;
  box-pack:center;
  box-align:center;
  }    
  
#cart_items .item_image img {
  max-height: 60px;
  max-width: 90px;  
  -webkit-box-flex:1;
  -moz-box-flex:1; 
  box-flex:1;
  margin: 0 auto;  
  }
  
#cart_items li dl {
  margin: 0;
  line-height: 0;
  margin: 31px 0 0;
  }

#cart_items li.with_option dl {
  margin-top: 21px;
  }

#cart_items li dt,
#cart_items li dd {
  line-height: 1.3em;
  font-size: 16px;
  }
  
#cart_items li dt a {
  border: none;
  }  
  
#cart_items li dt {
  margin: 0 0 3px 0;
  }  
  
#cart_items li .item_price {
  font-size: 14px;
  }  
  
#cart_items li .item_option {
  margin-top: 3px;
  font-size: 13px;
  font-style: italic;
  }  
  
#cart_items li .item_quantity  {
  position: relative;
  top: -1px;
  left: 2px;
  font-size: 13px;
  }  
  
#cart_items li .remove_item {
  opacity: .4;
  filter: alpha(opacity=40); /* IE6-IE8 */
  position: absolute;
  z-index: 5;
  left: 33px;
  top: 50%;
  margin-top: -12px;
  width: 25px;
  height: 26px;
  text-indent: -9999px;
  border: none;
  -webkit-transition: opacity .6s ease-in;
  -moz-transition: opacity .6s ease-in;
  -ms-transition: opacity .6s ease-in;
  -o-transition: opacity .6s ease-in;
  transition: opacity .6s ease-in;     
  background-repeat: none;
  background-image: url(data:image/png;base64,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);  
  }  
  
#cart_items li .remove_item:hover {
  opacity: 1;
  -webkit-transition: opacity 0 ease-in;  
  -moz-transition: opacity 0 ease-in;
  -ms-transition: opacity 0 ease-in;
  -o-transition: opacity 0 ease-in;
  transition: opacity 0 ease-in;   
  }  

#cart_options {
  float: left;
  width: 580px;
  padding-bottom: 10px;
  margin: 20px 0 0 0;
  border-bottom: 1px solid #e5e5e5;
  }
  
#cart_options li {
  margin-bottom: 10px;
  }  
  
#cart_options h3 {
  }
  
#cart_options label {
  margin-left: 27px;
  }
  
#cart_options select {
  margin-top: 11px;
  width: 215px;
  }
  
#cart_options #cart_discount p {
  font-size: 12px;
  padding: 13px 0;
  }  

.cart-update {
  margin-left: 227px;
  margin-bottom: 20px;
  }
  
.cart-update .button {
  font-size: 12px;
  padding: 12px 0;
  width: 213px;
  }  
  
#cart_summary {
  float: right;
  width: 250px;
  padding-top: 10px;
  background: #f0f0f0;
  }

#cart_summary ul {
  padding: 0 13px;
  }

#cart_summary li {
  overflow: hidden;
  padding: 12px 0 4px;
  border-bottom: 1px solid #dddddd;
  }

#cart_summary li h3 {
  float: left;
  font-size: 13px;
  }
  
#cart_summary li span {
  float: right;
  font-size: 13px;
  line-height: 20px;
  } 
  
#cart_summary li span span {
  float: none;
  }
  
#cart_summary li#cart-shipping-tax.not_set span {
  font-size: 11px;
  }
  
#cart_summary #cart_total {
  padding-top: 20px;
  border: none;
  }

#cart_summary #cart_total h3 {
  font-style: italic;
  line-height: 26px;
  }
  
#cart_summary #cart_total h2 {
  float: right;
  font-size: 20px;
  }
  
#cart_summary #cart_total span {
  float: none;
  position: relative;
  top: -6px;
  font-size: 11px;
  }  
  
#cart_summary button {
  width: 230px;
  margin: 0 0 10px 10px;
  }
  
#cart_page #cart_empty {
  padding-bottom: 60px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: -50px;
  }

#cart_page #cart_empty p {
  margin-top: 15px;
  font-size: 20px;
  font-style: italic;
  text-align: center;
  }


/* -------------------------------------------------------------- 
  Lookbook
-------------------------------------------------------------- */   

#lookbook_page #content {
  padding-bottom: 0;
  }
  
#lookbook_page #page_body {
  width: 100%;
  margin: 0 auto;
  }    

#lookbook_page .slides li {
  line-height: 0;
  text-align: center;  
  } 
  
#lookbook_page #lookbook_slides {
  position: relative;
  }

#lookbook_page #lookbook_body  {
  width: 530px;
  padding: 20px 0 4px;
  margin: 80px auto 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  }


/*============================================================
  Success Page
============================================================*/ 

#success_page #content .canvas {
  text-align: center;
  }

#success_page #content .canvas h1 {
  font-size: 22px;
  line-height: 1.3em;
  }

#success_page #content .canvas p {
  width: 400px;
  margin: 15px auto 1.5em;
  font-style: italic;
/*   color: #999; */
  }

#success_page #content .canvas a {
  font-size: 15px;
  }


/*============================================================
  Maintenance Page
============================================================*/ 

#maintenance_page .canvas {
  width: 45%;
  max-width: 450px;
  padding: 33px 30px 15px;
  margin: 20% auto 0;
  border: 3px solid #151515;
  text-align: center;
  }

#maintenance_page .canvas h1 {
  font-size: 20px;
  line-height: 1.3em;
  }

#maintenance_page .canvas p {
  margin-top: 10px;
  font-style: italic;
/*   color: #999; */
  }


/*============================================================
  Responsive styles
============================================================*/  

@media screen and (max-width: 480px) {  

p, blockquote, ul, ol, dl {
  font-size: 17px;
  line-height: 1.4em;
	color: #222;
	}
	
.button {
  display: block;
  width: 100%;
  padding: 17px 0 !important;
  }  
  
#site_header,
#site_footer {
  background: #f0f0f0;
  }  
  
#product_page #site_header h1 a,
#product_page #site_footer h3,
#products_page #site_footer h3, 
#lookbook_page #site_footer footer h3,
#cart_page #site_footer h3 {
  color: #151515;
  }

#product_page #site_footer ul,
#product_page #site_footer li,
#products_page #site_footer ul,
#products_page #site_footer li,
#lookbook_page #site_footer ul,
#lookbook_page #site_footer li,
#cart_page #site_footer ul,
#cart_page #site_footer li {
  border-color: #e5e5e5;
  }  
    	
#error {
  width: 90%;
  margin: 0 auto;
  margin-top: -10px;  
  margin-bottom: 30px;  
  }  

#error li {
  width: 100%;
  padding: 6px 0 3px;
  }  
      	

/* Structure
------------------------------------------------------------*/

.strip {
  overflow: hidden;
  background: transparent;
  }

.canvas {
  position: relative;
  width: 100%;
  margin: 0 auto;
  clear: both;  
  }
  
#content {
  margin-top: 0;
  padding: 40px 0;
  background: #ffffff !important;
  }  

#page_body {
  width: 90%;
  margin: 0 auto;
  }
  

/* Main Nav
------------------------------------------------------------*/  

#main_nav {
  display: none;
  }

#mobile_nav {
  display: block;
  margin-bottom: 30px;
  }

#mobile_nav {
  text-align: center;
  }
 
#mobile_nav li {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-font-smoothing: subpixel-antialiased;
  text-decoration: underline;
  }  
  
#mobile_nav li a {
  display: block;
  padding: 20px 15px 13px;
  color: #858585;
  border: 0;  
  }
  
#site_header header h1 {
  margin: 30px auto 0;
  font-size: 36px;
  letter-spacing: 3px;
  padding-right: 3px;
  }  
  
#site_header #branding {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0 5px;
  }    


/* Site Footer
------------------------------------------------------------*/  

#site_footer footer {
  margin-top: 30px;
  }
  
#site_footer footer h3 {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  }   
  
#site_footer ul {
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid #e5e5e5;  
  }  
  
#site_footer li {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  font-family: "Times New Roman", Times, serif;    
  }

#site_footer li a {
  display: block;
  padding: 8px 0;
  border: none;
  color: #666;
  }

#site_footer footer p {
  margin-top: 30px; 
  }

#site_footer #search input {
  width: 95%;
  padding: 10px 5px;
  background: #fff;
  border: none;  
  }


/* Producs List
------------------------------------------------------------*/      
  
#products {
  width: 100%;
  margin: 0;
  }
  
.product,
.product_header,
.product_thumb, 
.product_thumb img {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;          
  }    
 
.product {
  float: none;
  overflow: hidden;   
  width: 100%;
  height: 150px;
  margin: 0;      
  border-radius: 0;  
  background: #000;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
  }
  
.product:first-child {
  -webkit-box-shadow: none;
  box-shadow: none;
  }  

.product .product_header {
  opacity: 1;
  filter: alpha(opacity=10); /* IE6-IE8 */
  margin-top: 47px; 
  } 
  
.product a:hover .product_header {
  opacity: 1;
  filter: alpha(opacity=1); /* IE6-IE8 */
  margin-top: 47px;
  }

.product_thumb {
  position: relative;
  top: -70%;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: .4;  
  filter: alpha(opacity=40); /* IE6-IE8 */
  border-radius: 0;
  }
  
.product .product_thumb img {
  min-width: 100%;
  height: auto;
  }  

.product_thumb img {
  width: 100%;
  border-radius: 4px;
  -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
  }  
  
  
/* Products Page
------------------------------------------------------------*/  

#products_page #site_header,
#products_page #site_footer,
#home_page #site_header,
#home_page #site_footer {
  background-color: #ffffff;
  }

.category_nav:first-child {
  margin-top: 10px;
  margin-bottom: 0;
  }  
  
.category_nav {
  margin-top: 28px;
  }
  
.category_nav.double nav.categories,
.category_nav.double nav.artists {
  width: 100%;
  display: inline-block;
  }  

.category_nav.double nav.categories,
.category_nav.double nav.artists {
  text-align: center;
  margin: 0;
  }
  
.category_nav h3 {
  margin-bottom: 6px;
  }  
  
.category_nav li a {
  padding: 10px 4px;
  }  
  
#pagination {
  margin: 0;
  }
  
#pagination span,
#pagination a {
  padding: 8px 10px;
  border: none;
  }    
    
  
/* Product Page
------------------------------------------------------------*/  

#product_page #content .product_header {
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 25px;
  }

#product_images {
  float: none;
  width: 90%;
  margin: 0 auto;
  }
  
#product_images li img {
  min-width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;  
  border-radius: 0;
  }
     
#product_images li {
  margin-bottom: 5px;
  }
     
#product_images li {
  margin-bottom: 5px;
  }
  
.flex-control-nav { 
  bottom: -25px; 
  }
          
#product_info {
  float: none;
  clear: none;
  width: 90%;
  margin: 40px auto 0;
  }
  
#product_inventory {
  margin: 35px 0 0 0;
  padding: 15px 15px 2px;
  border: 1px solid #e5e5e5;
  }  
  
#product_inventory h3 {
  margin-bottom: 10px;
  font-size: 11px;
  text-align: left;
  }  

#product_inventory li {
  width: 100%;
  }        
  
#product_inventory li h5 {
  font-size: 13px;
  }  
  
#product_form {
  margin-top: 38px;
  } 
    
#product_form select {
  width: 100%;
  }  

#social_links {
  margin-bottom: 0;
  }

#social_links li h4 {
  display: none;
  }

#social_links .social_action {
  display: block;
  }
  
#social_links #social_facebook iframe {
  margin-left: 60px !important;
  }

#social_links #social_tweet iframe {
  margin-left: 60px !important;
  }

#social_links #social_pinterest iframe {
  margin-left: 95px !important;
  }  

#social_links #social_facebook,
#social_links #social_tweet,  
#social_links #social_pinterest {
  padding-top: 16px;
  }   

#more_products {
  margin-top: 0;
  padding-bottom: 0;
  }
  
#more_products h3:first-child {
  padding-top: 35px;
  text-align: center;
  border-top: 1px solid #e5e5e5;  
  }
  
#more_products ul#products {
  overflow: hidden;
  margin-top: 30px;
  } 

#more_products nav {
  clear: both;
  position: relative;
  top: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  border-top: 1px solid #E5E5E5;
  padding: 18px 0 5px;  
  }
    
#more_products nav li a {
  padding: 10px 4px;
  } 

   
/* Contact Page
------------------------------------------------------------*/   
  
#contact_links li a {
  padding: 10px 4px;
  }    
  
#contact_form {
  float: left;
  }  
  
#contact_form ul {
  margin-bottom: 25px;
  }  
    
#contact_form li {
  padding: 0;
  }    
    
#contact_form input,
#contact_form textarea {
  width: 95%;
  margin: 0 auto;
  } 
  
#captcha_img input {
  float: left;
  width: 48%;
  padding: 17px 8px;
  margin-right: 0;
  }   

#contact_page #contact_button {
  width: 100%;
  clear: both;
  }    

  
/* Cart Page
------------------------------------------------------------*/   

#cart_page #site_footer footer {
  margin-top: 30px;
  }
  
#cart-form {
  padding: 0;
  }  

#cart_items {
  float: left;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  }
  
#cart_items li {
  float: none;
  }  
  
#cart_items .item_image {
  float: left;
  margin: 20px 20px 20px 20px;
  }  
  
#cart_items li .remove_item {
  opacity: 1;
  left: 89%;
  }
  
#cart_options {
  float: none;
  clear: both;
  width: 90%;
  padding: 15px 0 2px;
  margin: 0 auto;
  border-bottom: none;
  }
  
#cart_options li {
  margin-bottom: 10px;
  }  
  
#cart_options label {
  float: none;
  margin: 0;
  text-align: left;
  }  
  
#cart_options select {
  margin-top: 3px;
  width: 100%;
  } 
  
#cart_options input {
  width: 94%;
  } 
  
#cart_options #cart_discount p {
  padding: 3px 0 0;
  }
  
.cart-update {
  margin-left: 0;
  }
  
.cart-update .button {
  width: 100%;
  }

#cart_summary {
  float: none;;
  width: 100%;
  margin: 0 auto;
  padding-top: 10px;
  background: #ffffff !important;
  border-top: 1px solid #e5e5e5;  
  }

#cart_summary ul {
  padding: 0;
  width: 90%;
  margin-left: auto;  
  margin-right: auto;
  }
  
#cart_summary button {
  float: none;
  width: 90%;
  margin: 0 auto 2px;
  }  
  
  
/* Lookbook
------------------------------------------------------------*/

#lookbook_slides {
  float: none;
  width: 90%;
  margin: 0 auto;
  }

#lookbook_page .slides li {
  line-height: 0;
  text-align: center;
  }  

#lookbook_page #lookbook_body {
  width: 90%;
  padding: 0 0 4px;
  margin: 40px auto 30px;
  border: none;  
  } 

#lookbook_page .flex-control-nav {
  bottom: -30px;
  }    
  
#lookbook_page .flex-direction-nav {
  display: none;
  }
  
}


@media screen and (min-width: 480px) and (max-width: 768px) { 


.button {
  display: block;
  width: 100%;
  padding: 17px 0 !important;
  }
  
#error {
  width: 90%;
  margin: 0 auto;
  margin-top: -5px;  
  margin-bottom: 30px;  
  }     
    

/* Structure
------------------------------------------------------------*/

.strip {
  overflow: hidden;
  background: transparent;
  }

.canvas {
  position: relative;
  width: 100%;
  margin: 0 auto;
  clear: both;  
  }
  
#content {
  margin-top: 0;
  padding: 40px 0;
  background: #f0f0f0;
  }  

#page_body {
  width: 70%;
  margin: 0 auto;
  }
    
    
/* Main Nav
------------------------------------------------------------*/

#main_nav {
  overflow: hidden;
  width: 475px;
  margin: 0 auto;
  border-bottom: 1px solid #e5e5e5;
  text-align: center; 
  }      
    
    
/* Products Page
------------------------------------------------------------*/    
  
#products {
  float: none;
  overflow: hidden;
  clear: both;
  width: 589px;
  margin: 0 auto 30px ;
  } 
  
#products li {
  margin: 1%;
  }
  
#products_page #pagination {
  margin-top: 30px;
  }  
  
#pagination span,
#pagination a {
  padding: 8px 10px;
  border: none;
  }    
  
  
/* Product Page
------------------------------------------------------------*/  

#product_page #content .product_header {
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 25px;
  }

#product_images {
  float: none;
  width: 92%;
  margin: 0 auto;
  }
  
#product_images li img {
  min-width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;  
  border-radius: 0;
  }
   
#product_images li {
  margin-bottom: 5px;
  }
  
.flex-control-nav { 
  bottom: -25px !important; 
  }
     
#product_info {
  float: none;
  clear: none;
  width: 70%;
  margin: 40px auto;
  }
  
#product_inventory {
  margin: 35px 0 0 0;
  padding: 15px 15px 2px;
  border: 1px solid #ddd;
  }  
  
#product_inventory h3 {
  margin-bottom: 10px;
  font-size: 11px;
  text-align: left;
  }  

#product_inventory li {
  width: 100%;
  }        
  
#product_inventory li h5 {
  font-size: 13px;
  }  
  
#product_form {
  margin-top: 30px;
  } 
    
#product_form select {
  width: 100%;
  }  
  
.button {
  padding: 17px 0 !important;
  width: 100%;
  }  

#social_links {
  margin-top: 30px;
  }

#social_links li h4 {
  display: none;
  }

#social_links .social_action {
  display: block;
  }
  
#social_links #social_facebook iframe,
#social_links #social_pinterest iframe,
#social_links #social_tweet iframe {
  margin-left: 32% !important;
  }   

#more_products {
  padding-bottom: 0;
  }
  
#more_products.no_products {
  margin-top: 0;
  padding: 0 0 20px;
  }  
  
#more_products.no_products nav {
  padding-top: 20px;
  }  
  
#more_products h3:first-child {
  text-align: center;
  }
  
#more_products ul#products {
  overflow: hidden;
  margin-top: 30px;
  }  
  
#more_products ul#products li:nth-child(3) {
  display: none;
  }    
  
#more_products nav {
  clear: both;
  position: relative;
  top: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  border-top: 1px solid #E5E5E5;
  padding: 15px 0 5px;  
  }
    
#more_products nav li a {
  padding: 10px 4px;
  } 
        
      
/* Contact Page
------------------------------------------------------------*/  
  
#contact_page #page_body {
  margin-bottom: 40px;
  }  
  
#contact_links li a {
  padding: 10px 4px;
  }   
  
#contact_form input,
#contact_form textarea {
  width: 96%;
  margin: 0 auto;
  } 
  
#captcha_img input {
  float: left;
  width: 48%;
  padding: 17px 8px;
  margin-right: 0;
  }  
  
#contact_page #contact_button {
  width: 100%;
  clear: both;
  }    
    
  
/* Cart Page
------------------------------------------------------------*/   

#cart_page #site_footer {
  border-top: 1px solid #e5e5e5;
  }

#cart_page #site_footer footer {
  margin-top: 30px;
  }
  
#cart-form {
  padding: 0;
  }    

#cart_items {
  float: none;
  width: 70%;
  margin: 0 auto;
  }
  
#cart_items li {
  float: none;
  }  
  
#cart_items .item_image {
  float: left;
  margin: 20px 10px 20px 20px;
  }  
  
#cart_items li .remove_item {
  opacity: 1;
  filter: alpha(opacity=1); /* IE6-IE8 */
  right: 0;
  left: 93%;
  }  
  
#cart_options {
  float: none;
  clear: both;
  width: 70%;
  margin: 0 auto 0;  
  padding: 30px 0 10px;
  border: none;
  }
  
#cart_options label {
  float: none;
  margin: 0;
  text-align: left;
  }  
  
#cart_options select {
  margin-top: 3px;
  width: 100%;
  } 
  
#cart_options input {
  width: 96%;
  } 

#cart_options #cart_discount p {
  padding: 3px 0 0;
  }  

.cart-update {
  margin-left: 0;
  }
  
.cart-update .button {
  width: 100%;
  }

#cart_summary {
  float: none;;
  width: 70%;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 10px;
  background: #fff;
  border: none;  
  }

#cart_summary ul {
  padding: 15px;
  border-top: 0;
  background: #f0f0f0;  
  }
  
#cart_summary button {
  width: 95%;
  margin: 0 auto 10px;
  } 
  
    
/* Lookbook Page
------------------------------------------------------------*/  
  
#lookbook_page #lookbook_slides {
  width: 92%; 
  margin: 0 auto;
  }  
  
#lookbook_page #lookbook_body {
  margin-top: 60px;
  }  
  
#lookbook_page .slides li { 
  min-height: 40%;
  }  
  
#lookbook_page .flex-direction-nav {
  display: none;
  }
        
}

@media screen and (min-width: 480px) and (max-width: 575px) { 

#lookbook_page #lookbook_body  {
  width: 90% !important;
  }

}

/*============================================================
  IE Hacks
============================================================*/

.ie #social_links li h4 {
  display: none;
  }

.ie #social_links .social_action {
  display: block;
  }

.ie #social_links #social_facebook,
.ie #social_links #social_tweet,  
.ie #social_links #social_pinterest {
  padding-bottom: 6px;
  } 
  
/*============================================================
  Basic Styles - used for the simple controls
============================================================*/

/* Body Font */
body,
.product_header h3,
.product_header h5,
#product_inventory li h5,
#cart_items li .item_option,
#cart_summary li h3,
#social_links li h4
{ font-family: "Times New Roman", Times, serif; }


/* Background */
body,
#cart_page #content,
#lookbook_page #content {
  background-color: #ffffff;

  }

/* Text */
body,
p, blockquote, ul, ol, dl,
#error li
{ color: #333333; }  


/* Links */
a,
a:link,
a:visited 
{ color: #333333; }


/* Links rollover */
a:hover,
a:active
{ color: #888888; }


/* Header background */
#content,
#lookbook_page #site_header,
#product_page #content,
.custom #content,
#contact_page #content,
#cart_summary
{ background-color: #f0f0f0; }


/* Header text */
#site_header header h1 a,
#site_header header h1 a:hover,
.product_header.page_header h2,
.product_header.page_header h3
{ color: #333333; }


/* Products background */
.product a:hover
{ background-color: #000000; }




/*============================================================
  Colors + Custom Styles - add and override styles below
============================================================*/

/* Header Font */
h1, h2, h3, h4, h5, h6,
.button,
#error li,
#site_footer ul,
#site_footer #search input,
#main_nav li,
#cart_items li dt,
#cart_items li dd,
#cart_options #cart_discount p,
#cart_summary li span
{ font-family: "Varela Round", "Helvetica Neue", Helvetica, Lucida Grande, sans-serif; }


/* Text - Light grey text color not handled by simple controls  */

#site_footer footer p,
.alert-noproducts, 
#cart_page #cart_empty p,
#success_page #content .canvas p,
#maintenance_page .canvas p,
#product_description h3,
#product_inventory h3,
#cart_items li .item_quantity,
#cart_items li .item_option,
#social_links li h4  
{ color: #999999; }

#product_inventory .bar span 
{ background-color: #999999; }


/* Text - Medium grey text color not handled by simple controls */

.page_header.product_header h5,
.custom #page_body p:first-child,
#contact_page #page_body p:first-child,
#site_footer #search input
{ color: #666666; }


/* Border color - light grey border color not handled by simple controls */

#main_nav,
.category_nav,
#more_products,
#contact_page #page_body p:first-child,
#contact_links,
#cart_items,
#cart_items li,
#cart_options,
#cart_page #cart_empty,
#lookbook_page #lookbook_body,
#contact_links.no_intro {
  border-color: #e5e5e5; 
  }

#site_header header h1 {
  white-space: normal;
  }


