body {
	font-size:12px;
	font-family:"MuseoSans-300", Verdana, Geneva, sans-serif;
	background: #42413C;
	margin: 0;
	padding: 0;
	background:url(../images/dark_wood.png) left top;
}
@font-face {font-family: 'MuseoSans-300';src: url('1808ae_0.eot');src: url('1808ae_0.eot?#iefix') format('embedded-opentype'),url('1808ae_0.woff') format('woff'),url('1808ae_0.ttf') format('truetype');}
@font-face {font-family: 'MuseoSans-100';src: url('1808af_0.eot');src: url('1808af_0.eot?#iefix') format('embedded-opentype'),url('1808af_0.woff') format('woff'),url('1808af_0.ttf') format('truetype');}
@font-face {font-family: 'CambridgeSerial-Light';src: url('1808af_1.eot');src: url('1808af_1.eot?#iefix') format('embedded-opentype'),url('1808af_1.woff') format('woff'),url('1808af_1.ttf') format('truetype');}
@font-face {
    font-family: 'EnglishRegular';
    src: url('english_-webfont.eot');
    src: url('english_-webfont.eot?#iefix') format('embedded-opentype'),
         url('english_-webfont.woff') format('woff'),
         url('english_-webfont.ttf') format('truetype'),
         url('english_-webfont.svg#EnglishRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p, .vs-h1 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	font-weight:normal;

}
h1, h2, h3, h4, h5, h6, .vs-h1, .vs-h3 {
	font-family:"CambridgeSerial-Light", Verdana, Geneva, sans-serif;
	text-transform:uppercase;
	font-size: 16px;
	padding-bottom: 0px;
	margin-bottom: 5px;
	color:#B42428;
	
}
h2 {
	font-size: 16px;
}
h2.tasting {
	text-transform:capitalize;
	margin-top: 15px;
	
}
h3, .vs-h3 {
	font-size:13px;
	text-transform:none;
}
h4 {
	font-size: 14px;
	color:#231f20;
}
p {
	font-size: 12px;
	color:#231f20;
	padding-right: 40px;
	margin-bottom: 20px;
	text-align:justify;
	line-height: 17px;
	letter-spacing:0.5px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: none;
}
a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
a:hover {
	text-decoration:underline;
	
}

/* ~~ this fixed width container surrounds all other divs~~ */
.container {
	width: 725px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	background:url(../images/whitey.png) left top #e2e2e4;
	position:relative;
}

.sidebar1 {
	float: left;
	width: 260px;
	
	padding-bottom: 10px;
}
.content {
	padding: 23px 0;
	width: 465px;
	float: left;
	font-family:"MuseoSans-300", Verdana, Geneva, sans-serif;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.menu {
	list-style: none; /* this removes the list marker */
	margin-top:15px;
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	width: 210px;
}
ul.menu li {
	font-family:"EnglishRegular", Verdana, Geneva, sans-serif;
	font-size: 25px;
	text-align:center;
	margin-bottom:20px;
	text-transform:lowercase;
}
ul.menu a, ul.menu a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	color:#231f20;
	font-family:"EnglishRegular", Verdana, Geneva, sans-serif;
	 /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
}
ul.menu a:hover, ul.menu a:active, ul.menu a:focus, ul.menu li.active a { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #b42428;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.header {
	position:relative;
	height: 350px;
}
.header .logo {
	position:absolute;
	bottom:-3px;
	left: 20px;
	 z-index:9999;
}
#slideshow {

	position:relative;
}
.caption {
line-height: 16px;	
}
#vsModal {
    background-color: #AFB3B6;
    border: 1px solid #000000;
    padding-top: 40px;
	z-index:9999;
}

#vsMiniCart td {
    text-align: right;
}
#vsMiniCart .vsImage {
    background-color: #FFFFFF;
    padding: 2px;
    vertical-align: bottom;
}
#vsUpdateCartButton {
    float: left;
	
}
.content button, .vsLinkButton, #vsUpdateCartButton {
	background-color: #231f20;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    cursor: pointer;
    padding: 3px 7px;
	text-decoration:none;
}

.vsLinkButton:hover, .vsLinkButton:focus {
    background-color: #231f20;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    cursor: pointer;
    padding: 3px 7px;
}
.vsOrderFormButtons button:hover, .vsOrderFormButtons button:focus, button.vsButton:hover, button.vsButton:focus, .button:hover, .button:focus {
    background-color: #231f20;
    border: medium none;
    color: #FFFFFF;
    cursor: pointer;
    padding: 4px 8px;
}
#vsAccountLinks a {
color:#fff;
text-decoration:none;
}
#vsAccountLinks a:hover {
	text-decoration:underline;	
}
.product {
margin-bottom: 50px;	
}
.product .description {
	padding-right:55px;
}
.product .image {
	display:inline-block;
	vertical-align:top;
	width:215px;
	
}
.product .image img {
width:215px;
height:auto;
}
.product .desc {
width: 240px;	
margin-left: 5px;
display:inline-block;
}
.product .desc p {
	text-align:left;
	
}
.product .desc .findout {
  color: #000;
    font-family: "EnglishRegular",Verdana,Geneva,sans-serif;
    text-decoration: none;	
	font-size:20px;
	margin-left: 5px;
}
.addtocartline {
	margin-top: 5px;
}
.addtocartline span, .addtocartline input {
margin-right: 12px;	
}
#vsOrderFormLeft {
width:160px;	
}
#vsOrderFormLeft div.vsActive {
background: #000;	
}
#vsOrderForm {
margin-left: 30px;	
}
.content ul.vsProductAttributeList {
	background:#a7a9ac;
	padding:15px;
	width: 395px;
	
}
.content ul.vsProductAttributeList li {
	list-style-type:none;
	margin:0px;
	padding:0px;	
}
.content .productpage p {
	text-align:left;
	
}
a.back {
	clear:both;
	margin-top:70px;
	color:#000;
	
}
#vsAccountNav {
margin-bottom: 10px;
width:auto;	
}
#vsAccountNav div {
float:left;
margin-right: 16px;	
}
table {
width: 100%;	
}

table tr td {
padding: 5px;
}
.container a.privacy {
font-family:Arial;
font-size: 10px;
color:#000;
position:absolute;
bottom: 10px;
display:block;
left: 70px;
}
.container strong.upper {
	text-transform:uppercase;
	
}