/* 
Title:		lynnlurie.com screen styles
Author: 	gordon@slickfish.com
Copyright:  ©2018 Lynn Lurie

UPDATED: New color scheme - 10.4.2018 - slickfish.
*/
@charset "UTF-8";
/* CSS Document */


/*============================================================
SIMPLE RESET
============================================================*/
body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, blockquote {
	margin: 0; padding: 0; border: 0;
}
* { margin:0; padding:0; }

/*============================================================
GLOBALS
============================================================*/
body {
	font-size: 14px; 

    font-family: "chaparral-pro",sans-serif;
    font-style: normal;
    font-weight: 400;

	line-height: 1.4em; 
	/* color: #35332f; */ /* dark brown gray */
	/* color: #a09c93; */ /* lighter font color */
	color: #757988; /* medium purple gray color */
    background: #c8c1b9 url(../images/lynn-lurie-blue_bkg.jpg) repeat fixed center top; 
    -webkit-font-smoothing: antialiased;
    background-size: 850px;
    overflow-x: hidden;
}
p { 	
	margin-bottom: 1em; 
}

/*============================================================
TYPEKIT
============================================================*/
.chaparral,
.chaparral-italic,
.chaparral-semi,
.chaparral-semi-italic,
.chaparral-semi-bold,
.chaparral-bold-italic
{
    font-family: "chaparral-pro",sans-serif;
    font-style: normal;
    font-weight: 400;
}
.chaparral-italic{
    font-style: italic;
    font-weight: 400;
}
.chaparral-semi {
	font-weight: 600;
}
.chaparral-semi-italic {
	font-weight: 600;
    font-style: italic;
}
.chaparral-semi-bold {
	font-weight: 700;
}
.chaparral-bold-italic {
	font-weight: 700;
    font-style: italic;
}


.regular,
.italic,
.light,
.medium,
.bold,
.extra
{
    font-family: "chaparral-pro",sans-serif;
    font-style: normal;
    font-weight: 400;
}
.italic {
    font-style: italic;
    font-weight: 400;
}
.semi {
	font-weight: 600;
}
.semi-italic {
    font-style: italic;
	font-weight: 600;
}
.bold {
	font-weight: 700;
}
.bold-italic {
    font-style: italic;
	font-weight: 700;
}

.large {
    font-size: 2em;
}

/*============================================================
MISC STYLES
============================================================*/
/* see external + below */
h1 {
	font-size: 1.8em; /* 24 / 14 = 1.8em */
	font-weight: 700; /* news gothic std bold */
	padding: 0;
	margin: 0 0 .6em 0;
	line-height: 110%;


	color: #79a765; /* green */

	display: block;
}

h2 {
	letter-spacing: .05em;
	font-size: 1.2em; 
    margin-bottom: .3em;
	font-style: normal;
	font-weight: 500; /* news gothic std bold */
    color: rgba(43, 45, 66, 1.0); /* soft black/blue */
}
h3 {
    color: #1d3a5b; /* dark blue */
}

h4 {
	letter-spacing: .05em;
	font-size: 1.1em; 
    margin-bottom: .6em;
	font-style: normal;
}
h5 {
	letter-spacing: .05em;
	font-size: 1em; 
    margin-bottom: .2em;
    font-weight: 700;
	font-style: normal;
}

.blue {
    color: #00479f; /* blue */
}
.light-blue {
    color: #7fb8ff; /* light blue */
}
.bright-blue {
    color: #1e7cf0; /* bright blue */
}
.dark-blue {
    color: #1d3a5b; /* dark blue */
}
.gray-blue {
    color: #435b78; /* gray-blue */
}
.green {
	color: #79a765; /* green */
}
.medium {
    font-size: 1.2em;
    font-weight: 500;
}
.gray {
    color: #666;
}
strong, b {
    font-weight: 700;
}
.caption {
    /* color: #444; */ /* dark muted gray */
    color: #757988; /* medium purple gray color */
}
.left_side, .right_side {
    margin-bottom: 5px;
}

ul.arrow {
    list-style: none;
    color: #414953; /* dark muted blue */
    padding-left: 0;
    margin-top: 5px;
    font-size: .9em;
}
#main .format ul.arrow {
    margin-left: 0;
}
#main .format ul.arrow li {
    background: url(../images/arrow.png) no-repeat left 3px;
    margin-bottom: .5em;
    line-height: 140%;
    padding-left: 15px;
}
#main .format ul.arrow li:last-child {
    margin-bottom: 0;
}
#main .format ol {
    color: #999; 
    margin-top: 0px;
    font-size: .8em;  
    margin-left: 25px;  
}
#main .format ol li {
    margin-bottom: 1.1em;
    line-height: 160%;
    padding-left: 8px;
}
#main .format ol li span {
    font-size: 1.2em;  
    color: #414953; /* dark muted blue */
}
.black {
    color: #000;
}

/*============================================================
WRAPPER STYLES
============================================================*/
/* wrapper etc */
#wrapper { 
	margin: 0 auto;
	padding: 0;
    width: 100%;
    width:1200px;
}
#wrapper-inner {
    background: #f6f0d3;
    background-color: #fff;
	margin: 0 auto 25px auto;
	padding: 0;

	max-width: 1200px;
    /*background: #f6f0d3; cream color */

    box-shadow: 0 0 10px 1px #666;


    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}


/*============================================================
FLEXSLIDER (SLIDESHOW)
============================================================*/
/* see flexslider css */

/*============================================================
GENERIC IMG BTN
============================================================*/
.btn {
    display: block;
    overflow: hidden;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: left top;
}
.btn:hover {
    text-decoration: none;
}
.btn span {
    display: block;
    margin-top: -10000px;
}
/*============================================================
HEADER
============================================================*/
#header {
	width: 100%;
	height: 165px;

	background: url(../images/header-blue_bkg.jpg) repeat-x left top;
	background-size: 1200px;
    position: relative;
    
    border-bottom: 2px solid #5d6475;
}



/*============================================================
LOGO
============================================================*/
#logo {
    width: 255px;
	height: 165px;

    float: left; 
    margin: 0 0 0 55px;
}

#logo a.logo {
	margin: 0;
	width: 255px;
	height: 165px;
	background: url(../images/lynn-logo_blue.png) no-repeat left top;
	background-size: 255px;
}
#logo a.logo:hover {
	background-position: left -165px;
}

#logo img.logo_pin {
	display: block;
	margin-top: -10000px;
}
/*============================================================
NAVBAR
============================================================*/
/* menu */ 

#navBar ul li ul {display: none;}

#navBar {
	height: 105px;
    margin-top: 30px;
    float:right;
    /*background: url(../images/nav-blue_bkg.png) repeat left top;
    background-size: 40px;*/
}
#navBar ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}
#navBar ul#nav li {
	float: left;
	display: block;
	padding: 0;
	margin: 0 38px;
    background: none;
}


#navBar ul#nav li a {
    font-style: normal;
    font-weight: 600;
	font-size: 1em; /* 14 / 14 = 1em */
	display: block;
	text-decoration: none;
	outline: none;
	border: 0;
    padding: 43px 18px;
    line-height: normal;
    /*color: #e5dee4; */ /* pale blue */  
    -webkit-transition: background-color 0.5s ease;
    -moz-transition:    background-color 0.5s ease;
    -ms-transition:     background-color 0.5s ease;
    -o-transition:      background-color 0.5s ease;
    transition:         background-color 0.5s ease;
    background-position: center bottom;
    letter-spacing: .2em;
}
#navBar ul#nav li.home-nav a:hover {
    /* color: #ffeee8; */ /* pale pink */
    /* background: #8d909b; */ /* medium blue gray */
}
/* COLORS NAVBAR */
#navBar ul#nav li a {
    color: #e5dee4;  /* pale blue */  
}
#navBar ul#nav > li > a:not(.current):hover,
#navBar ul#nav > li.sfHover > a:not(.current)
{
    /* background: #ffeee8; */ /* pale pink */
    background: #8d909b; /* medium blue gray */
    color: #3c3e4e; /* dark blue */
}
body #navBar ul#nav li ul li a {
    color: #3c3e4e; /* dark blue */
}
body #navBar ul#nav li ul li a:hover {
    color: #601717; /* dark red */
}
#navBar ul#nav li.books-nav a:hover,
#navBar ul#nav li.books-nav.sfHover a {
    background: #8d909b url('../images/nav-hover_blue.png') no-repeat center 65px;
    background-size: 43px;    
}
body#books #navBar > ul#nav > li.books-nav > a:hover,
body#books #navBar > ul#nav > li.books-nav.sfHover > a {
    background-color: #8d909b; /* medium blue gray */
    background-position: center -25px;
    /* color: #ffd874;*/ /* gold */
}
body#books #navBar ul#nav li.books-nav a:hover + ul,
body#books #navBar ul#nav li.books-nav.sfHover a + ul {
    background: #8d909b url('../images/nav-hover_blue.png') no-repeat center top;
    background-size: 43px;
    padding-top:15px;

}
#navBar ul#nav li.books-nav a:hover,
#navBar ul#nav li.books-nav.sfHover a,
#navBar ul#nav li ul li a:hover,
#navBar ul#nav li.sfHover ul li a {
    text-shadow:none;
}


/*============================================================
BODY Linking Current classes
============================================================*/

body#home #navBar ul#nav li.home-nav a,
body#books #navBar > ul#nav > li.books-nav > a,
body#about #navBar ul#nav li.about-nav a,
body#links #navBar ul#nav li.links-nav a,
body#contact #navBar ul#nav li.contact-maine-nav a,
body#testimonials #navBar ul#nav li.testimonials-nav a,
body#links #navBar ul#nav li.links-nav a,
body#contact #navBar ul#nav li.contact-nav a
{
	color: #fff; /* white */
    background: url('../images/nav-books-blue-slash.png') no-repeat center 65px;
    background-size: 70px;
}

body#home #navBar ul#nav li.home-nav a:hover,
body#books #navBar ul#nav li.books-nav > a:hover,
body#about #navBar ul#nav li.about-nav a:hover,
body#links #navBar ul#nav li.links-nav a:hover,
body#contact #navBar ul#nav li.contact-maine-nav a:hover,
body#testimonials #navBar ul#nav li.testimonials-nav a:hover,
body#links #navBar ul#nav li.links-nav a:hover,
body#contact #navBar ul#nav li.contact-nav a:hover
{
    color: #8d909b; /* medium blue gray */
    background: url('../images/nav-books-blue-slash_over.png') no-repeat center 65px;
    text-shadow: none;
    background-size: 70px;    
}
body#books #navBar ul#nav li.books-nav > a:hover {
    background-color: #8d909b; /* medium blue gray */
    color: #fff;
}


/* CURRENT CATEGORY DROP MENU COLORS */
body#home #navBar ul#nav li.home-nav ul li a,
body#books #navBar ul#nav li.books-nav ul li a,
body#about #navBar ul#nav li.about-nav ul li a,
body#links #navBar ul#nav li.links-nav ul li a,
body#contact #navBar ul#nav li.contact-maine-nav ul li a,
body#testimonials #navBar ul#nav li.testimonials-nav ul li a,
body#links #navBar ul#nav li.links-nav ul li a,
body#contact #navBar ul#nav li.contact-nav ul li a
{
	color: #3c3e4e; /* dark blue */
    background: #8d909b; /* medium blue gray */
}
body#home #navBar ul#nav li.home-nav ul li a:hover,
body#books #navBar ul#nav li.books-nav ul li a:hover,
body#about #navBar ul#nav li.about-nav ul li a:hover,
body#links #navBar ul#nav li.links-nav ul li a:hover,
body#contact #navBar ul#nav li.contact-maine-nav ul li a:hover,
body#testimonials #navBar ul#nav li.testimonials-nav ul li a:hover,
body#links #navBar ul#nav li.links-nav ul li a:hover,
body#contact #navBar ul#nav li.contact-nav ul li a:hover
{
    color: #fff; /* fff */
}


/* SUPERFISH DROP NAV STYLING */
#navBar ul#nav li ul {
	margin: 0;
    padding: 0;
    background: #8d909b; /* medium blue gray */
    bottom: 0;
    left: 0;
    margin-top: 69px;
    width: 94px;
}
#navBar ul#nav li ul li {
	clear: both;
	left: 0;
	text-align: left;	
	float: none;
	display: block;
	line-height: 20px;
	min-height: 20px;
	width: 100%;
	padding: 0; 
	margin: 0;
    border-bottom: 1px solid #3c3e4e; /* dark blue */
}
#navBar ul#nav li ul li:last-child {
	border-bottom: 0;
}
#navBar ul#nav li.books-nav a {
    width:58px;
}
#navBar ul#nav li ul li a,
#navBar ul#nav li.sfHover ul li a
{
    color: #fff;
    text-decoration: none;
    border: 0;
    float: none;
    font-weight: 500;
    letter-spacing: 0;
    padding: 10px 0;
    line-height: normal;
    background: #8d909b; /* medium blue gray */
    text-transform: capitalize;
    text-align: center;
    font-size: 0.9em;
    font-style: italic;
    width: 100%;
}

body #navBar ul#nav li ul li a:hover,
body#books #navBar ul#nav li.books-nav ul li a.current:hover,
body#books #navBar ul#nav li.books-nav ul li a.current,
body #navBar ul#nav li.sfHover ul li a.current,
body #navBar ul#nav li.sfHover ul li a.current:hover
{
    color: #fff; 
	text-decoration: none;
}
body #navBar ul#nav li.sfHover ul li a:hover,
body #navBar ul#nav li.sfHover ul li a.current
{
    /* color: #ffd874 !important; */ /* gold */
}
body #navBar ul#nav li.sfHover ul li a:hover,
body #navBar ul#nav li.sfHover ul li a.current:hover
{
    color: #fff; /* white */
}
body #navBar ul#nav li.sfHover ul li a
{
    color: #3c3e4e; /* dark blue */ 
}


@media print {
    #navBar ul#nav li ul {display: none;}
  }

/*============================================================
CONTAINER
============================================================*/

#leftCol {
    width: 175px;
    float: left;
    min-height: 400px;
    background: #232634 url(../images/leftCol-bkg.jpg) no-repeat left top;
}

#main .format {
    padding: 15px;
}
#main .format ul {
    margin-left: 20px;
    color: #666; 
}

/*============================================================
leftCol
============================================================*/
#subNav {
    width: 100%;
    overflow: auto;
    margin: 36px 0 10px 0;
}
#subNav ul {
    margin: 0;  
    padding: 0;
    width: 100%;
}
#subNav li {
    color: pink;
    padding: 0;
    margin: 0;
}
#subNav ul li a {
    display: block;
    margin: 6px 0;
    padding: 3px 10px;
    
    font-size: 1em;
    font-weight: 400;

    text-decoration: none;
}
#subNav ul li a:hover {
    background: url(../images/black20.png);
}
#subNav ul li a span {
    background: url(../images/bullet-green.png) no-repeat left 6px;
    color: #bebebe;
    padding-left: 15px;
    display: block;
}
#subNav ul li a:hover span {
    background: url(../images/bullet-blue.png) no-repeat left 6px;
    color: #fff;
}



/* current in subnav */
#subNav ul li a.current {
    background: #79a765; /* green */
}
#subNav ul li a.current span {
    background: url(../images/bullet-blue.png) no-repeat left 6px;
    color: #fff;
}
#subNav ul li a.current:hover {
    background: #7dbb62; /* lighter green */
}
#subNav ul li a.current:hover span {
    background: url(../images/bullet-blue.png) no-repeat left 6px;
    color: #fff;
}


/*============================================================
Breadcrumb
============================================================*/
#container .breadcrumb {
	font-size: .9em;
    height: 18px;
    line-height: 18px;
    margin-left: 15px;
    margin-top: 10px;
	color: #9b9b9b; /* med gray */

	font-weight: 500;
	font-style: normal;
    letter-spacing: .1em;
    text-transform: lowercase; 
}
#container .breadcrumb a {
	color: #c3c3c3; /* light gray */
    font-weight: 400;

    text-decoration: none;
}
#container .breadcrumb a:nth-child(2n) {
    padding-left: 0;
}
#container .breadcrumb a:nth-child(3n) {
    padding-left: 0;
}
#container .breadcrumb a:hover {
	color: #00b825; /* kelly green */
    text-decoration: underline;
}

/*============================================================
HIGHLIGHT BLOCK
============================================================*/






/*============================================================
SLIDESHOW STYLES
============================================================*/
.slider-wrap {
    position:relative;
}
.slider-wrap .title {
    font-size: 29px;
    font-style: italic;
    display:block;
    color:#f6eada;
    position:absolute;
    text-transform:uppercase;
    line-height:1.1;
}
.slider-wrap img {
    display:block;
}
.slider-wrap .book-title {
    font-size:42px;
    margin: 0 5px 0 65px;
}
.slider-wrap .available {
    font-size:25px;
    text-transform:none;
}
.slider-wrap .info-links {
    display:block;
    text-align:right;
    font-size:13px;
}
.slider-wrap .info-links a {
    color:#f6eada;
    text-shadow: 1px 1px 1px #000;
    text-decoration: none;
}
.slider-wrap .info-links a:hover {
    text-decoration: underline;
}
.slider-wrap .info-links span {
    margin:0 5px;
}


/*============================================================
MAIN AREA
============================================================*/
#main {
    overflow:hidden;
}
#main h1 {
    /*color: #6d2020;*/
	/*color: #d73d3d;*/ /* brighter red */
	color: rgba(43, 45, 66, 0.9); /* soft black/blue */
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.main-template #main .left-area {
    float:left;
    /*background: url(../images/books-bg.png) no-repeat top left;
    background-size: cover;*/
    background: #ffeee8; /* pale pink */
    width: 476px;
    height: 306px;
    padding: 30px;
    text-align: center;
    font-size:14px;
    color: #2b2d42; /* dark dark  blue */
}
.main-template #main .right-area {
    float: right;
    width: 47%;
    height: 316px;
    padding: 25px 4%;
    font-size: 13px;
    line-height: 1.3;
}
body#home .right-area { /* make homepage scroll! */
    overflow: auto;
}

#home.main-template #main .left-area { 
    width: 665px;
}
#home.main-template #main .right-area {
    width: 31%;
	background-color: #fff;
	color: #757988;    
}
#links.main-template #main .left-area { 
    width: 230px;
	background: #fff;    
}
#links.main-template #main .right-area {
    width: 67%;
}
.main-template #main .right-area ul {
    margin-bottom: 15px;
}
.main-template #main .right-area ul li a {
    /* color:#6d2020;
    color: #d73d3d; */ /* brighter red */
	color: rgba(43, 45, 66, 0.8); /* soft black/blue */
}
.main-template #main .right-area ul li a:hover {
    text-decoration: underline;
}
.main-template #main .right-area .bio img {
    float: left;
    margin-right: 20px;
}
.main-template #main .left-area .book-left {
    width: 194px;
    float: left;
    margin-left: 15px;
}
.corner-rollover {
    display: block;
    background: url(../images/corner-of-the-dead-rollover.png) no-repeat top left;
}
.corner-rollover img:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}
.quick-rollover {
    display:block;
    background:url(../images/quick-kills-rollover.png) no-repeat top left;
}
.quick-rollover img:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}
.museum-rollover {
    display:block;
    background:url(../images/museum-of-stones-cover_over.png) no-repeat top left;
    background-size: 100%;
}
.museum-rollover img:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
}
.main-template #main .left-area .title {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-style: italic;
}
.main-template #main .left-area .title a {
    color: #2b2d42; /* dark dark  blue */
	font-size: 15px;
	text-decoration: none;
	font-weight: 300;
}
.main-template #main .left-area .book-right .title {
	margin-top: 5px;
}
.main-template #main .left-area .info-links a {
    color:#8d909b; /* medium blue */
    text-decoration: none;
    font-size:11px;
}
.main-template #main .left-area .info-links a:hover {
    text-decoration: underline;
}
.main-template #main .left-area .info-links span {
    margin:0 10px;
    color:#6d2020;
    font-size:11px;
}
.main-template #main .left-area .book-right {
    width: 203px;
    float: right;
    margin-right: 20px;
}
.main-template #main .left-area .book-right img{
    width: 100%;
	display: block;
}


#main h4 {
    color: #35332f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    margin: 15px 0 7px 0;
    letter-spacing: .2em;
}
#main ul {
    margin-bottom: 30px;
    /*margin-left: 15px;*/
    list-style: none;
}
#main ul:last-child {
    margin-bottom: 0;
}
#main ul li {
    margin-bottom: 7px;
    letter-spacing: .05em;
    font-weight: 600; 
}
#main ul li a {
    /* color: #35332f;*/ /* dark gray */
	color: rgba(43, 45, 66, 0.88); /* soft black/blue */
    text-decoration: none;
}
#main ul li a:hover {
    text-decoration: underline;
	color: rgba(43, 45, 66, 0.4); /* soft black/blue */
}

#main ul li a.current {
    text-decoration: none;
    color: rgba(43, 45, 66, 0.5); /* soft black/blue */
}
#main ul li a.current:hover {
    text-decoration: underline;
	color: rgba(43, 45, 66, 0.8); /* soft black/blue */
}

.columns #main .left-area {
    float: left;
    /* background: #ead5b8; */ /* tan */
	background: #ffeee8; /* pale pink */    
    width: 335px;
    height: 355px;
    padding: 30px 0 0;
    text-align: center;
}
.columns #main .left-area .links {
    width: 150px;
    width: 200px;
    margin: 0 auto;
    text-align: left;
}
.columns #main .left-area .links h4 a {
    /* color: #35332f; */ /* original black */
    color: rgba(43, 45, 66, 0.88); /* soft black/blue */
    text-decoration:none;
}
.columns #main .left-area .links h4 .current {
    color: rgba(43, 45, 66, 1.0); /* soft black/blue */
}
.columns #main .left-area .links h4 a:hover {
    text-decoration:underline;
	color: rgba(43, 45, 66, 0.4); /* soft black/blue */
}
.columns #main .right-area {
    float: right;
    width: 805px;
    height: 345px; /* 385 true height */
    overflow: auto;
    /* background: url(../images/books-bg2.png) no-repeat top left; */
    padding: 20px 30px;
    color: #757988; /* medium purple gray color */
}
.columns #main .right-area .summary {
    text-align: center;
    color: #757988; /* medium purple gray color */
    font-size: 12px;
    padding: 0 30px 10px;
}
.columns #main .right-area .book-summary {
    overflow:hidden;
	color: #757988; /* medium purple gray color */

    padding: 0 0 10px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.columns #main .right-area .book-summary img {
    float: left;
    width: 115px;
    margin-right:20px;
}
.columns #main .books-wrapper {
    overflow:hidden;
}
.columns #main .book-left {
    width: 45%;
    float: left;
}
.columns #main .book-right {
    width: 55%;
    float: right;
}


#books.columns #main .book-left,
#books.columns #main .book-right
{
    width: 33%;
    float: left;
}
#books.columns #main .book-left .book-img {
    width: 100%;
}
.columns #main .books-wrapper .museum-rollover,
.columns #main .books-wrapper .corner-rollover,
.columns #main .books-wrapper .quick-rollover 
{
    float:left;
    margin-right:10px;
}
#books.columns #main .books-wrapper .museum-rollover,
#books.columns #main .books-wrapper .corner-rollover,
#books.columns #main .books-wrapper .quick-rollover 
{
	width: 130px;
	display: block;
	background-size: 130px;
}
.columns #main .books-wrapper .title {
    font-size: 24px;
    margin-top: 0px;
    line-height: 1;
    font-style: italic;
    font-weight: 600;
}
.columns #main .books-wrapper .title a {
	color: #757988; /* medium purple gray color */
    text-decoration:none;
}
.columns #main .books-wrapper .title a:hover {
    text-decoration: underline;
}
.columns #main .books-wrapper  p {
    color: #757988; /* medium purple gray color */
    font-size: 13px;
    margin: 6px 0;
    padding-right: 10px;
    font-weight: 600;
}
.columns #main .books-wrapper  p.smaller {
    color: #757988; /* medium purple gray color */
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
}
.columns #main .right-area .profile-img {
    float:left;
}
.columns #main .books-wrapper  a.red-link {
	color: rgba(43, 45, 66, 0.8); /* soft black/blue */
    text-decoration: underline;
}
.columns #main .books-wrapper  a.red-link:hover {
	color: rgba(43, 45, 66, 1.0); /* soft black/blue */
    text-decoration: underline;
}
.columns #main .right-area .right-text {
    width: 670px;
    float: right;
    overflow-y: scroll;
    padding: 0 20px 20px 0;
    height: 100%;
}
.full-width #main .right-area .right-text {
    width:101% !important;
}
.columns #main .right-area .right-text header {
    margin-left:12px;
}
.columns #main .right-area .col {
    width: 48%;
    text-align: justify;
    float: left;
    padding: 0 2% 0 0;
}
.columns #main .right-area .col:last-child {
    padding: 0 0 0 2%;
}
.columns #main .right-area .col .entry-meta {
    margin-bottom:0;
}
.columns #main .right-area .reviews {
    margin-top: 0;
    padding: 10px 2%;
}
.columns #main .right-area .reviews h1,
.columns #main .right-area .news h1
{
    color: rgba(43, 45, 66, 0.8); /* soft black/blue */
}
.columns #main .right-area .col .author {
    float:right;
}
.about-template #main .left-area {
    float: left;
    width: 760px;
    padding: 0;
}
#contact.about-template #main .left-area {
    float: left;
    width: 260px;
    min-height: 600px;
    padding: 0px;
    background-color: #ffeee8; /* pale pink */
}
#contact.about-template #main .left-area p {
    margin: 60px 30px 10px 55px;
    padding: 0;
	color: rgba(43, 45, 66, 0.88); /* soft black/blue */
}

.about-template #main .right-area {
    float: right;
    width: 350px;
    height: 255px;
    /* background: url(../images/books-bg3.png) no-repeat top left; */
    background-color: #ffeee8; /* pale pink */
    padding: 55px 30px;
}

#contact.about-template #main .right-area {
    float: right;
    width: 840px; /* 940 */
    min-height: 540px; /* 600 */
    /*background: url(../images/contact-right-area_bkg.jpg) no-repeat top left;*/
    background-color: #fff;
    padding: 30px 50px;
}

.about-template #main .left-area .about-title {
    float: left;
    display: block;
    margin: 30px 50px 0;
}
.about-template #main .left-area .right-text {
    float: right;
    width: 500px;
    height: 335px;
    overflow-y: scroll;
    padding: 15px;
    line-height: 1.5;
}

.info-links {
    text-transform: uppercase;
}

#map_canvas {
    width:100%;
    height:100%;
}


.review-story {
    padding-bottom: 10px; 

    clear: both;
    color: #757988; /* medium purple gray color */
}
.book-summary em,
.review-story em,
.news-story em
{
    font-weight: 600;
}
.review-story .author {
    font-size: 12px;
    color: rgba(43, 45, 66, 0.8); /* soft black/blue */
    float: right;
    margin-bottom: 10px;
}
.review-story hr {
    clear: both;
    height: 1px;

    margin: 10px auto;
    padding: 0;
    background: #ccc;
    color: #ccc;
}
.review-story:last-child hr {
    display: none;
}


.news-story {
    padding-bottom: 10px; 
    clear: both;
}
.news-story h2 {
    color: #757988; /* medium purple gray color */
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
    letter-spacing: normal;
}
.right-area h2 {
    font-weight: 600;
}

.news-story .entry-meta,
.site-header .entry-meta
{
    font-size: 12px;
    color: rgba(43, 45, 66, 0.8); /* soft black/blue */
    padding-bottom: 2px;
    /*border-bottom: 1px solid #b9a995;*/
}
.news-story p {
    margin-top: 10px;
}
.right-area a {
    color: #757988; /* medium purple gray color */
}
.right-area a:hover {
    color: #9097b1; /* bright purple gray color */
    text-decoration: underline;
}
.news-story hr {
    clear: both;
    width: 40%;
    margin: 10px auto;
    padding: 0;
    color: rgba(43, 45, 66, 0.3); /* soft black/blue */
    background-color: rgba(43, 45, 66, 0.3); /* soft black/blue */
}
.news-story:last-child hr {
    display: none;
}


#contact-form {
    font-weight: 600;
    font-size: 14px;
}


.left-area a {
    color: rgba(43, 45, 66, 0.9); /* soft black/blue */
}
.left-area a:hover {
    color: rgba(43, 45, 66, 0.5); /* soft black/blue */
    text-decoration: underline;
}

/*============================================================
QUOTES BLOCK
============================================================*/
#quotes-block {
    background: url(../images/quote-blue_bkg.jpg);
    background-size: 40px;
    padding: 15px 100px;
    margin-bottom: 10px;
    min-height: 130px;
    /*box-shadow: 0 0 5px 1px #333;*/
    z-index: 1;
    position: relative;
}
#quotes-block .quote {
    display: block;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom:0;
    height:100%;
    display: none;
    border-left: 1px solid #e5dee4; /* pale purple */
    border-right: 1px solid #e5dee4; /* pale purple */
}
#quotes-block .quote p {

    font-size: 21px;
    color: #8d909b; /* medium blue */
    padding: 0 100px;
    /*height:100%;*/
}
#quotes-block .author {
    color:#e5dee4; /* bright pale purple */
    display:block;
}
#quotes-block .source {
    color:#e5dee4; /* bright pale purple */
    font-size:16px;
}




#main ul li ul li {
    margin-left: 25px;
    margin-bottom: 1px;
    list-style-type: circle;
}
#main ul li ul li a {
    font-style: italic;
}
#main ul li ul li a.current {
    background-color: rgba(0,0,0,.2);
}


/*============================================================
FOOTER NAV
========== ==================================================*/
#footer-nav {
    background:#e5dee4; /* pale purple */
    overflow:hidden;
}
#footer-nav .current {
    color: #2b2d42; /* dark blue */
    background: url('../images/nav-books-blue-slash.png') no-repeat center 40px;
    background-size: 70px;
}
#footer-nav ul li ul .current {
    background:none;
}
#footer-nav .current:hover {
    color: #2b2d42; /* dark blue */
    background: url('../images/nav-books-blue-slash_over.png') no-repeat center 40px;
    background-size: 70px;
}
#footer-nav .current:hover:before {
    color:#e1a814;
}
#footer-nav ul li {
    float:left;
    list-style:none;
    margin: 0 40px;
}
#footer-nav ul li a {
    color: #8d909b;
    padding: 20px 15px;
    text-decoration: none;
    display: block;
    float: left;
    text-transform: uppercase;
}
#footer-nav ul li a:hover {
    color:#fff;
}
#footer-nav ul li ul {
    float:left;
}
#footer-nav ul li ul li {
    margin:0;
}
#footer-nav ul li ul a {
    padding:20px 5px;
    text-transform: none;
    font-style:italic;
}
#footer-nav ul li ul a:before {
    /*content: "|";*/
    padding-right: 10px;
    top: -1px;
    position: relative;
    color: #fff;
}
#footer-nav ul li ul a:hover:before {
    color:#857b70;
}
#footer-nav .books-nav a {
    padding-right:10px;
}


/*============================================================
CONTAINER: footer
============================================================*/
#footer {
    width: 100%;
    padding:10px 0;
    margin: 0 auto;
    clear: both;
	font-weight: 400;
    font-size: 13px;
	font-style: normal;
    text-align:center;
    color: rgba(255,255,255,0.5);
    background: #6c7487;
-webkit-border-radius: 0 0 10px 10px;
border-radius: 0 0 10px 10px;    
}
#footer p {
    margin:0;
}
#footer a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
    color: rgba(255,255,255,1.0);    
}
#footer span {
    margin:0 10px;
}

/***************************************
* form stuff 
****************************************/

form { 
    display: block; 
    padding-bottom: 65px; 
}
form label { 
    font-size: 1em; 
    font-weight: 600; 
    color: #757988; /* medium purple gray color */
    display: block; 
    margin-bottom: 0px; 
    
}

form .err, form .err2 { 
    color: #d63f3f; 
    border-radius: 4px; 
    display: none; 
    position: relative; 
    padding: 4px 7px; 
}

form #captchaimg { 
    display: block; 
    border: 1px solid #a1a1a1; 
    margin-bottom: 7px; 
}

form .sendbtn { 
    display: block; 
    font-size: 26px; 
    padding: 3px 6px; 
}

form .textinput { 
    display: block; 
    outline: none; 
    width: 250px; 
    border: 1px solid #ddd; 
    padding: 2px 4px; 
    margin-bottom: 5px; 
    font-size: 1em; 
    color: #888; 

}
form .textcaptcha { 
    display: block; 
    outline: none; 
    width: 250px; 
    border: 1px solid #ddd; 
    padding: 3px 4px; 
    margin-bottom: 10px; 
    font-size: 1.4em; 
    color: #888; 
}
form .textinput:focus, form .textcaptcha:focus { 
    color: #565656; 
    border-color: #c6c6c6; 
}

form .msgtextarea { 
    display: block; 
    outline: none; 
    font-size: 1.5em; 
    padding: 3px 11px; 
    width: 360px; 
    height: 180px; 
    border: 1px solid #ddd; 
    color: #888; 
    margin-bottom: 20px; 
    font-family: "chaparral-pro",sans-serif;
}
form .msgtextarea:focus { 
    color: #565656; 
    border-color: #c6c6c6; 
}


form a.btn {        
    -moz-box-shadow:inset 0px 1px 0px 0px #61647f;
    -webkit-box-shadow:inset 0px 1px 0px 0px #61647f;
    box-shadow:inset 0px 1px 0px 0px #61647f;
    
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5f6172), color-stop(1, #404253));
    background:-moz-linear-gradient(top, #5f6172 5%, #404253 100%);
    background:-webkit-linear-gradient(top, #5f6172 5%, #404253 100%);
    background:-o-linear-gradient(top, #5f6172 5%, #404253 100%);
    background:-ms-linear-gradient(top, #5f6172 5%, #404253 100%);
    background:linear-gradient(to bottom, #5f6172 5%, #404253 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5f6172', endColorstr='#404253',GradientType=0);
    
    background-color: #5f6172;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;        
    border: 1px solid #303140;        
    display:inline-block;
    color: #fff;
    font-size:13px;
    font-weight:normal;
    padding:6px 24px;
    text-decoration:none;        
    text-shadow:0px 1px 0px #3b4179;
    text-transform: uppercase;
    font-weight: bold;
}

form a.btn:hover { 
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #404253), color-stop(1, #5f6172));
    background:-moz-linear-gradient(top, #404253 5%, #5f6172 100%);
    background:-webkit-linear-gradient(top, #404253 5%, #5f6172 100%);
    background:-o-linear-gradient(top, #404253 5%, #5f6172 100%);
    background:-ms-linear-gradient(top, #404253 5%, #5f6172 100%);
    background:linear-gradient(to bottom, #404253 5%, #5f6172 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#404253', endColorstr='#5f6172',GradientType=0);
    background-color:#404253;
    
        color: #fff;
        text-decoration: none;
		text-shadow:0px 1px 0px #3b4179;        
}
form a.btn:active {
    position:relative;
    top:1px;
}

/*=====================================================================
Scroll Bars
=======================================================================*/
#main ::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}
#main ::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #D62929;
    background-image: -webkit-linear-gradient(90deg, #8e2020, #ce4646);
}
#main ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #776d60;
    background-color: #a49685;
    border: 2px solid #776d60;
}

.mobile-img {
    display:none;
}

/*============================================================
MEDIA CALLS
============================================================*/
@-ms-viewport{
    width: extend-to-zoom;
    zoom: 1.0;
}
@media (max-width: 680px) {

    #wrapper {
        width:100%;
    }
    #header {
        height:auto;
    }
    #logo {
        float:none;
        margin:0 auto;
    }
    #navBar {
        margin-top: 0;
        margin-bottom: 30px;
        float: none;
        overflow: hidden;
        height: auto;
    }
    #navBar ul#nav {
        width:100%;
    }
    #navBar ul#nav li {
        margin: 0;
        width: 50%;
        text-align: center;
    }
    #navBar ul#nav li.books-nav a {
        width:100%;
    }
    #navBar ul#nav li a {
        padding: 22px 0;
        width: 100%;
    }
    #navBar ul#nav li ul {
        display:none!important;
    }
    .slider-wrap {
        display: none;
    }
    .mobile-img {
        display:block;
    }
    .mobile-img img {
        width:100%;
    }
    .flex-direction-nav {
        display:none!important;
    }
    #main {
        margin-bottom:15px;
        line-height:1.3;
    }
    #contact.about-template #main .left-area,
    .columns #main .left-area,
    .about-template #main .left-area,
    .main-template #main .left-area {
        float: none;
        background:none;
        width: auto;
        height: auto;
        min-height:0;
    }
    #contact.about-template #main .right-area,
    .columns #main .right-area,
    .about-template #main .right-area,
    .main-template #main .right-area {
        width: 100%;
        float: none;
        clear: both;
        font-size: 20px;
        height:auto;
        background:none;
        background-color: #d9c7af;
        padding: 0 20px;
    }
    .right_side {
        width:150px!important;
        float:none;
    }
    .right_side img{
        width:100%;
    }
    #contact.about-template #main .left-area p {
        margin: 25px;
    }
    .main-template #main .left-area .book-left,
    .main-template #main .left-area .book-right {
        float:none;
        margin:0 auto 10px;
    }
    .about-template #main .left-area .right-text {
        width: 96%;
        padding: 2%;
        height: auto;
        overflow-y: auto;
        font-size: 18px;
    }
    .about-template #main .left-area .about-title {
        margin: 15px auto;
        float: none;
    }
    .columns #main .left-area {
        background:#ead5b8;
        padding-bottom: 20px;
        margin-bottom:30px;
    }
    .columns #main .left-area .links {
        width: auto;
        margin: 0 60px;
        text-align: left;
    }
    .columns #main .right-area .summary {
        font-size: 18px;
    }
    .columns #main .books-wrapper p.smaller {
        font-size:20px;
    }
    .columns #main .book-right,
    .columns #main .book-left {
        width:100%;
        float:none;
        clear: both;
        margin: 0 auto 40px;
    }
    .columns #main .books-wrapper .museum-rollover,
    .columns #main .books-wrapper .corner-rollover,
    .columns #main .books-wrapper .quick-rollover,
	#books.columns #main .books-wrapper .museum-rollover,
    #books.columns #main .books-wrapper .corner-rollover,
    #books.columns #main .books-wrapper .quick-rollover 
    {
        margin-right: 10px;
        width: 100%;
    }
    #books.columns #main .books-wrapper .book-img,
	.columns #main .books-wrapper .book-img 
	{
        width:100%;
    }
	.museum-rollover img:hover,
    .corner-rollover img:hover,
    .quick-rollover img:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }
    .columns #main .right-area .col,
    .columns #main .right-area .reviews,
    .columns #main .right-area .col:last-child {
        padding: 0;
        width:100%;
    }
    #quotes-block {
        background: url(../images/quotes-bg.png);
        padding: 20px;
        margin-bottom: 10px;
        min-height: 200px;
    }
    #quotes-block .quote p {
        padding:0 20px;
        font-size:15px;
    }

}