/*
Theme Name: Jensen
Theme URI: http://www.thewebsite.com
Author: Randy Jensen & Randy Hoyt
Author URI: http://www.handcraftedwp.com
Description: HTML5 starter theme based off Ian Stewart's HTML5 Toolbox Theme with other goodies added plus chunks of Paul Irish's HTML5 Boilerplate mixed in for good measure. Shake well. 
Version: 0.9.1
*/

/* html5doctor.com Reset Stylesheet \\v1.6.1 \\ Last Updated: 2010-09-17 \\ http://richclarkdesign.com \\ @rich_clark */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display:block; }
nav ul { list-style:none; }
blockquote, q { quotes:none; }
blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }
ins { background-color:#ff9; color:#000; text-decoration:none; }
mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }
/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }
hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; clear:both;}
input, select { vertical-align:middle; }

/*
 *
 * Base Typography 
 *
 */
body { font:14px/1.231 Helvetica, Arial, sans-serif; *font-size:small; }
select, input, textarea, button { font:99% sans-serif; }
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/*
 *
 * Base Styles 
 *
 */
body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  font-family: Helvetica, Arial, sans-serif;
  color: #662e13; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}
/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold;  }
/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; overflow-x: hidden; }
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }
a, a:active, a:visited { color: #607890; }
a:hover { color: #FF6600; }
ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }
/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 
small { font-size: 85%; }
strong, th { font-weight: bold; }
td, td img { vertical-align: top; } 
sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }
pre { 
  padding: 15px; 
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */
/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }
/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }
/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }
/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 
/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 
/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {width: auto; overflow: visible;}
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img {-ms-interpolation-mode: bicubic;}

/*
 *
 * Nonsemantic Base Styles 
 *
 */
/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 
/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }
/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }
/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 
.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*
 *
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 *
 */
@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
}
@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
}
/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/*
 *
 * Base Print Styles, inline to save the HTTP request
 *
 */
@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: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/*
 *
 * Structure
 *
 */
#page {
	display: block;
	margin: 0px auto;
	width: 960px;
}
/*.home #primary {
	width: 529px;
}*/
#primary {
	float: left;
	margin: 0 auto;
	width: 74%;
}
#primary.full-width {
	margin: 30px auto 40px;
}
#secondary {
	float: left;
}
/* #content {
	margin: 0 280px 40px 0;
} */
p {
	font-family: Helvetica, Arial, sans-serif;
	margin: 0 0 1.5em 0;
}
#main .widget-area {
	float: left;
	overflow: hidden;
	width: 160px;
	margin: 20px auto 40px;
}
#colophon {
	clear: both;
	display: block;
	width: 100%;
}

#sidebar {
	float: left;
	display: inline;
	width: 266px;
	text-align: right;
}
#sidebar ul {
	margin: 0px auto;
	list-style: none;
}
#sidebar h2.widgettitle {
	font-size: 15px;
}

#sidebar h3.widgettitle {
	display: none;
}

#sidebar a {
	text-decoration: none;
}

#sidebar a h3 {
	margin: 10px auto;
	color: #FF6600;
}

/* Increase the size of the content area for templates without sidebars */
.full-width #content,
.image-attachment #content,
.error404 #content {
	margin: 0;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
}
.alignright {
	display: inline;
	float: right;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*
/* Headers
*/
h1,h2,h3,h4,h5,h6 { 
	font-weight: 400;
	font-family: 'Raleway', Arial, Helvetica, serif;
	/* text-transform: uppercase; */
	color: #FF6600;
}
h1 { font-size: 24px; margin: 20px auto; display: inline; line-height: 36px; }
h2 { font-size: 22px; margin: 40px auto 20px; text-align: center; }
h3 { font-size: 18px; margin: 10px auto; }
h4 { font-size: 16px; margin: 40px auto 40px; }
h5 { font-size: 12px; margin: 10px auto; }
h6 { font-size: 10px; margin: 10px auto; }

.page-id-18 h2, .page-id-17 h2 {
	margin: 0px auto 40px;
}

/*
 *
 * Header
 *
 */
#site-title {
	font-size: 2em;
	font-weight: bold;
	margin: .67em 0;
}
#site-description {
	font-size: 1em;
	font-weight: normal;
	margin: 0 0 1em;
}
.topbanner { 
	display: block;
	margin: 0px auto;
	width: 540px;
}
.entry-header {
	text-align: center;
	margin: 30px 0px 20px 0px;
}

hgroup {
	margin: 0 0 10px 0;
}


/*
 *
 * Menu
 *
 */
#access {
	background: #eee;
	display: block;
	float: left;
	margin: 0 auto 1em;
	width: 100%;
}
#access ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
#access li {
	float: left;
	position: relative;
}
#access a {
	display: block;
	line-height: 2em;
	padding: 0 1em;
	text-decoration: none;
}
#access ul ul {
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	position: absolute;
	top: 2em;
	left: 0;
	z-index: 99999;
}
#access ul ul ul {
	left: 100%;
	top: 0;
}
#access ul ul a {
	background: #333;
	color: #fff;
	line-height: 1em;
	padding: .5em .5em .5em 1em;
	width: 10em;
	height: auto;
}
#access li:hover > a,
#access ul ul :hover > a {
	background: #333;
	color: #fff;
}
#access ul ul a:hover {
	background: #000;
}
#access ul li:hover > ul {
	display: block;
}


#menu-mainmenu {
	display: inline;
	float: left;
	width: 110px;
}
.parent {
	width: 12.1%;
	text-align: center;
	padding: 7px 0px 7px 0px;
	list-style: none;
	/*margin: 10px 0px 0px 0px;*/
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
}

.parent a {
	color: white !important;
	text-decoration: none;
	font-weight: 200 !important;
	/* text-shadow: 0px 0px 3px black; */
}

.parent a:hover {
	color: lightgray;
}

header nav#mainmenu li.parent.current_page_item,
header nav#mainmenu li.parent.current_page_ancestor {
	border-bottom: 3px solid #000;
}

/*header nav#mainmenu li.parent.current_page_item a,
header nav#mainmenu li.parent.current_page_ancestor a {
	padding: 7px 0 4px 0;
}*/

header nav#mainmenu li:nth-child(4).parent.current_page_ancestor,
header nav#mainmenu li:nth-child(4).parent.current_page_item,
header nav#mainmenu li:nth-child(7).parent.current_page_ancestor,
header nav#mainmenu li:nth-child(7).parent.current_page_item {
	padding: 15px 0 13px 0;
}

.parent:nth-child(1) a, .parent:nth-child(5) a {
	color: #612403 !important;
}

.parent:nth-child(1) a:hover {
	color: white !important;
}

.sub-menu a:hover {
	color: lightgray;
}

.parent:nth-child(1) { background: #f6c838; }
.parent:nth-child(2) { background: #669a26; }
.parent:nth-child(3) { background: #692d00; }
.parent:nth-child(4) { background: #e00000; }
.parent:nth-child(5) { background: #f6c838; }
.parent:nth-child(6) { background: #cc1a50; }
.parent:nth-child(7) { background: #eb6700; }
.parent:nth-child(8) { background: #692d00; }
.parent:nth-child(9) { background: #669a26; }

.sub-menu {
	margin: 0px auto;
	border-top: 0px solid black;
}

.sub-menu li {
	/*width: 90px;*/
	font-size: 10px;
	text-align: center;
	list-style: none;
	/*padding: 5px 0px 5px 0px;*/
	margin: 0px auto;
}

.sub-menu li a {
	display: block;
	text-shadow: none;
	font-weight: 400 !important;
	padding: 15px 0px 5px 0px;
	width: 100%;
}

.sub-menu li a:hover,
.sub-menu li.current_page_item a {
	color: #000 !important;
}

#menu-item-35 .sub-menu li a {
	background: #eb6700;
}

#menu-item-127 .sub-menu li a,
#menu-item-2046 .sub-menu li a {
	background: #e00000;
}

#menu-item-230 .sub-menu li a {
	background: #692d00;
}

#menu-item-740 .sub-menu li a {
	background: #669a26;
}

#menu-item-40 .sub-menu li a {
	background: #f6c838;
}

#menu-item-797.parent a,
#menu-item-230.parent a {
	width: 66px;
    display: block;
    margin: 0px auto;
}

#menu-item-230.parent .sub-menu li a {
	width: 100%;
}

#menu-item-230.parent .sub-menu li a:hover {
	color: #acacac !important;
}

/*
 *
 * Content
 *
 */
#content nav {
	display: block;
	overflow: hidden;
}
#content nav .nav-previous {
	float: left;
	width: 50%;
}
#content nav .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content #nav-above {
	display: none;
}
.paged #content #nav-above,
.single #content #nav-above {
	display: block;
}
#nav-below {
	margin: 1em 0 0;
}
.page-link {
	margin: 0 0 1em;
}

.full-width #content article {
	width: 960px;
}

/*#content article {
	width: 800px;
}*/
.entry-content {
	margin: 0px auto 40px;
}

/* column styles */
.content-col-first {
   float:left;
   display: inline;
   width: 46%;
   padding: 2%;
   clear: both;
}

.content-col-first, .content-col-second {
	text-align: left;
	margin: 0px auto 40px;
}

.content-col-first img, .content-col-second img {
	margin: 15px auto;
	display: block;
}

.content-col-first ul, .content-col-second ul {
	margin: 15px 15px;
	list-style: none;
}

.content-col-first ul li, .content-col-second ul li {
	margin: 5px;
}

.content-col-first h4, .content-col-second h4 {
	text-align: left !important;
}

.content-col-second {
   float:right;
   width: 46%;
   padding: 2%;
}

.content-col-wide {
	clear: both;
	color: #ff6600;
	position: relative;
	display: block;
	width: 800px;
	text-align: justify;
	margin: 0px auto 40px;
}

.content-col-wide ul {
	margin: 15px 15px;
	list-style: none;
}

.content-col-wide ul li {
	margin: 5px;
}

img { /* Makes sure your images stay within their columns */
   max-width: 100%;
   width: auto;
   height: auto;
}
/* end column styles */

#primary h1.entry-title {
	text-transform: uppercase;
	color: #FF6600;
	border-top: 1px dotted brown;
	border-bottom: 1px dotted brown;
}

.page-id-18 .entry-content {
	min-height: 1040px;
}

.page-id-24 .entry-content {
	min-height: 1430px;
}

.page-id-21 .entry-content {
	min-height: 900px;
}

.optional {
	color: #FF6600;
}

/*
 *
 * Images
 *
 */
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img {
	max-width: 100%; /* When images are too wide for containing element, force them to fit. */
	height: auto; /* Override height to match resized width for correct aspect ratio. */
}
img.alignleft {
	margin-right: 1em;
}
img.alignright {
	margin-left: 1em;
}
.wp-caption {
	padding: .5em;
	text-align: center;
	margin: 0px auto;
}
.wp-caption img {
	margin: .25em;
}
.wp-caption .wp-caption-text {
	margin: .5em;
}

/* Forms - Class for labelling required form items */
.required {
	color: #cc0033;
}
form { 
	margin: 20px auto;
}
form td { 
	margin: 3px auto;
	display: block;
}
.content-col-first #mc_embed_signup {
	background: lightblue !important;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}
#mc_embed h2 {
	text-align: center;
}

/*
 *
 * Comments
 *
 */
article.comment {
	display: block;
}
#respond input[type=text] {
	float: left;
	margin: 0 1em 0 0;
	width: 60%;
}
#respond .comment-form-comment label {
	display: none;
}
#respond textarea {
	margin: 0 1em 1em 0;
	float: left;
	width: 80%;
}
#respond .form-allowed-tags {
	clear: both;
	width: 80%;
}
#respond .form-allowed-tags code {
	display: block;
}

/*
/* Search
*/
#search {
	float: left;
	width: 418px;
}

header#branding .searchfield {
	float: right;
}

.searchfield {
	margin: 60px 25px 10px 25px;
	border-radius: 25px;
	padding-left: 5px;
}

.searchfield:focus {
	outline: black;
}

header#branding p {
	display: block;
	float: right;
	margin: 10px 25px 10px 25px;
	font-size: 18px;
}

header#branding {
	display: block;
	position: relative;
	/*height: 159px;*/
	width: 100%;
	/* border-bottom: 3px solid #612403; */
}

/*
/* Home
*/
.home #primary h1.entry-title {
	/*display: none;*/
	font-family: 'Pacifico', cursive;
	text-transform: capitalize;
	font-size: 64px;
	line-height: 88px;
	margin: 0;
	border: 0px solid #fff;
	display: block;
}
/*.home .entry-content {
	height: 585px !important;
	overflow: scroll;
}*/
.home img.homesplash {
	display: block;
	width: 530px !important;
}

/*.home #main .widget-area {
	width: 160px;
}*/

/*
/* Schedule Link
*/
.schedule {
	text-align: center;
	text-decoration: none;
}


/*
 *
 * Footer
 *
 */
#colophon {
	border-top: 1px solid black;
	height: 43px;
}

footer p {
	display: inline;
	float: left;
	padding: 13px 4px 7px 4px;
}

footer img {
	display: inline;
	float: left;
	height: 18px;
	width: 18px;
	margin: 12px 7px 7px 10px;
}

/*
 *
 * Custom-Cooking Lighter Page
 *
 */

 .page-id-421 .entry-content li{
	text-align: left;
}

 .page-id-421 h4{
 	margin: 30px auto 5px;
 }

  .page-id-421 h5{
  	margin: 10px auto 5px;
  	color: #000000;
  	font-weight: bold;
  }


/*
 *
 * Learning the Basics Page
 *
 */

 .page-id-465 .entry-content li{
	text-align: left;
}

 .page-id-465 h4{
 	margin: 30px auto 5px;
 }

  .page-id-465 h5{
  	margin: 10px auto 5px;
  	color: #000000;
  	font-weight: bold;
  }

/* new styles */
/* Occasion Styles and Mobile */

#menu-mainmenu {
	width: 100%;
	float: none;
}

#menu-mainmenu li.parent {
	display: inline-block;
	vertical-align: top;
	position: relative;
}

#menu-mainmenu li.parent .sub-menu {
	display: none;
}

#menu-mainmenu li.parent:hover .sub-menu {
	display: block;
	position: absolute;
	width: 100%;
}

#main .widget-area {
	width: 100%;
	float: none;
}

#menu-mainmenu li.parent:nth-child(4),
#menu-mainmenu li.parent:nth-child(7) {
	padding: 15px 0 16px 0;
}

#primary {
	width: 95%;
	float: none;
}

#content article {
	float: none;
}

.page-id-1895 .entry-header,
.home .entry-header {
	/*display: none;*/
}

.occsn_stack,
iframe,
.agenda {
	/*height: 900px !important;*/
	overflow-x: hidden;
	margin: 0;
}

iframe {
	padding: 0 0 0 16px;
    overflow-y: scroll;
    /*height: 570px !important; removed by dan on 11/06/2017 */
}

.page-id-17 iframe {
	height: 1800px !important;
    padding: 0;
}

#secondary {
	display: none;
}

#secondary #menu-mainmenu-1.mobile {
	margin: 0;
}

#secondary #menu-mainmenu-1.mobile .parent {
	width: 100%;
}

/* ribbon/image */

/*#top-right-widget {
    position: absolute;
    right: 0;
    z-index: 9999;
    width: 170px;
    padding: 0 15px;
    margin: 0;
    text-align: center;
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

#top-right-widget h4.widget-title {
	margin: 10px auto 0;
}

#top-right-widget img {
	width: 90%;
}*/

#top-right-widget {
	position: absolute;
    right: 0;
    /*z-index: 9999;*/
    width: 420px;
    padding: 0 0px;
    margin: 0;
    text-align: center;
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

#top-right-widget h4.widget-title {
    margin: 10px 1% 0 41%;
    width: 20%;
    float: left;
}

#top-right-widget a {
	width: 38%;
    float: left;
}

#ribbon {
	-webkit-transform: rotate(45deg); 
    -moz-transform: rotate(45deg);  
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5); /*for IE*/
    position: absolute;
    right: 0px;
    z-index: 9999;
    width: 130px;
    padding: 10px 135px;
    margin: 40px 0 0 0;
    text-align: center;
    border-top: 3px solid #ec6923;
    border-bottom: 3px solid #ec6923;
    background: #fff;
    color: #000;
    font-size: 16px;
    box-shadow: 1px 1px 10px #000;
    text-decoration: none;
}

/* announcement area */
.announcement-area {
	margin: 20px 0;
	display: block;
}

@media screen and (max-width: 1023px) {
	#page {
		width: 100%;
	}
	#top-right-widget {
		-webkit-transform: rotate(0deg); 
    	-moz-transform: rotate(0deg);  
    	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0); /*for IE*/
		display: none;
		width: 100%;
		position: relative;
	    right: 0;
	    top: 0;
	    padding: 10px 0;
	    border-top: 0px solid #000;
	    border-bottom: 0px solid #be1d23;
	}
}

@media screen and (max-width: 979px) {
	#page {
		width: 100%;
	}

	.home img.homesplash {
		width: 100% !important;
	}

	#content article {
		width: auto;
	}

	.content-col-first, .content-col-second {
		width: 100%;
		padding: 2% 0;
		margin: 0;
	}

	#menu-item-45.parent a {
		width: 82px;
	    display: block;
	    margin: 0px auto;
	}

	header nav#mainmenu li:nth-child(4).parent.current_page_ancestor,
	header nav#mainmenu li:nth-child(4).parent.current_page_item,
	header nav#mainmenu li:nth-child(7).parent.current_page_ancestor,
	header nav#mainmenu li:nth-child(7).parent.current_page_item {
		padding: 15px 0 9px 0;
	}

	/*.home #primary {
		width: 64% !important;
	}*/

	.home .entry-header {
		width: 510px !important;
		margin: 0px auto;
	}

	footer p {
		font-size: 12px;
		line-height: 20px;
	}

	/*#menu-mainmenu{
	    width: 50%;
	    float: none;
	    margin: 0px auto;
	    display: block;
	}*/

	#menu-mainmenu li.parent {
		/*width: 24%;*/
		width: 12%;
		font-size: 11px;
		margin: 2px auto;
	}

	#menu-mainmenu li.parent:nth-child(4), #menu-mainmenu li.parent:nth-child(7) {
		padding: 13px 0 14px 0;
	}
}

@media screen and (max-width: 767px) {
	#content article {
		width: 100%;
	}

	#sidebar {
		clear: both;
		width: auto;
		float: none;
		display: block;
		text-align: left;
		margin: 0 10px;
	}

	/*.home #primary {
		width: 64% !important;
	}*/

	#colophon {
		margin: 1.5em 0 0 0;
	    padding: 1.5em 0 1.5em 0;
	    height: auto;
	}

	footer p {
		display: block;
	    float: none;
		padding: 0px 0 2px 10px;
	    clear: both;
	    margin: 0;
	}
}

@media screen and (max-width: 699px) {
	header nav#mainmenu {
		display: none;
	}

	#secondary {
		display: block;
	}

	.page-id-61 iframe {
		height: 3600px !important;
	    padding: 0;
	}
}

@media screen and (max-width: 599px) and (min-width: 380px) {
	/*#primary {
		display: none;
	}*/

	#primary {
		margin: 0 2.5%;
	}

	/*#main .widget-area {
		margin: 0px 10px 40px 0;
		width: auto !important;
	}*/

	.home .entry-header {
		width: 350px !important;
	}

	.home .entry-header h1 {
		font-size: 50px !important;
		line-height: 70px !important;
	}

	#menu-mainmenu {
		margin-left: 0;
	}

	#sidebar {
		clear: inherit !important;
		width: 266px;
		float: left;
		text-align: right;
		margin: 0 0 1.5em 0;
	}
}

@media screen and (max-width: 479px) {
	#content article,
	#primary,
	.home #primary {
		width: 95% !important;
	}
}

@media screen and (max-width: 379px) {
	header#branding {
		height: auto;
	}

	#main .widget-area,
	#main #menu-mainmenu,
	#main .widget-area .menu .parent,
	#content article,
	#primary {
		width: 100% !important;
		margin: 5px 0;
		float: none;
		display: block;
	}

	.home .entry-header {
		width: 280px !important;
		margin: 20px auto;
	}

	.home .entry-header h1 {
		font-size: 40px !important;
		line-height: 60px !important;
	}

	.content-col-first,
	.content-col-second {
		width: 92% !important;
	}

	img.alignleft {
		width: 40%;
	}

	img.alignnone {
		width: 100%;
	}

	.entry-content {
		padding: 0 15px;
	}

	article .entry-content div.wp-caption {
		width: 100% !important;
	}

	.content-col-first, .content-col-second {
		float: left !important;
	}

	footer {
		margin: 0 0 40px 0;
	}

}