@charset "UTF-8";
/* CSS Document */

@font-face{ 
font-family: "Neutra Text";
src: url(fonts/NeutraText-Book.otf)
}

@font-face{ 
font-family: "Neutra Text Bold";
src: url(fonts/NeutraText-Bold.otf)
}

body{
	font-family: "Neutra Text", "Futura", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h3 {
	color: #B4A588;
	margin-top: -15px;
}

a{
	color: #000;
	text-decoration: none;
	line-height: 25px;
}

a:hover{
	color: #B4A588;
	font-family: "Neutra Text Bold";
	
}

.wrapper{
	width: 1200px;
	height: auto;
	margin: 0 auto;
}

.logo{
	margin: -130px auto 0 auto;
	background: none;
}
.cart{
	margin: 30px auto 0 938px;
	position: relative;
	overflow: auto;
	
}
.indeximage{
	margin: 0 auto 0 125px;
	position: relative;
}

/*NAV CSS*/
.menu{
	list-style: none;
	width: 1200px;
	text-transform: uppercase;
	font-size: 17px;
	margin-left: 550px;
	position: relative;
	overflow: auto;
}

.menu li{
	display: inline-block;
	padding-right: 20px;
	height: 25px;
}

.menu li a{
	color: #000;
	text-decoration: none;
	line-height: 25px;
}

.menu li a:hover{
	color: #B4A588;
	font-family: "Neutra Text Bold";
	
}
.menu li.selected{
	color: #B4A588;
	font-family: "Neutra Text Bold";
}

.menu li.selected a{
	color: #B4A588;
}

.bar{
	margin: 0 auto;
}

/*ABOUT PAGE*/

.about{
	width: 1200px;
	margin: 30px auto 0 150px;
	
	}
#about1{
	width: 620px;
	float: left;
}

#about2{
	width: 300px;
	float: left;
	text-align: center;
}
/*END ABOUT PAGE*/

/*GALLERY*/
.product{
	width: 1200px;
	height: 600px;
	margin: 20px auto 0 150px;
	}

#product1{
	width: 160px;
	height: 600px;
	float: left;
}

#product2{
	width: 250px;
	height: 600px;
	padding-left: 20px;
	float: left;
}

.thumbnails{
	width: 100px;
	height: 600px;
	float: left;
}
.thumbnails img {
	height: 135px;
	width: 100px;
	border-color: #999999;
	border-width: 1px;
	border-style: solid;
	padding: 1px; 
}

 .gallery{
	 margin-right: auto;
	 margin-left: auto;
	 width: 550px;
	 height: 600px;
	 float: left;
	
 }
 
 .preview{
	 padding-right: 5px;
	 width: 438px;
	 height: 580px;
	 float: left;
 }

.links{
	line-height: 1.5em;
	margin-top: 8px;
}

.lineheight{
	line-height: 1em;
}

/*END PRODUCT PAGE*/

footer{
	width: 1200px;
	height: auto;
	clear: left;

}
.copyright{
	font-family: "Neutra Text Bold", "Futura", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	text-align: left;
	font-size: 10px;
	margin-top: 10px;
	margin-left: 124px;
}
.bottomLinks{
	width: 1200px;
	height: 27px;
	margin: -30px auto 0 930px;
	
}

/*DROPDOWN LIST*/

.dropdown {
	font-family: "Neutra Text", sans-serif;
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 28px;
  width: 200px;
  background: #B4A588;
  border-radius: 5px;
  @include linear-gradient(top, transparent, rgba(black, .06));
  @include box-shadow(0 1px 1px rgba(black, .08));

  &:before, &:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 9px;
    right: 10px;
    width: 0;
    height: 0;
    border: 4px dashed;
    border-color: #888 transparent;
    pointer-events: none;
  }

  &:before {
    border-bottom-style: solid;
    border-top: none;
  }

  &:after {
    margin-top: 7px;
    border-top-style: solid;
    border-bottom: none;
  }
}

.dropdown-select {
	font-family: "Neutra Text", sans-serif;
  position: relative;
  width: 130%;
  margin: 0;
  padding: 6px 8px 6px 10px;
  height: 28px;
  line-height: 14px;
  font-size: 10px;
  color: #fff;
  /* Fallback for IE 8 */
  background: #B4A588;
  /* "transparent" doesn't work with Opera */
  background: rgba(black, 0) !important;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;

  &:focus {
    z-index: 3;
    width: 100%;
    color: #394349;
    outline: 2px solid #49aff2;
    outline: 2px solid -webkit-focus-ring-color;
    outline-offset: -2px;
  }

  > option {
    margin: 3px;
    padding: 6px 8px;
    text-shadow: none;
    background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
  }
}

/* Fix for IE 8 putting the arrows behind the select element. */
.lt-ie9 {
  .dropdown { z-index: 1; }
  .dropdown-select { z-index: -1; }
  .dropdown-select:focus { z-index: 3; }
}

/* Dirty fix for Firefox adding padding where it shouldn't. */
@-moz-document url-prefix() { .dropdown-select { padding-left: 6px; } }

.dropdown-dark {
  background: #444;
  border-color: #111 #0a0a0a black;
  @include linear-gradient(top, transparent, rgba(black, .4));
  @include box-shadow(inset 0 1px rgba(white, .1), 0 1px 1px rgba(black, .2));

  &:before { border-bottom-color: #aaa; }
  &:after { border-top-color: #aaa; }

  .dropdown-select {
    color: #aaa;
    text-shadow: 0 1px black;
    /* Fallback for IE 8 */
    background: #444;

    &:focus { color: #ccc; }

    > option {
      background: #444;
      text-shadow: 0 1px rgba(black, .4);
    }
  }
}