/*
Theme Name: Equivocality 14
Theme URI: https://equivocality.com
Author: Jeff Ngan
Author URI: https://equivocality.com
Description: A journal
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Content
 *   5.3 - Entry Meta
 *   5.4 - Paging Navigation
 *   5.5 - Archives
 *   5.6 - Comments
 * 6.0 - Footer
 * 7.0 - Legacy
 * 8.0 - Media Queries
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
	font-family: "Source Sans Pro", Helvetica, sans-serif;
}

body {
	color: #141412;
	line-height: 1.5;
	margin: 0;
}

a {
	color: #ca3c08;
	text-decoration: none;
}

a:visited {
	color: #ac0404;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: #ea9629;
	outline: 0;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: Bitter, Georgia, serif;
	line-height: 1.3;
}

h1 {
	font-size: 48px;
	margin: 33px 0;
}

h2 {
	font-size: 30px;
	margin: 25px 0;
}

h3 {
	font-size: 22px;
	margin: 22px 0;
}

h4 {
	font-size: 20px;
	margin: 25px 0;
}

h5 {
	font-size: 18px;
	margin: 30px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

p {
	margin: 0 0 24px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: square;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px; /* Don't cut off the webkit search cancel button */
	width: 270px;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}




/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.align-right {
	float: right;
}

.align-left {
	float: left;
}

.entry-content p,
.entry-header,
.entry-content::after,
.entry-content blockquote,
.entry-content ul,
.entry-content ol,
.big-picture-landscape::before,
.medium-picture-portrait::before,
.medium-picture-landscape::before,
.audio-wrapper,
.entry-content .edit,
.entry-meta,
.paging-navigation,
.comments-area,
.entry-content h2,
.entry-content h3,
.thumbnail-wrapper,
#searchform,
.entry-content .tagline,
.conversation,
hr {
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
	background: #fff;
}

hr {
	height: 2px;
	text-align: center;
	padding-top: 1.75em;
	background: #fff;
	border-bottom: 2px solid #eee;
}

/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

html {
	padding-left: 5%;
	padding-right: 5%;
	background-color: #efefef;
}

body {
	font-size: 100%;
}

.site {
	padding-top: 5%;
}



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

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */

.site-header {
	text-align: center;
}

.site-title {
	font-size: 27px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin: 0 auto;
	display: block;
	width: 100%;
	max-width: 380px;
	padding: 30px;
	border: 4px solid #000;
}

.site-title img {
	width: 100%;
}

.site-description {
	color: #6b6b6b;
	font: italic 1.125em "ff-tisa-web-pro", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	border-bottom: 1px solid #c2c2c2;
	text-align: center;
	margin: 1.25em auto 0;
	padding-bottom: 10px;
	line-height: 1.25em;
	display: block;
	width: 100%;
	max-width: 600px;
}


/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.navigation a {
	color: #141412;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font: bold 0.75em "jaf-bernina-sans", Arial, Helvetica, sans-serif;
}

.navigation a:hover {
	color: #ccc;
}

.main-navigation {
	clear: both;
	margin: 0 auto 5em;
	max-width: 700px;
}

ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
	text-align: center;
}

.nav-menu li {
	display: inline-block;
	position: relative;
}

.nav-menu li a {
	display: block;
	line-height: 1em;
	padding: 5% 5px;
	margin: 0 7px;
}

.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
	color: #bc360a;
}


/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

.post {
	margin-top: 80px;
	margin-bottom: 2px;
}


/**
 * 5.1 Entry Header
 * ----------------------------------------------------------------------------
 */

.entry-header {
	margin-bottom: 2px;
}

#post-2 .entry-header {
	margin-bottom: 0;
}

.entry-title {
	font: normal 2em "ff-tisa-web-pro", Georgia, serif;
	line-height: 1.25em;
	vertical-align: center;
	margin-bottom: 0;
	padding: 30px 10% 15px;
	text-align: center;
}

.entry-title a {
	color: #141412;
}

.entry-title a:hover {
	color: #bc360a;
	text-decoration: none;
}


/**
 * 5.2 Entry Content
 * ----------------------------------------------------------------------------
 */

.entry-content {
	-webkit-hyphens: auto;
	-moz-hyphens:    auto;
	-ms-hyphens:     auto;
	hyphens:         auto;
	word-wrap: break-word;
	font: 400 1em "jaf-bernina-sans", Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	color: #535353;
}

.entry-content::before, .entry-content::after {
	content: '';
	display: block;
	background: #fff;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
	height: 1em;
}

.type-page .entry-content::after, .page-template-archives .entry-content::after {
	padding-bottom: 30px;
}

.entry-content p, .entry-content .tagline {
	padding: 1.75em 65px 0;
}

.entry-content p span:empty {
	display: block;
	margin-top: -1.75em;
}

.entry-content a,
.comment-content a {
	color: #bc360a;
}

.entry-content a:hover,
.comment-content a:hover {
	color: #ea9629;
}

.entry-content blockquote {
	/*position: relative;*/
	font: italic 1.5em "kepler-std-display", "Times New Roman", Times, serif;
	line-height: 1.45833333em;
	padding: 0.5em 0 0 54px;
}

.entry-content blockquote p {
	padding-top: 15px;
	margin: 0;
}

.entry-content cite {
	text-transform: uppercase;
	font-style: normal;
	font-size: 0.875em;
	padding-left: 54px;
	display: block;
	margin: -1em 0 0;
}

.entry-content h2 {
	font: normal 1.5em "ff-tisa-web-pro", Georgia, serif;
	line-height: 1.25em;
	padding: 1em 65px 0;
}

.entry-content h3 {
	font: normal 1.25em "ff-tisa-web-pro", Georgia, serif;
	line-height: 1.25em;
	padding: 1em 65px 0;
}

.entry-content img {
	margin: 0 auto;
	display: block;
	max-width: 100%;
}

.entry-content object {
	margin: 0 auto;
	display: block;
	max-width: 100%;
}

.entry-content ul,
.entry-content ol {
	padding: 36px 3em 0;
	list-style-type: disc;
}

.entry-content ul li,
.entry-content ol li {
	margin-left: 3em;
	padding-left: 0;
	line-height: 1.5em;
}

.entry-content ul li ul,
.entry-content ol li ol,
.entry-content ul li ol,
.entry-content ol li ul {
	font-size:1em;
}

.entry-content .about {
	font: italic 1.25em "ff-tisa-web-pro", Georgia, serif;
}

.big-picture-landscape {
	text-align: center;
	margin: 0 auto;
	max-width: 1280px;
}

.big-picture-landscape::before  {
	content: "";
	display: block;
	height: 36px;
}

.big-picture-landscape img {
	max-width: 100%;
}

.big-picture-landscape p:empty {
	display: block;
	margin-top: -1.75em;
}

.big-picture-portrait {
	text-align: center;
	margin: 0 auto;
	max-width: 1280px;
}

.big-picture-portrait::before  {
	content: "";
	display: block;
	height: 36px;
}

.big-picture-portrait img {
	max-width: 100%;
}

.big-picture-portrait p:empty {
	display: block;
	margin-top: -1.75em;
}

.medium-picture-portrait {
	/*width: 627px;*/
	background: #fff;
	margin: 0 auto;
	width: 100%;
	max-width: 700px;
}

.medium-picture-portrait::before {
	content: "";
	display: block;
	height: 36px;
}

.medium-picture-portrait img {
	max-width: 100%;
}

.medium-picture-portrait p:empty {
	display: block;
	margin-top: -1.75em;
}

.medium-picture-landscape {
	text-align: center;
	margin: 0 auto;
	max-width: 940px;
}

.medium-picture-landscape::before {
	content: "";
	display: block;
	height: 36px;
}

#post-2 .entry-content::before, #post-2 .about .medium-picture-landscape::before {
	display: none;
}

.medium-picture-landscape img {
	max-width: 100%;
}

.caption {
	font-size: 0.75em;
	background: #ececec;
	font-style: italic;
	color: #666;
	padding: 1em 3% 1px;
	background: #373737;
	width: 100%;
}

.caption:empty {
	display:none;
}

.medium-picture-portrait .caption {
	margin: 0 auto;
	width: 100%;
	max-width: 627px;
}

.medium-picture-landscape p:empty {
	display: block;
	margin-top: -1.75em;
}

.caption p {
	font: italic normal 16px "ff-tisa-web-pro", Georgia, serif;
	line-height: 1.25em;
	text-align: left;
	margin: 0 auto 1em;
	width: 100%;
	color: #fff;
	padding: 0;
	background: none;
	max-width: 1280px;
}

.audio-wrapper {
	padding: 1.75em 65px 0;
}

/* audio player container */
.mejs-container,
.mejs-embed,
.mejs-embed body,
.mejs-container .mejs-controls {
	background: #414141 !important;
}

/* progress bar */
.mejs-controls .mejs-time-rail .mejs-time-total {
	background: #ccc !important;
}
 
/* current time bar */
.mejs-controls .mejs-time-rail .mejs-time-current {
	background: #efefef !important;
}
 
/* file loading bar */
.mejs-controls .mejs-time-rail .mejs-time-loaded {
	background: #666 !important;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	/*max-width: 1280px;*/
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-wrapper {
	display: block;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
}

.entry-content .edit {
	font-style: italic; padding: 1.75em 65px 0;
}

p.audioplayer_container {
	margin-bottom: -1.75em;
}

.entry-content ol.footnotes {
	font-size: 0.875em;
	color: #999999;
}

.conversation {
	padding: 0 65px;
	margin: 0 auto;
}

.conversation ul {
	padding-left: 0;
	list-style: none;
	margin: 0;
}

.conversation ul li {
	margin: 0;
	background: none;
	padding-bottom: 10px;
}

.conversation .label {
	font-weight: bold;
}

.conversation .user_1 {
	color: #409fbc;
}

.conversation .user_2 {
	color: #c97576;
}

.conversation p {
	border-top: 1px dotted #3e3e3e;
}


/**
 * 5.3 Entry Meta
 * ----------------------------------------------------------------------------
 */

.entry-meta {
	color: #999;
	clear: both;
	padding: 1.5em 65px;
	font-size: 14px;
	position: relative;
	font: normal 0.75em "jaf-bernina-sans", Arial, Helvetica, sans-serif;
}
/*
.entry-meta:after {
	content: "";
	clear: both;
	display: table;
}
*/

.entry-meta a {
	color: #bc360a;
	font-weight: bold;
	text-transform: uppercase;
}

.entry-meta a:hover {
	color: #555555;
	text-decoration: none;
}

.entry-meta .tag-links {
	margin-bottom: 1.5em;
}

.entry-meta .tag-links a {
	margin-right: 7px;
	display: inline-block;
}

.entry-meta .meta-links {
	margin-right: 20px;
	display: inline-block;
	line-height: 2em;
}

.entry-meta .meta-links:last-child {
	margin-right: 0;
}

.entry-meta .meta-links i {
	margin-right: 4px;
}


/**
 * 5.4 Paging Navigation
 * ----------------------------------------------------------------------------
 */

.paging-navigation {
	margin-top: 3em;
	padding: 5px 0;
	background: none;
	border-top: 1px solid #c2c2c2;
}

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}


/**
 * 5.5 Archives
 * ----------------------------------------------------------------------------
 */

.archive-header {
	margin: 0 auto;
	padding: 5px 0;
	background: none;
	width: 100%;
	max-width: 700px;
}

.archive-title,
.archive-meta {
	text-align: center;
	color: #6b6b6b;
	font: italic 1.5em "ff-tisa-web-pro",serif;
	margin: 0;
}

#search-button {
	margin: 0 0 -7px 5px;
}

#searchform {
	padding: 1.75em 65px;
}

#searchform #s {
	outline: none;
	background-color: #fafafa;
	border: 1px solid #c7c7c7;
	color: #666;
	padding: 2px 6px;
	font-size:1em;
	height: 25px;
	width: 71%;
	max-width: 320px;
	font-size: 1em;
	font-style: italic;
	-webkit-border-radius: 3px;
	 -khtml-border-radius: 3px;
	   -moz-border-radius: 3px;
			border-radius: 3px;
}

#smart-archives-block {
	list-style-type: none;
	font-size: 0.875em;
	color: #b4b4b4;
	line-height: 1.667em;
	padding: 3em 65px;
}

#smart-archives-block li {
	margin: 0 0 0 0;
}

#smart-archives-block li strong a {
	letter-spacing: 1px;
	display: inline-block;
	/*width: 33px;*/
	width: 48px;
	margin: 0;
	padding: 0;
}

#smart-archives-block a:link {
	color: #000;
	background-color: #ececec;
	padding: 3px 4px;
	margin: 5px 3px;
}

#smart-archives-block a:hover {
	color: #fff;
	background-color: #000;
	text-decoration: none;
}

.empty-month {
	padding: 3px 4px;
	margin: 5px 3px;
}

p.archive-dropdown {
	display: none;
}

ul.archives-category {
	padding-bottom: 1.5em;
	padding-left: 65px;
	list-style-type: disc;
}


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

.comments-area {
	padding: 30px 65px 0;
	/*display: block;*/
/*	margin-top: -78px;*/
	margin-top: 0;
	font: 400 0.9375em "jaf-bernina-sans", Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	color: #535353;
}

.comments-title {
	font: normal 18px "ff-tisa-web-pro", Georgia, serif;
	border-bottom: 1px solid #333;
}

.comments-title:after {
	content: "";
	clear: both;
	display: table;
}

.comment-list,
.comment-list .comment {
	list-style-type: none;
	padding: 0;
}

.comment {
	margin-bottom: 30px;
}

.depth-1 {
	border-bottom: 1px dotted #CCC;
}

.comment-meta {
	width: 100%;
}

.comment-meta:after {
	content: "";
	clear: both;
	display: table;
}

.comment-metadata {
	float: left;
}

.comment-author .fn {
	word-wrap: break-word;
}

.avatar {
	float: left;
	display: block;
	margin-bottom: 10px;
	margin-right: 10px;
}

.comment-navigation {
	padding-bottom: 3em;
}

.comment-navigation h1 {
	display: none;
}


/* Comment form */
.comment-reply-title {
	font: normal 18px "ff-tisa-web-pro", Georgia, serif;
}

#respond {
	padding: 0;
	margin-bottom: 3em;
}

#respond h3 {
	font-size: 1.5em;
	margin: 0 0 2em;
	color: #000;
	height: 15px;
	padding-top: 4px;
}

.cancel-comment-reply {
	display: block;
	font-size: 0.875em;
	float: right;
}

.cancel-comment-reply a:link, .cancel-comment-reply a:visited {
	font-weight: normal;
	color: #333;
}

.cancel-comment-reply a:hover {
	color: #747474;
}

#commentform {
	padding-top: 1em;
	padding-bottom: 1em;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	max-width: 270px;
	width: 60%;
}

.comment-form textarea {
	width: 100%;
}

#submit {
	border: 1px solid #dbdbdb;
	background-color: #f0f0f0;
	font-size: 0.916em;
}



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

.site-footer {
	margin-top: 70px;
	clear: both;
	color: #686758;
	font-size: 14px;
	text-align: center;
}

.site-footer .widget-area,
.sidebar .site-footer {
	text-align: left;
}

.site-footer a {
	color: #686758;
}

.site-info {
	margin: 0 auto;
	padding: 30px 0;
	width: 100%;
}


/**
 * 7.0 Legacy
 * ----------------------------------------------------------------------------
 */

.thumbnail-wrapper {
	padding: 1.5em 65px 0;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.thumbnail-wrapper > .thumbnail {
	float:left;
	margin: 0 10px 10px 0;
	display: inline;
	border: 1px solid #999;
	padding: 2px;
}

.thumbnail a:link, .thumbnail a:visited {
	border: 0;
	background: none;
	padding: 0;
}

.clearboth {
	clear: both;
}



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

@media only screen and (max-width: 780px) {
	/*
	html {
		padding-left: 0;
		padding-right: 0;
	}
	
	.site-header, .paging-navigation {
		padding-left: 5%;
		padding-right: 5%;
	}
	*/
	.entry-content p,
	.entry-content .tagline,
	.entry-content h2, 
	.entry-content h3,
	.entry-content ul,
	.entry-content ol,
	.entry-content .edit,
	.entry-meta,
	#searchform,
	#smart-archives-block,
	ol.footnotes,
	.thumbnail-wrapper,
	.entry-content .conversation {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.main-navigation {
		margin: 0 auto 3em;
	}
	
	.entry-title {
		padding-top: 15px;
	}
	
	.entry-meta {
	/*	margin: 0 auto 80px;*/
		/*margin-bottom: 1.5em;*/
		padding-bottom: 1%;
	}
	
	.entry-content {
		font: normal 1em;
		line-height: 1.25em;
		margin-top: 0;
	}
	
	.entry-content::before {
		display: none;
	}
	
	.entry-content blockquote {
		font-size: 1.25em;
		padding: 10px 6% 0;
	}
	
	.entry-content cite {
		padding-left: 6%;
	}
	
	.audio-wrapper {
		padding-left: 6%;
		padding-right: 6%;
	}
	
	ol.footnotes li.footnote {
		margin-left: 5%;
	}
	
	.comments-area {
		padding: 2px 5% 0;
	}
	
	.post {
		margin-top: 4%;
	}
	
	.caption {
		padding: 1.125em 0 1%;
	}
	
	#smart-archives-block {
		display: none;
	}
	
	p.archive-dropdown {
		display: block;
		padding-bottom: 1.5em;
	}
	
	ul.archives-category {
		padding-left: 5%;
	}

	
}