/*
Theme Name: bigkl2026 (Resonar)
Theme URI: https://wordpress.com/themes/resonar/
Description: Resonar is an elegant blog theme that features full-screen featured images.
Version: 1.0.9
Author: Automattic
Author URI: https://wordpress.com/themes/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: resonar
*/

/**
 * Table of Contents
 *
 * 1.0 Normalize
 * 2.0 Keyframes
 * 3.0 Genericons
 * 4.0 Typography
 * 5.0 Elements
 * 6.0 Forms
 * 7.0 Navigation
 *    7.1 Links
 *    7.2 Menus
 *    7.3 Navigations
 * 8.0 Accessibility
 * 9.0 Alignments
 * 10.0 Clearings
 * 11.0 Widgets
 * 12.0 Site
 *    12.1 Header
 *    12.2 Posts and pages
 *    12.3 Comments
 *    12.4 Footer
 * 13.0 Media
 *    13.1 Captions
 *    13.2 Galleries
 * 14.0 Multisite
 * 15.0 Jetpack
 *    15.1 Infinite scroll
 *    15.2 Extra Widegts
 *    15.3 Shortcodes
 *    15.4 Tiled Gallery
 *    15.5 Responsive Videos
 *    15.6 Jetpack Comments
 *    15.7 Sharing
 *    15.8 Related Posts
 *    15.9 Site Logo
 *    15.10 Stats
 * 16.0 Media Queries
 *    16.1 >= 470px
 *    16.2 >= 601px
 *    16.3 >= 700px
 *    16.4 >= 828px
 *    16.5 >= 925px
 *    16.6 >= 1088px
 *    16.7 >= 1216px
 * 	  17.0 MaxLee CSS
 * 	  99.9 MaxLee CSS
 *   100.0 MaxLee CSS
 *   101.0 2026 CSS
 */


/**
 * 1.0 Normalize
 */

html {
	font-family: sans-serif;
	/* maxlee commented out due to error 25/12/2021 */
	/*
	-webkit-text-size-adjust: 100%;
	*/
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

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

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

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

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

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

figure {
	margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

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

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: border-box;
}

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

fieldset {
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}


/**
 * 2.0 Keyframes
 */

@-webkit-keyframes moveDown {
	from {
		-webkit-transform: translateY(0);
	}
	to {
		-webkit-transform: translateY(24px);
	}
}

@keyframes moveDown {
	from {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	to {
		-moz-transform: translateY(24px);
		transform: translateY(24px);
	}
}

@-webkit-keyframes moveUp {
	from {
		-webkit-transform: translateY(24px);
	}
	to {
		-webkit-transform: translateY(0);
	}
}

@keyframes moveUp {
	from {
		-moz-transform: translateY(24px);
		transform: translateY(24px);
	}
	to {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes opacityDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes opacityDown {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@-webkit-keyframes opacityUp {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes opacityUp {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}


/**
 * 3.0 Genericons
 */

.site-header .menu-item-has-children > a:after,
.social-navigation a:before,
.sidebar-toggle:before,
.dropdown-toggle:after,
.bypostauthor > article .fn:after,
.comment-reply-title small a:before,
.cat-links:before,
.tags-links:before,
.comments-link:before,
.edit-link:before,
.full-size-link:before,
.pagination .prev:before,
.pagination .next:before,
.author-link:after,
.scroll-indicator:before {
	/* maxlee commented out due to error 25/12/2021 */
	/*
	-moz-osx-font-smoothing: grayscale;
	*/
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: "Genericons";
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	line-height: 1;
	/*
	speak: none;
	*/
	text-align: center;
	text-decoration: inherit;
	text-transform: none;
	vertical-align: top;
}


/**
 * 4.0 Typography
 */

body,
button,
input,
select,
textarea {
	/* color: #555555;	*/	
	color: #232323;
	/*font-family: "Lato", "Libre Baskerville", georgia, serif;*/
	/*font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
	font-family: 'Segoe UI',Arial,Helvetica,'Trebuchet MS',Verdana,Georgia;	
	font-size: 16px;	
	/* font-size: 0.9375rem; */
	font-size: 1.125rem;	
	line-height: 1.6em;	
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.01); 	
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	/*font-family: 'Trebuchet MS', Georgia, Verdana;*/
	font-family: "Lato","Playfair Display",Georgia,Serif;
	font-weight: 700;	
	text-rendering: optimizeLegibility;
}

p {
	margin: 0 0 24px;
}

b,
strong {
	font-weight: 700;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	border-left: 4px solid currentColor;
	color: #5b5b5b;
	font-size: 18px;
	font-size: 1.125rem;
	font-style: italic;
	line-height: 1.66667;
	margin: 0 0 24px;
	padding-left: 20px;
}

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

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

blockquote p {
	margin-bottom: 30px;
}

blockquote > p:last-child {
	margin-bottom: 0;
}

blockquote cite,
blockquote small {
	color: #232323;
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	line-height: 1.6;
}

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

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

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

code,
kbd,
tt,
var,
samp,
pre {
	font-family: Inconsolata, monospace;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}

pre {
	background-color: rgba(0, 0, 0, 0.01);
	border: 1px solid rgba(0, 0, 0, 0.1);
	line-height: 1.2;
	margin: 0 0 24px;
	max-width: 100%;
	overflow: auto;
	padding: 12px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

abbr[title] {
	border-bottom: 1px dotted #232323;
	cursor: help;
}

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

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

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}


/**
 * 5.0 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-color: #f9f9f9;	
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0;
	height: 1px;
	margin-bottom: 24px;
}

ul, ol {
	margin: 0 0 24px 20px;
	padding: 0;
}

ul {
	list-style: disc;
	/* maxlee added following 1 line */
	list-style-position:outside; 
	/* maxlee changed to 5px */
	/*
	padding-left: 20px;
	padding-right: 30px;
	*/
	/*
	padding-left: 5px;
	padding-right: 5px;
	*/
}
ol {
	list-style: decimal;
	/* maxlee added following 1 line */
	list-style-position:outside;
}

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

dl {
	margin-bottom: 24px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 24px;
}

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

table,
th,
td {
	/* maxlee changed from 0.1 to 0.0 */
	/*
	border: 1px solid rgba(0, 0, 0, 0.1);
	*/
	border: 1px solid rgba(0, 0, 0, 0.0);
}

table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 24px;
	/* maxlee commented out the following 1 line */
	/*
	table-layout: fixed;
	*/
	/* Prevents HTML tables from becoming too wide */
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	/* maxlee commented out the following 1 line */
	/*
	text-align: left;
	*/
}

th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

td {
	border-width: 0 1px 1px 0;
}

th, td {
	padding: 6px;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

del {
	opacity: 0.8;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}

:-moz-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}

::-moz-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	opacity: 1;
	/* Since FF19 lowers the opacity of the placeholder by default */
}

/* maxlee commented out due to error 25/12/2021 */
/*
:-ms-input-placeholder {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
}
*/


/**
 * 6.0 Forms
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background: #232323;
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font-family: Lato, sans-serif;
	font-size: 12px;
	/* maxlee changed to 1.0rem */
	/*
	font-size: 0.75rem;
	*/
	font-size: 1.0rem;
	font-weight: 700;
	line-height: 1;
	padding: 11px 16px 9px;
	text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #0074b8;
}

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: #0074b8;
	outline: 2px solid #d2d2d2;
}

.search-form input[type="submit"],
.widget .search-form input[type="submit"] {
	padding: 0;
}

input,
select,
textarea {
	/* maxlee changed to 12px 0.9em 1.125 Lato */
	/*
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	*/
	font-size: 12px;
	font-size: 0.9rem;
	line-height: 1.125;
	font-family: 'Lato';
	max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	background-color: #f7f7f7;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 0;
	color: #5b5b5b;
	padding: 3px 6px;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	background-color: #fff;
	border: 1px solid #5b5b5b;
	color: #232323;
	outline: 0;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 6px;
}

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

.post-password-form label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 24px;
	text-transform: uppercase;
}


/**
 * 7.0 Navigation
 */

/**
 * 7.1 Links
 */

a {
	/* maxlee - comment out to use natural link color */
	/* 
	color: #0074b8;
	*/
	text-decoration: none;
}

/* maxlee - use natural link color */
/*
a:visited {
	color: #0074b8;
}
*/

a:hover,
a:focus,
a:active {
	/* maxlee - use red color when hover */
	/*
	color: #232323;
	*/
	color:#ff0000; 
}

a:focus {
	outline: 2px solid #d2d2d2;
}

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

a img {
	border: 0;
}

/* maxlee commented the following block to use natural link color */
/*
div.entry-date a:hover,
.entry-footer a:hover,
.comment-author a:hover,
.comment-metadata a:hover,
.pingback .edit-link a:hover,
.textwidget a,
.entry-date a:hover,
.entry-content a,
.entry-summary a,
.entry-footer .author-bio a,
.page-content a,
.comment-content a,
.pingback .comment-body > a,
.taxonomy-description a,
.logged-in-as a,
.site-info a,
.image-navigation a:hover,
.comment-navigation a:hover,
.widget_gravatar a,
.widget-grofile p a,
#infinite-footer .blog-credits a {
	color: #0074b8;
	background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
	background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
	background-position: 0 100%;
	background-repeat: repeat-x;
	-webkit-background-size: 100% 1px;
	background-size: 100% 1px;
	text-decoration: none;	
}
*/

.page-links a,
.entry-content .mejs-horizontal-volume-slider,
.entry-content .wp-playlist-caption,
.entry-content a:hover,
.entry-content a:focus,
.entry-summary a:hover,
.entry-summary a:focus,
.page-content a:hover,
.page-content a:focus,
.comment-content a:hover,
.comment-content a:focus,
.pingback .comment-body > a:hover,
.pingback .comment-body > a:focus,
.author-bio a:hover,
.author-bio a:focus,
.taxonomy-description a:hover,
.taxonomy-description a:focus,
.logged-in-as a:hover,
.logged-in-as a:focus,
.site-info a:hover,
.site-info a:focus,
.textwidget a:hover,
.textwidget a:focus,
.widget_gravatar a:hover,
.widget_gravatar a:focus,
.widget-grofile p a:hover,
.widget-grofile p a:focus,
.has-post-thumbnail div.entry-date a:hover {
	background-image: none;
}


/**
 * 7.2 Menus
 */

.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a {
	font-weight: 700;
}

.site-header .main-navigation {
	display: none;
	float: right;
}

.site-header .main-navigation ul {
	list-style: none;
	margin: 0;
}

.site-header .nav-menu li {
	position: relative;
}

.site-header .nav-menu > li {
	float: left;
}

.site-header .nav-menu > li + li {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header .nav-menu a {
	color: #232323;
	display: block;
	font-size: 0.9375rem;
	font-size: 15px;
	line-height: 1.33334;
	padding: 6px 16px;
	text-decoration: none;
	white-space: nowrap;
}

.site-header .nav-menu a:hover,
.site-header .nav-menu a:focus {
	color: #0074b8;
}

.site-header .menu-item-has-children > a {
	padding-right: 38px;
}

.site-header .menu-item-has-children > a:after {
	content: "\f431";
	position: absolute;
	top: 7px;
	right: 12px;
}

.site-header .sub-menu {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: absolute;
	left: -1px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.site-header .sub-menu li {
	background-color: #fff;
	border-color: rgba(0, 0, 0, 0.1);
	border-style: solid;
	border-width: 1px 1px 0;
}

.site-header .nav-menu > li > .sub-menu {
	padding-top: 8px;
}

.site-header .nav-menu > li > .sub-menu:before,
.site-header .nav-menu > li > .sub-menu:after {
	content: "";
	border-style: solid;
	position: absolute;
}

.site-header .nav-menu > li > .sub-menu:before {
	top: -1px;
	left: 10px;
	border-width: 0 10px 10px;
	border-color: rgba(0, 0, 0, 0.1) transparent;
}

.site-header .nav-menu > li > .sub-menu:after {
	top: 1px;
	left: 12px;
	border-width: 0 8px 8px;
	border-color: #fff transparent;
}

.site-header .sub-menu a {
	padding: 14px 16px;
	white-space: normal;
	width: 240px;
}

.site-header .sub-menu ul {
	left: 100%;
	top: -1px;
}

.site-header .sub-menu .menu-item-has-children > a {
	padding-right: 30px;
}

.site-header .sub-menu .menu-item-has-children > a:after {
	content: "\f431";
	right: 8px;
	top: 15px;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.site-header .nav-menu li:hover > ul,
.site-header .nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.sidebar .main-navigation {
	/* maxlee changed to 3.125% */
	/*
	margin: 7.6923%;
	*/
	margin: 3.125%;
}

.sidebar .main-navigation a {
	display: block;
	padding: 12px 0;
	position: relative;
	text-decoration: none;
}

.sidebar .main-navigation ul {
	list-style: none;
	margin: 0;
}

.sidebar .main-navigation ul ul {
	display: none;
	margin-left: 12px;
}

.sidebar .main-navigation ul .toggled-on {
	display: block;
}

.sidebar .main-navigation li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
}

.sidebar .main-navigation .nav-menu {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar .main-navigation .nav-menu > ul > li:first-child,
.sidebar .main-navigation .nav-menu > li:first-child {
	border-top: 0;
}

.sidebar .main-navigation .menu-item-has-children > a {
	padding-right: 48px;
}

.no-js .sidebar .main-navigation ul ul {
	display: block;
}

.dropdown-toggle {
	background-color: transparent;
	border: 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	content: "";
	height: 42px;
	padding: 0;
	position: absolute;
	text-transform: lowercase;
	/* Stop screen readers to read the text as capital letters */
	top: 3px;
	right: 0;
	width: 42px;
}

.dropdown-toggle:after {
	color: #232323;
	content: "\f431";
	font-size: 24px;
	line-height: 42px;
	position: relative;
	top: 0;
	left: 1px;
	width: 42px;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
	background-color: #f5f5f5;
}

.dropdown-toggle:focus {
	outline: 1px solid #d2d2d2;
}

.dropdown-toggle.toggle-on:after {
	content: "\f432";
}

.social-navigation {
	/* maxlee changed to 3.125% */
	/*
	margin: 15.3806% 7.6923%;
	*/
	margin: 15.3806% 3.125%;
}

.social-navigation ul {
	list-style: none;
	margin: 0;
}

.social-navigation li {
	float: left;
	margin: 0 1px 1px 0;
}

.social-navigation a {
	background-color: rgba(0, 0, 0, 0.04);
	display: block;
	height: 48px;
	position: relative;
	width: 48px;
}

.social-navigation a:before {
	color: #232323;
	content: "\f415";
	font-size: 24px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	width: 48px;
}

.social-navigation a:hover:before,
.social-navigation a:focus:before {
	color: #0074b8;
}

.social-navigation a[href*="codepen.io"]:before {
	content: "\f216";
}

.social-navigation a[href*="digg.com"]:before {
	content: "\f221";
}

.social-navigation a[href*="dribbble.com"]:before {
	content: "\f201";
}

.social-navigation a[href*="dropbox.com"]:before {
	content: "\f225";
}

.social-navigation a[href*="facebook.com"]:before {
	content: "\f203";
}

.social-navigation a[href*="flickr.com"]:before {
	content: "\f211";
}

.social-navigation a[href*="foursquare.com"]:before {
	content: "\f226";
}

.social-navigation a[href*="plus.google.com"]:before {
	content: "\f206";
}

.social-navigation a[href*="github.com"]:before {
	content: "\f200";
}

.social-navigation a[href*="instagram.com"]:before {
	content: "\f215";
}

.social-navigation a[href*="linkedin.com"]:before {
	content: "\f208";
}

.social-navigation a[href*="pinterest.com"]:before {
	content: "\f210";
}

.social-navigation a[href*="getpocket.com"]:before {
	content: "\f224";
}

.social-navigation a[href*="polldaddy.com"]:before {
	content: "\f217";
}

.social-navigation a[href*="reddit.com"]:before {
	content: "\f222";
}

.social-navigation a[href*="stumbleupon.com"]:before {
	content: "\f223";
}

.social-navigation a[href*="tumblr.com"]:before {
	content: "\f214";
}

.social-navigation a[href*="twitter.com"]:before {
	content: "\f202";
}

.social-navigation a[href*="vimeo.com"]:before {
	content: "\f212";
}

.social-navigation a[href*="wordpress.com"]:before,
.social-navigation a[href*="wordpress.org"]:before {
	content: "\f205";
}

.social-navigation a[href*="youtube.com"]:before {
	content: "\f213";
}

.social-navigation a[href*="mailto:"]:before {
	content: "\f410";
}

.social-navigation a[href*="spotify.com"]:before {
	content: "\f515";
}

.social-navigation a[href*="twitch.tv"]:before {
	content: "\f516";
}

.social-navigation a[href$="/feed/"]:before {
	content: "\f413";
}

.sidebar-toggle {
	background-color: transparent;
	border: 1px solid transparent;
	height: 48px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 50%;
	/* maxlee changed to 3.125% */
	/*
	right: 7.6923%;
	*/
	right: 3.125%;
	text-align: center;
	-webkit-transform: translate(16px, -50%);
	-ms-transform: translate(16px, -50%);
	transform: translate(16px, -50%);
	width: 48px;
}

.no-js .sidebar-toggle {
	display: none;
}

.sidebar-toggle:before {
	color: #232323;
	content: "\f419";
	line-height: 46px;
	width: 48px;
}

.sidebar-toggle:hover,
.sidebar-toggle:focus {
	background-color: transparent;
	outline: 0;
}

.sidebar-toggle:focus {
	border-color: rgba(0, 0, 0, 0.1);
}

.sidebar-toggle:hover:before,
.sidebar-toggle:focus:before {
	color: #0074b8;
}

.sidebar-toggle.toggled-on:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: 2px;
	left: -1px;
}

.sidebar-toggle.toggled-on:hover:before,
.sidebar-toggle.toggled-on:focus:before {
	color: #232323;
}


/**
 * 7.3 Navigations
 */

.post-navigation {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-family: Lato, sans-serif;
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923% 7.6923%;
	*/
	margin: 0 3.125% 3.125%;

	margin: 0 5.40865% 5.40865%;
}

.post-navigation a {
	color: #232323;
	display: block;
	padding: 4.5465% 0;
	/* maxlee added to hide underline */
	text-decoration: none; 
}

.post-navigation span {
	display: block;
}

.post-navigation .meta-nav {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.post-navigation .post-title {
	display: inline;
	font-family: "Lato", "Playfair Display", georgia, serif;
	font-size: 22px;
	font-size: 1.375rem;
	-webkit-font-variant-ligatures: common-ligatures;
	font-variant-ligatures: common-ligatures;
	font-weight: 700;
	line-height: 1.36364;
	text-rendering: optimizeLegibility;
}

.post-navigation a:hover .post-title,
.post-navigation a:focus .post-title {
	/* maxlee - use red color for hover */
	/*
	color: #0074b8;
	*/
	color:#ff0000; 
}

.post-navigation div + div {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pagination {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	font-family: Lato, sans-serif;
}

.sidebar-open .pagination {
	display: none;
}

.pagination a {
	color: #232323;
}

.pagination a:hover,
.pagination a:focus {
	color: #0074b8;
}

.pagination .nav-links {
	min-height: 48px;
	position: relative;
	text-align: center;
}

/* reset screen-reader-text */
.pagination .current .screen-reader-text {
	position: static !important;
}

.pagination .page-numbers {
	display: none;
	line-height: 48px;
	padding: 0 6px;
}

.pagination .current {
	color: #5b5b5b;
	display: inline-block;
}

.pagination .prev,
.pagination .next {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	display: inline-block;
	height: 48px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 48px;
}

.pagination .prev:before,
.pagination .next:before {
	font-size: 32px;
	height: 48px;
	line-height: 48px;
	position: relative;
	width: 48px;
}

.pagination .prev:hover,
.pagination .prev:focus,
.pagination .next:hover,
.pagination .next:focus {
	background-color: #0074b8;
	color: #fff;
}

.pagination .prev:focus,
.pagination .next:focus {
	outline: 0;
}

.pagination .prev {
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	left: 0;
}

.pagination .prev:before {
	content: "\f430";
	left: -1px;
}

.pagination .next {
	border-left: 1px solid rgba(0, 0, 0, 0.1);
	right: 0;
}

.pagination .next:before {
	content: "\f429";
	right: -1px;
}

.image-navigation,
.comment-navigation {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 0.1);
	font-size: 12px;
	font-size: 0.75rem;
	font-family: Lato, sans-serif;
	line-height: 1.5;
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923% 24px;
	*/
	margin: 0 3.125% 24px;
	padding: 12px 0;
}

.comment-navigation {
	margin: 0;
}

.image-navigation .nav-previous:not(:empty),
.image-navigation .nav-next:not(:empty),
.comment-navigation .nav-previous:not(:empty),
.comment-navigation .nav-next:not(:empty) {
	display: inline-block;
}

.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
	content: "\2215";
	font-weight: 400;
	margin: 0 6px;
}

.comments-title + .comment-navigation {
	border-bottom: 0;
}


/**
 * 8.0 Accessibility
 */

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

/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
	background-color: #f1f1f1;
	box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
	color: #21759b;
	display: block;
	font: bold 14px/normal Lato, sans-serif;
	left: -9999em;
	outline: none;
	padding: 15px 23px 14px;
	text-decoration: none;
	text-transform: none;
	top: -9999em;
}

.logged-in .site .skip-link {
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	font: bold 14px/normal "Open Sans", sans-serif;
}

.site .skip-link:focus {
	clip: auto;
	height: auto;
	left: 6px;
	top: 7px;
	width: auto;
	z-index: 100000;
}


/**
 * 9.0 Alignments
 */

.alignleft {
	display: inline;
	float: left;
	margin: 4px 24px 24px 0;
}

.alignright {
	display: inline;
	float: right;
	margin: 4px 0 24px 24px;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 24px;
}

/**
 * 10.0 Clearings
 */

.clear:before,
.clear:after,
.site-header:before,
.site-header:after,
.site-branding:before,
.site-branding:after,
.site-navigation:before,
.site-navigation:after,
.site-header .nav-menu:before,
.site-header .nav-menu:after,
.hentry:before,
.hentry:after,
.entry-content:before,
.entry-content:after,
.entry-summary:before,
.entry-summary:after,
.entry-content-footer:before,
.entry-content-footer:after,
.comment-content:before,
.comment-content:after,
.site-content:before,
.site-content:after,
.nav-links:before,
.nav-links:after,
.comment-navigation:before,
.comment-navigation:after,
.social-navigation ul:before,
.social-navigation ul:after,
.textwidget:before,
.textwidget:after {
	content: "";
	display: table;
}

.clear:after,
.site-branding:after,
.site-header:after,
.site-navigation:after,
.site-header .nav-menu:after,
.hentry:after,
.entry-content:after,
.entry-summary:after,
.entry-content-footer:after,
.comment-content:after,
.site-content:after,
.nav-links:after,
.comment-navigation:after,
.social-navigation ul:after,
.textwidget:after {
	clear: both;
}


/**
 * 11.0 Widgets
 */

.widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	/* maxlee changed to 3.125% */
	/*
	margin: 7.6923%;
	*/
	margin: 3.125%;
	word-wrap: break-word;
}

.widget-title {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.2;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.widget > :last-child {
	margin-bottom: 0;
}

/* Calendar widget */
.widget_calendar table {
	margin: 0;
}

.widget_calendar td,
.widget_calendar th {
	line-height: 3.2;
	text-align: center;
	padding: 0;
}

.widget_calendar caption {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: Lato, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.widget_calendar tbody a {
	background-color: #232323;
	color: #fff;
	display: block;
	font-weight: 700;
}

.widget_calendar tbody a:hover,
.widget_calendar tbody a:focus {
	background-color: #0074b8;
	color: #fff;
}

/* List type widget */
.widget_archive ul,
.widget_categories ul,
.widget_links ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_recent_entries ul {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
}

.widget_archive ul ul,
.widget_categories ul ul,
.widget_links ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_recent_comments ul ul,
.widget_recent_entries ul ul {
	border-bottom: 0;
	margin: 12px 0 0 12px;
}

.widget_archive li,
.widget_categories li,
.widget_links li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages li,
.widget_recent_comments li,
.widget_recent_entries li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

.widget_archive li li:last-child,
.widget_categories li li:last-child,
.widget_links li li:last-child,
.widget_meta li li:last-child,
.widget_nav_menu li li:last-child,
.widget_pages li li:last-child,
.widget_recent_comments li li:last-child,
.widget_recent_entries li li:last-child {
	padding-bottom: 0;
}

/* Recent Posts widget */
.widget_recent_entries .post-date {
	color: #5b5b5b;
	display: block;
	font-family: Lato, sans-serif;
}

/* RSS widget */
.widget_rss ul {
	list-style: none;
	margin: 0;
}

.widget_rss li {
	margin-bottom: 24px;
}

.widget_rss li:last-child {
	margin-bottom: 0;
}

.widget_rss .rsswidget {
	font-weight: 700;
}

.widget_rss .rsswidget img {
	margin-top: -5px;
}

.widget_rss .rss-date,
.widget_rss cite {
	font-size: 12px;
	font-size: 0.75rem;
	font-family: Lato, sans-serif;
	font-style: normal;
	display: block;
	line-height: 2;
	opacity: 0.7;
}

/* Text Widget */
.textwidget > :last-child {
	margin-bottom: 0;
}


/**
 * 12.0 Site
 */

.site {
	overflow: hidden;
}

.content-area {
	margin: 0 auto;
	max-width: 1088px;
}

.sidebar-open .content-area {
	display: none;
}

.site-main {
	border-bottom: 1px solid transparent;
}

.sidebar {
	background-color: #fff;
	display: none;
	height: 100%;
	position: absolute;
	right: 100%;
	/* maxlee commented out due to error */
	/*
	-webkit-transform: translateZ(0);
	*/
	top: 0;
	width: 100%;
}

.sidebar:before {
	background-color: rgba(0, 0, 0,0.03);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.sidebar-open .sidebar {
	display: block;
	position: relative;
	right: 0;
	z-index: 1000;
}

.no-js .sidebar {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	display: block;
	height: auto;
	position: relative;
	top: auto;
	right: auto;
}

.sidebar-inner {
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	margin: 0 auto;
	max-width: 1088px;
}


/**
 * 12.1 Header
 */

.site-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	/* maxlee changed to 3.125% */
	/*
	padding: 7.6923%;
	*/
	padding: 3.125%;

	padding: 5.40865%;

	position: relative;
	width: 100%;
}

.site-branding {
	float: left;
	max-width: -webkit-calc(100% - 48px);
	max-width: calc(100% - 48px);
}

.site-title {
	font-family: Lato, sans-serif;
	font-size: 22px;
	font-size: 1.375rem;
	font-weight: 900;
	line-height: 1.36364;
	margin: 0;
}

.site-title a {
	color: #232323;
	text-decoration:none; /* maxlee added */
}

.site-title a:hover,
.site-title a:focus {
	opacity: 0.7;
}

.site-description {
	display: none;
	font-family: "Libre Baskerville", georgia, serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
	opacity: 0.7;
}

.site-title + .site-description {
	margin-top: 4px;
}

.header-image a {
	display: block;
}

.header-image a:focus img {
	opacity: 0.85;
}

.header-image img {
	width: 100%;
	height: auto;
}

.site-navigation {
	float: right;
}


/**
 * 12.2 Posts and pages
 */

.hentry {
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	*/
	margin: 0 3.125%;
	padding: 3.125% 0;
	position: relative;
}

.hentry + .hentry {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hentry + .hentry.sticky.has-post-thumbnail,
.hentry.sticky.has-post-thumbnail + .hentry.sticky:not(.has-post-thumbnail),
.hentry.sticky.has-post-thumbnail + .hentry:not(.sticky) {
	border-top: 0;
}

.post-thumbnail {
	display: block;
	float: right;
	margin: 36px 0 12px 4.54029457%;
	width: 22.72417674%;
}

.attachment-post-thumbnail {
	border-radius: 2px;
}

.post-thumbnail:hover,
.post-thumbnail:focus {
	opacity: 0.85;
}

.post-thumbnail:focus {
	outline: none;
}

div.entry-date a {
	color: #5b5b5b;
}

div.entry-date a:hover,
div.entry-date a:focus {
	color: #0074b8;
}

div.entry-date + .entry-header,
div.entry-date + .entry-title {
	margin-top: 6px;
}

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

.sticky .posted-on {
	display: none;
}

.entry-summary {
	color: #5b5b5b;
}

.entry-summary > :last-child {
	margin-bottom: 0;
}

.entry-summary {
	margin-top: 12px;
}

.entry-summary img {
	display: none;
}

.entry-title {
	clear: none;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0;
}

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

.entry-title a:hover,
.entry-title a:focus {
	/*
	color: #0074b8;
	*/
	color:#ff0000; /* maxlee use red color for hover */
}

.entry-content-footer {
	/* maxlee changed to 3.125% */
	/*
	margin-top: 7.6923%;
	*/
	margin-top: 3.125%;
}

.entry-content {
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	*/
	margin: 0 3.125%;

	margin: 0 5.40865%;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content,
.entry-summary,
.page-content,
.comment-content,
.textwidget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.entry-summary h1,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6,
.textwidget h1,
.textwidget h2,
.textwidget h3,
.textwidget h4,
.textwidget h5,
.textwidget h6 {
	/* maxlee reset the margin top to 24px */
	/*
	margin-top: 48px;
	*/
	margin-top: 24px; 
	margin-bottom: 24px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child,
.entry-content h4:first-child,
.entry-content h5:first-child,
.entry-content h6:first-child,
.entry-summary h1:first-child,
.entry-summary h2:first-child,
.entry-summary h3:first-child,
.entry-summary h4:first-child,
.entry-summary h5:first-child,
.entry-summary h6:first-child,
.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child,
.page-content h4:first-child,
.page-content h5:first-child,
.page-content h6:first-child,
.comment-content h1:first-child,
.comment-content h2:first-child,
.comment-content h3:first-child,
.comment-content h4:first-child,
.comment-content h5:first-child,
.comment-content h6:first-child,
.textwidget h1:first-child,
.textwidget h2:first-child,
.textwidget h3:first-child,
.textwidget h4:first-child,
.textwidget h5:first-child,
.textwidget h6:first-child {
	margin-top: 0;
}

.entry-content h1,
.entry-summary h1,
.page-content h1,
.comment-content h1,
.textwidget h1 {
	font-size: 26px;
	font-size: 1.625rem;
	line-height: 1.38462;
}

.entry-content h2,
.entry-summary h2,
.page-content h2,
.comment-content h2,
.textwidget h2 {
	/*maxlee changed to 31px 2.25rem 1.29032 */
	/*
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	*/
	font-size: 32px;
	font-size: 2.4rem;
	line-height: 1.29032;		
}

.entry-content h3,
.entry-summary h3,
.page-content h3,
.comment-content h3,
.textwidget h3 {
	/* maxlee changed to 26px 1.8rem 1.23077 */
	/*
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
	*/
	font-size: 24px;
	font-size: 1.7rem; 
	line-height: 1.23077;
	font-weight: 900;	
	/*
	font-family: 'Helvetica', 'Tahoma', 'Arial', 'sans-serif';
	color: #116530;
	border-left: 8px solid #f77f00;
	padding-left:20px;
	*/
}

.entry-content h4,
.entry-summary h4,
.page-content h4,
.comment-content h4,
.textwidget h4 {
	/* maxlee changed to 22px 1.375rem 27273 */
	/*
	font-size: 20px;
	font-size: 1.35rem;
	line-height: 1.33333;
	*/
	font-size: 22px;
	font-size: 1.5rem;
	line-height: 1.27273;
	font-weight: 900;	
	/*
	font-family: 'Helvetica', 'Tahoma', 'Arial', 'sans-serif';
	color: #18A558;		
	border-left: 6px solid #2a9d8f;
	padding-left:16px;
	*/
}

.entry-content h5,
.entry-summary h5,
.page-content h5,
.comment-content h5,
.textwidget h5 {
	/* maxlee changed to 18px 1.25rem 1.3333 */
	/*
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.2;
	*/
	font-size: 20px;
	font-size: 1.4rem;
	line-height: 1.33333;
	font-weight: 900;	
	/*
	font-family: 'Helvetica', 'Tahoma', 'Arial', 'sans-serif';
	color: #59981A;
	color: #76B947;	
	border-left: 6px solid #219ebc;
	padding-left:16px;
	*/
}

.entry-content h6,
.entry-summary h6,
.page-content h6,
.comment-content h6,
.textwidget h6 {
	/*
	font-style: italic;
	font-weight: 400;
	*/
	font-size: 18px;
	font-size: 1.2rem;
	line-height: 1.27273;
	font-weight: 900;	
}

.entry-summary h1,
.entry-summary h2,
.entry-summary h3,
.entry-summary h4,
.entry-summary h5,
.entry-summary h6 {
	clear: none;
}

.entry-content a img,
.entry-summary a img,
.page-content a img,
.comment-content a img {
	/* maxlee commented out the following line to enable picture besides text */
	/*
	display: block;
	*/
	/*maxlee added this line to center image */
	margin:auto; 
}

.entry-content .more-link,
.entry-summary .more-link {
	white-space: nowrap;
}

.entry-content blockquote.alignleft,
.entry-content blockquote.alignright {
	border-color: currentColor;
	border-style: solid;
	border-width: 4px 0 4px 0;
	padding: 20px 0;
	width: 50%;
}

.entry-footer {
	color: #5b5b5b;
	/* maxlee changed to 3.125% */
	/*
	margin: 24px 7.6923% 0;
	*/
	margin: 24px 3.125% 0;

	margin: 24px 5.40865% 0;
}

/* maxlee comment out to use default color */
/*
.entry-footer a {
	color: #0074b8;
}
*/

.entry-footer a:hover,
.entry-footer a:focus {
	/* maxlee changed to red color when hover */
	/*
	color: #0074b8;
	*/
	color: #ff0000; 
}

.author-info {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
	margin: 24px 0 21px;
	padding: 24px 0;
}

.author-info .avatar {
	float: left;
	height: 48px;
	margin: 0 24px 24px 0;
	width: 48px;
}

.author-heading {
	clear: none;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin: 0;
	text-transform: uppercase;
}

.author-title {
	clear: none;
	color: #232323;
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.author-bio {
	overflow: hidden;
}

.author-bio a {
	color: #0074b8;
}

.author-description {
	font-family: Lato, sans-serif;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.author-description > :last-child {
	margin-bottom: 0;
}

.author-link {
	white-space: nowrap;
}

.sticky-post,
.posted-on,
.cat-links,
.tags-links,
.comments-link,
.edit-link,
.full-size-link {
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.cat-links,
.tags-links,
.comments-link,
.edit-link,
.full-size-link {
	display: block;
	padding: 3px 0 3px 19px;
	position: relative;
}

.cat-links:before,
.tags-links:before,
.comments-link:before,
.edit-link:before,
.full-size-link:before {
	position: absolute;
	top: 3px;
	left: 0;
}

.cat-links:before {	
	content: "\f301"; 
	font: normal 20px/1 'Genericons';
	display: inline-block;
	color:#0077b6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.tags-links:before {
	content: "\f302";
	font: normal 20px/1 'Genericons';
	color:#0077b6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.comments-link:before {
	content: "\f300";
}

.full-size-link:before {
	content: "\f402";
}

.edit-link:before {
	content: "\f411";
}

.page-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	*/
	margin: 0 3.125%;
	padding: 3.125% 0;
}

.page-title {
	font-size: 26px;
	font-size: 1.625rem;
	line-height: 1.38462;
	margin: 0;
}

.taxonomy-description {
	color: #5b5b5b;
	margin-top: 6px;
}

.taxonomy-description > :last-child {
	margin-bottom: 0;
}

.page-content {
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	*/
	margin: 0 3.125%;
	padding: 3.125% 0;
}

.page-content > :last-child {
	margin-bottom: 0;
}

.page-links {
	clear: both;
	font-family: Lato, sans-serif;
	margin: 0 0 24px;
}

.page-links a,
.page-links > span {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	display: inline-block;
	font-size: 12px;
	font-size: 0.75rem;
	height: 24px;
	line-height: 23px;
	margin: 0 4px 4px 0;
	text-align: center;
	width: 24px;
}

.page-links a {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
	background-color: #232323;
	border-color: #232323;
	color: #fff;
}

.page-links a:hover,
.page-links a:focus {
	background-color: #0074b8;
	border-color: transparent;
	color: #fff;
}

.page-links > .page-links-title {
	border: 0;
	color: #232323;
	height: auto;
	margin: 0;
	padding-right: 19px;
	width: auto;
}

.sticky-post {
	font-weight: 700;
	text-transform: uppercase;
}

.single .hentry,
.sticky.hentry.has-post-thumbnail {
	margin: 0;
	/* maxlee changed to 3.125% */
	/*
	padding: 7.6923% 0;
	*/
	padding: 3.125% 0;
}

.sticky.hentry.has-post-thumbnail {
	padding: 0;
}

.single .hentry.has-post-thumbnail {
	padding-top: 0;
}

.entry-header-background {
	background-color: #232323;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	/* maxlee commented out due to error 25/12/2021 */
	/*
	-moz-background-size: cover;
	*/
	background-size: cover;
	min-width: 100%;
	overflow: hidden;
	position: relative;
}

.no-js .entry-header-background {
	padding-top: 75%;
}

.entry-header-wrapper {
	background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
	background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.4));
	background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

.single .entry-header,
.sticky .entry-header {
	margin: 0 auto;
	max-width: 1088px;
}

.single .has-post-thumbnail .entry-header {
	-webkit-animation: moveUp .5s ease both;
	animation: moveUp .5s ease both;
	/*
	-webkit-transform: translateZ(0);
	*/
}

.single .has-post-thumbnail .entry-header.scrolled {
	-webkit-animation: moveDown .5s ease both;
	animation: moveDown .5s ease both;
	/*
	-webkit-transform: translateZ(0);
	*/
}

.single .entry-header-inner,
.sticky.has-post-thumbnail .entry-header-inner {
	/* maxlee changed to 3.125% */
	/*
	padding: 0 7.6923%;
	*/
	padding: 0 3.125%;

	padding: 0 5.40865%;
}

.single .has-post-thumbnail .entry-header-inner {
	/* maxlee changed to 3.125% */
	/*
	padding-top: 7.6923%;
	*/
	padding-top: 3.125%;
	padding-bottom: 3.84615%;
}

.sticky.has-post-thumbnail .entry-header-inner {
	/* maxlee changed to 3.125% */
	/*
	padding-bottom: 7.6923%;
	*/
	padding-bottom: 3.125%;
}

.single .entry-title,
.sticky .entry-title {
	font-size: 26px;
	/* maxlee changed to 2.2rem */
	/*
	font-size: 1.625rem;
	*/
	font-size: 2.2rem; 
	line-height: 1.38462;
	margin-right: 0;
}

.entry-header-background div.entry-date a,
.entry-header-background .sticky-post,
.entry-header-background .entry-title,
.entry-header-background .entry-title a {
	color: #fff;
}

.entry-header-background div.entry-date a:hover,
.entry-header-background div.entry-date a:focus,
.entry-header-background .entry-title a:hover,
.entry-header-background .entry-title a:focus {
	opacity: 0.85;
}

.scroll-indicator-wrapper {
	height: 24px;
	margin-bottom: 3.84615%;
	position: relative;
}

.scroll-indicator {
	-webkit-animation: opacityUp .5s ease both;
	animation: opacityUp .5s ease both;
	bottom: 0;
	display: block;
	height: 24px;
	left: 50%;
	position: absolute;
	width: 48px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}

.scroll-indicator.scrolled {
	-webkit-animation: opacityDown .5s ease both;
	animation: opacityDown .5s ease both;
}

.scroll-indicator:before,
.scroll-indicator:after {
	content: '';
	width: 34px;
	height: 2px;
	background-color: #fff;
	position: absolute;
}

.scroll-indicator:before {
	left: -5px;
	top: 11px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.scroll-indicator:after {
	left: 19px;
	top: 11px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.scroll-indicator:hover:before,
.scroll-indicator:hover:after {
	opacity: 0.75;
}

.scroll-indicator:focus {
	outline: dotted thin #fff;
}

.attachment .entry-header {
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	*/
	margin: 0 3.125%;
}

.entry-attachment {
	margin-bottom: 24px;
}

.type-attachment .entry-title {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	word-wrap: break-word;
}

.entry-caption {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	line-height: 1.5;
	padding-top: 6px;
	word-wrap: break-word;
}

.entry-caption > :last-child {
	margin-bottom: 0;
}


/**
 * 12.3 Comments
 */

.comments-area {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	*/
	margin: 0 3.125%;
	padding: 3.125% 0;
}

.comments-area > :last-child {
	margin-bottom: 0;
}

.comment-list + .comment-respond {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
	padding-top: 24px;
}

.comments-title,
.comment-reply-title {
	font-family: "Lato", "Playfair Display", georgia, serif;
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0;
}

.comments-title {
	margin-bottom: 24px;
}

.comment-list {
	list-style: none;
	margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	padding: 24px 0;
}

.comments-title + .comment-list > li:first-child > article,
.comments-title + .comment-list > li:first-child > .pingback,
.comments-title + .comment-list > li:first-child > .trackback {
	border-top: 0;
	padding-top: 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
}

.comment-list .children > li {
	padding-left: 12px;
}

.comment-author {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	margin-bottom: 6px;
}

.comment-author .avatar {
	float: left;
	height: 24px;
	margin-right: 12px;
	position: relative;
	width: 24px;
}

.bypostauthor > article .fn:after {
	content: "\f304";
	position: relative;
	top: 4px;
	left: 3px;
}

.comment-metadata,
.pingback .edit-link {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.comment-metadata a {
	color: #5b5b5b;
}

.comment-metadata .comment-edit-link {
	color: #0074b8;
}

.comment-metadata {
	margin-bottom: 24px;
}

.comment-metadata .edit-link,
.pingback .edit-link {
	display: inline-block;
	margin-left: 6px;
}

.pingback .edit-link:before {
	top: 3px;
}

.comment-content ul,
.comment-content ol {
	margin: 0 0 24px 20px;
}

.comment-content li > ul,
.comment-content li > ol {
	margin-bottom: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.comment-list .reply {
	font-size: 12px;
	font-size: 0.75rem;
}

.comment-list .reply a {
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #5b5b5b;
	display: inline-block;
	font-family: Lato, sans-serif;
	line-height: 1;
	margin-top: 24px;
	padding: 6px 12px 5px;
	text-transform: uppercase;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
	border-color: currentColor;
	color: #0074b8;
	outline: 0;
}

.comment-form {
	padding-top: 24px;
}

.comment-form label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="submit"] {
	width: 100%;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	margin-bottom: 24px;
}

.no-comments {
	border-top: 1px dotted rgba(0, 0, 0, 0.1);
	color: #232323;
	font-weight: 700;
	margin: 0;
	padding-top: 24px;
}

.comment-navigation + .no-comments {
	border-top: 0;
}

.form-allowed-tags code {
	font-family: Inconsolata, monospace;
}

.form-submit {
	margin-bottom: 0;
}

.required {
	color: #c0392b;
}

.comment-reply-title small {
	font-size: 100%;
}

.comment-reply-title small a {
	border: 0;
	float: right;
	height: 32px;
	overflow: hidden;
	width: 26px;
}

.comment-reply-title small a:before {
	content: "\f405";
	font-size: 32px;
	position: relative;
	top: -3px;
}


/**
 * 12.4 Footer
 */

.site-footer {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	/* maxlee changed to 3.125% */
	/*
	padding: 3.84615% 7.6923%;
	*/
	padding: 3.84615% 3.125%;

	padding: 3.84615% 2.1635%;

}

.sidebar-open .site-footer {
	display: none;
}

.site-info {
	color: #5b5b5b;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.site-info a {
	color: #5b5b5b;
}

.site-info a:hover,
.site-info a:focus {
	color: #0074b8;
}


/**
 * 13.0 Media
 */

.site .avatar {
	border-radius: 50%;
}

.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,
video {
	margin-bottom: 24px;
	max-width: 100%;
	vertical-align: middle;
}

p > embed,
p > iframe,
p > object,
p > video {
	margin-bottom: 0;
}

.entry-content .mejs-container .mejs-controls .mejs-time {
	padding-top: 11px;
}

.wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
	margin-top: 0;
	margin-bottom: 24px;
}

.wp-playlist.wp-playlist {
	padding-bottom: 0;
}

.wp-playlist .wp-playlist-tracks {
	margin-top: 0;
}

.wp-playlist-item .wp-playlist-caption {
	border-bottom: 0;
	padding: 10px 0;
}

.wp-playlist-item .wp-playlist-item-length {
	top: 10px;
}

.hentry .latex {
	margin: 0;
	max-width: 100%
}


/**
 * 13.1 Captions
 */

.wp-caption {
	margin-bottom: 24px;
	max-width: 100%;
}

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

.wp-caption-text {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	padding: 6px 0 0;
	/* maxlee added to center picture caption text */
	text-align:center; 
}


/**
 * 13.2 Galleries
 */

.gallery {
	margin-bottom: 24px;
}

.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	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-icon img {
	margin: 0 auto;
}

.gallery-caption {
	color: #5b5b5b;
	display: block;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	padding: 6px 0 0;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/**
 * 14.0 Multisite
 */

.widecolumn {
	/* maxlee changed to 3.125% */
	/*
	padding: 7.6923%;
	*/
	padding: 3.125%;
}

.widecolumn .mu_register {
	width: auto;
}

.widecolumn .mu_alert {
	margin-bottom: 24px;
}

.widecolumn form,
.widecolumn .mu_register form {
	margin-top: 0;
}

.widecolumn h2 {
	font-size: 22px;
	font-size: 1.375rem;
	line-height: 1.36364;
	margin: 0 0 24px;
}

.widecolumn p {
	margin: 24px 0;
}

.widecolumn p + h2 {
	margin-top: 48px;
}

.widecolumn label,
.widecolumn .mu_register label {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-transform: uppercase;
}

.widecolumn .mu_register label {
	margin: 24px 0 0;
}

.widecolumn #key,
.widecolumn .mu_register #blog_title,
.widecolumn .mu_register #user_email,
.widecolumn .mu_register #blogname,
.widecolumn .mu_register #user_name {
	font-size: 16px;
	font-size: 1rem;
	width: 100%;
}

.widecolumn .mu_register #blogname {
	margin: 0;
}

.widecolumn .mu_register #blog_title,
.widecolumn .mu_register #user_email,
.widecolumn .mu_register #user_name {
	margin: 0 0 6px;
}

.widecolumn #submit,
.widecolumn .mu_register input[type="submit"] {
	font-size: 12px;
	font-size: 0.75rem;
	margin: 0;
	width: 100%;
}

.widecolumn .mu_register .prefix_address,
.widecolumn .mu_register .suffix_address {
	font-size: inherit;
}

.widecolumn .mu_register > :last-child,
.widecolumn form > :last-child {
	margin-bottom: 0;
}


/**
 * 15.0 Jetpack
 */

/**
 * 15.1 Infinite Scroll
 */

.infinite-scroll .pagination,
.infinite-scroll.neverending .site-footer,
.sidebar-open.infinity-end.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

.infinite-wrap .hentry:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Spinner */
.infinite-loader {
	clear: both;
	height: 24px;
	/* maxlee changed to 3.125% */
	/*
	margin: 7.6923% 0;
	*/
	margin: 3.125% 0;
}

.infinite-loader .spinner {
	top: 50% !important;
	left: 50% !important;
}

/* Click-to-load */
#infinite-handle {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	clear: both;
	/* maxlee changed to 3.125% */
	/*
	margin: 0 7.6923%;
	padding: 7.6923% 0;
	*/
	margin: 0 3.125%;
	padding: 3.125% 0;
	text-align: center;
}

#infinite-handle span {
	background-color: #232323;
	border-radius: 2px;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	padding: 11px 16px 9px;
	text-transform: uppercase;
}

#infinite-handle span:hover,
#infinite-handle span:focus {
	background-color: #0074b8;
	color: #fff;
}

/* Footer */
#infinite-footer {
	display: none;
	z-index: 999;
}

#infinite-footer .container {
	background-color: rgba(255, 255, 255, 0.95);
	border-color: rgba(0, 0, 0, 0.1);
	padding: 0 32px;
	width: 100% !important;
}

#infinite-footer .blog-info,
#infinite-footer .blog-credits {
	height: 48px;
	line-height: 48px;
}

#infinite-footer .blog-info a:hover,
#infinite-footer .blog-info a:focus,
#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-credits a:focus {
	text-decoration: none;
}

#infinite-footer .blog-info {
	font-family: Lato, sans-serif;
}

#infinite-footer .blog-info a {
	color: #232323;
	font-size: 15px;
	font-size: 0.9375rem;
	font-weight: 900;
}

#infinite-footer .blog-info a:hover,
#infinite-footer .blog-info a:focus {
	opacity: 0.7;
}

#infinite-footer .blog-credits {
	font-size: 13px;
	font-size: 0.8125rem;
}

#infinite-footer .blog-credits a {
	color: #5b5b5b;
}

#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-credits a:focus {
	color: #0074b8;
}


/**
 * 15.2 Extra Widgets
 */

/* Blog Subscriptions Widget */
.jetpack_subscription_widget #subscribe-email input {
	padding: 3px 6px;
	width: 100%;
}

.jetpack_subscription_widget form > :last-child {
	margin-bottom: 0;
}

/* Display WordPress Posts Widget */
.widget_jetpack_display_posts_widget .jetpack-display-remote-posts {
	margin: 0;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
	margin: 0 0 24px;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
	margin: 0 0 24px;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
	font-size: inherit;
	line-height: 1.6 !important;
	margin: 0 0 24px !important;
}

.widget_jetpack_display_posts_widget .jetpack-display-remote-posts > :last-child {
	margin-bottom: 0 !important;
}

/* Gallery Widget */
.widget-gallery .slideshow-window {
	border-radius: 0;
}

/* Goodreads Widget */
.widget_goodreads div[class^="gr_custom_container"] {
	background-color: transparent;
	border: 0;
	border-radius: 0;
	color: inherit;
	padding: 0;
}

.widget_goodreads div[class^="gr_custom_container"] a {
	color: inherit;
}

.widget_goodreads  div[class^="gr_custom_each_container"] {
	border: 0;
	margin-bottom: 0;
}

/* Gravatar Profile Widget */
.widget-grofile .grofile-thumbnail {
	border-radius: 50%;
	max-width: 200px;
}

.widget-area .widget-grofile h4 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.33333;
	margin: 24px 0 0;
}

.widget-area .widget-grofile .grofile-accounts {
	margin-top: 12px;
}

/* Image Widget */
.widget_image .wp-caption {
	margin-bottom: 0;
}

/* RSS Links Widget */
.widget_rss_links img {
	position: relative;
	top: -3px;
}

/* Top Posts & Pages Widget */
.widget_top-posts .widgets-list-layout .widgets-list-layout-blavatar {
	border-radius: 50%;
	margin-right: 12px;
	max-width: 48px;
}

.widget_top-posts .widgets-list-layout-links {
	width: auto;
	float: left;
	padding-top: 12px;
}

.widget_top-posts .widgets-list-layout li {
	margin-bottom: 0;
}

/* List type widgets */
.widget_rss_links ul,
.widget_top-posts ul,
.widget_upcoming_events_widget ul {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
}

.widget_rss_links ul ul,
.widget_top-posts ul ul,
.widget_upcoming_events_widget ul ul {
	border-bottom: 0;
	margin: 12px 0 0 12px;
}

.widget_rss_links li,
.widget_top-posts li,
.widget_upcoming_events_widget li {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 12px 0;
}

.widget_rss_links li li:last-child,
.widget_top-posts li li:last-child,
.widget_upcoming_events_widget li li:last-child {
	padding-bottom: 0;
}


/**
 * 15.3 Shortcodes
 */

/* Facebook */
.fb_iframe_widget {
	margin-bottom: 24px;
	max-width: 100%;
}

.fb_iframe_widget span {
	max-width: 100%;
}

/* Gist */
.gist table {
	table-layout: auto;
}

.site .gist .gist-file {
	margin-bottom: 24px;
}

/* Instagram */
.instagram-media {
	margin-bottom: 24px !important;
}

/* Polldaddy */
.PDS_Poll {
	display: block !important;
	margin-bottom: 24px;
}

.PDS_Poll .pds-box {
	max-width: 100%;
	width: auto;
}

/* Portfolio */
.site .portfolio-entry {
	margin-bottom: 48px;
}

.site .portfolio-featured-image + .portfolio-entry-title {
	margin: 12px 0 0;
}

.site .portfolio-entry-title a {
	color: #232323;
}

.site .portfolio-entry-meta {
	font-family: Lato, sans-serif;
}

.site .portfolio-entry-title a,
.site .portfolio-entry-meta a {
	background-image: none;
	text-shadow: none;
}

.site .portfolio-entry-title + .portfolio-entry-meta {
	margin-top: 6px;
}

.site .portfolio-entry-meta span,
.site .portfolio-entry-meta a {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.site .portfolio-entry-content {
	margin-top: 12px;
}

/* Presentation */
.site .presentation-wrapper {
	margin: 0 0 24px;
}

/* Recipes */
.site .jetpack-recipe {
	border: 0;
	margin: 0 0 24px;
	padding: 0;
}

.site .jetpack-recipe-title {
	border: 0;
	margin-top: 0;
	padding: 0;
}

.site .jetpack-recipe .jetpack-recipe-meta {
	font-size: inherit;
	margin: 0;
}

/* Slideshow */
.site .slideshow-window {
	border-radius: 0;
	margin-bottom: 24px;
}

/* Spotify */
iframe[src^="https://embed.spotify.com"] {
	margin: 0 0 24px !important;
}

/* Subscription */
.hentry .jetpack_subscription_widget {
	margin-bottom: 24px;
}

/* Twitter-timeline */
iframe[id*="twitter-widget-"] {
	display: block;
	margin-bottom: 24px !important;
}

/* Vine */
.vine-embed {
	display: block;
}

/* VideoPress */
.site .video-player {
	height: auto !important;
	margin: 0 0 24px;
	padding: 0;
}

.video-player object {
	margin-bottom: 0;
}


/**
 * 15.4 Tiled gallery
 */

.site .tiled-gallery {
	margin-bottom: 24px;
}


/**
 * 15.5 Responsive Videos
 */

.jetpack-video-wrapper {
	margin-bottom: 24px;
}

.jetpack-video-wrapper > embed,
.jetpack-video-wrapper > iframe,
.jetpack-video-wrapper > object,
.jetpack-video-wrapper > .wp-video {
	margin-bottom: 0;
}


/**
 * 15.6 Jetpack Comments
 */

.comment-form iframe {
	margin: 0;
}


/**
 * 15.7 Sharing
 */

.hentry div.sharedaddy h3.sd-title,
.hentry h3.sd-title {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 1em;
	text-transform: uppercase;
}

.entry-summary .sharedaddy {
	display: none !important;
}


/**
 * 15.8 Related Posts
 */

.hentry #jp-relatedposts {
	margin: 0;
	padding-top: 0;
}

.hentry div#jp-relatedposts h3.jp-relatedposts-headline {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.hentry div#jp-relatedposts h3.jp-relatedposts-headline em:before {
	border-color: rgba(0, 0, 0, 0.1);
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
	margin-bottom: 24px;
	width: 100%;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-child {
	margin-bottom: 0;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post {
	opacity: 1;
	padding-right: 0;
}

.entry-content .jp-relatedposts-post-a {
	background-image: none;
	text-shadow: none;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post span {
	max-width: 100%;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items p {
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
}

.hentry .jp-relatedposts-post-img {
	margin-bottom: 6px;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
.hentry .jp-relatedposts-post-title {
	font-family: "Lato", "Playfair Display", georgia, serif;
	font-size: 15px;
	font-size: 0.9375rem;
	letter-spacing: 0;
	line-height: 1.6;
	font-weight: 700;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
	font-weight: inherit;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover .jp-relatedposts-post-title a,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
	text-decoration: none;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items-visual div.jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
	color: #5b5b5b;
}

.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date,
.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context {
	color: #5b5b5b;
	font-family: Lato, sans-serif;
	opacity: 1;
}


/**
 * 15.9 Site Logo
 */

.site-logo-link {
	display: block;
	max-width: 192px;
}

.site-logo {
	max-height: 48px;
	width: auto;
}

.has-site-logo .site-title {
	margin-top: 12px;
}

/**
 * 15.10 Stats
 */

#wpstats {
	display: none;
}

/**
 * 17.0 MaxLee CSS 
*/

.divider {
	display: table;
	font-size: 24px;
	font-weight: 900;
	text-align: center; 
	width: 100%;
	margin: 40px auto;
}
.divider span { display: table-cell; position: relative; }
.divider span:first-child, .divider span:last-child {
	width: 50%;
	top: 20px;
	-moz-background-size: 100% 2px; 	/* line width */
	background-size: 100% 2px; 			/* line width */
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.divider span:first-child {				
	/* color changes in here */
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#000));
	background-image: -webkit-linear-gradient(180deg, transparent, #000);
	background-image: -moz-linear-gradient(180deg, transparent, #000);
	background-image: -o-linear-gradient(180deg, transparent, #000);
	background-image: linear-gradient(90deg, transparent, #000);	
}
.divider span:nth-child(2) {
	color: #000; 
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.divider span:last-child {
	/* color changes in here */
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#000), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #000, transparent);
	background-image: -moz-linear-gradient(180deg, #000, transparent);
	background-image: -o-linear-gradient(180deg, #000, transparent);
	background-image: linear-gradient(90deg, #000, transparent);
}
.nav4Box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
	margin-bottom:36px;
}

.nav3Box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
	margin-bottom:28px;
}

.box-item {
    border: 1px solid #dddddd;
    padding: 6px 6px;
    border-radius: 6px;
    font-size:0.7em;
    text-align: center;
	line-height: 18px;
	position: relative;
}
.box-item a { 
	text-decoration: none; 
	line-height: 1.2;
}

.nav4Circle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 12px;
	margin-bottom:36px;
}

.circle-item {
    border: 2px solid #ccc;
    padding: 6px 6px;
    border-radius: 8px;
    font-size:0.7em;
    text-align: center;
	line-height: 18px;
	position: relative;
}
.circle-item a { 
	text-decoration: none; 
	line-height: 18px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.colorGreen  { background:rgb(188, 255, 167); }
.colorGreen2 { background:#a5ffd6;}
.colorRed    { background:#ffafcc; }
.colorRed2   { background:#ff758f; }
.colorGrey   { background:#EEEEEE; }
.colorGrey2  { background:#eae4e9;}
.colorYellow { background:rgb(255, 255, 153); }
.colorYellow2 {background:#fff6cc;}
.colorBrown { background: #F0CCB0; }
.colorBrown2 { background:#E5B990; }
.colorPink  { background: #fae0e4;}
.colorPink2 { background: #f9bec7;}
.colorOrange { background:#fee9c7;}
.colorOrange2{ background:#fcd390;}
.colorPurple { background:#EFDCF9; }
.colorPurple2 {background:#deaaff;}
.colorBlue   { background:#C8F4F9; }
.colorBlue2  { background:#a1d1ff;}
.colorViolat2 {background:#edf2fb;}
.colorViolat3 {background:#e2eafc;}
.colorViolat4 {background:#d7e3fc;}
.colorViolat5 {background:#ccdbfd;}
.colorViolat6 {background:#c1d3fe;}
.colorViolat7 {background:#b6ccfe;}
.colorViolat8 {background:#abc4ff;}
.colorViolat9 {background:#b8b8ff;}

.color1 { background:#eae4e9;}
.color2 { background:#fff1e6;}
.color3 { background:#fde2e4;}
.color4 { background:#fad2e1;}
.color5 { background:#e2ece9;}
.color6 { background:#bee1e6;}
.color7 { background:#f0efeb;}
.color8 { background:#dfe7fd;}
.color9 { background:#cddafd;}

.colora { background:#FEE7E6;}
.colorb { background:rgb(255, 255, 153); }
.colorc { background:#B4F5F0;}
.colord { background:rgb(188, 255, 167); }

.redicon {
	background:#f3722c;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	color:#fff;
	width:24px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: absolute;
    top: 0px;
    right: 6px;
}

.blueicon {
	background:#757bc8;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	color:#fff;
	width:24px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: absolute;
    top: 0px;
    right: 6px;
}
/* new CSS on 10/3/2022 EOF */

/**
 * 99.9 Maxlee CSS for ziwei chart display BOF
*/

.author-info { display:none; }

.tptn_counter { font-size:0.7em; }

.round-img { border-radius: 15px;}

.disclaimer {
	color:#ddd;
	font-size:0.8em;
}
.disclaimer a {color: lightblue;}
.disclaimer a:hover {color: red;}

.flex-container {	
	display: flex;	
	flex-flow: row wrap;	
	justify-content: flex-start;	
	gap:4px 14px;
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom:20px;
}
.flex-item {	
	background: #0096c7;
	padding: 8px 12px 12px 12px;	
	width: 150px;		
	color: #caffbf;
	font-weight: bold;
	font-size:1.0rem;	
	margin-bottom:10px;
	border-bottom-right-radius: 10px;
	border-top-left-radius: 10px;
	line-height: 24px;
}
.flex-item a { color:#ffffff; }
.flex-item a:hover { color:#ffff00; }

.flex-item-2 {	
	background: #0096c7;	
	padding: 4px;	
	width: 150px;		
	color: #caffbf;
	font-weight: bold;
	font-size:1.0rem;	
	margin-bottom:10px;
	border:1px solid #0096c7;		
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
	line-height: 22px;	
}
.flex-item-2 a { color:#ffffff; }
.flex-item-2 a:hover { color:#ffff00; }

.flex-container-4 {
	display: flex;	
	flex-flow: row wrap;
	justify-content: flex-start;	
	gap:4px 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom:20px;
}
.flex-item-4 {	
	background: #0096c7;	
	padding: 4px;	
	width: 100px;		
	color: #caffbf;
	font-weight: bold;
	font-size:0.8rem;
	margin-bottom:10px;
	border:1px solid #0096c7;	
	border-radius: 4px;	
	line-height: 22px;	
}
.flex-item-4 a { color:#ffffff; }
.flex-item-4 a:hover { color:#ffff00; }

.flex-container-6 {
	display: flex;	
	flex-flow: row wrap;
	justify-content: flex-start;	
	gap:0px 8px;
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom:20px;
}
.flex-item-6 {	
	background: #0096c7;	
	padding: 6px;	
	width: 76px;		
	color: #caffbf;
	font-weight: bold;
	font-size:0.9rem;
	margin-bottom:10px;
	border:1px solid #0096c7;	
	border-radius: 4px;	
	line-height: 22px;	
}
.flex-item-6 a { color:#ffffff; }
.flex-item-6 a:hover { color:#ffff00; }

/* new CSS on 10/3/2022 BOF */
.flx-box {	
	display: flex;
	flex-flow: row wrap;	
    justify-content: flex-start;
    gap:10px 10px;
	padding: 0;
	margin: 0;
	list-style: none;
	margin-bottom:20px;
}
.flx-item {	
	padding: 3px 3px 6px 3px;
	width: 100px;		
    color: #000;	
    font-size:0.8rem;	
    text-align: center;
    line-height: 16px;
    background: #fff;
    border: 1px solid #0096c7;
	border: 1px solid #555;
    border-radius: 4px;	
}
.flx-item a {
    /*color:#0096c7;*/
    text-decoration-line: none;
}
.flx-item a:hover { 
    color:#ff0000; 
}
/* new CSS on 10/3/2022 EOF */



/**
 * 100.0 Maxlee CSS
 */

 .ap_container { margin-bottom:15px;} 

 a.booking-btn  {
	 background-color:#1964b7;
	 display:inline-block;
	 text-align:center;
	 line-height:18px;
	 font-size:smaller;
	 border-radius:4px 4px 4px 4px;
	 padding:1px 6px 1px 6px;
	 text-decoration: none;
	 color:#ffffff;
 } 
 
/* --table design [table-data] --BOF-- */
table.table-data a,  table.table-data a:link, table.table-data a:visited { 
	border:none; 
}
table.table-data {
	 border-collapse:collapse;
	 border-top:1px solid #d0d0d1;
	 border-right:1px solid #d0d0d1;	 
}
table.table-data tr.odd td {
	 background:#f2f2f2; 
}
table.table-data tr.yellow td {
	 background:#ffffcc; 
}
table.table-data tr.green td {
	 background:#c9ffb8; 
}
table.table-data tr.blue td {	
	background: #C8F4F9;
}
table.table-data tr.red td {	
	background: #FFD4DB;
}
table.table-data td {	 
	 border:1px solid #d0d0d1;
	 color:#111;
	 padding:.5em .8em;
	 font-size:1.0rem;
	 font-weight:normal;
	 line-height:1.3em;
}
table.table-data td.middle1 {
	 text-align:center;
}
table.table-data td.left1 {
	 text-align:left;
}
table.table-data td.right1 {
	 text-align:right;
}
table.table-data td.colBold {
	font-weight:600;
}
table.table-data td.yellow {	
	background:#ffffcc;
}
table.table-data td.green {	
	background:#c9ffb8; 
}
table.table-data td.blue {	
	background: #C8F4F9;	
}
table.table-data td.red {	
	background: #FFD4DB;
}
table.table-data thead th a {	 
	color: #ffffff;	
}
table.table-data th {
	 padding:.5em .8em;	 
	 border:1px solid #333333;
	 font-size:1.0rem;
}
table.table-data thead th {	 
	 line-height:1.4em;
	 font-weight:bold;
	 color: #ffffff;	 
	 background:#333333;
	 font-size:1.0rem;	 
}
table.table-data thead th.left1 {
	text-align:left;
}
table.table-data th.left2 {
	 border-left: 2px solid #ccc;	 
}
table.table-data thead th.topRow {	 
	text-align:center;
	font-size:1.1rem; 
	line-height:1.4em;
	font-weight:bold;	
	background-color: #868B8E;
	color:#fff;
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;	
}
a.goTop {
	color:#fff;
	background:#666;
	padding-left:6px;
	padding-right:6px;
	padding-top:2px;
	border-top-left-radius:6px;
	font-weight:bold;		
}
/* --table design [table-data] --BOF-- */

/* --table design [table-spec] --BOF-- */
table.table-spec a,
table.table-spec a:link,
table.table-spec a:visited { border:none; }							
table.table-spec {
	 border-collapse:collapse;
	 border-top:1px solid #d0d0d1;
	 border-right:1px solid #d0d0d1;
	 margin-top:0px;
}
table.table-spec tr.odd td {
	 background:#f2f2f2; /* -- normal row -- */
}
table.table-spec tr.odd .column1	{
	 background:#dedede; /* -- normal row -- */
	 background:#e0e0e0;
}	
table.table-spec tr.yellow td {
	 background:#ffffcc; /* -- normal row -- */
}
table.table-spec tr.yellow .column1	{
	 background:#ffff99; /* -- normal row -- */
}	
table.table-spec tr.green td {
	 background:#c9ffb8; /* -- normal row -- */
}
table.table-spec tr.green .column1	{
	 background:#8efe74; /* -- normal row -- */
}	
table.table-spec tr.blue td {
	 background:#dcf8f6; /* -- normal row -- */
}
table.table-spec tr.green .column1	{
	 background:#c2dcff; /* -- normal row -- */
}	
table.table-spec tr td.blue	{
	 background:#dcf8f6; /* -- blue cell -- */
}
table.table-spec tr td.yellow	{
	 background:#ffffcc; /* -- yellow cell -- */
}
table.table-spec tr.blueblue td{background:#adc9f7;}
table.table-spec .column1 {
	 line-height:1.2em;
	 font-weight:bold;
	 /*font-family:"Open Sans Condensed";*/
	 background:#f2f2f2; /* -- normal row -- */
	 color:#3b3b3b;
}
 table.table-spec .hidden { background:#9b9b9b; }
 table.table-spec td {
	 color:#111;
	 padding:.5em .8em;
	 border:1px solid #d0d0d1;	 
	 line-height:1.3em;
	 font-weight:normal;
	 background:#ffffff;
	 font-size:0.9rem;
 }				
 table.table-spec th {
	 padding:.5em .8em;	 
	 border:1px solid #333333;
	 font-size:0.9rem;
 }	
 table.table-spec thead th {	 
	 line-height:1.4em;
	 font-weight:bold; 
	 color:#333333;
	 color: #ffffff;
	 background:#77abe5;
	 background:#333333;
	 font-size:0.9rem; 
 }

 table.table-spec thead th a {	 
	color: #ffffff;	
}

 table.table-spec thead th.result {	 
	 line-height:1.4em;
	 font-weight:bold;
	 color:#333333;
	 background:#aae9c7;	 
	 font-size:0.9rem;
 }	
 
 table.table-spec tr.pink td{background:#f76296;}
 table.table-spec tr.pinkOdd td{background:#f4b5cb;}
 table.table-spec tr.pinkEven td{background:#f9d1df;}
 table.table-spec tr.choco td{background:#c4a87b;}
 table.table-spec tr.chocoOdd td{background:#d3bc96;}
 table.table-spec tr.chocoEven td{background:#e5d6be;}
 table.table-spec tr.orange td{background:#f9b95e;}
 table.table-spec tr.orangeOdd td{background:#f4ce97;}
 table.table-spec tr.orangeEven td{background:#f9e5c7;}
 table.table-spec tr.greeen td{background:#8fe57b;}
 table.table-spec tr.greeenOdd td{background:#b9efac;}
 table.table-spec tr.blueOdd td{background:#acefe7;}
 table.table-spec tr.blueEven td{background:#d6fbfc;}
 table.table-spec tr.greeenEven td{background:#d9f9d1;}
 table.table-spec tr.kreen td{background:#74ed8e;}
 table.table-spec tr.kreenOdd td{background:#a3f7b5;}
 table.table-spec tr.kreenEven td{background:#cff7d8;}
 table.table-spec tr.greyy td{background:#999da8;}
 table.table-spec tr.greyyOdd td{background:#d7dbe5;}
 table.table-spec tr.greyyEven td{background:#eaeef7;}
 table.table-spec tr.start td{background:#f0f46e;}
 table.table-spec tr.stop td{background:#a2f1f9;}
 table.table-spec tr.yellow td{background:#ffffcc;}
 table.table-spec tr.yellow .column1{background:#ffff99;}
 table.table-spec tr.green td{background:#c9ffb8;}
 table.table-spec tr.green .column1{background:#8efe74;}
 table.table-spec tr.blue td{background:#dcf8f6;}
 table.table-spec tr.green .column1{background:#c2dcff;}
 
 
 /* --table design [table-spec] --EOF-- */
 
  /* --table design [table-small] --BOF-- */
 table.table-small a,
 table.table-small a:link,
 table.table-small a:visited { border:none; }							
 table.table-small {
	 border-collapse:collapse;
	 border-top:1px solid #d0d0d1;
	 border-right:1px solid #d0d0d1;
	 margin-top:0px;
 }
 table.table-small tr.odd td {
	 background:#f2f2f2; /* -- normal row -- */
 }
 table.table-small tr.odd .column1	{
	 background:#dedede; /* -- normal row -- */
	 background:#e0e0e0;
 }	
 table.table-small tr.yellow td {
	 background:#ffffcc; /* -- normal row -- */
 }
 table.table-small tr.yellow .column1	{
	 background:#ffff99; /* -- normal row -- */
 }	
 table.table-small tr.green td {
	 background:#c9ffb8; /* -- normal row -- */
 }
 table.table-small tr.green .column1	{
	 background:#8efe74; /* -- normal row -- */
 }	
 table.table-small tr.blue td {
	 background:#dcf8f6; /* -- normal row -- */
 }
 table.table-small tr.green .column1	{
	 background:#c2dcff; /* -- normal row -- */
 }	
 table.table-small tr td.blue	{
	 background:#dcf8f6; /* -- blue cell -- */
 }
 table.table-small tr td.yellow	{
	 background:#ffffcc; /* -- yellow cell -- */
 }
 table.table-small .column1 {
	 line-height:1.2em;
	 font-weight:bold;
	 /*font-family:"Open Sans Condensed";*/
	 background:#f2f2f2; /* -- normal row -- */
	 color:#3b3b3b;
 }
 table.table-small .hidden { background:#9b9b9b; }
 table.table-small td {
	 color:#111;
	 padding:.5em .8em;
	 border:1px solid #d0d0d1;
	 font-size:0.7em;
	 line-height:1.3em;
	 font-weight:normal;
	 background:#fdfdfd;
	 background:#ffffff;
 }				
 table.table-small th {
	 padding:.5em .8em;
	 border-top: 2px solid #bbb;
	 border-bottom: 2px solid #bbb;
	 border-left:1px solid #d0d0d1;
	 border-right:1px solid #d0d0d1;
 }	
 table.table-small thead th {
	 font-size:0.8em;
	 line-height:1.4em;
	 font-weight:bold;
	 /*font-family:"Open Sans Condensed";*/
	 color:#333333;
	 background:#e0e0e0;
	 background:#77abe5;
	 background:#aae9c7;
 }	
 /* --table design [table-small] --EOF-- */
 
 table.table-cell { font-size: 0.8em;}
 table.table-cell td { padding:0.6em 0.6em; font-size:0.8em;}
 .color-eee { background:#eee; padding:2px;}
 .color-ccc { background:#ccc; padding:5px;}
 
 table.default a,
 table.default a:link,
 table.default a:visited { 	border:none; }							
 table.default { border-collapse:collapse; }
 table.default td.bg-eee { background:#eee; background:#f3f3f3;}
 table.default td { padding:2px; line-height:1.2em;}
 
 table.noformat a,
 table.noformat a:link,
 table.noformat a:visited { border:none; }							
 table.noformat { border-collapse:collapse; }
 table.noformat td.bg-eee { background:#eee; background:#f3f3f3;}
 table.noformat td { padding:2px 6px; line-height:1.2em; font-size:0.9em;}
 table.noformat td.lightgreen { background:#bef7bb; }
 table.noformat td.linkBox { background:#d1eef4; border:1px solid #45bcd4;}
 table.noformat td.lightbrown { background:#f9edca; }
 table.noformat td.lightblue { background:#d6fcf4; }
 table.noformat td.darkblue { background:#9fcde0; }
 
 .grid-center, .grid_center { text-align:center !important;}
 .grid-left, .grid_left { text-align:left !important;}
 
 .oo_borderTopBottomBox {
	 border-top:1px solid #ccc;
	 border-bottom:1px solid #ccc;
	 padding:8px 10px;
	 font-size:1.0rem;	 
	 line-height:1.3em;
	 color:#6b6b6b;	 
	 margin-bottom:20px;
 }
 
 .oo_borderNoneBox {
	 padding:8px 8px;
	 font-size:1.0rem;
	 line-height:1.3em;	 
	 color:#6b6b6b;	 
 }

 .oo_noBorderBox {
	 padding:8px 0px 8px 0px;
	 font-size:1.0rem;
	 margin-bottom:0.0em;
	 line-height:1.3em;
	 color:#6b6b6b;
 }
 
 .oo_ItemBox {
	 padding:6px 6px;
	 font-size:1.0rem;
	 margin-bottom:0em;
	 line-height:1.2em;
 }
 .oo_bgColor000000 {background:#000000;}
 .oo_bgColorFFFFCC {background:#ffffcc;}
 .oo_bgColorCCCCCC {background:#cccccc;}
 .oo_bgColor81C48F {background:#81c48f;}
 .oo_bgColor7AC8CC {background:#7ac8cc;}
 .oo_bgColorEFEFEF {background:#efefef;}
 .oo_bgColorF2F9FC {background:#f2f9fc;}
 .oo_bgColorF1F9EE {background:#f1f9ee;}
 .oo_bgColorFBF4F4 {background:#fbf4f4;}
 .oo_bgColorECF0F1 {background:#ecf0f1;}
 .oo_bgColorFDFBEC {background:#fdfbec;}
 .oo_bgColor76A7DA {background:#76a7da;}
 .oo_bgColorDCEAF8 {background:#dceaf8;}
 .oo_bgColorFFCDD2 {background:#ffcdd2;}
 .oo_bgColorBDC3C7 {background:#bdc3c7;}
 .oo_bgColor9EADAE {background:#9eadae;}
 .oo_bgColorF6F3CE {background:#f6f3ce;}
 .oo_bgColorBBDDFF {background:#bbddff;}
 
 .oo_bgColorSolid000000  {background:#000000; color:#ffffff;}
 .oo_bgColorSolidAB8F85 {background:#ab8f85; color:#fff; }
 
 .spacer-h1  {padding:1px;}
 .spacer-h2  {padding:2px;}
 .spacer-h3  {padding:3px;}
 .spacer-h5  {padding:5px;}
 .spacer-h7  {padding:7px;}
 .spacer-h10 {padding:10px;}
 .spacer-h11 {padding:11px;}
 .spacer-h12 {padding:12px;}
 .spacer-h13 {padding:13px;}
 .spacer-h14 {padding:14px;}
 .spacer-h15 {padding:15px;}
 .spacer-h20 {padding:15px;}
 .spacer-n25 {margin-top:-25px;}
 .spacer-n10 {margin-top:-10px;}
 .spacer-n5  {margin-top:-5px;}
 
 .station-mrt {
	 background: url(./images/rail-station-mrt.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-mrt a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-erl {
	 background: url(./images/rail-station-erl.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-erl a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-sp {
	 background: url(./images/rail-station-sp.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-sp a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-kj {
	 background: url(./images/rail-station-kj.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-kj a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-mr {
	 background: url(./images/rail-station-mr.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-mr a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-ka {
	 background: url(./images/rail-station-ka.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-ka a  {
	 text-decoration:none;
	 color:#fff;
 }
 .station-st {
	 background: url(./images/rail-station-st.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-st a {
	 text-decoration:none;
	 color:#fff;
 }
 .station-kc {
	 background: url(./images/rail-station-kc.png) no-repeat top left;
	 color:#fff;
	 padding:0px 2px 2px 3px;
	 font-size:0.9em;
	 font-weight:bold;
	 font-family:"Trebuchet MS",Arial;
	 min-height:15px;
 }
 .station-kc a {
	 text-decoration:none;
	 color:#fff;
 }
 
 .size08 {font-size:0.7em; line-height:1.0em !important; font-family:"Arial";}
 .size09 {font-size:0.8em; line-height:1.0em !important;}
 
 .site-disclaimer {
	 background:#eee;
	 border:2px solid #ccc;
	 padding:10px;
	 font-size:0.9em;
	 border-radius:5px;
 }
 .newssource {
	 background:#eee;
	 color:#ccc;
	 padding:5px;
	 font-style: italic;
 }
 .newssource a {
	 color:#aaa;
 }
 input.button.run:hover {
   background: #3ba4c7;
   background: -webkit-gradient(linear, left top, left bottom, from(#3ba4c7), to(#319abd));
   background: -webkit-linear-gradient(#3ba4c7, #319abd);
   background-image: -moz-linear-gradient(top, #3ba4c7, #319abd);
   background-image: -moz-gradient(top, #3ba4c7, #319abd);
	text-decoration:none;
 }
 input.button.run:active {
   background: #319abd;
   background: -webkit-gradient(linear, left top, left bottom, from(#319abd), to(#3ba4c7));
   background: -webkit-linear-gradient(#319abd, #3ba4c7);
   background-image: -moz-linear-gradient(top, #319abd, #3ba4c7);
   background-image: -moz-gradient(top, #319abd, #3ba4c7);
 }
 
 a.button.run {
   background: #3ba4c7;
   background: -webkit-gradient(linear, left top, left bottom, from(#3ba4c7), to(#1982a5));
   background: -webkit-linear-gradient(#3ba4c7, #1982a5);
   background-image: -moz-linear-gradient(top, #3ba4c7, #1982a5);
   background-image: -moz-gradient(top, #3ba4c7, #1982a5);
   color: #e5ffff;
   border: 1px solid #004f72;
   text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
   padding:8px 12px;
   font-weight:normal;
   cursor:pointer;
   display:block;
   font-size:0.9em;
   text-align:center;
   margin-bottom:0px;
   margin-top:0px;
   text-decoration:none;
 }
 a.button.run:hover {
   background: #3ba4c7;
   background: -webkit-gradient(linear, left top, left bottom, from(#3ba4c7), to(#319abd));
   background: -webkit-linear-gradient(#3ba4c7, #319abd);
   background-image: -moz-linear-gradient(top, #3ba4c7, #319abd);
   background-image: -moz-gradient(top, #3ba4c7, #319abd);
   text-decoration:none;
 }
 
 a.button.run:active {
   background: #319abd;
   background: -webkit-gradient(linear, left top, left bottom, from(#319abd), to(#3ba4c7));
   background: -webkit-linear-gradient(#319abd, #3ba4c7);
   background-image: -moz-linear-gradient(top, #319abd, #3ba4c7);
   background-image: -moz-gradient(top, #319abd, #3ba4c7);
 }
 
 /* main index page thumbnail BOF -------------------------------------------------------*/
 a.idxLink { 
	 font-size:0.9rem; 
	 line-height:1.0em; 
	 text-decoration:none;	 
} 
/* main index page thumbnail EOF -------------------------------------------------------*/
 
/* flexgrid maxlee 27-may-2023 BOF */
.flexSet {  
	display: flex;  
	flex-flow: row wrap;
	justify-content: flex-start;  
	gap: 9px 9px;
	padding: 0;
	margin: 0;
	list-style: none;	
}
.flexItem {  
	width: 120px;
	height: 120px; 
	line-height: 120px;
	text-align: center;
}
@media all and (max-width: 830px) {
	.flexSet {    
	  gap: 8px 8px;
	}
	.flexItem {  	
		width: 108px;
		height: 108px;
		line-height: 108px;
	}
}
@media all and (max-width: 820px) {
	.flexSet {    
	  gap: 9px 9px;
	}
	.flexItem {  	
		width: 114px;
		height: 114px;
		line-height: 114px;
	}
}
@media all and (max-width: 810px) {
	.flexSet {    
	  gap: 10px 10px;
	}
	.flexItem {  	
		width: 112px;
		height: 112px;
		line-height: 112px;
	}
}
@media all and (max-width: 800px) {
	.flexSet {
	  gap: 8px 8px;
	}
	.flexItem {  	
		width: 112px;
		height: 112px;	
		line-height: 112px;
	}
}
@media all and (max-width: 580px) {
	.flexSet {
	  gap: 12px 12px;
	}
	.flexItem {
	  width: 120px;
		height: 120px;
		line-height: 120px; 
	}
}
@media all and (max-width: 576px) {
	.flexSet {
	  gap: 11px 11px;
	}
	.flexItem {
	  width: 120px;
		height: 120px;
		line-height: 120px; 
	}
}
@media all and (max-width: 450px) {
	.flexSet {
	  gap: 14px 14px;
	}
	.flexItem {
	  width: 124px;
		height: 124px;
		line-height: 124px; 
	}
}
@media all and (max-width: 428px) {
	.flexSet {
	  gap: 10px 10px;
	}
	.flexItem {
		width: 120px;
		height: 120px;
		line-height: 120px; 
	}
}
@media all and (max-width: 414px) {
	.flexSet {
	  gap: 10px 10px;
	}
	.flexItem {
		width: 116px;
		height: 116px;
		line-height: 116px;  	
	}
}
@media all and (max-width: 412px) {
	.flexSet {
	  gap: 11px 11px;
	}
	.flexItem {  	
		width: 115px;
		height: 115px;
		line-height: 115px;  	
	}
}
@media all and (max-width: 390px) {
	.flexSet {    
	  gap: 11px 11px;
	}
	.flexItem {  	
		width: 108px;
		height: 108px;
		line-height: 108px;  	
	}
}
@media all and (max-width: 384px) {
	.flexSet {    
	  gap: 10px 10px;
	}
	.flexItem {
		width: 107px;
		height: 107px;
		line-height: 107px;
	}
}
@media all and (max-width: 375px) {
	.flexSet {    
	  gap: 8px 8px;
	}
	.flexItem {  	
		width: 106px;
		height: 106px;
		line-height: 106px;  	
	}
}
@media all and (max-width: 360px) {
	.flexSet {    
	  gap: 7px 7px;
	}
	.flexItem {
		width: 102px;
		height: 102px;
		line-height: 102px;
	}
}
@media all and (max-width: 320px) {
	.flexSet {    
	  gap: 6px 6px;
	}
	.flexItem {
		width: 91px;
		height: 91px;
		line-height: 91px;
	}
}
.ktm-sbl-station {
	background-color:#1964b7; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.ktm-pkl-station {
	background-color:#dc241f; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white
}
.lrt-apl-station {
	background-color:#fe8e10; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.lrt-spl-station {
	background-color:#721422; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.lrt-kjl-station {
	background-color:#e0115f; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.erl-ktl-station {
	background-color:#33a8b5; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.erl-kel-station {
	background-color:#8c238f; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}

.mon-mon-station {
	background-color:#7dba00; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.mrt-sbk-station {
	background-color:#11753a; 
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px; 
	color:white;
}
.ktm-sky-station {
	background-color:#8D5B2D;
	display:inline-block;
	text-align:center;
	line-height:18px;
	font-size:smaller; 
	border-radius: 3px 3px 3px 3px;
	color:white;
}
.mrt-ssp-station {
	background-color:#faca05;	
	display:inline-block; 
	text-align:center; 
	line-height:18px; 
	font-size:smaller;
	border-radius: 3px 3px 3px 3px; 
	color:black;
}
/* flexgrid maxlee 27-may-2023 EOF */
/* flex-box recharge 28-may-2023 BOF ----------------------------------------------*/
.google-auto-placed {
	margin-top:20px;
}
.pLink {
	padding-left:5px;
	padding-right:5px;
	margin-top:4px;
	margin-bottom:5px;
}
.pImg {	
	padding-top:4px;	
}

.flex-box {	
	display: flex;
	flex-flow: row wrap;	
    justify-content: flex-start;
    gap:9px 9px;
	padding: 0;
	margin: 0;
	list-style: none;	
}
.flex-box-item {
	width: 120px;
	height: 114px;
    font-size:0.8rem;	
    line-height: 14px;
	text-align: center;    
	background: #fff;    
	border-radius: 8px;	
	/* #07BB9C;
	box-shadow: 1px 1px #1e8ae1;
	*/
	border: 1px solid #2196f3;	
	border: 1px solid #cccccc;	
}
.flex-box-item a {	
    text-decoration-line: none;
	font-family: 'Tahoma','Verdana','Arial';	
}
.flex-box-item a:hover { 
    color:#ff0000;
}
@media all and (max-width: 830px) {
	.flex-box {
		gap: 7px 7px;
  	}
  	.flex-box-item {
  		width: 109px;
  		height: 114px;
  	}
}
@media all and (max-width: 820px) {
	.flex-box {
		gap: 8px 8px;
  	}
  	.flex-box-item {
  		width: 115px;
  		height: 114px;
  	}
}
@media all and (max-width: 810px) {
	.flex-box {
		gap: 6px 6px;
  	}
  	.flex-box-item {
  		width: 115px;
  		height: 114px;
  	}
}
@media all and (max-width: 800px) {
	.flex-box {
		gap: 7px 7px;
  	}
  	.flex-box-item {
  		width: 113px;
  		height: 114px;
  	}
}
@media all and (max-width: 580px) {
	.flex-box {
		gap: 9px 9px;
  	}
  	.flex-box-item {
		width: 122px;
  		height: 114px;
  	}	
}
@media all and (max-width: 576px) {
	.flex-box {
		gap: 8px 8px;
  	}
  	.flex-box-item {
		width: 122px;
  		height: 114px;
  	}	
}
@media all and (max-width: 450px) {
	.flex-box {
		gap: 8px 8px;
  	}
  	.flex-box-item {
		width: 128px;
  		height: 114px;
  	}	
}
@media all and (max-width: 430px) {
	.flex-box {
		gap: 10px 10px;
  	}
  	.flex-box-item {
  		width: 120px;
  		height: 110px;
  	}  	
}
@media all and (max-width: 428px) {
	.flex-box {
		gap: 10px 10px;
  	}
  	.flex-box-item {
  		width: 120px;
  		height: 114px;
  	}  	
}
@media all and (max-width: 414px) {
	.flex-box {
		gap: 12px 12px;
  	}
  	.flex-box-item {
  		width: 115px;
  		height: 114px;
  	}
}
@media all and (max-width: 412px) {
	.flex-box {
		gap: 11px 11px;
  	}
  	.flex-box-item {
  		width: 115px;
  		height: 114px;
  	}
}
@media all and (max-width: 390px) {
	.flex-box {
		gap: 13px 13px;
  	}
  	.flex-box-item {	
  		width: 107px;
  		height: 114px;
  	}
}
@media all and (max-width: 384px) {
	.flex-box {
		gap: 10px 10px;
  	}
  	.flex-box-item {
  		width: 107px;
  		height: 114px;
  	}
}
@media all and (max-width: 375px) {
	.flex-box {
		gap: 8px 8px;
  	}
  	.flex-box-item {
  		width: 106px;  	
		height: 114px;
  	}	
}
@media all and (max-width: 360px) {
  	.flex-box {
		gap: 6px 6px;
  	}
  	.flex-box-item {
  		width: 103px;
  		height: 114px;
  	}	
}
@media all and (max-width: 320px) {
  	.flex-box {    
		gap: 6px 6px;
  	}
  	.flex-box-item {
  		width: 91px;
  		height: 110px;
		border-radius:1px;
  	}
	  .flex-box-item a {
		font-size:0.7rem;
	}	
}
/* flex-box recharge 28-may-2023 EOF ----------------------------------------------*/
/* flex-cont recharge 28-may-2023 BOF */
.flex-cont {
	display: flex;	
	flex-flow: row wrap;	
	justify-content: flex-start;	
	padding: 0;
	margin: 0;
	list-style: none;	
	gap:9px 9px;	
}
.flex-cont-item {
	width: 120px;
	height: 166px;
	background: #0096c7;	
	padding: 2px;
	color: #caffbf;
	line-height: 18px;
}
.flex-cont-item a { 
	color:#ffffff;
	font-size:0.8rem;
	line-height:0.8rem;
	font-weight: bold;
}
.flex-cont-item a:hover { 
	color:#ffff00; 
}
@media all and (max-width: 830px) {
	.flex-cont {
		gap: 10px 10px;
  	}
  	.flex-cont-item {
  		width: 136px; 
  		height: 180px;
  	}
}
@media all and (max-width: 820px) {
	.flex-cont {
		gap: 8px 8px;
  	}
  	.flex-cont-item {
  		width: 115px;
  		height: 160px;
  	}
}
@media all and (max-width: 810px) {
	.flex-cont {
		gap: 6px 6px;
  	}
  	.flex-cont-item {
  		width: 115px;
  		height: 160px;
  	}
}
@media all and (max-width: 800px) {
	.flex-cont {
		gap: 7px 7px;
  	}
  	.flex-cont-item {
  		width: 113px;
  		height: 156px;
  	}
}
@media all and (max-width: 580px) {
	.flex-cont { 
		gap: 15px 15px;
  	}
  	.flex-cont-item {
		width: 162px;
  		height: 206px;
  	}	
}
@media all and (max-width: 576px) {
	.flex-cont { 
		gap: 13px 13px;
  	}
  	.flex-cont-item {
		width: 162px;
  		height: 206px;
  	}	
}
@media all and (max-width: 450px) {
	.flex-cont { 
		gap: 10px 10px;
  	}
  	.flex-cont-item {
		width: 127px;
  		height: 170px;
  	}	
}
@media all and (max-width: 428px) {
	.flex-cont {
		gap: 9px 9px;
  	}
  	.flex-cont-item {
  		width: 121px;
  		height: 164px;
  	}
	.flex-cont-item a {
		font-size:0.7rem;
		line-height:0.7rem;
	}
}
@media all and (max-width: 414px) {
	.flex-cont { 
		gap: 12px 12px;
  	}
  	.flex-cont-item {
  		width: 115px;
  		height: 158px;
  	}	
}
@media all and (max-width: 412px) {
	.flex-cont { 
		gap: 11px 11px;
  	}
  	.flex-cont-item {
  		width: 115px;
  		height: 158px;
  	}
}
@media all and (max-width: 390px) {
	.flex-cont { 
		gap: 13px 13px;
  	}
  	.flex-cont-item {
  		width: 107px;
  		height: 150px;
  	}
}
@media all and (max-width: 384px) {
	.flex-cont { 
		gap: 10px 10px;
  	}
  	.flex-cont-item {
  		width: 107px;
  		height: 150px;
  	}    
}
@media all and (max-width: 375px) {
	.flex-cont { 
		gap: 8px 8px;
  	}
  	.flex-cont-item {
  		width: 106px;
  		height: 146px;
  	}	
}
@media all and (max-width: 360px) {
	.flex-cont { 
		gap: 6px 6px;
  	}
  	.flex-cont-item {
  		width: 103px;
		height:146px;
  	}
}
@media all and (max-width: 320px) {
	.flex-cont { 
		gap: 9px 9px;
  	}
  	.flex-cont-item {
  		width: 138px;
		height:182px;
  	}
}
/* flex-cont recharge 28-may-2023 BOF  */
/* flix-cont recharge 4-april-2024 BOF */
.flix-cont {
	display: flex;	
	flex-flow: row wrap;	
	justify-content: flex-start;	
	padding: 0;
	margin: 0;
	list-style: none;	
	gap:9px 9px;	
}
.flix-cont-item {
	width: 120px;
	line-height: 1.0em;
	padding: 1px 1px 3px 1px;	
	
}
.flix-cont-item a {	
	font-size:0.8rem;
	line-height:1.0rem;		
}
.flix-cont-item a:hover { 	
	color:#ff0000; 
}
@media all and (max-width: 1024px) {
	.flix-cont { gap: 15px 15px; }
  	.flix-cont-item { width: 107px; }
}
@media all and (max-width: 912px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 118px; }
}
@media all and (max-width: 853px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 137px; }
}
@media all and (max-width: 834px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 136px; }
}
@media all and (max-width: 830px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 136px; }
}
@media all and (max-width: 820px) {
	.flix-cont { gap: 12px 12px; }
  	.flix-cont-item { width: 170px; }
}
@media all and (max-width: 810px) {
	.flix-cont { gap: 12px 12px; }
  	.flix-cont-item { width: 171px; }
}
@media all and (max-width: 800px) {
	.flix-cont { gap: 11px 11px; }
  	.flix-cont-item { width: 169px;	}
}
@media all and (max-width: 768px) {
	.flix-cont { gap: 12px 12px; }
  	.flix-cont-item { width: 162px; }	
}
@media all and (max-width: 580px) {
	.flix-cont { gap: 15px 15px; }
  	.flix-cont-item { width: 162px; }
	.flix-cont-item a {	
		font-size:0.8rem;		
		line-height:1.0rem;
	}   
}
@media all and (max-width: 576px) {
	.flix-cont { gap: 13px 13px; }
  	.flix-cont-item { width: 162px; }	
}
@media all and (max-width: 540px) {
	.flix-cont { gap: 14px 14px; }
  	.flix-cont-item { width: 150px; }	
}
@media all and (max-width: 450px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 127px; }	
}
@media all and (max-width: 430px) {
	.flix-cont { gap: 9px 9px; }
  	.flix-cont-item { width: 121px; }
}
@media all and (max-width: 428px) {
	.flix-cont { gap: 9px 9px; }
  	.flix-cont-item { width: 121px; }	
}
@media all and (max-width: 414px) {
	.flix-cont { gap: 11px 11px; }
  	.flix-cont-item { width: 115px; }	
}
@media all and (max-width: 412px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 115px; }
}
@media all and (max-width: 400px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 112px; }	 
}
@media all and (max-width: 393px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 110px; }
}
@media all and (max-width: 390px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 109px; }
}
@media all and (max-width: 384px) {
	.flix-cont { gap: 10px 10px; }
  	.flix-cont-item { width: 107px; }
}
@media all and (max-width: 375px) {
	.flix-cont { gap: 8px 8px; }
  	.flix-cont-item { width: 106px; }	
}
@media all and (max-width: 360px) {
	.flix-cont { gap: 6px 6px; }
  	.flix-cont-item { width: 103px;	}	
}
@media all and (max-width: 320px) {
	.flix-cont { gap: 9px 9px; }
  	.flix-cont-item { width: 138px;	}
}
@media all and (max-width: 280px) {
	.flix-cont { gap: 11px 11px; }
  	.flix-cont-item { width: 119px;	}
}
/* flix-cont recharge 4-april-2024 EOF */
/* box-ctx recharge 24-april-2024 BOF */
.box-ctx {
	display: flex;	
	flex-flow: row wrap;	
	justify-content: flex-start;	
	padding: 0;
	margin: 0;
	list-style: none;	
	gap:13px 13px;		
}
.box-ctx-item {
	width: 246px;
	line-height: 1.0rem;
	padding: 1px 1px 3px 1px;	
}
.box-ctx-item a {	
	font-size:0.9rem;
	line-height:1.0rem;		
}
.box-ctx-item a:hover { 	
	color:#ff0000; 
}
.box-ctx-item img {	
	border-radius:8px;
}
@media all and (max-width: 1024px) {
	.box-ctx { gap: 14px 14px; }
  	.box-ctx-item { width: 230px; }
}
@media all and (max-width: 912px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 150px; }
}
@media all and (max-width: 853px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 137px; }
}
@media all and (max-width: 834px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 136px; }
}
@media all and (max-width: 830px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 136px; }
}
@media all and (max-width: 820px) {
	.box-ctx { gap: 12px 12px; }
  	.box-ctx-item { width: 170px; }
}
@media all and (max-width: 810px) {
	.box-ctx { gap: 12px 12px;}
  	.box-ctx-item { width: 171px; }
}
@media all and (max-width: 808px) {
	.box-ctx { gap: 11px 11x;}
  	.box-ctx-item { width: 169px; }
}
@media all and (max-width: 800px) {
	.box-ctx { gap: 11px 11x;}
  	.box-ctx-item { width: 169px; }
}
@media all and (max-width: 788px) {
	.box-ctx { gap: 12px 12px; }
  	.box-ctx-item { width: 162px; }	
}
@media all and (max-width: 580px) {
	.box-ctx { gap: 15px 15px; }
  	.box-ctx-item { width: 162px; }	
	.box-ctx-item a {	
		font-size:0.8rem;		
		line-height:1.0rem;
	}  
}
@media all and (max-width: 576px) {
	.box-ctx { gap: 13px 13px; }
  	.box-ctx-item { width: 162px; }	
}
@media all and (max-width: 540px) {
	.box-ctx { gap: 14px 14px; }
  	.box-ctx-item { width: 150px; }	
}
@media all and (max-width: 450px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 127px; }	
}
@media all and (max-width: 430px) {
	.box-ctx { gap: 9px 9px; }
  	.box-ctx-item { width: 121px; }
}
@media all and (max-width: 428px) {
	.box-ctx { gap: 9px 9px; }
  	.box-ctx-item { width: 121px; }	
}
@media all and (max-width: 414px) {
	.box-ctx { gap: 11px 11px; }
  	.box-ctx-item { width: 115px; }	
}
@media all and (max-width: 412px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 115px; }
}
@media all and (max-width: 400px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 112px; }	  
}
@media all and (max-width: 393px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 110px; }
}
@media all and (max-width: 390px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 109px; }
}
@media all and (max-width: 384px) {
	.box-ctx { gap: 10px 10px; }
  	.box-ctx-item { width: 107px; }
}
@media all and (max-width: 375px) {
	.box-ctx { gap: 8px 8px; }
  	.box-ctx-item { width: 106px; }	
}
@media all and (max-width: 360px) {
	.box-ctx { gap: 6px 6px; }
  	.box-ctx-item { width: 103px; }	
}
@media all and (max-width: 320px) {
	.box-ctx { gap: 9px 9px; }
  	.box-ctx-item { width: 138px; }
}
@media all and (max-width: 280px) {
	.box-ctx { gap: 11px 11px; }
  	.box-ctx-item { width: 119px; }
}
/* box-ctx recharge 24-april-2024 EOF */

/* New button CSS / image full size CSS on 22 Sep 2023 BOF ---------*/
/* Blue button */
a.button, input.button {
	font-size: 0.9em !important;
	text-decoration: none;
	cursor: pointer;
	display: inline-block;
	position: relative;
	font-weight: bold;
	padding: .4em .6em;
	color: #4c4c4c;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 0 6px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 0 6px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.4);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 0 6px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.4);
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#d4d4d4));
	background: -webkit-linear-gradient(#f6f6f6, #d4d4d4);
	background-image: -moz-linear-gradient(top, #f6f6f6, #d4d4d4);
	background-image: -moz-gradient(top, #f6f6f6, #d4d4d4);
border: 1px solid #a1a1a1;
}
a.button:hover, input.button:hover {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f6), to(#ececec));
	background: -webkit-linear-gradient(#f6f6f6, #ececec);
	background-image: -moz-linear-gradient(top, #f6f6f6, #ececec);
	background-image: -moz-gradient(top, #f6f6f6, #ececec);
}
a.button:active, input.button:active {
	top: 1px;
	background: #ececec;
	background: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#f6f6f6));
	background: -webkit-linear-gradient(#ececec, #f6f6f6);
	background-image: -moz-linear-gradient(top, #ececec, #f6f6f6);
	background-image: -moz-gradient(top, #ececec, #f6f6f6);
	-webkit-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.4), 0 1px 0 0 #ffffff;
	-moz-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.4), 0 1px 0 0 #ffffff;
	box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.4), 0 1px 0 0 #ffffff;
}
/* Blue button */
a.button.blue {
	background: #3ba4c7;
	background: -webkit-gradient(linear, left top, left bottom, from(#3ba4c7), to(#1982a5));
	background: -webkit-linear-gradient(#3ba4c7, #1982a5);
	background-image: -moz-linear-gradient(top, #3ba4c7, #1982a5);
	background-image: -moz-gradient(top, #3ba4c7, #1982a5);
	color: #e5ffff;
	border: 1px solid #004f72;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
a.button.blue:hover {
	background: #3ba4c7;
	background: -webkit-gradient(linear, left top, left bottom, from(#3ba4c7), to(#319abd));
	background: -webkit-linear-gradient(#3ba4c7, #319abd);
	background-image: -moz-linear-gradient(top, #3ba4c7, #319abd);
	background-image: -moz-gradient(top, #3ba4c7, #319abd);
}
a.button.blue:active {	
	background: #319abd;
	background: -webkit-gradient(linear, left top, left bottom, from(#319abd), to(#3ba4c7));
	background: -webkit-linear-gradient(#319abd, #3ba4c7);
	background-image: -moz-linear-gradient(top, #319abd, #3ba4c7);
	background-image: -moz-gradient(top, #319abd, #3ba4c7);
}
/* Green button */
a.button.hijau {
	background: #1d741b;
	background: -webkit-gradient(linear, left top, left bottom, from(#1d741b), to(#2f5233));
	background: -webkit-linear-gradient(#1d741b, #2f5233);
	background-image: -moz-linear-gradient(top, #1d741b, #2f5233);
	background-image: -moz-gradient(top, #1d741b, #2f5233);
	color: #e5ffff;
	border: 1px solid #004f72;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
a.button.hijau:hover {
	background: #1d741b;
	background: -webkit-gradient(linear, left top, left bottom, from(#1d741b), to(#1a4314));
	background: -webkit-linear-gradient(#1d741b, #1a4314);
	background-image: -moz-linear-gradient(top, #1d741b, #1a4314);
	background-image: -moz-gradient(top, #1d741b, #1a4314);
}
a.button.hijau:active {
	background: #1a4314;
	background: -webkit-gradient(linear, left top, left bottom, from(#1a4314), to(#1d741b));
	background: -webkit-linear-gradient(#1a4314, #1d741b);
	background-image: -moz-linear-gradient(top, #1a4314, #1d741b);
	background-image: -moz-gradient(top, #1a4314, #1d741b);
}      
/* Violet button */
a.button.violet {
	background: #d03e93;
	background: -webkit-gradient(linear, left top, left bottom, from(#d03e93), to(#ae1c71));
	background: -webkit-linear-gradient(#d03e93, #ae1c71);
	background-image: -moz-linear-gradient(top, #d03e93, #ae1c71);
	background-image: -moz-gradient(top, #d03e93, #ae1c71);
	color: #ffe8ff;
	border: 1px solid #7b003e;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
a.button.violet:hover {
	background: #d03e93;
	background: -webkit-gradient(linear, left top, left bottom, from(#d03e93), to(#c63489));
	background: -webkit-linear-gradient(#d03e93, #c63489);
	background-image: -moz-linear-gradient(top, #d03e93, #c63489);
	background-image: -moz-gradient(top, #d03e93, #c63489);
}
a.button.violet:active {
	background: #c63489;
	background: -webkit-gradient(linear, left top, left bottom, from(#c63489), to(#d03e93));
	background: -webkit-linear-gradient(#c63489, #d03e93);
	background-image: -moz-linear-gradient(top, #c63489, #d03e93);
	background-image: -moz-gradient(top, #c63489, #d03e93);
}

@media all and (max-width: 428px) {
	.size-big,
	.caption-big {
		clear: both;
		display: block;		
		float: none;
		/*
		margin: 0 -11.11419486% 32px -11.11419486%;		
		max-width: 122.22838972%;		
		width: 122.22838972%;		
		*/
		margin: 0 -6.483280335% 32px -6.483280335%;
		max-width: 112.04269057%;		
		width: 112.04269057%;
	}
	.caption-big .wp-caption-text {
		/*
		margin-right: 9.09297331%;
		margin-left: 9.09297331%;
		*/
		margin-right: 8.082642942%;
		margin-left: 8.082642942%;		
	}
	/* --table design [table-data] --BOF-- */	
	table.table-data td {	 
		border:1px solid #d0d0d1;
		color:#111;
		padding:.3em .4em;
		font-size:0.7rem;
		font-weight:normal;
		line-height:1.3em;
	}	
	table.table-data th {
		padding:.3em .4em;	 
		border:1px solid #333333;
		font-size:0.7rem;
	}
	table.table-data thead th {	 
		line-height:1.4em;
		font-weight:bold;
		color: #ffffff;	 
		background:#333333;
		font-size:0.7rem;	 
	}	
	table.table-data thead th.topRow {	 
		text-align:center;
		font-size:0.8rem; 
		line-height:1.4em;
		font-weight:bold;	
		background-color: #868B8E;
		color:#fff;
		border-top: 1px solid #aaa;
		border-left: 1px solid #aaa;
		border-right: 1px solid #aaa;	
	}	
	/* --table design [table-data] --BOF-- */

}
/* New button CSS / image full size CSS on 22 Sep 2023 BOF ---------*/

/* 100.0 MaxleeCSS EOF */

/* 101.0 2026 BOF */
.nav-links {display:none;}
.navigation {display:none;}
:root {
	--header-color: #000000;	
	--accent-color: #e74c3c;	
}

/* attraction-card CSS BOF */
.locations-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}
.location-title {
	font-size: 1.15rem;
	color: var(--header-color);	
	border-left: 3px solid var(--accent-color);	
	margin-bottom: 0.7rem;
	font-weight: 800;
	padding-left: 10px;
}
.attractions-grid {
	display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}
.attraction-card {	
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.attraction-card:hover {
	transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-image {
	height: 200px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.card-category {
	position: absolute;
	top: 15px;
	right: 15px;
	background-color: #cc0001;;
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}
.card-content {
	padding: 1.1rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.card-title {	
	color: var(--header-color);
	font-size: 1.15rem;
	font-weight: 800;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.02); 	
	margin-bottom: 0.7rem;
}
.card-location { 	
	color: #cc0001;
	margin-bottom: 0.8rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.9rem;
}
.card-location::before { 	
	content: "\f417";	
	font: normal 20px/1 'Genericons';
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.card-description {	
	color: #222;
	font-size: 1.0rem;
	margin-bottom: 1.2rem;
	flex-grow: 1;
	line-height: 1.5;
}
.card-features {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 1.3rem;
}
.feature-tag {	
	background-color: #f5f5f5;	
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 0.8rem;
	color: #555;
}
.feature-tag a {
	color:#3c096c;
	text-decoration: none;
}
.read-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center; 	
	background-color: #010066;
	color: white;
	text-decoration: none;
	padding: 9px 18px;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: auto;
	font-size: 0.9rem;
}
.read-more-link:hover {		
	background-color: #0077b6;
	color: #caf0f8;
	transform: translateY(-2px);
	box-shadow: 0 5px 12px rgba(0,0,0,0.1);
	text-decoration: none;
}
@media (max-width: 768px) {	
	.attractions-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1.5rem;
	}	
	.locations-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 1.5rem;
	}
}
@media (max-width: 600px) {
	.attractions-grid {
		grid-template-columns: 1fr;
	}
	.locations-grid {
		grid-template-columns: 1fr;
	}
}
/* attraction-card CSS EOF */
/* star-grid, star-card CSS BOF */
.star-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 24px;
	margin-bottom: 36px;
}
.star-card {
	background: rgba(255, 255, 255, 0.05);
	background-color: #ffffff;
	border-radius: 8px;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-size:1.0rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.star-name {	
	color: var(--header-color);
	font-weight: 800;
	font-family: "Lato", "Playfair Display", georgia, serif; 
	margin-bottom: 8px;
	font-size: 1.15rem;
}
a.read-more-btn {
	display: inline-block;
	background: linear-gradient(135deg, #FFD700, #FFA500);
	background: linear-gradient(135deg, #023e8a, #03045e);
	color: #333333;
	color: #ffffff;
	padding: 6px 16px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.8rem;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	margin-top: 10px;	
}
a.read-more-btn:hover {
	background: linear-gradient(135deg, #FFA500, #FF8C00);	
	background: linear-gradient(135deg, #0077b6, #023e8a);	
	transform: scale(1.05);
	box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}
/* star-grid, star-card CSS EOF */
/* blueCSS BOF */
.blueIntro {	
	background-color: #ffffff;
	padding: 24px;
	border-radius: 12px;	
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);	
	border-left: 6px solid #219ebc;
	margin-bottom: 36px;
}
.blueIntro.content  {
	font-size: 1.0rem;
	color: #cccccc;
}
.blueNote {	
	background-color: #ffffff;	
	border-left: 6px solid #014f86;
	padding: 24px;	
	border-radius: 0 8px 8px 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	margin-bottom: 36px;
}
.blueNote h3 {		
	color: var(--header-color);
	margin-top: 0;
	font-size: 1.2em;
}
.blueNote.content {
	font-size: 1.0em;
	color: #cccccc;
}
.blueSection-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 24px;
	margin-bottom: 36px;
}        
.blueSection {	
	background-color: #ffffff;	
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;	
	border: 1px solid #ffffff;
	position: relative;
	overflow: hidden;
}        
.blueSection::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;	
	background: linear-gradient(to right, #0077b6, #023e8a);	
}        
.blueSection:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}        
.blueSection h3 {	
	color: var(--header-color);
	padding-bottom: 15px;
	margin-bottom: 20px;
	font-size: 1.2em;	
	border-bottom: 2px solid #e0e0e0;
	display: flex;
	align-items: center;	
} 
.blueHighlight {
	background-color: #ffffff;
	padding: 24px;
	border-radius: 10px;	
	margin-bottom: 36px;
	border: 1px solid #ffffff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.blueHighlight h3 {		
	color: var(--header-color);
	margin-top: 0;
	font-size:1.2em;	
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 10px;
}
.blueClosing {	
	background-color: #caf0f8;
	padding: 24px;
	border-radius: 8px;		
	border: 2px solid #ade8f4;
	margin-bottom: 36px;	
}
.blueClosing h3 {
	color: var(--header-color);	
	border-bottom: 1px dashed #00b4d8;
	padding-bottom: 10px;	
	font-size: 1.2em;
}
.blueConclusion {	
	background-color: #ffffff;
	padding: 24px;
	border-radius: 12px;	
	margin-bottom:36px;	
	border: 2px solid #ffffff;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.blueConclusion h3 {	
	color: var(--header-color);
	font-size:1.2em;	
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.blueSection ul,
.blueHighlight ul,
.blueConclusion ul {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}
.blueSection li,
.blueHighlight li,
.blueConclusion li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;    
}
.blueSection li::before,
.blueHighlight li::before,
.blueConclusion li::before {
    content: "◈";    
	color: #010066;	
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    margin-right: 3px;
    font-size: 0.9em;
}
.read-more-blue {
	display: inline-block;
	background-color: #010066;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	margin-top: 15px;
	border: 1px solid #555555;
	transition: all 0.3s ease;
	font-weight: bold;
	position: relative;
	overflow: hidden;
	font-size:0.9em;
}
.read-more-blue::after {
	content: "→";
	margin-left: 8px;
	transition: transform 0.3s ease;
}
.read-more-blue:hover {
	background-color: #0077b6;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 5px 12px rgba(212, 175, 55, 0.3);
	text-decoration: none;
}
.read-more-blue:hover::after {
	transform: translateX(5px);
}
.read-more-blue:active {
	transform: translateY(0);
}
@media (max-width: 768px) {
	.blueSection-container {
		grid-template-columns: 1fr;
	}            
	.blueSection {
		padding: 24px;
	}
	.blueIntro, .blueConclusion {
		padding: 24px;
	}
}        
@media (max-width: 480px) {            
	.read-more-blue {
		display: block;
		text-align: center;
		margin-top: 20px;
	}
	.blueSection ul,
	.blueSection li,
	.blueHighlight ul,
	.blueHighlight li,
	.blueConclusion ul,
	.blueConclusion li {
		padding-left: 0px;
	}	
}
/* blueCSS EOF */

/* dividerG 2025-03-27 BOF */
/*GREEN divider*/
.dividerG {
	display: table;
	font-size: 22px;
	font-weight: 900;	
	text-align: center; 
	width: 100%;
	margin: 40px auto;	
	font-family: 'Lato','Trebuchet MS',Arial,sans-serif;
	text-shadow: 0 1px 0 rgba(55, 55, 55, 0.2);
}
.dividerG span { display: table-cell; position: relative; }
.dividerG span:first-child, .dividerG span:last-child {
	width: 50%;
	top: 22px;
	-moz-background-size: 100% 2px; 	
	background-size: 100% 2px; 			
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.dividerG span:first-child { 	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#386641));
	background-image: -webkit-linear-gradient(180deg, transparent, #386641);
	background-image: -moz-linear-gradient(180deg, transparent, #386641);
	background-image: -o-linear-gradient(180deg, transparent, #386641);
	background-image: linear-gradient(90deg, transparent, #386641);
}
.dividerG span:nth-child(2) {		
	color: #386641;
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.dividerG span:last-child {	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#386641), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #386641, transparent);
	background-image: -moz-linear-gradient(180deg, #386641, transparent);
	background-image: -o-linear-gradient(180deg, #386641, transparent);
	background-image: linear-gradient(90deg, #386641, transparent);
}
/*YELLOW divider*/
.dividerY {
	display: table;
	font-size: 22px;
	font-weight: 900;	
	text-align: center; 
	width: 100%;
	margin: 40px auto;	
	font-family: 'Lato','Trebuchet MS',Arial,sans-serif;
	text-shadow: 0 1px 0 rgba(55, 55, 55, 0.2);
}
.dividerY span { display: table-cell; position: relative; }
.dividerY span:first-child, .dividerY span:last-child {
	width: 50%;
	top: 22px;
	-moz-background-size: 100% 2px; 	
	background-size: 100% 2px; 			
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.dividerY span:first-child { 	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#f9c74f));
	background-image: -webkit-linear-gradient(180deg, transparent, #f9c74f);
	background-image: -moz-linear-gradient(180deg, transparent, #f9c74f);
	background-image: -o-linear-gradient(180deg, transparent, #f9c74f);
	background-image: linear-gradient(90deg, transparent, #f9c74f);
}
.dividerY span:nth-child(2) {		
	color: #f9c74f;
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.dividerY span:last-child {	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f9c74f), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #f9c74f, transparent);
	background-image: -moz-linear-gradient(180deg, #f9c74f, transparent);
	background-image: -o-linear-gradient(180deg, #f9c74f, transparent);
	background-image: linear-gradient(90deg, #f9c74f, transparent);
}
/*RED divider*/
.dividerR {
	display: table;
	font-size: 22px;
	font-weight: 900;	
	text-align: center; 
	width: 100%;
	margin: 40px auto;
	font-family: 'Lato','Trebuchet MS',Arial,sans-serif;
	text-shadow: 0 1px 0 rgba(55, 55, 55, 0.2);	
}
.dividerR span { display: table-cell; position: relative; }
.dividerR span:first-child, .dividerR span:last-child {
	width: 50%;
	top: 22px;
	-moz-background-size: 100% 2px; 	
	background-size: 100% 2px; 			
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.dividerR span:first-child { 	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#F54D3D));
	background-image: -webkit-linear-gradient(180deg, transparent, #F54D3D);
	background-image: -moz-linear-gradient(180deg, transparent, #F54D3D);
	background-image: -o-linear-gradient(180deg, transparent, #F54D3D);
	background-image: linear-gradient(90deg, transparent, #F54D3D);
}
.dividerR span:nth-child(2) {		
	color: #F54D3D;
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.dividerR span:last-child {	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#F54D3D), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #F54D3D, transparent);
	background-image: -moz-linear-gradient(180deg, #F54D3D, transparent);
	background-image: -o-linear-gradient(180deg, #F54D3D, transparent);
	background-image: linear-gradient(90deg, #F54D3D, transparent);
}
/*PURPLE divider*/
.dividerP {
	display: table;
	font-size: 22px;
	font-weight: 900;
	text-align: center; 
	width: 100%;
	margin: 40px auto;	
	font-family: 'Lato','Trebuchet MS',Arial,sans-serif;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);	
}
.dividerP span { display: table-cell; position: relative; }
.dividerP span:first-child, .dividerP span:last-child {
	width: 50%;
	top: 22px;
	-moz-background-size: 100% 2px; 	
	background-size: 100% 2px; 			
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.dividerP span:first-child { 	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#5a189a));
	background-image: -webkit-linear-gradient(180deg, transparent, #5a189a);
	background-image: -moz-linear-gradient(180deg, transparent, #5a189a);
	background-image: -o-linear-gradient(180deg, transparent, #5a189a);
	background-image: linear-gradient(90deg, transparent, #5a189a);
}
.dividerP span:nth-child(2) {		
	color: #5a189a;
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.dividerP span:last-child {	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5a189a), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #5a189a, transparent);
	background-image: -moz-linear-gradient(180deg, #5a189a, transparent);
	background-image: -o-linear-gradient(180deg, #5a189a, transparent);
	background-image: linear-gradient(90deg, #5a189a, transparent);
}
/*BLUE divider*/
.dividerB {
	display: table;
	font-size: 22px;
	font-weight: 900;
	text-align: center; 
	width: 100%;
	margin: 40px auto;	
	font-family: 'Lato','Trebuchet MS',Arial,sans-serif;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);	
}
.dividerB span { display: table-cell; position: relative; }
.dividerB span:first-child, .dividerB span:last-child {
	width: 50%;
	top: 22px;
	-moz-background-size: 100% 2px; 	
	background-size: 100% 2px; 			
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
}
.dividerB span:first-child { 	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), to(#4B7BF5));
	background-image: -webkit-linear-gradient(180deg, transparent, #4B7BF5);
	background-image: -moz-linear-gradient(180deg, transparent, #4B7BF5);
	background-image: -o-linear-gradient(180deg, transparent, #4B7BF5);
	background-image: linear-gradient(90deg, transparent, #4B7BF5);
}
.dividerB span:nth-child(2) {		
	color: #4B7BF5;
	padding: 0px 5px; 	
	width: auto;	
	white-space: nowrap;
}
.dividerB span:last-child {	
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#4B7BF5), to(transparent));
	background-image: -webkit-linear-gradient(180deg, #4B7BF5, transparent);
	background-image: -moz-linear-gradient(180deg, #4B7BF5, transparent);
	background-image: -o-linear-gradient(180deg, #4B7BF5, transparent);
	background-image: linear-gradient(90deg, #4B7BF5, transparent);
}
/* dividerG 2025-03-27 BOF */

/* New Footer CSS BOF*/
.main-footer {		
	background-color: #232323;
	padding: 50px 0 20px 0;		
	border-top: 2px solid #89c2d9;
	font-size:0.9rem;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}
.footer-section h4 {	
	color: #2c7da0;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(212, 175, 55, 0.3);
	font-size: 1.1em;
}
.footer-links {
	list-style: none;
}
.footer-links li {
	margin-bottom: 12px;
}
.footer-links a {	
	color: #d5d5d5;
	text-decoration: none;
	display: block;
	transition: all 0.2s;
}
.footer-links a:hover {
	color: #d4af37;
	color: #ff0000;
	padding-left: 5px;
}
.footer-tools {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);	
	color: #f5f5f5;
	font-size: 0.9em;
}
/* New Footer CSS EOF*/



/* 101.0 2026 EOF */


/**
 * 16.0 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 https://core.trac.wordpress.org/ticket/25888.
 */

@media only screen and (min-width:320px) and (max-width:1024px) { 	
	/* main index page thumbnail BOF --------------------------------------------------*/
	a.idxLink {font-size:0.9rem; text-decoration:none;}	
	/* main index page thumbnail EOF --------------------------------------------------*/
		
	/* maxlee added the following for fonts displayed for mobile screens BOF */
	.single .entry-title,
	.sticky .entry-title {
		font-size: 26px;
		font-size: 1.85rem; 
		line-height: 1.38462;
		margin-right: 0;
	}
	.entry-content h2,
	.entry-summary h2,
	.page-content h2,
	.comment-content h2,
	.textwidget h2 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.23077;		
	}
	.entry-content h3,
	.entry-summary h3,
	.page-content h3,
	.comment-content h3,
	.textwidget h3 {
		font-size: 20px;
		/*
		font-size: 1.275rem; 
		line-height: 1.23077;
		*/
		font-size: 1.36rem; /*added 2023-10-04 maxlee */
		line-height: 1.3;	/*added 2023-10-04 maxlee */
	}
	.entry-content h4,
	.entry-summary h4,
	.page-content h4,
	.comment-content h4,
	.textwidget h4 {
		font-size: 18px;
		/*
		font-size: 1.125rem; 
		line-height: 1.13077;
		*/
		font-size: 1.24rem; /*added 2023-10-04 maxlee */
		line-height: 1.3;	/*added 2023-10-04 maxlee */
	}
	.entry-content h5,
	.entry-summary h5,
	.page-content h5,
	.comment-content h5,
	.textwidget h5 {
		font-size: 18px;
		/*
		font-size: 1.125rem; 
		line-height: 1.13077;
		*/
		font-size: 1.18rem; /*added 2023-10-04 maxlee */
		line-height: 1.3;	/*added 2023-10-04 maxlee */
		
	}
	.flex-item {		
		width: 160px;		
	}
	.oo_borderTopBottomBox {		
		font-size:0.9rem;	
	}	
	.oo_borderNoneBox {		
		font-size:0.9rem;		
	}
	/* maxlee added the following for fonts displayed for mobile screens EOF */
}


/**
 * 16.1 >= 470px
 */

@media screen and (min-width: 29.375em) {
	.entry-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.38462;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
	}
	
}


/**
 * 16.2 >= 601px
 */

@media screen and (min-width: 37.5625em) {
	.site-header {
		padding: 3.84615%;
	}

	.sidebar-toggle {
		right: 3.84615%;
	}

	.social-navigation {
		/* maxlee changed to 3.125% */
		/*
		margin-top: 7.6923%;
		margin-bottom: 7.6923%;
		*/
		margin-top: 3.125%;
		margin-bottom: 3.125%;
	}

	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 15.3846%;
		margin-left: 15.3846%;
	}

	.entry-title {
		font-size: 31px;
		font-size: 1.9375rem;
		line-height: 1.35484;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		font-size: 45px;
		font-size: 2.8125rem;
		line-height: 1.24444;
	}
	ul { padding-left: 20px;
		 padding-right: 20px;}

}


/**
 * 16.3 >= 700px
 */

@media screen and (min-width: 43.75em) {
	body {
		font-size: 18px;		
		font-size: 1.125rem;		
		line-height: 1.77778;
	}

	input,
	select,
	textarea {
		/*maxlee changed to 12px 0.9em 1.125 Lato */
		/*
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.77778;		
		*/
		font-size: 12px;
		font-size: 0.9rem;
		line-height: 1.125;		
	}
	p,
	address,
	pre,
	hr,
	dl,
	dd,
	table,
	.alignleft,
	.alignright,
	.aligncenter,
	.post-thumbnail,
	.page-links,
	.entry-attachment,
	.comments-title,
	.comment-metadata,
	.comment-notes,
	.comment-awaiting-moderation,
	.logged-in-as,
	.form-allowed-tags,
	embed,
	iframe,
	object,
	video,
	.wp-audio-shortcode,
	.wp-video,
	.wp-playlist.wp-audio-playlist,
	.wp-caption,
	.gallery {
		/* maxlee changed to 24px; */
		/*
		margin-bottom: 32px;
		*/
		margin-bottom: 24px;
	}

	.main-navigation,
	.post-navigation .meta-nav,
	.image-navigation,
	.comment-navigation,
	.widget,
	.sticky-post,
	.posted-on,
	.cat-links,
	.tags-links,
	.comments-link,
	.edit-link,
	.full-size-link,
	.author-heading,
	.page-links a,
	.page-links > span,
	.entry-caption,
	.comment-metadata,
	.pingback .edit-link,
	.comment-list .reply,
	.comment-form label,
	.comment-notes,
	.comment-awaiting-moderation,
	.logged-in-as,
	.form-allowed-tags,
	.site-info,
	.wp-caption-text,
	.gallery-caption {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	blockquote {
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.63636;
		margin-bottom: 32px;
		margin-left: -32px;
		padding-left: 28px;
	}

	blockquote p {
		margin-bottom: 36px;
	}

	blockquote cite,
	blockquote small {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.77778;
	}

	blockquote > blockquote {
		margin-left: 0;
	}

	pre {
		padding: 16px;
	}

	ul, ol {
		/*
		margin: 0 0 32px 0;
		*/
		margin: 0 0 24px 0; /* maxlee changed from 32px to 24px */
	}

	ul, ol {
		/* maxlee changed from 25px 30px to 5px 5px, added list-style-position: outside */
		/*
		padding-left:25px;
		padding-right:30px;
		*/
		padding-left:18px;
		padding-right:10px;
		list-style-position:outside; 
	} 

	li > ul,
	li > ol,
	blockquote > ul,
	blockquote > ol {
		margin-left: 24px;
	}

	th, td {
		padding: 8px;
	}

	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		font-size: 15px;
		font-size: 0.9375rem;
		padding: 17px 32px 16px;
	}

	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	textarea {
		padding: 7px;
	}

	input[type="checkbox"],
	input[type="radio"] {
		margin-right: 8px;
	}

	.post-password-form label {
		font-size: 15px;
		font-size: 0.9375rem;
		margin-bottom: 16px;
		padding-bottom: 8px;
	}

	.sidebar .main-navigation ul ul {
		margin-left: 16px;
	}

	.post-navigation .meta-nav {
		margin-bottom: 8px;
	}

	.post-navigation .post-title {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
	}

	.pagination .nav-links {
		min-height: 64px;
	}

	.pagination .current .screen-reader-text {
		position: absolute !important;
	}

	.pagination .page-numbers {
		display: inline-block;
		line-height: 64px;
		padding: 0 8px;
	}

	.pagination .prev,
	.pagination .next {
		height: 64px;
		width: 64px;
	}

	.pagination .prev:before,
	.pagination .next:before {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
		width: 64px;
	}

	.pagination .prev:before {
		left: -10px;
	}

	.pagination .next:before {
		right: 3px;
	}

	.image-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before,
	.comment-navigation .nav-previous:not(:empty) + .nav-next:not(:empty):before {
		margin: 0 8px;
	}

	.image-navigation,
	.comment-navigation {
		padding: 16px 0;
	}

	.image-navigation {
		margin-bottom: 32px;
	}

	.alignleft {
		margin-top: 8px;
		margin-right: 32px;
	}

	.alignright {
		margin-top: 8px;
		margin-left: 32px;
	}

	.widget p,
	.widget address,
	.widget pre,
	.widget hr,
	.widget dl,
	.widget dd,
	.widget table,
	.widget .alignleft,
	.widget .alignright,
	.widget .aligncenter,
	.widget embed,
	.widget iframe,
	.widget object,
	.widget video,
	.widget .wp-audio-shortcode,
	.widget .wp-video,
	.widget .wp-playlist.wp-audio-playlist,
	.widget .wp-caption,
	.widget .gallery {
		margin-bottom: 24px;
	}

	.widget blockquote {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.66667;
		margin-left: -30px;
		padding-left: 26px;
	}

	.widget blockquote p {
		margin-bottom: 30px;
	}

	.widget blockquote cite,
	.widget blockquote small {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.widget blockquote > blockquote {
		margin-left: 0;
	}

	.widget pre,
	.widget th, .widget td {
		padding: 6px;
	}

	.widget h1,
	.widget h2,
	.widget h3,
	.widget h4,
	.widget h5,
	.widget h6 {
		margin: 0 0 24px;
	}

	.widget h1 {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.38462;
	}

	.widget h2 {
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.36364;
	}

	.widget h3 {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.widget h4,
	.widget h5,
	.widget h6 {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.2;
	}

	.widget ul, .widget ol {
		margin: 0 0 24px 0;
	}

	.widget li > ul,
	.widget li > ol {
		margin-bottom: 0;
	}

	.widget li > ul,
	.widget li > ol,
	.widget blockquote > ul,
	.widget blockquote > ol {
		margin-left: 24px;
	}

	.widget button,
	.widget input[type="button"],
	.widget input[type="reset"],
	.widget input[type="submit"] {
		font-size: 12px;
		font-size: 0.75rem;
		padding: 11px 16px 9px;
	}

	.widget input[type="text"],
	.widget input[type="email"],
	.widget input[type="url"],
	.widget input[type="password"],
	.widget input[type="search"],
	.widget textarea {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5;
		padding: 3px 6px;
	}

	.widget .wp-caption-text {
		font-size: 12px;
		font-size: 0.75rem;
		line-height: 1.5;
		padding: 6px 0 0;
	}

	.widget .widget-title {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.widget_calendar table {
		margin: 0;
	}

	.widget_calendar td,
	.widget_calendar th {
		line-height: 3.2;
		padding: 0;
	}

	.widget_calendar caption {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.33333;
	}

	.widget_archive ul,
	.widget_categories ul,
	.widget_links ul,
	.widget_meta ul,
	.widget_nav_menu ul,
	.widget_pages ul,
	.widget_recent_comments ul,
	.widget_recent_entries ul,
	.widget_rss ul {
		margin: 0;
	}

	.widget_rss li {
		margin-bottom: 24px;
	}

	.widget_rss .rss-date,
	.widget_rss cite {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.84615;
	}

	.textwidget > :last-child {
		margin-bottom: 0;
	}

	.site-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.2307692307;
	}

	.site-description {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.post-thumbnail {
		margin-top: 48px;
		margin-bottom: 16px;
	}

	div.entry-date + .entry-header,
	div.entry-date + .entry-title {
		margin-top: 8px;
	}

	.entry-title {
		/* maxlee changed to 32px 1.85rem */
		/*
		font-size: 37px;
		font-size: 2.3125rem;
		*/
		font-size: 32px;
		font-size: 2.0rem;
		line-height: 1.1891891891;
	}

	.single .entry-title,
	.sticky .entry-title,
	.page-title {
		/* maxlee changed to 36px 2.75rem */
		/*
		font-size: 54px;
		font-size: 3.375rem;
		*/
		font-size: 38px;
		font-size: 2.85rem;
		line-height: 1.1851851851;
	}

	.entry-summary {
		margin-top: 16px;
	}

	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.entry-summary h1,
	.entry-summary h2,
	.entry-summary h3,
	.entry-summary h4,
	.entry-summary h5,
	.entry-summary h6,
	.page-content h1,
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6,
	.comment-content h1,
	.comment-content h2,
	.comment-content h3,
	.comment-content h4,
	.comment-content h5,
	.comment-content h6 {
		/*
		margin-top: 64px;
		margin-bottom: 32px;
		*/
		margin-top: 32px;
		margin-bottom: 26px;
		/* maxlee shorted the top n bottom margin */	
	}

	/* section for .entry-content .entry-summary .page-content .comment-content h1, h2, h3, h4, h5 */

	.entry-content blockquote.alignleft,
	.entry-content blockquote.alignright {
		padding: 28px 0;
	}

	.entry-footer {
		margin-top: 32px;
	}

	.author-info {
		margin: 32px 0 28px;
		padding: 32px 0;
	}

	.author-info .avatar {
		height: 64px;
		margin: 0 32px 32px 0;
		width: 64px;
	}

	.author-title,
	.author-bio {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.5555555555;
	}

	.cat-links,
	.tags-links,
	.comments-link,
	.edit-link,
	.full-size-link {
		/* maxlee changed to 26px */
		/*
		padding: 4px 0 4px 19px;		
		*/
		padding: 4px 0 4px 26px;
	}

	.cat-links:before,
	.tags-links:before,
	.comments-link:before,
	.edit-link:before,
	.full-size-link:before {
		top: 8px;
	}

	.taxonomy-description {
		margin-top: 8px;
	}

	.page-links a,
	.page-links > span {
		height: 32px;
		line-height: 31px;
		width: 32px;
	}

	.page-links > .page-links-title {
		padding-right: 26px;
	}

	.entry-caption {
		padding-top: 8px;
	}

	.comment-list + .comment-respond,
	.comment-navigation + .comment-respond {
		padding-top: 32px;
	}

	.comments-title,
	.comment-reply-title {
		font-size: 26px;
		font-size: 1.625rem;
		line-height: 1.23077;
	}

	.comment-list article,
	.comment-list .pingback,
	.comment-list .trackback {
		padding: 32px 0;
	}

	.comment-list .children > li {
		padding-left: 32px;
	}

	.comment-author {
		margin-bottom: 0;
	}

	.comment-author .avatar {
		height: 56px;
		margin-right: 16px;
		top: 4px;
		width: 56px;
	}

	.bypostauthor > article .fn:after {
		top: 8px;
	}

	.comment-metadata .edit-link,
	.pingback .edit-link {
		margin-left: 8px;
	}

	.pingback .edit-link:before {
		top: 7px;
	}

	.comment-content ul,
	.comment-content ol {
		margin: 0 0 32px 0;
	}

	.comment-content li > ul,
	.comment-content li > ol,
	.comment-content blockquote > ul,
	.comment-content blockquote > ol {
		margin-left: 24px;
	}

	.comment-list .reply a {
		margin-top: 32px;
		padding: 8px 16px 7px;
	}

	.comment-form,
	.no-comments {
		padding-top: 32px;
	}

	.comment-form label {
		margin-bottom: 8px;
	}

	.comment-reply-title small a:before {
		top: 1px;
	}

	.wp-caption-text,
	.gallery-caption {
		padding-top: 8px;
	}

	.widecolumn .mu_alert {
		margin-bottom: 32px;
	}

	.widecolumn h2 {
		font-size: 37px;
		font-size: 2.3125rem;
		line-height: 1.2973;
		margin: 0 0 32px;
	}

	.widecolumn p {
		margin: 32px 0;
	}

	.widecolumn p + h2 {
		margin-top: 64px;
	}

	.widecolumn label,
	.widecolumn .mu_register label {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.widecolumn .mu_register label {
		margin: 32px 0 0;
	}

	.widecolumn .mu_register #blog_title,
	.widecolumn .mu_register #user_email,
	.widecolumn .mu_register #user_name {
		margin: 0 0 8px;
	}

	.widecolumn #submit,
	.widecolumn .mu_register input[type="submit"] {
		font-size: 13px;
		font-size: 0.8125rem;
	}

	.infinite-loader {
		height: 48px;
	}

	#infinite-handle span {
		display: block;
		font-size: 15px;
		font-size: 0.9375rem;
		padding: 17px 32px 16px;
	}

	.site .portfolio-entry {
		margin-bottom: 64px;
	}

	.site .portfolio-featured-image + .portfolio-entry-title {
		margin: 16px 0 0;
	}

	.site .portfolio-entry-title + .portfolio-entry-meta {
		margin-top: 12px;
	}

	.site .portfolio-entry-meta {
		line-height: 1.33333;
	}

	.site .portfolio-entry-meta span,
	.site .portfolio-entry-meta a {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.site .portfolio-entry-content {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.6;
		margin-top: 16px;
	}

	.site .tiled-gallery {
		margin-bottom: 32px;
	}

	.jetpack-video-wrapper {
		margin-bottom: 32px;
	}

	.jetpack-video-wrapper > embed,
	.jetpack-video-wrapper > iframe,
	.jetpack-video-wrapper > object,
	.jetpack-video-wrapper > .wp-video {
		margin-bottom: 0;
	}

	.fb_iframe_widget {
		margin-bottom: 32px;
	}

	.site .gist .gist-file {
		margin-bottom: 32px;
	}

	.instagram-media {
		margin-bottom: 32px !important;
	}

	.PDS_Poll {
		margin-bottom: 32px;
	}

	.site .presentation-wrapper {
		margin: 0 0 32px;
	}

	iframe[src^="https://embed.spotify.com"] {
		margin: 0 0 32px !important;
	}

	.site .jetpack-recipe {
		margin: 0 0 32px;
	}

	.site .slideshow-window {
		margin-bottom: 32px;
	}

	/* Subscription */
	.hentry .jetpack_subscription_widget {
		margin-bottom: 32px;
	}

	.hentry .jetpack_subscription_widget #subscribe-email input {
		padding: 7px;
	}

	iframe[id*="twitter-widget-"] {
		margin-bottom: 32px !important;
	}

	.site .video-player {
		margin-bottom: 32px;
	}

	.video-player object {
		margin-bottom: 0;
	}

	.hentry div.sharedaddy h3.sd-title,
	.hentry h3.sd-title {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.hentry div#jp-relatedposts h3.jp-relatedposts-headline {
		font-size: 15px;
		font-size: 0.9375rem;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
		padding-right: 16px;
		width: 33%;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
		margin-bottom: 0;
	}

	.hentry .jp-relatedposts-post-img {
		margin-bottom: 8px;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items p {
		font-size: 13px;
		font-size: 0.8125rem;
		line-height: 1.53846;
	}

	.hentry div#jp-relatedposts div.jp-relatedposts-items-visual h4.jp-relatedposts-post-title,
	.hentry .jp-relatedposts-post-title {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.33333;
	}

	.site-logo {
		max-height: 96px;
	}
	/* New Footer CSS BOF*/
	ul.footer-links {		
		padding-left:0px;
	}
}

@media all and (max-width: 768px) {
	/* New Footer CSS BOF*/
	.footer-content {
		grid-template-columns: 1fr; /* 变为单列堆叠 */
		gap: 30px;
	}
	.footer-section h4 {
		font-size: 1.2em; /* 手机端标题稍大，更易点击 */
		margin-bottom: 15px;
	}
	.footer-links li {
		margin-bottom: 10px;		
	}
	.main-footer {
		padding: 40px 0 20px 0;
	}
	/* New Footer CSS BOF*/	
}


/**
 * 16.4 >= 828px
 */

@media screen and (min-width: 51.755em) {
	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 23.0759%;
		margin-left: 23.0759%;
	}

	.image-navigation,
	.post-navigation,
	.entry-content,
	.entry-footer,
	.comments-area,
	.attachment .entry-header,
	.not-found .page-header,
	.page-content {
		margin-right: 15.3846%;
		margin-left: 15.3846%;
	}

	.single .entry-header-inner,
	.widecolumn {
		padding-right: 15.3846%;
		padding-left: 15.3846%;
	}

	.entry-title,
	.entry-summary {
		margin-right: 27.27891994%;
	}

	.entry-content blockquote.alignleft {
		margin-right: 11.11419486%;
		margin-left: -11.11419486%;
	}

	.entry-content blockquote.alignright {
		margin-right: -11.11419486%;
		margin-left: 11.11419486%;
	}

	.entry-content blockquote.aligncenter {
		border: 0;
		font-size: 1.9375rem;
		font-size: 31px;
		line-height: 1.6774193548;
		margin: 0 -11.11419486% 32px -11.11419486%;
		padding: 32px 0;
		max-width: 122.22838972%;
	}

	.size-big,
	.caption-big {
		clear: both;
		display: block;
		float: none;
		margin: 0 -11.11419486% 32px -11.11419486%;
		max-width: 122.22838972%;
		width: 122.22838972%;
	}

	.caption-big .wp-caption-text {
		margin-right: 9.09297331%;
		margin-left: 9.09297331%;
	}

	.caption-big .size-big,
	table .caption-big,
	table .caption-big .wp-caption-text,
	table .size-big {
		margin: 0 !important;
		max-width: 100% !important;
	}
}


/**
 * 16.5 >= 925px
 */

@media screen and (min-width: 57.8125em) {
	.sidebar .main-navigation,
	.social-navigation,
	.widget {
		margin-right: 23.5079%;
		margin-left: 23.5079%;
	}

	.image-navigation,
	.post-navigation,
	.entry-content,
	.entry-footer,
	.comments-area,
	.attachment .entry-header,
	.not-found .page-header,
	.page-content {
		/*
		margin-right: 17.6471%;
		margin-left: 17.6471%;
		*/
		/*
		Maximum width: 1088px.
		Old content width: 1088px - (1088px x 17.6471%)x2 = 1088px - (384px)x2 = 704px
		max resized to:
		New contset width: 1088px - (1088px * 5.42279412%)x2 = 1088px - (59)x2 = 970px
		*/		
		/* for 768px width */
		/*
		margin-right: 14.70588%;
		margin-left: 14.70588%;
		*/
		/* for 970px width */
		/*		
		margin-right: 5.42279412%;
		margin-left: 5.42279412%; 
		*/
		/* for 1024px width */
		/*
		background-color:#e6e6e6;		
		*/
		margin-right: 2.94117647%;
		margin-left: 2.94117647%; 
	}

	.single .entry-header-inner,
	.widecolumn {
		/*
		padding-right: 17.6471%;
		padding-left: 17.6471%;
		*/
		/*max resized to set width to 970px - image max width: 1088px */		
		/* for 768px width 
		padding-right: 14.70588%;
		padding-left: 14.70588%;
		*/
		/* for 970px width */
		/*
		padding-right: 5.42279412%;
		padding-left: 5.42279412%; 
		*/
		/* for 1024px width */
		padding-right: 2.94117647%;
		padding-left: 2.94117647%; 
	}

	.post-navigation {
		margin-bottom: 5.8824%;
	}

	.post-navigation a {
		padding: 4.5333% 0;
	}

	.site-header {
		padding: 2.9412%;
	}

	.sidebar-toggle {
		float: right;
		height: 32px;
		position: relative;
		top: auto;
		right: auto;
		-webkit-transform: translate(16px, 0);
		-ms-transform: translate(16px, 0);
		transform: translate(16px, 0);
	}

	.sidebar-toggle:before {
		content: "\f476";
		font-size: 24px;
		line-height: 30px;
	}

	.no-sidebar .sidebar-toggle {
		display: none;
	}

	.sidebar .main-navigation {
		display: none;
	}

	.custom-menu .site-branding {
		margin-right: 32px;
		max-width: -webkit-calc(100% - 80px);
		max-width: calc(100% - 80px);
	}

	.custom-menu .sidebar-toggle {
		border-left-color: rgba(0, 0, 0, 0.1);
	}

	.custom-menu .site-header .main-navigation {
		display: block;
		margin: 0 -16px;
	}

	.menu-left .site-branding {
		margin-right: 0;
		max-width: -webkit-calc(100% - 48px);
		max-width: calc(100% - 48px);
	}

	.menu-left .site-header .main-navigation {
		clear: both;
		float: left;
		margin-top: 16px;
		max-width: -webkit-calc(100% - 32px);
		max-width: calc(100% - 32px);
	}

	.menu-left .sidebar-toggle {
		border-color: transparent;
		height: 48px;
		position: absolute;
		right: 32px;
		top: 50%;
		-webkit-transform: translate(16px, -50%);
		-ms-transform: translate(16px, -50%);
		transform: translate(16px, -50%);
	}

	.menu-left .sidebar-toggle:focus {
		border-color: rgba(0, 0, 0, 0.1);
	}

	.menu-left .sidebar-toggle:before {
		line-height: 46px;
	}

	.hentry {
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	.post-thumbnail {
		margin-bottom: 0;
		margin-left: 6.66829507%;
		width: 26.67318026%;
	}

	.single .hentry,
	.sticky.hentry {
		padding: 5.8824% 0;
	}

	.entry-title,
	.entry-summary {
		margin-right: 33.34147533%;
	}

	.entry-content-footer {
		margin-top: 5.8824%;
	}

	.single .has-post-thumbnail .entry-header-inner {
		padding-top: 5.8824%;
		padding-bottom: 2.9412%;
	}

	.sticky.has-post-thumbnail .entry-header-inner {
		padding: 0 5.8824% 5.8824%;
	}

	.scroll-indicator-wrapper {
		margin-bottom: 2.9412%;
	}

	.comments-area {
		padding: 5.8824% 0;
	}

	.page-header {
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	.page-content {
		padding: 5.8824% 0;
	}

	.entry-content blockquote.alignleft {
		margin-right: 9.06666667%;
		margin-left: -18.16666667%;
	}

	.entry-content blockquote.alignright {
		margin-right: -18.16666667%;
		margin-left: 9.06666667%;
	}

	.entry-content blockquote.aligncenter,
	.size-big,
	.caption-big {
		margin-right: -18.16666667%;
		margin-left: -18.16666667%;
		max-width: 136.36666667%;
		width: 136.36666667%;
	}

	.caption-big .wp-caption-text {
		margin-right: 13.3431085%;
		margin-left: 13.3431085%;
	}

	.site-footer {
		padding: 2.9412%;
		text-align:center; /* maxlee added for footer */
	}

	.widecolumn {
		padding-top: 5.8824%;
		padding-bottom: 5.8824%;
	}

	.infinite-loader {
		margin: 5.8824% 0;
	}

	#infinite-handle {
		display: block;
		margin: 0 5.8824%;
		padding: 5.8824% 0;
	}

	#infinite-footer {
		display: block;
	}

	.infinite-scroll.neverending .infinite-loader {
		padding-bottom: 48px;
	}
}


/**
 * 16.6 >= 1088px
 */

@media screen and (min-width: 68em) {
	.site-header,
	.site-footer {
		padding: 32px;
	}
}


/**
 * 16.7 >= 1216px
 */

@media screen and (min-width: 76em) {
	.entry-content blockquote.alignleft {
		margin-right: 64px;
		margin-left: -192px;
	}

	.entry-content blockquote.alignright {
		margin-right: -192px;
		margin-left: 64px;
	}

	.entry-content blockquote.aligncenter,
	.size-big,
	.caption-big {
		/* default 704px width, 1088 large image
		margin-right: -192px;
		margin-left: -192px;
		max-width: 1088px;
		width: 1088px;
		*/				
		/* 768px width, 1088 large image 
		margin-right: -160px;
		margin-left: -160px;
		max-width: 1088px;
		width: 1088px;
		*/
		/* for 970px width, 1088 large image */
		/*
		margin-right: -154px;
		margin-left: -116px;
		max-width: 1200px;
		width: 1200px;
		*/
		/* for 1024px width, 1088 large image 64px extra-right-margin*/	
		margin-right: -32px;
		margin-left: -32px;
		max-width: 1088px;
		width: 1088px;
	}	

	.caption-big .wp-caption-text {
		/*
		margin-right: 192px;
		margin-left: 192px;
		*/
		margin-right: 0px;
		margin-left: 0px;
		/* maxlee set the caption to the far left */
	}

}