/*
 * Theme Name: Blocco
 * Theme URI: http: //www.press75.com/
 * Description: A very unique block style theme including a responsive design.
 * Version: 2.0.1
 * Author: Press75
 * Author URI: http: //www.press75.com/
 * License: GNU General Public License
 * License URI: license.txt
 * Tags: blog, photography, portfolio, clean, contemporary, geometric, minimal, modern, simple, black, light, white, one-column, two-columns, right-sidebar, responsive-width, custom-background, custom-header, custom-menu, editor-style, featured-images, full-width-template, infinite-scroll, post-formats, sticky-post, theme-options, translation-ready
*/


/* CSS Reset (DO NOT EDIT)
----------------------------------------------- */
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,
input, textarea, keygen, select, button,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

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

[hidden] {
  display: none;
}


/* General Styles
----------------------------------------------- */

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

html, body {
	min-height: 100%;
}

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

body {
	background: #000000;
	-webkit-tap-highlight-color: #FFFFAF;
}

::selection,
::-moz-selection {
	background: #FFFFAF;
}


/* Primary Font Styles
----------------------------------------------- */
body {
	font-size: 0.8125em; /* 13px */
	line-height: 1.54; /* 20px */
}

body, input {
	color: #808080;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
}

pre, code, kbd, samp {
	font-family: monospace, monospace;
	_font-family: 'courier new', monospace;
}


/* Primary Link Styles
----------------------------------------------- */
a {
	text-decoration: none;
	color: #404040;
}

a:hover {
	color: #808080;
}


/* Font Property Styles
----------------------------------------------- */
.muted {
	color: #E6E6E6;
}


/* Heading Styles
----------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	color: #404040;
	font-weight: 700;
}

h1 {
	font-size: 2.307em; /* 30px */
	line-height: 1.166; /* 35px */
	margin-bottom: 1em; /* 30px */
}

h2 {
	font-size: 2em;  /* 26px */
	line-height: 1.1667; /* 30px */
	margin-top: 1.153em; /* 30px */
	margin-bottom: 0.769em; /* 20px */
}

h3 {
	font-size: 1.5em; /* 20px */
	line-height: 1.333; /* 25px */
	margin-top: 1.5em; /* 30px */
	margin-bottom: 0.5em; /* 10px */
}

h4 {
	font-weight: 400;
	font-size: 1.230em; /* 16px */
	line-height: 1.166; /* 18px */
	margin-bottom: 0.625em; /* 10px */
}

h5 {
	font-size: 1em; /* 13px */
	margin-bottom: 0.384em; /* 5px */
}

h6 {
	color: #BFBFBF;
	text-transform: uppercase;
	font-size: 1em; /* 13px */
	margin-bottom: 0.384em; /* 5px */
}


/* Paragraph & List Styles
----------------------------------------------- */
p {
	margin: 0 0 1.5em 0;
}

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

ul, ol, dl {
	margin: 0 0 1.5em;
	list-style-position: inside;
}

ul {
	list-style-type: disc;
}
ul.square {
    list-style-type: square;
}
ul.circle {
    list-style-type: circle;
}
ul.no-bullet {
    list-style-type: none;
}


ul ul, ol ul {
	list-style-type: circle;
}

ol, ul ol, ol ol ol {
	list-style-type: decimal;
}

ol ol {
	list-style-type: lower-alpha;
}

ul ul, ol ul, ul ol, ol ol {
	margin: 0.555em 0 1em;
	padding: 0 0 0 1.2em;
}

dt {
	font-size: 1.076em;
	font-weight: 700;
}

dd {
	margin-bottom: 0.769em;
}


/* Media Styles
----------------------------------------------- */
img::selection,
img::-moz-selection {
  background: transparent;
}

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

img, object, embed {
	max-width: 100%;
	height: auto;
}

img[class="align"],
img[class*="wp-image-"] {
  height: auto;
}

.wp-embed {
	overflow: hidden;
	margin: 0 0 1.5em;
}

#googlemap img, #googlemap embed, #googlemap object,
#map_canvas img, #map_canvas embed, #map_canvas object,
.map_canvas img, .map_canvas embed, .map_canvas object {
	max-width: none !important;
}

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

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

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


/* Alignment Styles
----------------------------------------------- */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1em;
}
.alignright {
    display: inline;
    float: right;
	margin-left: 1em;
}
.aligncenter {
	display: block;
	margin: 0 auto;
}

img.alignright,
img.aligncenter {
    margin-bottom: 1em;
}


/* Field Styles
----------------------------------------------- */
form {
	overflow: hidden;
}

input, textarea {
	border: none;
	outline: none;
}

input[type=text],
input[type=password],
textarea {
	padding: 0.538em 0.769em; /* 7px 10px */
	color: #404040;
	background: #ffffff;
	border: 1px solid #e3e3e3;
}


/* Table Styles
----------------------------------------------- */
.table-container {
	overflow: hidden;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout:fixed;
}

caption, th, tfoot {
	color: #404040;
}

caption {
	font-weight: 700;
	font-size: 1.230em; /* 16px */
	line-height: 1.166; /* 18px */
	padding-bottom: 0.625em; /* 10px */
}

tfoot {
	font-style: italic;
}

th {
	font-weight: 700;
}

th, td {
	border-bottom-width: 1px;
	padding: 0.5em 0.5em 0.5em 0;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #e3e3e3;
}


/* Typography Styles
----------------------------------------------- */
abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
	font-style: inherit;
	font-weight: bold;
	line-height: inherit;
}

blockquote {
	min-height: 25px; /* allow enough hight for background image to fully show */
	background: url(images/quote.png) top left no-repeat;
	margin-bottom: 0.769em; /* 10px */
	padding-left: 3.07em; /* 40px */
	font-style: italic;
}

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

blockquote cite {
	margin-left: 0.384em; /* 5px */
	display: inline-block;
	font-style: normal;
}

blockquote > p {
	padding-top: 0.384em; /* 5px */
}

q {
	quotes: none;
}

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

q q:before {
	content: open-quote;
}

q q:after {
	content: close-quote;
}

address {
	font-style: normal;
}

em, i, cite, dfn {
	font-style: italic;
	font-weight: inherit;
	line-height: inherit;
}

hr {
	overflow: hidden;
	display: block;
	padding: 0;
	margin: 0 0 1.5em 0;
	border: none;
	border-bottom: 1px dashed #e3e3e3;
}

ins {
	text-decoration: none;
}

abbr[title], acronym[title], ins[title] {
    border-bottom: 1px dotted;
	cursor: help;
}

abbr, acronym {
	text-transform: uppercase;
	font-size: 90%;
}

mark,
.highlight {
	background: #ffff00;
}

strike, del {
	color: #93250d;
	text-decoration: line-through;
}

pre, code, kbd, samp {
	font-size: 1em;
}

pre {
	padding: 1em;
	margin-bottom: 1.5em;
	text-shadow: none;
	background: #ffffff;
	border: 1px solid whiteSmoke;
	overflow: hidden;
	white-space: pre;           /* CSS 2.0 */
	white-space: pre-wrap;      /* CSS 2.1 */
	white-space: pre-line;      /* CSS 3.0 */
	white-space: -pre-wrap;     /* Opera 4-6 */
	white-space: -o-pre-wrap;   /* Opera 7 */
	white-space: -moz-pre-wrap; /* Mozilla */
	white-space: -hp-pre-wrap;  /* HP Printers */
	word-wrap: break-word;      /* IE 5+ */ 
}

small, sub, sup {
	font-size: 85%;
	color: #ababab;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* HELPERS (Non-Semantic)
----------------------------------------------- */
.ir {
	display: block;
	border: 0;
	text-indent: -999em;
	overflow: hidden;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: left;
	direction: ltr;
}

.ir br {
	display: none;
}

.overflow-hidden {
	overflow: hidden;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

.invisible {
	visibility: hidden;
}

.group:after {
	content: "";
	display: table;
	clear: both;
}

.round {
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}


/* Button Styles (Default)
----------------------------------------------- */
.post-content .button {
	color: #ffffff;
}

input[type=submit],
button,
.button,
.gray.button,
.site-navigation .menu a,
.page-numbers,
.post-edit-link,
.comment-reply-link,
.comment-edit-link,
.menu #searchform input,
.page-link a,
#paginate a,
#paginate .current.dots,
#paginate .current.dots:hover,
#infinite-handle span {
	color: #707070;
	display: inline-block;
	font-size: 0.923em; /* 12px */
	font-weight: bold;
	margin-right: 0.416em; /* 5px */
	margin-bottom: 0.416em; /* 5px */
	padding: 0.333em 0.833em; /* 4px 10px */
	border: 1px solid #cccccc;

	background: #d8d8d8;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), color-stop(100%, #d8d8d8));
	background: -moz-linear-gradient(top, #efefef, #d8d8d8 100%);
	background: -o-linear-gradient(top, #efefef, #d8d8d8 100%);
	background: linear-gradient(top, #efefef, #d8d8d8 100%);

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

input[type=submit]:hover,
button,
.button,
.gray.button:hover,
.site-navigation .menu a:hover,
.page-numbers,
.comment-reply-link:hover,
.comment-edit-link:hover,
.post-edit-link:hover,
.menu #searchform input:hover,
.page-link a:hover,
#paginate a:hover,
#infinite-handle span:hover  {
	border-color: #ababab;
	background: #e3e3e3;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), color-stop(100%, #e3e3e3));
	background: -moz-linear-gradient(top, #f5f5f5, #e3e3e3 100%);
	background: -o-linear-gradient(top, #f5f5f5, #e3e3e3 100%);
	background: linear-gradient(top, #f5f5f5, #e3e3e3 100%);
}


/* Button Styles (Green)
----------------------------------------------- */
.green.button,
.green a,
.site-navigation .current-menu-item a,
#paginate .current {
	color: #ffffff;
	border: 1px solid #1b8800;
	background: #19a500;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#22d100), color-stop(100%, #19a500));
	background: -moz-linear-gradient(top, #22d100, #19a500 100%);
	background: -o-linear-gradient(top, #22d100, #19a500 100%);
	background: linear-gradient(top, #22d100, #19a500 100%);
}

.green.button:hover,
.green a:hover,
.site-navigation .current-menu-item a:hover,
#paginate .current:hover {
	color: #ffffff;
	border-color: inherit;
	background: #1db200;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#24d800), color-stop(100%, #1db200));
	background: -moz-linear-gradient(top, #24d800, #1db200 100%);
	background: -o-linear-gradient(top, #24d800, #1db200 100%);
	background: linear-gradient(top, #24d800, #1db200 100%);
}


/* Button Styles (Light Blue, Twitter)
----------------------------------------------- */
.light-blue.button,
.light-blue a,
.twitter a,
.vimeo a {
	color: #ffffff;
	border: 1px solid #0b88a7;
	background: #00acd2;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#05d2ff), color-stop(100%, #00acd2));
	background: -moz-linear-gradient(top, #05d2ff, #00acd2 100%);
	background: -o-linear-gradient(top, #05d2ff, #00acd2 100%);
	background: linear-gradient(top, #05d2ff, #00acd2 100%);
}

.light-blue.button:hover,
.light-blue a:hover,
.twitter a:hover,
.vimeo a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #01c1ec;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#43ddfe), color-stop(100%, #01c1ec));
	background: -moz-linear-gradient(top, #43ddfe, #01c1ec 100%);
	background: -o-linear-gradient(top, #43ddfe, #01c1ec 100%);
	background: linear-gradient(top, #43ddfe, #01c1ec 100%);
}


/* Button Styles (Dark Blue, Facebook)
----------------------------------------------- */
.dark-blue.button,
.dark-blue a,
.facebook a {
	color: #ffffff;
	border: 1px solid #273f6a;
	background: #273f6a;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#3b5998), color-stop(100%, #273f6a));
	background: -moz-linear-gradient(top, #3b5998, #273f6a 100%);
	background: -o-linear-gradient(top, #3b5998, #273f6a 100%);
	background: linear-gradient(top, #3b5998, #273f6a 100%);
}

.dark-blue.button:hover,
.dark-blue a:hover,
.facebook a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #35528d;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#4568b1), color-stop(100%, #35528d));
	background: -moz-linear-gradient(top, #4568b1, #35528d 100%);
	background: -o-linear-gradient(top, #4568b1, #35528d 100%);
	background: linear-gradient(top, #4568b1, #35528d 100%);
}


/* Button Styles (Charcoal, Google Plus)
----------------------------------------------- */
.charcoal.button,
.charcoal a,
.google-plus a,
#respond a {
	color: #ffffff;
	border: 1px solid #252525;
	background: #242424;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#373737), color-stop(100%, #242424));
	background: -moz-linear-gradient(top, #373737, #242424 100%);
	background: -o-linear-gradient(top, #373737, #242424 100%);
	background: linear-gradient(top, #373737, #242424 100%);
}

.charcoal.button:hover,
.charcoal a:hover,
.google-plus a:hover,
#respond a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #343434;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#4C4C4C), color-stop(100%, #343434));
	background: -moz-linear-gradient(top, #4C4C4C, #343434 100%);
	background: -o-linear-gradient(top, #4C4C4C, #343434 100%);
	background: linear-gradient(top, #4C4C4C, #343434 100%);
}


/* Button Styles (Pink, Dribbble)
----------------------------------------------- */
.pink.button,
.pink a,
.dribbble a {
	color: #ffffff;
	border: 1px solid #A52B59;
	background: #ca356d;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#f0699a), color-stop(100%, #ca356d));
	background: -moz-linear-gradient(top, #f0699a, #ca356d 100%);
	background: -o-linear-gradient(top, #f0699a, #ca356d 100%);
	background: linear-gradient(top, #f0699a, #ca356d 100%);
}

.pink.button:hover,
.pink a:hover,
.dribbble a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #d35886;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#f38eb3), color-stop(100%, #d35886));
	background: -moz-linear-gradient(top, #f38eb3, #d35886 100%);
	background: -o-linear-gradient(top, #f38eb3, #d35886 100%);
	background: linear-gradient(top, #f38eb3, #d35886 100%);
}


/* Button Styles (Orange, Subscribe)
----------------------------------------------- */
.orange.button,
.orange a,
.subscribe a {
	color: #ffffff;
	border: 1px solid #C94916;
	background: #f65a1c;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#fca166), color-stop(100%, #f65a1c));
	background: -moz-linear-gradient(top, #fca166, #f65a1c 100%);
	background: -o-linear-gradient(top, #fca166, #f65a1c 100%);
	background: linear-gradient(top, #fca166, #f65a1c 100%);
}

.orange.button:hover,
.orange a:hover,
.subscribe a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #f67b4b;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb486), color-stop(100%, #f67b4b));
	background: -moz-linear-gradient(top, #fbb486, #f67b4b 100%);
	background: -o-linear-gradient(top, #fbb486, #f67b4b 100%);
	background: linear-gradient(top, #fbb486, #f67b4b 100%);
}


/* Button Styles (Red, YouTube)
----------------------------------------------- */
.red.button,
.red a,
.youtube a {
	color: #ffffff;
	border: 1px solid #B70000;
	background: #e00000;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#ff7b7b), color-stop(100%, #e00000));
	background: -moz-linear-gradient(top, #ff7b7b, #e00000 100%);
	background: -o-linear-gradient(top, #ff7b7b, #e00000 100%);
	background: linear-gradient(top, #ff7b7b, #e00000 100%);
}

.red.button:hover,
.red a:hover,
.youtube a:hover {
	color: #ffffff;
	border-color: inherit;
	background: #fe0f0f;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#fe9797), color-stop(100%, #fe0f0f));
	background: -moz-linear-gradient(top, #fe9797, #fe0f0f 100%);
	background: -o-linear-gradient(top, #fe9797, #fe0f0f 100%);
	background: linear-gradient(top, #fe9797, #fe0f0f 100%);
}


/* Button Styles (Small)
----------------------------------------------- */
.small a {
	font-size: 0.846em; /* 11px */
	padding: 0.1em 0.727em; /* 1px 8px */
}


/* Header Styles
----------------------------------------------- */
.site {
	position: relative;
}

.site-header,
.site-main {
	position: relative;
	float: left;
	min-height: 100%;
}

.site-header {
	padding-top: 3.84em; /* 50px */
	width: 219px;
	text-transform: uppercase;
	text-align: right;
}

.site-header-image {
	display: block;
}

#mobile-header-image {
	display: none;
}

.site-header-image img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	float: right;
}

.site-info {
	clear: both;
	border-top: 1px solid transparent;
	padding: 0.923em 1.384em 0.923em 0.923em;  /* 12px 18px 12px 12px */
	min-height: 219px;
}

.site-title,
.site-description {
	font-weight: 700;
	font-size: 2.307em; /* 30px */
	line-height: 1.311em; /* 39px */
	margin: 0;
	word-wrap: break-word;
	color: #404040;
}

.site-title a {
	display: block;
	color: #808080;
}


/* Menu & Pagination Styles
----------------------------------------------- */
.site-navigation {
	float: right;
	position: relative;
	top: 3.846em; /* 50px */
	width: 160px; /* */
	margin-right: -161px; /* */
	margin-bottom: 3.846em; /* 50px */
}

.site-navigation ul {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 3.461em; /* 45px */
	list-style: none;
}

.site-navigation ul.home-menu {
	margin-bottom: 0;
}

.site-navigation li {
	width: 100%;
	float: left;
	position: relative;
}

.site-navigation li:hover {
	visibility: inherit;
}

.site-navigation .menu a {
	position: relative;
	display: block;
	word-wrap: break-word;
}

#paginate .current.dots,
#paginate .current.dots:hover {
	height: 2px;
	padding-top: 0;
	padding-bottom: 0;
}

#paginate a,
#paginate .page-numbers,
#paginate .current.dots,
#paginate .current.dots:hover,
.site-navigation .menu a,
.menu #searchform input {
	position: relative;
	left: 0;
	float: left;
	margin-bottom: 0.416em; /* 5px */
	padding-left: 0.833em; /* 10px */
	padding-right: 0.833em; /* 10px */

	border-left: none;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topleft: 0;
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}

.site-navigation li a:hover,
#paginate a.page-numbers:hover {
	padding-left: 1.666em; /* 20px */
}

.site-navigation ul ul {
	position: absolute;
	display: none;
	margin: 0;
	padding: 0;
	width: 150px;
	border: 1px solid #cccccc;

	background: #d8d8d8;
	background: -webkit-gradient(linear, 0 0, 0 100%, from(#efefef), color-stop(100%, #d8d8d8));
	background: -moz-linear-gradient(top, #efefef, #d8d8d8 100%);
	background: -o-linear-gradient(top, #efefef, #d8d8d8 100%);
	background: linear-gradient(top, #efefef, #d8d8d8 100%);
}

.site-navigation ul ul ul {
	border-right: none;
}

.site-navigation li li {
	margin: 0;
	float: none;
	min-width: 149px;
	border-left: none;
}

.site-navigation li li:first-child {
	border-right: 1px solid #e3e3e3;
}

.site-navigation li li li:first-child {
	border-right: none;
}


.site-navigation li:hover ul {
	display: block;
	left: -150px;
	top: 0;
}

.site-navigation li:hover li ul,
.site-navigation li li:hover li ul,
.site-navigation li li li:hover li ul {
	display: none;
}

.site-navigation li li:hover ul,
.site-navigation li li li:hover ul,
.site-navigation li li li li:hover ul {
	display: block;
	left: -150px;
	top: -1px;
}

.site-navigation ul > li li {
	margin-right: 0;
}

.site-navigation li li a,
.site-navigation li li a:hover  {
	float: none;
	background: none;
	border: none;
	padding-left: 0.833em; /* 10px */
	width: 100%;
}

.site-navigation li li a:hover {
	color: #333333;
}

.site-navigation .menu {
	position: relative;
	z-index: 10000;
}

/* Menu Search Form */
.site-navigation #searchform {
	float: left;
	width: 100%;
	margin-left: -1px;
	border-left: 1px solid #e3e3e3;
}

.site-navigation #searchform .field {
	text-align: left;
	max-width: 100%;
	cursor: text;
	margin: 0;
	padding: 0.333em 0.833em; /* 4px 10px */
}

.site-navigation #searchsubmit {
	display: none !important;
}

.mobile-search {
	display: none;
	position: relative;
}

.mobile-search-trigger {
	position: absolute;
	z-index: 999;
	top: -49px;
	right: 0;
	width: 49px;
	height: 49px;
	line-height: 50px;
	background: red;
	text-align: center;
	color: #000000;
	border-left: 1px solid #e3e3e3;
	background: #f5f5f5;
	cursor: pointer;
}

.mobile-search-trigger .search-icon {
	display: block;
	margin: auto;
	position: relative;
	top: 50%;
	margin-top: -8px;
}

.mobile-search #searchform {
	position: absolute;
	width: 100%;
	top: -50px;
}

.mobile-search .field {
	color: #808080;
	height: 50px;
	padding: 20px 70px 20px 15px;
	border: none;
	border-bottom: 1px solid #e3e3e3;
}

.mobile-search .field:focus {
	color: #404040;
}

.mobile-search #searchform .submit {
	cursor: pointer;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	height: 50px;
	width: 50px;
	line-height: 50px;
	font-weight: bold;
	border: none;
	background: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

/* Mobile Nav */
.mnav,
.mnav-trigger {
	position: absolute;
	top: -50px;
	left: 0;
	width: 100%;
	height: 51px;
	line-height: 51px;
	cursor: pointer;
}

.mnav-trigger {
  	z-index: 1;
  	cursor: default;
  	border-top: 1px solid #e3e3e3;
  	border-bottom: 1px solid #e3e3e3;
  	background: #ffffff;
}

.mnav-icon {
	position: relative;
	float: left;
	margin-right: 20px;
	display: block;
	width: 49px;
	height: 49px;
	color: #000;
	background: #f5f5f5;
  	border-right: 1px solid #e3e3e3;
}

.mnav-icon:before {
	top: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	top: 50%;
	pointer-events: none;
	border-color: rgba(255,255,255,0);
	border-top-color: #000000;
	border-width: 8px;
	margin-left: -8px;
	margin-top: -4px;
	left: 50%;
}

.mnav:hover + .mnav-trigger {
	color: #404040;
}

.mnav:hover + .mnav-trigger .mnav-icon {
	background: #000000;
}

.mnav:hover + .mnav-trigger .mnav-icon:before {
	border-top-color: #ffffff;
}


/* Pagination */
.page-numbers {
	clear: both;
}

span.page-numbers.dots {
	padding-left: 0.583em !important; /* 12px */
	padding-right: 0.583em !important; /* 12px */
}


/* Main Content Containers
----------------------------------------------- */
.site-main {
	width: 762px;
	border-left: 1px solid #e3e3e3;
	border-right: 1px solid #e3e3e3;
	background: #ffffff url(images/hatch-light.png) repeat;
}

.site-content {
	position: relative;
	padding: 50px;
	float: left;
	width: 100%;
}


/* Block Item Styles
----------------------------------------------- */
.block-item {
	width: 220px;
	min-height: 220px;
	background: white;
	float: left;
	position: relative;
	padding: 12px 18px;
}

.blocks .block-item {
	max-height: 220px;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background-color: #ffffff;
}

.block-item .post-title,
.block-item .post-title a {
	float: left;
	color: #000000;
	min-height: 100%;
}

.block-item.no-thumbnail {
	background-color: #000000;
}

.block-item.no-thumbnail .post-title a {
	color: #ffffff;
}

.block-item.no-thumbnail:hover {
	background-color: #ffffff;
}

.block-item.no-thumbnail:hover .post-title a {
	color: #000000;
}

.blocks .block-item.page-header {
	background-color: #ffffff;
}

.page-header .page-title {
	color: #000000;
}

.page-header .page-title span {
	color: #808080;
}


.block-item .wp-post-image {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.block-item .page-title,
.block-item .post-title {
	font-weight: 700;
	font-size: 2.307em; /* 30px */
	line-height: 1.311em; /* 39px */
	margin: 0;
	word-wrap: break-word;
	text-transform: uppercase;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.block-item .post-title a {
	width: 100%;
}

.sticky {
	position: relative;
}

.page-title:after,
.sticky:after {
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	z-index: 2;
	pointer-events: none;
	border-width: 15px;
	margin-left: -15px;
	top: 5px;
	right: 5px;
}

.sticky:after {
	border-color	: rgba(255,255,255,0);
	border-right-color: #ffffff;
	border-top-color: #ffffff;
}

.page-title:after {
	border-color: rgba(0,0,0,0);
	border-right-color: #808080;
	border-top-color: #808080;
}

.sticky:hover:after {
	border-right-color: #000000;
	border-top-color: #000000;
}


/* Single Post/Page Header Styles (Thumbnail & Video)
----------------------------------------------- */
.post-media {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
}

.post-media iframe,
.post-media object,
.post-media embed {
	display: block;
}

.post-media.post-thumbnail {
	height: 440px;
}

.post-media.post-video {
	overflow: hidden;
	background-color: #000000;
}

.post-media img {
	display: block;
	min-width: 660px;
	height: auto;
}

.post-thumbnail.mobile {
	display: none;
}

/* Grid Overlay */
.grid-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 100;
	overflow: hidden;
}

.line {
	position: absolute;
	display: block;
}

.line.vertical {
	height: 100%;
	border-right: 1px solid #ffffff;
}

.line.vertical.left {
	width: 33.3%;
}

.line.vertical.right {
	width: 66.6%;
}

.line.horizontal {
	width: 100%;
	top: 50%;
	border-bottom: 1px solid #ffffff;
}

.post-content .page-link {
	margin: 1.5em 0 4.5em;
	font-weight: bold;
}
.post-content .page-link a {
	color: #808080;
	margin: 0 2px 4px;
}


/* Post & Page Content Styles
----------------------------------------------- */
.post-content {
	width: 100%;
	word-wrap: break-word;
}

.post-content > h2,
.post-content > h3,
.post-content > h4,
.post-content > h5,
.post-content > h6 {
	margin-top: 0;
}

h3:before,
h3:after {
    content: " ";
    display: table;
}


.post-content img {
	max-width: 100%;
	height: auto;
}

.post-content ul,
.post-content ol {
	padding-left: 19px;
	list-style: disc;
	margin-bottom: 10px;
}

.post-content ol {
	list-style: decimal;
}

.post-content li {
	line-height: 18px;
}


/* Post & Page Sidebar Styles
----------------------------------------------- */
.post-sidebar {
	position: relative;
	z-index: 10;
	float: right;
	width: 220px;
	padding: 0;
}

.post-sidebar .block-item {
	background: #ebebeb;
	color: #808080;
	margin-bottom: 1px;
	padding: 12px 18px;
}

.post-sidebar a {
	font-weight: bold;
}

.post-sidebar ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.post-sidebar li {
	font-size: 18px;
	line-height: 26px;
	font-weight: bold;
}

.post-sidebar a:hover,
.block-item .post-author a,
.block-item .post-date a {
	color: #808080;
}


/* Post & Page Header Styles
----------------------------------------------- */
.post-header {
	margin: -20px 0 0 20px;
}
.post-header .title-block {
	margin-top: 19px;
	overflow: hidden;
	background-color: #000000;
}

.post-header .title-block .post-title {
	color: #ffffff;
	height: 100%;
}

.has-thumbnail .title-block  {
	margin-top: 1px;
}

.has-thumbnail.featured-title .title-block  {
	margin-top: -220px;
}

.format-video.has-thumbnail.featured-title .title-block  {
	margin-top: 1px;
}

.format-video .title-block {
	margin-top: 1px;
	display: inline;
}

.post-meta {
	overflow: hidden;
}


/* Post & Page Widget Styles
----------------------------------------------- */
.post-widgets {
	clear: both;
	margin: 0 0 20px 20px;
}

.page .post-widgets {
	margin-top: -19px;
}


/*	NO RESULTS
/*-------------------------------------------------*/

.block-item.two-blocks {
	float: left;
	width: 440px;
	color: #ffffff;
	background: #000000;
}

.no-results .page-content {
	padding-top: 1.2em;
}


/*	GALLERY
/*-------------------------------------------------*/

.gallery {
	overflow: hidden;
	margin: 0 auto 40px;
}

.gallery .clearfix {
	clear: both;
}

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

.gallery .gallery-icon img {
	border: none !important;
}

.gallery .gallery-item {
	float: left;
	text-align: center;
	margin-top: 0;
	padding: 0 2% 3.5%;
	width: 33%;
}

.gallery dl,
.gallery dt {
	margin: 0;
}

.gallery br + br {
	display: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.gallery-columns-2 .gallery-item {
	width: 50%;
}

.gallery-columns-4 .gallery-item {
	width: 25%;
}

.gallery-columns-5 .gallery-item {
	width: 20%;
}

.gallery-columns-6 .gallery-item {
	width: 16.6667%;
}
.gallery-columns-5 .wp-caption-text,
.gallery-columns-6 .wp-caption-text,
.gallery-columns-7 .wp-caption-text,
.gallery-columns-8 .wp-caption-text,
.gallery-columns-9 .wp-caption-text,
.gallery-columns-10 .wp-caption-text {
	display: none;
}

.gallery-columns-5 br,
.gallery-columns-6 br,
.gallery-columns-7 br,
.gallery-columns-8 br,
.gallery-columns-9 br,
.gallery-columns-10 br {
	display: none;
}

.wp-caption {
	overflow: hidden;
	margin-bottom: 1.5em;
	text-align: center;
	padding: 5px 5px 0 5px;
	background: #ffffff;
	border: 1px solid #f5f5f5;
	max-width: 100%;
}

.wp-caption img {
	max-width: 100%;
	display: block;
}
.wp-caption img.wp-smiley {
	display: inline-block;
}

.wp-caption-text {
	font-size: 12px;
	font-style: italic;
	margin: 0.667em 0;
	padding: 0.4166em 0.8333em;
	color: #808080;
}

.gallery-caption {
	color: #808080;
}




/* Widet Styles
----------------------------------------------- */
.widget {
	position: relative;
	overflow: hidden;
}

.widget-title {
	margin: 0 0 0.25em;
}

/* Recent Comments */
.widget_recent_comments li {
	margin-bottom: 5px;
}

.widget_recent_comments a:last-child {
	color: #808080;
}


/* RSS */
.widget_rss li {
	margin-bottom: 10px;
}

.widget_rss .rssSummary {
	margin-top: 5px;
}

.widget_rss .rssSummary,
.widget_rss cite {
	font-size: 12px;
	font-weight: normal;
	line-height: 1.5em;
}

/* Calendar */
.widget_calendar caption,
.widget_calendar tfoot {
	width: 100%;
	text-align: left;
	padding-bottom: 10px;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	line-height: 26px;
	color: #808080;
}

.widget_calendar th,
.widget_calendar td {
	border: none;
}

/* Archve, Category, Pages, Meta, Recent Entries */
.widget_archive a,
.widget_categories a,
.widget_pages a,
.widget_meta a,
.widget_recent_entries a {
	color: #808080;
}
.widget_archive a:hover,
.widget_categories a:hover,
.widget_pages a:hover,
.widget_meta a:hover,
.widget_recent_entries a:hover {
	color: #404040;
}

/* Custom Nav */
.widget_nav_menu .twitter,
.widget_nav_menu .facebook,
.widget_nav_menu .google-plus,
.widget_nav_menu .dribbble,
.widget_nav_menu .vimeo,
.widget_nav_menu .youtube,
.widget_nav_menu .subscribe {
	float: left;
}

/* Search */
#searchform {
	position: relative;
}

#searchform .field {
	padding-right: 40px;
	margin-bottom: 5px;
	width: 100%;
}

#searchform .submit {
	position: absolute;
	right: -1px;
	top: 4px;
	padding: 4px 6px;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}


/* Post Comment Styles
----------------------------------------------- */
#comments {
	width: 100%;
	margin-top: 30px;
}

#comments {
	margin-bottom: 26px;
}

.commentlist .children {
	padding-left: 0;
}

.commentlist .children li {
	margin-left: 50px;
}

.comment-author {
	line-height: 26px;
	font-weight: bold;
	font-size: 14px;
	margin: 0;
}

.commentlist img.avatar {
	background: #ffffff;
	border: 1px solid #f5f5f5;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	margin-top: 5px;
	padding: 3px;
	position: absolute;
	left: 0;
}

.commentlist .comment-author a {
	color: #404040;
}

.commet-meta,
.comment-meta a {
	color: #404040;
}

.comment-meta a:hover {
	color: #808080;
}

.post-comment-text {
	padding-left: 50px;
	margin-bottom: 14px;
}

#comments .commentlist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment {
	list-style: none;
	position: relative;
	word-wrap: break-word;
}

.comment-content {
	margin-bottom: 40px;
}

.comment a.comment-reply-link,
.comment a.comment-edit-link {
	float: none;
	color: inherit;
}

.bypostauthor {
	padding: 10px 15px;
	border: 1px solid #f5f5f5;
	background: #ffffff;
}

.bypostauthor img.avatar {
	left: 15px;
	border: none;
}


/* Post Comment Form Styles
----------------------------------------------- */
#respond {
	max-width: 420px;
	margin-bottom: -12px;
	position: relative;
}

#respond .required {
	color: red;
}

#respond .form-submit input {
	cursor: pointer;
}

.post-comment #respond {
	margin-bottom: 31px;
	margin-left: 50px;
}

#respond label {
	display: inline-block;
	width: 80px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
	width: 200px;
}

.comment-form-comment label {
	display: block;
	margin-bottom: 5px;
}

.comment-form-comment textarea {
	width: 100%;
	height: 145px;
	margin-top: 2px;
}

.post-comment .comment-form-comment textarea {
	width: 346px;
}

#respond .logged-in-as {
	display: none;
}


/* Copyright Styles
----------------------------------------------- */
.site-footer {
	clear: both;
	position: absolute;
	bottom: 18px;
	padding: 0 50px;
}

.site-footer a {
	color: #808080;
	font-weight: bold;
}


/* CSS3
----------------------------------------------- */

/* Box Shadow */
.post-content input[type=text],
.post-content input[type=password],
.post-content textarea {
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	-mox-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.blocks .block-item {
	-webkit-box-shadow: inset 0 0 2px #cccccc;
	-moz-box-shadow: inset 0 0 2px #cccccc;
	box-shadow: inset 0 0 2px #cccccc;
}

.site-navigation #s,
.site-navigation .menu .page-numbers,
.site-navigation .menu > ul > li > a {
	-webkit-box-shadow: inset 3px 0 3px rgba(0,0,0,0.05);
	-moz-box-shadow: inset 3px 0 3px rgba(0,0,0,0.05);
	box-shadow: inset 3px 0 3px rgba(0,0,0,0.05);
}

.site-navigation ul ul {
	-webkit-box-shadow: inset -4px 0 6px rgba(255,255,255,0.2), inset 3px 0 3px rgba(0,0,0,0.05);
	-moz-box-shadow: inset -4px 0 6px rgba(255,255,255,0.2), inset 3px 0 3px rgba(0,0,0,0.05);
	box-shadow: inset -4px 0 6px rgba(255,255,255,0.2), inset 3px 0 3px rgba(0,0,0,0.05);
}

/* Text Shadow */
#pageinate .current,
.button,
.current-menu-item a,
.charcoal a,
.green a,
.dark-blue a,
.light-blue a,
.orange a,
.pink a,
.red a,
.twitter a,
.vimeo a,
.facebook a,
.google-plus a,
.dribbble a,
.subscribe a,
.youtube a {
	text-shadow: 0 -1px 1px rgba(0,0,0,.33);
}

.button.gray {
	text-shadow: 0 -1px 1px rgba(255,255,255,.33);
}


/* Opacity */
.block-item .wp-post-image:hover {
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
}

.site-footer {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.fade:hover {
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}

.site-footer:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}


/* Transition */
a,
input,
button,
.button,
.mnav-icon,
.mnav-icon:before,
.block-item .wp-post-image,
.site-footer
{
  	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
  	-o-transition: all 0.3s ease-in-out;
  	transition: all 0.3s ease-in-out;
}


/*	CSS3 FILTER EFFECTS
/*-------------------------------------------------*/

/* Remove filter effect on images that have a "filter" class.
   This prevents a "flicker" effect in chrome for images that
   do not have this class */
img.filter {
	-webkit-transition: all 0.5s;
}
img.filter:hover {
	-webkit-filter: none; /*Returns to default state */
}
img.filter.brightness:hover {
	-webkit-filter: brightness(0);
}

img.saturate,
body.saturate .blocks .wp-post-image {
	-webkit-filter: saturate(3);
}

img.grayscale,
body.grayscale .blocks .wp-post-image {
	-webkit-filter: grayscale(100%);
}

img.contrast,
body.contrast .blocks .wp-post-image {
	-webkit-filter: contrast(160%);
}

img.brightness,
body.brightness .blocks .wp-post-image {
	-webkit-filter: brightness(0.25);
}

img.blur,
body.blur .blocks .wp-post-image {
	-webkit-filter: blur(3px);
}

img.invert,
body.invert .blocks .wp-post-image {
	-webkit-filter: invert(100%);
}

img.sepia,
body.sepia .blocks .wp-post-image {
	-webkit-filter: sepia(100%);
}

img.huerotate,
body.huerotate .blocks .wp-post-image {
	-webkit-filter: hue-rotate(180deg);
}

img.opacity {
	-webkit-filter: opacity(80%);
}


/*	PRINT STYLES
/*-------------------------------------------------*/

@media print {
  * {
    background: transparent !important;
    color: #444 !important;
    text-shadow: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after {
    content: " (" attr(href) ")";
  }
  abbr:after {
    content: " (" attr(title) ")";
  }
  .ir a:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  @page  {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
}
