/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
		font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #444;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
 }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #181818;
		font-family: "Georgia", "Times New Roman", serif;
		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px;}
	h2 { font-size: 35px; line-height: 40px; margin-bottom: 10px; }
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: bold; color: #333; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #333; text-decoration: underline; outline: 0; }
	a:hover, a:focus { color: #000; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }


/* #Buttons
================================================== */

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		background: #eee; /* Old browsers */
		background: #eee -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */
		background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */
		background: #eee -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */
		background: #eee -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */
		background: #eee -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */
		background: #eee linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */
	  border: 1px solid #aaa;
	  border-top: 1px solid #ccc;
	  border-left: 1px solid #ccc;
	  -moz-border-radius: 3px;
	  -webkit-border-radius: 3px;
	  border-radius: 3px;
	  color: #444;
	  display: inline-block;
	  font-size: 11px;
	  font-weight: bold;
	  text-decoration: none;
	  text-shadow: 0 1px rgba(255, 255, 255, .75);
	  cursor: pointer;
	  margin-bottom: 20px;
	  line-height: normal;
	  padding: 8px 10px;
	  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; }



	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}


/* #Tabs (activate in tabs.js)
================================================== */
	ul.tabs {
		display: block;
		margin: 0 0 20px 0;
		padding: 0;
		border-bottom: solid 1px #ddd; }
	ul.tabs li {
		display: block;
		width: auto;
		height: 30px;
		padding: 0;
		float: left;
		margin-bottom: 0; }
	ul.tabs li a {
		display: block;
		text-decoration: none;
		width: auto;
		height: 29px;
		padding: 0px 20px;
		line-height: 30px;
		border: solid 1px #ddd;
		border-width: 1px 1px 0 0;
		margin: 0;
		background: #f5f5f5;
		font-size: 13px; }
	ul.tabs li a.active {
		background: #fff;
		height: 30px;
		position: relative;
		top: -4px;
		padding-top: 4px;
		border-left-width: 1px;
		margin: 0 0 0 -1px;
		color: #111;
		-moz-border-radius-topleft: 2px;
		-webkit-border-top-left-radius: 2px;
		border-top-left-radius: 2px;
		-moz-border-radius-topright: 2px;
		-webkit-border-top-right-radius: 2px;
		border-top-right-radius: 2px; }
	ul.tabs li:first-child a.active {
		margin-left: 0; }
	ul.tabs li:first-child a {
		border-width: 1px 1px 0 1px;
		-moz-border-radius-topleft: 2px;
		-webkit-border-top-left-radius: 2px;
		border-top-left-radius: 2px; }
	ul.tabs li:last-child a {
		-moz-border-radius-topright: 2px;
		-webkit-border-top-right-radius: 2px;
		border-top-right-radius: 2px; }

	ul.tabs-content { margin: 0; display: block; }
	ul.tabs-content > li { display:none; }
	ul.tabs-content > li.active { display: block; }

	/* Clearfixing tabs for beautiful stacking */
	ul.tabs:before,
	ul.tabs:after {
	  content: '\0020';
	  display: block;
	  overflow: hidden;
	  visibility: hidden;
	  width: 0;
	  height: 0; }
	ul.tabs:after {
	  clear: both; }
	ul.tabs {
	  zoom: 1; }


/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 210px;
		max-width: 100%;
		display: block;
		margin-bottom: 20px;
		background: #fff; }
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }


    .frame-price{ display: none;}



/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */



/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }


/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column, 
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }

        /* Offsets */
        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column  { width: 300px; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }

/* @override
	http://responsive.3000themes.com/skin/frontend/response/default/css/styles.css */



/**
 * 3000Themes.com Responsive magento theme and boilerplate
 *
 *
 * @category    design
 * @package     response_default
 * @license     Read license file
 *
 * @author		Kay in 't Veen - 3000themes
 * @Project		Response
 * @version		V1.2 July 2012
 *
 *
 * 3000Themes is part of Microdesign B.V. - http://www.microdesign.nl
 */

/*======== LEGENDA ==========/

	1. Basics & buttons
	2. Typography
	3. Header
	4. Navigation
	5. Catalogsearch
	6. Breadcrumbs
	7. Shop By filter
	8. Products Grid
	9. Product detail page

/*================================================================================ */
/* 1. Basics & Buttons												3000Themes.com
/*================================================================================ */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*font-weight: bold !important;*/
    font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
img {
    max-width: 100%;
}
body{ font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;}
.content{
    z-index: 10;
}
.four.columns.leftcol{ float: left;}
.twelve.columns.col2l.content{ float: right; }
.twelve.columns.col2r.content{ float: left;}
.four.columns.rightcol{ float: right !important;}

/*================================================================================ */
/* 2. Typography													3000Themes.com
/*================================================================================ */

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 46px; line-height: 54px; margin-bottom: 18px;}
h2 { font-size: 35px; line-height: 48px; margin-bottom: 12px; }
h3 { font-size: 28px; line-height: 42px; margin-bottom: 6px; }
h4 { font-size: 21px; line-height: 36px; margin-bottom: 0; }
h5 { font-size: 17px; line-height: 30px; }
h6 { font-size: 14px; line-height: 24px; }
h2.legend{ font-size: 16px; line-height: 18px; }



/*================================================================================ */
/* 3. Header														3000Themes.com
/*================================================================================ */
header{
    margin: 0;
    padding-top: 24px;
}
.thelogo a{
    display: block;
    width: 350px;
    height: 78px;
}
.thelogo{
    display: block;
    width: 505px;
    height: 78px !important;
    padding: 0 !important;
    /* http://nicolasgallagher.com/another-css-image-replacement-technique/ */
    width: 100%;
    font-size: 24px;
}
h1.thelogo{
    margin: 0;
}
/*================================================================================ */
/* 4. Navigation														3000Themes.com
/*================================================================================ */

nav.primary{ margin: 12px 0 0 0; height: 18px;}
nav.primary ul,
nav.primary ul li {
    margin: 0px;
    display: inline;
}

nav.primary ul li {
    display: inline;
    float: left;
    position: relative;
    padding-right:45px;
    height: 30px;
}

nav.primary ul li a {
    line-height: 18px;

}
nav.primary ul li.first a { margin-left: 0;}


/*sub menu*/
nav.primary ul ul {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top:100%;
    left: 0;
    z-index: 999999;
    background: #fff;
    /*height: 0px;*/
    overflow: hidden;
    min-width: 100%;
    -webkit-transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    -ms-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;

    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);

    -moz-border-radius: 5px;  Firefox
    -webkit-border-radius: 5px;  Safari, Chrome
    border-radius: 5px;  CSS3
}


nav.primary ul li:hover ul {
    opacity: 10;
    filter: alpha(opacity=100);

    height: auto;
    overflow: auto;

    display: block;
}

nav.primary ul ul li {
    float: none;
    display: list-item;
    padding: 6px 12px;
}

nav.primary ul ul li a {
    display: block;
    line-height: 18px;
    position: relative;
    z-index: 999999;
    padding: 0;
}

/* Added by GRI to fix 3rd layer of drop down navigation*/
nav.primary ul ul {
    width: 220px;
    background: #fff;
    border: 1px solid #bcbcbc;

    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
nav.primary ul ul ul {
    display: none !important;
    opacity: 0;
}
nav.primary ul ul li:hover ul {
    top: 0;
    right: -220px;
    left: auto;
    display: block !important;
}
nav.primary ul li:hover ul {
    overflow: visible;
}
nav.primary ul ul li a {
    color: #000;
    font-weight: 400;
    font-size: 13px;
}
/* End GRI */

.toplinks{
    margin-top: 48px;
}
@-moz-document url-prefix() {
    .toplinks{
    	margin-top: 68px;
    }
}
.toplinks ul,
.toplinks li {
    margin: 0px;

}

.toplinks ul li {
    display: inline;
    float: right;
    text-align: right;
    position: relative;
    padding-left:25px;
    margin: 0;
    margin-bottom: 0 !important;

}

.toplinks ul li a {
    line-height: 18px;
    font-size: 11px;
}

.toplinks ul li.first a { margin-left: 0;}


/*================================================================================ */
/* 5. Catalogsearch													3000Themes.com
/*================================================================================ */

.topsearch{
    height: 36px;
    margin-bottom: 12px;
}
.topsearch label{ display: none; }
.topsearch button,
.topsearch button:active,
.topsearch button:hover{
    border: 0;
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/search.png);
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    float: right;
    width: 16px;
    height: 18px;
    padding: 0;
    margin: -27px 10px 0 0px;
}

.topsearch .input-text{
    border: 1px solid #e1e1e1;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    /*height: 36px !important;*/
    color: #aab8c4;
    font-style: italic;
    padding: 12px 37px 12px 12px;
    font-size: 12px;
    line-height: 12px;
    width: 100%;
    margin-bottom: 0;
}

/*================================================================================ */
/* 5. Footer														3000Themes.com
/*================================================================================ */

footer{
    border-top: 1px solid #ccc;
    padding-top: 12px;
    font-size: 10px;
    /*line-height: 18px !important;*/
    margin-top: 12px;
}
footer address{
    border-top: 1px solid #e1e1e1;
    /*font-weight: normal !important;*/
    margin-top: 12px;
    padding: 6px 0;
}
footer h3{ font-size: 10px; line-height: 18px;
    margin: 0;
}

footer li{
    line-height: 18px;
    margin: 0;
}
footer .contact ul.first{ float: left; }
footer .contact ul.second{ float: right; }

footer .subscribe label{ display: none;	}
footer .subscribe button,
footer .subscribe button:hover,
footer .subscribe button:active{
    border: 0;
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/subscribe.png);
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    float: right;
    width: 19px;
    height: 10px;
    padding: 0;
    margin: -22px 10px 0 0px;
}
footer .subscribe button.validation-passed{
    margin-top: -40px;
}
footer .subscribe button:hover{
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/subscribe.png);
    cursor: pointer;
    border: 0;
}
footer .subscribe .input-text{
    border: 1px solid #e1e1e1;
    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
    height: 36px;
    color: #aab8c4;
    font-style: italic;
    padding: 12px 43px 12px 12px;
    font-size: 12px;
    line-height: 12px;
    width: 100%;
    margin-bottom: 0;
}

/*================================================================================ */
/* 6. Breadcrumbs													3000Themes.com
/*================================================================================ */

.breadcrumbs{
    line-height: 18px;
    padding: 6px 0;
}
.breadcrumbs ul,
.breadcrumbs li,
.breadcrumbs li a{
    display: inline;
}
.breadcrumbs li{ float: left; margin: 0; }
.breadcrumbs li span{ margin-right: 3px; }


/*================================================================================ */
/* 7. Shop By filter												3000Themes.com
/*================================================================================ */
.leftcol{ min-height: 300px; }

.block-layered-nav{ font-size: 11px; }
.block-layered-nav ol{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
}

.block-layered-nav li{ margin: 0; }
.currently ol{ margin-bottom: 0;	}
.currently ol li span{ float: left; }
.currently ol li span.label{ margin-right: 4px; clear: left;
}

.currently{
    padding-bottom: 6px;
    margin-bottom: 12px;
}

/*================================================================================ */
/* 8. Products Grid 												3000Themes.com
/*================================================================================ */

.category-title h1{ display: none;	}

.toolbar{ font-size: 11px; line-height: 18px; text-transform: uppercase; height: 18px; margin: 0 0 12px 0;
}

.toolbar .pager{ float: right; width: 50%;
}
.toolbar .pager p.amount{ margin: 0; float: right; }
.toolbar .pager .limiter,
.toolbar .pager .limiter label,
.toolbar .pager .limiter select,
.toolbar .pager .limiter{ margin: 0 8px 0 0; font-size: 11px; float: right; }
.toolbar .pager .limiter{margin: 0 15px 0 0; float: right; width: 120px;	}
.toolbar .pager .limiter select{ margin-left: 8px;	}
.toolbar .sorter{ float: left; }
.toolbar .sorter p.view-mode{ float: left; margin: 0 25px 0 0; }
.toolbar .sorter .sort-by,
.toolbar .sorter .sort-by select,
.toolbar .sorter .sort-by label{ float: left; margin: 0; font-size: 11px; margin: 0 10px 0 0;}
.toolbar .sorter .sort-by{
    width: 160px;
}
.toolbar .sorter .sort-by a{ float: left;  }

.toolbar select{ width: auto; }



.products-grid{
    width: 100%;
    clear: both;
}
.products-grid li.item{
    margin-top: 12px;
}
.products-grid .price-box{
    margin-bottom: 12px;
}
.products-grid h2.product-name,
.products-list h2.product-name{ font-size: 18px; line-height: 24px; margin: 6px 0;}

.products-grid .price-box .price,
.products-list .price-box .price{ margin-bottom: 12px; }
.products-grid img{
    width: 100%;
}


.products-grid ul.add-to-links li,
.products-list ul.add-to-links li{
    float: right;
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 6px;
}

.products-grid ul.add-to-links li.wishlist,
.products-list ul.add-to-links li.wishlist{
    padding-left: 10px;

}
.pages{ float: right; }
.pages strong{ float: left; }
.pages ol{
    margin: 0;
    padding: 0;
    list-style: none;
    float: left;
}
.pages ol li{
    float: left;
    margin-bottom: 0;
    padding-right: 3px;
}

.pages ol li.current{text-decoration: underline;}
.products-grid li.first{
    clear: left !important;
}

/*================================================================================ */
/* 9. Products List 												3000Themes.com
/*================================================================================ */
ol.products-list{
    list-style: none;
    margin: 0;
}
.products-list h2.product-name{
    margin:0 !important;
}
.products-list .desc{
    font-weight: normal !important;
    font-size: 13px ;
}
.products-list ul.add-to-links{
    float: right;
    width: 150px;
    margin: 0;
}
.products-list .btn-cart{
    margin-top: 12px;
}

/*================================================================================ */
/* 10. Product detail page											3000Themes.com
/*================================================================================ */

.catalog-product-view .details{ float: right !important; }
.catalog-product-view .upsell{ float: left !important; }


.catalog-product-view .add-to-cart{
    margin-top: 12px;
    float: right;
    width: 210px;
}


.catalog-product-view .add-to-cart  label{ display: none; }

.catalog-product-view .add-to-box p.availability{ display: none; }

.catalog-product-view .add-to-box p.email-friend{
    float: right;
    clear: right;
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 12px;
}
p.product-image-zoom img#slide-loader{
    position: absolute;
    margin-top: -30px;
    margin-left: 10px;
    z-index: 11000;
    display: none;
}
p.product-image-zoom{
    display: block;
    height: 450px;
}
p.product-image-zoom img#image {
    position: absolute;
    width: 450px;
}
.more-views li{
    float: left;
    padding: 0 10px 0 0;
}

.box-reviews{
    float: left;

}
.details .std{
    font-size: 12px;
    font-weight: normal !important;
    margin-bottom: 18px;
}
.box-reviews{
    height: 100% !important;
}

.leftpart, .rightpart{
    margin-bottom: 24px;
}

table#product-attribute-specs-table th{
    text-align: left;
    padding-bottom: 12px;
}
table#product-attribute-specs-table td.data{
    padding-left: 10px;
}
table#product-attribute-specs-table td,
table#product-attribute-specs-table ul li{
    text-align: left;
    font-weight: normal !important;
    font-size: 12px;
}
table#product-attribute-specs-table ul{
    margin: 0 0 0 5px;
    list-style: disc;
}

table.grouped-items-table{ font-size: 12px; width: 100%; color: #212b33;
}
.grouped-items-table th{ font-size: 18px; padding-right: 25px; width: 100%; text-align: left;
}
.grouped-items-table th.a-right{ text-align: right; width: 30%;	}
.grouped-items-table th.a-center{ text-align: right; }
.grouped-items-table input.qty{ text-align: center; width: 40px; }

hr.addtocart{
    border: 0;
    margin: 12px 0;
    height: 6px;
    color: #dfe3e7;
    background: #dfe3e7;
}
.addtobuttons{
    float: right;
    width: 50%;
}
.addthisbuttons{
    float: left;
    width: 50%;
}
.addthis_button_facebook_like{
    margin-top: 12px;
}
.addthis_button_tweet,
.addthis_button_facebook_like,
.addthis_button_google_plusone{
    float: left;
    clear: left;
}
.addthis_button_tweet{
    margin-bottom: 5px !important;
}
p.email-friend{
    height: 42px !important;
    margin: 0;
    float: right !important;
}
.catalog-product-view ul.add-to-links{
    width: 100%;
    clear: both;
    margin-top: 12px;
    font-size: 10px;
}
.catalog-product-view ul.add-to-links li,
.catalog-product-view p.email-friend{
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 12px;
    clear: both;
    float: left;
    height: 6px;
}
.addtobuttons .add-to-links{
    margin: 0 !important;
}
.addtobuttons li{
    margin-bottom: 24px;
    float: right !important;
    text-align: right; !important;
}

.addtobuttons li a:hover,
.addtobuttons p.email-friend a:hover{
    color: #ee7440 !important;
}

.product-options{
    text-align: right;
}
.product-options .input-box{
    float: right;
}
.product-options p.required{
    display: none;
}
.product-options select,
.product-options input,
.product-options label{
    float: left;
}
.product-options dt{
    width: 100px;
}
.product-options dt,
.product-options dd{
    float: left;
}
.product-options{
    margin-top: 10px;
    margin-bottom: 25px; border:1px solid #ddd; background: #fff; padding: 20px;
}
.product-options dt{
    clear: both;

}
.product-options-bottom .add-to-cart{
    clear: right;
}


#review-form .data-table{
    width: 100%;
}
#review-form tbody th{
    width: 50px;
    text-align: left;
}
#review-form td.value{
    text-align: center;
}
#review-form tr{
    border-bottom: 1px solid #ddd;
    line-height: 30px;
}
#review-form ul.form-list{
    margin-top: 12px;
}
#review-form ul.form-list li{
    float: left;
    margin-right: 10px;
}

.box-reviews{
    border-top: 6px solid #dfe3e7;
    margin: 12px 0;
    height: 6px;

    padding-top: 10px;
}
.box-reviews h5{
    font-size: 12px;
    line-height: 18px;
}
.box-reviews textarea{
    height: 100px;
}
.box-reviews dd{
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-weight: normal !important;
    font-size: 12px;
}
.rating-box .rating{
    background: #ccc !important;
    height: 10px !important;
}
.ratings-table{
    width: 100%;
}
.ratings-table th {
    padding-right: 10px;
}
/*================================================================================ */
/* 11. Upsell														3000Themes.com
/*================================================================================ */

.box-up-sell li{
    float: left;
    width: 45%;
    margin-right: 5%;
    height: 300px;
}
.box-up-sell li h3{
    font-size: 12px;
    line-height: 18px;
}
.box-up-sell li h3 a{ color: #212b33; }
.box-up-sell li .price-box{
    font-size: 12px;
    line-height: 18px;
}
.box-up-sell li .price-box p{
    margin: 0;
}
.box-up-sell li .price-box{
    padding: 0;
}


/*================================================================================ */
/* 12. Cart														3000Themes.com
/*================================================================================ */

.cart h1{
    width: 60%;
}
table.cart-table .a-right{ text-align: right; }
table.cart-table { width: 100%;}
table.cart-table th,table.cart-table td {
    text-align: left;
    border-bottom: 1px solid #ededed;
    padding: 10px 15px;
    vertical-align: top;
}
table.cart-table a{
    font-size: 12px;
}
table.cart-table tfoot td{
    border-bottom: none;
    padding: 10px 0;
}
table.cart-table .item-options dt {
    float: left;
    padding-right: 3px;
}
table.cart-table thead tr,
table.cart-table tfoot tr{
    background: none;
}
table.cart-table tr{
    background: #fff;
}
.cart-bottom {
    width: 100%;
    margin-top: 35px;
}
.totals {
    float: right;
    width: 30%;
    overflow: hidden;
}
.totals td { padding: 0 0 10px 5px; }

.totals .checkout-types,.title-buttons .checkout-types { float: right; margin: 0;
}

.title-buttons { width: 100%; }

.title-buttons h1 {
    float: left;
    padding-top: 5px;
}
.cart .btn-checkout,
.cart .btn-checkout:hover {
    font-size: 14px;
    padding: 10px 12px 8px;
}
.cart .page-title { margin-bottom: 10px; }
.cart h2.product-name { font-size: 16px; }

/* cross sells */
.crosssell {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.crosssell h3 { margin-bottom: 15px; }
.crosssell ul { overflow: hidden; }
.crosssell ul li.item {
    float: left;
    width: 200px;
    margin: 0 15px 15px 0;
}
.crosssell ul li.item a.product-image {
    display: block;
    float: left;
}
.crosssell ul li.item .product-shop { clear: both; }
.discount { margin-bottom: 25px; border:1px solid #ddd; background: #fff; padding: 20px;}
.crosssell .btn-cart,
.crosssell .btn-cart:hover{
    margin-top: 6px;
}
.discount .input-box input.input-text {
    width: 80%;
}
.discount button.button {
    margin-top: 8px;
}
/* estimate shipping & tax | codes & gift cards */
.shipping,.discount {
    float: left;
    width: 32%;
    margin-right: 3%;
}
.shipping .buttons-set {
    margin: 0;
}
.shipping .form-list li {
    width: 90%;
}
.shipping{
    border:1px solid #ddd; background: #fff; padding: 20px;
}
.cart-bottom .giftcard {
    margin-top: 20px;
}
.cart-bottom .check-gc-status {
    padding: 0;
    color: #000 !important;
    font-size: 10px;
    background: none !important;
    width: 100%;
    text-align: left;
}
.cart-table td{
    min-width: 100px;
}
.cart-table tfoot button, .cart-table tfoot button:hover{
    float: right;
    margin-left: 15px;
}


/*-- Cart Collaterals --*/
.cart-collaterals .col-1{
    float: left;
    width: 33%;
}
.cart-collaterals .col-2{
    float: left;
}
.cart-collaterals .totals{
    float: right !important;
}
.cart-collaterals .vertical.coupon-shipping{
    width: 33% !important;
}



.cart-collaterals .coupon-shipping,
.cart-collaterals .crosssell{
    float: left;
}

.cart-collaterals .totals table{
    text-align: right !important;
    float: right;
}
.cart-collaterals .totals ul li{
    text-align: right;
    float: right;
}
.cart-collaterals .coupon-shipping .discount,
.cart-collaterals .coupon-shipping .shipping{
    width: 100%;
}
.cart-collaterals ul.checkout-types a{
    font-size: 11px;
}

/*-- Cross Sell --*/

.crosssell li img{
    width: 100% !important;
}

.crosssell h3{
    font-size: 12px;
    line-height: 18px;
}
.crosssell h3.product-name{ font-size: 18px; line-height: 24px; margin: 6px 0;}

.crosssell .price-box .price{ font-size: 18px; margin-bottom: 12px; }
.crosssell ul.add-to-links{
    float: left;
    clear: left;
    margin: 0;
}
.crosssell .separator{
    display: none;
}
.crosssell ul.add-to-links li{
    float: left;
    font-size: 10px;
    text-transform: uppercase;
    padding: 6px 6px 0 0;

}

.crosssell ul.add-to-links li.wishlist{ padding-right: 10px; }
.crosssell button{
    float: left;
    margin-top: 6px;
}


.cart-table td.a-center a{
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/ico_edit.png) top right no-repeat;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    display: block;
    width: 16px;
    height: 16px;
    text-align: right;
    float: r;
}
/*a.btn-remove,*/
/*a.btn-remove.btn-remove2{*/
    /*background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/ico_del.png) top right no-repeat !important;*/
    /*font: 0/0 a;*/
    /*text-shadow: none;*/
    /*color: transparent;*/
    /*display: block;*/
    /*width: 16px !important;*/
    /*float: r;*/
    /*height: 16px;*/
    /*text-align: right;*/
/*}*/
.cart-table h2{
    line-height: 24px;
}

#shopping-cart-totals-table tfoot {
    font-size: 18px !important;
    color: #ee7440 !important;
}
ul.checkout-types a{
    color: #aab8c4;
    font-weight: normal;
}

.customer-dob{
    width: 100%;
    background: #f5f5f5 url('http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bg.jpg') no-repeat left top;
}
.customer-dob input{
    width: 70px !important;
}
.customer-dob .dob-month,
.customer-dob .dob-day,
.customer-dob .dob-year{
    float: left;
    margin-right: 10px;
}
/*================================================================================ */
/* 13. Cart Mini header												3000Themes.com
/*================================================================================ */

.cartpop{

    border: 1px solid #e2e2e2;
    position: absolute;

    margin-left: -140px;

    background: #fff;
    -moz-box-shadow:  1px 10px 5px #888;
    -webkit-box-shadow: 5px 10px 5px #888;
    box-shadow: 1px 1px 5px #ccc;
    padding: 10px;
    opacity: 0;
    top: -999px;
    /* Firefox */
    -moz-transition-property: opacity;
    -moz-transition-duration: 1s;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 1s;
    -o-transition-property: opacity;
    -o-transition-duration: 1s;
    transition-property: opacity;
    transition-duration: 1s;
    width: 250px;
    z-index: 100000 !important;



}
header .container{
    position: relative;
    z-index: 100000000 !important;
}
li.topcart:hover .cartpop{
    opacity: 1 !important;
    top: auto !important;
    z-index: 10000000 !important;
}
.cartpop p.block-subtitle{
    float: left;
    margin-bottom: 6px;
    color: #;
}
.cartpop ol{
    margin: 0;
    padding: 0;

}
.cartpop ol li{
    float: left !important;
    text-align: left !important;
    padding: 0 !important;
    width: 100%;
    padding-top: 12px !important;
    border-top: 1px dashed #e2e2e2;
}
.cartpop ol li a.product-image{ float: left; padding: 0 5px 0 0;
}
.cartpop ol li .product-details{
    float: left;
    width: 171px;
}
.cartpop ol li p.product-name{
    margin: 0;
}
.cartpop .btn-remove{
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/delete.png) no-repeat;
    width: 10px;
    height: 10px;
    float: right;
}
.cartpop .cartfoot{
    float: left;
    width: 100%;
    padding-top: 5px;
    margin-top: 5px;
    border-top:  1px dashed #e2e2e2;
}
.cartpop .cartfoot .actions{ float: right; }
.cartpop .cartfoot .price{ float: left; font-size: 23px; padding-top: 6px;color: #ee7440; }

/*== ONE PAGE CHECKOUT ==*/
ol#checkoutSteps{
    margin: 0;
    list-style: none;
}
.opc .buttons-set { margin-top:0; padding-top:2em; }
.opc .buttons-set p.required { margin:0; padding:0 0 10px; }
.opc .buttons-set.disabled button.button { display:none; }
.opc .buttons-set .please-wait { height:28px; line-height:28px; }
.opc .ul { list-style:disc outside; padding-left:18px; }

.opc { position:relative; }
.opc li.section {}

.opc .step-title { border-bottom:1px solid #dadada !important; padding: 12px; height: 42px; font-size: 16px; line-height: 18px;  }
.opc .step-title .number { float:left; margin-right: 10px; font-size: 16px; line-height: 18px;color: #212b33; margin-top: -2px;
}


.opc .step-title a { display:none; float:right; font-size:11px; line-height:16px; }

.opc .allow .step-title {  color:#ccc; cursor:pointer; }
.opc .allow .step-title .number {}
.opc .allow .step-title h2 { color:#fff; }
.opc .allow .step-title a { display:block; font-size:10px; color:#fff; }

.opc .active .step-title { border: 0; padding-bottom:9px; color:#fff; cursor:default; }
.opc .active .step-title .number {}
.opc .active .step-title h2 { color:#fff; text-transform: uppercase; }
.opc .active .step-title a { display:none; }

.opc .step { border:1px solid #ddd; border-top:0; padding:18px 18px; position:relative; background: white; }
.opc .step .tool-tip { right:30px; }

#opc-login h3 { font-size:13px; border-bottom:1px solid #e4e4e4; padding-bottom:2px; text-transform:uppercase; }
#opc-login h4 { font-size:1em; font-weight:bold; margin:0; color:#2f2f2f; }

#opc-shipping_method .buttons-set { border-top:0; }
.opc .gift-messages-form { margin:0 -30px; background:#f4f4f4; border:1px solid #ddd; border-width:1px 0; padding:22px 24px 22px 30px; }
.opc .gift-messages-form .inner-box { padding:5px; height:260px; overflow:auto; }


.opc #checkout-step-login .col2-set .col-2{
    float: left;
    width: 320px;
}
.opc #checkout-step-login .col2-set .col-1{
    float: right;
    width: 320px;
}
.opc #checkout-step-login .col2-set .col-1 li,
.opc #checkout-step-login .col2-set .col-1 p{
    font-weight: normal !important;
}
.opc #checkout-step-login .col2-set .col-1 input{
    float: left;
    margin-right: 5px;
}
.opc button#onepage-guest-register-button{
    float: r;
}
.opc #checkout-step-login p.required{
    display: none;
}

.opc #checkout-step-login .col-2 p{
    display: none;
}
.opc #checkout-step-login ul,
.opc #checkout-step-login p{ margin: 0; }

.opc #checkout-step-login .col-2 a.f-left{
    font-weight: normal !important;
    font-size: 11px;
    padding: 12px;
}
.opc #billing-new-address-form li.wide input{
    width: 92%;
}
.opc #billing-new-address-form input,
.opc #billing-new-address-form select{
    width: 85%;
    margin-bottom: 6px;
}
.opc ul.form-list{
    margin: 0;
}
.opc  ul{
    margin: 0;
}
.opc #billing-new-address-form .field{
    float: left;
    width: 50%;
}
.opc #billing-new-address-form .fields {
    float: left;
    clear: left;
    width: 100%;
}
.opc li.control input,
.opc dl dd input,
.opc dl dt input{
    float: left;
    margin-right: 10px;
    clear: left;
}
input.validation-failed{
    border-color:red;
}
div.validation-advice{
    color: red;
}

#opc-review h3,
#opc-review span{

}
#opc-review table{
    width: 100%;
}
#opc-review table th{
    padding-right: 20px;
    text-align: left;
}
#opc-review table td,
#opc-review table td span,
#opc-review table td h3{

}
#opc-review table .a-center{ text-align: center; }
#opc-review table .a-left{ text-align: left; }
#opc-review table .a-right{ text-align: right; }

/*#opc-review th.a-center{*/
    /*text-align: right !important;*/
    /*padding-right: 0;*/
    /*padding-left: 20px;*/
/*}*/
#opc-review tfoot td{
    padding: 5px 20px;
}
#opc-review tfoot td.last{
    padding-right: 0;
}
#opc-review tr.last{
    border-bottom: 1px solid #e8e8e8;
}
#opc-review table strong,
#opc-review table strong span.price{
    font-size: 18px;
    padding: 5px 0 0 0;
    font-weight: bold !important;
    color: #ee7440;
}
#opc-review .btn-checkout{
    float: right;
}
#opc-review p.f-left{
    float: left;
    margin: 12px 0 0 0;
    font-weight: normal !important;
    font-size: 12px;
}

.block-progress{
    font-size: 12px;
}

.block-progress dd{
    margin-bottom: 18px;
    font-size: normal !important;
}
.block-progress dd address,
.block-progress dd,
.block-progress dd p{
    font-weight: normal !important;
}

.block-progress .block-title{
    border-bottom: 5px solid #dfe3e7;
    text-transform: uppercase;
}




.customer-account-create .form-list,
.account-login .form-list{
    border:1px solid #ddd !important; border-top:0; padding:18px 18px; position:relative; background: white;
}
.customer-account-create .buttons-set{
    float: left;
    width: 100%;
}
.customer-account-create .buttons-set p{
    float: left;
}
.customer-account-create .buttons-set button.button{
    font-size: 16px;
    float: right;
}
.registered-users .content .f-left{

    margin: 12px 0 0 0;
    font-weight: normal !important;
    font-size: 12px;
    padding: 0 0 0 10px;
}





/*================================================================================ */
/* 100. Others														3000Themes.com
/*================================================================================ */


.messages { width:100%; text-align:left; margin:10px 0 20px 0 !important; overflow:hidden; }
.catalog-product-view .messages { margin:0 0 20px 0 !important; }
.messages li { padding:0 !important; margin:0 0 10px; }
.messages ul { position:relative; padding:10px 10px; margin:0 0 -11px !important;  height: 50px;
}
.messages ul li { background:none !important; padding:0 0 3px !important; margin:0; }
.messages a { text-decoration:underline; }
.messages a:hover { text-decoration:none; }
.messages li.error-msg, .messages li.success-msg, .messages li.note-msg, .messages li.notice-msg { font-size:12px !important; font-style:italic; }
p.error-msg { font-size:12px !important; padding:10px; margin:10px 0; }
.messages li.error-msg, p.error-msg { background:#fff5f3 !important; color:#d91a00; }
.messages li.error-msg a, .messages li.success-msg a, .messages li.note-msg a, .messages li.notice-msg a { color:#fefefe; }
.messages li.success-msg { background:#eff5ea !important; color:#3d6611; border: 1px solid #bacba7; }
.messages li.note-msg, .messages li.notice-msg { background:#e5eef4 !important; color:#113566; }

.content .title-container{
    float: left;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 0 !important;
}
.content .title-container h3{margin: 0; background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/h3fill.gif) 0px 20px repeat-x; }
.content .title-container h3 span{ background: #f6f6f6; padding-right: 10px; }

.block-compare,
.block-viewed,
.products-grid .ratings,
.products-list .ratings{ display: none; }


/*================================================================================ */
/* 200. Media Queries												3000Themes.com
/*================================================================================ */

/* Bigger then standard 960px (1280px) */
@media only screen and (min-width: 1280px) {
    .enable1280 .flexslider{
        float: left;
        width: 940px;
        background: none !important;
    }
    .enable1280 .smallbanners{
        float: left;
        width: 300px;
        margin-left: 20px;
    }
    .enable1280 .smallbanners .one-third{
        width: 300px !important;
        margin: 0;
        margin-bottom: 36px;
    }
    .enable1280 .smallbanners .one-third.smallbanner3{
        margin-bottom: 0;
    }
    .enable1280 p.product-image-zoom{
        height: 620px;
    }
    .enable1280 p.product-image-zoom img{
        width: 620px;
    }
    .enable1280 .box-up-sell li{
        height: 350px;
    }
    .enable1280 .crosssell .item{
        width: 300px !important;
    }
    .enable1280 .crosssell .product-image{
        width: 300px;
    }
    .enable1280 .crosssell .product-image img{
        width: 100% !important;
    }


}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {
    footer ul.first{
        margin-bottom: 6px;
    }
    footer ul.second{
        float: left !important;
        text-align: left;
    }

    .product-image-zoom img,
    .product-image-zoom{
        width: 364px !important;
        height: 364px !important;
    }
    .vertical.crosssell{
        width: 220px !important;
    }
    #checkout-step-login .col-1,
    #checkout-step-login .col-2{
        width: 220px !important
    }


}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {

    a.logo{
        background-position: center;
    }
    nav.user{
        margin: 12px 0;
        height: 30px;
        padding: 6px;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }
    nav.user li.topcart{
        float: left;
        padding-left: 0;
    }
    nav.user li a{
        font-size: 12px !important;

    }
    nav.primary select{
        display: none;
    }
    nav.primary li:hover ul{
        display: none !important;
    }
    .topsearch{
        margin-bottom: 12px !important;
        margin-top: 12px !important;
    }
    .smallbanner1 img,
    .smallbanner2 img,
    .smallbanner3 img{
        width: 100% !important;
        margin-bottom: 12px;
    }
    .products-grid .four.columns{
        float: left !important;
        width: 196px;
    }
    .products-grid .four.columns.item0,
    .products-grid .four.columns.item2{
        margin-right: 28px;
    }

    li.topcart:hover .cartpop{
        display: none !important;
    }
    nav.user{
        margin-bottom: 0 !important;
    }
    .block-layered-nav dl{
        float: left;
        width: 100%;
        height: auto !important;
    }
    .block-layered-nav ol li{
        float: left;
        width: 100%;
        padding: 0 !important;
        border-bottom: 1px solid #e1e1e1;
        line-height: 0 !important;
        padding: 0px 0px 0px 5px !important;
        background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/arrow.png) #eee right no-repeat;
        background-position: 400px 9px;
        height: 30px;
    }
    .block-layered-nav ol li:hover{
        background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/arrow.png) #e5e5e5 right no-repeat;
        background-position: 400px 9px;
    }
    .block-layered-nav ol li a{
        height: 15px;
        display: block;
        width: 100% !important;
        padding: 15px 0;
    }

    nav.primary,
    nav.primary ul,
    nav.primary li,
    nav.primary li a{
        width: 100%;
    }

    nav.primary li{
        float: left;
        padding: 0 !important;
        border-bottom: 1px solid #fff;
        line-height: 0 !important;
        padding: 6px 0 6px 5px !important;

        background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/arrow.png) #eee right no-repeat;
        background-position: 400px 9px;
    }

    nav.primary li:hover{
        background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/arrow.png) #e5e5e5 right no-repeat;
        background-position: 400px 9px;
    }
    nav.primary li.first{
        border-top: 1px solid #fff;
    }

    .block-layered-nav dl{
        margin-top: 12px !important;
        border-top: 5px solid #dfe3e7;
        padding-top: 12px;

    }

    footer .four.columns,
    footer .two.columns{
        float: left !important;
        width: 196px !important;
    }
    footer .customerservice,
    footer .account{ float: left;  }


    footer .contact,
    footer .four.columns.about,
    footer .four.columns.subscribe{ width: 100% !important; clear: both !important; }


    .limiter,
    .sorter{ display: none !important; }

    .upsell li{
        float: left !important;
        width: 200px !important;
    }
    .upsell  li.omega{
        float: right !important;
    }
    .products-list .leftpart{
        float: left !important;
        width: 150px !important;
    }
    .products-list .rightpart{
        float: left !important;
        width: 258px !important;
        margin-left: 12px;
    }
    table.cart-table table,
    table.cart-table thead,
    table.cart-table tbody,
    table.cart-table th,
    table.cart-table td,
    table.cart-table tr { display: block; border: 0; text-align: left !important;	}
    table.cart-table thead{
        display: none;
    }
    table.cart-table .product-image img{
        width: 150px;
    }
    table.cart-table .productinfo h2 a{
        font-size: 24px !important;
        color: #212b33;
    }
    table.cart-table .edit{ display: none;}
    table.cart-table .wee{ display: none;}
    table.cart-table td.button-remove{
        position: absolute;
        margin: -320px 0 0 315px;
    }
    .crosssell{ display: none; }
    .cart-collaterals .five.columns{
        width: 100% !important;
        margin-bottom: 24px;
    }
    button#empty_cart_button{
        display: none;
    }
    .totals .checkout-types{ display: none; }
    .cart h1{
        width: 100%;
        text-align: center;
    }
    .cart .page-title .checkout-types,
    .cart .page-title .checkout-types li,
    .cart .page-title .checkout-types li button{
        width: 100%;
        text-align: center;
        height: 36px;
    }
    p.product-image-zoom{
        width: 420px !important;
        height: 420px !important;
    }
    p.product-image-zoom img{width: 420px !important; height: 420px !important;}

    .products-grid .four.columns{
        float: left !important;
        clear: none !important;
    }
}


/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
    .products-grid .four.columns{
        width: 100%;
        margin-right: 0 !important;
    }
    .products-grid .four.columns img{
        width: 100%;
    }
    nav.primary li,
    nav.primary li:hover{
        background-position: 280px 9px;
    }
    .upsell li{
        float: left !important;
        width: 100% !important;
        height: 380px;
    }
    .upsell  li.omega{
        float: right !important;
    }
    .upsell h4{
        font-size: 19px;
    }
    .products-list .leftpart{
        width: 100% !important;
    }
    .products-list .leftpart img{
        width: 100%;
    }
    .products-list .rightpart{
        float: left !important;
        width: 100% !important;
        margin-left: 0;
    }
    table.cart-table td.button-remove{
        position: absolute;
        margin: -320px 0 0 195px;
    }
    p.product-image-zoom{
        width: 300px !important;
        height: 300px !important;
    }
    p.product-image-zoom img{width: 300px !important; height: 300px !important;}


}



/*================================================================================ */
/* 300. FlexSlider													3000Themes.com
/*================================================================================ */

/*
 * jQuery FlexSlider v1.8
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* Browser Resets */
.flex-container a,
.flexslider a,
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}


/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {max-width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider {background: #fff; position: relative; zoom: 1;}
.flexslider .slides {zoom: 1;}
.flexslider .slides > li {position: relative; margin: 0;
}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {zoom: 1; position: relative;}

/* Caption style */
/* IE rgba() hack */
.flex-caption {background:none; -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); zoom: 1;}
.flex-caption {width: 96%; padding: 2%; margin: 0; position: absolute; left: 0; bottom: 0; background: rgba(0,0,0,.3); color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,.3); font-size: 14px; line-height: 18px;}

/* Direction Nav */
.flex-direction-nav { height: 0; }
.flex-direction-nav a {width: 52px; height: 52px; margin: -13px 0 0; display: block; background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/css/theme/bg_direction_nav.png) no-repeat; position: absolute; top: 50%; cursor: pointer; text-indent: -999em;}
.flex-direction-nav .flex-next {background-position: -52px 0; right: -21px;}
.flex-direction-nav .flex-prev {left: -20px;}
.flex-direction-nav .flex-disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}

/* Control Nav */
.flex-control-nav {width: 100%; position: absolute; bottom: -30px; text-align: center;}
.flex-control-nav li { display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav a {width: 13px; height: 13px; display: block; background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/css/theme/bg_control_nav.png) no-repeat; cursor: pointer; text-indent: -999em;}
.flex-control-nav a:hover {background-position: 0 -13px;}
.flex-control-nav a.flex-active {background-position: 0 -26px; cursor: default;}


/* Split Button */
.split-button { display:inline-block; z-index:1; position:relative; max-width:300px; white-space:nowrap;}
.split-button.clickable:active { left:1px; top:1px; }
.split-button { background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_btn.gif) no-repeat 0 0; height:21px; padding:0 0 0 10px; margin:0; }
.split-button.active { z-index:100; }
.split-button strong { cursor:default; font-weight:bold; text-transform:uppercase; font-size:11px; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_btn.gif) no-repeat 100% 0; height:19px; padding:3px 30px 0 5px; margin:0; display:block; overflow-x:hidden; white-space:nowrap; text-overflow:ellipsis; }
.split-button.clickable > strong,
.split-button strong[onclick] { text-transform:uppercase; font-size:11px; color:#C73615; text-transform:uppercase; cursor:pointer; }
.split-button .change { display:inline-block; border:1px solid; border-color:transparent transparent transparent #999; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_btn-split-change.png) 5px 50% no-repeat; text-indent:-999em; overflow:hidden; width:15px; cursor:pointer; height:11px; margin-left:8px; vertical-align:middle; }
.split-button .change { position:absolute; right:5px; top:0px; height:19px; border-left-color:#ccc; }

.split-button.light { background:none; height:auto; padding:0; }
.split-button.light.clickable:active { top:auto; left:auto; }
.split-button.light strong { display:inline-block; font-size:11px; text-transform:none; background:none; font-weight:normal; padding:0; height:auto; overflow:visible; white-space:normal; text-overflow:visible; }
.split-button.light.clickable > strong,
.split-button.light strong[onclick] { text-transform:none; text-decoration:underline; color:#999; }
.split-button.light.clickable > strong:hover,
.split-button.light strong[onclick]:hover { text-decoration:none; }
.split-button.light .change { position:static; right:auto; top:auto; height:11px; border-left-color:#999; }

.split-button.active .change,
.split-button .change:hover { background-position:-995px 50%; }
.split-button .list-container { position:absolute; display:none; right:0; top:100%; padding:0; min-width:100%; max-width:300px; float:left; }
.split-button.active .list-container { display:block; }
.split-button .list-container ul { background:#fff; border:1px solid rgba(0,0,0,0.1); position:relative; }
.split-button .list-container ul > li { white-space:nowrap; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_btn-split-item.png) no-repeat -10000px -10000px; border:1px solid #c1c1c1; border-top-width:0; margin:0; display:block!important; margin:0!important; }
.split-button .list-container ul > li:first-child { border-top-width:1px; }
.split-button .list-container li a,
.split-button .list-container li span { display:block; line-height:1.2!important; cursor:pointer; padding:5px 18px 5px 18px; color:#999; font-size:11px; text-transform:none; text-decoration:none; text-align:left; text-overflow:ellipsis; overflow:hidden; }
.split-button .list-container li:hover a,
.split-button .list-container li:hover span,
.split-button .list-container li:hover { color:#fff; text-decoration:none; }
.split-button .list-container li:hover { background-color:#999; background-position:5px -984px; }
.split-button .list-container li.new { color:#d33911; background-color:#eee; background-position:5px 7px; }
.split-button .list-container li.new:hover { background-color:#999; background-position:5px -485px; }

/* Multiple Wishlist */
.link-edit { padding-left:18px; line-height:18px; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_link-edit.png) no-repeat 0 0; display:inline-block; }
.wishlist-management .link-edit { width:16px; padding:0; margin:0 5px; height:16px; text-indent:-999em; overflow:hidden; vertical-align:middle; }
.wishlist-management .btn-create { float:right; margin-bottom:10px; }
.wishlist-management .sub-title { float:left;  max-width:100%; }
.wishlist-management .sub-title h2 { word-wrap:break-word; }
.wishlist-management .note-msg { clear:both; margin:0 0 10px; padding:10px; border-style:solid !important; border-width:1px !important; font-size:12px !important; border-color:#fcd344; background-color:#fafaec; color:#3d6611; }
.wishlist-management .msg-private { background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_lock.png) no-repeat 10px 10px #fafaec; padding-left:30px; }
.wishlist-management .table-caption .label { font-size:12px; float:left; line-height:21px; }
#wishlists-move { float:right; margin-left:10px; }
#wishlists-copy { float:right; }

#wishlists-select { background:none; padding-left:0; white-space:nowrap; float:left; max-width:220px; }
#wishlists-select strong { background:none; padding-right:0; padding-left:7px; font-weight:normal; font-size:12px; text-transform:none; }
#wishlists-select strong span { font-weight:bold; }
#wishlists-select .change { text-indent:0; width:auto; background:none; margin-left:4px; border:0; right:auto; left:100%; text-decoration:none; line-height:19px; margin-top:1px; }
#wishlists-select .change span { color:#1e75b4; text-transform:none; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_header-panel.gif) no-repeat scroll 100% -74px transparent; padding-right:10px; }
#wishlists-select.active .change span { color:#d33911; background-position:100% -130px; }
#wishlists-select .list-container { right:auto; left:0; margin-top:4px; }
#wishlists-select .list-container ul { background:#e7e7e7; border:0; }
#wishlists-select .list-container li:first-child { border-top:0; }
#wishlists-select .list-container li { border-color:#d9d9d9; }
#wishlists-select .list-container a,
#wishlists-select .list-container span { color:#1e75b4; padding:5px 6px;  background-position:-999em -999em;  }
#wishlists-select .list-container li:hover a,
#wishlists-select .list-container li:hover span,
#wishlists-select .list-container li:hover { color:#d33911; }
#wishlists-select .list-container li:hover { background-position:-999em -999em;  background-color:#f8f8f8;  }
#wishlists-select .list-container li.new { color:#d33911; background-color:#d9d9d9; background-position:5px 7px; padding-left:12px; }
#wishlists-select .list-container li.new:hover { background-color:#999; background-position:5px -485px; color:#fff; }
#wishlists-select .list-container li.new:hover a,
#wishlists-select .list-container li.new:hover span { color:#fff; }

/* Popup Dialog Block */
.window-overlay { background:#000; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; }
.window-overlay { position:absolute; top:0; left:0; min-height:100%; background:#000; opacity:0.5; width:100%; z-index:990; display:none; }
.window-overlay.active { display:block; }
.popup-block { border:1px solid #cfcfcf; left:50%; top:40%; position:absolute; margin:-85px 0 0 -250px; width:500px; text-align:left; -moz-box-shadow:0 0 6px #000; -webkit-box-shadow:0 0 6px #000; box-shadow:0 0 6px #000; z-index:1000; position:fixed; display:none; }
.popup-block.active { display:block; }
.popup-block .block-title { background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_page-title.gif) repeat-x scroll 0 0 #F6F6F6; border-bottom:1px solid #CFCFCF; padding:17px 17px 10px; }
.popup-block div.btn-close { background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/btn_window_close.gif) no-repeat; display:block; position:absolute; top:19px; right:17px; height:15px; width:15px; text-indent:-9999em; cursor:pointer; }
/*.popup-block .block-title strong { color:#D12C01; font-size:16px; font-weight:normal; }*/
.popup-block .block-content { padding:17px 17px 25px; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/bkg_block.gif) repeat-x 0 100% #fff; font-size:12px;  }
.popup-block .block-content .form-list label { width:180px; }
.popup-block .block-content .form-list .input-text { width:230px; }
.popup-block .block-content .form-list .control .input-box { margin-left:195px; }
.popup-block .block-content .form-buttons { width:auto; padding-left:188px; padding-top:10px; }
.popup-block .block-content .form-buttons .button { float:left; }
.popup-block.loading .block-content * { text-align:left; text-indent:-99999em; overflow:hidden; position:relative; margin-left:-9999em; }
.popup-block.loading .block-content:before { content:''; display:block; background:url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/images/opc-ajax-loader.gif) no-repeat 0 50%; position:absolute; z-index:99; top:50%; left:50%; line-height:16px; padding:16px; text-indent:0!important; }


/* Basic Print Page Styles */
.page-print .data-table th,
.page-print .data-table td {
    padding: 10px;
}
.page-print .shipping {
    width: 300px;
}
.page-print .data-table td h3 {
    font-size: 14px;
}
.page-print .data-table th:first-child,
.page-print .data-table td:first-child {
    text-align: left;
    width: 200px;
}
.page-print .data-table td:nth-child(4) {
    width: 150px;
    text-align: center;
}
/* @override
	http://responsive.3000themes.com/skin/frontend/response/default/css/response.css */


/**
 * 3000Themes.com Responsive magento theme and boilerplate
 *
 * RESPONSE COLOR SCHEME
 *
 * @category    design
 * @package     response_default
 * @license     Read license file
 *
 * @author		Kay in 't Veen - 3000themes
 * @Project		Response
 * @version		V1.2 July 2012
 *
 *
 * 3000Themes is part of Microdesign B.V. - http://www.microdesign.nl
 */

/*================================================================================ */
/* 1. Basics & Buttons												3000Themes.com
/*================================================================================ */

body{ background: #f6f6f6; font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    font-size: 10px;
    text-transform: uppercase;
    text-shadow: none;
    color: #fff;
    border: 0;
    padding: 9px;
    float: left;
    margin: 0;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    font-size: 10px;
    text-transform: uppercase;
    text-shadow: none;
    color: #fff;
    border: 0;
    padding: 9px;
    float: left;
    margin: 0;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    background: #7e7e7e;
}

/*================================================================================ */
/* 2. Typography													3000Themes.com
/*================================================================================ */

h1, h2, h3, h4, h5, h6 {
    color: #212b33;
    font-family: Helvetica, Arial, Verdana;
    font-weight: bold; }

h1 { font-size: 46px; line-height: 54px; margin-bottom: 18px;}
h2 { font-size: 35px; line-height: 48px; margin-bottom: 12px; }
h3 { font-size: 28px; line-height: 42px; margin-bottom: 6px; }
h4 { font-size: 21px; line-height: 36px; margin-bottom: 0; }
h5 { font-size: 17px; line-height: 30px; }
h6 { font-size: 14px; line-height: 24px; }
h2.legend{ text-transform:uppercase; }
a{
    color: #ee7440;
    text-decoration: none;
    cursor: pointer;
}
/*================================================================================ */
/* 3. Header														3000Themes.com
/*================================================================================ */
header{
    margin: 0;
    background: #fff;
    padding-top: 24px;
    border-bottom: 1px solid #dadada;
}
.thelogo{
    display: block;
    /*background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/response-logo.png) no-repeat;*/
    width: 305px;
    /*height: 78px !important;*/
    /*padding: 0 !important;*/
    /* http://nicolasgallagher.com/another-css-image-replacement-technique/ */
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    width: 100%;
}
h1.logo{
    margin: 0;
}

/*================================================================================ */
/* 4. Navigation														3000Themes.com
/*================================================================================ */

nav.primary ul li a { color: #212b33; font-weight: bold; text-decoration: none; }
nav.primary ul li a:hover {
    color: #ee7440;
    cursor: pointer;
}
nav.primary li a{
    width: auto !important;
    height: auto !important;
    font-size: 14px !important;
}


/*sub menu*/
nav.primary ul ul {
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top:100%;
    left: 0;
    z-index: 999999;
    background: #212b33;
    height: 0px;
    overflow: hidden;
    min-width: 100%;
    -webkit-transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    -ms-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;

    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);

    -moz-border-radius: 5px; /* Firefox */
    -webkit-border-radius: 5px; /* Safari, Chrome */
    border-radius: 5px; /* CSS3 */
}
nav.primary ul ul li a {
    text-transform: none;
    color: #fff;
}
nav.primary ul li:hover > a {
    color: #ee7440;
}

.toplinks ul li,
.toplinks ul{
    display: inherit;
    float: right !important;
}
.toplinks ul li{
    width: 80px !important;
}
.toplinks ul li.topcart{
    width: 160px !important;
}
.toplinks ul li,
.toplinks ul li a,
.toplinks ul {
    width: auto !important;
    height: auto !important;
}
.toplinks ul li a {
    color: #212b33;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
.toplinks ul li a:hover {
    color: #ee7440;
    cursor: pointer;
}

/*================================================================================ */
/* 5. Footer														3000Themes.com
/*================================================================================ */

footer{
    border-top: 5px solid #dfe3e7;
}
footer h3{
    text-transform: uppercase;
    color: #aab8c4;
}
footer a{ color: #212b33; }
footer .about a,
footer .contact a{ text-transform: uppercase;	color: #ee7440 !important;}
footer .contact a{ text-transform: capitalize; }
/*================================================================================ */
/* 6. Breadcrumbs													3000Themes.com
/*================================================================================ */
.breadcrumbs{
    font-size: 10px;
    color: #aab8c4 !important;
    text-transform: uppercase;

}
.breadcrumbs a{color: #aab8c4;}
.breadcrumbs li strong{ color: #aab8c4;	}

/*================================================================================ */
/* 7. Shop By filter												3000Themes.com
/*================================================================================ */

.block-layered-nav dt,
.block-layered-nav p.block-subtitle{
    text-transform: uppercase;
    color: #aab8c4;
    margin-bottom: 0;
}
.block-layered-nav li a{ color: #212b33; text-transform: uppercase;}
.block-layered-nav li a{ color: #212b33; text-transform: uppercase;}
.currently ol li a.btn-remove{
    color: #ee7440;
    text-transform: uppercase;
}
.currently{
    border-bottom: 3px solid #dfe3e7;
}

/*================================================================================ */
/* 8. Products Grid 												3000Themes.com
/*================================================================================ */

.products-grid h2.product-name a,
.products-list h2.product-name a{ color: #212b33; }
.products-list .price-box .price{ color: #aab8c4; font-size: 18px; }
.products-grid .price-box .price,
.products-list .price-box .price{ color: #aab8c4; font-size: 18px;}
button:hover.btn-cart{ background: #d86939; }
.products-grid ul.add-to-links li a,
.products-list ul.add-to-links li a{
    color: #aab8c4;
}
.pages ol li a{color: #212b33;}
button.btn-cart,
button:hover.btn-cart{
    padding: 0;
    background: #ee7440;
    font-size: 10px;
    text-transform: uppercase;
    text-shadow: none;
    color: #fff;
    border: 0;
    padding: 9px;
    float: left;
    margin: 0;
}
.catalog-product-view .add-to-cart  .button.btn-cart,
.catalog-product-view .add-to-cart  .button.btn-cart{
    font-size: 15px;
    padding: 18px;
    float: right;
    -moz-border-radius: 0px; /* Firefox */
    -webkit-border-radius: 0px; /* Safari, Chrome */
    border-radius: 0px; /* CSS3 */
    height: 54px;
}
/*================================================================================ */
/* 10. Product detail page											3000Themes.com
/*================================================================================ */
.catalog-product-view ul.add-to-links li a,
.catalog-product-view .add-to-box p.email-friend a{ color: #aab8c4;	}
.catalog-product-view .pricecontainer,

.catalog-product-view .price-box{
    float: left;
    font-size: 30px;
    padding-top: 4px;
    color: #ee7440;
}
.product-options-bottom  .price-box{
    padding-top: 24px;
}
.catalog-product-view ul.add-to-links li a,
.catalog-product-view .add-to-box p.email-friend a{ color: #aab8c4;	}
.catalog-product-view .add-to-cart input{
    float: right;
    padding: 12px;
    margin: 0;
    width: 60px;
    text-align: center;
    -moz-border-radius: 0px; /* Firefox */
    -webkit-border-radius: 0px; /* Safari, Chrome */
    border-radius: 0px; /* CSS3 */
    height: 54px;
}
.addtobuttons li a.link-wishlist{
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/ico_wishlist.png') no-repeat top right;
    padding: 11px 34px 12px 0;
    margin: 0 0 6px 0;
}
.addtobuttons li a.link-compare{
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/ico_compare.png') no-repeat top right;
    padding: 11px 34px 12px 0;
    text-align: right !important;
}
.addtobuttons  p.email-friend a{
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/ico_email.png') no-repeat top right;
    padding: 11px 34px 12px 0;
    color: #aab8c4;
    text-align: right !important;
}
.catalog-product-view .pricecontainer{
    float: left;
    font-size: 30px;
    padding-top: 24px;
    color: #ee7440;
}

/*================================================================================ */
/* 12. Cart														3000Themes.com
/*================================================================================ */

button.btn-empty,
button.btn-update,
button.btn-continue{
    background: #aab8c4;
}
#shopping-cart-totals-table{
    color: #aab8c4;
}
.crosssell .price-box .price{ color: #aab8c4;}
.crosssell h3.product-name a{ color: #212b33; }
.crosssell ul.add-to-links li a{ color: #aab8c4;}




/**
 * MageParts
 * 
 * NOTICE OF LICENSE
 * 
 * This code is copyrighted by MageParts and may not be reproduced
 * and/or redistributed without a written permission by the copyright 
 * owners. If you wish to modify and/or redistribute this file please
 * contact us at info@mageparts.com for confirmation before doing
 * so. Please note that you are free to modify this file for personal
 * use only.
 *
 * If you wish to make modifications to this file we advice you to use
 * the "local" file scope in order to aviod conflicts with future updates. 
 * For information regarding modifications see http://www.magentocommerce.com.
 *  
 * DISCLAIMER
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 * 
 * @category   MageParts
 * @package    MageParts_RestrictCustomer
 * @copyright  Copyright (c) 2009 MageParts (http://www.mageparts.com/)
 * @author 	   MageParts Crew
 */
 
.area-restriction-message { 
	color:#df280a; 
	width:100%; 
	overflow:hidden; 
    min-height:23px !important;
    margin-bottom:1em !important;
    border-style:solid !important;
    border-width:1px !important;
    background-repeat:no-repeat !important;
    background-position:10px 10px !important;
    padding:9px 0px 8px 0px !important;
    font-size:.95em !important;
    font-weight:bold !important;
    border-color:#f16048;
    background-color:#faebe7;
    background-image:url(http://www.wendoverart.com/skin/frontend/wendover/default/mageparts/restrictcustomer/images/i_msg-error.gif);
    text-indent:32px;
}
/*** Package Slot Container **/
.packagecreator-package {
    display: none;
}
#packagecreator-ajax {
    height: 120px;
    width: 454px;
    position: absolute;
    float: right;
    left: 530px;
    top: 160px;
    padding: 35px 0 0 116px;
}
#packagecreator-ajax.ajax-moved {
    left: 90px;
}
.packagecreator-package .slot-list {
    float: left;
    width: 70%;
    overflow: hidden;
}
/*** Package Slots **/
.packagecreator-package .slot-list .package-slot {
    float: left;
}
.packagecreator-package .slot-list .package-slot-empty {}
.packagecreator-package .slot-list .package-slot-empty .slot-info {
    text-align: center;
}

.packagecreator-package .slot-list .package-slot .slot-image {}
.packagecreator-package .slot-list .package-slot .slot-optional {}
.packagecreator-package .slot-list .package-slot .slot-info {}
.packagecreator-package .slot-list .package-slot .slot-info .action-links {}
.packagecreator-package .slot-list .package-slot .slot-info .action-links .slot-select-link {
    display: block;
}
.packagecreator-package .slot-list .package-slot .slot-info .action-links .slot-skip-link {
    display: block;
}
.packagecreator-package .slot-list .package-slot .slot-info .product-name {}
.packagecreator-package .slot-list .package-slot .slot-info .product-options {}
.packagecreator-package .slot-list .package-slot .slot-info .slot-price {}

/*** Package Totals **/
.packagecreator-package .packagecreator-totals {
    float: left;
    width: 25%;
    padding-left: 5%;
}
/*** Package Totals Table **/
.packagecreator-package .packagecreator-totals .packagecreator-totals-table {}

.packagecreator-package .packagecreator-totals .packagecreator-totals-table tbody {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tbody tr {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tbody th {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tbody td {}

.packagecreator-package .packagecreator-totals .packagecreator-totals-table tfoot {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tfoot tr {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tfoot tr.grand-total {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tfoot th {}
.packagecreator-package .packagecreator-totals .packagecreator-totals-table tfoot td {}

/*** Package Totals Add to & Add to Cart **/
.packagecreator-package .packagecreator-totals .add-to-cart {}
.packagecreator-package .packagecreator-totals .add-to-cart button.btn-package {}
.packagecreator-package .packagecreator-totals .add-to-cart button.btn-package-incomplete {}
.packagecreator-package .packagecreator-totals .addto {}

/*** Package Progress Bar **/
.packagecreator-package .packagecreator-progress {
    width: 100%;
    height: 20px;
    position: relative;
    background: #ccc;
    clear: both;
}
.packagecreator-package .packagecreator-progress .progress-bar {
    height: 100%;
    background: #000;
}
.packagecreator-package .packagecreator-progress .progress-bar p {
    color: #fff;
    text-align: right;
    line-height: 20px;
    width: 200px;
    padding-right: 5px;
    position: absolute;
    right: 0px;
    top: 0px;
}

/*** Packages In Progress Top Cart **/
#package_cart {
    width: 32px;
    height: 23px;
    position: relative;
    float: right;
}
.loading-package-changes {
    background: url(http://www.wendoverart.com/skin/frontend/wendover/default/grandriver/packagecreator/images/loading.gif) no-repeat center;
}

#package_cart #packages-inprogress {

}
#package_cart #packages-inprogress .block-title {
    width: 32px;
    height: 23px;
}
#package_cart #packages-inprogress .block-title .packages-inprogress-header {
    display: block;
    width: 100%;
    height: 100%;
    background: url(http://www.wendoverart.com/skin/frontend/wendover/default/grandriver/packagecreator/images/icon-package.gif) no-repeat center top;
}
#package_cart #packages-inprogress .block-title .packages-inprogress-header span.count {
    width: 12px;
    height: 12px;
    line-height: 12px;
    font-size: 7px;
    text-align: center;
    color: #fff;
    position: absolute;
    top: -4px;
    right: -3px;
    background: #DD3125;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #981100;
}

#package_cart #packages-inprogress #inprogress_packages {
    width: 320px;
    position: absolute;
    top: 23px;
    right: -45px;
}
#package_cart #packages-inprogress #inprogress_packages .tooltip-arrow {
    width: 25px;
    padding-top: 12px;
    margin: -32px 0 20px 226px;
    background: url(http://www.wendoverart.com/skin/frontend/wendover/default/grandriver/packagecreator/images/tooltip-arrow.png) no-repeat center;
    position: relative;
}
#package_cart #packages-inprogress #inprogress_packages .inner-wrapper {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    margin-top: 12px;
}
#package_cart #packages-inprogress #inprogress_packages .block-subtitle {
    border-bottom: 1px solid #ccc;
    font-size: 15px;
    padding-bottom: 12px;
    margin-bottom: 2px;
}
#package_cart #packages-inprogress #inprogress_packages .block-subtitle .btn-close {
    background: url("http://www.wendoverart.com/skin/frontend/wendover/default/grandriver/packagecreator/images/bkg_close.gif") no-repeat scroll 0 0 transparent;
    cursor: pointer;
    float: right;
    height: 0;
    overflow: hidden;
    padding-top: 12px;
    position: relative;
    text-align: left;
    width: 13px;
    z-index: 1;
}
#package_cart #packages-inprogress #inprogress_packages .packages-inprogress-list {}
#package_cart #packages-inprogress #inprogress_packages .packages-inprogress-list li {
    border-top: 1px solid #ccc;
    padding: 20px 0;
}
#package_cart #packages-inprogress #inprogress_packages .packages-inprogress-list li .package-name {}
#package_cart #packages-inprogress #inprogress_packages .packages-inprogress-list li .package-progress {}
#package_cart #packages-inprogress #inprogress_packages .packages-inprogress-list li .package-link {}

/*** Utility ***/
button.btn-disabled {
    cursor: default;
}

.package-products .selected-art-piece {
    border: 3px solid #aaa;
}
/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 45px;
	padding: 0 0 10px;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport { }

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/bxslider/bx_loader.gif) center center no-repeat #fff;
	height: 151px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #fff;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 1px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    border: 1px solid #909090;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #cfcfcf;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: -20px;
	background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-prev-c.png) no-repeat center center;
}

.bx-wrapper .bx-next {
	right: -20px;
	background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-next-c.png) no-repeat center center;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 0;
	outline: 0;
	width: 20px;
	height: 151px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/bxslider/controls.png) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/bxslider/controls.png) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}
/****************newsletter******************/
.news_content{
	border-radius:7px;
	margin: 40px 0;
	height: auto;
	padding:0 40px; 
	color:#737372;
	font-family:Arial;
	font-size:14px;
	text-align:left;
}

.news-form{
	border: 1px solid #646361;
	box-shadow:0 0 0px 5px #868686;
	position: fixed;
	top:300px;
	height: 440px;
	width:640px;
	z-index: 102;
	background: #FFFFFF;
    padding:4px;
    border-radius: 10px;
	overflow: auto;
	z-index:99999;
} 

.news_popup #newsletter-validate-data
{
	margin:25px 0 19px;
	display:block;
	padding:0 0 32px 0;
}

#popup-newssubscribe .news_popup #newsletter-validate-data button.button
{
	width:30%;
	height:36px;
	margin-left: 5px;
    padding: 1px;
	float:right;
	 -webkit-border-fit:border !important;
	text-transform: uppercase;
    background: #c41230 !important;
}
.news_popup #newsletter-validate-data button.button:hover
{
	background-position:0 -41px;
}
#popup-newssubscribe .news_popup #newsletter-validate-data button span
{
    height: 34px;
	padding:0 !important;
  	background: none !important;
	font-size:1.25em !important;
	font-weight:600 !important;
	line-height: 30px !important;
	text-shadow: none;
	display: block !important;
	float:none;
    border: 1px solid #fff;
}
.news_popup #newsletter-validate-data input
{
	border:1px solid #d8d8d8  !important;
	padding:0 2%  !important;
	width: 96%  !important;
	color:#737372  !important;
	font-size:12px  !important;
	box-shadow:none !important;
	height:36px !important;

}
.news_popup #newsletter-validate-data .input-box
{
	width: 67%;
	display:inline-block;
	position:relative;
	padding:0 !important;
}
.news_popup  .social_links a
{
	text-transform: uppercase;
	color: #737372  !important;
    display: block !important;
    float:left;
    font-size: 14px  !important;
    font-weight: 600 !important;
    margin: 13px 0 0 !important;
    text-align: center  !important;
    text-decoration: none !important;
    width: auto;
}

.news_popup  .social_links a span
{
	display:block;
	margin:0 auto;
	padding:0 0 7px 0;
}
.news_popup .validation-advice:after{
      content: "";
      position: absolute  !important;
	  background:url("http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/row.png") no-repeat scroll -8px -4px rgba(0, 0, 0, 0)  !important;
	  width: 0 !important;
      height: 0  !important;
      border-width: 10px  !important;
      border-style: solid  !important;
      border-color: transparent transparent transparent transparent;
      top: -20px  !important;
      left: 8px  !important;
}

.news_popup .validation-advice
{	
	position: absolute  !important; 
      line-height: 20px  !important;
      padding: 8px  !important;
      top:44px  !important;
      text-align: center  !important;
      color: #767676  !important;
	  background: url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/tooltip_bg.png') repeat-x scroll 0 bottom #fff  !important;
      line-height:20px  !important;
	  font-weight:400 !important  !important;
      border: 1px solid #D5D5D4  !important;
      border-radius: 5px !important;
      text-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px  !important;
      box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 2px 0px  !important;
}
.news_popup .title
{
	font-size:1.6em  !important;
	line-height:28px !important;
	font-weight:600 !important;
	margin:0 0 20px 0 !important;
	text-align: center  !important;
	color:#4a4a4a;
}
.news_popup .block-content
{
	padding:0 !important;
	margin:0 !important;
}
.news_popup .subtitle
{
	color: #4A4A4A !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 36px;
    padding: 0 0 7px !important;
    text-align: left !important;
}


/******* mobile style***************************************/
#popup-newssubscribe.mobile-style .news_popup #newsletter-validate-data .input-box{width:100%;}
#popup-newssubscribe .news_popup #newsletter-validate-data .input-box input{width:100% !important}
#popup-newssubscribe.mobile-style .news_popup #newsletter_submit{width:100%;margin:20px 0 -10px}
#popup-newssubscribe.mobile-style .news_popup .subtitle{font-size:20px !important}
#popup-newssubscribe.mobile-style .news_popup #newsletter-validate-data{margin:25px 0 12px}
#popup-newssubscribe.mobile-style .news_popup .social_links a{width:100% !important;float:none}

@media only screen and (max-width: 580px)   {	
	#popup-newssubscribe .news_popup #newsletter-validate-data .input-box{width:100%;}
	#popup-newssubscribe .news_popup #newsletter-validate-data .input-box input{width:100% !important}
	#popup-newssubscribe .news_popup #newsletter_submit{width:100%;margin:20px 0 -10px}
	#popup-newssubscribe .news_popup .subtitle{font-size:20px !important}
	#popup-newssubscribe .news_popup #newsletter-validate-data{margin:25px 0 12px}
	#popup-newssubscribe .news_popup .social_links a{}
}

@media only screen and (max-width: 380px){
	#popup-newssubscribe .modal-body .news_popup .social_links a{width:100% !important;float:none}
}
#popup-newssubscribe .clearer{clear:both !important}	
/* modal*/	
.modal-open {  overflow: hidden;}
.modal {  display: none;  overflow: auto;  overflow-y: auto;  position: fixed;  top: 0;  right: 0;  bottom: 0;  left: 0;  z-index: 10000000000 !important;}
.modal.fade .modal-dialog {  -webkit-transform: translate(0, -25%);  -ms-transform: translate(0, -25%);  transform: translate(0, -25%);  -webkit-transition: -webkit-transform 0.3s ease-out;  -moz-transition: -moz-transform 0.3s ease-out;  -o-transition: -o-transform 0.3s ease-out;  transition: transform 0.3s ease-out;}
.modal.in .modal-dialog {left:auto !important;  -webkit-transform: translate(0, 0);  -ms-transform: translate(0, 0);  transform: translate(0, 0);}
.modal-dialog {  position: relative;  margin-left: auto;  margin-right: auto;  width: auto;  padding: 10px;  z-index: 1050;}
.modal-content {  position: relative;  background-color: #ffffff;  border: 1px solid #999999;  border: 1px solid rgba(0, 0, 0, 0.2);  border-radius: 6px;  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); background-clip: padding-box;  outline: none;}
.modal-backdrop {  position: fixed;  top: 0;  right: 0;  bottom: 0;  left: 0;  z-index: 1030;  background-color: #000000;}
.modal-backdrop.fade {  opacity: 0;  filter: alpha(opacity=0);}
.modal-backdrop.in {  opacity: 0.8;  filter: alpha(opacity=80);}
#popup-newssubscribe .modal-header {  padding: 0;border:none;}
#popup-newssubscribe .modal-header .close {background: url(http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/close.png) no-repeat transparent; border: medium none;cursor: pointer;display: block;height: 8px;margin: 0;position: absolute;right: 15px;top: 15px;width: 8px;z-index: 1000;}
.modal-title {  margin: 0;  line-height: 1.428571429;}
.modal-body {  position: relative; }
.modal-footer {  margin-top: 15px;  padding: 19px 20px 20px;  text-align: right; border-top: 1px solid #e5e5e5;}
.modal-footer:before,
.modal-footer:after {  content: " ";  /* 1 */  display: table;  /* 2 */}
.modal-footer:after {  clear: both;}
.modal-footer .btn + .btn {  margin-left: 5px;  margin-bottom: 0;}
.modal-footer .btn-group .btn + .btn {  margin-left: -1px;}
.modal-footer .btn-block + .btn-block {  margin-left: 0;}

/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/fonts/fontawesome-webfont.eot?v=4.1.0');src:url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('http://www.wendoverart.com/skin/frontend/base/default/css/newsletter_popup/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}
<!--
/**
 * @category    GrandRiver
 * @package     GrandRiver_AjaxCart
 * @copyright   Copyright (c) 2012 Grand River, Inc. (http://www.thegrandriver.com)
 * @developer1  Marshel Barbash - marshel.barbash@thegrandriver.com
 * @developer2  Tony Dorchak - tony.dorchak@thegrandriver.com
 */
-->

#ajax-cart {
    color: #666;
}
#ajax-cart .cart-empty {
    clear: both;
    text-align: center;
    padding: 0;
}
#ajax-cart .block-title {
    padding-top: 1px;
}
#ajax-cart .block-title #cartHeader { font-weight: normal; }
#ajax-cart .block-title #cartHeader #openCart { font-weight: bold; }
#ajax-cart .expanded #cartHeader a {
    color: #d33911;
}
#ajax-cart #cartHeader {
    color: #000;
    font-size: 1em;
    float: right;
    position: relative;
}
#ajax-cart #cartHeader strong {
    padding: 1px 0 0 6px;
    line-height: 18px;
    text-transform: uppercase;
    /*	background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/icon_cart.png) no-repeat left top;*/
}
#ajax-cart #cartHeader a {
    color: #1E75B4;
}
#ajax-cart #cartHeader a { color: #1E75B4; }
#ajax-cart #cartHeader a:hover,
#ajax-cart #cartHeader a:focus,
#ajax-cart #cartHeader a:hover,
#ajax-cart #cartHeader a:focus {
    color: #d33911;
    text-decoration: none;
}
#ajax-cart #cartHeader strong.loading {
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader.gif) no-repeat 5px center;
    padding: 2px 0 2px 25px; 
}
#ajax-cart .price span.price {
    font-weight:bold;
}
#ajax-cart .price span.old-price span.price {
    color:#666;
    font-weight:normal;
}
#topCartContent {
    position: absolute;
    top: 42px;
    right: 0;
}
#ajax-cart .inner-wrapper {
    width: 479px;
    padding: 0;
    background:#fff;
    border: 1px solid #cfcfcf;
    overflow: hidden;
    box-shadow: 0px 6px 14px 3px #DDD;
    -webkit-box-shadow: 0px 2px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 2px 5px rgba(0,0,0,.5);
}
#ajax-cart .bottom {
    width: 499px;
    min-height: 10px;
}
#ajax-cart .showing {
    float: left;
    padding: 7px 10px;
}
#ajax-cart .close-btn {
    margin: 7px 10px;
    font-size: 10px;
}
#ajax-cart .close-btn-btm {

}
#ajax-cart #cart-sidebar {
    clear: both;
    width: 100%;
}
#ajax-cart #cart-sidebar thead th {
    font-weight: bold;
    color: #333;
    background: #ebebeb;
    border-bottom: 1px solid #CFCFCF;
    border-top: 1px solid #CFCFCF;
    padding: 7px 10px;
}
#ajax-cart #cart-sidebar .product-details {
    width: 39%;
}
#ajax-cart #cart-sidebar .price {
    width: 20%;
}
#ajax-cart #cart-sidebar .qty {
    width: 20%;
}
#ajax-cart #cart-sidebar tbody .item td {
    padding: 7px 10px;
    border-bottom: 1px solid #CFCFCF;
}
#ajax-cart #cart-sidebar .subtotal {
    width: 20%;
}
#ajax-cart #cart-sidebar .cart_total {
    text-align: right;
    font-weight: bold;
    font-size: 13px;
    padding: 7px 10px;
}
#ajax-cart #cart-sidebar ul.actions {
    padding: 7px 10px;
}
#ajax-cart #cart-sidebar ul.actions li {
    float: left;
    width: auto;
    margin: 0 0 5px 0;
}
#ajax-cart #cart-sidebar .btn_proceed_to_checkout_sm {
    background: none;
    border: none;
    padding: 0 7px 0 0;
}
#ajax-cart .product-image img {
    width: 50px;
    height: 50px;
}
#ajax-cart .product-details h4 {
    display: inline;
    font-weight: normal;
    font-size: 12px;
}
#ajax-cart .mini-products-list .product-image {
    width: 50px;
    margin: 0 10px 0 0;
}

div.container div.topsearch.ajax-cart {
    margin-right: 20px;
}

li.cart-nav li.topcart div.loading {
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader-ac.gif) no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;   
    margin-left: 80px;
    position: absolute;
    top: 5px;
    float: left;
}

ul.add-to-links div.split-button.light a.change {
    width: 145px;
    float: left;
}

ul.add-to-links div.split-button div.loading {
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader-ac.gif) no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px;
    float: left;
    margin-top: 2px; 
}

/* Art Configuration load animation fix */

body.category-art-configurator div.packagecreator-package ul.add-to-links-ajax {
    background: url("http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader-ac.gif") no-repeat scroll 13px 13px #7E7E7E;
    background-size: 16px 16px;
}

/* tablet */

/* fix cart navigation item dimensions in order to properly add animation icon */
body.toplinks ul li.topcart a.cart-anchor {
    height: 49px !important;
}
body.tablet .util-nav li.cart-nav img.cart-img {
    margin: 12px 0 9px 2px;
}

body.tablet .toplinks ul li.topcart a span.cart-qty {
    top: 16px;
}

body.tablet .util-nav li.cart-nav span.cart-txt {
    margin: 13px 8px 0 0;
}
body.tablet .util-nav li.cart-nav span.cart-txt.ajaxcart {
    margin-top: 7px;
}
/* end dimension fix */

body.tablet li.cart-nav li.topcart div.loading {
    background: url("http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader-ac.gif") no-repeat;
    background-size: 24px 24px;
    float: none;
    height: 24px;
    margin: 12px 0 0;
    position: static;
    width: 24px;
}

/* mobile */

/* fix cart navigation item dimensions in order to properly add animation icon */
body.mobile .toplinks ul li.topcart {
    height: 42px !important;
}

body.mobile .toplinks ul li.topcart a.cart-anchor {
    right: 15px;
}
/* end dimension fix */

body.mobile li.cart-nav li.topcart div.loading {
    background: url(http://www.wendoverart.com/skin/frontend/grandriver/grandriver/grandriver/ajaxcart/images/ajax-loader-ac.gif) no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    margin: 0;
    position: static;
    float: none;
}
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
	border-radius: 5px; 
	border: 2px solid #000;
	background: #4c4c4c;
	color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding: 8px 10px;
	overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
	/* border-color: ... !important; */
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
	cursor: help;
	margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
	padding: 0;
	font-size: 0;
	line-height: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9999999;
	pointer-events: none;
	width: auto;
	overflow: visible;
}
.tooltipster-base .tooltipster-content {
	overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
	display: block;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
	display: block;
	width: 0; 
	height: 0;
	position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-top: 8px solid;
	bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-top: 9px solid;
	bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
	border-left: 8px solid transparent !important;
	border-right: 8px solid transparent !important;
	border-bottom: 8px solid;
	top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	border-left: 9px solid transparent !important;
	border-right: 9px solid transparent !important;
	border-bottom: 9px solid;
	top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
	left: 0;
	right: 0;
	margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
	left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
	left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
	right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
	right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-left: 8px solid;
	top: 50%;
	margin-top: -7px;
	right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-left: 9px solid;
	margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 8px solid transparent !important;
	border-bottom: 8px solid transparent !important; 
	border-right: 8px solid;
	top: 50%;
	margin-top: -7px;
	left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
	border-top: 9px solid transparent !important;
	border-bottom: 9px solid transparent !important; 
	border-right: 9px solid;
	margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade-show {
	opacity: 1;
}

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
	top: 0;
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0px !important;
	opacity: 0;
}

.tooltipster-slide {
	left: -40px;
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0px !important;
	opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
	opacity: 0.5;
	-webkit-transform: scale(1.1, 1.1);
	-moz-transform: scale(1.1, 1.1);
	-o-transform: scale(1.1, 1.1);
	-ms-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
}

body.cms-home > div.container { margin-top: 0; }
body > div.container { margin-top: 20px; }
body.cms-inspiration > div.container { margin-top: 0; }
body.account-page .breadcrumbs { display: none; }
.my-account .page-title h1,
body.gallery-index-index h1,
body.mycatalog-index-index h1.page-title { margin-top: 23px; padding-top: 0; }
.cc-leftcol .block-account { margin-bottom: 55px; border-right: none; }
.cc-leftcol .block-account:last-of-type { width: 157px; }
.cc-leftcol { padding-top: 12px; border-right: 1px solid #bdbdbd; }
.account-page .twelve.columns.col2l.content,
.twelve.columns.col2l.content { margin: 0 !important; padding: 0 0 30px 0; }
.a-left { text-align: left; }
.a-right { text-align: right; }
.a-center { text-align: center; }

.customer-account-index .dashboard { margin-bottom: 0; }
.customer-account-index .welcome-msg h2.sub-title { margin: 25px 0 22px; font-weight: normal; }
.customer-account-index .table-caption .separator,
.recent-projects #shared-projects-table th.customer-name-cell span.mobile { display: none; }
.customer-account-index .table-caption a { margin-left: 5px; padding-left: 10px; font-weight: normal; font-size: 1.3rem; text-transform: none; border-left: 1px solid #a8a8a8; }
.customer-account-index #my-orders-table th:nth-child(1) { width: 15.14%; }
.customer-account-index #my-orders-table th:nth-child(2) { width: 13.61%; }
.customer-account-index #my-orders-table th:nth-child(3) { width: 21.25%; }
.customer-account-index #my-orders-table th:nth-child(4) { width: 16.11%; }
.customer-account-index #my-orders-table th:nth-child(5) { width: 11.66%; }
.customer-account-index #my-orders-table th:nth-child(6) { width: 22.22%; }
.customer-account-index #shared-projects-table th:nth-child(1) { width: 28.75%; }
.customer-account-index #shared-projects-table th:nth-child(2) { width: 21.25%; }
.customer-account-index #shared-projects-table th:nth-child(3) { width: 16.11%; }
.customer-account-index #shared-projects-table th:nth-child(4) { width: 11.66%; }
.customer-account-index #shared-projects-table th:nth-child(5) { width: 22.22%; }
#my-orders-table th,
#my-orders-table td { padding-left: 0 !important; text-align: left !important; }
#my-orders-table td,
#shared-projects-table td,
.manage-customers #my-customers-table td { padding-top: 16px !important; padding-bottom: 16px !important; }
#shared-projects-table { width: 100%; margin-bottom: 30px; }
#shared-projects-table th,
#shared-projects-table td { padding: 10px 10px 10px 0; text-align: left; border-bottom: 1px solid #c7c7c7; }
.customer-account-index .data-table td.last .separator { margin: 0 10px; }
.manage-customers { float: left; width: 445px; }
.manage-customers h2 { float: left; }
.manage-customers .invite-customer { float: right; margin-top: 3px; margin-right: 20px; border-left: none; }
.manage-customers .sub-title { clear: both; float: left; margin-top: 10px; text-transform: uppercase; }
.manage-customers #my-customers-table { width: 100%; margin-top: 10px; }
.manage-customers #my-customers-table th,
.manage-customers #my-customers-table td { padding: 10px 10px 10px 0; text-align: left; border-bottom: 1px solid #c7c7c7; }
.manage-customers #my-customers-table th:nth-child(1) { width: 32.6%; }
.manage-customers #my-customers-table th:nth-child(2) { width: 21.35%; }
.manage-customers #my-customers-table th:nth-child(3) { width: 22.5%; }
.manage-customers #my-customers-table th:nth-child(4) { width: 22.5%; }
.customer-account-index #price-settings { float: right; width: 225px; }
.customer-account-index #price-settings form { display: inline-block; margin-top: 10px; }
.customer-account-index #price-settings form .field { display: inline-block; margin-top: 20px; }
.customer-account-index #price-settings .price-switch { float: left; }
.customer-account-index #price-settings input.price-switch { margin-right: 15px;}
.customer-account-index #price-settings #price_switch_memo { display:none; color:#c41230; }
.customer-account-index #price-settings #price_switch_loading { display:none; }
.customer-account-index #price-settings #price_multiplier_memo { display:none; color:#c41230; }
.customer-account-index #price-settings #price_multiplier_loading { display:none; }
.customer-account-index #price-settings #price_multiplier { width: 90px; }
.customer-account-index #price-settings #new-multiplier-container { display:none; }
.customer-account-index #price-settings #new-multi-link { margin-left: 5px; }
.customer-account-index #multiplier-field,
.grandriver-customerscustomer-index-manage #multiplier-field { display: inline-block; width: 100%; }
.customer-account-index #custom-multiplier-container,
.grandriver-customerscustomer-index-manage #custom-multiplier-container { display:none; clear: left; float: left; margin-top: 8px; }
.customer-account-index #multiplier-title,
.grandriver-customerscustomer-index-manage #multiplier-title { display: block; margin-top: 3px; margin-bottom: 5px; color: #000; }
.customer-account-index #new-multiplier,
.customer-account-index #custom-multiplier,
.grandriver-customerscustomer-index-manage #custom-multiplier { float: left; width: 60px; height: 28px; }
.customer-account-index #multiplier-x,
.grandriver-customerscustomer-index-manage #multiplier-x { float: left; margin-right: 5px; margin-left: 5px; line-height: 27px; }
.customer-account-index #save-new-multiplier,
.customer-account-index #save-custom-multiplier,
.grandriver-customerscustomer-index-manage #save-custom-multiplier { float: left; padding: 1px; font: 400 1.4rem 'Source Sans Pro'; background: #c41230; border-radius: 0; }
.customer-account-index #save-new-multiplier span,
.customer-account-index #save-custom-multiplier span,
.grandriver-customerscustomer-index-manage #save-custom-multiplier span { display: block; padding: 3px 24px; border: 1px solid #fff; }
.customer-account-index #new-multi-cancel,
.customer-account-index #custom-multi-cancel,
.grandriver-customerscustomer-index-manage #custom-multi-cancel { float: left; margin-left: 20px; line-height: 27px; }

body.wishlist-index-index.cc .container .twelve.columns,
body.catalog-category-view.cc .container .four.columns.leftcol { border: none; }

.wishlist-index-index .wishlist-management .sub-title { width: 100%; }
.wishlist-index-index .wishlist-management .new-catalog-link,
.wishlist-index-index .wishlist-management .new-quick-catalog-link { margin-bottom: 25px; }

.customer-address-index .page-title button.button { margin-top: 23px !important;}

body.catalog-category-view.cc .container .col2l.content { padding: 0 25px; }

.grandriver-customerscustomer-index-manage #learn-more { margin-top: 20px; }
.grandriver-customerscustomer-index-manage label.total-customers { float: left; margin-top: 5px; font-weight: 600; font-family: 'Source Sans Pro'; }
.grandriver-customerscustomer-index-manage .pager { clear: left; float: left; width: 100%; margin: 15px 0; }
.grandriver-customerscustomer-index-manage .limiter { float: left; }
.grandriver-customerscustomer-index-manage .pager .pages { float: right; display: block !important; margin: 0; }
.grandriver-customerscustomer-index-manage .pages ol { float: right; }
.grandriver-customerscustomer-index-manage .pages li { margin-left: 5px; }
.grandriver-customerscustomer-index-manage .pages li.current { text-decoration: none; }
.grandriver-customerscustomer-index-manage .pages li:last-child { display: none; }
.grandriver-customerscustomer-index-manage .pages strong { color: #000; }
.grandriver-customerscustomer-index-manage .pages a { color: #c41230; }
.grandriver-customerscustomer-index-manage div.button { float: right; padding: 0; background: #7e7e7e; border-radius: 0; }
.grandriver-customerscustomer-index-manage .invite-customer { margin: 2px; padding: 10px 20px; font: 14px 'Source Sans Pro'; background: #7e7e7e; border: 1px solid #fff; border-radius: 0; }
.grandriver-customerscustomer-index-manage #cc-customer-form div .button { float: left; }
.grandriver-customerscustomer-index-manage #customersTable.mobile { display: none; }
.grandriver-customerscustomer-index-manage #customersTable th { border-top: 1px solid #c7c7c7; border-bottom: 1px solid #c7c7c7; }
.grandriver-customerscustomer-index-manage #customersTable td { padding: 20px 0; border-bottom: 1px solid #c7c7c7; }
.grandriver-customerscustomer-index-manage .project-list,
.grandriver-customerscustomer-index-manage .submitted-date-list { margin-top: 10px; margin-bottom: 0; }
.grandriver-customerscustomer-index-manage .submitted-pojects-link { display: block; margin-top: 10px; color: #c41230; }
.grandriver-customerscustomer-index-manage .submitted-pojects-link:hover { cursor: pointer; }
.grandriver-customerscustomer-index-manage .zero-projects-submitted { display: block; margin-top: 10px; }
.grandriver-customerscustomer-index-manage .submitted-project { display: block; margin-left: 20px; }
.grandriver-customerscustomer-index-manage .submitted-date { display: block; margin-top: 10px; }
.grandriver-customerscustomer-index-manage .active-label { display: inline-block; margin-right: 7px; }
.grandriver-customerscustomer-index-manage .active-checkbox { margin-top: 0; vertical-align: middle; }
.grandriver-customerscustomer-index-manage .edit { margin-left: 7px; }
.grandriver-customerscustomer-index-manage .delete { display: block; margin-top: 8px; margin-left: 20px !important; }
body.grandriver-customerscustomer-index-manage .tooltipster-default { background: #f3f3f3 !important; }

.grandriver-customerscustomer-index-manage .bold,
.customer-account-index .bold { font-weight: bold; }
.grandriver-customerscustomer-index-manage .fancybox-skin,
.gallery-index-index .fancybox-skin,
.customer-account-index .fancybox-skin { background: #fff !important; }
.grandriver-customerscustomer-index-manage .fancybox-wrap,
.customer-account-index .fancybox-wrap { width: 320px !important; }
.grandriver-customerscustomer-index-manage .fancybox-inner,
.customer-account-index .fancybox-inner { width: auto !important; height: auto !important; overflow-x: hidden !important; }
.grandriver-customerscustomer-index-manage .fancybox-inner .close-btn,
.gallery-index-index .fancybox-inner .close-btn,
.customer-account-index .fancybox-inner .close-btn { float: right; position: relative; width: 20px; height: 21px; text-indent: -999em; }
.grandriver-customerscustomer-index-manage .fancybox-inner .close-btn span,
.gallery-index-index .fancybox-inner .close-btn span,
.customer-account-index .fancybox-inner .close-btn span { display: block; position: absolute; left: 0; top: 0; width: 20px; height: 21px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-close-overlay.png") no-repeat; }
.grandriver-customerscustomer-index-manage .fancybox-inner .input-text,
.customer-account-index .fancybox-inner .input-text { width: 100% !important; }
.grandriver-customerscustomer-index-manage .fancybox-inner .select,
.customer-account-index .fancybox-inner .select { width: 190px !important; }
.grandriver-customerscustomer-index-manage .fancybox-inner .current-price-multiplier,
.customer-account-index .fancybox-inner .current-price-multiplier { float: right; width: 95px; margin-top: -20px; padding: 5px; font-size: 80%; line-height: 120%; text-align: center; border: 1px solid #ccc; background: #e9e9e9; }
.grandriver-customerscustomer-index-manage .fancybox-inner #enter-new-multiplier,
.customer-account-index .fancybox-inner #enter-new-multiplier { display: inline-block; margin-top: 5px; }
.grandriver-customerscustomer-index-manage .fancybox-inner div.button,
.customer-account-index .fancybox-inner div.button { margin-top: 20px; padding: 0; background: #c41230; border-radius: 0; }
.grandriver-customerscustomer-index-manage .fancybox-inner div.button #update-button,
.customer-account-index .fancybox-inner div.button #update-button { margin: 2px; padding: 14px 55px; font-size: 16px; line-height: 16px; background: #c41230; border: 1px solid #fff; border-radius: 0; }
.grandriver-customerscustomer-index-manage .fancybox-inner .cancel-btn,
.customer-account-index .fancybox-inner .cancel-btn { display: inline-block; margin-top: 20px; margin-left: 45px; line-height: 52px; }
.grandriver-customerscustomer-index-manage .fancybox-inner a:hover,
.customer-account-index .fancybox-inner a:hover { color: #000; }

table.submitted-projects tr { border-top: 1px solid #bcbcbc; }
table.submitted-projects th { padding: 10px; font-weight: bold; text-align: left; }
table.submitted-projects td { padding: 10px; }
table.submitted-projects th:first-of-type,
table.submitted-projects td:first-of-type { padding-left: 0; }

.grandriver-customerscustomer-project-submitted .pager { display: inline-block; width: 100%; margin-bottom: 10px; }
.grandriver-customerscustomer-project-submitted .pager .limiter { float: left; }
.grandriver-customerscustomer-project-submitted .pager .limiter label { float: left; line-height: 19px; }
.grandriver-customerscustomer-project-submitted .pager .limiter select { float: left; width: 60px; margin: 0 10px; text-align: center; }
.grandriver-customerscustomer-project-submitted .pager .pages { float: right; margin: 0; }
.grandriver-customerscustomer-project-submitted .pager .pages ol { float: right; }

.gallery-index-index .projects_table a.mobile { display: none; }
.gallery-index-index .fancybox-wrap #message-container { float: left; width: 100%; }
.gallery-index-index .fancybox-wrap #message-container span { display: block; margin-bottom: 5px; padding: 5px; color: #000; background: #eee; }
.gallery-index-index .fancybox-wrap #message-container .error { color: #c41230; }
.gallery-index-index .fancybox-wrap .page-title { clear: both; }
.gallery-index-index .fancybox-wrap h1 { margin-bottom: 0; }
.gallery-index-index .fancybox-wrap #cc-wishlist-share-form { color: #000; }
.gallery-index-index .fancybox-wrap .steps { clear: both; display: inline-block; margin-top: 15px; }
.gallery-index-index .fancybox-wrap #step1 { margin-bottom: 8px; display:none; }
.gallery-index-index .fancybox-wrap #step1 .field { margin-top: 20px; }
.gallery-index-index #step1 .input-box { float: left; margin: 0 15px; }
.gallery-index-index #step1 .input-box input,
.gallery-index-index #step1 .input-box label { float: left; }
.gallery-index-index #step2 .inner-wrap > div.button { margin: 20px 0; }
.gallery-index-index #step2 .inner-wrap h3 { clear: both; float: left; display: inline-block; margin: 15px 0; }
.gallery-index-index #step2 .inner-wrap h3 span { text-decoration: underline; }
.gallery-index-index div.button { padding: 0; background: #7e7e7e; border-radius: 0; }
.gallery-index-index div.button button { margin: 2px; padding: 10px 20px; font: 14px 'Source Sans Pro'; background: #7e7e7e; border: 1px solid #fff; border-radius: 0; }
.gallery-index-index .customers-table th { padding-bottom: 8px; font-weight: bold; color: #7e7e7e; }
.gallery-index-index .customers-table #name-header { padding-left: 15px; }
.gallery-index-index .customers-table #email-header { padding-left: 10px; }
.gallery-index-index .customers-table #share-header { padding-right: 15px; }
.gallery-index-index .customers-table td { padding: 8px 0; border-top: 1px solid #bcbcbc; }
.gallery-index-index .customers-table .name-cell { width: 33%; padding-left: 15px; }
.gallery-index-index .customers-table .email-cell { width: 67%; padding: 0 10px; }
.gallery-index-index .share-btn-wrap { float: right; margin-top: 15px; }
.gallery-index-index .share-btn-wrap button:disabled { cursor: default; }
.gallery-index-index .customers-table .share-cell { width: 6%; padding-right: 15px; text-align: center; }

.grandriver-customerscustomer-project-view #wishlist-table.mobile { display: none; }
.grandriver-customerscustomer-project-view .wishlist-management { margin-top: -15px; }
.grandriver-customerscustomer-project-view .wishlist-management .gallery-link { float: left; margin-bottom: 3px; }
.grandriver-customerscustomer-project-view .print-link { float: right; display: inline-block !important; padding-left: 20px; color: #c4132f; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-print.png") no-repeat left center; }
.grandriver-customerscustomer-project-view .project-name { clear: both; }
.grandriver-customerscustomer-project-view .project-name h2 { font: normal 3.2rem Arapey; }
.grandriver-customerscustomer-project-view .customer-name { float: left; font-size: 1.8rem; color: #000; }
.grandriver-customerscustomer-project-view button#cart { float: right; width: 209px; background: #c41230 url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png") no-repeat scroll 39px 9px; }
.grandriver-customerscustomer-project-view button#cart span span { padding: 10px 40px 10px 63px; }
.grandriver-customerscustomer-project-view .mobile-table-header-select-all { display:block; float:left; clear:both; height:0px; top:20px; left:10px; }
.grandriver-customerscustomer-project-view .mobile-table-header-select-all .checkbox { background-color:#e6e6e6; width:21px; height:21px; padding:4px; float:left; }
.grandriver-customerscustomer-project-view .mobile-table-header-select-all .checkbox input { height:13px; width:13px; margin:0; }
.grandriver-customerscustomer-project-view .mobile-table-header-select-all label { float:left; margin-left:10px; }
.grandriver-customerscustomer-project-view #wishlist-table { display: inline-block; margin-top: 10px; }
.grandriver-customerscustomer-project-view #wishlist-table th { padding-right: 10px; vertical-align: middle; font-weight: normal; text-transform: none; }
.grandriver-customerscustomer-project-view #wishlist-table td { padding-right: 10px; line-height: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table th .checkbox,
.grandriver-customerscustomer-project-view #wishlist-table .checkbox { float: left; width: 21px; height: 21px; padding: 4px; }
/*.grandriver-customerscustomer-project-view #wishlist-table .checkbox input { display: block; }*/
.grandriver-customerscustomer-project-view #wishlist-table th label,
.grandriver-customerscustomer-project-view #wishlist-table tfoot td label,
.grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first label { float: left; margin-left: 10px; line-height: 2.1rem; }
.grandriver-customerscustomer-project-view #wishlist-table th:first-child,
.grandriver-customerscustomer-project-view #wishlist-table td:first-child { width: 25%; line-height: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table th:nth-child(2),
.grandriver-customerscustomer-project-view #wishlist-table td:nth-child(2) { width: 32%; }
.grandriver-customerscustomer-project-view #wishlist-table th:nth-child(3) { width: 15.4%; }
.grandriver-customerscustomer-project-view #wishlist-table td:nth-child(3) { width: 15.4%; padding-left: 3px; font-size: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table th:nth-child(4) { width: 5.7%; }
.grandriver-customerscustomer-project-view #wishlist-table td:nth-child(4) { width: 5.7%; padding-left: 3px; font-size: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table th:nth-child(5) { width: 10.7%; }
.grandriver-customerscustomer-project-view #wishlist-table td:nth-child(5) { width: 10.7%; padding-left: 3px; font-size: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table th:last-child { width: 10.2%; }
.grandriver-customerscustomer-project-view #wishlist-table td:last-child { width: 10.2%; padding-right: 0; padding-left: 3px; font-size: 1.7rem; }
.grandriver-customerscustomer-project-view #wishlist-table .product-ids strong { width: 110px; font-weight: 600; }
.grandriver-customerscustomer-project-view #wishlist-table td .product-image { float: left; margin-left: 10px; }
.grandriver-customerscustomer-project-view #wishlist-table .customer-price-col { color:#7e7e7e; }
.grandriver-customerscustomer-project-view #wishlist-table .price-multiplier-caption { font-size:13px; display:block; margin-top:10px; }
.grandriver-customerscustomer-project-view #wishlist-table tfoot td { padding-top: 15px; border-bottom: none; }
.grandriver-customerscustomer-project-view #wishlist-table tfoot td:first-child { vertical-align: middle; }
.grandriver-customerscustomer-project-view #wishlist-table tfoot td.last { padding-right: 0; }
.grandriver-customerscustomer-project-view #wishlist-table tfoot td.last .buttons-set { float: right; }

.grandriver-customerscustomer-index-index .page-title h1 { margin-bottom: 18px; }
.grandriver-customerscustomer-index-index p.required { margin: 14px 0 7px; }
.grandriver-customerscustomer-index-index .section-title { display: inline-block; width: 100%; margin-bottom: 5px; border-bottom: 1px solid #bdbdbd; }
.grandriver-customerscustomer-index-index .section-title h2.legend { float: left; padding-right: 10px; border-right: 1px solid #bdbdbd; }
.grandriver-customerscustomer-index-index .section-title .preview { float: left; margin-left: 10px; }
.grandriver-customerscustomer-index-index #designer-info-form .form-list:first-child { margin-bottom: 40px; }
.grandriver-customerscustomer-index-index #designer-info-form .form-list label { margin-bottom: 4px; }
.grandriver-customerscustomer-index-index #designer-info-form input { width: 55%; }
.grandriver-customerscustomer-index-index .city-field,
.grandriver-customerscustomer-index-index .zip-code-field { margin-bottom: 12px; }
.grandriver-customerscustomer-index-index .zip-code-field { width: 150px; }
.grandriver-customerscustomer-index-index #welcome_message { width: 55%; min-height: 100px; }

@media (min-width: 768px) {

    .grandriver-customerscustomer-index-manage .fancybox-wrap,
    .gallery-index-index .fancybox-wrap,
    .customer-account-index .fancybox-wrap { width: 480px !important; }
    #cc-customer-form label.required,
    #cc-customer-form .input-box { width: 320px; }
    #cc-customer-form #multiplier-wrap { float: left; }
    #cc-customer-form #multiplier-wrap label.required { width: auto; }
    .customer-account-index #cc-customer-form select { margin: 0; }
    #cc-customer-form #enter-new-multiplier { float: left; margin-top: 30px; margin-left: 20px; }
    #cc-customer-form .current-price-multiplier { clear: right; margin-top: 15px; }
    .grandriver-customerscustomer-index-manage .fancybox-inner div.button,
    .grandriver-customerscustomer-index-manage .fancybox-inner .cancel-btn,
    .customer-account-index .fancybox-inner div.button,
    .customer-account-index .fancybox-inner .cancel-btn { margin-top: 0; }

    .gallery-index-index .fancybox-inner { width: 450px !important; height: auto !important; }

}

@media (max-width: 1000px) {

    .container .columns.cc-leftcol { width: auto !important; padding-top: 0; background: none; border: none; }
    .container .columns.cc-leftcol .block-account { float: left; margin-right: 40px; margin-bottom: 0; }
    .container .columns.cc-leftcol .block-account:last-child { width: 168px; margin-right: 0; }
    .container .columns.cc-leftcol .block-account .block-title strong { margin-top: 0; }
    .container .columns.cc-leftcol .block-account:last-of-type .block-title strong span { width: 156px; }

    .account-page .twelve.columns.col2l.content,
    .twelve.columns.col2l.content { margin-top: 30px !important; }

}

@media (max-width: 768px) {

    .grandriver-customerscustomer-project-view .wishlist-management { display: inline-block; width: 100%; margin-top: 25px; }
    .grandriver-customerscustomer-project-view .project-name h2 { margin-bottom: 0; }

    .grandriver-customerscustomer-project-view #wishlist-table { /*display: none;*/ }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile { display: inline-block; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile td { padding: 5px; border: none; font: 13px 'Source Sans Pro'; color: #333; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile tr.headers td { font-size: 13px; color: #000; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .product-ids { font: 13px 'Source Sans Pro'; color: #333; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first tr.headers,
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.mid tr.headers { border-bottom: 1px solid #c4c4c4; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first tr.headers td:last-child { width: 35%; font-size: 13px; line-height: 2rem; color: #444; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.last.subtotal { background: #e9e9e9; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.last.subtotal td { font-size: 16px; text-align: right; background: #e6e6e6; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.last.subtotal td:last-child { width: 3%; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.last { display: block; margin-top: 10px; border: none; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first.last { border-top: 1px solid #c4c4c4; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first input.select-all,
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .mass-select { vertical-align: top; margin: 0 !important; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile td.last #cart { float: right; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile td.last,
    .grandriver-customerscustomer-project-view #wishlist-table.mobile td:nth-child(1){ display: table-cell; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile span.checkbox,
    .grandriver-customerscustomer-project-view #wishlist-table.mobile p.product-ids { display: block; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile > tbody > tr.first tr:last-child td { padding-top: 20px; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .product-name { margin-bottom: 10px; }

}

@media (max-width: 767px) {

    div.block-account.nav-btm,
    body.grandriver-customerscustomer-index-manage div.block-account.nav-btm { height: auto !important; }
    .block-account.nav-btm:last-child { border-top: none; }
    .grandriver-customerscustomer-project-submitted .block-account.nav-btm:last-of-type { border: none; }

    .gallery-index-index .projects_table td a.view-wishlist { margin: 0 20px 0 60px; color: #c41230 !important; }
    .gallery-index-index .projects_table td a.share-wishlist { color: #c41230 !important; }
    .gallery-index-index .fancybox-wrap h1 { margin-left: 0; }
    .gallery-index-index #step1 .input-box { margin: 5px 15px 0 0; }

    .customer-account-index .data-table { margin-bottom: 50px !important; }
    .customer-account-index h2 { font-size: 1.6rem; }
    .customer-account-index .data-table th { font-weight: 600; }
    .customer-account-index #my-orders-table th,
    .customer-account-index #my-orders-table td { width: 20%; }
    .customer-account-index #my-orders-table th:nth-child(1),
    .customer-account-index #my-orders-table td:nth-child(1) { padding-right: 10px !important; }
    .customer-account-index #my-orders-table th:nth-child(6),
    .customer-account-index #my-orders-table td:nth-child(6) { width: 17.22%; padding-right: 0; text-align: center !important; }
    .customer-account-index #my-orders-table td:nth-child(6) a { margin-bottom: 0 !important; }
    .customer-account-index #shared-projects-table td:nth-child(5) { font-size: 1.1rem !important; }

    .customer-account-index #shared-projects-table th:nth-child(1) { width: 29.0625%; }
    .customer-account-index #shared-projects-table th:nth-child(2),
    .customer-account-index #shared-projects-table td:nth-child(2) { display: none; }
    .customer-account-index #shared-projects-table th:nth-child(3) { width: 29.423%; }
    .customer-account-index #shared-projects-table th:nth-child(4) { width: 21.9725%; }
    .customer-account-index #shared-projects-table th:nth-child(5),
    .customer-account-index #shared-projects-table td:nth-child(5) { width: 19.533%; padding-right: 0; }

    .customer-account-index #price-settings { float: left; width: 100%; margin-bottom: 20px; }
    .manage-customers { width: 100%; margin: 10px 0 5px; }
    .manage-customers #my-customers-table th:nth-child(1) { width: 29.0625% !important; }
    .manage-customers #my-customers-table th:nth-child(2) { width: 29.423% !important; }
    .manage-customers #my-customers-table th:nth-child(3) { width: 25.9725% !important; }
    .manage-customers #my-customers-table th:nth-child(4) { width: 15.533% !important; }
    .manage-customers #my-customers-table th:nth-child(4),
    .manage-customers #my-customers-table td:nth-child(4) { padding-right: 0; }

    table.submitted-projects .hide-mobile { display: none; }

    .grandriver-customerscustomer-index-index .buttons-set { display: inline-block; }

    .customer-address-index .page-title button.button { margin-top: 0 !important; }

    body.grandriver-customerscustomer-index-manage .four.columns.leftcol .block-account { display: block !important; }
    .grandriver-customerscustomer-index-manage #customersTable { display: none; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile { display: table; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile > tbody > tr { border-bottom: 1px solid #e7e7e7; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile td { padding-top: 15px; border: none; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile table td { padding: 0; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile th.customer-name,
    .grandriver-customerscustomer-index-manage #customersTable.mobile td.customer-name { width: 45%; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile th.status,
    .grandriver-customerscustomer-index-manage #customersTable.mobile td.status { width: 31%; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile th.price-setting,
    .grandriver-customerscustomer-index-manage #customersTable.mobile td.price-setting { width: 23%; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions { padding: 15px 0 5px; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions input { margin-left: 0; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions .active-label { margin-right: 20px; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions .edit { margin: 0 20px; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions .delete,
    .grandriver-customerscustomer-index-manage #customersTable.mobile .submitted-pojects-link { display: inline-block; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .submitted-projects-wrap { float: left; margin-right: 60px; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .submitted-on-wrap { float: left; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .submitted-project { margin-left: 10px; }
    .grandriver-customerscustomer-index-manage #custom-multiplier { width: 45px; }
    .grandriver-customerscustomer-index-manage #save-custom-multiplier span { padding-right: 15px; padding-left: 15px; }

    .grandriver-customerscustomer-project-view .print-link { display: none !important; }

    .grandriver-customerscustomer-project-view #wishlist-table.mobile thead { display:table-header-group; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile tfoot { display:table-footer-group; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile thead .checkbox,
    .grandriver-customerscustomer-project-view #wishlist-table.mobile tfoot .checkbox { margin-left:5px; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile span.checkbox { padding-top: 3px; background: none; }


    .grandriver-customerscustomer-project-view #wishlist-table thead { display:table-header-group; }
    .grandriver-customerscustomer-project-view #wishlist-table td.last,
    .grandriver-customerscustomer-project-view #wishlist-table td:nth-child(1) { display:table-cell; }
    /*.grandriver-customerscustomer-project-view #wishlist-table span.checkbox { display:inline; }*/

}

@media (max-width: 639px) {

    .grandriver-customerscustomer-index-index #designer-info-form input,
    .grandriver-customerscustomer-index-index #welcome_message { width: 100%; }

}

@media (max-width: 479px) {

    .recent-projects #shared-projects-table th.customer-name-cell span.desktop { display: none; }
    .recent-projects #shared-projects-table th.customer-name-cell span.mobile,
    .recent-projects #shared-projects-table .customer-name-cell .rwd-line,
    .manage-customers #my-customers-table .customer-name-cell .rwd-line { display: block; }
    .manage-customers .invite-customer { clear: both; float: left; margin: 10px 0; padding: 0; }

    .grandriver-customerscustomer-project-view button#cart { clear: both; float: left; width: 100%; margin-top: 15px; background-position: 34% 9px; }
    .grandriver-customerscustomer-project-view #wishlist-table .product-image img { width: 100px; height: 100px; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .product-name { margin-bottom: 5px; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .product-name a { font-size: 14px; }
    .grandriver-customerscustomer-project-view #wishlist-table.mobile .product-ids { margin: 2px 0 0; font-size: 12px; }
    .grandriver-customerscustomer-project-view #wishlist-table .product-ids strong { width: 62px; font-size: 12px; }

}

@media (max-width: 420px) {

    .grandriver-customerscustomer-index-index .section-title h2.legend { border-right: none; }
    .grandriver-customerscustomer-index-index .section-title .preview { clear: left; margin-bottom: 10px; margin-left: 0; }

    .grandriver-customerscustomer-index-manage div.button { clear: left; float: left; width: 100%; margin-top: 13px; margin-bottom: 10px; }
    .grandriver-customerscustomer-index-manage .invite-customer { float: left !important; width: 98.75%; }
    .grandriver-customerscustomer-index-manage .pager .pages { clear: left; float: left; margin-top: 20px; }
    .grandriver-customerscustomer-index-manage .pages ol { float: left; }
    .grandriver-customerscustomer-index-manage .pages ol li:first-child { margin-left: 0; }

}

@media (max-width: 379px) {

    .container .columns.cc-leftcol .block-account { position: absolute; left: 0; margin-bottom: 10px; }
    .container .columns.cc-leftcol .block-account:first-child .block-content { width: 170px; }
    .container .columns.cc-leftcol .block-account:last-child { left: 138px; }

    .gallery-index-index .projects_table a.mobile { display: inline-block; }
    .gallery-index-index .fancybox-inner { height: auto !important; }
    .gallery-index-index #step1 .field .input-box:last-child { margin-right: 0; }
    .gallery-index-index #step1 .input-box .radio { margin-top: 2px; }
    .gallery-index-index #step2 .inner-wrap > div.button,
    .gallery-index-index #step2 .inner-wrap h3 { margin-left: 0; }
    .gallery-index-index div.button button { font-size: 14px; }
    .gallery-index-index .customers-table { border-top: 1px solid #bcbcbc; border-bottom: 1px solid #bcbcbc; }
    .gallery-index-index .customers-table th { display: none; }
    .gallery-index-index .customers-table tr:nth-of-type(even) { background: #e9e9e9; }
    .gallery-index-index .customers-table tr:nth-of-type(odd) { border-top: 1px solid #bcbcbc; border-bottom: 1px solid #bcbcbc; }
    .gallery-index-index .customers-table td { display: block; width: 100% !important; padding-left: 5px !important; text-align: left !important; border-top: none; }
    .gallery-index-index .customers-table #name-header,
    .gallery-index-index .customers-table .name-cell { padding-left: 0; }
    .gallery-index-index .customers-table .email-cell { padding: 8px 0; }
    .gallery-index-index .customers-table .share-cell .checkbox { vertical-align: middle; }
    .gallery-index-index .customers-table td:before { display: inline-block; width: 3.5em; content: attr(data-th)": "; font-weight: bold; color: #7e7e7e; }

}

@media (max-width: 320px) {

    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions .active-label { margin-right: 44px; }
    .grandriver-customerscustomer-index-manage #customersTable.mobile .actions .edit { margin-right: 43px; margin-left: 43px; }
    .grandriver-customerscustomer-index-manage .delete { margin-left: 44px !important; }
}

@media print {

    header {
        height: 68pt;
    }
    .thelogo {
        margin: 0 auto;
    }

    #rep-chat,
    #account-gallery,
    header .navigation,
    header .topsearch,
    .print-link,
    .gallery-link,
    .wishlist-management .buttons-set,
    .leftcol,
    .cc-leftcol,
    .nav-btm,
    footer {
        display: none !important;
    }

    body.cc .breadcrumbs.hide-print { display: none !important; }

}
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
    z-index: 999999999;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/fancybox_sprite@2x.png');
		background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
	}

	#fancybox-loading div {
		background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/css/customerscustomer/fancybox_loading@2x.gif');
		background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
	}
}
/*=========================================================================

    Font Family - Source Sans Pro @google/fonts

    - Light - Font Weight 200
    - Book - Font Weight 300
    - Normal - Font Weight 400
    - Semi Bold - Font Weight 600
    - Bold - Font Weight 700
    - Ultra Bold - Font Weight 900

    *Mozilla on Mac OS X renders the fonts at thicker weights

    OS and Browser classes added to body for different font style rendering.

    - windows-os
    - mac-os

    - chrome
    - Mozilla

    Still need to test in IE and Windows Chrome / Firefox

===========================================================================/


/*** Global ***/

html {
    font-size: 62.5% !important;
    color: #000;
}

body{
    font-family: "Source Sans Pro";
    font-size: 1.3rem;
    line-height: 1.4;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: "Source Sans Pro";
}

h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    line-height: 1.1;
}
h4 {
    font-size: 1.3rem;
    line-height: 1.1;
}

a,
a:visited {
    color: #c41230;
}

label {
    color: #000;
    font-weight: normal;
}

.page-title h1,
.title-buttons h1 {
    font-family: Arapey;
    font-size: 3.2rem;
    font-weight: normal;
}

button.button,
button.button:hover {
    background: #c41230;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
button.button span span {
    padding: 10px 24px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}

.zoomContainer { z-index: 10; }

/*** Page Frame - Desktop ***/

.container {
    width: 970px;
}

/*** Header ***/

#LP_DIV_1373291058632 {
    display: none;
}

header {
    border: none;
    padding: 0;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/bg-header.png') 0 0 repeat-x;
    position: relative;
    height: 145px;
}
header .container {
    height: 128px;
    z-index: 1000 !important;
}
h1.thelogo {
    width: 300px;
    height: 39px;
    background: none;
}
.thelogo {
    position: absolute;
    top: 35px;
    left: 332px;
    width: 300px;
}
.thelogo img {
    width:  320px;
    height: 42px;
}

.container .columns.topsearch {
    width: 150px;
    position: absolute;
    bottom: 13px;
    right: 40px;
    margin: 0;
    padding: 0;
    height: 25px;
    z-index: 999;
}
body #search-t-m {
    display: none;
}
#search_mini_form {
    position: relative;
}
#search_autocomplete {
    background: #fff;
    border: 1px solid #bcbcbc;
    border-top: none;
    padding: 8px;
}
#search_autocomplete .amount {
    padding: 0 5px 0 0;
}
.mobile-tablet-search {
    display: none;
}
.topsearch .input-text {
    background: #999999;
    border: none;
    width:  142px;
    height: 25px;
    padding: 4px;
    color: #000 !important;

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.topsearch button,
.topsearch button:active,
.topsearch button:hover {
    background: none;
    width: 16px;
    height: 16px;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 3px;
    right: 13px;
}

.util-nav {
    position: absolute;
    top: 5px;
}
.util-nav li {
    float: left;
    width: auto;
    line-height: 54px;
}
/*.util-nav .chat,*/
/*.util-nav li.rep {*/
/*width: 106px;*/
/*}*/
.util-nav li a {
    font-size: 1.2rem;
    color: #c1c1c1;
    display: block;
}
.util-nav li a span {
    padding: 0 0 0 10px;
    display: inline;
}
.util-nav .delim {
    margin: 0 20px;
    width: 3px;
}

#rep-chat {
    left: 0;
}
#rep-chat .nav-icon,
#account-gallery .nav-icon { position: relative; top: 5px; display: inline-block; width: 39px; padding: 0; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/nav-icon-sprite.gif") no-repeat; background-size: 650%; }
#rep-chat .rep {
    margin: 0;
}
#rep-chat .rep .nav-icon { height: 27px; background-position:  -29px 0; }
#rep-chat .chat span { padding-left: 3px; }
#rep-chat .chat .nav-icon { left: -4px; top: 9px; width: 37px; height: 29px; padding-left: 0; background-position: -64px 0; }

#account-gallery {
    right: 0;
}
#account-gallery .account-nav .nav-icon { left: 6px; top: 9px; width: 34px; height: 30px; background-position: -90px 0; }
#account-gallery .gallery-nav .nav-icon { left: 0; width: 26px; height: 29px; background-position: -135px 0; background-size: 928% auto; }

.container .eight.columns.toplinks {
    position: absolute;
    right: -6px;
    bottom: 9px;
}

li.cart-nav {
    position: absolute;
    bottom: -48px;
    left: 48px;
}
.toplinks ul li.topcart a.cart-anchor {
    display: block;
    z-index: 999;
    position: relative;
    width: 49px !important;
    height: 29px !important;
    right: -96px;
}
.toplinks ul li.topcart a span.cart-qty {
    position: absolute;
    top: 1px;
    right: 9px;
    color: #bcbcbc;
    font-size: 1.2rem;
}
body.ie .toplinks ul li.topcart a span.cart-qty {
    top: 0px;
}
.cartpop {
    margin-left: -115px;
}
.cartpop ol li .product-details {
    padding: 0 0 0 10px;
}
.cartpop .product-details .item-options { margin-top:-10px; margin-bottom:10px; }
.cartpop .product-details .item-options dt,
.cartpop .product-details .item-options dd { line-height:1.4em; }
.cartpop .product-details .item-options dt { float:left; margin-right:3px; }
.cartpop ol li a.product-image
{
	width: 50px !important;
	text-align: center;
}
.toplinks ul li a:hover,
.toplinks ul li a {
    color: #c41230;
}
.cartpop .subtot .price {
    color: #000;
}
.cartpop .cartfoot .actions {
    margin: 17px 0 0 0;
}
.cartpop .product-name {
    border: none;
}

/* Global Messaging */
.messages ul {
    height: auto;
}
.messages li.success-msg {
    font-style: normal;
    border: none;
    color: #000;
    font-size: 1.4rem !important;
    padding: 1px 0 0 30px !important;
    background: #eee url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-checkmark.png') 9px 9px no-repeat !important;
}
.messages li a {
    color: #c41230 !important;
}

/* Login Menu */
#login-btn {
    color: #fff;
    display: block;
    background: #7e7e7e;
    text-transform: uppercase;
    position: absolute;
    right: 0;
    bottom: 13px;
    line-height: 1;
    font-size: 12px;
}
#login-btn span {
    display: block;
    margin: 1px;
    padding: 7px 19px;
    border: 1px solid #c5c5c5;
}
#login-menu {
    border: 1px solid #bcbcbc;
    background: #fff;
    padding: 15px;
    position: absolute;
    top: 114px;
    right: 0;
    display: none;
}
#login-menu a.close-menu {
    position: absolute;
    top: 6px;
    right: 10px;
    color: #7e7e7e;
    display: block;
    font-size: 2.2rem;
    text-decoration: none;
}
#login-menu h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
}
#login-menu input[type=text] {
    margin-bottom: 10px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
#login-menu fieldset {
    margin-bottom: 30px;
}
.register-btn a,
.login-submit,
.login-submit:hover {
    border: 1px solid #7e7e7e;
    display: block;
    background: #7e7e7e;
    padding: 0;
    float: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.register-btn a span,
.login-submit span,
.login-submit:hover span {
    color: #fff;
    display: block;
    background: #7e7e7e;
    text-transform: uppercase;
    border: 1px solid #c5c5c5;
    padding: 7px 19px;
    float: none;
    line-height: 1;
    font-weight: 400;
    font-size: 1.3rem;
    font-family: "Source Sans Pro";

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.login-submit,
.login-submit:hover {
    width: 76px;
    margin: 15px 0 0 0;
}
.register-btn a {
    width: 95px;
}
a.forgot-pass {
    display: block;
    margin: 10px 0 0 0;
    font-size: 1.2rem;
}
#register-user p {
    margin: 0 0 5px 0;
}
#register-user ul {
    list-style: disc;
    padding: 0 0 0 10px;
    margin: 0 0 20px 10px;
}
#register-user li {
    margin: 0 0 4px 0;
}

/* Login Page */

.customer-account-login #send2 {
    margin: 0 0 30px 0;
}


/* Account Menu */
#account-gallery .account-nav, #account-gallery .gallery-nav {
    position: relative;
}
#account-menu, #gallery-menu {
    border: 1px solid #bcbcbc;
    background: #fff;
    position: absolute;
    top: 37px;
    left: 0;
    font-size: 1.3rem;
    margin: 0;
    width: 150px;
    z-index: 9999;
    display: none;
}
#gallery-menu { right: 0; left: auto; }
#account-menu li, #gallery-menu li {
    line-height: 1;
    margin: 0;
    padding: 0;
    float: none;
}
#account-menu li.welcome-msg {
    padding: 7px 12px;
    color: #000;
    font-weight: 600;
}
#account-menu li a, #gallery-menu li a {
    padding: 7px 12px;
    color: #000;
    font-size: 1.3rem;
    display: block;
}
#account-menu li a:hover, #gallery-menu li a:hover {
    color: #000;
    background: #e8e8e7;
}

/*** Global Navigation ***/

nav.primary ul li.level0 {
    padding-right: 0;
    margin-right: 22px;
    height: 34px;
}
.Mozilla nav.primary ul li.level0 {
    margin-right: 24px;
}
nav.primary ul li.level0:last-child {
    margin-right: 0;
}
nav.primary ul li a.level-top {
    color: #bcbcbc;
    font-weight: 600; /* Semi Bold */
    font-size: 1.2rem;
    text-transform: uppercase;
}
.Mozilla nav.primary ul li a.level-top {
    font-weight: 400;
}
nav.primary ul li a.level-top:hover {
    color: #fff;
}
nav.primary ul li.active {
    border-bottom: 5px solid #d2021f;
}
nav.primary ul ul li.active,
nav.primary ul ul ul li.active {
    border: none;
}
.container .eleven.columns.navigation {
    position: relative;
    margin: 0;
    bottom: -82px;
    width: 777px;
}

nav.primary ul ul {
    width: 220px;
    background: #fff;
    border: 1px solid #bcbcbc;
    border-top: none;
    top: 34px;

    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
nav.primary ul ul ul {
    display: none !important;
    opacity: 0;
    border-top: 1px solid #bcbcbc;
    border-left: none;
}
nav.primary ul ul li:hover ul {
    top: 0;
    right: -220px;
    left: auto;
    display: block !important;
}
nav.primary ul li:hover ul {
    overflow: visible;
}
nav.primary ul ul li {
    padding: 0;
}
nav.primary ul ul li a {
    color: #000;
    font-weight: 400;
    font-size: 13px;
    padding: 7px 12px;
    line-height: 1;
}
nav.primary ul ul li:hover > a {
    background: #e8e8e7;
    color: #000;
}
#close-nav {
    display: none;
}

/*** Footer ***/

.container footer.columns.sixteen {
    padding: 20px 0 0 0;
    margin: 0;
    width: 970px;
    border-top: 1px solid #bdbdbd;
}
footer h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}
footer a:visited {
    color: #333;
}
footer ul {
    margin: 0;
}
footer li {
    font-size: 1.3rem;
    margin: 0 0 13px 0;
    line-height: 1.2;
}
footer li:last-child {
    margin: 0 0 20px 0;
}
footer span.break {
    display: block;
}
.container footer div.six.columns {
    width: 141px;
    margin: 0 24px 0 0;
}
.container footer div.six.columns:last-child {
    margin: 0;
}

#copyright {
    width: 100%;
    background: #e8e8e8;
    line-height: 48px;
    height: 48px;
}
#copyright .wrapper {
    width: 970px;
    margin: 0 auto;
    overflow: hidden;
}
#copyright .footer-logo {
    float: left;
    width: 134px;
    margin: 19px 0 0 0;
}
#copyright p.copyright {
    font-size: 1.1rem;
    font-weight: 400;
    color: #666;
    padding: 0 0 0 12px;
    margin: 13px 0 0 12px;
    height: 23px;
    line-height: 23px;
    float: left;
    width: 250px;
    border-left: 1px solid #aaa9a9;
}
#copyright .tel {
    float: right;
    font-size: 1.7rem;
    line-height: 1;
    margin: 13px 0 0 0;
}

/*** Homepage ***/

.cms-home .container .sixteen.columns {
    width: 970px;
    margin: 0;
}

#home-content {
    overflow: hidden;
    clear: both;
    margin: 45px 0 50px 0;
}
.home-three {
    float: left;
    width: 306px;
    height: auto;
    padding: 15px 0 0 0;
    overflow: hidden;
}
.home-three .content {
    float: left;
    width: 136px;
}
.home-three img {
    float: right;
    width: 123px;
    height: 123px;
    margin: 0;
}
.home-three.first img {
    width: 123px;
}
.home-three.first {
    width: 305px;
    padding-right: 21px;
}
.home-three.second {
    padding: 15px 21px 0 26px;
    border-right: 1px solid #bdbdbd;
    border-left: 1px solid #bdbdbd;
    width: 331px;
}
.home-three.second .content {
    width: 135px;
}
.home-three.third {
    padding: 15px 0 0 26px;
    width: 332px;
}
.home-three.third .content {
    width: 175px;
}
.Mozilla .home-three h3 {
    font-weight: 600;
}
.home-three h3 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1;
}
.home-three h3 span {
    color: #de1616;
}
.home-three p {
    margin: 0 0 7px 0;
}
.home-three a.a-block {
    color: #c41230;
    text-transform: uppercase;
    display: block;
    word-wrap: break-word;
}

#home-inspiration {
    overflow: hidden;
    clear: both;
    margin: 0 0 60px 0;
}
#home-inspiration li {
    float: left;
    width: 229px;
    margin: 0 18px 0 0;
}
#home-inspiration li:last-child {
    margin: 0;
}
#home-inspiration li img {
    width: 229px;
    height: 229px;
}

/* Slideshow */

#slide-show {
    /*min-width: 970px;*/
    width: 1256px;
    margin: -29px -153px 0 -153px;
    position: relative;
    height: 560px;
    overflow: hidden;
}
#slide-show .slides {
    width: 1256px;
    height: 560px;
    position: relative;
}
#slide-show .slides .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
#slide-show .slides .slide img.slide-img {
    width: 100%;
}
.backward {
    position: absolute;
    left: 457px;
    bottom: 5px;
    display: block;
    z-index: 30;
}
.forward {
    position: absolute;
    right: 441px;
    bottom: 5px;
    display: block;
    z-index: 30;
}
.backward img,
.forward img {
    display: block;
}
.slide-msg {
    position: absolute;
    left: 483px;
    bottom: 5px;
}
.mobile-msg,
.mobile-btn,
.slidetabs {
    display: none !important;
}


img.gallery_item { width: 150px; float: left; padding-right: 20px; }

button.new_project, button.new_project:hover { background-color: #196FB4; float: right; border-radius: 0; text-transform: none; padding: 8px 20px; }

#ajaxupload_button { margin-left: 20px; }

.wendover_button {
    background-image: url("http://www.wendoverart.com/skin/frontend/wendover/default/mycatalog/images/top-button-default.png");
    color: #a2a2a2;
    height: 22px;
    margin: 0 0 7px;
    outline: medium none;
    padding: 2px;
    width: 117px;
    z-index: 10;
}

.wendover_button:hover {
    background-image: url("http://www.wendoverart.com/skin/frontend/wendover/default/mycatalog/images/top-button.png");
    color: #fff;
    height: 22px;
    margin: 0 0 7px;
    outline: medium none;
    padding: 2px;
    width: 117px;
    z-index: 10;
}

.wendover_button.submit, .wendover_button.submit:hover {
    float: none;
    margin-left: 20px;
}

table.projects_table { width: 100% }

table.projects_table td { font-size: 12px; }

table.projects_table th { font-size: 14px; text-align: left; cursor: pointer; font-weight: regular; -webkit-user-select: none; }

table.projects_table td a { color: #196FB4; }

input[type="text"], input[type="password"], input[type="email"], textarea, select {
    margin: 0;
}

#search-t-m,
.show-tablet {
    display: none;
}

/* Create Account */
.customer-account-create .control label,
.customer-account-create .control .input-box {
    display: inline;
}

.customer-account-create .required em
{
	margin-right: 5px;
}

.customer-account-forgotpassword button.button {
    margin: 0 15px 30px 0;
}

/* My Account */
.account-page {
    color: #000;
}
.account-page .twelve.columns.col2l.content {
    margin: 0 0 30px 0;
}
.block-account {
    border-right: 1px solid #bdbdbd;
}
.block-account .block-title strong span {
    font-weight: normal;
    font-size: 26px;
    font-family: Arapey;
    margin: 0 0 40px 0;
    line-height: 1;
    display: block;
    color: #000;
    text-transform: uppercase;
}
.block-account li {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 20px 0;
}
.block-account li.current a,
.block-account li strong {
    color: #000;
    font-weight: normal;
}
.block-account li a {
    color: #c41230;
}
.mycatalog-index-new h1,
.mycatalog-index-edit h1,
.account-page h1,
.my-account h1 {
    font-family: 'Arapey';
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1;
    margin: 13px 0 15px 0;
}
.my-account {
    margin: 0 0 30px 0;
}
.dashboard {
    overflow: hidden;
    margin: 0 0 30px 0;
}
.dashboard h3 {
    text-transform: uppercase;
    color: #000 !important;
    font-weight: 600;
}
.dashboard .col2-set {
    float: left;
    width: 335px;
}
.dashboard .col2-set.info-col {
    margin: 0 30px 0 0;
}
.dashboard .col2-set h3 {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #7e7e7e !important;
}
.dashboard .col2-set h2.sub-title {
    text-transform: uppercase;
    border-bottom: 1px solid #c4c4c4;
    padding: 20px 0 5px 0;
}
.Mozilla .dashboard .col2-set h2.sub-title {
    font-weight: 500;
}
.dashboard .welcome-msg h2.sub-title {
    border: none;
    text-transform: none;
}
.dashboard .col2-set address {
    margin: 0 0 20px 0;
}
.recent-orders .table-caption a,
.dashboard .separator,
.dashboard .sub-title a,
.dashboard .box-title a {
    font-weight: normal;
    font-size: 1.3rem;
    text-transform: none;
}

.customer-account-edit .my-account .input-box,
.customer-account-edit .my-account label,
.newsletter-manage-index .my-account .input-box,
.newsletter-manage-index .my-account label {
    display: inline;
}

.customer-address-form .my-account div.fieldset {
    float: left;
    width: 330px;
}
.customer-address-form .my-account .buttons-set {
    clear: both;
}

.customer-address-form p.required {
    clear: both;
    text-align: right;
}
.customer-address-form .control label,
.customer-address-form .control .input-box {
    display: inline;
}
.customer-address-form li.control {
    margin: 10px 0 0 0;
}
.customer-address-form li.control p {
    margin: 0 0 5px 0;
}

#my-orders-table {
    width: 100%;
    margin: 0 0 30px 0;
}
#my-orders-table th {
    padding: 10px;
    border-bottom: 1px solid #c7c7c7;
}
#my-orders-table th:nth-child(3) {
    text-align: left;
}
#my-orders-table td {
    padding: 10px;
    border-bottom: 1px solid #c7c7c7;
}
.dashboard #my-orders-table th:nth-child(4) {
    width: 100px;
    text-align: center;
}
.dashboard #my-orders-table td:nth-child(4) {
    text-align: center;
}
.recent-orders h3 {
    margin: ;
}
.customer-account-index select {
    margin: 5px 0 20px 0;
}

/* Order History */
.sales-order-history .pager label {
    display: inline;
}
.sales-order-history .pager select {
    display: inline;
    width: 60px;
}
.sales-order-history #my-orders-table th:nth-child(4) {
    width: 100px;
    text-align: center;
}
.sales-order-history #my-orders-table th:nth-child(5) {
    width: 100px;
    text-align: center;
}
.sales-order-history #my-orders-table th:nth-child(6) {
    width: 133px;
    text-align: center;
}
.sales-order-history #my-orders-table td:nth-child(4) {
    text-align: center;
}


.sales-order-view .order-info {
    clear: both;
}
.sales-order-view .title-buttons {
    line-height: 4.4;
    overflow: hidden;
}
.sales-order-view .title-buttons h1 {
    padding: 0 20px 0 0;
}
.sales-order-view .title-buttons a {
    line-height: 30px;
}
.order-page .col2-set {
    overflow: hidden;
    margin: 0 0 30px 0;
}
.order-page .col2-set .col-1 {
    float: left;
    width: 300px;
}
.order-page .col2-set .col-2 {
    float: left;
    width: 300px;
}
.order-page .order-items {
    clear: both;
}
.sales-order-view #my-orders-table th:nth-child(1) {
    text-align: left;
}
.sales-order-view #my-orders-table th:nth-child(4) {
    width: 100px;
}
.sales-order-view #my-orders-table .product-name {
    font-weight: normal;
    border: none;
}
.sales-order-view #my-orders-table .shipping {
    border: none;
    float: none;
    width: auto;
    text-align: right;
}
.sales-order-view #my-orders-table tfoot td {
    border: none;
}
.sales-order-view #my-orders-table tbody td:nth-child(5),
.sales-order-view #my-orders-table tfoot td:nth-child(2),
.sales-order-view #my-orders-table tfoot td:nth-child(1) {
    text-align: right;
}


.customer-address-index .addresses-list {
    clear: both;
}
.customer-address-index h1 {
    margin: 0 30px 40px 0;
}

/* Email a friend */
.sendfriend-product-send #product_sendtofriend_form div.fieldset {
    float: left;
    width: 300px;
}
.sendfriend-product-send #product_sendtofriend_form .buttons-set {
    clear: both;
    overflow: hidden;
    margin: 0 0 30px 0;
}
.sendfriend-product-send #product_sendtofriend_form button {
    margin: 0 15px 0 0;
}
.sendfriend-product-send #product_sendtofriend_form p.required {
    margin: 0 0 0 15px;
}

.account-page h2 {
    text-transform: uppercase;
}
.account-page h3 {
    text-transform: uppercase;
    color: #7e7e7e;
    font-size: 1.4rem;
}
.account-page h3 a {
    font-weight: normal;
    font-size: 1.2rem;
}
.account-page .form-list .field {
    margin: 10px 0 0 0;
}
.required em { margin-right: 3px; }
.required em,
p.required {
    color: #c41230;
}

.wishlist-management .msg-private {
    background: none;
    border: none !important;
    color: #000;
    padding: 0;
    margin: 0 0 20px 0;
}
.wishlist-index-index .popup-block .block-content .form-buttons {
    padding-left: 0;
}
.popup-block .block-content .form-buttons .button.btn-cancel {
    background: #7e7e7e;
}

.wishlist-index-index div.split-button.light a.change:hover,
.wishlist-index-index div.split-button.light a.change {
    text-transform: none;
    font-size: 1.3rem;
    width: auto;
    padding: 0 14px 5px 0;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/link-down.png') right 6px no-repeat;
}
.wishlist-index-index div.split-button.light a.change.change-copy {
    left: 15px;
}

/* Gallery Page */

button.new_project,
button.new_project:hover {
    background: #7e7e7e;
    border: 2px solid #7e7e7e;
    padding: 0;
}
button.new_project.new_btm {
    display: none;
}
button.new_project span {
    padding: 10px 20px;
    color: #fff;
    font-family: "Source Sans Pro";
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #fff;
    text-transform: uppercase;
    line-height: 1;
    display: block;
}
#gallery-links {
    overflow: hidden;
    clear: both;
    position: relative;
}
.gallery-list li {
    float: left;
    width: 140px;
}
h2.favorite-gallery {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}
h2.favorite-gallery a {
    color: #c41230;
}
.util-gallery {
    position: absolute;
    top: 4px !important;
    right: 0;
    height: 14px;
    overflow: hidden;
}
.util-gallery li {
    float: left;
    line-height: 1;
    margin: 0;
    padding: 0;
}
.util-gallery li {
    border-right: 2px solid #bdbdbd;
    margin: 0 30px 0 0;
    padding: 0 30px 0 0;
}
.util-gallery li:last-child { margin-right: 0; padding-right: 0; border: none; }
.util-gallery li a {
    padding: 0;
}
.gallery-list {
    clear: both;
    overflow: hidden;
}
.gallery-list img.gallery_item {
    padding: 0 40px 0 0;
}

.wishlist-empty {
    clear: both;
    margin: 50px 0;
}
#wishlists-select .change span {
    color: #c41230;
}
.gallery-index-index #projects_table_sort {
    text-align: right;
}
.gallery-index-index table.projects_table td:nth-child(5) {
    padding: 0 42px 0 0;
}
.gallery-index-index table.projects_table td:nth-child(3) a {
    text-transform: none;
    font-weight: normal;
}
.gallery-index-index table.projects_table td:nth-child(4) a {
    text-transform: uppercase;
    font-weight: 600;
}
.gallery-index-index .btn-share {
    display: none;
}

/* Catalog Listing Page */
.mycatalog-index-index .top-new-project {
    position: relative;
    top: -53px;
    margin: -40px 0 0 0;
}
table.projects_table th {
    padding: 0 0 5px 0;
}
table.projects_table td a.download {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-download.png') left 2px no-repeat;
    padding: 0 0 0 19px;
}
table.projects_table td a.print-preview {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-print.png') left 2px no-repeat;
    padding: 0 0 0 21px;
}
table.projects_table td:nth-child(1) a {
    text-transform: none;
}
table.projects_table td:nth-child(5),
table.projects_table td:nth-child(6) {
    text-align: right;
}
table.projects_table td:nth-child(4) {
    text-align: center;
}
table.projects_table td:nth-child(4) a {
    text-transform: none;
    font-weight: normal;
}

#created-projets {
    clear: both;
    overflow: hidden;
    margin: 50px 0;
}
#created-projets h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
}
table.projects_table th {
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #c7c7c7;
}
table.projects_table td {
    padding: 20px 0;
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #c7c7c7;
}
.gallery-index-index table.projects_table td:first-child {
    width: 230px;
}
.gallery-index-index table.projects_table td:nth-child(3) {
    text-align: center;
    padding: 0 0 0 20px;
}
table.projects_table td a {
    color: #c41230;
    font-weight: 600;
    text-transform: uppercase;
}
#sorttable_sortrevind,
#sorttable_sortfwdind {
    text-indent: -9999px;
    font-size: 1px;
    width: 14px;
    height: 7px;
    display: inline-block;
    margin: 0 0 0 4px;
    position: relative;
    top: -1px;
    font-size: 1px;
    color: #fff;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/sorter-down.gif') no-repeat;
}
#sorttable_sortrevind {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/sorter-up.gif') no-repeat;
}

.wishlist-index-index #overlay,
.gallery-index-index #overlay {
    padding: 30px;
}
.wishlist-index-index #overaly ul,
.gallery-index-index #overlay ul {
    margin: 0 0 0 15px;
    padding: 0 0 0 15px;
    list-style: disc;
}
.create-catalog-submit,
.create-catalog-submit:hover,
#overlay #cancel-close {
    background: #7e7e7e;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 75px;
    position: relative;
    display: block;
    float: left;
    margin: 0 20px 0 0;
    top: 0;
    right: 0;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.create-catalog-submit:hover span,
.create-catalog-submit span,
#overlay #cancel-close span {
    padding: 12px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
    color: #fff;

}
.create-catalog-submit:hover,
.create-catalog-submit {
    background: #c41230;
    width: 134px;
}

/* Gallery Detail Page */
.wishlist-index-index .page-title {
    display: none;
}
.wishlist-index-index .block-account {
    border: none;
}
.wishlist-index-index .container .twelve.columns {
    width: 730px;
    padding: 0 0 0 23px;
    margin: 0 0 20px 0;
    border-left: 1px solid #bdbdbd;
}
.wishlist-index-index .container .four.columns {
    width: 200px;
}
.wishlist-index-index .sub-title h2 {
    font-family: arapey;
    font-size: 3.2rem;
    font-weight: normal;
}
.wishlist-index-index .sub-title h2 span {
    font-size: 1.4rem;
    padding: 0 0 0 10px;
    text-transform: none;
    font-family: "Source Sans Pro";
}
.wishlist-index-index .sub-title a {

}
.wishlist-index-index .price-box {
    display: block !important;
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0 0 -26px 0;
}
#wishlist-table {
    width: 100%;
}
#wishlist-table th {
    border-bottom: 1px solid #c4c4c4;
    padding: 10px 0;
    font-size: 1.4rem;
    color: #7e7e7e;
    font-weight: 600;
    text-transform: uppercase;
    text-align:left;
}
#wishlist-table th.column-image{
    text-transform:capitalize;
}
#wishlist-table th:first-child {
    width: 30px;
    text-transform: none;
}
#wishlist-table th:nth-child(2) {
    text-align: left;
}
#wishlist-table th input {
    margin: 0;
    float: none;
}
#wishlist-table td {
    vertical-align: top;
    padding: 25px 0;
    border-bottom: 1px solid #c4c4c4;
}
#wishlist-table td:nth-child(4) {
    position: relative;
}
#wishlist-table td input[type=checkbox] {
    margin: 0;
}
#wishlist-table .link-edit {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
#wishlist-table h3 {
    line-height: 1;
    border: none;
}
#wishlist-table h3 a {
    font-size: 17px;
    color: #000;
    text-transform: uppercase;
}
#wishlist-table .button.btn-cart {
    background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 39px 11px no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 190px;
    margin: 45px 0 0 0;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
#wishlist-table .button.btn-cart span span {
    padding: 12px 40px 12px 63px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
#wishlist-table .cart-cell .button.btn-cart {
    background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 27px 11px no-repeat;
}
#wishlist-table p {
    margin: 0 0 5px 0;
}
#wishlist-table .product-ids strong {
    display: inline-block;
    width: 100px;
}
#wishlist-table input.qty {
    width: 40px;
    text-align: center;
    position: absolute;
    right: 85px;
    font-size:16px;
    color:#000000;

}
#wishlist-table textarea {
    width: 240px !important;
}
/*#wishlist-table a.link-edit {*/
/*display: block;*/
/*clear: both;*/
/*margin: 20px 0 0 0;*/
/*float: right;*/
/*width: auto;*/
/*}*/

.wishlist-index-index .buttons-set2 {
    overflow: hidden;
    margin: 20px 0 0 0;
    position: relative;
    height: 45px;
}
.wishlist-index-index .back-link {
    display: none;
}
.wishlist-index-index .btn-share,
.wishlist-index-index .btn-share:hover,
.wishlist-index-index .btn-update,
.wishlist-index-index .btn-update:hover {
    background: #7e7e7e;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 140px;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.wishlist-index-index .btn-update {
    position: absolute;
    right: 191px;
}
.wishlist-index-index .btn-share:hover,
.wishlist-index-index .btn-share {
    position: absolute;
    left: 0;
    width: 160px;
}
.wishlist-index-index .btn-share span span {

}
.wishlist-index-index .btn-share {
    position: absolute;
    right: 256px;
}
.wishlist-index-index .btn-update span span {
    padding: 12px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
.wishlist-index-index .btn-add,
.wishlist-index-index .btn-add:hover {
    background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 19px 11px no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 179px;
    position: absolute;
    right: 0;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.wishlist-index-index .btn-add span span {
    padding: 12px 0px 12px 32px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
#wishlists-select,
.wishlist-index-index .table-caption div.label {
    display: none;
}
.wishlist-index-index .table-caption {
    background: #e6e6e6;
    height: 45px;
}
#wishlists-copy {
    float: left;
    width: 100px;
    margin-left: 87px;
}
#wishlists-move {
    float: left;
    width: 100px;
    margin-left: 87px;
}
#wishlists-move .list-container,
#wishlists-copy .list-container {
    left: -77px;
    top: 34px;
    right: 6px;
}
#wishlists-move a.change:hover,
#wishlists-move a.change,
#wishlists-copy a.change,
#wishlists-copy a.change:hover {
    text-indent: 1px;
    background: none;
    width: 171px;
    color: #000;
    margin: 14px 0 0 0;
    background: #fff url('http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-select-menu.png') right no-repeat;
    border: 1px solid #c7c7c7;
    padding: 2px 0 0 5px;
}
#wishlists-move strong span,
#wishlists-copy strong span {
    display: none;
}


/* Breadcrumbs */
.breadcrumbs {
    margin: 0 0 44px 0;
    line-height: 1;
}

.breadcrumbs li strong,
.breadcrumbs li a {
    color: #c51835;
    text-decoration: none;
    text-transform: none;
    font-size: 14px;
}
.breadcrumbs li strong {
    color: #000;
    font-weight: normal;
}
.breadcrumbs li span {
    color: #ccc;
    padding: 0 15px;
}


/* Category Page */

.catalog-category-view h1 {
    font-family: 'Arapey';
    font-size: 3.2rem;
    font-weight: normal;
    line-height: 1;
    margin: 13px 0 15px 0;
}

.block-layered-nav h2 {
    font-family: 'Arapey';
    font-size: 2.6rem;
    font-weight: normal;
    line-height: 1;
    margin: 20px 0;
    text-transform: uppercase;
}
.block-layered-nav dt {
    font-size: 1.7rem;
    font-weight: 600;
    color: #000;
    line-height: 1;
    margin: 0 0 20px 0;
}
.block-layered-nav dd li a {
    font-size: 1.4rem;
    text-transform: none;
    line-height: 1.8;
    margin: 0 0 20px 0;
    color: #000;
}
.block-layered-nav dd {
    margin: 0 0 15px 0;
    overflow: hidden;
}

.block-layered-nav .currently {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
}
.block-layered-nav p.block-subtitle {
    color: #000;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
}
.currently ol li {
    margin: 0 0 20px 0;
    clear: both;
    overflow: hidden;
    color: #000;
}
.currently ol li span.label {
    font-weight: bold;
}
.currently ol li a.btn-remove {
    display: inline-block;
    float: right;
}


.toolbar .sorter {
    float: none;
    line-height: 40px;
    height: 40px;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    text-transform: none;
    font-size: 12px;
    color: #000;
}
.toolbar .sorter p.view-mode {
    float: left;
    width: 48%;
    margin: 0;
}
.sorter .view-mode strong {
    font-weight: normal;
}
.toolbar .sorter .sort-by {
    float: right;
    width: 48%;
    text-align: right;
    margin: 0;
}
.toolbar .sorter .sort-by label {
    float: none;
    display: inline;
    font-weight: normal;
}
.toolbar .sorter .sort-by select {
    float: none;
    display: inline;
    margin: 0;
}
.toolbar .pager {
    clear: both;
    width: 100%;
    line-height: 40px;
    height: 40px;
    text-transform: none;
    font-size: 12px;
    color: #000;
    margin: 0 0 10px 0;
}
.toolbar .pager p.amount {
    float: left;
    width: 275px;
}
.toolbar .sort-direction {
    position: relative;
    float: none !important;
    top: 4px;
    margin: 0 0 0 15px;
}
.pager .pages {
    float: left;
    width: 200px;
    margin: 10px 0 0 0;
}
.pager .pages strong {
    font-weight: normal;
}
.toolbar .pager .limiter {
    width: 150px;
    text-align: right;
    margin: 0;
    border: none;
    background: none;
}
.toolbar .pager .limiter select {
    float: none;
    display: inline;
}

.catalog-category-view .container .col2l {
    border-left: 1px solid #bdbdbd;
    width: 730px;
    padding: 0 25px;
    margin: 0 0 25px 0;
}

.products-grid li.item.columns {
    text-align: center;
    width: 160px;
}
.Mozilla.category-view-all-frames .products-grid li.item.columns {
    height: 275px;
}
.Mozilla.category-view-all-frames li.item p {
    line-height: 16px;
}


/* View all frames category and mats category */
.category-view-all-frames .container .sixteen.columns,
.category-view-all-mats .container .sixteen.columns {
    width: 100%;
}

.category-view-all-frames .products-grid li.item.columns.first,
.category-view-all-mats .products-grid li.item.columns.first {
    clear: both;
}

.category-view-all-frames .products-grid li.item.columns,
.category-view-all-mats .products-grid li.item.columns {
    height: 260px;
    clear: none;
}

.category-view-all-frames.catalog-category-view .category-view .category-products,
.category-view-all-mats.catalog-category-view .category-view .category-products {
    width: 100%;
}

.category-view-all-frames .products-grid li.first,
.category-view-all-mats  .products-grid li.first {
    margin-left: 36px;
    margin-right: 10px;
}
.category-view-all-frames li.item p,
.category-view-all-mats li.item p {
    line-height: 16px;
}

.products-list li.item h2,
.products-grid li.item h2 {
    border: none;
}
.products-grid li.item h2 a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}
.products-list li.item .price-box .price,
.products-grid li.item .price-box .price {
    font-weight: 400;
    font-size: 1.3rem;
    color: #000;
}
.products-list li.item .size-listing,
.products-grid li.item .size-listing {
    color: #000;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 0 5px 0;
}
#products-list li.item div.rightpart .product-description {
    display: none;
}
#filter-btn-mobile,
.current-mobile,
#narrow-by-list.mobile-filter {
    display: none;
}

.catalog-category-view .container .col2l {
    border-left: 1px solid #bdbdbd;
    width: 754px;
    padding: 0 25px;
    margin: 0 0 25px 0;
}
.catalog-category-view .container .four.columns.leftcol {
    width: 193px;
}
.catalog-category-view .category-view .category-products {
    width: 722px;
}
/* know your frame? */
.category-view-all-frames .category-view h1 {
    float: left;
}

.category-view-all-frames .category-view a#frame_number_link {
    color: #C41230;
    font: normal 600 13px/13px "Source Sans Pro";
    display: block;
    top: 28px;
}

.category-view-all-frames .category-view button#frame_number_link {
    background: none repeat scroll 0 0 #7E7E7E;
    border: 2px solid #7E7E7E;
    padding: 0;
    float:right;
    position:static;
    margin-top:8px;
}
.category-view-all-frames .category-view button#frame_number_link,
.category-view-all-frames .category-view button#frame_number_link:hover {
    border-radius: 0;
    text-transform: none;
}
.category-view-all-frames .category-view button#frame_number_link span {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    display: block;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 20px;
    text-transform: uppercase;
}

.category-view-all-frames .category-products {
    clear: both;
}

/* Sub Category Listing Page */
.category-our-product .container .sixteen.columns.content {
    margin: 0;
    width: 970px;
}
.category-our-product h1 {
    font-size: 3.2rem;
    margin: 0 0 19px 0;
}
.subcat-listing {
    overflow: hidden;
}
.subcat-listing li {
    float: left;
    width: 220px;
    margin: 0 29px 25px 0;
    border-top: 1px solid #cecece;
}
.subcat-listing li p.category-image {
    margin: 0;
}
.subcat-listing li:nth-child(4n) {
    margin: 0 0 25px 0;
    margin-bottom: 0;
}
.subcat-listing li .category-title {
    margin: 10px 0;
    text-align: center;
}
.subcat-listing li .category-title a {
    color: #000;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.subcat-listing li:nth-last-child(2) {
    border-bottom: none;
}

.subcat-listing li:nth-last-child(2) {
    border-bottom: none;
}
.subcat-listing li span.quick-ship {
    color: #c71034;
    padding: 0 18px 0 0;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-quick-ship.png') right no-repeat;
}
/* End Quick Ship Category */



/* Custom Configurator Page */

.category-art-configurator .container .sixteen.columns {
    width: 970px;
}
.category-art-configurator .sixteen.columns.breadcrumbs {
    
}
.category-art-configurator .breadcrumbs {
    overflow: hidden;
    font-size: 1.3rem;
    color: #000 !important;
    text-transform: none;
}
.category-art-configurator .breadcrumbs .back a {
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 10px 0 30px;
    margin: 0 10px 0 0;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/checkout-back.png') left no-repeat;
}
.category-art-configurator #email-print {
    top: auto;
    right: 0;
    height: 20px;
    bottom: 10px;
    float: right;
    clear: both;
    margin: 12px 0;
    position: relative;
}
.mobile-filter-link,
.category-art-configurator .emailto-link {
    display: none;
}
.catalog-category-view .category-view {
    position: relative;
}
.category-art-configurator .breadcrumbs li:nth-child(2) {
    padding: 1px 0 0 0;
}
.category-art-configurator .product-name {
    border: none;
}

.category-art-configurator h1 {
    float: right;
    width: 422px;
    font-size: 3.2rem;
    margin: 0 0 10px 0;
}

#rendered_image {
    float: left;
    width: 525px;
    min-height: 390px;
    text-align: center;
    position: relative;
    z-index: 9;
    margin-bottom: 18px;
}
#rendered_image .loading {
    position: absolute;
    top: 200px;
    left: 260px;
    z-index: -1;
}

#configurator-zoom img {
    max-width:none;
}

#reset-art {
    display: block;
    float: right;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 16px 0 20px;
    margin: 0 0 10px 0;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/reset.png') left no-repeat;
}
.packagecreator-package {
    float: right;
    width: 422px;
}
.packagecreator-package .slot-list {
    float: none;
    width: 100%;
    margin: 0;
}
.package-slot.current {
    background: #f0f0f0;
}
.package-slot {
    clear: both;
    overflow: hidden;
    padding: 10px;
    margin: 0;
    float: none !important;
    background: #fff;
    border-top: 1px solid #cccccc;
}
.package-slot h2 {
    float: left;
    width: 125px;
    text-transform: uppercase;
    font-size: 1.6rem;
}
.package-slot h2 a {
    color: #000;
}
.package-slot .slot-image {
    float: left;
    width: 54px;
    margin: 0 25px 0 0;
}
.package-slot .slot-image img {
    border: 1px solid #bbb;
    width: 54px;
    height: 54px;
}
.package-slot .slot-info {
    float: left;
    width: 198px;
}
.package-slot .slot-info .col-1 {
    float: left;
    width: 130px;
    color: #000;
}
.package-slot .slot-info .product-name {
    margin: 0;
    line-height: 1;
}
.package-slot .slot-info .slot-price {
    font-style: italic;
}
.package-slot .slot-info .edit-link {
    float: right;
    width: 53px;
}
.package-slot .slot-info .edit-link a {
    text-transform: uppercase;
    font-weight: 600;
}

.slot-list .note, .slot-list .dimension {
    position: relative;
    clear: both;
    overflow: hidden;
    padding: 10px;
    border-top: 1px solid #ccc;
}
.slot-list .dimension {
    border-bottom: 1px solid #ccc;
}
.slot-list #art-dimension {
    float: left;
    margin-left: 8px;
}
.slot-list .note {
    margin-bottom: 0;
}
.slot-list .note span, .slot-list .dimension span {
    float: left;
    width: 125px;
    text-transform: uppercase;
    font-size: 1.6rem;
    color: #000;
    font-weight: 600;
}
.slot-list .note .add-note {
    position: absolute;
    top: 9px;
    right: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.slot-list .note textarea {
    display: none;
    margin: 30px 0 10px 0;
}

.category-art-configurator #product_addtocart_form label {
    display: inline;
    padding: 0 10px 0 10px;
}
.category-art-configurator #product_addtocart_form input {
    display: inline;
    width: 50px;
    text-align: center;
    margin: 0 0 20px 0;
}

.category-art-configurator .add-to-cart {
    float: right;
    width: 190px;
}

body.category-art-configurator ul.add-to-links li {
    display: block;
    border: 1px solid #fff;
    margin: 0;
    height: 42px;
}
body.category-art-configurator ul.add-to-links {
    float: left;
    background: #7e7e7e url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-gallery-grey.png') 13px 11px no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 190px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.catalog-category-view .category-view .package-products {
    width: 942px;
    padding: 0 20px;
}

body.category-art-configurator ul.add-to-links .link-compare,
body.category-art-configurator ul.add-to-links .link-compare:hover,
body.category-art-configurator li div.split-button.light a.change{
    padding: 12px 40px 12px 34px;
    display: block;
    line-height: 1;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    background-image: none;
    width: 200px;
}

.category-art-configurator .add-to-cart .button.btn-package {
    background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 33px 11px no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 190px;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.category-art-configurator .add-to-cart .button.btn-package span span {
    padding: 12px 40px 12px 63px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}

.packagecreator-package .packagecreator-totals {
    clear: both;
    width: 100%;
    color: #000;
    display: inline-block;
    text-align: right;
    margin: -57px 0 20px;
}
.packagecreator-totals .price {
    width: 142px;
    font-size: 3rem;
    font-weight: 600;
    display: inline-block;
}

.package-products ul {
    clear: none;
    background: #fff;
    height: 151px !important;
}
.package-products ul li {
    float: left;
    clear: none;
    text-align: center;
    margin: 0 !important;
    height: 151px;
    background: #fff url('http://www.wendoverart.com/skin/frontend/wendover/default/images/brd-faded.png') right no-repeat;
}

.package-products ul li .padding {
    padding: 5px 15px;
}

.package-products .product-name {
    margin: 0;
    line-height: 1;
}
.package-products p {
    margin: 0;
}

#bottom-mat-list .package-products ul li .padding,
#top-mat-list .package-products ul li .padding {
    padding: 30px 13px 0px 13px;
}


.sku-finder-wrap {
    background: #fff;
    padding: 20px;
    display: none;
    width: 400px;
    height: 220px;
    z-index: 99999999999999 !important;
}
.sku-finder-wrap form {
    overflow: hidden;
}
.sku-finder-wrap button.button {
    float: left;
    width: auto;
}
#frame_number_cancel {
    background: #7e7e7e;
}
.cancel-btn,
.cancel-btn:hover {
    margin: 0 20px 0 0;
}

.toggle-list {
    display: none;
}
.frame-mat-list {
    border: 14px solid #e8e8e7;
    background: #f0f0f0;
    clear: both;
    overflow: hidden;
    position: relative;
    padding: 20px 0 0 0;
    margin: 0 0 60px 0;
}
.frame-mat-list .slot-title {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 0 0 20px;
    line-height: 1;
    margin: 0 0 20px 0;
}
#bottom_mat_number_link,
#top_mat_number_link,
a#frame_number_link {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
}
#configurator-narrow-by-frame label,
#configurator-narrow-by-frame p {
    display: none;
}
#configurator-narrow-by-frame-color {
    position: absolute;
    top: 20px;
    right: 315px;
    width: 145px;
}
#configurator-narrow-by-frame-width {
    position: absolute;
    top: 20px;
    right: 195px;
    width: 105px;
}

/* Carousel */
.counter {
    position: relative;
    margin: 20px auto 15px auto;
    text-align: center;
}
.counter .count {
    width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #909090;
    display: inline-block;
    margin: 0 0 0 2px;
    border-radius: 5px;
    cursor: default;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.counter .count.current {
    background: #cfcfcf;
}



/* Product Page */
.catalog-product-view .product-shop {
    float: right;
    width: 420px;
}
.product-shop h1 {
    font-size: 3.2rem;
    font-family: Arapey;
    font-weight: normal;
    margin: 0 0 15px 0;
    line-height: 1;
}
.product-name {
    margin: 0 0 25px 0;
    position: relative;
    border-bottom: 1px solid #ccc;
}
p.product-sku {
    color: #A8A8A8;
    margin-bottom: 5px;
}
p.availability {
    color: #000;
    margin: 0 0 15px 0;
    display: none;
}
p.availability.in-stock span {
    color: #006600;
}
#email-print {
    /*position: absolute;*/
    bottom: 15px;
    right: 14px;
    /*margin: 0;*/
    margin: 0 0 15px 0;
}
#email-print li a,
#email-print li {
    display: inline-block;
    margin: 0;
}
.emailto-link a {
    padding: 0 0 0 25px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-mail.png') left 0 no-repeat;
}
.print-link a {
    padding: 0 0 0 25px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-print.png') left 0 no-repeat;
}
#email-print .print-link {
    margin: 0 0 0 22px;
}
.product-main-info .attr-list {
    width: 260px;
}
.product-main-info .attr-list li {
    color: #000;
    line-height: 1;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}
.product-main-info .attr-list span {
    text-align: right;
    float: right;
    width: 120px;
}
.product-main-info .attr-list .note {
    position: relative;
}
.product-main-info .attr-list .note span {
    float: left;
    width: auto;
}
.product-main-info .attr-list .note .add-note {
    position: absolute;
    top: -2px;
    right: 0;
    text-transform: uppercase;
}
.product-main-info .attr-list .note textarea {
    display: none;
    margin: 20px 0 0 0;
}
.product-main-info .quick-ship-custom-option {
    display:none;
    width:260px;
    margin-top:-19px;
    padding-top:10px;
    margin-bottom:20px;
    border-top:1px solid #e5e5e5;
}
.product-main-info .quick-ship-custom-option.available {
    display:block;
}
.product-main-info .quick-ship-custom-option.available input {
    float:right;
}
.product-main-info .quickship-disclaimer { display:none; }
.appriseOuter .apprise-formatter { max-width:400px; }
.split-button.light strong {
    display: none;
}
.product-main-info .attr-list li:last-child {
    border: none;
}
.catalog-product-view .product-img-box {
    float: left;
    width: 490px;
    margin: 0 25px 0 0;
}
.product-collateral {
    clear: both;
    padding: 20px 0 0 0;
}
.product-img-box .more-views {
    border-top: 14px solid #e8e8e7;
    overflow: hidden;
}
p.product-image-zoom .zoomWrapperImage img {
    max-width: none;
}
.Mozilla p.product-image-zoom img#image {
    position: relative;
}
.zoomPad {
    /* for IE */
    width:100%;
}
.zoomPad .zoomWindow {
    left: 519px !important;
}

.configurator-zoomWindow { left: 558px !important; }

/*.zoomWindowContainer .zoomWindow { left: auto !important; right: 0 !important; }*/

.loading-configurator-zoom {
    display: none;
    position: absolute;
    width: 160px;
    left: 0;
    right: 0;
    top: 0;
    height: 32px;
    bottom: 0;
    background: #fff;
    margin: auto;
    border: 1px solid #888;
    padding: 5px;
}

#enlarge-img {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-enlarge.png') left 2px no-repeat;
    padding: 0 0 0 19px;
    color: #7e7e7e;
    font-weight: 600;
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 66px;
    text-transform: uppercase;
    z-index: 999;
}
.product-img-box .box-related h2 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}
.box-related {
    padding: 20px 0 0 0;
    margin: 40px 0 0 0;
    border-top: 14px solid #e8e8e7;
}
.box-related li.item {
    float: left;
    width: 163px;
}

.catalog-product-view .price-box {
    color: #000;
    font-size: 3.0rem;
    font-weight: 600;
    clear: both;
    border-top: 1px solid #ccc;
    width: 100%;
    margin: 5px 0 0 0;
}
.catalog-product-view .price-box.price-disabled .price-label {
    display: none;
}
.catalog-product-view .price-box label {
    display: inline;
    padding: 0 10px 0 0;
}
.catalog-product-view .price-box input {
    display: inline;
    width: 50px;
    text-align: center;
}
.catalog-product-view .price-box .price-label {
    font-size: 1.3rem;
    font-weight: normal;
    padding: 0 0 0 151px;
}
.catalog-product-view .price-box .price-label-mobile {
    display: none;
}
.catalog-product-view .price-box .price {
    text-align: right;
    float: right;
}
.add-to-box {
    clear: both;
    position: relative;
    min-height: 100px;
}
.product-shop .split-button strong,
.product-shop .split-button .list-container,
.product-shop .add-to-box .side_mark {
    /*display: none;*/
}
.catalog-product-view .add-to-cart {
    width: 100%;
}
.catalog-product-view .add-to-cart label {
    display: inline-block;
    color: #000;
    font-weight: 500;
}
.catalog-product-view .add-to-cart input#qty {
    width: 50px;
    height: 22px;
    float: none;
    display: inline-block;
    padding: 0;
    margin: 0 0 30px 0;
}
#art-configurator-link {
    color: #fff;
    display: block;
    background: #7e7e7e;
    text-transform: uppercase;
    line-height: 1;
    font-size: 12px;
    border: none;
    border-radius: 0;
    padding: 1px;
    font-weight: 500;
    position: absolute;
    bottom: 50px;
    left: 0;
}
#art-configurator-link span {
    display: block;
    padding: 13px 19px;
    border: 1px solid #c5c5c5;
    line-height: 1;
}

.catalog-product-view .add-to-cart .button.btn-cart {
    background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 39px 11px no-repeat;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 209px;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.catalog-product-view .add-to-cart .button.btn-cart span span {
    padding: 12px 40px 12px 63px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
.catalog-product-view ul.add-to-links {
    border-top: 1px solid #e5e5e5;
    height: 20px;
    position: absolute;
    bottom: 15px;
    left: 0;
    margin: 0;
    padding: 10px 0 0 0;
}
.catalog-product-view ul.add-to-links li {
    padding: 0;
    height: auto;
}
.catalog-product-view ul.add-to-links .separator,
.catalog-product-view ul.add-to-links li:nth-child(2) .link-compare {
    display: none;
}

.product-shop .split-button strong,
.product-shop .split-button .list-container,
.product-shop .add-to-box .side_mark {
    /*display: none;*/
}
.catalog-product-view .breadcrumbs {
    margin: 0 0 30px 0;
}

.catalog-product-view ul.add-to-links .link-compare,
.catalog-product-view ul.add-to-links .link-compare:hover,
div.split-button.light a.change,
div.split-button.light a.change:hover{
    /*display: block;*/
    text-transform: uppercase;
    font-size: 1.4rem !important;
    font-weight: 500;
    padding: 0 0 5px 20px;
    width: 100px;
    left: -5px;
    height: 25px;
    position: relative;
    color: #c41230;
    line-height: 20px;
    border: none;
    text-indent: 0;
    overflow:visible;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-add-gallery.png') left 2px no-repeat;
}

.split-button .list-container {
    border: 1px solid #ccc;
    background: #fff;
    border-bottom: none;
}
.split-button .list-container ul {
    border: none;
    margin: 0;
}
.split-button .list-container li.new {
    background: none;
}
.split-button .list-container li {
    background: none !important;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    float: none !important;
    height: auto !important;
    padding: 0 !important;
}
.split-button .list-container li span,
.split-button .list-container li:hover span {
    color: #c41230;
    background: none;
    border: none;
    padding: 8px 10px;
    font-size: 1.4rem;
}
.split-button .list-container li:hover span {
    background: #eee;
}

.popup-block .block-content .form-buttons .button.btn-save {
    margin: 0 0 0 40px;
}

#product-static-blocks {
    clear: both;
    color: #000;
    margin: 50px 0 60px 0;
}
#product-static-blocks h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    line-height: 1;
    margin: 0 0 17px 0;
    padding: 0 0 8px 0;
    font-weight: 400;
}
#product-static-blocks h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1;
    background: #e8e8e7;
    padding: 10px;
    margin: 0 0 15px 0;
}
#product-static-blocks h4 {
    font-size: 1.2rem;
    line-height: 8px;
    margin: 0 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/brd-repeat-heading.png') repeat-x;
}
#product-static-blocks h4 span {
    background: #fff;
    padding: 0 6px;
}
.custom-examples {
    overflow: hidden;
    margin: 0 0 30px 0;
}
.custom-examples li {
    float: left;
    width: 107px;
    margin: 0 35px 0 0;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}
.custom-examples li:nth-child(3) {
    margin: 0;
}
.custom-examples li img {
    display: block;
    margin: 0 0 7px 0;
}
#btn-custom-choices.open,
#btn-custom-choices.closed {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-custom-sprite.png') 0 -25px no-repeat;
    width: 422px;
    height: 25px;
    display: block;
}
#btn-custom-choices.open {
    background-position: 0 0;
}
#need-help {
    overflow: hidden;
    margin: 0 0 15px 0;
}
#need-help ul {
    float: left;
    width: 235px;
}
#need-help li {
    margin: 0 0 5px 0;
}
#need-help p.chat-now {
    float: left;
    width: 170px;
    padding: 0 0 0 60px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/chat-live.png') left 0 no-repeat;
}
#custom-art-static {
    clear: both;
}
#custom-choices {
    display: none;
}
#customer-dedication {
    margin: 35px 0 0 0;
    overflow: hidden;
}

/* Shopping Cart */

.checkout-cart-index .breadcrumbs {
    display: none;
}
.checkout-cart-index .page-title .checkout-types {
    margin: 7px 0 0 0;
}

.cart .btn-proceed-checkout,
.cart .btn-proceed-checkout:hover {
    background: #c41230;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;

    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.cart .btn-proceed-checkout span span {
    padding: 10px 24px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
.cart .btn-proceed-checkout.no-checkout,
.cart .btn-proceed-checkout.no-checkout:hover {
    background: #afaeae;
}

#shopping-cart-table {
    border-bottom: 1px solid #cbcbcb;
}

table.cart-table {
    color: #010101;
}

table.cart-table a {
    text-decoration: none;
    color: #c41230;
}

table.cart-table th {
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #010101;
    border-bottom: none;
    padding: 10px 0;
}
table.cart-table td {
    border-top: 1px solid #cbcbcb;
    border-bottom: none;
    padding: 20px 0;
}
table.cart-table .duplicate-msg td { padding: 14px 15px 13px; background: #e5e5e5; border-top: none; }
table.cart-table .duplicate-msg .red { color: #c41230; }
td.td-img img {
    max-width: none;
}

table.cart-table td.td-img{
	text-align: center;
}

table.cart-table td.productinfo {
    padding: 20px 0 20px 25px;
}
div.qty-wrap input,
#shopping-cart-table td.qty input {
    width: 36px;
    border: 1px solid #ccc;
    text-align: center;
}
div.qty-wrap span,
#shopping-cart-table td.qty span {
    padding: 0 5px 0 0;
}
.td-sidemark textarea {
    width: 220px !important;
}
.td-sidemark p {
    margin: 0;
}
.sidemark-links {
    position: relative;
    margin: 20px 0 0 0;
}
.td-sidemark .edit-item,
.td-sidemark .btn-remove2,
.td-sidemark div.split-button a.change {
    background: none;
    color: #c41230;
    font-weight: 600;
    font-size: 1.2rem !important;
    text-transform: uppercase;
}
.checkout-cart-index .td-sidemark div.split-button.active a.change,
.checkout-cart-index .td-sidemark div.split-button a.change:hover,
.checkout-cart-index .td-sidemark div.split-button a.change {
    background: none;
    color: #c41230;
    font-weight: 600;
    font-size: 1.2rem !important;
    text-transform: uppercase;
}
.td-sidemark .edit-item,
.td-sidemark .btn-remove2 {
    border-right: 1px solid #c4c4c4;
    padding: 2px 13px 2px 0;
}
.td-sidemark .btn-remove2 {
    padding: 2px 13px;
}
/* Commented this out because it was breaking the "Move to Gallery" functionality on checkout/cart page--clicking "Move to Gallery" didn't do anything.
/*.td-sidemark .split-button strong,*/
/*.td-sidemark .split-button .list-container {*/
/*display: none;*/
/*}*/
.td-sidemark div.split-button.active,
.td-sidemark div.split-button {
    position: absolute;
    top: -1px;
    right: -11px;
}
.checkout-cart-index .td-sidemark div.split-button.active,
.checkout-cart-index .td-sidemark div.split-button {
    position: absolute;
    top: -1px;
    right: -4px;
}
.td-sidemark div.split-button a.change {
    padding: 0;
    display: inline;
    border: none;
}
.productinfo .cart-price,
.productinfo .qty-wrap,
.td-sidemark .cart-price,
.td-sidemark .qty-wrap {
    display: none;
}
td.price2 {
    font-weight: 600;
    font-size: 1.8rem;
}
.cart h2.product-name {
    border: none;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: normal;
}
.cart h2.product-name a {
    font-size: 1.4rem;
}

table.cart-table tfoot td {
    padding: 20px 0;
}

.shipping-note,
.shipping-note strong {
    color: #666;
    font-size: 1.2rem;
}

table.cart-table .btn-continue,
table.cart-table .btn-continue:hover {
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-left.png') left 4px no-repeat;
    padding: 0 0 0 10px;
    color: #c41230;
    text-transform: uppercase;
    float: left;
    line-height: 1;
    margin: -31px 0 0 0;

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
table.cart-table .btn-continue span {
    padding: 0;
}

table.cart-table .btn-empty:hover,
table.cart-table .btn-empty {
    background: #fff;
    color: #7e7e7e;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: 2px solid #7e7e7e;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 200px;

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
table.cart-table .btn-empty span span {
    padding: 10px 24px;
    margin: 1px;
    display: block;
    line-height: 1;
    border: 1px solid #7e7e7e;
}

table.cart-table .btn-update:hover,
table.cart-table .btn-update {
    background: #7e7e7e;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: 2px solid #7e7e7e;
    padding: 1px;
    line-height: 1;
    height: auto;
    width: 210px;

    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
table.cart-table .btn-update span span {
    padding: 10px 24px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}
.cart-collaterals {
    overflow: hidden;
}
.cart-collaterals .totals {
    float: right;
    width: 310px !important;
    position: relative;
}
.min-order {
    clear: both;
    color: #000;
    font-size: 1.4rem;
    padding: 10px 0;
    margin: 0;
    text-align: right;
}
#shopping-cart-totals-table {
    border-bottom: 7px solid #e8e8e7;
    width: 310px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}
#shopping-cart-totals-table td:first-child,
#shopping-cart-totals-table th:first-child {
    text-align: left;
}
.totals td,
.totals th { padding:0 0 10px 5px; }
#help_message{background: none repeat scroll 0 0 #fff;border: 2px solid #7e7e7e;overflow: hidden; position: relative;margin:0 0 -38px 0; padding: 10px;}
#help_message .min-order{text-align:left; padding-top:0; }
#help_message button.button span span{padding:10px 15px;}
#help_message button.right{float: right;}
#help_message .btn-close-tool-tip{display: block; float: right;padding: 5px;position: absolute;right:-2px;top:-10px;font-size: 15px;font-weight: bold;}
.cart-collaterals .crosssell {
    float: left;
    border: none;
    width: 620px !important;
}
.cart-collaterals .crosssell h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: #010101;
}
.crosssell ul li.item {
    text-align: center;
    width: 166px;
    margin: 0;
}
.crosssell ul li.item a.product-image {
    margin: 0 auto;
    float: none;
    width: 125px;
}
.crosssell h3.product-name {
    border: none;
}
.crosssell h3.product-name a {
    font-weight: normal;
    font-size: 1.3rem;
}
.crosssell ul.add-to-links {
    display: none;
}
.crosssell .btn-cart,
.crosssell .btn-cart:hover {
    background: none;
    border: none;
    font-weight: normal;
    font-size: 1.3rem;
    color: #c41230;
    text-transform: none;
    float: none;
    width: 115px;
    line-height: 1;
    padding: 0;
}

#register-btn {
    display: block;
    position: absolute;
    bottom: 168px;
    left: 139px;
    width: 118px;
    height: 118px;
    z-index: 9;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/btn-register.png') no-repeat;
    background-size: cover;
}

/* Overlay Styles */
#overlay {
    display: none;
    width: 700px;
    background: #fff;
    padding: 65px 20px;
    z-index: 1000000000000 !important;
}
#overlay .close {
    position: absolute;
    top: 5px;
    right: 5px;
}
#exposeMask {
    z-index: 1000000000 !important;
}
#nav-mask {
    display: none;
}

/*** Checkout ***/
.checkout-onepage-index .twelve.columns.col2r.content {
    margin: 0 0 20px 0;
    padding: 0 27px 0 0;
    width: 720px;
    border-right: 1px solid #bdbdbd;
}
.checkout-onepage-index h1 {
    font-family: Arapey;
    font-weight: normal;
    font-size: 30px;
    margin-bottom: 0;
}

.checkout-onepage-index h2 {
    background-color: #e6e6e6;
    color: #6e6e6e !important;
    padding: 22px;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.step-title {
    padding: 0 !important;
}

.opc .step {
    border: none;
}

.opc .step-title {
    border-bottom: none !important;
    padding: 12px;
    height: 63px;
}

#shipping_form_xshipping_xshipping:first-child {
    display: none;
}
.checkout-onepage-index .section {
    margin-bottom: 7px;
    width: 100%;
    overflow: hidden;
}
.checkout-onepage-index .section.allow.active {
    border: 14px solid #e8e8e7;
}
.checkout-onepage-index .section.allow {
    width: 100%;
    border: none;
    background: #e6e6e6;
}
.checkout-onepage-index .section.allow h2 {
    color: #c51835 !important;
}
.checkout-onepage-index .section.active h2 {
    background: #f0f0f0;
    color: #000 !important;
}

.checkout-onepage-index .opc label {
    display: inline-block;
    position: relative;
    font-weight: normal;
    padding: 0 0 5px 0;
}
.checkout-onepage-index .opc input[type=text],
.checkout-onepage-index .opc textarea {
    border: 2px solid #ccc;
}
#shipping-new-address-form div.field {
    margin: 10px 0 0 0;
}
#checkout-shipping-method-load textarea,
#checkout-shipping-method-load input[type=text] {
    width: 440px;
}
.checkout-onepage-index em {
    position: absolute;
    right: -6px;
    color: #F00;
}

.checkout-onepage-index .checkout-required-fields {
    float: right;
}

.checkout-onepage-index .checkout-required-fields span {
    color: #F00;
}

.checkout-onepage-index .block-title {
    font-size: 15px;
    border: none !important;
    padding-bottom: 20px;
    font-family: Georgia;
}

.checkout-onepage-index .block-content {
    font-size: 17px;
    padding-left: 7px;
}

.checkout-onepage-index .address-title {
    text-transform: uppercase;
    padding: 0 0 10px 0;
    color: #616161;
}
.checkout-onepage-index .opc #p_method_secure,
.checkout-onepage-index .opc label[for="p_method_secure"] {
    display:none;
}
#co-billing-form li {
    margin: 0 0 12px 0;
}
#co-billing-form li.control input {
    width: 12px;
    margin: 2px 9px 0 0;
}
#co-shipping-method-form select {
    margin: 0px 0 5px 0;
}
.opc #billing-new-address-form input,
.opc #billing-new-address-form select {
    margin: 0;
}
#checkout-payment-method-load dt {
    margin: 10px 0;
}
strong.receiving-note {
    display: block;
    width: 470px;
    width: 100%;
}
#shipping-new-address-form li {
    margin-bottom: 10px ;
}
.block-progress dd {
    font-size: 1.4rem;
    color: #000;
}
.block-progress dd p {
    margin: 0 0 7px 0;
}
.block-progress .block-title {
    font-family: Arapey;
    margin: 20px 0 0 0;
}
.block-progress dt {
    text-transform: uppercase;
    padding: 0 0 10px 0;
    color: #616161;
    font-size: 1.4rem;
}
.block-progress dd.hide-step,
.block-progress dt.hide-step {
    display: none;
}
.opc-block-progress strong {
    font-weight: normal;
    color: #000;
}
.opc-block-progress table {
    text-align: left;
    color: #000;
}
.opc-block-progress th,
.opc-block-progress td {
    line-height: 1.6;
}
.opc-block-progress th {
    padding: 10px 0 0 0;
}
dt.complete {
    text-transform: uppercase;
    padding: 0 0 10px 0;
}


.checkout-onepage-index .address-content {
    font-weight: bold;
    margin-bottom: 45px !important;
}

#shipping-method-buttons-container button,
#billing-buttons-container button,
#shipping-buttons-container button,
#payment-buttons-container button,
#review-buttons-container button
{
    float: right;
    width: 200px;
    height: 40px;
    padding: 0 2px;
}

.opc button.button {
    background: #7e7e7e;
    border: 1px solid #7e7e7e;
}
.opc button.button span span {
    background: #7e7e7e;
}

.checkout-onepage-index .back-link {
    float: left;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 20px;
}

.checkout-onepage-index .back-link a {
    background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/checkout-back.png');
    background-repeat: no-repeat;
    display: block;
    height: 20px;
    padding-left: 27px;
}
.checkout-onepage-index .buttons-set small {
    display: none;
}

#shipping_form_xshipping_xshipping>li:first-child {
    display: none;
}

#payment_form_ccsave li {
    clear: both;
    overflow: hidden;
    margin: 10px 0 0 0;
}

#payment_form_ccsave .v-fix {
    width: 115px !important;
    margin: 0 20px 0 0 !important;
    padding: 0 !important;
    float: left;
    position: relative;
}

.checkout-onepage-success button.button {
    margin: 0 0 20px 0;
}

#filter-wrap {
    display: none;
}

#checkout-review-table th {
    font-weight: 600;
    padding-left: 0;
    padding-right: 0;
    color: #000;
}
#checkout-review-table tbody td {
    vertical-align: top;
    color: #000;
    padding: 10px 0;
}
#checkout-review-table thead th:nth-child(2) {
    width: 300px;
    padding: 0 20px;
}
#checkout-review-table tbody td:first-child {
    width: 100px;
}
#checkout-review-table tbody td img {
    max-width: inherit;
}
#checkout-review-table tbody td,
#checkout-review-table tbody td:nth-child(2) {
    width: auto;
    padding: 10px 10px 10px 20px;
}

#checkout-review-table tbody td:nth-child(5),
#checkout-review-table thead th:nth-child(5) {
    text-align: right;
    padding: 10px 0 0 0;
}
#checkout-review-table tbody td:nth-child(3),
#checkout-review-table tbody td:nth-child(4),
#checkout-review-table thead th:nth-child(3),
#checkout-review-table thead th:nth-child(4) {
    padding: 10px 0 0 30px;
    text-align: right;
}
#checkout-review-table td.td-img {
    width: 150px;
    text-align: center;
}
#checkout-review-table .product-name {
    border: none;
    margin: 0;
    padding: 0 0 10px 0;
}
#checkout-review-table tfoot span,
#checkout-review-table tfoot td {
    font-size: 1.4rem;
    color: #000;
    padding: 5px 8px 5px 20px;
}
#opc-review table strong span.price,
#checkout-review-table tfoot strong {
    color: #000;
}

#opc-review tr.last {
    border: none;
}

.opc dl dd input#po_number {
    float: none;
}

/* New Catalog & Edit Catalog */

#new-catalog-front-page,
#new-catalog-back-page {
    position: relative;
    width: 375px;
    height: 490px;
    border: 1px solid #000;
    padding: 120px 20px 20px 20px;
    text-align: center;
    float: left;
    margin: 40px 0 0 7px;
}

#new-catalog-front-page input, #new-catalog-back-page input{
    margin: 0 auto 15px auto !important;
}

#new-catalog-front-page { /*margin-left: 60px;*/ }
#new-catalog-back-page { margin-left: 50px; padding-top: 237px; }

.mycatalog-index-new .page-title,
.mycatalog-index-edit .page-title
{
    position: absolute;
    top: -45px;
    font-size: 22px;
    font-weight: bold;
    width: 375px;
    text-align: center;
    left: 0;
}

#overlay .mycatalog_placeholder,
.mycatalog_placeholder {
    margin: 0 auto;
    width: 105px;
    height: 78px;
    background-color: #cfcfcf;
    text-align: center;
    font-size: 20px;
    padding-top: 25px;
    font-weight: 600;
}

.new-catalog-bottom {
    padding: 0 11px 0 0;
}

.new-catalog-continue, .new-catalog-continue:hover {
    float: right;
    margin-right: 0;
}

.new-catalog-cancel, .new-catalog-cancel:hover {
    float: right;
    background: #7e7e7e;
}

#mycatalog_title_label
{
    width: 5px;
    float: left;
    position: relative;
    left: 55px;
    top: 10px;
    color: #f00;
}

.new-catalog-desc {
    float: right;
    text-align: right;
    margin-bottom: 10px;
}

#fileToUpload {
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    display: none;
    background-color: #00f;
    top: 217px;
    left: 0;
    width: 100%;
}

/* CMS Pages */

.cms-our-product.logged-out .std {
    width: 94%;
}

.categorypath-about-html h1 {
    display: none;
}
.categorypath-about-html h2 {
    font-size: 3.2rem;
    font-family: Arapey;
    font-weight: normal;
    line-height: 1;
    margin: 13px 0 15px 0;
}

.categorypath-about-html .left-col {
    float: left;
    width: 600px;
    margin: 0 20px 0 0;
}
.categorypath-about-html .right-col {
    float: right;
    width: 308px;
}
.categorypath-about-html h3 {
    font-size: 1.3rem;
}
.categorypath-about-html .category-view ul {
    list-style: disc;
    margin: 0 0 0 15px;
}

.category-trade-show ul.col-4 {
    overflow: hidden;
    margin: 0 0 60px 0;
}
.category-trade-show ul.col-4 li {
    float: left;
    width: 22%;
    margin: 0 30px 0 0;
    height:400px;
}
.category-trade-show ul.col-4 li:last-child,
.category-trade-show ul.col-4 li.end-of-line {
    margin: 0;
}
.category-trade-show h3 {
    font-size: 1.3rem;
    margin: 20px 0 0 0;
}
.category-trade-show h3 a { color:#000; }
.category-trade-show ul.col-4 p {
    margin: 0;
}

.category-hospitality-design .margin-right {
    margin: 0 8px 0 0;
}
.category-hospitality-design .left-col {
    float: left;
    width: 615px;
    margin: 30px 0;
}
.category-hospitality-design .right-col {
    float: left;
    width: 215px;
    margin: 0 0 0 22px;
}

.category-custom-project-design .container .sixteen.columns {
    width: 970px;
    color: #000;
}
.category-custom-project-design h1 {

}
.category-custom-project-design .left-col {
    float: left;
    width: 638px;
}
.category-custom-project-design .left-col img {
    margin: 0 0 25px 0;
}
.category-custom-project-design .left-col img:first-child {
    margin: 0 8px 25px 0;
}
.category-custom-project-design .right-col {
    float: right;
    width: 300px;
    padding: 0 0 0 20px;
    border-left: 1px solid #ccc;
}

.contact-col h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
}
.contact-col .adr {
    float: left;
    width: 55%;
    margin: 0 0 20px 0;
    padding: 13px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.contact-col .adr.adr-2 {
    width: 45%;
}
.contact-col .adr li {
    line-height: 11px;
}
.contact-col .contact-form {
    clear: both;
}

.category-customer-service dd {
    margin: 0 0 20px 0;
}
.category-customer-service .disc li {
    margin: 0 0 3px 0;
}

.large-link {
    font-size: 1.7rem;
    font-weight: 600;
    display: block;
    margin: 25px 0 0 0;
}
.caption {
    font-size: 1.6rem;
    color: #d2021f;
    margin: 30px 0 0 0;
}


.cms-sales-rep-locator .buttons-set button {
    margin: 0 0 30px 0;
}
.cms-sales-rep-locator form li {
    margin: 0;
}
.cms-sales-rep-locator form li .field {
    margin: 0 0 15px 0;
}

.hd_service_imgs img {
    margin: 0 20px 0 0;
}

#products-list li.item div.rightpart.eight.columns{
    float: left;
    width: 390px;
}

#products-list li.item div.rightpart .product-description{
    margin-top:20px;
    color: #666666;
}

div.cart-cell{
    position:relative;
    padding-top:30px;
    float:right;
}

div.cart-cell div.item-actions{
    text-align:right;
    clear:both;
    padding-top:15px;
}

div.cart-cell .remove-link{
    position:absolute;
    right:0;
    top:0;
}

#wishlist-table span.checkbox{
    background-color: #E6E6E6;
    display: block;
    padding: 4px 4px 4px 5px;
    width: 23px;
}
#wishlist-table .product-name{
    margin-bottom:18px;
}
#wishlist-table p.product-ids{
    margin: 10px 0;
}

#wishlist-table div.wishlist-management{
	margin-top: 20px;
	margin-bottom: 1px;
}

#wishlist-table textarea{
    width: 295px !important;
    padding: 8px 10px;
    margin-top: 20px;
    font-style: italic;
}
#wishlist-table .link-edit{
    width: auto;
    margin: 0;
}
.wishlist-management button.btn-share, .wishlist-management button.btn-share:hover,
.wishlist-management button.btn-add, .wishlist-management button.btn-add:hover,
.wishlist-management button.btn-update, .wishlist-management button.btn-update:hover{
    position:static;
}
.wishlist-management button.btn-share, .wishlist-management button.btn-add, .wishlist-management button.btn-update{
    float:right;
}
.wishlist-management button.btn-update{
    margin-right:10px;
}
.wishlist-management button.btn-share{
    float:left;
}
.wishlist-management .buttons-set{
    clear:both;
}
.wishlist-management .table-caption{
    margin-top:5px;
}
.wishlist-management .gallery-link{
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/link-back.png') left center no-repeat;
    font-weight:bold;
    padding-left:18px;
    margin: 0 0 15px 0;
}

.wishlist-management .new-catalog-link{
    display:block;
    float:right;
    margin-top: 5px;
    line-height: 12px;
}
.wishlist-management #create-quick-catalog { margin-right: 10px; padding-right: 10px; border-right: 1px solid #c41230; }
.wishlist-management .link-edit{
    padding-left:18px;
    line-height:18px;
    background: none;
    display: inline;
    margin:0;
    vertical-align: inherit;
    font-size: 1.3rem;
    text-transform: none;
    font-family: "Source Sans Pro";
}
.cart-cell span.superscript{
    font-size: 12px;
    vertical-align: text-top;
}

.catalog-popup{
    display: none;
}

.appriseOuter ul{
    height: 150px;
    width: 300px;
    overflow: auto;
}
.appriseOuter ul li{
    margin:0;
}

.appriseOuter ul a{
    display: block;
    padding: 5px 15px;
    border: 1px solid #999999;
    border-bottom: 0;
    color: #333333;
    text-align: left;
}

.appriseOuter ul li:last-child{
    border-bottom: 1px solid #999999;
}

.appriseOuter ul a.active-gallery{
    background: #ccc;
}

/* Apprise overlay overides */
.appriseOuter { padding-top: 20px !important; padding-bottom: 25px !important; }
.appriseInner {
    padding-top: 0 !important;
    font-family: "Source Sans Pro";
    color: #000 !important;
    text-align: center;
}
.appriseInner button:hover,
.appriseInner button {
    display: block;
    margin: 0;
}
.appriseInner button[value=ok], .appriseInner button[value=ok]:hover {
    margin-left: 15px;
}

/* Apprise */
.mycatalog-index-index .appriseOverlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
}

.mycatalog-index-index .appriseOuter {
    background: #eee;
    border: 1px solid #fff;
    box-shadow: 0px 3px 7px #333;
    -moz-box-shadow: 0px 3px 7px #333;
    -webkit-box-shadow: 0px 3px 7px #333;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
    position: absolute;
    z-index: 99999999;
    min-width: 200px;
    min-height: 50px;
    max-width: 75%;
    position: fixed;
    display: none;
}

.mycatalog-index-index .appriseOuter .aButtons,.aInput {
    width: 250px;
    margin: 0 auto;
    overflow: hidden;
}

.mycatalog-index-index .appriseInner {
    padding: 20px 20px 0 20px;
    color: #333;
    text-shadow: 0px 1px 0px #fff;
    text-align: center;
}
.mycatalog-index-index .appriseInner button:hover,
.mycatalog-index-index .appriseInner button {
    color: #a2a2a2;
    /*margin: 0 15px 0 0;*/
    outline: medium none;
    padding: 2px;
    width: 117px;
    z-index: 10;
    background: #fff;
    border: 2px solid #a2a2a2;
}
.mycatalog-index-index .appriseInner button[value=ok] {
    background: #a2a2a2;
    padding: 1px;
    border: 1px solid #a2a2a2;
}
.mycatalog-index-index .appriseInner button span span {
    background: #fff;
    padding: 1px 15px;
    font-size: 1.2rem;
}
.mycatalog-index-index .appriseInner button[value=ok] span span {
    border: 1px solid #fff;
    background: #a2a2a2;
    color: #fff;
    padding: 3px 15px;
}

.appriseInner .min-order-messaging ul {
    height:auto;
    width:auto;
    margin-bottom:10px;
    border-bottom:none;
}

.appriseInner .min-order-messaging ul li:last-child { border:none; }

.appriseInner .min-order-messaging hr { clear:both; }

.mycatalog-index-index .aButtons,.aInput {
    margin: 20px 10px 0px 10px;
    text-align: center;
}

.mycatalog-index-index .aTextbox {
    border: 1px solid #aaa;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -khtml-border-radius: 4px;
    box-shadow: 0px 1px 0px #fff;
    -moz-box-shadow: 0px 1px 0px #fff;
    -webkit-box-shadow: 0px 1px 0px #fff;
    width: 180px;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
}

.block-account.nav-btm,
.mobile-arrow,
#search-t-m,.show-tablet {
    display: none;
}


.gallery-index-index .appriseOuter button.button[value=ok],
.gallery-index-index .appriseOuter button.button:hover {
    background: #c41230;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.gallery-index-index .appriseOuter button.button[value=ok] span span {
    padding: 10px 24px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
}

.mycatalog-index-edit .breadcrumbs {
    display: none;
}

/* 404 */
.cms-index-noroute .rightcol {
    display: none;
}

/****** CAREERS - LANDING ******/
#careers-wrap .active-nav { color: #000; }
#careers-landing .main-content { width: 932px; margin-right: 0; }
#careers-landing h3 { float: left; font: 28px/20px 'Arapey'; letter-spacing: .02em; text-transform: none; }
#careers-landing span { display: block; }
#careers-landing .meet-team,
#careers-landing .view-openings { float: right; padding-right: 11px; font-weight: 600; line-height: 28px; letter-spacing: .05em; text-transform: uppercase; background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/single-arrow-right.gif') no-repeat right center; }
#careers-landing #core-values-slider li { color: #fff; background: #000;}
#careers-landing #core-values-slider .slider-text { float: left; font-weight: 200; width: 26.15%; margin: 12.4% 1.85% 0; font-size: 18px; letter-spacing: .06em; color: #999; text-align: center; }
#careers-landing #core-values-slider h2 { margin-bottom: 6px; font-weight: 200; font-size: 40px; letter-spacing: .025em; color: #fff; }
#careers-landing #core-values-slider #opportunity-header { letter-spacing: -.02em; }
#careers-landing #core-values-slider span { display: block; text-transform: uppercase; }
#careers-landing #core-values-slider p { margin-top: 12.5%; padding: 0 8px; font-style: italic; font-family: 'Arapey'; line-height: 20px; }
#careers-landing #core-values-slider img { float: right; width: 70.15%; }
#careers-landing #intro-text { display: inline-block; width: 100%; margin-top: 15px; }
#careers-landing #intro-text .left-content { float: left; width: 71.5%; padding-right: 42px; border-right: 1px solid #ccc; }
#careers-landing #intro-text .left-content p { margin-bottom: 15px; line-height: 24px; }
#careers-landing #intro-text .left-content .view-openings { float: left; }
#careers-landing #intro-text .right-content { float: left; width: 28.4%; padding-top: 15px; padding-left: 10px; }
#careers-landing #intro-text .right-content p { font: italic 18px/24px 'Arapey'; }
#careers-landing .view-openings.mobile,
#careers-landing .meet-team.mobile,
#careers-landing #our-values .bx-wrapper:nth-child(2n) { display: none; }
#careers-landing #our-team { clear: both; display: inline-block; margin-top: 40px; padding-top: 25px; border-top: 1px solid #ccc; }
#careers-landing #our-team ul { clear: both; display: inline-block; margin-top: 15px; }
#careers-landing #our-team li { float: left; width: 25%; }
#careers-landing #our-team li a { display: inline-block; color: #000; }
#careers-landing #our-team li .member-img-wrap { position: relative; width: 100%; height: 241px; }
#careers-landing #our-team li .member-img-wrap:after {
    content: '\A';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 56%;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0,0,0,0.7)));
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);
    background: -o-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);
    background: -ms-linear-gradient(top, transparent 0%, rgba(0,0,0,0.7) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='transparent', endColorstr='#000000', GradientType=0 );
    opacity: 0;
    transition: all .5s;
    -webkit-tansition: all .5s;
}
#careers-landing #our-team li .member-img-wrap:hover:after { opacity: 1; }
#careers-landing #our-team li a:hover .member-name { color: #c41230; }

#careers-landing #our-team .member-name { margin-top: 5px; font-weight: 600; font-size: 16px; letter-spacing: .02em; text-transform: uppercase; }
#careers-landing #our-team .member-title { font-style: italic; letter-spacing: .02em; }
#careers-landing #our-values { clear: both; display: inline-block; margin-top: 10px; padding-top: 30px; border-top: 1px solid #ccc; }
#careers-landing #our-values .bx-wrapper { clear: both; }
#careers-landing #our-values .bx-viewport { height: auto !important; }
#careers-landing .our-values-slider { margin-top: 15px; }
#careers-landing .our-values-slider.mobile { display: none; }
#careers-landing #our-values .bx-controls-direction a { top: 45%; width: 18px; height: 34px; }
#careers-landing #our-values .bx-wrapper .bx-next { right: -46px; }
#careers-landing #our-values .bx-wrapper .bx-prev { left: -46px; }
#careers-landing #our-values .view-openings.mobile { display: none; }
#careers-landing #our-culture { margin-top: 40px; padding-top: 25px; border-top: 1px solid #ccc; }
#careers-landing #our-culture p { clear: both; margin-bottom: 15px; padding-top: 3px; }
#careers-landing #our-culture ul li { float: left; width: 24%; height: 97px; margin-right: 10px; padding: 15px 0 25px 40px; background: #f3f3f3 url("http://www.wendoverart.com/skin/frontend/wendover/default/images/career-posting-icon.gif") no-repeat left top; }
#careers-landing #our-culture ul li:last-child { margin-right: 0; }
#careers-landing #our-culture ul .job-title { font-weight: 600; font-size: 14px; color: #C41230; }
#careers-landing #our-culture ul .job-location { font-style: italic; line-height: 24px; }
#meet-the-team #our-vision,
#careers-landing #our-vision { clear: both; float: left; margin: 38px 0 50px; padding: 50px 14.05% 0; font: italic 20px/26px 'Arapey'; text-align: center; border-top: 1px solid #ccc; }

/****** JOB DETAIL ******/
.job-detail .container .sixteen.columns { width: 100%; margin: 0; }
.job-detail #careers-wrap { display: inline-block; width: 100%; margin-top: 15px; }
.job-detail .breadcrumbs { display: none; }
.job-detail h1, .job-detail h2, .job-detail h3, .job-detail h4, .job-detail h5, .job-detail h6 { font-weight: 600; text-transform: uppercase; }
.job-detail #careers-nav { text-align: center; }
.job-detail a#careers-nav { display: none; padding-right: 10px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-right.png") no-repeat right center; text-transform: uppercase; }
.job-detail #careers-nav > li { display: inline-block; font-size: 16px; text-transform: uppercase; }
.job-detail #careers-nav li:nth-child(2) { margin: 0 20px; padding: 0 20px; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
.job-detail #careers-nav a:link,
.job-detail #careers-nav a:visited { color: #c41230; }
.job-detail #careers-nav a.current,
.job-detail #careers-nav a:hover { color: #000; }
.job-detail h1 { margin-bottom: 6px; font-size: 16px; }
.job-detail .back-to-openings { display: inline-block; height: 22px; margin-bottom: 20px; padding: 1px 0 1px 30px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/checkout-back.png") no-repeat left center; text-transform: uppercase; }
.job-detail .main-content { float: left; width: 710px; margin-right: 20px; color: #000; }
.job-detail #job-responsibilities > li, .job-detail #job-qualifications > li { padding-left: 38px; text-indent: -7px; }
.job-detail .qualification-statement { font-weight: 600; text-transform: uppercase; color: #c41230; }
.job-detail .job-apply { margin: 25px 0; padding: 22px 0; background: #e8e8e8; font-weight: 600; font-size: 14px; text-align: center; text-transform: uppercase; }
.job-detail .wag-vision { margin-bottom: 40px; text-align: center; font: italic 20px 'Arapey'; }
.job-detail .right-col { float: right; padding-top: 18px; }
.job-detail .job-social-share ul { margin: 20px 0 35px; }
.job-detail .job-social-share li { display: inline-block; position: relative; width: 28px; height: 28px; margin: 0 10px 0 5px; text-indent: -999em; }
.job-detail .job-social-share li span { display: block; position: absolute; left: 0; top: 0; width: 28px; height: 28px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/social-icons.png") no-repeat left top; }
.job-detail .job-social-share #fb span { background-position: -42px top; }
.job-detail .job-social-share #tw span { background-position: -83px top; }
.job-detail .job-social-share #li span { background-position: -121px top; }
.job-detail .job-openings ul { margin-bottom: 30px; color: #000; }
.job-detail .job-openings li { margin-bottom: 20px; }
.job-detail .job-openings .job-location { color: #878787; }

/****** MEET THE TEAM ******/
#meet-the-team .main-content {
    min-width: 930px;
    max-width: 930px;
}
#meet-the-team h1 {
    font-family: Arapey;
    font-size: 28px;
    font-weight: normal;
    line-height: 1;
    text-transform: none;
    margin-bottom: 20px;
}
#meet-the-team .intro-content {
    line-height: 1.7;
    margin-bottom: 30px;
}
#meet-the-team .bx-wrapper {
    position: relative;
}
#meet-the-team .bx-next,
#meet-the-team .bx-prev {
    position: absolute;
    top: 226px;
    display: block;
    width: 14px;
    height: 27px;
    text-indent: -9999px;
    font-size: 1px;
}
#meet-the-team .bx-prev {
    left: -40px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/icon-arrow-left.png') no-repeat;
}
#meet-the-team .bx-next {
    right: -40px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/icon-arrow-right.png') no-repeat;
}
.member-list {
    margin: 0;
    width: 100%;
}
#team-member-slider { height: auto; }
#team-member-slider .member {
    float: left;
    width: 16.6666666666%;
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
    margin: 0;
    line-height: 1;
    max-height: 548px;
}
#team-member-slider .member.open {
    width: 66.66666666666%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}
#team-member-slider .member-photo {
    position: absolute;
    top: 0;
    left: 0;
    max-width: inherit;
}
#team-member-slider .member-photo-mobile {
    display: none;
}
#team-member-slider .member-info {
    padding: 90px 56px 0 225px;
    position: relative;
    height: 480px;

}
.member-info h2 {
    font-family: Arapey;
    font-size: 2.8rem;
    line-height: 1;
    padding: 0 0 6px 0;
    font-weight: normal;
    margin: 0;
}
.member .title {
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0;
}
#team-member-slider .member blockquote {
    border: none;
    font-size: 1.9rem;
    line-height: 1.5;
    color: #000;
    margin: 26px 0 40px 0;
    padding: 0;
    font-family: "Source Sans Pro";
}
#team-member-slider .member .wide-pic blockquote {
    margin: 26px 0 40px 30px;
}
#team-member-slider .member-info.info-type-2 {
    padding: 30px 35px 0 225px;
}
#team-member-slider .member-info.info-type-2 blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 25px 0;
    font-style: normal;
}
.member-info.info-type-2 .member-sub-images {
    padding: 0 0 15px 0;
}
.member-info.info-type-2 .member-sub-images img:first-child {
    padding: 0 30px 0 0;
}
.member .image-caption {
    background: #fff;
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 14px 6px 0 0;
    height: 68px;
}
.member .image-caption h3 {
    font-weight: 600;
    font-size: 1.6rem;
}

#team-member-slider .member span.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    display: none;
}
#team-member-slider .member.show-mask span.mask {
    display: block;
}
#team-member-slider .member.open.show-mask span.mask {
    display: none;
}

#team-member-slider .member.hide {
    display: none;
}

.close-column {
    position: absolute;
    top: 30px;
    right: 36px;
    z-index: 5;
    display: none;
    width: 16px;
    height: 16px;
    text-indent: -9999px;
    font-size: 1px;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/icon-x.png') no-repeat;
}
.close-column img {
    display: block;
}
#team-member-slider .member.open  .close-column {
    display: block;
}
.member .join-team {
    float: right;
    text-transform: uppercase;
    padding: 0 10px 0 0;
    font-weight: 600;
    clear: both;
    background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/icon-arrow-right-red.png') right 1px no-repeat;
}

/****** CAREERS - JOIN THE TEAM ******/
#join-the-team .main-content { width: 932px; margin-right: 0; }
#join-the-team h1 { font: 28px/20px 'Arapey'; letter-spacing: .02em; text-transform: none; }
#join-the-team h3 { float: left; font: 28px/20px 'Arapey'; letter-spacing: .02em; text-transform: none; }
#join-the-team #join-the-team-slider { margin-top: 20px; }
#join-the-team #join-the-team-slider li { display: inline-block; width: 100%; color: #fff; background: #000;}
#join-the-team #join-the-team-slider .slider-text { float: left; font-weight: 200; width: 21.15%; margin: 4% 1.8% 0; font-size: 18px; letter-spacing: .06em; color: #999; text-align: center; }
#join-the-team #join-the-team-slider h2 { margin-bottom: 6px; font-weight: 200; font-size: 40px; letter-spacing: .025em; color: #fff; }
#join-the-team #join-the-team-slider p { margin-top: 12.5%; padding: 0 8px; font-style: italic; font-family: 'Arapey'; line-height: 20px; }
#join-the-team #join-the-team-slider img { float: right; width: 75.1%; }
#join-the-team #intro-text { margin-top: 12px; line-height: 24px; letter-spacing: -.02em; }
#join-the-team #current-openings { margin-top: 40px; padding-top: 30px; border-top: 1px solid #ccc; }
#join-the-team #current-openings h3 { float: none; margin-bottom: 30px; }
#join-the-team #current-openings ul { float: left; width: 27.85%; margin-right: 5.4%; }
#join-the-team #current-openings ul li { margin-top: 20px; }
#join-the-team #current-openings ul .job-title { font-weight: 600; font-size: 14px; color: #C41230; }
#join-the-team #current-openings ul .job-location { display: block; margin-top: 3px; font-style: italic; line-height: 24px; }
#join-the-team .job-apply { clear: both; }
#join-the-team #our-vision { clear: both; float: left; margin: 38px 0 50px; padding: 50px 14.05% 0; font: italic 20px/26px 'Arapey'; text-align: center; border-top: 1px solid #ccc; }

/****** Career Email ******/
#career-form label em { color:#c41230; }
#career-form #careersemail-submit { float:none; }

/****** INSPIRATION CONTEST ******/
.cms-inspiration header { height: auto; }
.cms-inspiration .messages { position: absolute; }
#inspiration-wrap { color: #000; }
#inspiration-wrap h2 { font: 28px/20px 'Arapey'; letter-spacing: .02em; text-transform: none; }
#inspiration-wrap p { line-height: 20px; }
#inspiration-wrap .banner-credit p { text-align: right; }
#inspiration-wrap #top-banner { width: 1256px; height: 500px !important; overflow: hidden; }
#inspiration-wrap #top-banner img { width: 100%; }
#inspiration-wrap #top-content { text-align: center; }
#inspiration-wrap #top-content h1 { margin-top: 30px; font-weight: 300; font-size: 45px; line-height: 24px; letter-spacing: -.02em; color: #c41230; }
#inspiration-wrap #top-content p { font: italic 22px/25px 'Arapey'; }
#inspiration-wrap .left-border,
#inspiration-wrap .right-border { float: left; width: 40.1%; margin: 20px 0 -20px; border-top: 1px solid #ccc; }
#inspiration-wrap #submit-photo #open-form { float: left; position: relative; width: 166px; height: 41px; margin: 0 13px -20px; text-indent: -999em; }
#inspiration-wrap #submit-photo #open-form span { position: absolute; left: 0; top: 0; width: 166px; height: 41px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/open-form-btn.gif") no-repeat; }
#inspiration-wrap #submit-photo #form-wrap { clear: both; display: none; /*display: inline-block;*/ margin-top: -20px; padding: 40px 8.5% 20px; background: #eee; }
#inspiration-wrap #submit-photo #form-wrap h2 { float: left; }
#inspiration-wrap #submit-photo #form-wrap .close-btn { float: right; display: inline-block; position: relative; width: 16px; height: 16px; text-indent: -999em; }
#inspiration-wrap #submit-photo #form-wrap .close-btn span { position: absolute; left: 0; top: 0; width: 16px; height: 16px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/icon-x.png") no-repeat; }
#inspiration-wrap #submit-photo #form-wrap p { clear: both; margin-bottom: 10px; }
#inspiration-wrap #submit-photo #required-text { font: italic 14px 'Arapey'; }
#inspiration-wrap #submit-photo form { display: inline-block; width: 100%; margin-top: 10px; }
#inspiration-wrap #submit-photo form .validation-advice { width: 67.5%; margin-left: 32.75%; color: #c41230; }
#inspiration-wrap #submit-photo .form-column { float: left; width: 48.5%; }
#inspiration-wrap #submit-photo #column-1 { margin-right: 3%; }
#inspiration-wrap #submit-photo .form-field-wrap { margin-bottom: 15px; }
#inspiration-wrap #submit-photo label { float: left; width: 32.75%; line-height: 23px; }
#inspiration-wrap #submit-photo input,
#inspiration-wrap #submit-photo textarea { width: 67.25%; height: 23px; padding: 3px; border: 1px solid #ccc; }
#inspiration-wrap #submit-photo textarea { height: auto; }
#inspiration-wrap #submit-photo #file-upload label { width: 67.5%; margin-left: 32.75%; font: italic 14px 'Arapey'; }
#inspiration-wrap #submit-photo #file-upload-wrap { clear: both; display: inline-block; position: relative; width: 140px; height: 27px; margin-top: 10px; margin-left: 32.75%; }
#inspiration-wrap #submit-photo #file-upload-wrap span { position: absolute; left: 0; top: 0; width: 140px; height: 27px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/submit-photo-form-btns.png") no-repeat left top; cursor: pointer; }
#inspiration-wrap #submit-photo #file-upload p { display: none; margin-top: 5px; margin-left: 32.75%; }
#inspiration-wrap #submit-photo #file-upload .validation-advice { width: auto; margin-left: 0; }
#inspiration-wrap #submit-photo #form-wrap .button-wrap { clear: both; display: inline-block; width: 100%; margin-top: 5px; padding-top: 20px; border-top: 1px solid #ccc; }
#inspiration-wrap #submit-photo #form-wrap .button-wrap input { width: 140px; height: 27px; margin-left: 67.5%; font-size: 0; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/submit-photo-form-btns.png") no-repeat left -58px; border: none; }
#inspiration-wrap #contest-desc-wrap { clear: both; display: inline-block; margin-top: 40px; }
#inspiration-wrap #contest-desc { float: left; width: 53%; margin-right: 3.5%; }
#inspiration-wrap #contest-desc a { font-weight: 600; font-size: 14px; text-transform: uppercase; }
#inspiration-wrap #contest-desc a:link { color: #c41230; }

#months-winner-wrap { margin-top: 40px; margin-bottom: 25px; padding-top: 30px; border-top: 1px solid #ccc; }
#months-winner-wrap h2 { float: left; }
#months-winner-wrap #select-wrap { float: right; }
#months-winner-wrap #select-wrap span { float: left; line-height: 21px; }
#months-winner-wrap #select-wrap select { float: right; width: 150px; margin-left: 5px; color: #000; }
#months-winner-wrap .winners-wrap { clear: both; display: inline-block; width:100%; }
#months-winner-wrap .months-winner { float: left; margin-right: 25px; max-width:472px; }
#months-winner-wrap .months-runners { float: left; position: relative; width:auto; max-width:472px; }
#months-winner-wrap .months-runners .bx-viewport { height: auto !important; }
#months-winner-wrap .runners-info span { float: left; clear: left; }
#months-winner-wrap .runners-info .designer-name { font: italic 18px/20px 'Arapey'; }
#months-winner-wrap .runners-info .project-name { font: 700 13px/20px 'Open Sans'; }
#months-winner-wrap .runners-info .location { font: 600 12px/20px 'Open Sans'; }
#months-winner-wrap .runners-slider ul { margin: 0; }
#months-winner-wrap .runners-slider ul li { float: left; position: relative; margin: 0 0 1% 0; }
#months-winner-wrap .runners-slider ul li:nth-child(odd) { clear:left; }
#months-winner-wrap .runners-slider ul li:nth-child(even) { margin-left: 1%; }
#months-winner-wrap .runners-slider .runners-info {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 75px 10px 10px;
    background: rgb(0, 0, 0);
    background: transparent;
    background: rgba(0, 0, 0, 0.6);/* FF3+,Saf3+,Opera 10.10+,Chrome,IE9*/
}
#months-winner-wrap .runners-slider .runners-info span { color: #fff; }
#months-winner-wrap .runners-slider ul li:hover .runners-info { display: inline-block; }
#months-winner-wrap .months-runners .bx-wrapper .bx-pager { bottom: -40px; font: italic 16px/25px 'Arapey'; }
#months-winner-wrap .months-runners .bx-controls-direction a { top: auto; bottom: -43px; width: 14px; height: 27px; }
#months-winner-wrap .months-runners .bx-controls-direction .bx-prev { left: 0; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/slider-prev-btn.gif") no-repeat; }
#months-winner-wrap .months-runners .bx-controls-direction .bx-next { right: 0; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/slider-next-btn.gif") no-repeat; }
#months-winner-wrap .months-runners h3 { position: absolute; bottom: 30px; width: 100%; text-align: center; }
#months-winner-wrap .runners-slider li ul li { max-width:49%; background-color:#e6e6e6; }
#months-winner-wrap .runners-slider li ul li.portrait-layout img { max-width:47.95%; margin:0 auto; }
#months-winner-wrap .months-runners.mobile { display: none; }
#months-winner-wrap .months-runners.mobile h3 { position: static; text-align: left; }

#inspiration-wrap #contest-callout { float: left; width: 43.5%; margin-top: 35px; }
#inspiration-wrap #contest-callout p { margin-top: 5px; font-style: italic; font-size: 12px; }
#inspiration-wrap #contest-callout .callout-photo { width: 200px; display: inline-block; margin-right: 0.5rem; }
#inspiration-wrap #contest-rules { clear: both; display: inline-block; width: 100%; }
#inspiration-wrap #contest-rules h2 { float: left; margin: 9px 13px; }
#inspiration-wrap #contest-rules .left-border,
#inspiration-wrap #contest-rules .right-border { width: 40.5%; }
#inspiration-wrap #contest-rules ol { clear: both; width: 98.5%; padding-top: 20px; margin-left: 1.5%; }
#inspiration-wrap #contest-rules ol li { width: 46.5%; margin-bottom: 30px; }
#inspiration-wrap #contest-rules ol .rule-3 { margin-bottom: 0; }
#inspiration-wrap #contest-rules ol .rule-4 { margin-top: -12.923em; margin-left: 52%; }
#inspiration-wrap #contest-rules ol .rule-5 { margin-left: 52%; }
#inspiration-wrap #contest-rules ol .rule-6 { margin-left: 52%; }
#inspiration-wrap #contest-rules #see-rules { margin-left: 52%; }
#inspiration-wrap .abbreviated-rules { clear:both; margin-top:20px; }
#inspiration-wrap #social-media { display: inline-block; width: 100%; margin-top: 50px; padding: 20px 0 15px; border-top: 1px solid #ccc; }
#inspiration-wrap #social-media-inner { width: 257px; margin: 0 auto; }
#inspiration-wrap #social-media a { float: left; position: relative; display: inline-block; width: 32px; height: 32px; margin-right: 13px; text-indent: -999em; }
#inspiration-wrap #social-media #li { margin-right: 0; }
#inspiration-wrap #social-media a span { position: absolute; left: 0; top: 0; display: block; width: 32px; height: 32px; background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/inspiration/social-icons.gif") no-repeat left center; }
#inspiration-wrap #social-media #fb span { background-position: -45px 0; }
#inspiration-wrap #social-media #gp span { background-position: -89px 0; }
#inspiration-wrap #social-media #tw span { background-position: -134px 0; }
#inspiration-wrap #social-media #pn span { background-position: -179px 0; }
#inspiration-wrap #social-media #li span { background-position: -224px 0; }

.cms-inspiration-rules h1 { text-align:center; }
#inspiration-contest-full-rules { margin-left:0; list-style-position:inside; font-size:13px; }
#inspiration-contest-full-rules ol,
#inspiration-contest-full-rules ul { list-style-position:inside; font-size:13px; }
#inspiration-contest-full-rules h3,
#inspiration-contest-full-rules h4 { display:inline; padding-left:20px; }
#inspiration-contest-full-rules ol,
#inspiration-contest-full-rules ul { font-size:100%; }
#inspiration-contest-full-rules ol.lower-alpha { list-style-type:lower-alpha; }
#inspiration-contest-full-rules ol.lower-roman { list-style-type:lower-roman; }
#inspiration-contest-full-rules ul { list-style-type:disc; }

/* Designer Collection */
.designer-headline { text-align:center; border:1px solid #cfcfcf; }
.designer-hero { position:relative; }
.designer-bio { position:absolute; top:8%; left:8%; width:40%; background-color:#fff;background-color:rgba(255,255,255,0.5); font-size:14px; padding:8px; }
.allison-paladino .designer-bio { right:4%; left:auto; top:4%; }
.designer-bio .wrapper { background-color:#fff; padding:10px; }

/* Quick Catalog */
#quick-cat-dialogs { display:none; }
#quick-cat-dialog-add .wishlist-selectors { margin-bottom:20px; }
#quick-cat-dialog-add .wishlist-selectors p { margin-bottom:0; }
#quick-cat-dialog-details ul.layout-options { overflow:hidden; width:348px; list-style:none; }
#quick-cat-dialog-details .layout-options li { float:left; margin-right:6px; cursor:pointer; padding:10px; }
#quick-cat-dialog-details .layout-options li:hover { background:#666; }
#quick-cat-dialog-details .layout-options li.selected { background:#C41230; }
#quick-cat-dialog-details .layout-options input { display:none; }
#quick-cat-dialog-details .cat-details { display:block; }
#quick-cat-dialog-details #new-catalog-front-page,
#quick-cat-dialog-details #new-catalog-back-page { padding-top:60px; height:410px; width:260px; }
#quick-cat-dialog-details #mycatalog_title_label { left:auto; }
#quick-cat-dialog-details .new-catalog-bottom { clear:both; margin-top:20px; }
#quick-cat-dialog-details .new-catalog-desc span { color:#C41230; }

#overlay.quick-catalog-overlay { background-color:#eee; padding-top:20px; }
#overlay.quick-catalog-overlay > .close { height:23px; border:1px solid #222; }
#overlay.quick-catalog-overlay .validation-error-message { color:#C41230; }
#overlay.quick-catalog-overlay .button .loading-spinner { width:12px; margin-right:10px; }

#quick-cat-dialog-add .button,
#quick-cat-dialog-continue .button,
#quick-cat-dialog-details .button,
#quick-cat-dialog-add .close.button,
#quick-cat-dialog-continue .close.button,
#quick-cat-dialog-details.close.button {
    background: none repeat scroll 0 0 #C41230;
    border: medium none;
    border-radius: 0;
    color: #FFFFFF;
    display: block;
    float: right;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    height: auto;
    line-height: 1;
    margin: 0 20px 0 0;
    padding: 1px;
    position: relative;
    right: 0;
    text-transform: uppercase;
    text-align:left;
    top: 0;
    min-width: 75px;
}
#quick-cat-dialog-add .close.button,
#quick-cat-dialog-continue .close.button,
#quick-cat-dialog-details .close.button {
    background-color:#7E7E7E;
}
#quick-cat-dialog-continue .go-to-project.button {
    float:left;
}
#quick-cat-dialog-add .button span,
#quick-cat-dialog-continue .button span,
#quick-cat-dialog-details .button span,
#quick-cat-dialog-add #cancel-close.button span,
#quick-cat-dialog-continue #cancel-close.button span,
#quick-cat-dialog-details #cancel-close.button span {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    display: block;
    line-height: 1;
    padding: 12px;
}

.quick-catalog-overlay .button .loading-spinner { display:none; }
.quick-catalog-overlay .button.loading .loading-spinner { display:inline; }
.quick-catalog-overlay .create-catalog-submit:hover,
.quick-catalog-overlay .create-catalog-submit { width:auto; }

#quick-cat-dialog-details .new-catalog-edit { background: none repeat scroll 0 0 #7E7E7E; float: right; }

.projects_table .new-quick-catalog-link { display:block; }
#wishlist-view-form .new-quick-catalog-link { float:right; line-height:12px; margin-right:20px; margin-top:5px; }

/****** CUSTOMERS CUSTOMER ******/
body.grandriver-customerscustomer-index-manage .pager .amount { display: none; }
body.grandriver-customerscustomer-index-manage .pager .limiter { text-align: left; }
body.grandriver-customerscustomer-index-manage .pager .limiter label { float: left; line-height: 19px; }
body.grandriver-customerscustomer-index-manage .pager .limiter select { float: left; width: 60px; margin: 0 10px; text-align: center; }
body.grandriver-customerscustomer-index-manage #customersTable .mobile { display: none; }
body.grandriver-customerscustomer-index-manage #customersTable th { padding: 15px 0; line-height: 20px; text-align: left; }
body.grandriver-customerscustomer-index-manage #customersTable th.action { padding-left: 16px; }
body.grandriver-customerscustomer-index-manage #customersTable th.action .tooltip { float: right; position: relative; right: 10px; width: 20px; height: 20px; opacity: 1; background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/tooltip-info.gif') no-repeat center center; }
body.grandriver-customerscustomer-index-manage #customersTable form { display: inline-block; margin-bottom: 0; }
body.grandriver-customerscustomer-index-manage #customersTable td.last .delete { margin-left: 15px; }
body.grandriver-customerscustomer-index-manage .tooltipster-default { border: 1px solid #aaa; border-radius: 0; background: #ddd; }
body.grandriver-customerscustomer-index-manage .tooltipster-content  { padding: 15px 15px 10px; }
body.grandriver-customerscustomer-index-manage .tooltipster-content .bold { display: block; margin-bottom: 10px; font-weight: bold; color: #444; }
body.grandriver-customerscustomer-index-manage .tooltipster-content p { color: #444; }
body.grandriver-customerscustomer-index-manage .tooltipster-arrow { left: 160px; }

.cc-customer-invite-error-message { color: #c51835; }
.photo-credit { font-style: italic; }

/*** Media Queries ***/

/****** TABLET - LANDSCAPE ******/
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {
    #careers-landing #our-values .bx-wrapper .bx-next { right: -2.5%; }
    #careers-landing #our-values .bx-wrapper .bx-prev { left: -2.5%; }
    #careers-landing #our-team ul { margin-bottom: 60px; }

    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap #top-banner { height: auto !important; }
    #months-winner-wrap .runners-slider ul li:hover .runners-info { display: none; }

}

/* Tablet */

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

    body {
        width: 100%;
    }

    header {
        height: 85px;
        background-position: -60px 0;
    }
    header .container {
        height: 100px;
        overflow: visible;
    }
    header .container .eight.columns {
        width: 100%;
    }

    .thelogo {
        top: 22px;
        left: 36%;
        width: 240px !important;
        height: 35px !important;
    }
    .thelogo img {
        width: 230px;
        height: 30px;
    }
    .thelogo a {
        width: 240px;
        height: 35px;
    }

    .container .columns.topsearch {
        display: none;
    }

    .container {
        width: 100%;
        overflow: hidden;
    }

    .util-nav {
        top: 0;
    }

    .tablet .util-nav li {
        line-height: 1;
    }

    .util-nav .delim {
        margin: 0 12px;
    }

    .util-nav li a span {
        display: block;
        line-height: 1;
        text-align: center;
        padding: 0;
    }
    .search-tablet a {
        padding: 0 4px;
    }
    .search-tablet .nav-icon {
        left: 9px;
        width: 34px !important;
        height: 24px;
        margin: 13px 0 11px;
        background-position: 11px 0 !important;
    }
    .search-tablet a span {
        margin: 0 0 0 14px;
    }
    .tablet .util-nav li.rep a {
        padding: 0 4px;
    }
    .tablet .util-nav li.rep a .nav-icon {
        margin: 10px 6px 11px;
    }
    .tablet .util-nav li.chat a {
        padding: 0 4px;
    }
    .tablet .util-nav li.chat a .nav-icon {
        left: 6px !important;
        margin: 8px 0 11px;
    }
    .tablet .util-nav li.account-nav a {
        padding: 0 4px;
    }
    .tablet .util-nav li.account-nav a .nav-icon {
        left: 4px !important;
        margin: 6px 0 12px;
    }
    .tablet .util-nav li.gallery-nav a {
        padding: 0 4px;
    }
    .tablet .util-nav li.gallery-nav a .nav-icon {
        left: 12px !important;
        margin: 9px 0 10px;
    }
    .tablet .util-nav li.cart-nav img.cart-img {
        margin: -9px 0 9px 2px;
    }
    .tablet .util-nav li.cart-nav span.cart-txt {
        color: #C1C1C1;
        margin: -7px 4px 0 0;
    }
    .tablet .toplinks ul li {
        padding-left: 0;
    }

    .breadcrumbs li.product:nth-last-child(-n+1) span,
    .breadcrumbs li.product {
        display: none;
    }

    /* Search */
    #search_autocomplete {
        background: #fff;
        padding: 5px;
    }

    #search-t-m {
        width: 100%;
        height: 55px;
        background: #363636;
        text-align: center;
        color: #fff;
        display: none;
        position: relative;
    }
    #search-t-m a.close {
        position: absolute;
        top: 15px;
        right: 20px;
        color: #979797;
        display: block;
        font-size: 20px;
        font-weight: 400;
        z-index: 99;
    }
    .mobile-tablet-search {
        display: block;
    }
    .desktop-search {
        display: none;
    }
    #search_mini_form {
        margin: 14px 0 0 0;
    }
    #search_mini_form label {
        display: none;
    }
    #search_mini_form .input-wrap {
        position: relative;
        width: 70%;
        margin: 0 auto;
    }
    #search_mini_form .input-wrap input {
        width: 100%;
    }
    #search_mini_form button {
        position: absolute;
        right: 7px;
        top: 4px;
        background: none;
        border: none;
        padding: 0;
        z-index: 99;
        width: 19px;
        height: 19px;
        display: block;
    }
    #search_autocomplete {
        display: none !important;
    }


    .catalogsearch-result-index .container .sixteen.columns {
        width: 100%;
    }
    .catalogsearch-result-index .twelve.columns.col2l.content {
        width: 70%;
        margin: 0 2%;
    }
    .catalogsearch-result-index .four.columns.leftcol {
        width: 22%;
        margin: 0 2%;
    }

    #account-menu, #gallery-menu {
        top: 85px;
        left: -14px;
    }

    /* Cart */
    li.cart-nav {
        position: relative;
        left: 0;
        right: 0;
        top: 9px;
        margin: 0 20px 0 3px;
        width: 36px;
    }
    .cartpop {
        margin-left: -200px;
        margin-top: 26px;
    }
    .toplinks ul li.topcart a span.cart-qty {
        top: -4px;
        right: 10px;
        font-size: 1.0rem;
    }
    .toplinks {
        margin-top: 0;
    }
    .toplinks ul li.topcart {
        width: auto !important;
        position: relative;
    }
    .toplinks ul li.topcart a.cart-anchor {
        position: relative;
        right: 0;
    }

    .checkout-cart-index .container .sixteen.columns {
        width: 94%;
        float: none;
        margin: 0 3%;
        display: block;
        overflow: hidden;
    }
    .cart .page-title {
        margin: 20px 0 10px 0;
    }
    table.cart-table td.wee {
        padding: 20px 0 20px 10px;
    }
    .cart-collaterals .totals {
        margin: 0 0 30px 0;
    }
    .cart-collaterals .crosssell .crosssell {
        float: none;
        clear: both;
        border-top: 7px solid #e8e8e7;
        margin: 0 !important;
        padding: 10px 0;
        width: 100% !important;
    }
    .crosssell ul li.item {
        width: 20%;
    }
    .td-sidemark p {
        clear: both;
    }
    .td-sidemark .cart-price {
        display: block;
        float: left;
        width: 48%;
    }
    .td-sidemark .qty-wrap {
        display: block;
        float: right;
        width: 48%;
        text-align: right;
        margin: -8px 0 19px 0;
    }
    td.wee,
    td.qty,
    #shopping-cart-table th:nth-child(4),
    #shopping-cart-table th:nth-child(5) {
        display: none;
    }
    #shopping-cart-table .price2 .cart-price {
        margin: -4px 0 0 0;
        display: block;
    }

    /* Homepage */
    .cms-home .container .sixteen.columns {
        width: 100%;
    }

    #slide-show {
        margin: -12px -153px 0;
    }

    #home-content {
        width: 96%;
        padding: 0 2%;
        margin: 17px 0 34px 0;
    }
    .home-three {
        float: left;
        position: relative;
        height: 245px;
        width: 33% !important;
        padding-top: 120px !important;
    }
    .home-three .content {
        float: none;
        width: 100% !important;
    }
    .home-three img {
        float: none;
        margin: 0;
        position: absolute;
        top: 0;
        right: 25%;
        width: 100px !important;
        height: 100px;
    }
    .home-three.first img {
        right: 40%;
    }

    #home-inspiration {
        width: 96%;
        margin: 0 2% 25px 2%;
    }
    #home-inspiration li {
        width: 23%;
        margin: 0 2% 0 0;
    }
    #home-inspiration li img {
        width: 100%;
        height: 100%;
    }

    /* Navigation */

    #primary-nav-btn {
        position: absolute;
        top: 67px;
        right: 47%;
    }
    #primary-nav-btn .nav-icon {
        display: block;
        width: 35px;
        height: 35px;
        background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/nav-icon-sprite.gif") no-repeat -184px 0 / 605% auto;
    }

    .container .eleven.columns.navigation {
        position: absolute;
        bottom: -190px;
    }

    nav.primary {
        display: none;
        margin: 3px auto;
        width: 48% !important;
    }
    nav.primary,
    nav.primary ul,
    nav.primary li,
    nav.primary li a{
        width: 100%;
    }

    nav.primary li {
        float: left;
        padding: 0 !important;
        border-bottom: 1px solid #cfcfcf;
        border-right: 1px solid #cfcfcf;
        border-left: 1px solid #cfcfcf;
        line-height: 0 !important;
        padding: 6px 0 6px 5px !important;
        background: #fff;
    }
    nav.primary a {
        width: 100% !important;
        display: block;
    }
    nav.primary ul li a.level-top {
        font-size: 1.5rem;
        color: #000;
        text-transform: none;
    }
    nav.primary ul.level0 {
        display: none !important;
    }
    nav.primary li a:hover span {
        color: #000;
        /*background: #e8e8e7;*/
    }
    nav.primary ul li.active {
        border-bottom: 1px solid #cfcfcf;
    }
    nav.primary li.first{
        border-top: 1px solid #fff;
    }
    #close-nav {
        position: absolute;
        top: 7px;
        right: 9px;
        color: #7c7c7c;
        font-weight: 400;
        display: block;
        font-size: 2.0rem !important;
    }

    .block-layered-nav dl{
        margin-top: 12px !important;
        border-top: 5px solid #dfe3e7;
        padding-top: 12px;

    }
    .container .eleven.columns.navigation {
        width: 100%;
    }


    /* Not Logged In */

    #login-btn {
        bottom: 44px;
        right: 16px;
        width: 150px;
        left: auto !important;
    }
    .logged-out #rep-chat,
    .logged-out #account-gallery {
        display: none;
    }

    #login-menu {
        top: 85px;
    }
    #register-btn {
        bottom: auto;
        top: 20px;
    }

    /* Breadcrumbs*/
    .container .sixteen.columns.breadcrumbs {
        margin: 10px 2%;
        width: 100%;
    }
    .cms-home .breadcrumbs {
        display: none;
    }


    /* Footer */
    #copyright .wrapper {
        width: 100%;
        padding: 0 2%;
    }
    .container footer.columns.sixteen {
        width: 96% !important;
        margin: 0 2% !important;
    }
    .container footer div.six.columns {
        width: 14%;
        margin: 0 3% 0 0;
    }
    .container footer #designer-info-wrap div.six.columns {
        width: auto;
        margin: 0 3% 0 0;
    }
    .container footer #designer-info-wrap {
        width: 110px;
    }

    .container footer div.six.columns:last-child {
        margin: 0;
    }

    /* Category Page */
    .catalog-category-view div.columns.leftcol {
        width: 24%;
        margin: 0 0 25px 2%;
    }
    .catalog-category-view .container .col2l {
        width: 70%;
        margin: 0 0 25px 2%;
        padding: 0 2%;
    }
    .block-layered-nav dl {
        border: none;
    }
    .pager .pages,
    .toolbar .pager .limiter,
    .toolbar .pager p.amount {
        width: 20%;
    }
    .pager .pages {
        width: 55%;
    }
    .pages ol li {
        padding-right: 15px;
    }
    .products-grid li.item.columns {
        width: 29%;
        text-align: center;
        clear: none !important;
        margin: 0 10px !important;
    }

    /* Sub category listing page */
    .category-our-product h1 {
        margin: 0 0 30px 2%;
    }
    .category-our-product .container .sixteen.columns.content {
        width: 100%;
    }
    .subcat-listing li {
        width: 21%;
        margin: 0 2% 20px 2%;
    }
    .subcat-listing li:nth-child(4n) {
		
    }
    .category-our-product .subcat-listing li:last-child,
    .category-our-product .subcat-listing li:nth-last-child(2) {
        margin: 0 4% 0 0 !important;
    }
    .subcat-listing li img {
        width: 100%;
        max-width: none;
    }

    /* Product Page */
    .catalog-product-view .container .sixteen.columns {
        width: 97%;
    }
    .catalog-product-view .breadcrumbs {
        border-bottom: 1px solid #ccc;
    }
    .breadcrumbs h1 {
        font-size: 2.6rem;
        font-family: Arapey;
        font-weight: normal;
        margin: 0 0 15px 0;
        line-height: 1;
        float: right;
        margin: -4px 0 0 0;
    }
    p.product-image-zoom {
        width: 480px !important;
        height: 480px !important;
        margin: 0 auto;
    }
    p.product-image-zoom img {
        width: 480px !important;
        height: 480px !important;
    }
    #enlarge-img {
        margin: 10px auto 30px auto;
    }
    #product-static-blocks {
        float: left;
        width: 48%;
        padding: 0 2% 0 0;
        margin: 0 0 30px 0;
    }
    .catalog-product-view .product-shop {
        float: right;
        width: 48%;
        padding: 0 2% 30px 2%;
        margin: 0 0 30px 0;
        border-left: 1px solid #ccc;
    }
    .product-main-info .quick-ship-custom-option { width: auto; }
    .catalog-product-view .price-box {
        float: none;
        text-align: right;
    }
    .product-main-info .attr-list {
        width: 100%;
    }
    .add-to-box {
        min-height: 190px;
    }
    .catalog-product-view .add-to-cart {
        text-align: right;
    }
    #art-configurator-link {
        left: auto;
        right: 0;
        bottom: 116px;
    }
    .catalog-product-view .add-to-cart .button.btn-cart {
        bottom: 61px;
        width: 203px;
    }
    .catalog-product-view .add-to-cart .button.btn-cart.move-up {
        bottom: 135px;
    }
    .catalog-product-view .add-to-cart .button.btn-cart span span {
        padding: 12px 40px 12px 61px;
    }
    .catalog-product-view ul.add-to-links {
        bottom: 12px;
    }
    .catalog-product-view ul.add-to-links li {
        margin: 0 28px 0 0;
        float: right;
    }
    .catalog-product-view ul.add-to-links.move-up {
        bottom: 84px;
    }
    #btn-custom-choices.closed {
        width: 100%;
    }
    .catalog-product-view .product-img-box {
        float: none;
        width: 100%;
        clear: both;
        margin: 15px 0 25px 0;
    }
    #packagecreator-ajax {
        left: 277px;
        top: 492px;
        display: none;
    }
    #packagecreator-ajax.ajax-moved {
        left: 234px;
    }
    .split-button .list-container {
        top: 42px;
    }

    /*** Checkout ***/
    .checkout-onepage-index .twelve.columns.col2r.content {
        border: none;
        width: 100%;
        margin: 0 2% 20px 2%;
    }
    .checkout-onepage-index .rightcol {
        display: none;
    }

    .show-desktop {
        display: none !important;
    }
    .show-tablet {
        display: block;
    }

    /* Custom Configurator */
    .category-art-configurator .container .sixteen.columns {
        width: 100%;
        margin-left: 0;
    }
    #rendered_image {
        float: none;
        width: 100%;
        clear: both;
        margin: 0 0 20px 0;
    }
    .category-art-configurator .breadcrumbs {
        float: left;
        width: 47%;
        padding: 19px 0;
        height: 52px;
        margin: 0 0 20px 3%;
        border-bottom: 1px solid #ccc;
    }
    .category-art-configurator h1 {
        width: 47%;
        height: 52px;
        text-align: right;
        margin: 0 3% 0 0;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
    }
    .packagecreator-package {
        width: 60%;
        float: right;
        margin: 20px 30px 0 0;
    }
    .toggle-list {
        display: block;
        background: #fff;
        color: #848484 !important;
        padding: 0px 5px;
        border-radius: 20px;
        width: 22px;
        font-size: 2.5rem;
        font-weight: 600;
        height: 23px;
        line-height: 22px;
        position: absolute;
        left: 13px;
    }
    .toggle-list.open-list {
        display: none;
        padding: 0px 5px 0 7px;
        line-height: 19px;
    }
    .toggle-list.closed-list {
        display: block;
    }
    .frame-mat-list .slot-title {
        margin: 0 0 20px 25px;
    }
    .frame-mat-list.open-slot .slot-title {
        margin: 0 0 20px 0;
    }
    .frame-mat-list {
        width: 908px;
        margin: 0 auto 10px auto;
        display: block !important;
    }
    .jcarousel-container-horizontal,
    .catalog-category-view .category-view .category-products {
        width: 100%;
    }
    .package-products ul li .padding {
        padding: 10px 13px 4px 13px;
    }
    .open-slot {

    }
    .closed-slot #frame_number_link,
    .closed-slot #top_mat_number_link,
    .closed-slot #bottom_mat_number_link,
    .closed-slot select,
    .closed-slot .category-products,
    .closed-slot .counter {
        display: none;
    }
    .frame-mat-list.closed-slot {
        background: #e8e8e7;
        border: none;
    }

    .packagecreator-package .slot-list .package-slot .slot-info {
        float: left;
        width: 53%;
    }

    /* My Account */

    .my-account h1 {
        margin: 25px 0 20px 0;
    }

    .account-page .twelve.columns.col2l.content {
        float: left;
        width: 100%;
    }
    .account-page .my-account {
        margin: 0 3%;
    }
    .account-page .account-wrap {
        position: relative;
    }
    .account-page .leftcol {
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: 999;
        background: #fff;
        min-height: inherit;
    }
    .block-account {
        border: none;
    }
    body.grandriver-customerscustomer-index-manage .four.columns.leftcol { width: 100%; }
    body.grandriver-customerscustomer-index-manage .block-account { float: left; margin-right: 20px; }
    .account-page .leftcol .block-content {
        display: none;
        padding: 10px;
        border: 1px solid #ccc;
        background: #fff;
    }
    .account-page .leftcol .block-title {

    }

    .account-page .leftcol .block-title strong {
        font-weight: 400;
        padding: 1px;
        line-height: 1;
        height: auto;
        width: 137px;
        display: block;
        cursor: pointer;
        margin: 10px 0 0 0;
    }

    .account-page .leftcol .block-title strong span {
        display: block;
        line-height: 1;
        color: #c41230;
        margin: 0;
        font-size: 1.4rem;
        width: 88px;
        text-transform: uppercase;
        font-family: "Source Sans Pro";
        background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-right.png') right no-repeat;
    }
    .account-page .leftcol .block-title strong.arrow-down span {
        background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-down.png');
    }

    .mycatalog-index-index h1.page-title {
        margin: 20px 3%;
    }
    .account-page .projects_table {
        margin: 0 3%;
        width: 94%;
    }
    .new_project.button {
        margin: 0 3% 0 0;
    }

    .customer-address-index .page-title button.button {
        margin: 25px 0 0 51px;
    }

    .sales-order-view h1 {
        margin: 0;
    }
    .sales-order-view .page-title {
        margin: 25px 0 20px 0;
    }
    .sales-order-history .back-link {
        margin: 30px 0;
    }
    .gallery-index-index button.new_project,
    .gallery-index-index button.new_project:hover {
        margin: 25px 0 0 0;
    }

    /* CMS pages */
    .topcat-hospitality-design .container .sixteen.columns,
    .category-custom-project-design .container .sixteen.columns,
    .category-trade-show .container .sixteen.columns {
        width: 97%;
    }
    .category-custom-project-design .left-col {
        width: 60%;
        padding: 0 10px 0 0;
    }
    .category-custom-project-design .right-col {
        width: 40%;
        margin: 0 0 20px 0;
    }
    .category-custom-project-design .left-col img:first-child {
        width: 58%;
    }
    .category-custom-project-design .left-col img:nth-child(2) {
        width: 39%;
    }
    .categorypath-about-html .right-col {
        float: left
    }
    .img-wrap img {
        width: 29%;
    }
    .category-hospitality-design .left-col {
        width: 58%;
    }
    .category-hospitality-design .right-col {
        width: 29%
    }

    .wishlist-management .new-catalog-link {
        margin: 5px 0 0 0;
    }
    .wishlist-index-index .container .four.columns {
        display: none;
    }
    .wishlist-index-index.account-page .twelve.columns.col2l.content {
        margin: 0;
        padding: 0;
    }
    .wishlist-index-index .my-account {
        overflow: visible;
        padding-bottom: 100px;
    }
    .category-trade-show ul.col-4 li {
        width: 28%;
    }
    .category-trade-show ul.col-4 li:last-child {
        clear: both;
        margin: 30px 0 0 0;
    }
    .category-about .caption {
        margin: 20px 0;
    }
    .contact-col .adr {
        height: 100px;
    }

    /* Create Catalog */

    #new-catalog-front-page,
    #new-catalog-back-page {
        width: 48%;
        margin: 40px 0 0 14px !important;
    }
    .new-catalog-desc {
        margin: 20px 0;
    }

    .mycatalog-index-edit .wishlist-management {
        margin: 20px 0 0 0;
    }

    /****** CAREERS - LANDING ******/
    #careers-landing .main-content { width: 97%; }
    #careers-landing #core-values-slider .slider-text { width: 33.15%; margin-top: 9.4%; }
    #careers-landing #core-values-slider p { margin-top: 10.5%; }
    #careers-landing #core-values-slider img { width: 63.15%; }
    #careers-landing #our-team li .member-img-wrap { height: 193px; }
    #careers-landing #our-values { display: block; }
    #careers-landing #our-values img { width: 100%; margin: 0 auto; } /****** WIDTH SHOULD BE 93% WHEN USING SLIDER ******/
    #careers-landing #our-values .bx-wrapper .bx-prev { left: 0; top: 44%; }
    #careers-landing #our-values .bx-wrapper .bx-next { right: 0; top: 44%; }

    /****** JOB DETAIL ******/
    .job-detail #careers-wrap { margin: 30px 10px 0; }
    .job-detail .main-content { width: 72%; margin-right: 3%; }

    /****** CAREERS - JOIN THE TEAM ******/
    #join-the-team .main-content { width: 97%; }
    #join-the-team #join-the-team-slider .slider-text { width: 100%; }
    #join-the-team #join-the-team-slider p { margin-top: unset; }
    #join-the-team #join-the-team-slider img { width: 100%; }
    #join-the-team #our-vision { padding-right: 12%; padding-left: 12%; }

    /****** MEET THE TEAM ******/
    .cms-careers-meet-the-team.job-detail #careers-wrap {
        margin: 30px 0 0 0;
    }
    #meet-the-team .main-content {
        min-width: 700px;
        max-width: 700px;
        width: 700px;
        float: none;
        margin: 0 auto;
    }
    #meet-the-team #team-member-slider { height: 420px; overflow: hidden; }
    #team-member-slider .member {
        max-height: 420px;
    }
    #team-member-slider .member-photo {
        height: 360px;
    }
    #team-member-slider .member-info {
        height: 360px;
    }
    #team-member-slider .member-info {
        padding: 60px 19px 0 190px;
    }
    .member-info h2 {
        font-size: 2.0rem;
    }
    #team-member-slider .member blockquote {
        font-size: 1.4rem;
        line-height: 1.4;
    }
    #team-member-slider .member-info.info-type-2 {
        padding: 22px 20px 0 172px;
    }
    #team-member-slider .member-info.info-type-2 blockquote {
        line-height: 1.4;
        font-size: 1.2rem;
        margin: 10px 0;
    }
    .member-info.info-type-2 .member-sub-images img {
        width: 110px;
    }
    .member-info.info-type-2 .member-sub-images img:first-child {
        padding: 0;
        margin: 0 30px 0 0;
    }
    .member-title {
        font-size: 1.1rem;
    }
    .member .image-caption h3 {
        font-size: 1.2rem;
    }
    #meet-the-team .bx-next,
    #meet-the-team .bx-prev {
        top: 153px;
    }
    #meet-the-team .bx-next {
        right: -23px;
    }
    #meet-the-team .bx-prev {
        left: -23px;
    }

    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap #top-banner { height: auto !important; }
    #inspiration-wrap .left-border,
    #inspiration-wrap .right-border { width: 37.45%; }
    #inspiration-wrap #contest-desc-wrap,
    #inspiration-wrap #social-media,
    #months-inner-wrap { width: 96%; margin-right: 2%; margin-left: 2%; }
    #months-winner-wrap .months-winner,
    #months-winner-wrap .months-runners { width: 48.25%; }
    #months-winner-wrap .runners-slider ul li:hover .runners-info { display: none; }
    #inspiration-wrap #contest-rules .left-border,
    #inspiration-wrap #contest-rules .right-border { width: 37.99%; }
    #inspiration-wrap #contest-rules ol { width: 95.5%; margin-left: 4% }
    #inspiration-wrap #contest-rules ol .rule-4 { margin-top: -14.3em; }

    /* Designer Collection */
    .designer-bio { top:8px; left:4%; right:auto; bottom:8px; width:50%; font-size:12px; margin:auto; max-width:250px; }
    .allison-paladino .designer-bio { right:2%; left:auto; min-width:280px; width:40%; }
    .designer-bio .wrapper { height:100%; }

}

/* Mobile */

@media (min-width: 320px) and (max-width: 767px) {


    /* Not logged in */
    #register-btn {
        display: none;
    }
    .logged-out #rep-chat,
    .logged-out #primary-nav-btn {
        display: none;
    }
    #login-btn {
        bottom: 35px;
        right: auto;
        background: none;
        padding: 0 0 0 20px;

    }
    #login-btn span {
        border: none;
        color: #999;
        font-size: 1.4rem;
    }
    #login-menu {
        top: 89px;
    }

    .customer-account-create .buttons-set button.button {
        margin: 0 20px 0 0;
    }


    .show-mobile {
        display: block !important;
    }

    #login-btn {
        position: absolute;
        width: 185px;
        padding: 0;
        margin: 0 auto;
        bottom: 19px;
        left: 25%;
    }

    header {
        height: 105px;
        margin: -20px 0 0 0;
    }
    header .container .eight.columns {
        width: 100%;
    }

    .thelogo {
        position: static;
        float: none;
        margin: 12px auto 0 auto !important;
        width: 200px !important;
        height: 26px !important;
    }
    .thelogo a,
    .thelogo img {
        width: 200px;
        height: 26px;
    }

    .logged-out header {
        height: 89px;
    }
    .logged-out .thelogo {
        margin: 31px auto 0 auto !important;
    }

    li.rep,
    li.delim,
    li.chat,
    .util-nav li a span,
    .container .columns.topsearch {
        display: none;
    }

    /* Mobile Navigation */

    nav.primary ul li.active {
        border-bottom: 1px solid #cfcfcf;
    }

    #primary-nav-btn {
        width: 19%;
        position: absolute;
        left: 4%;
        bottom: 12px;
    }
    #primary-nav-btn .nav-icon {
        display: inline-block;
        width: 35px;
        height: 35px;
        /*background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/nav-icon-sprite.gif") no-repeat -183px 0 / 605% auto;*/
        background: url("http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/nav-icon-sprite.gif") no-repeat -183px 0;
        background-size: 605% auto;
    }
    .logged-out #primary-nav-btn {
        bottom: 41px;
    }
    li.gallery-nav {
        width: 19%;
        position: absolute !important;
        left: 25%;
        bottom: -7px;
    }
    li.account-nav {
        width: 20%;
        position: absolute !important;
        left: 47%;
        bottom: -5px;
    }
    li.search-tablet {
        width: 19%;
        position: absolute;
        left: 69%;
        bottom: -10px;
    }
    li.cart-nav {
        width: 19%;
        position: absolute;
        left: 78%;
        bottom: 18px;
        margin: -18px 0 0 0;
    }
    .iProduct li.cart-nav {
        bottom: 19px;
    }
    li.cart-nav .toplinks {
        margin-top: 30px;
    }
    .toplinks ul li.topcart a.cart-anchor {
        right: auto;
    }

    .toplinks ul li.topcart {
        width: 45px !important;
    }
    .search-tablet a {
        display: block;
    }
    #account-menu {
        top: 60px;
        left: -56px;
    }
    #gallery-menu { top: 58px; left: -56px; }
    .cartpop {
        margin-left: -188px;
    }
    #nav-mask {
        background: #000;
        opacity: 0.8;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 39;
    }
    #rep-chat .nav-icon { height: 33px; background-position: 8px 0; }

    /* Search */
    #search-t-m {
        width: 100%;
        height: 55px;
        background: #363636;
        text-align: center;
        color: #fff;
        display: none;
        position: relative;
    }
    #search-t-m a.close {
        position: absolute;
        top: 15px;
        right: 20px;
        color: #979797;
        display: block;
        font-size: 20px;
        font-weight: 400;
        z-index: 99;
    }
    .mobile-tablet-search {
        display: block;
    }
    .desktop-search {
        display: none;
    }
    #search_mini_form {
        margin: 14px 0 0 0;
    }
    #search_autocomplete,
    #search_mini_form label {
        display: none;
    }
    #search_mini_form .input-wrap {
        position: relative;
        width: 70%;
        margin: 0 auto;
    }
    #search_mini_form .input-wrap input {
        width: 100%;
    }
    #search_mini_form button {
        position: absolute;
        right: 7px;
        top: 4px;
        background: none;
        border: none;
        padding: 0;
        z-index: 99;
        width: 19px;
        height: 19px;
        display: block;
    }

    .catalogsearch-result-index .twelve.columns.col2l.content {
        width: 96%;
        margin: 0 2%;
    }
    .catalogsearch-result-index .four.columns.leftcol {
        display: none;
    }


    .util-nav {
        position: static;
    }

    nav.user {
        border: none;
    }


    .container {
        width: 100%;
        overflow: hidden;
    }
    header .container {
        overflow: visible;
        height: 106px;
    }

    /* Global Navigation */
    .container .eleven.columns.navigation {
        width: 100%;
        bottom: -97px;
    }
    .logged-out .container .eleven.columns.navigation {
        bottom: -65px;
    }
    nav.primary {
        display: none;
        margin: -30px 0 0 0;
    }
    nav.primary,
    nav.primary ul,
    nav.primary li,
    nav.primary li a{
        width: 100%;
    }
    nav.primary li {
        float: left;
        padding: 0 !important;
        border-bottom: 1px solid #cfcfcf;
        line-height: 0 !important;
        padding: 6px 0 6px 5px !important;
        background: #fff;
    }
    nav.primary ul li a.level-top {
        font-size: 1.5rem;
        color: #000;
        text-transform: none;
    }
    .mobile .toplinks ul li.topcart {
        padding-top: 12px;
    }
    #close-nav {
        position: absolute;
        top: 3px;
        right: 7px;
        color: #7c7c7c;
        font-weight: 400;
        display: block;
    }
    nav.primary li a {
        display: block;
        width: 100%;
    }
    nav.primary li a:hover span {
        color: #000;
        /*background: #e8e8e7;*/
    }

    .container .sixteen.columns {
        width: 100% !important;
        margin: 0 2% !important;
    }
    .cms-home .container .sixteen.columns {
        margin: 0 !important;
    }

    .cms-home .container footer.sixteen.columns {
        margin: 0 2% !important;
    }
    .container footer div.six.columns {
        display: none;
    }
    .container footer div.six.columns.about-footer,
    .container footer div.six.columns.customer-footer {
        display: block;
        width: 45%;
    }

    #copyright {
        padding: 0 2%;
        height: auto;
        line-height: 1.4;
        height: 60px;
    }
    #copyright .wrapper:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }
    #copyright .wrapper {
        width: 100%;
        overflow: visible;
    }
    #copyright .footer-logo {
        display: none;
    }
    #copyright p.copyright {
        padding: 0;
        margin: 13px 0 0 0;
        border: none;
        float: left;
        width: 48%;
    }
    #copyright .tel {
        width: 48%;
        text-align: right;
    }

    /* Homepage */

    #home-content {
        padding: 0 2%;
        margin: 0 0 10px 0;
    }
    .home-three {
        float: none;
        margin: 10px auto;
        padding: 10px 0;
        border-bottom: 1px solid #BDBDBD;
    }
    .home-three.first,
    .home-three.second,
    .home-three.third {
        width: 100%;
        padding: 10px 0;
    }
    .home-three.third {
        height: auto;
    }
    .home-three.second .content,
    .home-three.third .content,
    .home-three .content {
        width: 50%;
    }
    .home-three.second {
        border: none;
        border-bottom: 1px solid #BDBDBD;
    }
    .home-three img {
        float: left;
        margin: 0 20px 0 0;
    }

    #inspire-wrap {
        margin: 0 2%;
    }
    #home-inspiration {
        margin: 0 0 10px 0;
    }

    #home-inspiration li {
        width: 48%;
        float: left;
        margin: 0 3% 10px 0;
    }
    #home-inspiration li img {
        width: 100%;
        height: auto;
    }
    #home-inspiration li a {
        margin: 0 5px;
    }

    #home-inspiration li:nth-child(even) {
        margin: 0 0 10px 0;
    }
    .home-three.first img {
        margin: 0 20px 0 0;
    }

    /* Slide show */
    #slide-show .tablet-desktop {
        display: none;
    }
    #slide-show .tablet-desktop {
        display: none;
    }
    .mobile-msg,
    .mobile-btn {
        display: block !important;
    }
    img.mobile-prev {
        width:  20px;
    }
    img.mobile-next {
        width: 20px;
    }
    img.mobile-msg {
        width: 280px;
    }

    /* Sub Category Page */
    .catalog-category-view .container .col2l {
        width: 100%;
        margin: 0;
        padding: 0 2%;
        border: none;
    }
    .products-grid li.item.columns {
        width: 47%;
        padding: 0 2%;
    }
    .sorter,
    .limiter,
    .pages,
    .toolbar-bottom,
    .catalog-category-view .leftcol {
        display: none;
    }
    .category-products {
        position: relative;
        width: 100% !important;
    }
    #filter-btn-mobile {
        color: #fff;
        display: block;
        background: #7e7e7e;
        text-transform: uppercase;
        float: right;
        line-height: 1;
        font-size: 12px;
    }
    #filter-btn-mobile span {
        display: block;
        margin: 1px;
        padding: 7px 19px;
        border: 1px solid #c5c5c5;
    }
    #narrow-by-list.mobile-filter {
        margin: 0 0 10px 0;
    }
    #narrow-by-list.mobile-filter ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #narrow-by-list.mobile-filter ol li {
        margin: 0;
        padding: 0;
    }
    #narrow-by-list.mobile-filter dt {
        cursor: pointer;
        font-weight: 600;
        color: #000;
        margin: 0 0 10px 0;
    }
    #narrow-by-list.mobile-filter dd {
        display: none;
        margin: 0 0 10px 0;
    }
    #narrow-by-list.mobile-filter dd li {
        margin: 0 0 10px 0;
    }
    #filter-wrap {
        clear: both;
        overflow: hidden;
        position: relative;
        display: block;
        padding: 13px 0 0 0;
        margin: 0 0 15px 0;
        border-top: 1px solid #ccc;
    }
    .mobile-amount {
        float: left;
        width: auto;
        margin: 6px 0 0 0;
    }
    .currently ol li {
        margin: 0 0 15px 0;
    }
    .current-mobile ol {
        list-style: none;
        margin: 0 0 10px 0; ;
    }
    .current-mobile .block-subtitle {
        margin: 0 0 10px 0;
        text-transform: uppercase;
        color: #000;
    }
    .current-mobile ol li a.btn-remove,
    .current-mobile ol li a.btn-remove.btn-remove2 {
        font-size: 14px;
        color: #c41230;
        padding: 0 0 0 10px;
    }
    .currently.current-mobile {
        display: block;
        margin: 0;
        padding: 10px 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
    .toolbar,
    .toolbar-bottom p.amount {
        display: none;
    }
    .toolbar-bottom,
    .toolbar-bottom .toolbar {
        display: block;
        height: auto;
    }
    .toolbar-bottom .pages {
        display: block;
        float: none;
        margin: 0 0 20px 0;
        width: 100%;
        padding: 0;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        overflow: hidden;
        font-size: 1.4rem;
        color: #000;
        text-align: center;
    }
    .toolbar-bottom .pages ol {
        display: inline;
        float: none;
    }
    .toolbar-bottom .pages ol li {
        display: inline;
        float: none;
    }
    .toolbar-bottom .pages ol strong {
        color: #000;
        float: none;
        display: inline;
    }
    .toolbar-bottom .pages a {
        color: #c51835;
        padding: 0 0 0 5px;
    }
    .pages ol li.current {
        text-decoration: none;
    }
    .pages strong {
        color: #000;
    }

    /* Sub category listing page */
    .category-our-product .container .sixteen.columns.content {
        width: 100%;
    }
    .subcat-listing li {
        width: 45%;
        margin: 0 2% 20px 2%;
    }
    .subcat-listing li:nth-child(4n) {
        margin: 0 2% 20px 2%;
    }
    .subcat-listing li img {
        width: 100%;
        max-width: none;
    }

    .category-our-product .subcat-listing li:last-child,
    .category-our-product .subcat-listing li:nth-last-child(2) {
        margin: 0 4% 0 0 !important;
    }

    /* Product Detail Page */
    .catalog-product-view h1 {
        font-size: 3.2rem;
        font-family: Arapey !important;
        font-weight: normal;
        margin: 0 0 15px 0;
        line-height: 1;
        text-transform: none;
        text-align: center;
    }

    .print-link,
    #enlarge-img,
    #custom-art-static,
    p.product-image-zoom,
    #need-help p.chat-now,
    .catalog-product-view .price-box .price-label {
        display: none !important;
    }

    #image {
        width: 96%;
        display: block;
        margin: 0 0 30px 0;
    }

    .catalog-product-view .product-shop {
        width: 96%;
        margin: 0 4% 0 2%;
    }
    .product-main-info .quick-ship-custom-option { width: auto; }
    .product-main-info .attr-list {
        width: 100%;
    }
    .catalog-product-view .price-box label {
        float: left;
        width: 32px;
    }
    .catalog-product-view .price-box input {
        float: left;
    }
    .catalog-product-view .price-box .price-label-mobile {
        float: right;
        width: 30px;
        display: block;
        font-size: 1.3rem;
        font-weight: normal;
        padding: 18px 41px 0 0;
    }

    .catalog-product-view .add-to-cart .button.btn-cart {
        position: relative;
        bottom: 0;
    }

    .split-button .list-container {
        right: -30px;
    }

    .split-button.light .change {
        left: -30px !important;
    }

    #need-help {
        background: #f0f0f0;
        padding: 10px;
        width: 100%;
        border: 1px solid #ccc;
    }
    #need-help ul {
        margin: 0;
    }
    .catalog-product-view ul.add-to-links {
        bottom: -28px;
        left: -13px;
        padding: 15px 0 0 120px;
    }
    .catalog-product-view ul.add-to-links.move-up {
        bottom: 21px;
    }
    .catalog-product-view .add-to-cart {
        width: 210px;
        margin: 5px auto;
        float: left;
        position: relative;
        left: 20%;
    }
    .iProduct .catalog-product-view .add-to-cart {
        left: 15%;
    }
    #art-configurator-link {
        left: 20%;
        bottom: 6px;
    }
    #art-configurator-link span {
        padding: 13px 21px 13px 23px;
    }
    .catalog-product-view .price-box {
        padding: 11px 10px 0 0;
    }
    .catalog-product-view .price-box input {
        margin: 6px 0 0 0;
    }

    .slot-list .note .add-note {
        right: 20px;
    }


    /* Cart */
    .checkout-cart-index .container .sixteen.columns {
        width: 97%!important;
    }
    .cart h1 {
        line-height: 1;
        padding: 0;
        margin: 15px 0 10px 0;
    }
    .cart .btn-proceed-checkout,
    .cart .btn-proceed-checkout:hover {
        height: 38px !important;
        width: 100%;
    }
    #shopping-cart-table {
        border-bottom: none;
        margin: 25px 0 0 0;
        border-top: 1px solid #cbcbcb;
    }
    table.cart-table td {
        border: none;
    }
    table.cart-table td.productinfo {
        display: table-cell;
        position: relative;
        padding: 20px 0 0px 25px;
    }
    table.cart-table td.td-img {
        display: table-cell;
        width: 50%;
    }
    table.cart-table td.td-img img {
        width: 100%;
        max-width: 100%;
    }
    table.cart-table td.wee,
    table.cart-table td.qty {
        display: none;
    }
    table.cart-table td.last {
        display: none;
    }
    .sidemark-wrap {
        width: 290px;
        margin: 0 auto;
    }
    .sidemark-wrap textarea {
        width: 100% !important;
    }
    .sidemark-wrap p {
        display: none;
    }
    td.td-sidemark {
        border-bottom: 1px solid #cbcbcb !important;
    }
    table.cart-table .qty-wrap {
        display: block;
    }
    .productinfo .cart-price {
        display: block;
        float: right;
        width: 50%;
        text-align: right;
        font-weight: 600;
        font-size: 1.7rem;
        padding: 15px 0 10px 0;
    }
    .productinfo .qty-wrap {
        display: block;
        float: left;
        width: 50%;
        margin: 10px 0 0 0;
        position: absolute;
        bottom: 7px;
    }
    .td-sidemark div.split-button {
        right: 8px;
    }
    .sidemark-links {
        margin: 10px 0 0 50px;
    }

    table.cart-table tfoot td.last {
        display: block;
        text-align: center !important;
    }
    .shipping-note {
        text-align: center;
    }
    table.cart-table .btn-continue {
        display: none;
    }
    button#empty_cart_button:hover,
    button#empty_cart_button {
        float: right;
        width: 132px;
        display: block;
    }
    table.cart-table .btn-update:hover,
    table.cart-table .btn-update {
        width: 140px;
        float: left;
        margin: 0;
    }
    .totals .checkout-types {
        display: block;
        float: none;
    }
    .cart-collaterals .totals ul li {
        float: none;
    }
    .cart-collaterals .totals {
        width: 100% !important;
    }
    #shopping-cart-totals-table {
        width: 100%;
    }
    #help_message{margin-bottom: -51px;}
    .min-order {
        text-align: center;
    }
    .cart-collaterals .crosssell {
        display: block;
    }
    .cart-collaterals .crosssell .crosssell {
        float: none;
        width: 100% !important;
        margin: 50px 0 0 0;
        padding: 10px 0;
        border-bottom: none;
        border-top: 7px solid #e8e8e7;
    }
    .cart-collaterals .crosssell h2 {
        text-align: center;
    }
    .crosssell ul li.item {
        width: 48%;
    }

    /*** Checkout ***/
    .checkout-onepage-index .twelve.columns.col2r.content {
        border: none;
        width: 100%;
        margin: 0 2% 20px 4%;
    }
    .checkout-onepage-index .rightcol {
        display: none;
    }
    #checkout-shipping-method-load textarea,
    #checkout-shipping-method-load input[type=text] {
        width: 90%;
    }
    #checkout-review-table tbody td.last {
        display: none;
    }
    #checkout-review-table td.td-img {
        padding: 10px 10px 0 0;
    }
    #checkout-review-table td.td-img img {
        width: 48px;
    }
    #checkout-review-table tfoot td:first-child {
        width: 30%;
        font-size: 1.2rem;
        padding: 5px 8px 5px 0;
    }
    #checkout-review-table tfoot td:nth-child(2) {
        width: 30%;
        font-size: 1.2rem;
    }
    #checkout-review-table tfoot span {
        padding: 0;
    }
    #opc-review #checkout-review-submit p.f-left {
        margin: 0 0 15px 0;
    }
    #checkout-review-table .product-details-no-mobile {
        display: none;
    }
    #checkout-review-table tbody td:nth-child(5),
    #checkout-review-table th:nth-child(5) {
        display: none;
    }
    .opc .step-title {
        width: 100%;
    }
    .checkout-onepage-index .section.active {
        overflow: hidden;
    }

    #checkout-review-table tbody td img {
        max-width: inherit;
        width: 60%;
        height: auto;
    }
    #checkout-step-review {
        padding: 18px 10px;
    }

    #checkout-review-table thead th:nth-child(2) {
        padding: 0;
    }
    #checkout-review-table tbody td:nth-child(2) {
        padding: 10px 10px 10px 0;
    }

    #checkout-review-table thead th:nth-child(3),
    #checkout-review-table thead th:nth-child(4) {
        padding: 0 0 10px 0;
    }

    /* My Account */

    .my-account h1 {
        margin: 35px 0 20px 0;
    }

    .sales-order-history #my-orders-table th:nth-child(3),
    .sales-order-history #my-orders-table td:nth-child(3),
    .customer-account-index #my-orders-table th:nth-child(3),
    .customer-account-index #my-orders-table td:nth-child(3) {
        display: none;
    }
    .sales-order-history #my-orders-table th:first-child,
    .sales-order-history #my-orders-table td:first-child,
    .customer-account-index #my-orders-table th:first-child,
    .customer-account-index #my-orders-table td:first-child {
        padding: 10px 0;
        text-align: left;
    }
    .sales-order-history #my-orders-table td.last a,
    .customer-account-index #my-orders-table td.last a {
        display: block;
        font-size: 1.1rem;
        margin: 0 0 10px 0;
    }
    .customer-account-index #my-orders-table th,
    .customer-account-index #my-orders-table td,
    .sales-order-history #my-orders-table th,
    .sales-order-history #my-orders-table td {
        padding: 8px;
    }
    .sales-order-history #my-orders-table td.last .separator,
    .customer-account-index #my-orders-table td.last .separator {
        display: none;
    }
    .sales-order-view .title-buttons {
        line-height: 1.4;
    }
    .sales-order-view #my-orders-table td,
    .sales-order-view #my-orders-table th {
        padding: 10px 10px 10px 0;
    }
    .order-page .col2-set .col-2 {
        margin: 20px 0 0 0;
    }

    .account-page .twelve.columns.col2l.content {
        float: left;
        width: 100%;
    }
    .account-page .my-account {
        margin: 0 3%;
    }
    body.grandriver-customerscustomer-index-manage .my-account { display: inline-block; margin-bottom: 30px; }
    body.grandriver-customerscustomer-index-manage .pager .limiter { display: block !important; }
    body.grandriver-customerscustomer-index-manage #customersTable .desktop { display: none; }
    body.grandriver-customerscustomer-index-manage #customersTable .mobile { display: block; }
    .account-page .account-wrap {
        position: relative;
    }
    .account-page .leftcol {
        position: absolute;
        top: 11px;
        left: 5px;
        z-index: 999;
        background: #fff;
        min-height: inherit;
        width: 160px !important;
    }
    .block-account {
        border: none;
    }
    .account-page .leftcol .block-content {
        display: none;
        padding: 10px;
        border: 1px solid #ccc;
        background: #fff;
    }
    .account-page .leftcol .block-title {

    }
    body.grandriver-customerscustomer-index-manage .four.columns.leftcol { width: 100% !important; }
    body.grandriver-customerscustomer-index-manage .four.columns.leftcol .block-account { display: none; }
    .account-page .leftcol .block-title strong {
        font-weight: 400;
        padding: 1px;
        line-height: 1;
        height: auto;
        width: auto;
        display: block;
        cursor: pointer;
        margin: 10px 0 0 0;
    }

    .account-page .leftcol .block-title strong span {
        display: block;
        line-height: 1;
        color: #c41230;
        margin: 0 0 0 8px;
        font-size: 1.4rem;
        width: 88px;
        text-transform: uppercase;
        font-family: "Source Sans Pro";
        background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-right.png') right no-repeat;
    }
    .account-page .leftcol .block-title strong.arrow-down span {
        background-image: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/arrow-red-down.png');
    }

    .customer-address-index .page-title button.button {
        margin: -10px 0 20px 0;
        clear: both;
    }

    .customer-address-form .buttons-set button.button {
        margin: 0 0 20px 0;
    }
    .customer-address-form li.control {
        margin: 10px 0 0 0;
    }
    .customer-address-form li.control p {
        margin: 0 0 5px 0;
    }

    .sales-order-view .page-title span,
    .sales-order-view .page-title a:last-child {
        display: none;
    }

    .mycatalog-index-index h1.page-title {
        margin: 46px 0 20px 1%;
    }
    .account-page .projects_table {
        width: 97%;
        margin: 0 0 0 2%;
    }
    .util-gallery li:first-child {
        border: none;
        margin: 0;
        padding: 0;
    }
    .util-gallery li:nth-child(2) {
        display: none;
    }
    .gallery-list li {
        margin: 0 0 30px 0;
    }
    .gallery-index-index table.projects_table td:first-child {
        width: 140px;
    }
    table.projects_table td:nth-child(4) a {
        display: none;
    }
    .new_project.button {
        margin: 0 3% 30px 0;
    }
    table.projects_table td a {
        padding: 0 7px;
    }
    .mycatalog-index-index .new_project,
    .mycatalog-index-index .projects_table td:nth-child(1) a,
    .mycatalog-index-index .projects_table th:nth-child(2),
    .mycatalog-index-index .projects_table th:nth-child(2),
    .mycatalog-index-index .projects_table td:nth-child(2),
    .mycatalog-index-index .projects_table th:nth-child(3),
    .mycatalog-index-index .projects_table td:nth-child(3),
    .mycatalog-index-index .projects_table th:nth-child(6),
    .mycatalog-index-index .projects_table td:nth-child(6) {
        display: none;
    }
    .mycatalog-index-index .projects_table td {
        padding: 17px 0 0 0;
    }

    .wishlist-index-index .twelve.columns.col2l.content {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    #wishlist-table .button.btn-cart {
        width: 130px;
        background-position: 7px 11px;
        margin: 17px 0 0 0;
    }
    #wishlist-table .button.btn-cart span span {
        padding: 12px 0 12px 22px;
    }
    #wishlist-table textarea {
        width: 130px !important;
    }
    #wishlist-table input.qty {
        right: 54px;
    }

    .wishlist-management .sub-title {
        margin: 10px 0 0 0;
        float: none;
    }
    .wishlist-index-index .sub-title h2 {
        font-size: 2.4rem;
    }

    #wishlist-table .cart-cell .button.btn-cart {
        background: #c41230 url('http://www.wendoverart.com/skin/frontend/wendover/default/images/icons/icon-add-cart.png') 11px 11px no-repeat;
    }

    #wishlist-table td {
        border-top: 1px solid #c4c4c4;
        border-bottom: none;
    }

    .wishlist-index-index .price-box {
        margin: 19px 0 -26px 0;
    }

    #wishlist-table h3 a {
        font-weight: 600;
    }

    #wishlist-table td:nth-child(3) input.qty {
        position: relative;
        right: auto;
    }
    #wishlist-table td:nth-child(3) .item-actions a {
        margin: 10px 0 0 0;
        display: block;
        padding: 0;
        text-align: left;
        width: 30px;
    }

    #wishlist-table td.last,
    #wishlist-table td:nth-child(1){
        display: none;
    }
    #wishlist-table td:nth-child(2){
        width: 24%;
        padding: 20px 10px 20px 0;
    }
    #wishlist-table td:nth-child(2) a {
        display: block;
        width: 90px;
    }
    #wishlist-table td:nth-child(3){
        width: 45%;
    }
    #wishlist-table td:nth-child(4){
        width: 20px;
        padding: 25px 10px 0 0;
    }


    #wishlist-table thead,
    .wishlist-management .table-caption,
    #wishlist-table span.checkbox,
    .wishlist-management .new-catalog-link,
    .wishlist-management .link-edit,
    .wishlist-index-index .buttons-set2,
    #wishlist-table p.product-ids {
        display: none;
    }

    .wishlist-index-index .container .four.columns {
        display: none;
    }

    div.cart-cell .remove-link a.mobile-x {
        background: #c4c4c4;
        color: #fff;
        border: 1px solid #c4c4c4;
        border-radius: 20px;
        padding: 2px 8px 4px 8px;
        height: 12px;
        width: 10px;
        font-size: 1.6rem;
        font-weight: bold;
        line-height: 1;
    }

    button.new_project.new_btm {
        display: block;
        width: 200px;
        float: none;
        margin: 0 0 20px 10px;
    }
    button.new_project,
    .util-gallery li a.right_link,
    .gallery-index-index .gallery-list,
    .gallery-index-index .projects_table thead,
    .gallery-index-index .projects_table td {
        display: none;
    }
    .gallery-index-index .projects_table td:first-child {
        display: block;
        padding: 10px;
        border-top: 1px solid #c7c7c7;
        width: 100% !important;
    }
    .gallery-index-index .projects_table td:first-child a {
        color: #000;
        font-size: 1.6rem;
        padding: 0;
        font-weight: normal;
    }

    .mobile-arrow {
        display: inline-block;
        float: right;
        color: #939393;
    }

    h2.favorite-gallery a {
        color: #000;
        font-weight: normal;
        text-transform: none;
        padding: 10px 0;
        display: block;
    }
    h2.favorite-gallery {
        border-top: 1px solid #c7c7c7;
        border-bottom: 1px solid #c7c7c7;
        font-size: 1.6rem;
        padding: 0 10px;
    }
    #created-projets {
        margin: 20px 0;
    }
    #created-projets h3 {
        padding: 0 10px;
        margin: 10px 0 20px 0;
    }
    .gallery-index-index .projects_table {
        width: 100%;
        margin: 0;
    }
    .gallery-index-index .my-account {
        margin: 0;
    }
    .gallery-index-index h1 {
        margin: 45px 0 20px 10px;
    }
    .block-account.nav-btm {
        height: 290px !important;
        clear: both;
        overflow: hidden;
        display: block;
        border-top: 1px solid #c4c4c4;
        margin: 0 3%;
    }
    body.grandriver-customerscustomer-index-manage .block-account.nav-btm { width: 100%; height: 175px !important; }
    .gallery-index-index .block-account.nav-btm {
        margin: 0 10px;
    }
    .mycatalog-index-index .block-account.nav-btm {
        border: none;
        margin: 0 10px;
    }
    .block-account.nav-btm .block-title strong span {
        margin: 20px 0;
    }
    .sales-order-history .back-link {
        margin: 30px 0;
    }

    .newsletter-manage-index button.button,
    .customer-account-edit button.button {
        margin: 0 0 30px 0;
    }


    /* Custom Configurator */
    .category-art-configurator h1 {
        float: none;
        text-align: center;
        width: 97%;
        padding: 10px 0;
        border-top: 1px solid #c4c4c4;
    }
    .category-art-configurator .breadcrumbs {
        margin: 5px 0 6px 0;
    }
    #rendered_image {
        width: 97%;
        margin: 0 0 20px 0;
        min-height: inherit;
    }

    .frame-mat-list {
        width: 420px;
        margin: 0 auto 10px auto;
        display: block !important;
    }
    #frame-list {
        /*min-height: 200px;*/
    }
    .packagecreator-package {
        float: none;
        width: 97%;
    }
    .package-slot h2 {
        width: 36%;
    }
    .package-slot .slot-info {
        width: 64%;
    }
    .package-slot .slot-info .col-1 {
        width: 25%;
    }

    .toggle-list {
        display: block;
        background: #fff;
        color: #848484 !important;
        padding: 0px 5px;
        border-radius: 20px;
        width: 22px;
        font-size: 2.5rem;
        font-weight: 600;
        height: 23px;
        line-height: 22px;
        position: absolute;
        left: 13px;
    }
    .toggle-list.open-list {
        padding: 0px 5px 0 7px;
        line-height: 19px;
        display: none;
    }
    .frame-mat-list .slot-title {
        margin: 0 0 20px 25px;
    }

    .frame-mat-list.open-slot .slot-title {
        margin: 0 0 20px 0;
    }

    .frame-mat-list.closed-slot {
        background: #e8e8e7;
        border: none;
    }

    #bottom_mat_number_link,
    #top_mat_number_link,
    #frame_number_link {
        display: none;
    }

    .category-view-all-frames .category-view button#frame_number_link {
        position:static;
        float:none;
        display:block;
    }

    .closed-slot .mobile-filter-link {
        display: none;
    }

    .mobile-filter-link {
        position: absolute;
        top: 11px;
        right: 8px;
        background: #7e7e7e;
        color: #fff;
        text-transform: uppercase;
        font-family: "Source Sans Pro";
        font-size: 1.4rem;
        font-weight: 400;
        display: block;
        padding: 1px;
    }
    .mobile-filter-link span {
        padding: 6px;
        display: block;
        line-height: 1;
        border: 1px solid #fff;
        color: #fff;
    }
    .mobile-filters {
        position: absolute;
        top: 41px;
        right: 8px;
        background: #fff;
        border: 1px solid #7e7e7e;
        padding: 20px;
        display: none;
        z-index: 9999999999;
    }
    .mobile-filters #configurator-narrow-by-frame-color {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        margin: 0 0 15px 0;
    }

    .mobile-filters #configurator-narrow-by-frame-width {
        display: block;
        position: relative;
        top: auto;
        right: auto;
        margin: 0 0 15px 0;
    }
    .mobile-filters #top_mat_number_link,
    .mobile-filters #bottom_mat_number_link,
    .mobile-filters #frame_number_link {
        display: block;
        position: relative;
        top: auto;
        right: auto;
    }

    .jcarousel-clip {
        margin: 0;
    }

    .jcarousel-prev,
    .jcarousel-next,
    .package-slot .slot-image,
    #email-print,
    .closed-slot #frame_number_link,
    .closed-slot #top_mat_number_link,
    .closed-slot #bottom_mat_number_link,
    .frame-mat-list select,
    .closed-slot .category-products,
    .counter {
        display: none;
    }

    .bx-controls-direction {
        display: none;
    }

    .package-products .bx-pager {
        display: none;
    }

    .package-products .bx-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .catalog-category-view .category-view .category-products {
        padding: 0;
    }

    .category-art-configurator .add-to-cart {
        width: 227px;
        float: none;
        margin: 0 auto 20px auto;
    }

    .category-art-configurator .add-to-cart .button.btn-package {
        width: 225px;
    }

    body.category-art-configurator ul.add-to-links {
        width: 225px;
        float: none;
        margin: 0 auto 20px auto;
    }
    #packagecreator-ajax {
        top: 495px;
        left: 150px;
        display: none;
    }
    #packagecreator-ajax.ajax-moved {
        left: 150px;
    }
    body.category-art-configurator li div.split-button.light a.change {
        position: relative;
        top: 9px;
    }
    .split-button .list-container {
        top: 52px;
    }

    /* CMS pages */
    .topcat-hospitality-design .container .sixteen.columns,
    .category-custom-project-design .container .sixteen.columns,
    .category-trade-show .container .sixteen.columns {
        width: 97%;
    }
    .category-custom-project-design .left-col {
        width: 60%;
        padding: 0 10px 0 0;
    }
    .category-custom-project-design .right-col {
        width: 40%;
    }
    .category-custom-project-design .left-col img:first-child {
        width: 57%;
    }
    .category-custom-project-design .left-col img:nth-child(2) {
        width: 39%;
    }
    .categorypath-about-html .right-col {
        float: left
    }
    .img-wrap img {
        width: 29%;
    }
    .category-hospitality-design .left-col {
        width: 58%;
    }
    .category-hospitality-design .right-col {
        width: 29%
    }
    .large-link {
        font-size: 1.1rem;
        display: inline-block;
        word-wrap: break-word;
        width: 100px;
    }
    .categorypath-about-html .left-col {
        width: 97%;
    }
    .categorypath-about-html .right-col {
        margin: 0 0 20px 0;
    }
    .category-custom-project-design .left-col {
        width: 96%;
        padding: 0;
    }
    .category-custom-project-design .right-col {
        float: left;
        width: 96%;
        border: none;
        padding: 0;
    }
    .category-trade-show ul.col-4 li {
        width: 40%;
        margin: 0 30px 15px 0;
    }

    .customer-account-login h2.legend,
    .customer-account-create h2.legend {
        margin: 0 0 5px 0;
    }
    .customer-account-login h1 {
        line-height: 1.1;
    }
    .customer-account-login .new-users button.button {
        margin: 0 0 20px 0;
    }
    .customer-contact span {
        display: block;
    }


    .subcat-listing li span.quick-ship {
        display: block;
        width: 113px;
        margin: 0 auto;
    }

    .category-view-all-frames .products-grid li.first {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .split-button {
        left: 23px;
        top: -10px;
    }

    .split-button .list-container {
        right: 2px;
    }

    .split-button .list-container {
        top: 21px;
    }

    /****** CAREERS - LANDING ******/
    #careers-mobile-menu { margin: 0 0 20px 4%; padding: 5px 0; }
    #careers-landing .main-content { width: 100%; }
    #careers-landing h3 { line-height: 30px; }
    #careers-landing .bx-wrapper { width: 92%; }
    #careers-landing .bx-viewport { width: 100%; height: auto !important; }
    #careers-landing #core-values-slider { margin: 0; }
    #careers-landing #core-values-slider li { height: 232px; }
    #careers-landing #core-values-slider .slider-text { width: 100%; margin-right: 0; margin-left: 0; }
    #careers-landing #core-values-slider p { margin-top: 10%; }
    #careers-landing #core-values-slider img { display: none; }
    #careers-landing #intro-text .left-content { float: none; width: auto; padding-right: 0; border-right: none; }
    #careers-landing #intro-text .left-content p { margin-left: 4%; }
    #careers-landing .view-openings,
    #careers-landing #our-team .meet-team { display: none; }
    #careers-landing #intro-text .right-content { width: 82.5%; padding-left: 4%; }
    #careers-landing #intro-text .right-content p { width: 100%; margin-right: 0; margin-left: 0; padding-right: 2px; padding-left: 10px; border-left: 1px solid #ccc; }
    #careers-landing #our-team,
    #careers-landing #our-values,
    #careers-landing #our-culture { width: 91.8%; margin: 10% 4.1% 0; }
    #careers-landing .view-openings.mobile,
    #careers-landing .meet-team.mobile { clear: both; float: left; display: block !important; }
    #careers-landing #our-team h3 { padding-right: 23%; }
    #careers-landing #our-team ul { float: left; width: 100%; margin: 15px 0 0; }
    #careers-landing #our-team li { float: none; width: auto; padding-bottom: 40px; text-align: center; }
    #careers-landing #our-team li .member-img-wrap { height: 241px; }
    #careers-landing #our-team .member-name,
    #careers-landing #our-team .member-title { margin: 0; text-align: left; }
    #careers-landing #our-values .bx-wrapper { width: 100%; }
    #careers-landing #our-values .bx-wrapper:nth-child(1n) { display: none; }
    #careers-landing #our-values .bx-wrapper:nth-child(2n) { display: block; }
    #careers-landing #our-values .our-values-slider { display: none; }
    #careers-landing #our-values .our-values-slider.mobile { display: block; margin: 15px 0 0; }
    #careers-landing #our-values .view-openings.mobile { float: left; display: block; }
    #careers-landing #our-culture p { display: none; }
    #careers-landing #our-culture ul { clear: both; margin: 0; }
    #careers-landing #our-culture ul li { float: none; display: inline-block; width: 100%; height: auto; margin-top: 30px; margin-right: 0; padding: 0; background: none; }
    #careers-landing #our-culture ul span { margin: 0; }
    #careers-landing #our-culture .view-openings.mobile { margin-bottom: 30px; margin-left: 0; }
    #careers-landing #our-vision { margin-right: 4%; margin-left: 4%; padding-right: 13%; padding-left: 13%; }

    /****** JOB DETAIL ******/
    .job-detail .container .sixteen.columns { margin: 0 !important; }
    .job-detail .main-content h1,
    .job-detail .main-content ul,
    .job-detail .main-content span { display: block; margin: 0 4%; }
    .job-detail .main-content span.qualification-statement { display: block; margin-bottom: 20px; }
    .job-detail .main-content .back-to-openings,
    .job-detail .main-content p { margin: 0 4% 20px; }
    .job-detail ul#careers-nav { display: none; }
    .job-detail a#careers-nav { display: block; float: left; margin-top: 15px; margin-left: 4%; }
    .job-detail .main-content { width: 100%; margin-right: 0; }
    .job-detail #job-responsibilities > li, .job-detail #job-qualifications > li { padding-left: 20px; text-indent: 0; }
    .job-detail .main-content .job-apply { margin-right: 0; margin-left: 0; }
    .job-detail .right-col { float: left; margin-left: 4%; }
    .job-detail .right-col .job-social-share, .job-detail .right-col .job-openings { display: none; }
    .job-detail .container footer.sixteen.columns { width: 92% !important; margin: 0 4% !important; }

    /****** CAREERS - JOIN THE TEAM ******/
    #join-the-team .main-content { width: 100%; }
    #join-the-team .bx-wrapper { width: 92%; }
    #join-the-team .bx-viewport { width: 100%; }
    #join-the-team #current-openings ul,
    #join-the-team #current-openings ul .job-location { margin-right: 0; margin-left: 0; }
    #join-the-team #join-the-team-slider img { display: none; }
    #join-the-team #join-the-team-slider .slider-text { width: 100%; margin-right: 0; margin-left: 0; }
    #join-the-team #join-the-team-slider h2 { margin-right: 2%; margin-left: 2%; }
    #join-the-team #join-the-team-slider p { margin-top: 6.25%; padding: 0 0 6.25%; }
    #join-the-team #current-openings { margin-right: 4%; margin-bottom: 30px; margin-left: 4%; }
    #join-the-team #current-openings ul { float: none; width: 100%; }
    #join-the-team #our-vision { margin-right: 4%; margin-left: 4%; padding-right: 13%; padding-left: 13%; }

    /****** MEET THE TEAM ******/

    #meet-the-team #our-vision {
        display: none;
    }
    #meet-the-team .main-content {
        padding: 0 4%;
        width: 100%;
        max-width: inherit;
        min-width: inherit;
    }
    #meet-the-team h1 {
        margin: 0 0 15px 0;
    }
    #meet-the-team .intro-content {
        margin: 0 0 30px 0;
    }
    #team-member-slider,
    #team-member-slider .member-list {
        margin: 0;
    }
    #team-member-slider .member {
        display: block;
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
        max-height: inherit;
        background: url('http://www.wendoverart.com/skin/frontend/wendover/default/images/cms-team/bg-team-member-mobile.jpg') repeat-y;
        background-size: contain;
    }
    #team-member-slider .member.duplicate {
        display: none;
    }

    .member-info p.title {
        margin: 0 0 20px 0;
    }
    #team-member-slider .member-info {
        display: block;
        padding: 0;
        height: inherit;
    }
    #team-member-slider .member-photo {
        display: none;
    }
    #team-member-slider .member-photo-mobile {
        display: block;
        width: 100%;
    }
    .member-info h2 {
        margin: 10px 0;
        padding: 0;
        text-transform: none;
    }
    #team-member-slider .member blockquote,
    #team-member-slider .member .wide-pic blockquote {
        font-size: 1.3rem;
        line-height: 1.4;
        margin: 25px 10px 25px 0;
    }
    .member .join-team {
        margin: 0 10px 30px 0;
    }
    #team-member-slider .member-info.info-type-2 {
        padding: 0 10px 0 0;
    }
    #team-member-slider .member-info.info-type-2 blockquote {
        float: right;
        width: 50%;
    }
    .member-info.info-type-2 .member-sub-images {
        float: left;
        width: 38%;
    }
    .member-info.info-type-2 .member-sub-images img {
        display: block;
    }
    .member-info.info-type-2 .member-sub-images img:first-child {
        padding: 0;
        margin: 0 0 5px 0;
    }
    .member .image-caption,
    #team-member-slider .member .close-column {
        display: none;
    }

    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap #top-banner { height: auto !important; }
    #inspiration-wrap #top-content h1 { margin: 20px 13% 0; font-size: 30px; line-height: 30px; letter-spacing: -.02em; }
    #inspiration-wrap #top-content p { margin: 0 7%; font-size: 16px; line-height: 24px; }
    #inspiration-wrap #submit-photo { margin-top: 20px; }
    #inspiration-wrap #submit-photo #form-wrap .close-btn { top: 8px; }
    #inspiration-wrap #submit-photo .form-column { width: 100%; margin-right: 0; }
    #inspiration-wrap #submit-photo .form-field-wrap { margin-bottom: 25px; }
    #inspiration-wrap #submit-photo #file-upload { margin-bottom: 10px; }
    #inspiration-wrap #submit-photo label { float: none; width: 100%; font-size: 15px; line-height: 15px; }
    #inspiration-wrap #submit-photo input,
    #inspiration-wrap #submit-photo textarea { width: 100%; height: 35px; margin-top: 5px; }
    #inspiration-wrap #submit-photo textarea { height: auto; }
    #inspiration-wrap #submit-photo #file-upload label,
    #inspiration-wrap #submit-photo form .validation-advice { width: 100%; margin-left: 0; }
    #inspiration-wrap #submit-photo #file-upload-wrap,
    #inspiration-wrap #submit-photo #file-upload p,
    #inspiration-wrap #submit-photo #form-wrap .button-wrap input { margin-left: 0; }
    #inspiration-wrap #submit-photo #file-upload-wrap input { height: 23px; margin-top: 0; }
    #inspiration-wrap #submit-photo #form-wrap .button-wrap { padding-top: 12px; }
    #inspiration-wrap .left-border,
    #inspiration-wrap .right-border { width: 29.877%; }
    #inspiration-wrap #contest-desc-wrap { margin-right: 4%; margin-left: 4%; }
    #inspiration-wrap #contest-desc { width: 100%; margin-right: 0; }
    #inspiration-wrap h2 { padding-right: 22%; font-size: 26px; line-height: 28px; }
    #inspiration-wrap #contest-callout { width: 100%; }
    #inspiration-wrap #contest-callout img { width: 100%; }
    #inspiration-wrap #contest-callout p { font-size: 13px; }
    #months-winner-wrap { margin-right: 4%; margin-left: 4%; }
    #inspiration-wrap #months-winner-wrap h2 { padding-right: 0; }
    #months-winner-wrap #select-wrap span,
    #months-winner-wrap .runners-slider ul li:hover .runners-info { display: none; }
    #months-winner-wrap #select-wrap { clear: left; float: left; width: 100%; margin-bottom: 20px; }
    #months-winner-wrap #select-wrap select { float: left; width: 100%; margin-left: 0; height: 30px; padding: 3px; font-size: 16px; }
    #months-winner-wrap .winners-wrap,
    #months-winner-wrap .months-winner img,
    #months-winner-wrap .runners-slider li img { width: 100%; }
    #months-winner-wrap .months-runners { display: none; }
    #months-winner-wrap .months-runners.mobile { display: block; width: 100%; max-width:none; }
    #months-winner-wrap .months-winner { width: 100%; margin-right: 0; margin-bottom: 40px; max-width:none; }
    #months-winner-wrap .months-runners .bx-wrapper .bx-pager { bottom: -20px; }
    #months-winner-wrap .months-runners .bx-controls-direction a { bottom: -23px; }
    #months-winner-wrap .months-runners h3 { top: -20px; bottom: auto; text-align: left; }
    #months-winner-wrap .months-runners.mobile .runners-info { display: block; position: static; margin-top: 5px; padding: 0; background: none; }
    #months-winner-wrap .months-runners.mobile .runners-info span { color: #000; }
    #months-winner-wrap .months-runners.mobile li.portrait-layout img { margin:0 auto; max-width:50%; }
    #months-winner-wrap .months-runners .bx-controls-direction { display: block; }
    #inspiration-wrap #contest-rules { width: 92%; margin-right: 4%; margin-left: 4%; border-top: 1px solid #ccc;}
    #inspiration-wrap #contest-rules .left-border,
    #inspiration-wrap #contest-rules .right-border { display: none; }
    #inspiration-wrap #contest-rules h2 { margin: 35px 0 0; }
    #inspiration-wrap #contest-rules ol { margin-left: 5%; padding-top: 10px; }
    #inspiration-wrap #contest-rules ol li { width: 100%; margin: 0 0 25px 0 !important; }
    #inspiration-wrap #contest-rules #see-rules { margin-left: 5%; }
    #inspiration-wrap #social-media { width: 92%; margin: 30px 4% 0; }

    /* Designer Collection */
    .designer-bio { background-color:none; padding:0; position:static; max-width:none; width:auto; }
    .designer-bio .wrapper { background-color:none; padding:0; }

}

/* Landscape Mobile */

@media (min-width: 510px) and (max-width: 767px) {

    #home-inspiration {
        margin: 0 0 10px 0;
    }

    #home-inspiration li {
        width: 22%;
        float: left;
        margin: 0 3% 10px 0;
    }
    #home-inspiration li img {
        width: 100%;
        height: auto;
    }
    #home-inspiration li a {
        margin: 0 5px;
    }

    #home-inspiration li:nth-child(even) {
        margin: 0 3% 10px 0;
    }


    .catalog-product-view .add-to-cart .button.btn-cart {
        right: -50px;
    }
    .iProduct .catalog-product-view .add-to-cart {
        left: 15%;
    }
    .split-button.light .change {
        left: 57px !important;
    }
    #art-configurator-link {
        left: 158px;
        bottom: 6px;
    }
    .new-quick-catalog-link { display:none; }

    /****** CAREERS LANDING ******/
    #careers-landing .bx-wrapper { width: 92%; }
    #careers-landing #core-values-slider .slider-text { margin-top: 8.4% }
    #careers-landing #our-values .our-values-slider.mobile img { width: 100%; }

    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap .left-border, #inspiration-wrap .right-border { width: 34.4%; }
    #inspiration-wrap #contest-callout img { width: auto; }

}

@media (min-width: 320px) and (max-width: 510px) {

    #home-inspiration {
        margin: 0 0 10px 0;
    }

    #home-inspiration li {
        width: 48%;
        float: left;
        margin: 0 3% 10px 0;
    }
    #home-inspiration li img {
        width: 100%;
        height: auto;
    }
    #home-inspiration li a {
        margin: 0 5px;
    }

    #home-inspiration li:nth-child(even) {
        margin: 0 0 10px 0;
    }

    #gallery-menu .create-quick-catalog-li { display:none; }

    .new-quick-catalog-link { display:none; }

    /****** CAREERS LANDING ******/
    #careers-landing #core-values-slider .slider-text { margin-top: 10.4% }

    #popup-newssubscribe .news_popup #newsletter-validate-data button.button { width: 100%; }
    .news_popup .title { font-size: 20px !important; }

}

/* Product Configuration Page */

/* Smaller Tablet */
@media (min-width: 768px) and (max-width: 910px) {

    .frame-mat-list {
        width: 697px;
    }
    .package-products ul li {
        width: 91px;
    }

    /****** JOB DETAIL ******/
    .job-detail .main-content { width: 97.5%; }
    .job-detail .right-col { float: left; clear: left; }
    .job-detail .right-col .job-social-share,
    .job-detail .right-col .job-openings { display: none; }

}
/* Smaller Phone */
@media (min-width: 320px) and (max-width: 419px) {

    .frame-mat-list {
        width: 320px;
    }
    .package-products ul li {
        width: 98px;
    }

    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap .left-border, #inspiration-wrap .right-border { width: 19.72%; }

}

@media (min-width: 360px) and (max-width: 479px) {
    /****** INSPIRATION CONTEST ******/
    #inspiration-wrap .left-border, #inspiration-wrap .right-border { width: 23.1%; }
}

@media (max-width: 359px) {
    body.grandriver-customerscustomer-index-manage #customersTable td.last .edit { margin-left: 22px; }
}

.mobile-filters,
#image.print-img {
    display: none;

}

/* Print Styles */
@media print {

    #copyright {
        background-color: #fff;
    }
    #product-static-blocks {
        margin-bottom: 5px;
    }
    .hide-print {
        display: none !important;
    }
    #prod-zoom,
    .product-image-zoom,
    #image.print-img {
        display: block !important;
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        clear: both !important;
        float: left !important;
        height: auto !important;
    }
    #frame-list,
    #top-mat-list,
    #bottom-mat-list {
        display: none;
    }

    .sales-order-print th {
        text-align: left;
    }

    .sales-order-print .page-print .shipping {
        border: none;
        padding: 20px 0;
    }
}

/* Visible Print Styles in the browser */

.sales-order-print th {
    text-align: left;
}

.sales-order-print .page-print .shipping {
    border: none;
    padding: 20px 0;
}
#collection-add, #collection-add-gallery {
    cursor:pointer;
    background: #c41230;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1px;
    line-height: 1;
    height: auto;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
margin-left:40px;
    padding:5px 20px;
    border:1px solid #fff;
    line-height:20px;
}
.td-sidemark .collection-add-cart{
    width:220px;
    margin: 5px 64px 0px;
    background: none;
    color: #c41230;
    font-weight: 600;
    font-size: 1.2rem !important;
    text-transform: uppercase;
}
.td-sidemark .collection-add-cart-custom{
    margin: 5px 28px 0px;
}

.hideit{
    display:none;
}

/* Inspiration Contest Winners redesign style */

#inspiration-wrap .inspiration-contest h2 {
    float: initial;
}

.inspiration-contest .info:after {
    content: " ";
    display: table;
    clear: both;
}

.inspiration-contest .designer-name {
    font: italic 18px/20px 'Arapey';
}
.inspiration-contest .project-name {
    font: 700 13px/20px 'Open Sans';
}
.inspiration-contest .location {
    font: 600 12px/20px 'Open Sans';
}

.inspiration-contest .info span {
    float: left;
    clear: left;
    text-align: left;
}

.inspiration-contest .current-winner {
    margin-bottom: 20px;
}

.inspiration-contest .current-winner .month .photo img {
    max-width: 472px;
}

.inspiration-contest .current-winner .month .photo.portrait img {
    max-height: 472px;
}

.inspiration-contest .past-winners .month .photo {
    position: relative;
}

.inspiration-contest .past-winners .info {
    position:absolute;
    left: 0;
    bottom: 0;
    top:0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.inspiration-contest .past-winners .info span {
    padding: 0 0 0 10px;
}

.inspiration-contest .past-winners .info span:first-of-type {
    padding: 75px 0 0 10px;
}

.inspiration-contest .past-winners h2 {
    width: 100%;
}

.inspiration-contest .month {
    display: inline-block;
    padding-right: 10px;
}

@media screen and (max-width: 499px) {
    .inspiration-contest .month .photo {
        width: 100%;
        height: auto;
    }

    .inspiration-contest .month .photo.portrait {
        height: 65vw;
        width: calc(100vw - 25px);
        text-align:center;
        background: #dddddd;
    }

    .inspiration-contest .photo img {
        width: 100%;
        height: auto;
    }

    .inspiration-contest .photo.portrait img {
        width: auto;
        height: 100%;
    }
}
@media screen and (max-width: 768px) {
    /* Hospitality & Design */
    .hospitality-design .img-container { width: 200px; }
}
@media screen and (min-width: 500px) {
    /* Hospitality & Design */
    .hospitality-design .img-container { display:inline-block; }

    /* Inspiration Contest winners page redesign */
    .inspiration-contest .month .photo {
        width: 230px;
        height: 160px;
    }

    .inspiration-contest .month .photo.portrait {
        height: 160px;
        width: 230px;
        text-align:center;
        background: #dddddd;
    }

    .inspiration-contest .current-winner .month .info {
        min-width: 400px;
    }
}

.inspiration-contest .past-winners .photo img {
    width: 100%;
    height: auto;
}

.inspiration-contest .past-winners .photo.portrait img {
    width: auto;
    height: 100%;
}

.inspiration-contest .past-winners .photo .info {
    display:none;
    color: #ffffff;
}
.inspiration-contest .past-winners .photo:hover .info {
    display:block;
}
.inspiration-contest .past-winners .photo:focus .info {
    display:block;
}

.inspiration-contest h3 {
    margin-top: 5px;
    margin-bottom: 20px;
}
.package-products .products-grid .bx-controls-direction .bx-wrapper .bx-prev{
    background-color: #fff!important;
}
.package-products .products-grid .bx-wrapper .bx-controls-direction a{
    height :182px !important;
    background-color: #fff!important;
}
.package-products .products-grid .bx-wrapper .bx-viewport{
    height :182px !important;
}
.package-products ul li{
    height :182px !important;
}
.zoomPad{
	position:relative;
	float:left;
	z-index:99;
	cursor:crosshair;
}


.zoomPreload{
   -moz-opacity:0.8;
   opacity: 0.8;
   filter: alpha(opacity = 80);
   color: #333;
   font-size: 12px;
   font-family: Tahoma;
   text-decoration: none;
   border: 1px solid #CCC;
   background-color: white;
   padding: 8px;
   text-align:center;
   background-image: url(http://www.wendoverart.com/skin/frontend/wendover/default/images/zoomloader.gif);
   background-repeat: no-repeat;
   background-position: 43px 30px;
   z-index:110;
   width:90px;
   height:43px;
   position:absolute;
   top:0px;
   left:0px;
    * width:100px;
    * height:49px;
}


.zoomPup{
	overflow:hidden;
	background-color: #FFF;
	-moz-opacity:0.6;
	opacity: 0.6;
	filter: alpha(opacity = 60);
	z-index:120;
	position:absolute;
	border:1px solid #CCC;
  z-index:101;
  cursor:crosshair;
}

.zoomOverlay{
	position:absolute;
	left:0px;
	top:0px;
	background:#FFF;
	/*opacity:0.5;*/
	z-index:5000;
	width:100%;
	height:100%;
	display:none;
  z-index:101;
}

.zoomWindow{
	position:absolute;
	left:110%;
	top:40px;
	background:#FFF;
	z-index:6000;
	height:auto;
  z-index:10000;
  z-index:110;
}
.zoomWrapper{
	position:relative;
	border:1px solid #999;
  z-index:110;
}
.zoomWrapperTitle{
	display:block;
	background:#999;
	color:#FFF;
	height:18px;
	line-height:18px;
	width:100%;
  overflow:hidden;
	text-align:center;
	font-size:10px;
  position:absolute;
  top:0px;
  left:0px;
  z-index:120;
  -moz-opacity:0.6;
  opacity: 0.6;
  filter: alpha(opacity = 60);
}
.zoomWrapperImage{
	display:block;
  position:relative;
  overflow:hidden;
  z-index:110;

}
.zoomWrapperImage img{
  border:0px;
  display:block;
  position:absolute;
  z-index:101;
}

.zoomIframe{
  z-index: -1;
  filter:alpha(opacity=0);
  -moz-opacity: 0.80;
  opacity: 0.80;
  position:absolute;
  display:block;
}

/*********************************************************
/ When clicking on thumbs jqzoom will add the class
/ "zoomThumbActive" on the anchor selected
/*********************************************************/
.appriseOverlay{position:fixed;top:0;left:0;background:rgba(0,0,0,0.3);display:none;}.appriseOuter{background:#eee;border:1px solid #fff;box-shadow:0 3px 7px #333;-moz-box-shadow:0 3px 7px #333;-webkit-box-shadow:0 3px 7px #333;z-index:99999999;min-width:200px;min-height:50px;max-width:75%;position:fixed;display:none;}.appriseInner{color:#333;text-shadow:0 1px 0 #fff;padding:20px;}/*.appriseInner button{border:1px solid #bbb;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-khtml-border-radius:3px;background:0;color:#232d3d;font-size:12px;font-weight:700;text-shadow:0 1px 0 #fff;cursor:pointer;box-shadow:0 1px 2px #ccc;-moz-box-shadow:0 1px 2px #ccc;-webkit-box-shadow:0 1px 2px #ccc;margin:0 3px;padding:4px 10px;}.appriseInner button:hover{color:#d85054;}*/.aButtons,.aInput{text-align:center;margin:20px 10px 0;}.aTextbox{border:1px solid #aaa;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-khtml-border-radius:4px;box-shadow:0 1px 0 #fff;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;width:180px;font-size:12px;font-weight:700;padding:5px 10px;}

.gallery-index-index .appriseOuter button.button[value=cancel],
.gallery-index-index .appriseOuter button.button[value=ok],
.gallery-index-index .appriseOuter button.button:hover {
    background: #c41230 !important;
    color: #fff;
    text-transform: uppercase;
    font-family: "Source Sans Pro";
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    padding: 1px;
    line-height: 1;
    height: auto;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
.gallery-index-index .appriseOuter button.button[value=cancel] span span,
.gallery-index-index .appriseOuter button.button[value=ok] span span {
    padding: 10px 24px;
    display: block;
    line-height: 1;
    border: 1px solid #fff;
    background: #c41230 !important;
}
.gallery-index-index .appriseOuter button.button[value=cancel],
.gallery-index-index .appriseOuter button.button[value=cancel] span span {
    background: #7e7e7e !important;
}

.gallery-index-index .appriseInner {
    text-align: left;
    font-weight: bold;
    font-size: 17px;
    padding: 0;
}
.gallery-index-index .appriseInner .aButtons,
.gallery-index-index .appriseInner .aInput {
    margin: 20px -8px 0px 0;
}
.gallery-index-index .appriseOuter {
    background: #fff;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}
