/*
Theme Name: Twenty Twelve Child Theme
Theme URI: https://wordpress.com/themes/twentytwelve/
Description: This is a custom child theme based on the Twenty Twelve Theme.
Author: The Wordpress Team
Author URI: https://wordpress.org
Template: twentytwelve
Version: 1.7
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/



-------------------------------------------------------------- */
/* =Webfonts
-------------------------------------------------------------- */

@font-face {
    	font-family: 'litera_serialregular';
	src: url('fonts/Litera_Serial-Regular-webfont.eot');
    	src: url('fonts/Litera_Serial-Regular-webfont.eot?#iefix') format('embedded-opentype'),
             url('fonts/Litera_Serial-Regular-webfont.woff2') format('woff2'),
             url('fonts/Litera_Serial-Regular-webfont.woff') format('woff'),
             url('fonts/Litera_Serial-Regular-webfont.ttf') format('truetype'),
             url('fonts/Litera_Serial-Regular-webfont.svg#litera_serialregular') format('svg');
    	font-weight: normal;
    	font-style: normal;
}
@font-face {
	font-family: 'FreshScript';
	src: url('fonts/fresh-script.eot');
	src: url('fonts/fresh-script.eot?#iefix') format('embedded-opentype'),
         url('fonts/fresh-script.woff2') format('woff2'),
	     url('fonts/fresh-script.woff') format('woff'),
	     url('fonts/fresh-script.ttf') format('truetype'),
	     url('fonts/fresh-script.svg#youworkforthem') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'news cycle';
    src: url('fonts/news-cycle-v14-latin-regular.eot');
    src: url('fonts/news-cycle-v14-latin-regular.eot?#iefix') format('embedded-opentype'),
       url('fonts/news-cycle-v14-latin-regular.woff2') format('woff2'),
       url('fonts/news-cycle-v14-latin-regular.woff') format('woff'),
       url('fonts/news-cycle-v14-latin-regular.ttf') format('truetype'),
       url('fonts/news-cycle-v14-latin-regular.svg#NewsCycle') format('svg');
    font-weight: normal;
	font-style: normal;
}



-------------------------------------------------------------- */
/* =Reset
-------------------------------------------------------------- */

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%;
	vertical-align: baseline;
	height: 100%;
	min-height: 100%;
}
body {
	line-height: 1;
}
ol {
	list-style: decimal outside;
}
.comments-area ol,
ul {
	list-style: none;
}
blockquote,
.entry-content blockquote,
q {
	quotes: none;
	font-style: normal;
	background-color: transparent;
	border-bottom: solid 0px #998355;
	border-top: solid 0px #998355;
	margin: 20px 40px;
	padding: 10px;
	border-left: solid 3px #998355;
	color: #998355;
}
blockquote.blurb,
.entry-content blockquote.blurb {
	font-style: normal;
	border: none;
	margin: 0;
	padding: 0;
	color: #000000;
}
blockquote p,
.entry-content blockquote p {
	text-indent: 0px;
	margin-bottom: inherit;
}
blockquote.blurb p,
.entry-content blockquote.blurb p {
	text-indent: 0px;
	margin-bottom: 1.6rem;
	color: #000000;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
}
html {
	overflow-y: scroll;
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	height: 100%;
	min-height: 100%;
}
a:focus {
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #aaa;
	border: 0;
	height: 1px;
	margin-top: 5.6rem;
	margin-bottom: 3.2rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
	max-width: 100%;
	height: auto;
}

/* Clearing floats 
-------------------------------------------------------------- */

.clear:after,
.wrapper:after,
.format-status :after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status :before,
.format-status :after {
	display: table;
	content: "";
}



-------------------------------------------------------------- */
/* =Repeatable Patterns
-------------------------------------------------------------- */

/* Small headers 
-------------------------------------------------------------- */

.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
}


/* Shared Post Format styling 
-------------------------------------------------------------- */

article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 10px;
	font-size: 1rem;
	line-height: 1.8rem;
}

/* Form fields, general styles first 
-------------------------------------------------------------- */

button,
input,
select,
textarea {
	border: 1px solid #000;
	font-family: 'news cycle', sans-serif;
	font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 2.6rem;
	padding-left: .5rem;
	padding-right: .5rem;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}
select#cat {
	width: 100%;
}
.entry-content .contact-form textarea {
	width: 100%;
	box-sizing: border-box;
}

/* Reset non-text input types 
-------------------------------------------------------------- */

input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons 
-------------------------------------------------------------- */

.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 0;
	font-family: "news cycle", sans-serif;
	font-size: 10px;
  	font-size: 1.2rem;
  	line-height: 2.6rem;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background-color: #1a6183;
	border: 1px solid #1a6183;
	width: 100%;
}
input[type="submit"] {
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	background-color: #998355;
	border: 1px solid #998355;
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background-color: #1a6183;
	border: 1px solid #1a6183;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}
#subscribe-email input,
.widget-area #subscribe-email input,
#content #subscribe-email input {
	border: 1px solid #000;
	font-family: 'news cycle', sans-serif;
	font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 2.6rem;
	padding-left: .5rem;
	padding-right: .5rem;
	width: 100%;
	box-sizing: border-box;
}
#eu-cookie-law input {
    width: 150px;
}

/* Responsive images 
-------------------------------------------------------------- */

.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
	height: auto;
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers 
-------------------------------------------------------------- */

embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* Row Images 
-------------------------------------------------------------- */
#row-images {
	clear: both;
	width: 100%;
}
#row-image-one,
#row-image-two,
#row-image-three,
#row-image-four,
#row-image-five {
	width: 20%;
	float: left;
	text-align: center;
}
.row-image-border-gray {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px;
	margin: 2px;
	text-align: center;
}
.row-image-border-white {
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 2px;
	text-align: center;
}
.row-image-box {
	width: 100%;
	height: 0px;
	padding-top: 154.8%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.row-image {
	left: 50%;
	margin-top: -154.8%;
	position: absolute;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	width: 100%;
	height: 100%;
}
.easyazon-image {
	min-width: 100%;
	min-height: 100%;
}

/* Images 
-------------------------------------------------------------- */
.alignleft,
.post_image_left {
	float: left;
	margin-right: 15px;
	margin-bottom: 0;
	max-width: 100%;
}
.alignright,
.post_image_right {
	float: right;
	margin-left: 15px;
	margin-bottom: 0;
	max-width: 100%;
}
.aligncenter,
.post_image_center { 
	margin: 0 auto;
	width: 500px;
	max-width: 100%;
	display: block;
}
.alignnone,
.post_image_noalignment {
	max-width: 100%;
}
.rounded {
	border: solid 0px #000;
	border-radius: 4px;
	overflow: hidden;
	margin: 0 2px;
	margin: 0 .25rem;
}
.rounded:hover {
    filter: hue-rotate(-150deg) saturate(.3) brightness(150%);
}
.rounded-in-header {
	border: solid 1px #000;
	border-radius: 4px;
	overflow: hidden;
	margin: 2px -100px 2px 0px;
	margin: .25rem -10rem .25rem 0;
}
.book_cover_br,
.cover_mr {
  	float: left;
  	border: solid 1px #aaa;
  	border-radius: 4px;
  	padding: 4px;
  	width: 250px;
  	height: auto;
  	max-width: 100%;
  	margin-right: 15px;
  	margin-right: 1.07142857143rem;
  	margin-bottom: 0;
}
.post_featured_image_background_square_div {
	width: 34%;
	float: left;
	margin-right: 15px;
}
.new-square-featured-image-div {
    width: 34%;
    height: 0;
    padding-top: 34%;
    overflow: hidden;
    float: left;
    margin-right: 15px;
    object-fit: cover;
    object-position: center;
}
.new-square-featured-image-img {
    width: 100%;
    float: left;
    height: auto;
    position: relative;
    top: 0;
    margin-top: -100%;
    object-fit: cover;
    object-position: center;
    padding-top: 0;
}
.post_featured_image_full_size_large {
	width: 100%;
	height: auto;
}
.my_book_rating_br_image,
.my_series_rating_br_image,
.book_rating_mr_image {
	margin-bottom: -4px;
	margin-bottom: -.28571428571.6rem;
}
.hidden {
	opacity: 0 !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	height: 0 !important;
	width: 0 !important;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */

	box-shadow: none;
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation 
-------------------------------------------------------------- */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}
.easy-wp-page-navigation {
	margin-top: 0;
	margin-bottom: 50px;
}



/* Author profiles 
-------------------------------------------------------------- */

.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}



-------------------------------------------------------------- */
/* =Basic Structure
-------------------------------------------------------------- */

/* Body, links, basics 
-------------------------------------------------------------- */

html {
	font-size: 87.5%;
	height: 100%;
	min-height: 100%;
}
body {
	font-size: 16px;
	font-size: 1.6rem;
	font-family: "news cycle", sans-serif;
	text-rendering: optimizeLegibility;
	color: #000;
	margin: 0;
	height: 100%
	min-height: 100%;
}
body.custom-font-enabled {
	font-family: "news cycle", Helvetica, Arial, sans-serif;
}
a,
a:visited {
	color: #1a6183;
	text-decoration: none;
}
a:hover {
	color: #998355;
	text-decoration: none;
}

/* Assistive text 
-------------------------------------------------------------- */

.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	height: 1px;
	width: 1px;
}
.main-navigation .assistive-text:focus,
.site .screen-reader-text:hover,
.site .screen-reader-text:active,
.site .screen-reader-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 10px;
	padding: 10px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}


/* Page structure 
-------------------------------------------------------------- */

.site {
	font-size: 16px;
	font-size: 1.6rem;
  	line-height: 1.6rem;
  	width: 100%;
  	background-color: #fff;
  	background-size: 100% auto;
  	background-attachment: fixed;
}
.wrapper {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto 0;
	padding: 0 20px;
	background-color: transparent;
}
.site-content {
	float: left;
	width: 65%;
	max-width: 750px;
	padding-right: 5%;
	padding-bottom: 4.8rem;
	overflow: auto;
	margin-top: 0;
}
.widget-area {
	float: right;
	width: 30%;
	overflow: visible;
	background-color: transparent;
	padding-bottom: 2.4rem;
}

/* Header 
-------------------------------------------------------------- */

#masthead {
        background-color: #000;
        box-shadow: none;
        position: relative;
        z-index: 1000;
        width: 100%;
        margin: 0 0 2.4rem;
        overflow: hidden;
        box-sizing: border-box;
}
#masthead-inner {
	width: 1200px;
	max-width: 96%;
	padding: 0;
	background-color: transparent;
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
	left: 50%;
        transform: translateX(-50%);
        -ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
        box-sizing: border-box;
}
.header-image {
	text-align: center;
}
.header-image img {
	float: none;
	max-width: 100%;
	padding-top: 2rem;
	height: auto;
	width: auto;
}
.header-title,
.header-title h1,
.site-header h1 {
	display: inline-block;
	align: left;
	float: left;
	font-family: 'FreshScript';
	font-size: 3rem;
	line-height: 4rem;
	color: #fff;
}
.site-header {
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #1a6183;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #998355;
	text-decoration: none;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #1a6183;
}
.site-title {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 34%;
	position: absolute;
}

/* Category Menu 
-------------------------------------------------------------- */

.main-menu {
	width: 100%;
  	display: block;
	float: left;
  	position: relative;
  	border-bottom: solid 1px #ddd;
}
.main-menu ul {
  	clear: left;
        float: left;
	position:relative;
        left:50%;
  	text-align: center;
  	list-style: none;
  	margin: 0;
  	padding-left: 0;
}
.main-menu li {
  	display: inline-block;
  	float: left;
	position: relative;
	right: 50%;
  	color: #000;
	font-family: 'litera_serialregular', sans-serif;
	letter-spacing: 
	font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8rem;
	font-weight: 400;
  	text-align: center;
}
.main-menu a {
  	display: block;
	background: #transparent;
	color: #000;
	font-family: 'litera_serialregular', sans-serif;
	font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8rem;
	font-weight: 400;
  	text-align: center;
        text-decoration: none;
  	text-transform: uppercase;
	margin: 0 15px;
}
.main-menu li:hover > a {
	background: transparent;
	color: #998355;
}

/* Page Menu 
-------------------------------------------------------------- */

.top-menu {
	width: 100%;
  	display: inline;
	float: none;
}
.top-menu ul {
    	float: none;
  	text-align: center;
  	list-style: none;
  	margin: 0;
  	padding: 0;
  	margin-bottom: 2.4rem;
}
.top-menu li {
  	display: inline-block;
	position: relative;
  	text-align: center;
  	margin: 0 25px;
}
.top-menu a {
	background: #transparent;
	color: #fff;
	font-family: 'litera_serialregular', sans-serif;
	font-size: 12px;
        font-size: 1.2rem;
	font-weight: bold;
  	text-align: center;
        text-decoration: none;
  	text-transform: uppercase;
}
.top-menu li:last-child {
	margin-right: 0;
}
.top-menu li:hover > a {
	background: transparent;
	color: #998355;
}
.top-menu-dropdown {
  	display: none;
}

/* Older/Newer Post Navigation
-------------------------------------------------------------- */
.site-content .site-navigation {
	margin: 0 0 2.4rem;
	overflow: hidden;
	font-family: 'litera_serialregular', sans-serif;
	font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8rem;
	font-weight: 400;
}
.site-content .nav-previous {
	float: left;
	width: 50%;
}
.site-content .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/* Banner 
-------------------------------------------------------------- */

section[role="banner"] {
        background-color: transparent;
        box-shadow: none;
        position: relative;
        z-index: 1000;
        width: 960px;
        max-width: 96%;
        border-bottom: 0px;
        border-radius: 8px;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);	
        -moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
        -webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
        margin: 25px auto 25px;
        overflow: auto;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
}

/* Sidebar 
-------------------------------------------------------------- */

.widget-area .widget {
	border-top: none;
	width: auto;
        color: #000;
        position: relative;
        font-family: 'news cycle', sans-serif;
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: 400;
        text-decoration: none;
        line-height: 18px;
        line-height: 1.8rem;
        text-align: left;
        background-color: transparent;
        margin: 0 0 2.4rem 0;
        padding: 0;
        overflow: visible;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
}
.widget-area .widget h3,
.widget-area .jetpack_subscription_widget h3 {
	color: #000;
	background-color: #fff;
	font-size: 1.2rem;
	line-height: 2.4rem;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "litera_serialregular",sans-serif;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	left: 50%;
	position: relative;
	border-bottom: solid 1px #aaa;
}
.widget-area .widget h3 em,
.widget-area .jetpack_subscription_widget h3 em {
	color: #000;
	font-size: 16px;
        font-size: 1.6rem;
  	font-weight: normal;
  	font-family: 'FreshScript', cursive, sans-serif;
  	text-transform: lowercase;
}
.widget-area .widget_search h3 {
	margin-top: -.6rem;
}
.widget-area .widget li {
	padding: 5px 0 5px 0;
	padding: .5rem 0 .5rem 0;
}
.widget-area .textwidget ul,
.widget-area .widget ul  {
	list-style: none;
	margin: 0 0 24px 0;
	margin: 0 0 1.714285714rem 0;
	padding: 0;
}
.widget-area .textwidget li {
}
.widget-area .widget a,
.widget-area .widget li a,
.widget-area .widget p a,
.widget-area .widget a:visited,
.widget-area .widget li a:visited,
.widget-area .widget p a:visited {
        color: #1a6183;
        text-decoration: none;
}
.widget-area .widget a:hover,
.widget-area .widget li a:hover,
.widget-area .widget p a:hover {
	color: #998355;
        text-decoration: none;
}
.widget-area #s {
	width: 59%; /* define a width to avoid dropping a wider submit button */
	box-sizing: border-box;
}
.widget-area #searchsubmit {
	width: 39%;
	box-sizing: border-box;
}
.widget-area .widget_search {
	border: none;
	width: auto;
        color: #000;
        padding: 0;
        position: relative;
        text-align: left;
        background-color: transparent;
        margin: 0 0 25px 0;
}
#Widgets_on_Pages_2.widgets_on_page {
	list-style: none;
}

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

#colophon {
        color: #fff;
	background-color: #000;
	clear: both;
	padding: 15px 0;
	width: 100%;
	text-align: center;
        text-transform: uppercase;
        font-family: "news cycle", sans-serif;
        font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 2.4rem;
}
#colophon a,
#colophon a:visited {
	color: #fff;
}
#colophon a:hover {
	color: #ddd;
}

/* Related Posts 
-------------------------------------------------------------- */
.related-post-text {
	padding: 2px 5px;
	margin: 2px 2px;
	line-height: 1.2rem;
}
.related-post-text a {
	color :#1a6183; 
	font-family: "news cycle",sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.2rem;
}
.related-post-text a:hover {
	color :#998355; 
	font-family: "news cycle",sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.2rem;
}
#related-posts {
	clear: both;
	width: 100%;
	overflow: hidden;
}
#related-post-onex {
	width: 25%;
	float: left;
	text-align: center;
}
#related-post-one {
	width: 33.33%;
	float: left;
	text-align: center;
}
.related-post-border-gray {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px;
	margin: 2px;
	text-align: center;
}
.related-post-border-white {
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 2px;
	text-align: center;
}
.related-post-box {
	width: 100%;
	height: 0px;
	padding-top: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.related-post-image {
	margin-top: -123.3%;
	position: absolute;
	width: 100%;
	height: auto;
}
.related-post-image img {
	-webkit-transition: all 2s ease; /* Safari and Chrome */
    	-moz-transition: all 2s ease; /* Firefox */
    	-ms-transition: all 2s ease; /* IE 9 */
    	-o-transition: all 2s ease; /* Opera */
    	transition: all 2s ease;
    	height: auto;
}
.related-post-image img:hover {
	-webkit-transform:scale(1.25); /* Safari and Chrome */
    	-moz-transform:scale(1.25); /* Firefox */
    	-ms-transform:scale(1.25); /* IE 9 */
    	-o-transform:scale(1.25); /* Opera */
     	transform:scale(1.25);
     	height: auto;
}
.related-post-div,
.related-post-div div,
.related-post-div img {
	-webkit-transition: all 2s ease; /* Safari and Chrome */
    	-moz-transition: all 2s ease; /* Firefox */
    	-ms-transition: all 2s ease; /* IE 9 */
    	-o-transition: all 2s ease; /* Opera */
    	transition: all 2s ease;
    	height: auto;
}
.related-post-div:hover,
.related-post-div div:hover,
.related-post-div img:hover {
	-webkit-transform:scale(1.25); /* Safari and Chrome */
    	-moz-transform:scale(1.25); /* Firefox */
    	-ms-transform:scale(1.25); /* IE 9 */
    	-o-transform:scale(1.25); /* Opera */
     	transform:scale(1.25);
     	height: auto;
}



/* Featured Posts 
-------------------------------------------------------------- */
.featured-post-text {
	padding: 5px 5px;
	margin: 2px;
	position: absolute;
	top: 50%;
	z-index: 1000;
	text-align: center;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	color: #ffffffffffffffffff;
	text-transform: uppercase;
	line-height: inherit;
	border: 1px solid #fff;
}
#featured-posts {
	clear: both;
	width: 100%;
	overflow: hidden;
}
#featured-post-one {
	width: 33.33%;
	float: right;
	text-align: center;
	padding-bottom: 25px;
}
.featured-post-border-gray {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px;
	margin: 2px;
	text-align: center;
}
.featured-post-border-white {
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 2px;
	text-align: center;
}
.featured-post-box {
	width: 100%;
	height: 0px;
	padding-top: 56.25%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.featured-post-image {
	margin-top: -102.25%;
	position: absolute;
	width: 100%;
	background-color: #000;
}
.featured-post-image img {
	opacity: 0.5;
    	filter: alpha(opacity=50);
}



-------------------------------------------------------------- */
/* =Main content and Comment Content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
img.wp-post-image {
}
.page-header {
	color: #000;
	font-family: 'news cycle', sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 21px;
	line-height: 2.4rem;
	text-align: left;
}
.page-header p:last-child {
	margin-bottom: 2.5rem;
}
.page-title,
.archive-title {
	width: auto;
        color: #000;
        font-family: 'news cycle', sans-serif;
        font-size: 16px;
  	font-size: 1.6rem;
  	line-height: 1.6rem;
        font-weight: bold;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 16px;
        line-height: 1.6rem;
        text-align: left;
        background-color: transparent;
        margin: 0 0 25px 0;
        margin: 0 0 2.5rem 0;
}
.entry-title-total,
.entry-title-total a,
.entry-title-total-archives,
.entry-title-total-archives a {
  	position: relative;
  	display: inline;
  	clear: both;
  	margin: 0;
  	color: #000;
}
.entry-title-total:hover,
.entry-title-total a:hover,
.entry-title-total-archives:hover,
.entry-title-total-archives a:hover {
}
.entry-title,
.entry-title a,
.entry-title a:visited {
	color: #000;
	background-color: transparent;
	font-size: 1.6rem;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "news cycle",sans-serif;
	padding: 0px;
	position: relative;
	margin: 0;
	line-height: 2.4rem;
}
.entry-title a:hover {
	color: #998355;
	background-color: transparent;
	font-size: 1.6rem;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "news cycle",sans-serif;
	padding: 0px;
	position: relative;
	margin: 0;
	line-height: 2.4rem;
}

.entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.site-content article .book-info-title {
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 0;
	margin: 0;
}
.comments-link a {
	color: #757575;
}
.comments-link a:hover {
	color: #21759b;
}
.tag-list {
	column-count: 3;
	-webkit-column-count: 3;
    	-moz-column-count: 3;
}
.category-list ul,
.category-list li,
.book-tags-list ul,
.book-tags-list li,
.pages-list ul,
.pages-list li {
	list-style: outside none none;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 0;
	line-height: 2.4rem;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 2.4rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	margin: 0;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: bold;
	text-decoration: none;
	color: #000;
}
.entry-content h3.general,
h3.general {
	text-align: center;
	padding-bottom: 4.4rem;
	font-family: 'FreshScript', sans serif;
	font-size: 3rem;
	line-height: 3rem;
	margin: 0;
}
.sub,
.entry-content h3.sub,
.entry-content .post-section-title-center,
.post-section-title-center {
	text-align: center;
	font-weight: bold;
	padding-bottom: 2.4rem;
	font-family: "litera_serialregular", news cycle;
	text-transform: uppercase;
	font-size: 2.4rem;
	line-height: 3.6rem;
	margin-bottom: 0;
}
.entry-content h3.sub2,
.entry-content .post-section-title-left,
.post-section-title-left {
	margin-bottom:0;
	padding-bottom:0;
	font-weight: bold;
}
.entry-content h4,
.comment-content h4 {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 2.4rem;
	font-weight: bold;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
        line-height: 21px;
        line-height: 2.4rem;
        margin-bottom: 21px;
        margin-bottom: 2.4rem;
        margin-top: 0;
}
.archive_intro_div {
	text-align: justify;
}
.entry-content p:last-child,
.full_review_br_div_inner p:last-child,
.mini_review_mr_div_inner p:last-child,
.post_intro_div p:last-child,
.archive_intro_div p:last-child {
	margin-bottom: 0;
}
.blankspacesmall {
	line-height: 1.1rem;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #1a6183;
}
.entry-content a:hover,
.comment-content a:hover {
	color: #998355;
}
.entry-content .more-link {
	white-space: nowrap;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 0;
	margin: 0 0 0 0;
}
.comment-content blockquote {
}
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: "news cycle", sans-serif;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: "news cycle", sans-serif;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: normal;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.full_review_br_div article p, 
.full_review_br_div p,
.mini_review_mr_div article p,
.mini_review_mr_div p {
	margin-top: 0px;
}
.site-content article {
	width: auto;
        color: #000;
        position: relative;
        font-family: 'news cycle', sans-serif;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 400;
        text-decoration: none;
        line-height: 21px;
        line-height: 2.4rem;
        text-align: left;
        background-color: transparent;
        margin: 0;
        padding: 0;
        overflow: hidden;
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
}
.site-content article p {
	margin-top: 0px;
}
.site-content article p:last-child {
	margin-bottom: 0;
}
.key {
	font-weight: normal;
}
.spoil {
    display: none;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta,
footer.entry-meta p,
footer.entry-meta-archives,
footer.entry-meta-archives p {
  	color: #aaa;
  	margin-bottom: 10px;
	margin-bottom: 1rem;
  	font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 1.8rem;
  	text-align: center;
  	font-family: 'news cycle', Helvetica, sans-serif;
  	text-transform: uppercase;
  	text-decoration: none;
  	font-weight: 400;
}
footer.entry-meta a,
footer.entry-meta a:visited,
footer.entry-meta-archives a,
footer.entry-meta-archives a:visited {
  	color: #aaa;
  	margin-bottom: 10px;
	margin-bottom: 1rem;
  	font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 1.8rem;
  	text-align: center;
  	font-family: 'news cycle', Helvetica, sans-serif;
  	text-transform: uppercase;
  	text-decoration: none;
  	font-weight: 400;
}
footer.entry-meta a:hover,
footer.entry-meta-archives a:hover {
  	color: #ddd;
  	margin-bottom: 10px;
	margin-bottom: 1rem;
  	font-size: 12px;
  	font-size: 1.2rem;
  	line-height: 1.8rem;
  	text-align: center;
  	font-family: 'news cycle', Helvetica, sans-serif;
  	text-transform: uppercase;
  	text-decoration: none;
  	font-weight: 400;
}
.single-author .entry-meta .by-author,
.single-author .entry-meta-archives .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}
#centered {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	width: auto;
	display: block;
}
.separate {
	display: block;
	overflow: hidden;
}
.affiliate_disclosure {
	background-image: url('https://blog.kristenburns.com/wp-content/uploads/Affiliate-Disclosure-Wide-Plain-3.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 2.4rem;
}
.wp-polls, .wp-polls-form {
	background-color: #ddd;
	padding: 10px;
}
.wp-polls .Buttons {
	border:1px solid #1a6183;
	background-color: #1a6183;
	width: 50%;
}



/* New Spoiler Method
-------------------------------------------------------------- */

/* -----------Inline within paragraphs */

.spoil {
  display: none;
}

/* Hides "hide spoiler" text - not working */
.showspoil {
  display: none; 
}

/* Shows "hide spoiler" text when spoiler is open */
.hidespoil:target + .showspoil {
  display: inline; 
  padding-right: 5px;
}

/* Hides "show spoiler" text when spoiler is open */
.hidespoil:target {
  display: none; 
}

/* Displays spoiler when link is clicked */
.hidespoil:target ~ .spoil {
  display: inline;
}

.spoil-content {
  display: inline;
}

.spoil-content::before {
  content: "["
}

.spoil-content::after {
  content: "]"
}

/* -------------Multiple paragraphs */

.spoildiv {
  display: none;
}

.showspoildiv {
  display: none; 
}

.hidespoildiv:target + .showspoildiv {
  display: inline; 
  padding-right: 5px;
}

.hidespoildiv:target {
  display: none; 
}

.hidespoildiv:target ~ .spoildiv {
  display: inline;
}

.spoil-content-div {
  display: inline;
}

.spoil-content-div p:first-of-type::before {
  content: "["
}

.spoil-content-div p:first-of-type::after {
  content: "]"
}



/* Social Media Follow Buttons
-------------------------------------------------------------- */
.followcontainer {
}
.followpic {
  	width: 35px;
  	height: 35px;
}



/* Social Media Share Buttons Jetpack
-------------------------------------------------------------- */

/* Controls Spacing Between Title & Buttons */

.site-content .sd-content {
	margin-top: 0 !important;
}

/* Removes Share Count */

.site-content .sd-content {
	text-align: center;
}

.site-content .sd-social .sd-button .share-count {
	display: none !important;
	padding: 1px 3px 1px 6px !important;
	margin-left: 5px !important;
	border-radius: 10px !important;
	font-size: 1rem !important;
	line-height: 1.8rem !important;
	font-family: 'litera_serialregular' !important;
}

/* Edits Actual Share Buttons */

.site-content .sd-social-text .sd-content ul li a.sd-button {
	text-decoration: none !important;
	display: inline-block !important;
	margin: 0 5px 5px 0 !important;
	font-family: 'litera_serialregular', sans-serif !important;
        font-size: 1.2rem !important;
        text-decoration: none !important;
        line-height: 1.8rem !important;
	text-transform: uppercase !important;
	letter-spacing: 3px !important;
	font-weight: normal !important;
	border-radius: 0 !important;
	color: #fff !important;
	background: #1a6183 !important;
	border: 2px solid #1a6183 !important;
	line-height: 1rem !important;
	padding: 5px 10px !important;
}

/* Edits Hover State of Share Buttons */

.site-content .sd-social-text .sd-content ul li a.sd-button:hover {
	background: #998355 !important;
	border: 2px solid #998355 !important;
}
.site-content .sd-social-text .sd-content ul li a.sd-button a:hover {
	color: #fff !important
}

/* "Like this" */

div.sharedaddy h3.sd-title {
	text-transform: none;
}




/* Sections
-------------------------------------------------------------- */
.read-more-div {
  	text-align: center;
  	margin-bottom: .8rem;
}
.read-more,
.read-more:visited {
	background-color: #fff;
	color: #aaa;
	font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.6rem;
  	font-weight: normal;
  	font-family: 'News Cycle', sans-serif;
  	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	border-bottom: solid 2px #aaa;
	padding: 0 20px;
}
.read-more:hover {
	color: #998355;
	border-bottom: solid 2px #998355;
}
.share-this-total,
.related-posts-total,
.your-thoughts-total {
  	position: relative;
  	display: block;
  	clear: both;
  	margin: 1rem 0;
  	margin-bottom: 0;
}
.share-this-total h3,
.related-posts-total h3,
.your-thoughts-total h3 {
	color: #000;
	background-color: #fff;
	font-size: 3rem;
	line-height: 3rem;
	font-weight: bold;
	text-align: center;
	text-transform: none;
	text-decoration: none;
	font-family: "litera_serialregular",sans-serif;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	left: 50%;
	position: relative;
	border-bottom: solid 1px #aaa;
	margin-bottom: 0;
	padding-bottom: 1.1rem;
}
.share-this-total h3 em,
.related-posts-total h3 em,
.your-thoughts-total h3 em {
	color: #000;
    font-size: 3rem;
  	font-weight: normal;
  	font-family: 'FreshScript', cursive, sans-serif;
  	text-transform: none;
}

/* Daily eBook Haul Widget
-------------------------------------------------------------- */
.outer-daily-ebook-haul,
.outer-currently-reading {
	clear: both;
	width: 100%;
	display: block;
}
#single-daily-ebook-image-one,
#single-currently-reading-image-one {
	width: 50%;
	float: none;
	text-align: center;
	display: block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
#single-currently-reading-image-two {
	width: 50%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	display: block;
	position: relative;
	left: 0;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
}
.single-daily-ebook-image-border-white,
.single-currently-reading-image-border-white {
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 2px;
	text-align: center;
}
.single-daily-ebook-image-box,
.single-currently-reading-image-box {
	width: 100%;
	height: 0px;
	padding-top: 154.8%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
}
.single-daily-ebook-image,
.single-currently-reading-image {
	left: 50%;
	margin-top: -154.8%;
	position: absolute;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	width: 100%;
	height: 100%;
}
.easyazon-image {
	min-width: 100%;
	min-height: 100%;
}



/* Comments
-------------------------------------------------------------- */

h2.entry-comments-title {
	color: #000; 
	background-color: #fff; 
	font-size: 1.6rem; 
	font-weight: normal; 
	text-align: center; 
	text-transform: uppercase; 
	text-decoration: none; 
	font-family: "news cycle",sans-serif; 
	padding: 0px; 
	position: relative; 
	margin: 0; 
	line-height: 2.4rem; 
}
p.entry-comments-subtitle {
	color: #000;
	background-color: #fff;
	font-size: 1.6rem; 
	font-weight: normal; 
	text-align: center; 
	text-transform: none; 
	text-decoration: none; 
	font-family: "news cycle",sans-serif; 
	padding: 0px; 
	position: relative; 
	margin: 0; 
	line-height: 2.4rem; 
}
.comments-area {
	color: #000;
	font-size: 1.6rem;
	font-weight: normal;
	text-align: left;
	text-transform: none;
	font-family: "news cycle",sans-serif;
	line-height: 2.4rem;
}
.commentlist {
	margin-bottom: 0;
}
ol.commentlist {
	padding: 0;
}
ol.children {
	margin: 0;
	padding: 0;
}
ol.commentlist li.depth-1 {
	margin-bottom: 20px;
	box-sizing: border-box;
	border: solid 1px #aaa;
	padding: 15px;
}
ol.commentlist li.depth-1:last-child {
	margin-bottom:0;
}
article.comment {
	margin: 0;
	padding: 0;
	border: none;
}
ol.children li.depth-2,
ol.children li.depth-4,
ol.children li.depth-6,
ol.children li.depth-8 {
	border: none;
	padding: 15px;
	margin-top: 15px;
	background-color: #ddd;
}
ol.children li.depth-3,
ol.children li.depth-5,
ol.children li.depth-7 {
	border: none;
	padding: 15px;
	margin-top: 15px;
	background-color: #fff;
}
li.depth-2 article.comment {
	border: none;
	padding: 0px;
}
.comments-area article header {
	margin: 0 0 8px;
	margin: 0 0 .8rem;
	overflow: hidden;
	position: relative;
	float: none;
	width: 100%;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
	width: 6.5rem;
	height: 6.5rem;
	display: inline-block;
	padding-right: 1rem;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 0;
	margin-left: 0;
}
.comments-area article header cite,
.comments-area cite b {
	font-style: normal;
	font-size: 16px;
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 1.6rem;
	margin-bottom: .4rem;
}
.comments-area .bypostauthor cite b {
}
.comments-area article header time {
	line-height: 1.5rem;
	text-transform: uppercase;
	font-size: 10px;
	font-size: 1rem;
	color: #1a6183;
}
.comments-area article header time:hover {
	color: #998355;
}
.comments-area article header cite a {
	color: #1a6183;
}
.comments-area article header cite a:hover {
	text-decoration: none;
	color: #998355;
}
section.comment-content p:last-child {
	margin-bottom: 0;
}
.comment-content a:hover {
	color: #998355;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
	display: none;
}
a.comment-reply-link {
	font-family: "news cycle",sans-serif;
	font-size: 1.2rem;
	line-height: 2.3rem;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	background-color: transparent;
}
a.comment-reply-link:hover {
}
.comment-reply-button {
	width: 50px;
	box-sizing: border-box;
	text-align: center;
	background-color: #1a6183;
	float: left;
	display: block;
	line-height: 1.8rem;
	margin-top: 5px;
	margin-top: .5rem;
	border: 1px solid #1a6183;
}
.comment-reply-button:hover {
	border: 1px solid #998355;
	background-color: #998355;
}
a.comment-edit-link,
a.comment-edit-link:visited,
p.comment-edit-link {
	line-height: 1.5rem;
	text-transform: none;
	font-size: 10px;
	font-size: 1rem;
	color: #aaa; 
}
a.comment-edit-link:hover {
	color: #ddd;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form 
-------------------------------------------------------------- */

#respond {
	margin-top: 0;
	margin-top: 0;
}
p.comment-reply-title {
	color: #000; 
	background-color: transparent; 
	font-size: 1.6rem; 
	font-weight: normal; 
	text-align: center; 
	text-transform: uppercase; 
	text-decoration: none; 
	font-family: "news cycle",sans-serif; 
	padding: 0px; 
	position: relative; 
	margin: 0; 
	line-height: 2.4rem; 
}
#respond h3#reply-title {
	color: #000;
	background-color: transparent;
	font-size: 1.6rem; 
	font-weight: normal; 
	text-align: center; 
	text-transform: none; 
	text-decoration: none; 
	font-family: "news cycle",sans-serif; 
	padding: 0px; 
	position: relative; 
	margin: 0; 
	line-height: 2.4rem;
}
#commentform {
	margin-top: 1.6rem;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 10px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: inline;
	line-height: 24px;
	line-height: 2.4rem;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 24px;
	line-height: 2.4rem;
	padding: 5px;
	padding: 0.5rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: #000;
}
.comment-form-author {
	float: left;
	display: inline-block;
	width: 33.3%;
	box-sizing: border-box;
	padding-left: 0;
	padding-right: 6px;
}
.comment-form-email {
	float: left;
	display: inline-block;
	width: 33.3%;
	box-sizing: border-box;
	padding-left: 3px;
	padding-right: 3px;
}
.comment-form-url {
	float: left;
	display: inline-block;
	width: 33.3%;
	box-sizing: border-box;
	padding-left: 6px;
	padding-right: 0;
}
#respond form label[for=wp-comment-cookies-consent] {
	display: inline;
	margin-left: .5rem;
}



/* Comment Mail CSS 
-------------------------------------------------------------- */

#respond form label {
	display: block;
}



-------------------------------------------------------------- */
/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
}
.archive-meta {
	color: #757575;
	font-size: 10px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571.6rem;
}



-------------------------------------------------------------- */
/* =Single Audio/Video Attachment View
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}
.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}



-------------------------------------------------------------- */
/* =Single Image Attachment View
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571.6rem;
}



-------------------------------------------------------------- */
/* =Aside Post Format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}



-------------------------------------------------------------- */
/* =Post Formats
-------------------------------------------------------------- */

/* Image posts 
-------------------------------------------------------------- */

article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts 
-------------------------------------------------------------- */

article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571.6rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts 
-------------------------------------------------------------- */

article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571.6rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts 
-------------------------------------------------------------- */

.format-status  {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status  header {
	display: inline-block;
}
.format-status  h1 {
	font-size: 15px;
	font-size: 1.071428571.6rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status  h2 {
	font-size: 10px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status  header a {
	color: #757575;
}
.format-status  header a:hover {
	color: #21759b;
}
.format-status  img {
	float: left;
	margin-right: 21px;
	margin-right: 2.4rem;
}



-------------------------------------------------------------- */
/* =Front Page Template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 16px;
	margin-bottom: 1.6rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571.6rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571.6rem 1.714285714rem 0.571428571.6rem 0;
}



-------------------------------------------------------------- */
/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 10px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 10px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 10px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: none;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}
.widget-area .widget-follow-single {
	float: none;
	width: 100%;
	box-sizing: border-box;
}
.widget-area .widget-follow-double {
	float: left;
	width: 48%;
	margin: 0 1%;
}
.widget-area .widget .widget-follow-link a,
.widget-area .widget .widget-follow-link a:visited,
.widget-follow-link a,
.widget-follow-link a:visited {
	color: #fff;
	padding: 6px;
	margin: 2px 0;
	display: block;
	text-align: center;
	text-transform: uppercase;
	background-color: #1a6183;
	border-radius: 4px;
	overflow: hidden;
}
.widget-area .widget .widget-follow-link a:hover,
.widget-follow-link a:hover {
    background-color: #998355;
}
.widget-area .widget-latest-posts {
	overflow: auto;
	margin: -2px;
}
.widget-area .featured-post-text {
	padding: 5px 5px;
	margin: 2px;
	position: absolute;
	top: 50%;
	z-index: 1000;
	text-align: center;
	left: 50%;
	transform: translate(-50%, -51.5%);
	-ms-transform: translate(-50%, -51.5%);
	-webkit-transform: translate(-50%, -51.5%);
	-moz-transform: translate(-50%, -51.5%);
	-o-transform: translate(-50%, -51.5%);
	color: #ffffffffffffffffff;
	text-transform: uppercase;
	font-family: 'litera_serialregular';
	font-size: 1.2rem;
	line-height: 1.8rem;
	border: 1px solid #fff;
}
.widget-area #featured-posts {
	clear: both;
	width: 100%;
	overflow: hidden;
}
.widget-area #featured-post-one {
	width: 50%;
	float: left;
	text-align: center;
	padding: 2px;
	box-sizing: border-box;
}
.widget-area .featured-post-border-gray {
	border: 1px solid #aaa;
	border-radius: 4px;
	padding: 4px;
	margin: 2px;
	text-align: center;
}
.widget-area .featured-post-border-white {
	border: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	text-align: center;
}
.widget-area .featured-post-box {
	width: 100%;
	height: 0px;
	padding-top: 100%;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
}
.widget-area .widget-popular-categories {
}
.widget-area .widget-pop-cat-single {
	box-sizing: border-box;
	padding-bottom: 4px;
}
.widget-area .widget-review-requests {
	text-align: center;
}
.widget-area .widget-popular-categories img,
.widget-area .widget-review-requests img {
	border: 1px solid #000;
}
.widget_eu_cookie_law_widget.widget {
	border: none !important;
}

/* Expanding Archives Widget
-------------------------------------------------------------- */
.expanding-archives-collapse-section {
	border: none;
}
.widget-area .widget .expanding-archives-title {
	border: none;
	background-color: #ddd;
}
.expanding-archives-section {
	padding-bottom: 3px;
}
.expanding-archive-month {
	text-transform: uppercase;
}

/* Goodreads Widget
-------------------------------------------------------------- */

.widget-area .gr_custom_container_1451529672 {
/* customize your Goodreads widget container here*/
	border: 0px;
	border-radius:0;
	padding: 0;
	background-color: #fff;
	color: #000;
	max-width: 100%;
	display: block;
	clear: both;
}
.widget-area .gr_custom_each_container_1451529672 {
/* customize each individual book container here */
	width: 20%;
	margin: 2px auto;
	padding: 0 2px;
	border-bottom: 0px solid #aaa;
	float: left;
	box-sizing: border-box;
	clear: none;
	overflow: hidden;
	height: 0;
	padding-top: 30%;
}
.widget-area .gr_custom_book_container_1451529672 {
/* customize your book covers here */
	overflow: hidden;
	height: auto;
	padding: 0;
	float: none;
	margin: 0;
	width: 100%;
	margin-top: -149%;
}
.widget-area .gr_custom_book_container_1451529672 img {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	overflow: hidden;
}
.widget-area .gr_custom_title_1451529672 {
/* customize your titles here */
	font-size: 1rem;
	display: none;
	}
.widget-area .gr_custom_author_1451529672 {
/* customize your author names here */
	font-size: 1rem;
	display: none;
	}
.widget-area .gr_custom_tags_1451529672 {
/* customize your tags here */
	font-size: 1rem;
	color: #aaa;
	display: none;
	}
.widget-area .gr_custom_rating_1451529672 {
/* customize your rating stars here */
	float: right;
	display: none;
	}
.widget-area .gr_custom_container_1451529672 br {
	display: none;
}
.widget-area .gr_custom_container_1451529672 center img {
	padding-top: 10px;
	margin-bottom: -10px;
	display: block;
	clear: both;
}

/* Tabbed Book Tags
-------------------------------------------------------------- */

/*----- Tabs -----*/
.tabs {
	width:100%;
	display:inline-block;
	box-sizing: border-box;
}
/*----- Tab Links -----*/
/* Clearfix */
.tab-links:after {
        display:block;
        clear:both;
        content:'';
}
ul.tab-links {
	margin: 0;
	padding: 0;
	background-color: #000000;
}
.tab-links li {
        margin:0;
        float:left;
        list-style:none;
        width: 33%;
        box-sizing: border-box;
        background:#000;
        text-align: center;
        padding: 10px 0;
}
.tab-links a {
	padding:0;
	display:inline-block;
	border-radius:0;
	background:#000;
	font-size:1.2rem;
	font-weight:400;
	color:#fff !important;
	font-family: "litera_serialregular", sans-serif;
	text-transform: uppercase;
}
.tab-links a:hover {
	color: #998355;
}
.tab-links a:hover {
        background:transparent;
        text-decoration:none;
}
li.active a, li.active {
        background: #000;
}
li.active a:hover {
	color: #fff;
}
/*----- Content of Tabs -----*/
.tab-content {
        padding:10px;
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        background:#fff;
        height: 250px;
        overflow-y: scroll;
        box-sizing: border-box;
}
.tab {
        display:none;
}
.tab.active {
        display:block;
}
.tab-title {
	margin-bottom: 10px;
	margin-top: 0;
	border-bottom: 2px solid #000;
	width: 100%;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 0;
	overflow: visible;
	font-weight: bold;
}



/* Tabbed Social Media
-------------------------------------------------------------- */

/*----- Tabs -----*/
.widget-area .social-tabs {
	width:100%;
	display:inline-block;
}
/*----- Tab Links -----*/
/* Clearfix */
.widget-area .social-tab-links:after {
        display:block;
        clear:both;
        content:'';
}
.widget-area .social-tab-links {
	padding: 0;
	margin: 0;
	border-bottom: 0px solid #998355;
}
.widget-area .social-tab-links li {
        margin:0;
        float:left;
        list-style:none;
        width: 20%;
        box-sizing: border-box;
        background:#000;
        text-align: center;
        padding: 0;
}
.widget-area .social-tab-links a {
	padding:0;
	display:inline-block;
	border-radius:0;
	background:#000;
	font-size:1.2rem;
	font-weight:400;
	color:#fff;
	font-family: "litera_serialregular", sans-serif;
	text-transform: uppercase;
}
.widget-area .social-tab-links a:hover {
	color: #000;
}
.widget-area .social-tab-links a:hover {
        background:transparent;
        text-decoration:none;
}
.widget-area li.active a, li.active {
        background: #000;
}
.widget-area li.active a:hover {
	color: #000;
}
/*----- Content of Tabs -----*/
.widget-area .social-tab-content {
        padding:10px;
        border-left: 1px solid #000;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        background:#fff;
        height: 250px;
        overflow-y: scroll;
}
.widget-area .social-tab {
        display:none;
}
.widget-area .social-tab.active {
        display:block;
}
.widget-area .social-tab-title {
	margin-bottom: 10px;
	margin-top: 0;
	border-bottom: 2px solid #000;
	width: 100%;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 0;
	overflow: visible;
	font-weight: bold;
}

/* Expanding Categories
-------------------------------------------------------------- */

.widget-area #expanding-cat-link, #expanding-cat-link {
    background-color: #ddd; 
    padding: 5px 10px; 
    text-align: center;
    font-weight: bold; 
    text-transform: uppercase;
    color: #1a6183;
    line-height: 2.4rem;
}
.widget-area #expanding-cat-link:hover, #expanding-cat-link:hover {
    color: #998355;
}
.widget-area #expanding-cat-content, #expanding-cat-content {
    padding: 0px;
    display: none;
}




-------------------------------------------------------------- */
/* =Plugins
-------------------------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}

/* Shared Counts Plugin
-------------------------------------------------------------- */
.site-content .shared-counts-wrap.style-fancy .facebook.shared-counts-button,
.site-content .shared-counts-wrap.style-fancy .twitter.shared-counts-button,
.site-content .shared-counts-wrap.style-fancy .pinterest.shared-counts-button,
.site-content .shared-counts-wrap.style-fancy .stumbleupon.shared-counts-button,
.site-content .shared-counts-wrap.style-fancy .google.shared-counts-button {
    background-color: #1a6183;
}
.site-content .shared-counts-wrap.style-fancy .shared-counts-button {
    border-radius: 0px;
    padding: .5rem 0px;
}



-------------------------------------------------------------- */
/* Media Queries
-------------------------------------------------------------- */

/* iPad Portrait
-------------------------------------------------------------- */
@media screen and (min-width : 801px) and (max-width : 1000px) {
}

/* Smartphones and small Tablet PCs
-------------------------------------------------------------- */
@media screen and (max-width : 800px) {
.site {
	max-width: 100%;
}
.wrapper {
	max-width: 96%;
	margin: 0px;
	padding: 0px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
.site-content {
	float: none;
	width: 100%;
	max-width: 100%;
	padding-right: 0px;
}
.widget-area {
	float: none;
	width: 100%;
	max-width: 100%;
}
#masthead {
        width: 100%;
        max-width: 100%;
}
#masthead-inner {
	max-width: 96%;
}
.entry-content h3.sub2,
.entry-content .post-section-title-left,
.post-section-title-left {
	margin-bottom:0;
	padding-bottom:0;
	font-weight: bold;
}
.widget-area .widget-follow-single {
	float: left;
	width: 50%;
}
.widget-area .widget-follow-link a {
	margin: 0 2px;
}
.widget-area #featured-post-one {
	width: 33%;
	float: left;
	text-align: center;
	padding: 0 2px;
	box-sizing: border-box;
}
.widget-area .widget-pop-cat-single {
	width: 50%;
	padding: 2px;
	float: left;
}
.widget-area .widget-review-requests img {
	width: 50%;
}
.outer-daily-ebook-haul,
.outer-currently-reading {
	overflow:auto;
}
#single-daily-ebook-image-one {
	width: 20%;
	float: left;
	text-align: center;
	display: inline;
	position: relative;
	left: 0;
	transform: translateX(0);
}
#single-currently-reading-image-one {
	width: 20%;
	text-align: center;
	display: block;
	position: relative;
	left: 40%;
	float: none;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
}
#single-currently-reading-image-two {
	width: 20%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	display: block;
	position: relative;
	left: 30%;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
}
.easyazon-image {
	min-width: 100%;
	min-height: 100%;
}
}

/* Smartphones (portrait and landscape)
-------------------------------------------------------------- */
@media screen and (max-width : 601px) {
.affiliate_disclosure {
	background-image: url('https://blog.kristenburns.com/wp-content/uploads/Affiliate-Disclosure-Thin-Plain-3.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 7.2rem;
}
.top-menu {
	display: block;
}
.top-menu li {
	display: block;
	margin-right: 0;
}
.top-menu-dropdown { 
	display: none; 
}
}

/* Smartphones (portrait and landscape)
-------------------------------------------------------------- */
@media screen and (max-width : 415px) {
#masthead-inner {
	padding: 0;
	background-color: transparent;
}
.alignleft,
.aligncenter {
	float: none;
	border: solid 1px #aaa;
	border-radius: 4px;
	padding: 4px;
	margin: 15px 0;
	margin: 1.5rem 0;
	max-width: 100%;
	box-sizing: border-box;
}
.post_featured_image_background_square_div {
	width: 255px;
	float: none;
	position: relative;
	left: 50%;
	transform: translate(-50%);
	margin-right: 0;
}
.post_featured_image_full_size,
.post_featured_image_h500 {
  	float: none;
  	border: solid 1px #aaa;
  	border-radius: 4px;
  	padding: 4px;
  	width: 100%;
  	height: auto;
  	margin-bottom: 15px;
  	margin-bottom: 1.5rem;
  	box-sizing: border-box;
}
.post_featured_image_full_size_large {
  	float: none;
  	border: none;
  	padding: 0;
  	width: 100%;
        height: auto;
  	margin: 0;
  	box-sizing: border-box;
}
.book_cover_br,
.cover_mr {
  	float: none;
  	position: relative;
  	display: block;
  	border: solid 1px #aaa;
  	border-radius: 4px;
  	padding: 4px;
  	width: 255px;
  	max-width: 100%;
  	box-sizing: border-box;
  	left: 50%;
  	transform: translate(-50%);
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
	float: none;
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding-left: 0;
	padding-right: 0;
}
.widget-area #featured-post-one {
	width: 50%;
	float: left;
	text-align: center;
	padding: 2px;
	box-sizing: border-box;
}
.widget-area .widget-pop-cat-single {
	width: 100%;
	padding-bottom: 4px;
	padding-right: 0;
	padding-left: 0;
	padding-top: 0;
	float: none;
}
.widget-area .widget-review-requests img {
	width: 100%;
}
#single-currently-reading-image-one {
	width: 50%;
	float: none;
	text-align: center;
	display: block;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
}
#single-currently-reading-image-two {
	width: 50%;
	float: left;
	box-sizing: border-box;
	text-align: center;
	display: block;
	position: relative;
	left: 0;
	transform: translateX(0);
	-ms-transform: translateX(0);
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-o-transform: translateX(0);
}
.tabs {
	width:100%;
	display:inline-block;
}
.tab-links:after {
        display:block;
        clear:both;
        content:'';
}
.tab-links {
	padding: 0;
	margin: 0;
	border-bottom: 0px solid #998355;
}
.tab-links li {
        margin:0;
        float:none;
        list-style:none;
        width: 100%;
        box-sizing: border-box;
        background:#000;
        text-align: center;
        padding: 10px 0;
}
.tab-links a {
	padding:0;
	display:block;
	border-radius:0;
	background:#000;
	font-size:1.2rem;
	font-weight:400;
	color:#fff;
	font-family: "litera_serialregular", sans-serif;
	text-transform: uppercase;
}
}



/* Smartphones Smaller (portrait and landscape)
-------------------------------------------------------------- */
@media screen and (max-width : 255px) {
.affiliate_disclosure {
	background-image: url('https://blog.kristenburns.com/wp-content/uploads/Affiliate-Disclosure-Thin-Plain-3.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	height: 7.2rem;
}
.post_featured_image_background_square_div {
	width: 100%;
	margin: 0;
}
.my_book_rating_br_image,
.my_series_rating_br_image {
	line-height: 2.4rem;
}
.cover_br_div,
.title_br_div,
.author_br_div,
.publisher_br_div,
.series_br_div,
.book_number_br_div,
.genre_br_div,
.pages_br_div,
.my_book_rating_br_div,
.my_series_rating_br_div,
.buy_now_br_div,
.cover_mr_div,
.title_mr_div,
.author_mr_div,
.publisher_mr_div,
.series_mr_div,
.book_number_mr_div,
.genre_mr_div,
.pages_mr_div,
.book_rating_mr_div,
.links_mr_div,
.like_my_review_mr_div,
.other_mr_div {
	text-align: center;
}
.book-info-title {
	display: block;
}
#row-image-one,
#row-image-two,
#row-image-three,
#row-image-four,
#row-image-five {
	width: 100%;
	float: none;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
}
.widget-area #featured-post-one {
	width: 100%;
	float: left;
	text-align: center;
	padding: 2px 0;
	box-sizing: border-box;
}
.widget-area .widget-follow-single {
	float: none;
	width: 100%;
}
.widget-area .widget-follow-link {
	margin: 0;
}
}



-------------------------------------------------------------- */
/* =Print
-------------------------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	 .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	 .entry-title,
	.entry-title {
		font-size: 24px;
                font-size: 1.71428571429rem;
                line-height: 1.71428571429rem;
                text-transform: uppercase;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 1.2rem;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}