/*
Theme Name: SYO
Theme URI: http://alphasys.com.au/
Author: AlphaSys Pty Ltd.
Author URI: http://alphasys.com.au/
Description: WordPress Theme for syo.com.au
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: syo
Tags:

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.

SYO is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Custom CSS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
	font-family: 'ProgressTwo-Light';
	src: url('fonts/ProgressTwo-Light.eot');
	src: local('☺'), url('fonts/ProgressTwo-Light.woff') format('woff'), url('fonts/ProgressTwo-Light.ttf') format('truetype'), url('fonts/ProgressTwo-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Cervo-Medium';
	src: url('fonts/Cervo-Medium.eot');
	src: local('☺'), url('fonts/Cervo-Medium.woff') format('woff'), url('fonts/Cervo-Medium.ttf') format('truetype'), url('fonts/Cervo-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Cervo-Thin';
	src: url('fonts/Cervo-Thin.eot');
	src: local('☺'), url('fonts/Cervo-Thin.woff') format('woff'), url('fonts/Cervo-Thin.ttf') format('truetype'), url('fonts/Cervo-Thin.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

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

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #f5821f;
	border-radius: 0;
	background: #f5821f;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-shadow: none;
	padding: 17px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background-color: #E76D0A;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background-color: #EDEDED;
	color: #414042;
	border: 1px solid #EDEDED;
	padding: 14px 0px 14px 26px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a,
a:visited,
a:hover,
a:focus,
a:active {
	color: #FD7E29;
	text-decoration: none;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	position: relative;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	background: rgba(50,49,51,0.95);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	width: 100%;
	z-index: 99999;
}

.main-navigation ul ul ul {
	background: none;
	box-shadow: none;
	position: static;
}

.main-navigation ul ul ul li {
	float: none;
}

.main-navigation ul ul a {
	min-width: 150px;
	white-space: nowrap;
	/*overflow: hidden;
	text-overflow: ellipsis;*/
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.syo-site-header:before,
.syo-site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.syo-site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

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

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

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/
@media (min-width: 1200px) {
	.container{
		max-width: 1200px;
	}
}
/* Juniel Css Header */
.social-icon {
	border-bottom: 1px solid #ededed;
	height: 40px;
}
.social-icon ul {
	margin: 0;
	padding: 9.5px;
}
.social-icon li { padding-right: 24px; }
.social-icon li:nth-child(1) a {
	background: url('images/icon-sprite-v2.png') -11px -6px no-repeat;
	display: block;
	width: 9px;
	height: 18px;
}
.social-icon li:nth-child(2) a {
	background: url('images/icon-sprite-v2.png') -38px -6px no-repeat;
	display: block;
	width: 15px;
	height: 18px;
}
.social-icon li:nth-child(3) a {
	background: url('images/icon-sprite-v2.png') -69px -6px no-repeat;
	display: block;
	width: 14px;
	height: 18px;
}
.social-icon li:nth-child(4) a {
	background: url('images/icon-sprite-v2.png') no-repeat -339px -6px;
	display: block;
	width: 12px;
	height: 18px;
}
.site-style-pad {
	padding: 20px 0;
	height: 110px;
}
.header-logo img {
	width: 212px;
	cursor: pointer;
}
.search-type {
	text-align: right;
	width: 100%;
	padding: 15px 0;
}
.search-type input {
	font-style: italic;
	border: 1px solid #ccc;
	background: #fff;
	border-radius: 3px;
	width: 430px;
	padding: 10px 18px;
	outline: none;
}

.search-type form {
	position: relative;
}

.search-type button[type="submit"] {
	position: absolute;
	top: 0;
	right: 0;
	background: none;
	border: none;
	width: 42px;
	height: 42px;
	padding: 0;
}

.submit-icon {
	background: url('images/icon-sprite-v2.png') -97px -6px no-repeat;
	display: inline-block;
	width: 18px;
	height: 18px;
}
@media(max-width: 991px ) {
	.search-type input { width: 300px; }
}
@media(max-width: 767px ) {
	.search-type input { width: 100%; }
}
.main-style {
	background-color: #f5821f;
}
.main-style a {
	font-size: 12px;
	padding: 23px 30px;
	color: #eee;
	font-family: "ProgressTwo-Light";
}
.main-style li:first-child a { padding-left: 19px; }
.main-style li:last-child a { padding-right: 0; }

#menu-item-197 li:first-child a {
    padding-left: 19px !important;
}


/* End Juniel Header*/
/* Css Juniel Footer */
.footer-style { background-color: #414042; }
.content-height { height: 235px; }
@media(max-width: 992px) {
	.content-height  { height: auto; }
}
.security-link { margin-top: 55px; }
.security-link li { padding: 0 22px; }
.security-link a { color: #eee; }
.security-link li a {
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
}
.security-link li a:hover { color: #f5821f; }
.security-link li:first-child { padding-left: 0; }
.security-link li:last-child { padding-right: 0; }
.partner-link { margin-top: 35px; }
.partner-link .img-responsive {
   max-height: 56px;
   width: auto;
}
.partner-link li { padding: 0 16.5px; vertical-align: top; }
.partner-link li:first-child { padding-left: 0; }
.partner-link li:last-child { padding-right: 0; }
.content-subscribe { margin-top: 25px; }
.con-th { text-align: right;}
.site-subscribe { margin-top: 55px; }
.site-subscribe h4 {
	color: rgba(238, 238, 238, 0.26);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-right: 82px;
}
.content-subscribe input {
	padding: 10px 18px;
	border-radius: 2px;
	font-size: 12px;
	width: 247px;
	outline: none;
}
.content-subscribe span {
	background: url('images/icon-sprite-v2.png') -83px -26px no-repeat;
	padding: 10px 22.5px 14px;
	background-color: #f5821f;
	border-radius: 3px;
	cursor: pointer;
	margin-left: 8px;
}
.site-subscribe li:nth-child(1) span {
	background: url('images/icon-sprite-v2.png') -1px -33px no-repeat;
	display: block;
	height: 28px;
	width: 29px;
	border: 1px solid rgba(238, 238, 238, 0.22);
	border-radius: 50%;
}
.site-subscribe li:nth-child(2) span {
	background: url('images/icon-sprite-v2.png') -32px -31px no-repeat;
	display: block;
	height: 28px;
	width: 29px;
	border: 1px solid rgba(238, 238, 238, 0.22);
	border-radius: 50%;
}
.site-subscribe li:nth-child(3) span {
	background: url('images/icon-sprite-v2.png') -62px -32px no-repeat;
	display: block;
	height: 28px;
	width: 29px;
	border: 1px solid rgba(238, 238, 238, 0.22);
	border-radius: 50%;
}
.site-subscribe li:nth-child(4) span {
	background: url('images/icon-sprite-v2.png') no-repeat -331px -33px;
	display: block;
	height: 28px;
	width: 29px;
	border: 1px solid rgba(238, 238, 238, 0.22);
	border-radius: 50%;
}
.site-subscribe ul {
	margin-top: 15px;
	margin-right: 142px;
}
.site-footer-color {
	padding: 20px 0;
	border-top: 1px solid #4b4a4c;
	height: 55px;
}
.site-footer-color p {
	color: rgba(238, 238, 238, 0.26);
	margin: 0;
	font-size: 12px;
}
.site-footer-color div:nth-child(2) { text-align: right; }
.site-footer-color div:nth-child(2) a {
	color: #eee;
	text-decoration: none;
}
@media(max-width: 991px) {
	.con-th { text-align: left; }
	.content-subscribe span { float: none; }
}
@media(max-width: 767px) {
	.security-link li {
		padding: 0;
		margin: 0px 10px 10px 0;
	}
	.partner-link li {
		margin: 0 10px 10px 0;
		padding: 0;
	}
	.site-subscribe h4 { margin-right: 0; }
	.content-subscribe input { width: 220px; }
	.site-subscribe ul { margin-right: 0; }
	.site-footer-color p:last-child { margin-top: 20px; }
	.site-footer-color p { text-align: center; }
}
.arrow-prev-icon {
	background: url('images/icon-sprite-v2.png') 0 0 no-repeat;
	display: block;
}
.arrow-next-icon {
	background: url('images/icon-sprite-v2.png') 0 0 no-repeat;
	display: block;
}

.content-image { margin-top: 30px; }
.content-image h3 {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin: 40px 0;
	letter-spacing: -2px;
	font-size: 20px;
}
span.border-span {
	border-bottom: 2px solid #f5821f;
	width: 48px;
	display: block;
	margin: 0 auto 10px;
}
#owl-item-image-a,
#owl-item-image-b { text-align: center; }
#owl-item-image-a .item,
#owl-item-image-b .item {
	margin: 10px;
	position: relative;
}
.border-bot {
	width: 30px;
	border-bottom: 2px solid #f5821f;
	display: block;
	margin: 0 auto;
	margin-bottom: 5px;
}
div.absolute-span {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgba(245, 130, 31, 0.9);
	display: none;
}
.item:hover div.absolute-span { display: block; }
.content-image h4 {
	color: white;
	margin: 30px 20px 0;
}
.content-image p {
	color:white;
	margin: 0 20px;
	font-size: 12px;
}
span.borderLine {
	border-bottom: 3px solid rgba(255, 255, 255, 0.22);
	width: 75px;
	display: block;
	margin: 5px 20px 15px;
}
.owl-theme .owl-controls .owl-buttons div {
	background-color: white;
	color: black;
	opacity: 0.7;
	border-radius: 5px;
}
.owl-theme .owl-controls .owl-buttons pre { font-size: 25px; }
.owl-next {
	position: absolute;
	top: 25%;
	right: 6px;
}
.owl-prev {
	position: absolute;
	top: 25%;
	left: 6px;
}
@media(max-width: 1000px) {
	.content-image h4 {
		margin:  60px 45px 0;
		font-size: 	23px;
	}
	span.borderLine {
		margin: 10px 45px 15px;
	}
	.content-image p {
		margin: 10px 45px;
		font-size: 20px;
	}
}
@media(max-width: 750px) {
	.content-image h4 {
		margin:  38px 35px 0;
		font-size: 	18px;
	}
	span.borderLine {
		margin: 8px 35px 10px;
	}
	.content-image p {
		margin: 0 35px;
		font-size: 13px;
	}
}
@media(max-width: 496px) {
	.content-image h4 {
		margin:  60px 45px 0;
		font-size: 	25px;
	}
	span.borderLine {
		margin: 10px 45px 14px;
	}
	.content-image p {
		margin: 10px 45px;
		font-size: 20px;
	}
}
/* Page-home CSS Juniel */
.content-image { margin-top: 30px; }
.content-image h3 {
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	margin: 40px 0 7px;
	letter-spacing: 1px;
	font-size: 23px;
	font-family: 'Cervo-Thin';
}
span.border-span {
	border-bottom: 2px solid #f5821f;
	width: 45px;
	display: block;
	margin: 7px auto 12px;
}
#owl-item-image-a .item,
#owl-item-image-b .item {
	margin: 10px;
	position: relative;
	display: inline-block;
}
.border-bot {
	width: 30px;
	border-bottom: 2px solid #f5821f;
	display: block;
	margin: 0 auto;
	margin-bottom: 5px;
}
div.absolute-span {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgba(245, 130, 31, 0.9);
	display: none;
	text-align: left;
}
.item:hover div.absolute-span { display: block; }
.content-image h4 {
	color: white;
	margin: 30px 36px 0;
	font-family: 'Cervo-Thin';
	font-size: 23px;
}
.content-image p {
	color:white;
	margin: 0 36px;
	font-size: 12px;
}
span.borderLine {
	border-bottom: 3px solid rgba(255, 255, 255, 0.22);
	width: 75px;
	display: block;
	margin: 5px 36px 15px;
}
.owl-theme .owl-controls .owl-buttons div {
	background-color: white !important;
	color: black !important;
	opacity: 0.7 !important;
	border-radius: 5px !important;
}
.owl-theme .owl-controls .owl-buttons pre { font-size: 25px !important; }
.owl-next {
	position: absolute !important;
	top: 25% !important;
	right: 6px !important;
}
.owl-prev {
	position: absolute !important;
	top: 25% !important;
	left: 6px !important;
}
@media(max-width: 1000px) {
	.content-image h4 {
		margin:  60px 45px 0;
		font-size: 	27px;
	}
	span.borderLine {
		margin: 10px 45px 15px;
	}
	.content-image p {
		margin: 10px 45px;
		font-size: 20px;
	}
}
@media(max-width: 750px) {
	.content-image h4 {
		margin:  35px 38px 0;
		font-size: 	25px;
	}
	span.borderLine {
		margin: 8px 38px 10px;
	}
	.content-image p {
		margin: 0 38px;
		font-size: 13px;
	}
}
@media(max-width: 531px) {
	.content-image h4 {
		margin:  25px 40px 0;
		font-size: 	16px;
	}
	span.borderLine {
		margin: 4px 40px 5px;
	}
	.content-image p {
		margin: 0 40px 10px;
		font-size: 13px;
	}
}
@media(max-width: 496px) {
	.content-image h4 {
		margin:  40px 45px 0;
		font-size: 	24px;
	}
	span.borderLine {
		margin: 6px 45px 9px;
	}
	.content-image p {
		margin: 10px 45px;
		font-size: 14px;
	}
}
/* End Page-Home */
/* Css Template B */
.search-submit span {
	background: url('images/icon-sprite-v2.png') -210px 0 no-repeat;
	width: 30px;
	height: 30px;
	display: block;
}
.orchestras-content { text-align: center; }
.orchestras-content .h3 {
	margin: 45px 0 10px;
	text-transform: uppercase;
	font-family: 'Cervo-Thin';
	font-weight: bold;
	letter-spacing: 1px;
}
.orchestras-content .border-line {
	border-bottom: 5px solid #ececec;
	width: 45px;
	margin: 0 auto 30px;
	display: block;
}
.orchestras-content p {
	margin: 0 125px 40px;
	font-family: 'ProgressTwo-Light';
}
.search-content { background-color: #ededed; }
.search-nav {
	margin-top: 48px;
	background-color: white;
	padding: 40px 40px 20px;
	/* height: 130px; */
	box-shadow: 0px 9px 20px #cdcdcd;
}
.search-nav ul { height: 100%; }
.search-nav li {
	padding: 0;
	height: 100%;
	vertical-align: top;
	margin-left: -5px;
}
.search-nav li:nth-child(1) {
	width: 490px;
	margin-left: 0;
}
.search-nav li:nth-child(2) { width: 240px; }
.search-nav li:nth-child(3) { width: 240px; }
.search-nav li:nth-child(4) { width: 138px; }
.search-submit .submit-color {
	background: #FFF;
	display: block;
	height: 100%;
	border: 1px solid orange;
	width: 100%;
	border-radius: 4px;
	cursor: pointer;
	padding: 9px 38px;
}
.search-nav select {
	height: 50px;
	width: 100%;
	outline: none;
	background: #f8f8f8;
	border-radius: 2px;
	border-color: #ddd;
	font-weight: bold;
	padding: 15px 0 15px 15px;
}
.search-nav select[disabled] {
	color: #A8A8A8;
	cursor: not-allowed;
}
@media(max-width: 1199px) {
	.search-nav li:nth-child(1) { width: 306px; }
	.search-nav li:nth-child(2) { width: 212px; }
	.search-nav li:nth-child(3) { width: 212px; }
}
.search-nav .search-submit {
	text-align: right;
	height: 100%;
	width: 100%;
	padding-left: 35px;
}
@media(max-width: 991px) {
	.search-nav li:nth-child(1) { width: 221px; }
	.search-nav li:nth-child(2) { width: 165px; }
	.search-nav li:nth-child(3) { width: 165px; }
	.search-nav li:nth-child(4) { width: 96px; }
	.search-submit .submit-color { padding: 9px 16px; }
}
@media(max-width: 755px) {
	.search-nav li:nth-child(1) { width: 180px; }
	.search-nav li:nth-child(2) { width: 150px; }
	.search-nav li:nth-child(3) { width: 150px; }
}
@media(max-width: 684px) {
	.search-nav li:nth-child(1) {
		width: 	100%;
		margin: 10px 0;
	}
	.search-nav li:nth-child(2) {
		width: 	100%;
		margin: 10px 0;
	}
	.search-nav li:nth-child(3) {
		width: 	100%;
		margin: 10px 0;
	}
	.search-nav li:nth-child(4) {
		width: 100%;
		margin: 10px 0;
		text-align: center;
	}
	.search-submit .submit-color { padding: 7px 35px; }
	.search-nav .search-submit {
		padding: 0;
		width: 106px;
		margin: 0 auto
	}
}

.orchestra-search-title {
	margin: 45px 0 15px;
	/*display: inline-block;*/
	width: 100%;
}
.orchestra-search-title h3 {
	text-transform: uppercase;
	font-family: 'Cervo-Thin';
	letter-spacing: 1px;
	font-weight: bold;
	margin: 0;
}
.orchestra-search-title .border-display {
	display: block;
	width: 100%;
	border-bottom: 3px solid #cdcdcd;
	margin: 10px 0;
}
.orchestra-search-result .img-content-width {
	width: 150px;
	height: 150px;
	float: left;
}
.orchestra-search-result img {
	width: 100%;
	height: 100%;
}
.orchestra-search-result .result-margin {
	margin-top: 15px;
	margin-bottom: 15px;
}
.orchestra-search-result .orchestras-description {
	background-color: #fff;
	display: block;
	width: calc( 100% - 150px );
	float: left;
	height: 150px;
	padding: 15px 30px;
}
.orchestra-search-result .result-margin.no-thumbnail .img-content-width { display: none; }
.orchestra-search-result .result-margin.no-thumbnail .orchestras-description { width: 100%; }
@media(max-width: 616px) {
	/*.orchestra-search-result .img-content-width { width: 100%; }
	.orchestra-search-result .orchestras-description { width: 100%; }*/
	.orchestras-content p { margin: 0 15px 20px; }
}
.orchestra-search-result .orchestras-description h4 {
	font-family: 'Cervo-Thin';
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
}
.orchestra-search-result .orchestras-description p { font-family: 'ProgressTwo-Ligh'; }
.show-pagination {
	text-align: center;
	display: inline-block;
	margin: 15px 0 50px;
	width: 100%;
}
.show-pagination h5 { color: #adadad; }
.show-pagination li {
	background-color: #fff;
	vertical-align: top;
	margin: 0 -1.6px;
	padding: 6px 10px;
	cursor: pointer;
}
.show-pagination a { text-decoration: none; }
.orchestra-banner { margin-top: 46px; }
.orchestra-banner .img-banner { margin: 11px 0; }
.orchestra-banner .img-banner img { width: 100%; }
.orchestra-banner .orchestra-hover {
	position: absolute;
	top: 0;
	color: white;
	background-color: rgba(245, 130, 31, 0.9);
	width: calc(100% - 19px);
	height: 100%;
	padding: 0 35px;
	display: none;
}
.orchestra-banner .img-banner:hover .orchestra-hover { display: block; }
.orchestra-banner .img-banner h3 {
	text-transform: uppercase;
	font-family: 'Cervo-Thin';
	font-weight: bolder;
	letter-spacing: 1px;
	margin-top: 40px;
}
.orchestra-banner .img-banner p { font-family: 'ProgressTwo-Light'; }
.orchestra-banner span.border-banner {
	width: 75px;
	display: block;
	border-bottom: 3px solid rgba(255, 255, 255, 0.22);
	margin: 10px 0 20px;
}
@media(max-width: 500px) {
	.orchestra-banner .img-banner h3 {
	font-size: 15px;
	margin-top: 20px;
	}
	.orchestra-banner .img-banner p { font-size: 11px; }
	.orchestra-banner span.border-banner { margin: 5px 0 10px; }
	.orchestra-search-result .img-content-width {
		width: 100px;
		height: 100px;
	}
	.orchestra-search-result .orchestras-description h4 { font-size: 14px; }
	.orchestra-search-result .orchestras-description {
		width: calc( 100% - 100px );
		height: 100px;
		padding: 7px 10px;
	}
	.orchestra-search-result .orchestras-description p { font-size: 10px; }
}
.pagination-button li:nth-child(1) span {
	background: url('images/icon-sprite-v2.png') -250px -35px no-repeat;
	width: 11px;
	height: 20px;
	display: block;
}
.pagination-button li:nth-child(2) span {
	background: url('images/icon-sprite-v2.png') -252px -4px no-repeat;
	width: 8px;
	height: 20px;
	display: block;
}
.pagination-button li:nth-child(5) span {
	background: url('images/icon-sprite-v2.png') -281px -5px no-repeat;
	width: 8px;
	height: 20px;
	display: block;
}
.pagination-button li:nth-child(6) span {
	background: url('images/icon-sprite-v2.png') -280px -35px no-repeat;
	width: 10px;
	height: 20px;
	display: block;
}
.pagination-button li:hover { background-color: #f5821f; }

/* End Template B*/


.image_donation_con{
	 margin-top: 20px;
}

.image_for_donation_desktop .img-responsive{
	height: 169px;
	width: 100%;
}

.image_for_donation_mobile .img-responsive{
	height: 169px;
	width: 100%;
}

.syo_video{
	position: relative;
	margin-top: 25px;
	margin-bottom: 25px;
	text-align: center;
}

.vid_thumbnail{
	margin-right: auto;
	margin-left: auto;
}

.play_icon{

	background: url('images/icon-sprite-v2.png') no-repeat -183px -32px;
	width: 24px;
	height: 27px;

}
.play_holder {
	text-align: center;
	position: absolute;
	z-index: 1;
	top: 36%;
	left: 11%;
	height: 60px;
	width: 60px;
	border: 1px solid white;
	border-radius: 30px;
	padding: 15px 0px 0px 20px;
}

.play_holder:hover{
	background:rgba(247,241,241,0.6);
}

.vid_thumbnail{
	background:rgba(247,241,241,0.6);
}

#html5-watermark{
	display: none !important;
}


@media only screen and (max-width: 480px) {

 .image_for_donation_desktop{
	display: none;
 }

 .play_holder {
	text-align: center;
	position: absolute;
	z-index: 1;
	top: 23%;
	left: 5%;
	height: 45px;
	width: 45px;
	border: 1px solid white;
	border-radius: 30px;
	padding: 8px 0px 0px 13px;
}

}

@media only screen and (min-width: 481px) {

 .image_for_donation_mobile{
	display: none;
 }

}

/*
 * Added on July 7, 2016 by John Mark
 */
.burger-menu {
	display: inline-block;
	background: url('./images/icon-sprite-v2.png') no-repeat -215px -37px;
	width: 20px;
	height: 17px;
}

@media only screen and (max-width: 599px) {
	.main-navigation li {
		float: none;
		display: block;
	}

	.main-navigation li a {
		padding-left: 0;
		padding-right: 0;
	}
}

.pos-static {
	position: static;
}

/**
 * Added July 8, 2016 by John Mark
 */
#primary-menu > li.menu-item > ul.sub-menu {
	border-bottom: 5px solid #323133;
	padding-bottom: 18px;
}

#primary-menu > li.menu-item > ul.sub-menu > li.menu-item > a {
	border-bottom: 1px solid #555354;
	margin-right: 50px;
	padding-top: 28px;
	padding-bottom: 16px;
	padding-left: 0;
}

#primary-menu > li.menu-item > ul.sub-menu > li.menu-item > a ~ ul.sub-menu > li.menu-item > a {
	padding-bottom: 0;
	padding-top: 0;
	margin-top: 18px;
	margin-bottom: 18px;
	padding-left: 0;
}

@media only screen and (max-width: 599px) {
	#primary-menu > li.menu-item > ul.sub-menu {
		background: none;
		position: static;
	}
}

@media only screen and (max-width: 599px) {
	#primary-menu > li.menu-item > ul.sub-menu {
		background: none;
		border: none;
		box-shadow: none;
		position: static;
	}

	#primary-menu > li.menu-item > ul.sub-menu > li.menu-item {
		float: none;
		overflow: hidden;
	}

	#primary-menu > li.menu-item > ul.sub-menu > li.menu-item > a,
	#primary-menu > li.menu-item > a,
	#primary-menu > li.menu-item > ul.sub-menu > li.menu-item > a ~ ul.sub-menu > li.menu-item > a {
		border: none;
		padding-top: 10px;
		padding-bottom: 10px;
		margin: 0;
		width: auto;
	}

	#primary-menu > li.menu-item ul {
		margin-left: 40px
	}
}

.text-upper {
	text-transform: uppercase;
}

.item-result-thumbnail img {
	float: right;
}

.item-result-header .entry-title {
	font-size: 1.2em;
	width: 70%;
	border-bottom: 1px solid #232323;
	margin-top: 0;
}

.search-results article {
	overflow: hidden;
}
/**
 * July 9, 2016 Donation page
 */
.syo-img-logo { margin: -20px 0 15px; }
.syo-img-logo img { display: inline-block; }
.syo-content-description {
    text-align: right;
    padding-right: 50px;
    background-color: #ff883e;
    height: 100%;
    padding-bottom: 30px;
}
.syo-content-description h1 {
	color: #fff;
	margin-top: 50px;
	font-size: 55px;
	text-align: right;
	width: 380px;
	font-weight: bold;
	display: inline-block;
	letter-spacing: 2px;
}
.syo-address-info {
	line-height: 9px;
	color: #fff;
	font-family: 'ProgressTwo-Light';
	font-size: 14px;
	margin-top: 50px;
}
.syo-contact-info {
	font-family: 'ProgressTwo-Light';
	font-size: 11px;
	line-height: 9px;
	color: #fff;
	margin-top: 30px;
	letter-spacing: 1px;
	border-bottom: 1px solid #a2979a;
	margin-bottom: 50px;
}
.syo-contact-info p {
	float: left;
	width: 75%;
	margin-top: 10px;
}
.syo-contact-info li:nth-child(1) span {
	background: url('images/icon-sprite-v2.png') -308px -30px no-repeat;
	width: 16px;
	height: 24px;
	display: inline-block;
	margin-right: 15px;
	float: left;
}
.syo-contact-info li:nth-child(2) span {
	background: url('images/icon-sprite-v2.png') -304px -2px no-repeat;
	width: 22px;
	height: 24px;
	display: inline-block;
	margin-right: 15px;
	float: left;
}
.syo-contact-info li:nth-child(3) { text-align: right; }
.syo-contact-info li:nth-child(3) a { color: #FD7E29; }
.syo-contact-num {
	font-family: 'ProgressTwo-Light';
	font-size: 12px;
	line-height: 9px;
	color: #fff;
	margin-top: 30px;
	letter-spacing: 1px;
	margin-bottom: 50px;
}

.syo-contact-info a {
	color: #fff;
}
.syo-about-desciption {
	font-family: 'ProgressTwo-Light';
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	margin: 30px 0;
	letter-spacing: 1px;
	padding-left: 210px;
	line-height: 23px;
}
.syo-donation-a {
	padding: 0;
	position: relative;
}
.syo-donation-b {
	background-color: #fff;
	padding: 0;
}
.syo-donation-row {
	color: #808285;
	padding: 26px 40px;
}
.syo-donation-content {
	font-family: 'ProgressTwo-Light';
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	margin: 30px 0;
	letter-spacing: 1px;
	padding-left: 170px;
}

.padding_Input {
	padding-top: 0;
}

@media (max-width: 1199px) {
	.syo-donation-content {
		padding-left: 0;
	}

	.syo-donation-content > * {
		text-align: center !important;
	}
}

@media (max-width: 500px) {
	.syo-donation-row { padding: 15px; }
	.syo-contact-info li:nth-child(3) { text-align: left; }
	.syo-contact-info li { padding-left: 30px; }
	.syo-img-logo { text-align: center; }
	.syo-contact-info { margin: 0 0 32px; }

}
.syo-donation-input span {
	display: block;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: bold;
	color: #808285;
}
.syo-donation-input select {
    margin-top: 13px;
    padding: 10px;
    width: 100%;
    border: 2px solid #ff8200;
    color: #ff8200;
    outline: none;
    font-weight: bold;
}
.syo-donation-tag { margin-top: 5px; }
.syo-donation-tag ul { margin: 0; }
.syo-donation-tag li {
	padding: 0;
	margin: 10px 0;
}
.syo-donation-tag .syo-tag {
	background-color: #808285;
	color: #fff;
	padding: 10px;
	font-size: 13px;
	font-weight: bold;
	position: relative;
	cursor: pointer;
}
.syo-donation-tag p { margin: 0; }
.syo-donation-tag span {
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 6px solid #808285;
	position: absolute;
	bottom: -5px;
	left: 34%;
}
.syo-donation-tag .syo-tag:hover { background-color: #ff883e; }
.syo-donation-tag li:hover .syo-tag span {
	border-top: 6px solid #ff883e;
}
.syo-donation-description p {
	font-size: 12px;
	color: #808285;
	margin-top: 15px;
	display: inline-block;
}
.syo-donation-price {
	display: inline-block;
	width: 100%;
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 3px;
}
.syo-donation-price .syo-span-title {
	width: 100%;
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	color: #808285;
}
.syo-donation-price .pull-right {
	color: #808285;
	font-weight: bolder;
}
.syo-donation-price .pull-right span { color: #ff883e; }
.syo-select-a,
.syo-select-b { width: 100% }
.syo-select-a select,
.syo-select-b select {
	width: 100%;
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	color:#a9a9b1;
	font-size: 12px;
}
.syo-contact-details span {
	width: 100%;
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	color: #808285;
}
.syo-contact-details input {
	width: 100%;
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	font-size: 12px;
	background-color: #Fff;
}
.syo-contact-details select {
	width: 100%;
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	color:#a9a9b1;
	font-size: 12px;
}
.syo-card-details span {
	width: 100%;
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	color: #808285;
}
.syo-card-details input {
	width: 100%;
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	font-size: 12px;
	background-color: #Fff;
}
.syo-card-details select {
	width: 100%;
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	color:#a9a9b1;
	font-size: 12px;
}
.syo-policy-info {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 35px;
	display: inline-block;
}
.syo-policy-info .pull-left { margin-top: 8px; }
.syo-policy-info .pull-left p {
	margin: 0 0 10px;
	font-size: 12px;
	color: #808285;
}
.syo-policy-info .pull-left p input {
	margin-right: 15px;
	vertical-align: middle;
}
.syo-policy-info .pull-right button {
	padding: 10px 10px;
	width: 100%;
	border: 2px solid #ff8200;
	color: #ff8200;
	font-weight: bold;
	background-color: #fff;
	width: 103px;
}
.syo-donation-page {
	background-image: url('images/donation-bckgrnd.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 64px;
	background-attachment: fixed;
}
.syo-violin-pic span {
	background: url('images/violin.png') no-repeat;
	position: absolute;
	bottom: 0;
	left: -110px;
	display: block;
	width: 278px;
	height: 730px;
	opacity: 100;
	z-index: 10;
}
@media(max-width: 1199px) {
	.syo-violin-pic span { display: none; }
	.syo-content-description {
		padding: 0 70px 30px;
		text-align: center;
	}
	.syo-about-desciption { padding-left: 0; }
	.syo-content-description h1 {
		text-align: center;
		width: 100%;
	}
}
@media(max-width: 512px) {
	.syo-content-description h1 { font-size: 30px; }
	.syo-content-description { padding: 0 15px; }
	.syo-address-info,
	.syo-about-desciption { font-size: 12px; }
}

@media (min-width: 1200px) {
	.syo-donation-page .container {
		max-width: 960px;
	}
}
/** END Donation page */

/**
 *  July 9, 2016 Template C
 */
.schedule-notice {
	padding-top: 50px;
}

.schedule-notice p {
	color: #727272;
	font-family: 'ProgressTwo-Light';
	margin-bottom: 5px;
	margin-top: 0;
}
.schedule-title {
	display: inline-block;
	width: 100%;
}
.schedule-title h3 {
	margin-top: 0;
	text-transform: uppercase;
	font-family: 'Cervo-Medium';
	letter-spacing: 1px;
}
.schedule-title span { color: #f5821f; }
.orchestra-schedule ul { margin: 0; }
.orchestra-schedule li { margin-bottom: -6px; }
.schedule-row {
	border: 1px solid #cecece;
	padding: 16px 10px;
	display: inline-block;
	width: 100%;
}
.schedule-row img {
	border-radius: 50%;
	width: 65px;
	height: 65px;
}
.schedule-status {
	display: inline-block;
	width: calc(90% - 65px);
	vertical-align: middle;
	margin-left: 5%;
}
.schedule-status p,
.schedule-middle p{
	color: #727272;
	font-family: 'ProgressTwo-Light';
	font-size: 12px;
}
.schedule-row h5 {
	margin-top: 16px;
	margin-bottom: 4px;
	font-weight: bolder;
	font-family: 'ProgressTwo-Light';
	letter-spacing: 1px;
	color: black;
}
.schedule-bottom {
	text-align: right;
	padding-right: 20px;
}
.schedule-bottom button {
	padding: 10px;
	width: 130px;
	margin-top: 15px;
	background-color: #fff;
	border: 2px solid #f5821f;
	color: #f5821f;
	border-radius: 4px;
	outline: none;
}
.show-details .schedule-bottom button {
	color: #6e6e6e;
	border: 2px solid #ededed;
}
.schedule-extension {
	display: none;
	width: 100%;
	background-color: #eceeec;
	border: 1px solid #cecece;
	margin-top: -6px;
	margin-bottom: 5px;
	padding-left: 104px;
	padding-top: 25px;
	padding-bottom: 35px;
}
.schedule-extension .notes {
	padding: 10px 0;
	line-height: 1.3;
	font-size: 14px;
}
.schedule-extension span {
	border-bottom: 3px solid #f5821f;
	width: 40px;
	display: block;
}
.schedule-extension p {
	text-transform: uppercase;
	color: #adadad;
}
.schedule-extension .notes p {
	color: #000;
}
.button {
	color: #fff;
	padding: 10px 20px;
	margin-top: 15px;
	background-color: #f5821f;
	border: none;
	border-radius: 4px;
	outline: none;
	font-family: 'ProgressTwo-Light';
	font-size: 13px;
	display: inline-block;
}
.button:link,
.button:visited { color: #FFF; }
@media(max-width: 991px) {
	.syo-content-banner { padding-left: 0; }
}
.syo-sidebar-banner { padding-top: 50px; }
.syo-sidebar-banner p {
	color: #727272;
	font-family: 'ProgressTwo-Light';
	margin-top: 0;
	margin-bottom: 5px;
}
.syo-sidebar-banner h3 {
	margin-top: 0;
	text-transform: uppercase;
	font-family: 'Cervo-Medium';
	letter-spacing: 2px;
	margin-bottom: 29px;
}
.side-syo-img {
	width: 250px;
}
.side-syo-img img { border-radius: 5px 5px 0 0; }
.syo-time-text {
	text-align: center;
	padding: 18px 0;
	border: 1px solid #cecece;
	border-radius: 0 0 5px 5px;
	margin-bottom: 20px;
}
.syo-time-text p {
	margin: 0;
	font-family: 'ProgressTwo-Light';
	font-size: 12px;
	font-weight: bold;
}
.syo-time-text span {
	color: #f5821f;
	margin-right: 10px;
}
.syo-container-img {
	position: relative;
	height: 250px;
}
.syo-container-img img {
	z-index: 1;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	width: auto;
}
.syo-img-default {
    border-radius: 5px 5px 0 0;
    height: 100%;
    width: 250px;
    display: block;
    background-color: black;
    position: absolute;
    top: 0;
}
.syo-container-img a {
    position: relative;
    top: 0;
    display: block;
    z-index: 1;
    width: 250px;
    height: 100%;
    text-align: center;
    color: #fff;
    font-family: 'Cervo-Medium';
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.22);
    z-index: 1;
}
.syo-container-img h2 {
    position: relative;
    top: 20%;
    padding: 0 6%;
    margin: 0;
}
.syo-container-img span {
    width: 50px;
    border-bottom: 3px solid #f5821f;
    display: block;
    margin: 0 auto;
    margin-top: 6px;
}

.schedule-animation.show-details {
	border-color: #dadada;
	color: #4b4a4c;
}

.schedule-animation.show-details .schedule-extension {
	display: block;
}

@media(max-width: 1199px) {
	.schedule-middle { text-align: center; }
	.schedule-bottom { text-align: center; }
	.schedule-top { text-align: center; }
	.schedule-top .schedule-status {
		width: 100%;
		text-align: center;
		float: none;
	}
	.schedule-extension {
		padding-left: 30px;
		padding-right: 30px;
	}
	.schedule-extension span { margin: 0 auto; }
	.schedule-extension .notes { width: 100%; }
}
/** END Template C */

/**
 * July 9 Template D
 */
.story-title h2 {
	text-transform: uppercase;
	letter-spacing: 1.1px;
	font-family: 'Cervo-Medium';
	margin-top: 0;
}
.story-title span {
	width: 40px;
	border-bottom: 4px solid #e4e1df;
	display: block;
	margin-bottom: 30px;
}
.story-title p {
	font-family: 'ProgressTwo-Light';
	color: #6e6e6e;
	line-height: 27px;
	font-size: 15px;
	padding-right: 40px;
}
.story-parent {
	margin-top: 50px;
	font-family: ProgressTwo-Light;
}
.story-title-a span,
.story-title-c span  {
	text-transform: uppercase;
	font-size: 11px;
	font-weight: bolder;
	color: #808081;
	margin-bottom: 15px;
	display: inline-block;
}
.story-title-a p {
	font-family: 'ProgressTwo-Light';
	color: #6e6e6e;
	line-height: 27px;
	font-size: 15px;
}
.story-title-b button {
	border: 1px solid #f3c39a;
	background-color: #fff;
	color: #f5821f;
	width: 115px;
	padding: 7px 10px;
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 2px;
	margin: 20px 0 45px;
}
.story-title-c p:first-child {
	margin-top: 50px;
	font-size: 12px;
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	font-weight: bolder;
	letter-spacing: 0.6px;
	color: gray;
}
.story-title-c p:last-child {
	font-family: 'ProgressTwo-Light';
	color: #6e6e6e;
	line-height: 27px;
	font-size: 15px;
}
.story-sidebar-content {
	border-top: 1px solid #ededed;
	width: 100%;
	display: block;
	margin-top: 40px;
}
.single-syo-people .story-sidebar-content { border: 0; margin-top: 10px; }
.story-img-pic {
	height: 270px;
	width: 550px;
	margin-top: 40px;
}
/*.story-img-pic img {
	width: 100%;
	height: 100%;
}*/
.story-img-info { margin-top: 40px; }
.story-img-info span {
	font-weight: bolder;
	letter-spacing: 0.6px;
	color: gray;
	font-size: 12px;
	text-transform: uppercase;
}
.story-img-info h1 {
	font-weight: bolder;
	color: #f5821f;
	margin-top: 5px;
	margin-bottom: 25px;
}
.story-img-info p {
	font-family: 'ProgressTwo-Light';
	color: #6e6e6e;
	line-height: 27px;
	font-size: 15px;
}
.story-bottom-content {
	background-color: #717071;
	margin-top: 40px;
}
.story-bottom-a h3 {
	text-transform: uppercase;
	font-family: 'Cervo-Medium';
	letter-spacing: 1px;
	margin-top: 50px;
	margin-bottom: 0;
	color: #ededed;
}
.story-bottom-a span {
	width: 35px;
	border-bottom: 4px solid #7d7c7c;
	display: block;
	margin: 20px 0;
}
.story-bottom-a p {
	font-family: 'ProgressTwo-Light';
	color: #ededed;
	line-height: 27px;
	font-size: 15px;
	margin-bottom: 50px;
}
.story-bottom-img {
	border-top: 2px solid #7d7c7c;
	width: 350px;
	margin-bottom: 60px;
}
.story-bottom-img h4 {
	color: #f5821f;
	font-weight: bold;
	margin: 20px 0;
	font-size: 16px;
}
@media(max-width: 650px) {
	.story-img-pic {
		height: 245px;
		width: 100%;
	}
}
@media(max-width: 400px ) {
	.story-bottom-img { width: 100%; }
	.story-bottom-img img { width: 100%; }
}
/** END Template D */

/**
 * Custom CSS added on July 9, 2016
 */
.entry-title,
.page-title {
	text-transform: uppercase;
	letter-spacing: 1.1px;
	font-family: 'Cervo-Medium';
	margin-top: 50px;
}
/** END Custom CSS */
/** CSS About Us Juniel **/
.syo-about-footer {
	border-top: 1px solid #ecebea;
	margin-top: 30px;
	padding-bottom: 30px;
	background-image: url('images/about-us-bgimg.jpg');
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/**
 * July 12, 2016 Template D
 */
.template-d-grid .col-md-6 {
	margin: 30px 0;
}

/**
 * CSS added on July, 13, 2016 by JM
 */
#content,
#masthead {
	background-color: #fff;
}

#colophon {
	margin-top: 60px;
}

.no-margin-top-footer #colophon {
	margin-top: 0;
}

/**
 * July 14, 2016 Template D CSS
 */
.row.expandable.exceeds {
	max-height: 400px;
	overflow: hidden;
	position: relative;
}

.row.expandable .read-more {
	display: none;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 5px 0;
	background: #fff;
	opacity: 0.7;
	color: #f5821f;
}

.row.expandable.exceeds .read-more {
	display: block;
}

.row.expandable.exceeds.expanded {
	max-height: 100%;
}

.row.expandable.exceeds.expanded .read-more {
	display: block;
}

/**
 * July 19
 */
.kalendae {
	box-sizing: content-box;
}

@media (max-width: 600px) {
	.syo-container-img a, .side-syo-img, .syo-img-default { width: 100%; }
}

.template-d-grid .col-md-6 > *:first-child {
	margin-top: 0;
}


/**
 * July 27
 */
#syo-pagination-container {
	display: inline-block;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li {
	display: inline-block;
	width: 28px;
	height: 28px;
	border: 1px solid #DEDEDE;
	text-align: center;
	padding: 0;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li a {
	padding: 6px 9px;
	display: inline-block;
	line-height: 1;
}

.show-pagination button.go-start:hover,
.show-pagination button.go-end:hover,
#syo-pagination-container .paginationjs .paginationjs-pages ul li a:hover,
#syo-pagination-container .paginationjs .paginationjs-pages ul li.active a {
	background-color: #F6821F;
	color: #FFF;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li.paginationjs-prev a {
	padding: 6px 10px;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li.paginationjs-prev a i {
	background: url('./images/icon-sprite-v2.png') -252px -8px no-repeat;
	display: inline-block;
	width: 6px;
	height: 13px;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li.paginationjs-next a {
	padding: 6px 10px;
}

#syo-pagination-container .paginationjs .paginationjs-pages ul li.paginationjs-next a i {
	background: url('./images/icon-sprite-v2.png') -282px -8px no-repeat;
	display: inline-block;
	width: 6px;
	height: 13px;
}

.show-pagination button.go-start,
.show-pagination button.go-end {
	width: 28px;
	height: 28px;
	border: 1px solid #DEDEDE;
	background-color: #FFF;
	padding: 0;
	margin-right: -3px;
	outline: none;
}

.show-pagination button.go-end {
	margin-left: -3px;
}

.show-pagination .go-start i {
	background: url('images/icon-sprite-v2.png') no-repeat -250px -39px;
	display: inline-block;
	width: 10px;
	height: 12px;
}

.show-pagination .go-end i {
	background: url('images/icon-sprite-v2.png') no-repeat -280px -39px;
	display: inline-block;
	width: 10px;
	height: 12px;
}

.pagination-list-inline > * {
	display: inline-block;
	vertical-align: top;
}

/**
 * Added style for donation form integrated with pronto donation plugin
 */
.syo-donation-row .donation-amounts {
	margin-top: 14px
}

.syo-donation-row .donation-level-boxes label.pd-amount,
.syo-donation-row .pronto-donation-type label {
	background-color: #808285;
	border: 1px solid #808285;
	color: #fff;
	padding: 10px 7px;
	font-size: 13px;
	font-weight: bold;
	position: relative;
	margin: 0 6px 15px 0;
}

.syo-donation-row .donation-level-boxes label.pd-amount:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 6px solid #808285;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: -6px;
}

.syo-donation-row .donation-level-boxes input[type="radio"]:checked + label,
.syo-donation-row .pronto-donation-type input[type="radio"]:checked + label {
	background-color: #ff883e;
	border: 1px solid #ff883e;
}

.syo-donation-row .donation-level-boxes input[type="radio"]:checked + label:after {
	border-top: 6px solid #ff883e;
}

.syo-donation-row .field-label {
	display: inline-block;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: bold;
	color: #808285;
}

.syo-donation-row input[type="text"],
.syo-donation-row input[type="email"],
.syo-donation-row input[type="number"],
.syo-donation-row select,
.syo-donation-row textarea {
	padding: 10px 11px;
	border: 1px solid #eaeaea;
	margin: 5px 0;
	outline: none;
	font-size: 12px;
	background-color: #Fff;
	border-radius: 0;
	margin-top: 0;
	margin-bottom: 10px;
}

.syo-donation-row input[disabled] {
	background-color: #eaeaea;
	cursor: not-allowed;
}

.syo-donation-row .pronto-donation-group {
	margin: 0;
}

.syo-donation-row .pd-container-padding {
	padding: 0;
	margin-left: -8px;
	margin-right: -8px;
}

.syo-donation-row #submit-donation {
	background-color: #FFF;
	border: 2px solid #f5821f;
	border-radius: 0;
	color: #f5821f;
}

.syo-donation-row #submit-donation[disabled] {
	border-color: #eaeaea;
	color: #eaeaea;
	cursor: not-allowed;
}

.content-subscribe #mc-embedded-subscribe {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
}

/* new update */

.syo-donation-row select#paydock_dial_code {
    height: 39px;
    border-right: 0;
}

.syo-donation-row input#user_phone_option {
    border-left: 0;
}

.syo-donation-row .pronto-donation-group label {
    margin: 10px 0 0 0;
}

.syo-donation-row #donor-information .pronto-donation-group:first-of-type,
.syo-donation-row #donor-information .pronto-donation-group:nth-of-type(2),
.syo-donation-row .pronto-donation-group label,
.syo-donation-row #pronto-donation-form > h3 {
   display: none;
}

.syo-donation-row #pronto-donation-form > p,
.syo-donation-row #pronto-donation-form > #pronto-donation-banner {
	margin: 0;
}

.syo-donation-row .pronto-donation-group .donation-level-boxes label,
.syo-donation-row .pronto-donation-gift label {
	display: inline-block;
}

.syo-donation-row .pronto-donation-form h3 {
	margin-top: 20px;
	font-size: 18px;
}

.syo-donation-row .pd-right {
	float: none;
}

.syo-donation-row hr {
	margin-bottom: 9px;
	margin-top: 3px;
}

.syo-donation-row #donate-btn {
	margin-top: 10px;
}

.syo-donation-row label[for="paydock_expiry_month"] {
	display: inline-block;
	margin-top: 0;
}

.syo-donation-row .pronto-donation-type label {
	display: inline-block;
	margin-bottom: 1em;
}