/*
Theme Name: CEJ 3.0
Theme URI: http://wordpress.org/themes/twentytwelve
Author: Jason Masten
Author URI: http://annenberginstitute.org/staff-member/jason-masten
Description: A fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 3.0
Tags: one-column, two-columns, three-columns, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: cej

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =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/


/* =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%;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
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: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
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;
}
*:focus {
	outline: 0;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* 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 */
input, textarea {
	-webkit-appearance: none;
	border-radius: 0;
}


.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #ff9230;
	color: #fff;
	cursor: pointer;
	margin: 0;
	padding: 5px;
	padding: 0.3571rem;
	text-align: center;
	text-shadow: 1px 1px #151736;
	text-transform: uppercase;
}
.menu-toggle {
	border-top: 1px solid #151736;
	border-bottom: 1px solid #151736;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	background: #ff9230;
	color: #fff;
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #ff9230;
	color: #fff;
}
.bypostauthor cite span {
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	color: #fff;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 90%; /* Fluid images for posts, comments, and widgets */
}
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 */
}

/* Images */
.alignleft {
	float: none;
}
.alignright {
	float: none;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.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 */
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
	padding: 0.2857rem;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	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;
}

/* 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 */
* {
	color: #3f3f3f;
	font-size: 14px;
	font-size: 1rem;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	text-align: left;
	vertical-align: top;
}
#center, #left, #right {
	border: 0;
	clear: both;
	display: block;
	float: left;
	overflow: hidden;
	width: 100%;
}
#center .wrapper, #left .wrapper, #right .wrapper {
	padding: 0 30px;
}
header, nav, #main, footer {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}
.site-header {
	/* background: #151736 url('images/header_small.jpg') no-repeat center top; */
	background: #151736 url('images/logo.jpg') no-repeat center top;
	min-height: 168px;
	padding: 0;
}
.site-title {
	display: none;
}
#main {
	background: #fff;
	padding: 30px 0 50px 0;
	padding: 2.143rem 0 3.571rem 0;
}
#content {
	padding: 0 30px 0 30px;
	padding: 0 2.143rem 0 2.143rem;
}
html {
	font-size: 87.5%;
}
body {
	background: #d9cdc4;
	margin: 0 auto;
	text-align: center;
	text-rendering: optimizeLegibility;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
aside, .entry-content {
	overflow: hidden;
}
a, .entry p a {
	color: #d16127;
}
a:hover {
	text-decoration: underline;
}
a.back {
	background: url('images/back.png') no-repeat left top;
	color: #fff;
	display: block;
	font-size: 12px;
	font-size: 0.8571rem;
	font-weight: bold;
	float: right;
	min-height: 38px;
	margin: 0;
	padding: 12px 0 0 52px;
	padding: 0.8571rem 0 0 3.714rem;
	text-decoration: none;
	width: 35px;
}	
a.back:hover {
	text-decoration: none;
}
a#donation {
	background: #ff9230 url('images/donation.png') no-repeat right top;
	background-origin: content-box;
	display: block;
	font-size: 18px;
	margin-bottom: 50px;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}
.button {
	background: #ff9230;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	margin: 10px 0 0 0;
	margin: 0.7143rem 0 0 0;
	padding: 5px;
	padding: 0.3571rem;
	text-align: center;
	text-shadow: 1px 1px #151736;
}
.hide {
	display: none;
}
.home .post {
	background: url('none');
}
.home .category-news {
	border: 0;
}	
.home .entry {
	margin: 0;
	padding: 0;
}
.home .post-indent {
	padding-left: 0;
	padding-right: 0;
}
.no-border {
	border: 0;
}
ol, ul {
	margin-left: 20px;
	margin-left: 1.429rem;
}
.table {
	display: table;
	width: 100%;
}
.table-cell {
	display: table-cell;
}
.timestamp {
	background: #192969;
	color: #fff;
	display: inline-block;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	margin: 0;
	padding: 5px 10px;
	padding: 0.3571rem 0.7143rem;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	font-size: 0.8571rem;
	padding: 12px;
	padding: 0.8571rem;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.border {
	color: #bfbfbf;
	font-size: 14px;
	font-size: 1rem;
	}	
#page {
	background-color: #fff;
	margin: 0 auto;
	text-align: center;
}
.site-content {

}

/* Header */
h2 {
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-size: 30px;
	font-size: 2.143rem;
	font-weight: 300;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	margin: 0 0 10px 0;
	margin: 0 0 0.7143rem 0;
	padding-bottom: 5px;
	padding-bottom: 0.3571rem;
	text-align: center;	
}
h2 span {
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-size: 30px;
	font-size: 2.143rem;
	font-weight: 300;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
}
#secondary h3 {
	border-bottom: 1px solid #000;
	font-size: 20px;
	font-size: 1.429rem;
	margin: 0px 0px 10px 0px;
	margin: 0 0 0.7143rem 0;
	padding: 0px 0px 5px 0px;
	padding: 0 0 0.3571rem 0;
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-weight: 300;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
}
h3, h3 a, .posts h2 {
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-size: 20px;
	font-weight: 300;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	font-weight: normal;
	margin: 0 0 15px 0;
	margin: 0 0 1.071rem 0;
	text-decoration: none;
}
h3 a {
	color: #d16127;
}
h3.child {
	margin-top: 40px;
	margin-top: 2.857rem;
}
h3.comments {
	padding: 0;
	margin: 40px auto 20px;
	margin: 2.857rem auto 1.429rem;
}		
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}
h4 {
	font-weight: bold;
	padding: 0 0 10px 0;
}



/* Navigation Menu */
#site-navigation {
	background-color: #151736;
	text-align: center;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: block;
}
#site-navigation a {
	border-bottom: 1px solid #f4541b;
	color: #fff;
	display: block;
	font-size: 16px;
	font-size: 1.143rem;
	font-weight: normal;
	height: 100%;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	padding: 5px 0;
	padding: 0.3571rem 0;
	text-align: center;
	text-decoration: none;
	text-shadow: 1px 1px #151736;
	vertical-align: middle;
	width: 100%
}
#site-navigation a:hover {
	text-decoration: none;	
}
#site-navigation li {
	background: #f4541b;
	list-style: none;
}
#site-navigation li li { 
	background: #f4811b;	
}
#site-navigation li li li { 
	background: #ff9230;	
}
#site-navigation ul {
	margin: 0;
	padding: 0;
	width: 100%;
}			
#site-navigation ul ul a {
	white-space: nowrap;
}			
/* Sets background, font, & hover for current MAIN nav */	
#site-navigation .current-menu-item  {
	background: #fff;
}
#site-navigation .current-menu-item a  {
	color: #151736;
	text-shadow: none;
}



/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}



/* Sidebar */
#secondary {
	display: block;
	float: left;
	clear: both;
	width: 100%;
}
#secondary form {
	margin: 0;
}
#secondary #recent-posts-3 li {
	margin: 0 0 10px;
	margin: 0 0 0.7143rem;
}
#secondary .wrapper {
	padding: 0 30px 0 30px;	
	padding: 0 2.143rem 0 2.143rem;
}
/* Sidebar End */



/* Footer */
footer[role="contentinfo"] {
	background-color: #151736;
}
footer[role="contentinfo"] a {
	color: #f4811b;
}
footer[role="contentinfo"] a:hover {
	color: #f4811b;
}
footer[role="contentinfo"] p {
	color: #fff;
	margin: 0;
	padding: 20px 0;
	padding: 1.429rem 0;
	text-align: center;
}



/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	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 img, .post .entry img {
	border: 1px solid #d9d9d9;
	padding: 0;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.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 36px;
	margin: 0 0 0 2.571428571rem;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	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;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content, .post, .search-results .page {
	border-top: 1px solid #000;
	clear: both;
	margin: 0;
	min-height: 100px;
	text-align: justify;
}
.post .entry-content {
	background: url('none');
	border-top: 0;
	margin: 0;
	padding: 0;
}
.post-indent {
	padding: 30px 0 50px 0;
	padding: 2.143rem 0 3.571rem 0;
}
.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: bold;
	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: 12px;
	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;
	padding: 0.4286rem 0.7143rem 0.4286rem 0;
}
.site-content article {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	display: none;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}

/* Search Form
-------------------------------------------------------------- */

#searchform label {
	display: none;
}
#searchform {
	width: 100%;
}
#searchform #s {
	background: #f2f2f2;
	border: 0;
	color: #000;
	margin: 0;
	padding: 0;
	width: 100%;
}
#searchform .table {
}
#searchform .table-cell.s {
	background: #f2f2f2;
	border-right: 0;	
	padding: 5px;
	padding: 0.3571rem;
	width: 100%;
}
#searchform .table-cell {
	border: 1px solid #000;
	display: table-cell;
	margin: 0;
	padding: 0;
}
#searchsubmit {
	background: #ff9230;
	border: 0;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	margin: 0;
	padding: 5px;
	padding: 0.3571rem;
	text-shadow: 1px 1px #151736;
}
#commentform input {
	width: 170px;
	padding: 2px;
	padding: 0.1429rem;
	margin: 5px 5px 1px 0;
	margin: 0.3571rem 0.3571rem 0.07143rem 0;
}
#commentform {
	margin: 5px 10px 0 0;
	margin: 0.3571rem 0.7143rem 0 0;
}
#commentform textarea {
	width: 100%;
	padding: 2px;
	padding: 0.1429rem;
}
#respond:after {
	content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
#commentform #submit {
	margin: 0 0 5px auto;
	margin: 0 0 0.3571rem auto;
}


input, select, textarea {
	background: #f2f2f2;
	border: 1px solid #000;
	color: #000;
	margin: 0;
	padding: 2px 4px;
	padding: 0.1429rem  0.2857rem;
}
input, label, select {
	display: block;
	margin: 0 20px 20px 0;
}
input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}	
input.phone {
	display: inline-block;
	margin: 0;
}
.radio input {
	display: inline-block;
	margin: 0 10px 0 0;
	margin: 0 0.7143rem 0 0;
}
input#reset, input#submit {
	display: inline-block;
	margin-right: 10px;
	margin-right: 0.7143rem;
}
label {
	margin: 0 0 10px 0;
	margin: 0 0 0.7143rem 0;
}
fieldset {
	border: 1px solid #d9d9d9;
	margin: 0 0 20px 0;
	margin: 0 0 1.429rem 0;
	padding: 20px 20px 30px 20px;
	padding: 1.429rem 1.429rem 2.143rem 1.429rem;
}	
form .clear {
	margin: 0 0 20px 0;
	margin: 0 0 1.429rem 0;
}
form .wpcf7-list-item {
	/* display: none; */
}
legend {
	font-size: 14px;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
}


/* Entry Lists Begin */
.entry ul {
	margin-left: 0px;
	padding: 0 0 0 20px;
	padding: 0 0 0 1.429rem;
}
.entry li {
	margin: 7px 0px 8px 0px;
	margin: 0.5rem 0 0.5714rem 0;
}
.entry ol {
	margin: 0;
	padding: 0 0 0 20px;
	padding: 0 0 0 1.429rem;
}
.postmetadata ul, .postmetadata li {
	display: inline;
	list-style-type: none;
	list-style-image: none;
}
#secondary aside {
	margin-bottom: 50px;
	margin-bottom: 3.571rem;
}
#secondary ul p, #secondary ul select {
	margin: 5px 0 8px;
	margin: 0.3571rem 0 0.5714rem;
}
#secondary ul ul, #secondary ul ol {
	margin: 5px 0 0 10px;
	margin: 0.3571rem 0 0 0.7143rem;
}
#secondary ul ul ul, #secondary ul ol {
	margin: 0 0 0 10px;
	margin: 0 0 0 0.7143rem;
}
ol li, #secondary ul ol li {
	list-style: decimal outside;
}
#secondary ul ul li, #secondary ul ol li {
	margin: 3px 0 0;
	margin: 0.2143rem 0 0;
	padding: 0;
}
/* Entry Lists End */



/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {

}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
	margin-bottom: 1.714rem;
}


/* =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.571428571rem;
}


/* =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 1.714285714rem 0;
	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.571428571rem;
	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.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.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;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	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: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.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.571428571rem 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.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 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: 12px;
	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: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget ol, .widget ul {
	margin: 0;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* Follow Us Widget
-------------------------------------------------------------- */
#follow-us a, #secondary #text-4 a {
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	display: block;
	min-height: 60px;
	text-decoration: none;
	min-width: 60px;
}
#follow-us li, #secondary #text-4 li {
	display: inline-block;
	margin: 0 10px 10px 0;
	margin: 0 0.7143rem 0.7143rem 0;
}
#follow-us ul, #secondary #text-4 ul {
	list-style-type: none;
}
a#facebook {
	background: url('images/facebook.png') no-repeat 0 0;
}
a#flickr {
	background: url('images/flickr.png') no-repeat 0 0;
}
a#twitter {
	background: url('images/twitter.png') no-repeat 0 0;
}
a#youtube {
	background: url('images/youtube.png') no-repeat 0 0;
}
.fb-social-plugin {
	display: inline-block!important;
	width: auto!important;
}				
/* Follow Us End */



/* Map Begin 
-------------------------------------------------------------- */
#map {
	clear: left;
	float: left;
	min-height: 816px;
	width: 960px;	
}
#map .wrapper {
	padding: 0 20px 0;
	padding: 0 1.429rem 0;
}
#key * {
	font-size: 12px;
	font-size: 0.8571rem;	
}
#key span {
	color: black; 
	display: inline-block; 
	min-width: 50px;
	padding: 3px 5px; 
	padding: 0.2143rem 0.3571rem;
}
#key td {
	padding: 5px;
	padding: 0.3571rem;
}
#key tr {
	padding-bottom: 5px;
	padding-bottom: 0.3571rem;
}
option {
	color: black;
}	
p#map-image {

}
p#map-image img {
	background: url('neighborhood/_full-transparent.png') no-repeat top left;
	background-repeat: no-repeat;
    background-size: contain;
    background-origin: content-box;
}
.post-802 img, .page-id-797 .entry-content img {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}
/* Map End */

/*  Google Translate */
#google_translate_element {
	float: right;
	padding: 0;
}		
#google_translate_element a:hover {
	text-decoration: none;
}
.translated-ltr a font {
	color: #d16127;
}
.translated-ltr #site-navigation a font {
	color: #fff;
	font-weight: 400;
	white-space: nowrap;
}
.translated-ltr #site-navigation li:hover font {
	color: #fff !important;
	text-shadow: 1px 1px #151736 !important;
}
.translated-ltr #site-navigation .current-menu-item a font,
.translated-ltr #site-navigation .current-menu-ancestor a font {
	color: #151736;
	text-shadow: none;
}
.translated-ltr h2 font {
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-size: 30px;
	font-size: 2.143rem;
	font-weight: 300;
}
.translated-ltr #secondary h3 font {
	font-size: 20px;
	font-size: 1.429rem;
}
.translated-ltr h3 font, .translated-ltr h3 a font, .translated-ltr .posts h2 font {
	color: #151736;
	font-family: 'Roboto Slab', serif;	
	font-size: 20px;
	font-size: 1.429rem;
	font-weight: 300;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
	font-weight: normal;
	text-decoration: none;
}
.translated-ltr h3 a font {
	color: #d16127;
}		
.translated-ltr .home h3 font {
	font-size: 14px;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
}
.translated-ltr .timestamp font {
	color: #fff;
	letter-spacing: 1px;
	letter-spacing: 0.07143rem;
}
.translated-ltr #footer font {
	color: #fff;
}
.translated-ltr .page-numbers a font {
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px #151736;
}
.translated-ltr .page-numbers .current font {
	color: #fff;
}
.translated-ltr .required font {
	color: red;
	font-style: italic;
}
.translated-ltr .optional font {
	color: #bfbfbf;
	font-style: italic;
}



/* Mailing List Form Begin */
#mailing-list input{
	width: auto;
}
span.optional {
	color: #bfbfbf;
	font-style: italic;
}
.page-id-16 .post .button {
	margin-top: 20px;
	margin-top: 1.429rem;
}
span.required {
	color: red;
	font-style: italic;
}
/* Mailing List Form End */



/* Page Numbers */
div.page-numbers {
	display: block;
	float: none;
	margin-bottom: 10px;
	margin-bottom: 0.7143rem;
	text-align: center;
}
article {
	clear: both; /* keeps page numbers above posts */
}
.page-numbers a {
	background: #f4541b;
	color: #fff;
	margin: 0 5px 0 0;
	margin: 0 0.3571rem 0 0;
	padding: 5px;
	padding: 0.3571rem;
	text-decoration: none;
	text-shadow: 1px 1px #151736;
}
.page-numbers .current {
	background: #0d1f99;
	color: #fff;
	margin: 0 5px 0 0;
	margin: 0 0.3571rem 0 0;
	padding: 5px;
	padding: 0.3571rem;
}
/* END Page Numbers */



/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	.alignleft {
		float: left;
	}
	.alignright {
		float: right;
	}
	#primary {
		border-right: 1px solid #000;
		display: table-cell;
		min-height: 816px;
		vertical-align: top;
		width: 699px;	
	}
	#content {
		padding: 0 20px 0 30px;
		padding: 0 1.429rem 0 2.143rem;
	}
	.archive-header, h2.archive-title {
		display: inline-block;
		width: auto;
	}
	article.no-border {
		border-right: 0px;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content {
		width: 100%;
	}
	.category-publications .entry img {
		margin-right: 20px;
		margin-right: 1.429rem;
	}
	#center {
		border-left: 1px solid #000;
		border-right: 1px solid #000;
		width: 318px;
	}
	#center .wrapper {
		padding: 0 20px;
		padding: 0 1.429rem;
	}
	#center, #left, #right {
		display: table-cell;
		float: none;
		overflow: hidden;
	}	
	.clear {
		clear: both;
	}
	code {
		font: 'Courier New', Courier, Fixed;
	}
	div.page-numbers {
		float: right;
	}
	.entry-content, .post, .search-results .page {
		/* Safari 5.1 to 6.0 */
		background: -webkit-radial-gradient(left top, 100% 55%, #e7e7e9, #fff); 
		/* For Opera 11.6 to 12.0 */
		background: -o-radial-gradient(left top, 100% 55%, #e7e7e9, #fff);
		/* For Firefox 3.6 to 15 */
		background: -moz-radial-gradient(left top, 100% 55%, #e7e7e9, #fff);
		/* Standard syntax */
		background: radial-gradient(left top, 100% 55%, #e7e7e9, #fff);
	}
	.home .entry-content, .home .post, .home .search-results .page {
		background: none; 
	}
	.home .entry-content img {
		float: none;
		margin-right: 0;
	}
	h1 {
		display: none;
	}
	h2.archive-title, h2.entry-title, h2.page-title, h3.widget-title {
		text-align: left;
	}
	header {
		clear: none;
	}
	#page {
		border-radius: 3px;
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	}
	.post-indent {
		padding: 30px 25px 50px 25px;
		padding: 2.143rem 1.786rem 3.571rem 1.786rem;
	}
	#secondary .wrapper {
		padding: 0 30px 0 30px;	
		padding: 0 2.143rem 0 2.143rem;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}
	.site-content {

	}	
	.site-header {
		background: url('images/header_large.jpg') no-repeat left top;
		height: 199px;
		padding: 0;
	}
	.widget-area {
		float: right;
		width: 26.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.site-title {
		display: none;
	}
	.menu-toggle {
		display: none;
	}
	#site-navigation {
		background: #151736;
		display: block;
		margin: 0;
		width: 100%;
	}
	#site-navigation a {
		border: 0;
		display: table;
		padding: 10px 0;
		padding: 0.7143rem 0;	
	}
	.menu-site-navigation-container {
		background: #151736;
		display: table;
		height: 100%;
		width: 100%;
	}
	#site-navigation li {
		display: table-cell;
		border-right: 2px solid #151736;
		border-radius: 0;
		position: relative;
		width: 12%;
		}
	#site-navigation ul > li {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}
	#site-navigation ul {
		display: table-row;
		}	
	#site-navigation li.menu-item-1312 {
		border-right: 0;
	}		
	#site-navigation ul ul {
		background: #f4811b;
		border: 1px solid #f4541b;
		border-bottom: 0;
		display: none;
	}
	#site-navigation ul ul li {
		display: table-row;
		width: 100%;
	}
	#site-navigation ul ul a {
		border-bottom: 1px solid #f4541b;
		display: table-cell;
		padding: 10px;
		padding: 0.7143rem;
		text-align: left;
	}
	#site-navigation ul li:hover > ul {
	   	display: table;
	   	width: 220px;
	   	position: absolute;
	   	z-index: 999999;
	}
	#site-navigation li li:hover { 
		background: #ff9230;
	}
	#site-navigation li li li:hover {
		background: #ffb35a;
	}
	#site-navigation ul ul ul {
		display: none;
	}
	#site-navigation ul ul li:hover ul {
	   	display: table;
	   	left: 220px;
	   	width: 220px;
	   	position: absolute;
	   	z-index: 999999;
	}
	
	/* Sets background, font, & hover for current MAIN nav */	
	#site-navigation .current-menu-item,
	#site-navigation .current-menu-ancestor  {
		background: #fff;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
	}
	#site-navigation .current-menu-item a,
	#site-navigation .current-menu-ancestor a  {
		color: #151736;
		text-shadow: none;
	}
	#site-navigation .current-menu-item:hover,
	#site-navigation .current-menu-ancestor:hover  {
		background: #f4541b;
	}
	#site-navigation .current-menu-item:hover a,
	#site-navigation .current-menu-ancestor:hover a  {
		color: #fff;
		text-shadow: 1px 1px #151736;
	}
	/* Sets background for current DROP DOWN nav link */	
	#site-navigation .current-menu-ancestor .current-menu-item {
		background: #fb9c42;
	}
	/* Sets background for current DROP DOWN nav link to not change on hover */	
	#site-navigation .current-menu-ancestor .current-menu-item:hover {
		background: #ff9230;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
	header, nav, #main, footer {
		display: table;
		float: none;
		width: 100%;
	}
	#main {
		background: #fff;
		padding: 30px 0 50px 0;
		padding: 2.143rem 0 3.571rem 0;
	}	
	.depth-1 {
		border: 1px solid #ddd;
	}
	.entry p a:visited {
		color: #b85b5a;
	}
	.even, .alt {
		border: 1px solid #1a2f7b;
	}
	iframe {
		border: 0;
	}
	img {
		border: 0;
	}
	#left {
		width: 320px;
	}
	#left .wrapper {
		padding: 0 20px 0 30px;
		padding: 0 1.429rem 0 2.143rem;
	}
	form br {
		display: none;
	}
	form .group {
		display: inline-block;
		margin: 0 20px 20px 0;
		margin: 0 1.429rem 1.429rem 0;
	}
	form .group input, form .group select {
		margin: 0;
	}
	form .wpcf7-list-item {
		margin: 0 !important;
	}
	.narrowcolumn {
		float: left;
		padding: 0 0 20px 45px;
		padding: 0 0 1.429rem 3.214rem;
		margin: 0;
		width: 450px;
	}
	.narrowcolumn .postmetadata {
		padding-top: 5px;
		padding-top: 0.3571rem;
	}
	p {
		margin: 0 0 10px 0;
		margin: 0 0 0.7143rem 0;
	}
	.entry-content *, .post *, .search-results .page * {
		max-width: 582px;
	}
	.entry-contnet.no-sidebar, .post.no-sidebar {
		background: none;
		border-top: 0px;
	}	
	.entry-content.no-sidebar *, .post.no-sidebar * {
		max-width: 910px;
	}
	.entry-content hr, .post hr {
		display: block;
	}
	.post-indent {
		padding: 30px 25px 50px 25px;
		padding: 2.143rem 1.786rem 3.571rem 1.786rem;
	}
	.postmetadata {
		clear: both;
	}
	#right {
		width: 320px;
	}
	#right .wrapper {
		padding: 0 30px 0 20px;
		padding: 0 2.143rem 0 1.429rem;
	}
	#secondary ul ul li, #secondary ul ol li, .nocomments, .postmetadata, blockquote, strike {
		color: #fff;
		font-size: 10px;
		font-size: 0.7143rem;
	}
	.sticky {
		background: #f7f7f7;
		padding: 0 10px 10px;
		padding: 0 0.7143rem 0.7143rem;
	}
	.sticky h2 {
		padding-top: 10px;
		padding-top: 0.7143rem;
	}
	strong {
		font-weight: 400;
	}	

	textarea {
		height: 125px;
		padding: 5px 5px 10px;
		padding: 0.3571rem 0.3571rem 0.7143rem;
		width: 490px;
	}		
	.thread-alt {
		background-color: #f8f8f8;
	}
	.thread-even {
		background-color: white;
	}
	.widecolumn {
		padding: 10px 0 20px 0;
		padding: 0.7143rem 0 1.429rem 0;
		margin: 5px 0 0 150px;
		margin: 0.3571rem 0 0 10.71rem;
		width: 450px;
	}
	.widecolumn .attachment {
		text-align: center;
		margin: 5px 0;
		margin: 0.3571rem 0;
	}
	.widecolumn .post {
		margin: 0;
	}
	.widecolumn .postmetadata {
		margin: 30px 0;
		margin: 2.143rem 0;
	}
	.widecolumn .smallattachment {
		text-align: center;
		float: left;
		width: 128px;
		margin: 5px 5px 5px 0;
		margin: 0.3571rem 0.3571rem 0.3571rem 0;
	}	
	/*Content End */
	
	/* Sidebar Begin */
	#secondary {
		display: table-cell;
		clear: none;
	}
	
	
	
	/* Slickr Flickr */	
	.slickr-flickr-slideshow div {
		height: 182px;
		text-align: center;
		width: 242px;
		z-index: 0!important;
	}		
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background: #d9cdc4;
	}
	body .site {
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	#site-navigation ul a {
		width: 158px;
	}
	#site-navigation ul ul a {
		width: auto;
	}

}


/* =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,
	.entry-header .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-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.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;
	}
}