/*
Theme Name: Tigerless
Theme URI: http://www.becomingjenny.net
Version: 1.0
Author: Brain@JennyStudio
Author URI: http://www.brain1981.com
Description: JennyStudio - build your own WordPress theme.
License: 
License URI: http://www.becomingjenny.net
Tags: light, gray, white, one-column, two-columns, fluid-layout, responsive-layout, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: tigerless
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import url(fonts/fonts-roboto.css);
@import url(fonts/flaticon.css);

*::-moz-selection {
	background-color: #4D525A;
	color: #FFF;
}
*::selection {
	background-color: #4D525A;
	color: #FFF;
}
input[type="button"],
input[type="submit"],
input[type="date"],
input[type="reset"],
textarea,
select {
	-webkit-appearance: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	/*font-style: normal;*/
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: 300;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus,
input:focus,
select:focus,
option:focus {
	/*outline: thin dotted;*/
	outline: none;
}
input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder{
	color:#b2b2b2;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ededed;
	background-color: rgba(0,0,0,0.1);
	border: 0;
	height: 1px;
	margin: 35px 0;
	margin: 2.5rem 0;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title {
	font-size: 16px;
	font-size: 1.225714286rem;
	line-height: 2.181818182;
	font-weight: normal;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ddd;
	background-color: #fff;
	/*border: 1px solid rgba(0,0,0,0.4);*/
	border-radius: 0px;
	font-family: inherit;
	padding: 4px;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}
select{
	background:url(images/arraw-select.png) no-repeat #fff;
	background-size: auto 36%;
	background-position: 101% center;
}
/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 4px 26px;
	font-size: 12px;
	font-size: 0.865714286rem;
	line-height: 1.628571429;
	font-weight: normal;
	color: #fff;
	background-color: #5d62fc;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
	-webkit-transition:color 0.2s, background 0.2s;
	transition:color 0.2s, background 0.2s;
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #fff;
	background-color: #000;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #fff;
	background-color: #0a3e52;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}
.woocommerce button.button,
.woocommerce a.button,
.button,
.button1,
.button2,
.button3,
.button4{
	box-sizing: border-box;
	display: inline-block;
	color: #fff;
	padding: 12px 20px;
	text-align: center;
	font-size: 14px;
	font-size: 1rem;
	letter-spacing: 2px;
	text-decoration: none;
	border-radius: 24px;
	/*text-transform: uppercase;*/
	line-height: 1.1;
	font-weight: 400;
	background-color: #5d62fc;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-text-shadow: none;
	text-shadow: none;
	word-break: keep-all;
}
html[lang="en-US"] .woocommerce button.button,
html[lang="en-US"] .woocommerce a.button,
html[lang="en-US"] .button,
html[lang="en-US"] .button1,
html[lang="en-US"] .button2,
html[lang="en-US"] .button3,
html[lang="en-US"] .button4{
	letter-spacing: 0;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.button:hover{
	text-decoration: none;
}
.woocommerce button.button1,
.woocommerce a.button1,
.button1{
	border:1px solid #5d62fc;
	color:#fff;
	background:#5d62fc;
}
.woocommerce button.button1:hover,
.woocommerce a.button1:hover,
.button1:hover{
	color:#fff;
	border:1px solid #000;
	background:#000;
}
.woocommerce button.button1.transparent,
.woocommerce a.button1.transparent,
.button1.transparent{
	color:#5d62fc;
	background:transparent;
}
.woocommerce button.button1.transparent:hover,
.woocommerce a.button1.transparent:hover,
.button1.transparent:hover{
	color:#fff;
	border:1px solid #000;
	background:#000;
}
.button1.white{
	color:#54bcb5;
	background:white;
	border: 2px solid white;
}
.button1.white:hover{
	background:transparent;
	color:white;
	border:2px solid white;
}
.button2 {
	/*background-color: #ffc000;*/
	background-color: transparent;
	color: #fff;
	border:2px solid #fff;
}
.button2:hover {
	background-color: #fff;
	border:2px solid #fff;
	color: #5b9bd5;
}
.button3 {
	background-color: transparent;
	border: 2px solid #5b9bd5;
	color: #5b9bd5;
	padding: 6px 18px;
	width: auto;
}
.button3:hover {
	background-color: #5b9bd5;
	color: #fff;
}
.button4 {
	background-color: #ff534e;
	border: 2px solid #ff534e;
	color: #fff;
	padding: 6px 18px;
	width: auto;
	cursor: pointer;
}
.button4:hover {
	background-color: #FFA836;
	border: 2px solid #FFA836;
	color: #fff;
}
.button-white{
	color:#5b9bd5;
	background-color: #fff;
	border: 2px solid #fff;
}
.button-white:hover{
	color:#fff;
	background-color: transparent;
	border: 2px solid #fff;
}
.button-large{
	padding: 14px 30px;
	font-size: 21px;
	font-size: 1.5rem;
}
.woocommerce button.button-small,
.woocommerce a.button-small,
.button-small{
	padding: 6px 16px;
	width:auto;
	letter-spacing: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}


/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}


/*text color*/
.txt-red{color:#ff534e!important}
.txt-blue{color:#5b9bd5!important}
.txt-orinage{color:#ffa836!important}
.txt-purple{color:#6369fb!important}
a.txt-purple:hover{
	color:#000!important
}
/*grids*/
.col-raw{
	margin:0 -28px 0 -28px;
	overflow: hidden;
}
.col-raw.col-narrow{/*间距较小*/
	margin-left: -8px;
	margin-right: -8px;
}
.col-raw.col-medium{/*间距中等*/
	margin-left: -16px;
	margin-right: -16px;
}
.col-n{
	box-sizing: border-box;
	padding-left: 28px;
	padding-right: 28px;
}
.col-n img{
	max-width: 100%;
}
.col-narrow .col-n{
	padding-left: 8px;
	padding-right: 8px;
}
.col-medium .col-n{
	padding-left: 16px;
	padding-right: 16px;
}
@media screen and (max-width: 767px){
	.col-n-mb{
		float: left;
	}
	.col-1-mb{
		width:8.33%;
	}
	.col-2-mb{
		width:16.66%;
	}
	.col-3-mb{
		width:25%;
	}
	.col-4-mb{
		width:33.33%;
	}
	.col-5-mb{
		width:41.66%;
	}
	.col-6-mb{
		width:50%;
	}
	.col-7-mb{
		width:58.33%;
	}
	.col-8-mb{
		width:66.66%;
	}
	.col-9-mb{
		width:75%;
	}
	.col-10-mb{
		width:83.33%;
	}
	.col-11-mb{
		width:91.66%;
	}
	.col-12-mb{
		width:100%;
	}
	.hide-mb{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.col-n{
		float: left;
	}
	.col-1{
		width:8.33%;
	}
	.col-2{
		width:16.66%;
	}
	.col-3{
		width:25%;
	}
	.col-4{
		width:33.33%;
	}
	.col-5{
		width:41.66%;
	}
	.col-6{
		width:50%;
	}
	.col-7{
		width:58.33%;
	}
	.col-8{
		width:66.66%;
	}
	.col-9{
		width:75%;
	}
	.col-10{
		width:83.33%;
	}
	.col-11{
		width:91.66%;
	}
	.col-12{
		width:100%;
	}
	.hide-pc{
		display: none;
	}
	.col-flex{
		display: flex;
		flex-direction: row;
		align-items: center;
		flex-wrap: nowrap;
	}
	.col-inlineblock{
		font-size: 0;
		text-align: left;
	}
	.col-inlineblock .col-n{
		display: inline-block;
		float: none;
		vertical-align: top;
	}
}
/*responsive table*/
.table-responsive{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
}
.table-responsive::-webkit-scrollbar{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}
.table-responsive::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}
.table-responsive table{
	/*min-width: 400px;*/
}
.txt-left{
	text-align: left!important;
}
.txt-right{
	text-align: right!important;
}
.txt-center{
	text-align: center!important;
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {

}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}

.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-previous,
.nav-next {
	line-height: 1.5;
	width: 47%;
}
.nav-previous a,
.nav-next a{
	text-decoration: none;
	display: block;
	padding: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.nav-previous { border-left: 6px solid #000; }
.nav-next { border-right: 6px solid #000; }
.nav-previous a{ border-left: none; }
.nav-next a{ border-right: none; }
.nav-previous a:hover,
.nav-next a:hover{
	background-color: #eee;
	text-decoration: none;
}
.nav-previous a .meta-nav,
.nav-next a .meta-nav{ display: none;}

.nav-single,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: 'Roboto', '微软雅黑',  Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-rendering: optimizeLegibility;
	color: #000;
	background-color:#fff;
}

a {
	outline: none;
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #5d62fc;
	text-decoration: none;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
hgroup {
	overflow: hidden;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 28px;
	padding: 0 2rem;
	max-width: 1200px;
	max-width: 85.71428571rem;
	position: relative;
	width: 100%;
}
.site {
	box-sizing: border-box;
	padding: 0 28px;
	padding: 0 2rem;
}
.site-content {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}
.widget-area {
	margin: 21px 0 0;
	margin: 1.5rem 0 0;
}

/* Header */
.site-header {
	padding: 0;
	width:100%;
	background-color:#fff;
	padding-top: 1px;
}
.site-header h1,
.site-header h2 {
	text-align: center;
	display: none;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 2px;
	margin-bottom: 0.15rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}


/* Navigation Menu */
.main-navigation {
	margin-top: 7px;
	margin-top: 0.5rem;
	text-align: center;
	/*overflow: hidden;*/
	clear:both;
	/*background-color:#333;*/
}
.main-navigation li {
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 2.6;
}
.main-navigation a {
	color: #000;
	text-decoration: none;
	display: block;
	/*font-family: 'Roboto', '微软雅黑', serif;*/
}
.main-navigation a:hover,
.main-navigation a:focus {
	/*background: #fafafa;*/
	color:#5d62fc;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
	width:100%;
	font-size: 0;

}
.main-navigation ul.nav-menu.toggled-on { display: inline-block; }

.menu-header-menu-container { 
	line-height: 0;
}
.main-navigation ul.nav-menu {
	height:0;
	overflow:hidden; 
	display: inline-block;
	-webkit-transition: height 0.5s; 
	-moz-transition: height 0.5s; 
	transition: height 0.5s;
}
.main-navigation ul.nav-menu li {
	border-top:1px solid rgba(255,255,255,0.2);
}
.main-navigation ul.nav-menu.toggled-on {
	/*height:336px;*/
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	/*background: transparent;*/
	color:#5d62fc;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 24px;
	margin-bottom: 1.714571429rem;
	padding-bottom: 24px;
	padding-bottom: 1.714571429rem;
	border-bottom:1px solid #EDEDED;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 10px;
	margin-bottom: 1rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.646153846;
}
.widget-area .widget li { margin-bottom:10px;}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
	text-decoration:none;
}
.widget-area .widget a:hover {
	color: #21759b;
	text-decoration:underline;
}
.widget-area .widget a:visited {
	color: #5789a0;
}
.widget-area #s {
	width: 45%;
	width: -webkit-calc(100% - 65px);
	width: calc(100% - 65px); /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	margin-top: 42px;
	margin-top: 3rem;
	padding: 0;
	position: relative;
	background-color: #f4f4f4;
	color: #7d7d7d;
}
footer[role="contentinfo"] .entry-content{
	font-size: 14px;
	font-size: 1rem;
}
footer[role="contentinfo"] a {
	color: #7d7d7d;
}
footer[role="contentinfo"] a:hover {
	color: #000;
	text-decoration: none;
}
footer[role="contentinfo"] h3{
	font-size: 16px;
	font-weight: 500;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
footer[role="contentinfo"] strong{
	font-size: 14px;
	font-size: 1rem;
	font-weight: 600;
}
footer[role="contentinfo"] .col-n{
	padding-top: 14px;
	padding-top: 1rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;

}

/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title{
	line-height: 1.2;
	padding-bottom: 10px;
	padding-top: 2px;
	color:#333;
	border-bottom: 1px solid rgba(0,0,0,0.1);;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.comments-link {
	margin-top: 14px;
	margin-top: 1rem;
	margin-bottom: 42px;
	margin-bottom: 3rem;
	text-align: center;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #999;
}

.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
	font-weight: 400;
}
.entry-content h1,
.comment-content h1 {
	font-size: 28px;
	font-size: 2rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2,
.site-blocks .entry-content h2{
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.6;
	color:#000;
	font-weight: 600;
	text-align: left;
}
.entry-content h3,
.comment-content h3 {
	font-size: 19px;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content a,
.comment-content a {
	/*color: #FF8288;*/
	color: #000;
	/*font-size: 16px;
	font-size: 1.14258571rem;*/
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.8;
	font-size: 16px;
	font-size: 1.14258571rem;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 21px;
	margin: 0 0 0 1.5rem;
	line-height: 1.8;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.8;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 8px 16px;
	padding: 0.5714285713rem 1.142885714rem;
}
.entry-content pre:hover,
.comment-content pre:hover { 
	background-color:#fafafa;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 7px 28px 28px 0;
	margin: 0.5rem 2rem 2rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 16px;
	font-size: 1.14258571rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table thead td,
.comment-content table thead td{
	font-weight: bolder;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 10px;
}
.site-content article {
	border-bottom: 1px solid #ededed;
	margin-bottom: 45px;
	margin-bottom: 3.042857143rem;
	padding-bottom: 45px;
	padding-bottom: 3.042857143rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
article.error404 { border-bottom: none}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 0;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}
#searchsubmit { padding:4px 8px;}
.site-info { text-align: center}
.site-logo {
	width:139px;/* height:33px;*/
	max-width:98%;
	display:block; float:none; margin:1.5rem auto 0 auto; overflow: hidden;
}
.site-logo img {width:100%; height:auto}
.site-title,
.site-description { clear:right;}
.tagcloud { overflow:hidden;}
.tagcloud a {padding:3px; float:left; display:inline-block; 
	-webkit-transition: background 0.2s ease;
	transition: background 0.2s ease;}
.tagcloud a:hover { text-decoration: none!important; background-color:#333; color: #fff!important }


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}
/*wp-pagenavi*/
.wp-pagenavi {
	clear: both;
	text-align: center;
	margin: 3rem auto;
}
.wp-pagenavi a,
.wp-pagenavi span {
	border:none;
	min-width: 30px;
	height: 30px;
	padding: 0 12px!important;
	display: inline-block;
	line-height: 30px;
	border-radius: 4px;
	vertical-align: middle;
	box-sizing: border-box;
}
.wp-pagenavi span.pages{
	width:auto;
	margin-right:10px;
}
.wp-pagenavi a{
	text-decoration: none;
	color:#4f4f4f;
	padding: 6px 12px;
	background-image:none;
	background-color:#f5f4f2;
	border:none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	font-size:15px;
	font-size:1.07142857rem;
	display: inline-block;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
	color:#fff;
	background-image:none;
	background-color:#0a3e52;
	text-decoration: none;
	font-weight: normal;
}
.wp-pagenavi span.pages {
	border: none;
}

/*gravity forms*/
.gform_wrapper.gf_browser_chrome .gform_body {
	width: 100%;
}
.gform_wrapper .top_label .gfield_label,
.gform_wrapper .left_label .gfield_label {
	font-weight: normal!important;
}
.gform_wrapper li.gfield.gfield_error,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: #ffe6b1!important;
	border-top: 1px solid #b78123!important;
	border-bottom: 1px solid #b78123!important;
}
.gform_wrapper div.validation_error {
	color: #b78123!important;
}
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
	margin: 0;
	font-size: 16px!important;
}
.gform_wrapper .left_label .gfield_label {
	width: 30%!important;
	margin: 0!important;
}
.gform_wrapper form .gform_body .left_label li.gfield_html_formatted,
.gform_wrapper form .gform_body .right_label li.gfield_html_formatted{
	margin-left: 0%!important;
	width: 100%;
}
.gform_wrapper .ginput_complex label {
	padding: .625em 0 1em;
}
.gform_confirmation_message{
	line-height: 1.6;
    font-size: 16px;
    color: #0a3e52;
}
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]){
	padding: 6px 6px;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 2px!important;
}
@media screen and (min-width: 768px) {
	.gform_wrapper .left_label div.ginput_complex,
	.gform_wrapper .right_label div.ginput_complex {
		width: 35.5%!important;
	}
}
/*baidu map*/
.iw_poi_title {color:#e83c16;font-size:14px;font-weight:bold;overflow:hidden;padding-right:13px;white-space:nowrap}
.iw_poi_content {font:12px arial,sans-serif;overflow:visible;padding-top:4px;white-space:-moz-pre-wrap;word-wrap:break-word}


/* =Media queries
-------------------------------------------------------------- */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}
@media screen and (min-width: 600px) {

	.friend-link li,
	.footer-menu li {
		width:32%;
	}
}

/* Minimum width of 768 pixels. */
@media screen and (min-width: 768px) {
	hgroup{
		overflow: visible;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 1200px;
		/*max-width: 71.4285rem;
		overflow: hidden;*/
	}
	.site-narrow{
		max-width: 880px;
	}
	.site-medium{
		max-width: 960px;
	}
	.site-logo{

	}
	.site-content {
		float: left;
		/*width: 65.104166667%;*/
		width: 76%;
	}
	body.template-front-page .site-content,
	body.attachment .site-content,
	body.full-width .site-content,
	div.full-width,
	section.full-width {
		width: 100%;
	}
	.widget-area {
		float: right;
		/*width: 26.041666667%;*/
		width: 20%;
	}
	.site-header {
		/*min-height: 91px;*/
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
		float:left;
		width: 80%;
		width:-webkit-calc(100% - 95px);
		width:calc(100% - 95px);
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.546153846;
		margin-bottom: 0;
	}
	.main-navigation {
		
	}
	.main-navigation ul.nav-menu{
		overflow: visible;
	}
	.main-navigation ul.nav-menu.toggled-on {
		margin-top: 0;
		margin-bottom: 0
	}
	.main-navigation ul.nav-menu li {
		border-top:none;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		height:auto!important;
		display: inline-block !important;
		text-align: center;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li {
		padding:0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
		font-size: 15px;
		font-size: 1.071428571rem;
	}
	.main-navigation li a {
		padding:0 21px;
		padding:0 1.5rem;
		display: block;
		line-height: 3;
		/*text-transform: uppercase;*/
		white-space: nowrap;
		-webkit-transition:0.2s all;
		transition:0.2s all;
	}

	.main-navigation .current-menu-item a:hover,
	.main-navigation .current-menu-ancestor a:hover,
	.main-navigation .current_page_item a:hover,
	.main-navigation .current_page_ancestor a:hover,
	.main-navigation a:hover,
	.main-navigation a:focus{
		color: #5d62fc;
		/*background-color: #fff;*/
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a  {
		color: #5d62fc;
		/*background-color: #fff;
		/*font-weight: bolder;*/
		/*background-image: url(images/bg_nav_current.png);
		background-repeat: repeat-x;*/
	}
	.main-navigation .nav-menu > .current-menu-item,
	.main-navigation .nav-menu > .current-menu-ancestor,
	.main-navigation .nav-menu > .current_page_item,
	.main-navigation .nav-menu > .current_page_ancestor{
		position: relative;
	}

	.main-navigation li {
		position: relative;
	}
	.main-navigation li ul {
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 50;
		height: 1px;
		width: 1px;
		overflow: hidden;
		clip: rect(1px, 1px, 1px, 1px);
		left:-webkit-calc(50% - 96px);
		left:calc(50% - 96px);
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li:focus > ul,
	.main-navigation .focus > ul {
		border-left: 0;
		clip: inherit;
		overflow: inherit;
		height: inherit;
		width: inherit;
		box-shadow: 0px 0 12px rgba(0, 0, 0, .08);
		border-radius: 10px;
		background:#fff;
	}
	.main-navigation ul li:hover > ul:before,
	.main-navigation ul li:focus > ul:before,
	.main-navigation .focus > ul:before {
		content: "";
		display:block;
		width: 1px;
		height: 1px;
		border:10px solid transparent;
		border-bottom: 8px solid #fff;
		position: absolute;
		left: calc(50% - 8px);
		top:-16px;
	}
	.main-navigation li ul li a {
		text-align: center;
		border-top: 1px solid rgba(255,255,255,0.2);
		display: block;
		line-height: 3;
		padding:0;
		/*font-size: 11px;
		font-size: 0.785714286rem;*/
		/*line-height: 2.181818182;*/
		/*padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;*/
		width: 200px;
		white-space: normal;
	}
	.main-navigation li ul li a:hover,
	.main-navigation li ul li a:focus {
		color: #5d62fc;
	}

	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
	
	.footer-menu {
		display: block;
		/*margin-bottom: 14px;
		margin-bottom: 1rem;*/
	}
	#hgroup-language{
		display: inline-block;
		text-align: center;
		width: 100%;
		margin-bottom: 14px;
		margin-bottom: 1rem;
	}
}

/* Minimum width of 1024 pixels. */
@media screen and (min-width: 1024px) {
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	.site-logo{
		float:left;
		margin:20px;
		margin-right:80px;
		margin-left:0;
	}
	.main-navigation {
		/*float: left;*/
		clear: none;
		width: 50%;
		width: -webkit-calc(100% - 425px);
		width: calc(100% - 425px);
		margin-top: 17px;
		display: inline-block;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		text-align: left;
	}
	.main-navigation li a{
		padding: 0 21px;
	}
	#hgroup-language{
		text-align: right;
		width: 200px;
		margin-bottom: 0;
	}
	#hgroup-language .button-small{
		vertical-align: middle;
	}
}
/* Minimum width of 1200 pixels. */
@media screen and (min-width: 1200px) {
	.site-header{
		position: fixed;
		z-index: 99;
		top:0;
		left:0;
		background-color: transparent;
		border-bottom: 1px solid rgba(255,255,255,0.2);
	}
	.site-logo{
		width:139px;
		height:33px;
	}
	.admin-bar .site-header{
		top:32px;
	}
	.main-navigation {
		margin-top: 12px;
	}
	.main-navigation li {
		padding: 0 0;
		padding: 0 0;
	}
	.main-navigation li a {
		background-color: transparent;
		padding: 0 35px;
		padding: 0 2.5rem;
		line-height: 3.8;
	}
	.main-navigation li ul {
		left:-webkit-calc(50% - 100px);
		left:calc(50% - 100px);
	}
	.main-navigation .nav-menu > .current-menu-item:after,
	.main-navigation .nav-menu > .current-menu-ancestor:after,
	.main-navigation .nav-menu > .current_page_item:after,
	.main-navigation .nav-menu > .current_page_ancestor:after{
		width:calc(100% - 56px);
		left:28px;
		top: 55px;
	}
	
	/* dynamic floating nav bar */
	.site-header{
		-webkit-transition: all 0.2s; 
		-moz-transition: all 0.2s; 
		transition: all 0.2s;
	}
	.site-header *,
	.site-header .main-navigation .nav-menu > .current-menu-item:after,
	.site-header .main-navigation .nav-menu > .current-menu-ancestor:after,
	.site-header .main-navigation .nav-menu > .current_page_item:after,
	.site-header .main-navigation .nav-menu > .current_page_ancestor:after {
		-webkit-transition: all 0.2s; 
		-moz-transition: all 0.2s; 
		transition: all 0.2s;
	}
	.site-header.scroll {
		min-height: 0;
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
		/*position: fixed;
		z-index: 10;
		top: 0;*/
		background-color: #fff;
		text-shadow: none;
	}
	.site-header.scroll .main-navigation {
		margin-top:6px;
	}
	.site-header.scroll .main-navigation li a {
		line-height: 3;
		/*color: #333;*/
	}

	.site-header.scroll .main-navigation .current-menu-item > a,
	.site-header.scroll .main-navigation .current-menu-ancestor > a,
	.site-header.scroll .main-navigation .current_page_item > a,
	.site-header.scroll .main-navigation .current_page_ancestor > a,
	.site-header.scroll .main-navigation a:hover,
	.site-header.scroll .main-navigation a:focus{
		/*color: #0a3e52;*/
		/*background-color: #000;*/
	}
	.site-header.scroll .main-navigation .nav-menu > .current-menu-item:after,
	.site-header.scroll .main-navigation .nav-menu > .current-menu-ancestor:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_item:after,
	.site-header.scroll .main-navigation .nav-menu > .current_page_ancestor:after {
		top: 46px;
	}
	.site-header.scroll .site-logo {
		margin-top:10px;
		margin-bottom:10px;
	}

}

/*return Top button*/
.btn-float{
	position:fixed;
	line-height:50px;
	z-index: 6;
	border-radius: 5px 0 0 5px;
	background-color:#009d55;
	background-size: 50% 50%;
	background-position: center center;
	background-repeat: no-repeat;
	color:#fff;
	width:40px;
	height:40px;
	display:block;
	right:0;
	bottom:20px;
	-webkit-opacity:1;
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: background 0.2s, -webkit-opacity 0.2s; 
	-moz-transition: background 0.2s, -moz-opacity 0.2s; 
	transition: background 0.2s, opacity 0.2s;
}
.btn-float:hover{
	background-color:#006e3b;
}
#returnTop {
	
}
#returnTop_a{
	position: absolute;
	top: -2px;
	left: 8px;
	width: 0;
	height: 0;
	border-width: 10px 12px;
	border-style: dashed dashed solid;
	border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #FFF;
	-webkit-transition: top 0.2s; 
	-moz-transition: top 0.2s; 
	transition: top 0.2s;
}
#returnTop_b{
	position: absolute;
	top: 18px;
	left: 14px;
	width: 12px;
	height: 12px;
	background: #FFF;
	-webkit-transition: top 0.2s; 
	-moz-transition: top 0.2s; 
	transition: top 0.2s;
}
#returnTop.hide{
	-webkit-opacity:0;
	-moz-opacity:0;
	opacity:0;
	background-color:transparent;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#00000000', endColorstr='#00000000');
	pointer-events: none;
}
#returnTop.hide #returnTop_a,
#returnTop.hide #returnTop_b { display: none }
:root #returnTop.hide { filter:none; }
#returnTop:hover #returnTop_a { top: -4px; }
#returnTop:hover #returnTop_b { top: 16px; }

/*QR Code button*/
#qrCode {
	background-image:url(images/icon_qrcode.gif);
}
#qrCode_cont {
	position: absolute;
	bottom: 0;
	right: 50px;
	background:no-repeat #fff;
	overflow: hidden;
	height:0;
	width: 0;
	border:none;
	-webkit-transition: height 0.2s, width 0.2s;
	-moz-transition: height 0.2s, width 0.2s;
	transition: height 0.2s, width 0.2s;
}
#qrCode:hover #qrCode_cont{
	text-align: center;
	height:168px;
	width: 147px;
	padding:5px;
	border:1px solid #f2f2f2;
	line-height: 1;
}
#qrCode #qrCode_cont img {
	display: inline-block;
}
#qrCode #qrCode_cont span {
	display: inline-block;
	color:#333;
	font-size: 12px;
}
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	#qrCode{
		display:block;
	}
	#returnTop {
	    bottom:61px;
	}
}



.video-js { max-width:100% }
.vjs-poster { background-color:transparent; }
.video-js .vjs-big-play-button {
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: none;
	width: 60px;
	height: 60px;
	line-height: 56px;
	border:3px solid #fff;
	border-radius: 50%;
	background-color: transparent;
}
.video-js .vjs-control:before {
	line-height: 1.9;
}

/*arrow on top nav*/
.flaticon-down-arrow:after {
	font-size:12px;
}
@media screen and (max-width: 767px) {
	.main-navigation .flaticon-down-arrow:after,
	#mobileMenu .flaticon-down-arrow:after{
		display: none;
	}
}

/*main menu for mobile side*/
#topFloatBar {
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
	padding: 0;
	background: url(images/logo.png) no-repeat 21px 12px #fff;
	background-size: 139px auto;
	z-index: 10;
}
html[lang="en-US"] #topFloatBar{
	background-image: url(images/logo-en.png) ;
}
body.admin-bar #topFloatBar {
	/*top:32px;*/
}
.topFloatBar-btn{
	height: 56px;
	width: 46px;
	line-height: 56px;
	min-height: 56px;
	font-size: 21px;
	text-align: center;
	float: right;
}
.topFloatBar-btn a{
	display: block;
}
.topFloatBar-btn:hover{
	background-color: rgba(255,255,255,0.3);
}
#topFloatBar_m {
	display: block;
	height: 56px;
	width: 20%;
	/* width: calc(100% - 100px); */
	margin-left: 35%;
	float: left;
}

#topFloatBar #mobileMenu {
	margin-top: 46px;
	display: block;
	top: 46px;
	left: 0;
	
	width: 100%;
	/*box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);*/
	/*opacity:0;*/
	height: 0;
	overflow: hidden;
	-webkit-transition: top 0.2s, display 0.2s, -webkit-opacity 0.2s, height 0.2s;
	-moz-transition: top 0.2s, display 0.2s, -moz-opacity 0.2s, height 0.2s;
	transition: top 0.2s, display 0.2s, opacity 0.2s, height 0.2s;
}
#topFloatBar.toggled-on {
	height: auto;
	width: 100%;
}
#topFloatBar.toggled-on #mobileMenu {
	top: 56px;
	/*opacity:1;*/
	height: 318px;
	/*many need to chage to fit the mobile menu height*/
	overflow: visible;
}
#topFloatBar #mobileMenu a {
	color: #000;
	text-decoration: none;
	display: block;
	padding: 0 15px;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid transparent;
	border-top: 1px solid rgba(255,255,255,0.3);
	font-size: 16px;
	font-size: 1.142857rem;
}
#topFloatBar #mobileMenu ul li.current_page_item>a,
#topFloatBar #mobileMenu ul li.current-menu-item>a,
#topFloatBar #mobileMenu ul li ul li.current-page-ancestor a,
#topFloatBar #mobileMenu ul li a:hover {
	/*color:#000;*/
	background-color: rgba(255,255,255,0.3);
	border-top: 1px solid rgba(255,255,255,0.3);
}
#topFloatBar #mobileMenu li a {
	padding-left: 25px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li > a {
	padding-left: 58px;
}
#topFloatBar #mobileMenu ul li ul.sub-menu > li.menu-item-has-children > a {
	padding-left: 40px;
	width: -webkit-calc(100% - 80px);
	width: calc(100% - 80px);
}

#topFloatBar #mobileMenu ul li a {
	/*background: #222a35;*/
	box-sizing: border-box;
}
#topFloatBar #mobileMenu ul li.menu-item-has-children > a {
	padding-right: 0;
	width: 90%;
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	display: inline-block;
}
#topFloatBar #mobileMenu li a.menu-item-switch,
#topFloatBar #mobileMenu li a.menu-item-switch:hover {
	background-image: url(images/icons_menu_2.png);
	background-position: 0 0!important;
	width: 40px!important;
	display: inline-block!important;
	padding: 0!important;
	height: 42px;
	vertical-align: bottom;
}
#topFloatBar #mobileMenu li.on>a.menu-item-switch {
	background-position: 0 -34px!important;
}
#topFloatBar #mobileMenu li ul.sub-menu li {
	height: 0;
	overflow: hidden;
}
#topFloatBar #mobileMenu li.on ul.sub-menu li {
	/*height: 36px;*/
	height:auto;
}
#topFloatBar #mobileMenu li.off ul.sub-menu li {
	height: 0!important;
}
#masthead{
	display: none;
}
@media screen and (min-width:768px){
	#topFloatBar {
		display: none;
	}
	#masthead{
		display: block;
	}
}


.full-padding {
	padding-left:0;
	padding-right:0;
}
.full-padding img {
	max-width: 100%;
}
.category-title {
	margin-bottom: 8px;
	margin-top: 21px;
}
.site-blocks p,
.site-blocks ul,
.site-blocks ol {
	margin: 14px 0 21px 0;
	margin: 1rem 0 1.5rem 0;
	font-size: 15px;
	font-size: 1.07147285rem;
	line-height: 1.8;
	color: #959595;
}
.site-blocks p.bigger,
.site-blocks li.bigger{
	font-size: 17px;
	font-size: 1.2142857rem;
}
.site-blocks p.smaller,
.site-blocks li.smaller{
	font-size: 14px;
	font-size: 1rem;
}
.site-blocks strong{
	color: #000;
}
.site-blocks h1 {
	font-size:28px;
	font-size:2rem;
	font-weight: 500;
	margin:21px 0 21px 0;
	margin:1.5rem 0 1.5rem 0;
	line-height: 1.5;
}
.site-blocks h1 strong{
	color: #5d62fc;
}
.site-blocks h2 {
	line-height: 1.6;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
	color: #333;
}
.site-blocks h2 sub{
	color: red;
	font-weight: 300;
	font-size: 14px;
	display: inline-block;
	vertical-align: middle;	
}
.site-blocks .entry-content h2 {
    margin: 24px 0;
    margin: 1.714285714rem 0;
}
.site-blocks .entry-content h2:first-child,
.site-blocks .entry-content h3:first-child,
.site-blocks .entry-content p:first-child,
.site-blocks .entry-content ul:first-child,
.site-blocks .entry-content ol:first-child{
	margin-top: 0;
}
.site-blocks .entry-content h2:last-child,
.site-blocks .entry-content h3:last-child,
.site-blocks .entry-content p:last-child,
.site-blocks .entry-content ul:last-child,
.site-blocks .entry-content ol:last-child{
	margin-bottom: 0;
}
.site-blocks .site{
	overflow: hidden;
	margin:70px auto;
	margin:5rem auto;
}
.site-blocks .sub-title{
	display: block;
	text-align: center;
	color: #999;
	font-size: 10px;
    font-family: Arial;
    /*text-transform: uppercase;*/
	margin-bottom: 21px;
	margin-top: 0;
}
.site-blocks .sub-title:hover{
	/*text-decoration: none;
	color:#111;*/
}
@media screen and (min-width: 1024px){
	.site-blocks{
		
	}
	.site-blocks h1 {
		font-size:35px;
		font-size:2.5rem;
	}
}

.footerSubscriber {
	width:90%;
	max-width:300px;
	margin:0 auto;
}
.footerSubscriber form{
	margin-top:7px;
	margin-top:0.5rem;
}
.footerSubscriber #mail{
	width: -webkit-calc(100% - 105px);
	width: calc(100% - 105px);
	line-height: 2.1;
	border-radius: 15px;
	padding: 0;
	padding-left: 15px;
	border-width: 0;
	outline: none;
	height:30px;
}
.footerSubscriber #subscribe{
	width:80px;
	padding: 6px 0;
	font-weight: 400;
	border-radius: 15px;
	outline: none;
}
.footerSubscriber p{
	margin:21px 0;
	margin:1.5rem 0;
}
.footerSubscriber p a{
	display: inline-block;
	vertical-align: middle;
	margin-left: 6px;
	font-size: 0;
}

.footerContent {
	text-align: center
}
.footerConnect img{
	border:3px solid #fff;
	width: 90px;
	height: 90px;
}
.footerLink {
	text-align: center;
	font-size: 13px;
	font-size: 0.928571429rem;
	padding-bottom: 14px;
	padding-bottom: 1rem;
	padding-top: 14px;
	padding-top: 1rem;
	line-height: 1.6;
}
.friend-link {
	display: inline; 
}
.footer-menu {
	/*display: none;*/
}
.copyright{
	margin-top:14px;
	margin-top:1rem;
	margin-bottom:14px;
	margin-bottom:1rem;
	font-weight:400;
}
.friend-link li,
.footer-menu li {
	display: inline-block; 
	padding:0;
	width:48%;
}
footer .site-info {
	margin:0 auto;
	padding-top: 35px;
	padding-bottom: 35px;
}

/*homepage*/
#home-headimage{
	position: relative;
	text-align: center;
}
#home-cs h1,
#home-f1 h1,
#home-opt h1,
#home-headimage h1{
	margin-top: 0;
}
span.price{
	font-size: 28px;
	font-size: 2rem;
	color: #ff6662;
	font-weight: 600;
}
#home-cs .button,
#home-opt .button,
#home-f1 .button{
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
#home-opt h2{
	margin-bottom: 10px;
}
.graybg li{
	color: #000;
}
.graybg{
	box-sizing: border-box;
	background:#f8f8f8;
	border-radius: 14px;
	padding:21px;
	padding:1.5rem;
	margin-bottom: 21px;
}
@media screen and (min-width: 768px){
	#home-headimage{
		text-align: left;
	}
	#home-cs .button,
	#home-opt .button,
	#home-f1 .button{
		margin-bottom: 0;
	}
}
@media screen and (min-width:1200px){
	#home-headimage {
		margin-top: 50px;
	}
	#home-headimage .col-7,
	#home-cs .entry-content{
		text-align: right;
	}
	#home-cs .bigger{
		max-width: 500px;
	}

}
.features-box{
	margin-bottom: 21px;
	margin-bottom:1.5rem;
	margin-top: 21px;
	margin-top:1.5rem;
	display: block;
	width: 100%;
	min-height: 395px;
	background:#fff;
	box-shadow: 0px 0 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding:40px;
	border:1px solid #f6f6f6;
	border-radius: 15px;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
}
.features-box:hover{
	text-decoration: none;
	background:#f6f6f6;
	/*transform:scale(1.02);*/
	box-shadow:none;
}
.features-box img{
	display: block;
	margin: 14px auto 28px auto;
	margin: 1rem auto 2rem auto;
	width: 150px;
	height: auto;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
}
.features-box:hover img{
	transform:scale(1.04);
}
.features-box h2{
	text-align: left;
	margin-bottom: 7px;
	margin-bottom: 0.5rem;
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.3;
}
.features-box p{
	margin-top: 7px;
	margin-top: 0.5rem;
}
span.more{
	display: block;
	color: #5d62fc;
}
span.more:before{
	content: "";
	width: 14px;
	height: 12px;
	vertical-align: middle;
	display: inline-block;
	margin-right: 7px;
	background:url(images/arrow.png) no-repeat;
	background-size: 100% auto;
}
a.more {
	float: right;
	width:auto;
	height:22px;
	color:#333;
	font-size: 12px;
	line-height: 22px;
	margin:0;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	border:1px solid #d3d3d3;
	border-radius: 2px;
	background:#fff;
	padding:0 12px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
a.more i{
	color: #0a3e52;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}
a.more:hover {
	color:#0a3e52;
}
a.more:hover i{
	-webkit-transform:rotate(90deg);
	transform:rotate(90deg);
}

.school-box{
	height: 256px;
	margin-bottom: 21px;
	margin-bottom:1.5rem;
	margin-top: 21px;
	margin-top:1.5rem;
	display: block;
	width: 100%;
	background:#fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding:40px;
	border:1px solid #f6f6f6;
	border-radius: 15px;
	-webkit-transition:all 0.3s;
	transition:all 0.3s;
}
.school-box:hover{
	text-decoration: none;
	background:#f6f6f6;
	box-shadow:none;
}
.school-box h3{
	margin-top: 10px;
	height: 50px;
	font-size: 18px;
	font-size: 1.285714rem;
	line-height: 1.2;
}
.school-box p{
	margin:14px 0;
	margin:1rem 0;
	height: 36px;
	line-height: 36px;
	overflow: hidden;
}
.school-box p span{
	display: block;
	width: 40%;
	float: right;
}
.school-box p span{
	display: block;
	width: 48%;
	float: right;
	text-align: right;
}
.school-box p.pricing{
	color: #000;
	box-sizing: border-box;
	background:#f8f8f8;
	border-radius: 18px;
	margin:-8px;
	padding:0 8px;
}
.school-box p.pricing span{
	color: #5d62fc;
	font-weight: 600;
	font-size: 16px;
}
.school-box-logo{
	width: 100px;
	height: auto;
}
.school-box-last{
	text-align: center;
	color: #5d62fc;
}
.school-box-last p{
	position: relative;
	margin: 60px auto auto 0;
	height: auto;
	width: auto;
	display: inline-block;
	line-height: 1.8;
	color: #5d62fc;
	overflow: visible;
}
.school-box-last p:after{
	position: absolute;
	content: "";
	width: 14px;
	height: 12px;
	right: -20px;
	bottom: 8px;
	vertical-align: middle;
	display: inline-block;
	background: url(images/arrow.png) no-repeat;
	background-size: 100% auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px){
	#home-school .col-n{
		width: 50%;
	}
}
#home-swiper .site{
	margin-top: 0;
	padding-top: 5rem;
	border-top: 1px solid #f4f4f4;
}
#home-swiper li{
	position: relative;
	color: #000;
	padding-bottom: 7px;
	padding-left: 28px;
}
#home-swiper li:before{
	left: 0;
	top: 5px;
	position: absolute;
	display: inline-block;
	content: "";
	width: 12px;
	height: 12px;
	border:2px solid #f4927e;
	border-radius: 50%;
}
.swiper-button-prev,
.swiper-button-next{
	width: 35px;
	height: 35px;
	background:url(images/arraw-left.png);
}
.swiper-button-prev:after,
.swiper-button-next:after{
	display: none;
}
.swiper-button-prev{
	left: 0;
}
.swiper-button-next{
	background:url(images/arraw-right.png);
	right: 0;
}
#home-swiper .site{
	position: relative;

}
.footer-icon{
	float: left;
	display: block;
	margin-right: 10px;
	margin-top: 7px;
}
.footer-left{
	text-align: left;
}
.footer-left p{
	font-size:13px;
	font-size:0.9285714rem;
	line-height: 1.5;
}
.footer-left span{
	color: #f48c77;
	font-weight: 600;
	font-size: 20px;
}

.footer-right{
	text-align: left;
}
.footer-right .col-n{
	min-height: 160px;
}
.footer-right strong{
	font-weight: 600;
}
.footer-right strong,
.footer-right a{
	display: block;
}
.footer-bottom{
	margin-top: 21px;
	margin-top: 1.5rem;
	text-align: left;
	font-size: 12px;
}
.footer-logo{
	opacity: 0.5;
	display: block;
	float:left;
	width: 102px;
	height: 24px;
	margin:5px 21px 0 0;
}
@media screen and (max-width: 767px){
	.footer-bottom,
	.footer-right{
		text-align: center;
	}
	.footer-logo{
		float: none;
		margin:14px auto;
	}
}

/*inner pages*/
div#content {
	min-height: 150px;
}
.top-image {
	background-position: center top;
	background-repeat: no-repeat;
	height: 70px;
	background-size:auto 100%;
	width:100%;
}
#top-inner {
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	/*background-image: url(images/bg_top_inner.jpg);*/
	background-repeat: no-repeat;
   	height:180px;
	color: #000;
	padding:0 28px;
}
#top-inner.auto-height{
	height: auto;
	height: unset;
}
#top-inner .entry-title{
	font-size: 28px;
	font-size:2rem;
	text-align: center;
	margin-top: 80px;
	letter-spacing: 5px;
	font-weight: 600;
}
#top-inner.top-inner-news-single .entry-title{
	letter-spacing: 0;
}
#top-inner .entry-title-sub{
	margin-top: 21px;
	margin-top: 1.5rem;
	text-align: center;
	font-size: 14px;
	font-size:1rem;
	font-weight: 200;
	line-height: 1.5;
	color: #959595;
}
#top-inner .entry-date{
	letter-spacing: 0;
}
.inner-menu-sub{
	width:100%;
	margin-top: 42px;
	margin-top: 3rem;
	border-bottom: #dddddd 1px solid;
}
.menu-sub{
	width: 100%;
	margin:0;
	list-style: none;
	text-align: center;
}
@media screen and (min-width: 1200px){
	.menu-sub{
		justify-content: center;
	}
}
.menu-sub li{
	font-size: 16px;
	/*display: inline-block;*/
	width: auto;
	margin-right: 2px;
}
.menu-sub li a{
	display: block;
	padding:10px 22px;
	border:1px solid #dddddd;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	text-decoration: none;
	color: #999;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.menu-sub li a:hover,
.menu-sub li.current_page_item a,
.menu-sub li.current-cat a{
	color:#fff;
	background:#9c8f34;
	border-color: #9c8f34;
}

h1.page-title,
h2.page-title {
	position: relative;
	line-height: 1.4;
	padding-bottom: 28px;
	padding-top: 2px;
	color:#333;
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 50px;
	margin-top: 0;
	text-align: center;
}
h1.page-title{
	font-size: 28px;
	font-size: 2rem;
}
.page-title:after{
	display: block;
	position: absolute;
	content:"";
	background:#5d62fc;
	width: 50px;
	height:3px;
	left:calc(50% - 25px);
	bottom: 0;
}
.content-with-sub {
	min-height: 300px;
}
.sub-nav {
	margin: 21px 0 28px 0;
	margin: 1.5rem 0 2rem 0;
	width:100%;
	overflow: hidden;
}
.sub-nav ul {
	overflow: hidden;
	background-color: #f2f2f2;
}
.sub-nav li {
	background-color: #fafafa;
	height:35px;
	line-height: 35px;
	margin-top: 1px;
	overflow: hidden;
	width:50%;
	float:left;
}
.sub-nav li a{
	display: block;
	padding-left: 20px;
	border-right:1px solid rgba(0,0,0,0.1);
}
.sub-nav li a:hover,
.sub-nav li.current_page_item{
	text-decoration: none;
	background-color: #fff;
}

.sub-nav li.current-menu-item,
#menu-knowledge li.current_page_item {
	background-color: #fff;
}
.sub-nav-title {
	text-align: center;
	color:#000;
	font-size: 16px;
	font-size: 1.225714286rem;
	height:35px;
	line-height:35px;
	overflow: hidden;
	background-color: #fff;
	border-bottom: 2px solid #008dd7;
}
.sub-nav-title span {
	display: inline-block;
	padding-left:24px;
}
.sub-nav li.sub-nav-name {
	border-left:none;
	line-height:28px;
	height:28px;
	background-color: #fcfcfc;
	width: 100%;
	text-align: center;
}
.sub-nav li.sub-nav-name span{
	display: inline-block;
	padding-left:23px;
	color:#e83c16;
}

.block-narrow-center{
	text-align: center;
}
.block-narrow-center .site{
	margin-top: 0;
}
/*news pages*/
#block-news .site,
#block-news-single .site{
	margin-top: 0;
}
#top-inner.top-inner-news-single{
	min-height: 220px;
}
#top-inner.top-inner-news-single .entry-title{
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
}
.post_container{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
	margin-top: 21px;
	margin-top: 1.5rem;
	display: block;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding: 40px;
	border: 1px solid #f6f6f6;
	border-radius: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.post_container:hover{
	text-decoration: none;
    background: #f6f6f6;
    box-shadow: none;
}
.post_container .post_title{
	line-height: 1.5;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.post_container .post-date{
	font-size: 12px;
	margin-bottom: 10px;
}
.post_container .post_content{
	line-height: 1.4;
	font-size: 14px;
	font-size: 1rem;
	margin-bottom: 10px;
}
@media screen and (min-width: 1200px){
	.post_container{
		min-height: 323px;
	}
	#top-inner.top-inner-news-single .entry-title{
		font-size: 28px;
		font-size: 2rem;
	}
}

/*faq page*/
.archive-list-faq{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.archive-list-faq li{
	margin-top: 21px;
	margin-top: 1.5rem;
}
.archive-list-faq li a{
	display: block;
	line-height: 42px;
	height: 42px;
	background:#f4f4f4;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	text-align: center;
	border-radius: 10px;
}
.archive-list-faq li a span{
	font-size: 12px;
	color: #999;
}
.archive-list-faq li a:hover span,
.archive-list-faq li a.current span{
	color: #fff;
}
.archive-list-faq li a:hover,
.archive-list-faq li a.current{
	text-decoration: none;
	background-color: #5d62fc;
	color: #fff;
}
.qa-container{
	display: block;
	background:#f4f4f4;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 21px;
	padding: 1.5rem;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.qa-container-out{
	border-top:1px solid #f4f4f4;
	padding-top: 28px;
	margin:21px auto;
	margin:1.5rem auto;
}
.qa-container-title{
	font-size: 18px;
	font-weight: 600;
}
.qa-container-content,
.qa-container-content p{
	font-size: 15px;
	font-size: 1.0714rem;
}
.qa-container-content p:last-child{
	margin-bottom: 0;
}
.qa-cont{
	display: none;
}
.qa-cont.current{
	display: block;
}
#block-features .site,
#block-services .site{
	margin-top: 0;
}
.faq-title{
	cursor: pointer;
}
.faq-arraw{
	width: 23px;
	height: 14px;
	background:url(images/arraw-up.png) no-repeat;
	display: inline-block;
	float: right;
	margin-top: 7px;
	margin-top: 0.5rem;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.faq-item.current .faq-arraw{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	filter: brightness(0);
}
.faq-item{
}
.faq-cont{
	box-sizing: border-box;
	overflow: hidden;
	height: 0;
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
.faq-cont-inner{
	box-sizing: border-box;
}
.faq-item.current .faq-cont{
	height: unset;
}
.faq-item.current .faq-title{
	margin-bottom: 7px;
	margin-bottom: 0.5rem;

}

/*contact us page*/
#contact-middle {
	margin-bottom: 0;
	margin-top: -21px;
	margin-top: -1.5rem;
	display: block;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding: 20px;
	border: 1px solid #f6f6f6;
	border-radius: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
}
#contact-middle p{
	margin: 5px 0;
	color: #000;
}
#contact-middle a{
	color: #5d62fc;
}
#contact-middle big{
	font-size: 120%;
	font-weight: 500;
}
.contact-qr{
	line-height: 1.3;
}
.qr-wechat{
	width: 150px;
	height: 150px;
}
.contList h3 {
	margin-bottom: 6px;
	font-weight: normal;
}
.contList {
	margin-top: 14px;
	margin-top: 1rem;
}
.contList li {
	list-style:none;
	overflow: hidden;
	line-height: 22px;
	padding: 5px 0;
	margin-left: 0;
}
.contList li strong {
	display:block;
	width:180px;
	height:30px;
}
.itemName {
	display: inline-block;
	width:90px;
	color:#999;
}
#contact-middle .col-6{
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
/*find doctor / hospital */
.find-item{
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	border-radius: 15px;
	margin-top: 28px;
	margin-top: 2rem;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
.find-item-logo{
	box-sizing: border-box;
	background: #dfebfe;
	padding: 14px;
	border-radius: 15px 15px 0 0;
}
.find-item-txt{
	padding: 14px 14px 28px 14px;
}
.icn-global{
	display: block;
	margin:21px auto 14px auto;
	width: 21px;
	height: 21px;
	background: url(images/icon-global-s.png);
}
.icn-phone{
	display: block;
	margin:21px auto 14px auto;
	width: 21px;
	height: 21px;
	background: url(images/icon-phone-s.png);
}
.cat-sickness{
	cursor: pointer;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
	margin-top: 21px;
	margin-top: 1.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding: 21px;
	border: 1px solid #f6f6f6;
	border-radius: 15px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
}
.cat-sickness img{
	width: 150px;
	height: 123px;
	margin:0 10px;
}
.cat-sickness-txt{
	-webkit-width: calc(100% - 170px);
	width: calc(100% - 170px);
}
.cat-sickness:hover,
.cat-sickness.current{
	text-decoration: none;
	background:#f6f6f6;
	box-shadow:none;
}
#block-sickness-2 .site{
	margin-top: 0;
}
.sickness-tab{
	cursor: pointer;
	display: inline-block;
	width: auto;
	box-sizing: border-box;
	padding: 12px 18px;
	border-radius: 24px;
	margin:4px;
	background:#f4f4f4;
	-webkit-transition:0.2s all;
	transition:0.2s all;
}
.sickness-tab.current{
	background:#7076f9;
	color: #fff;
}
.sickness-content{
	overflow: hidden;
	display: none;
	margin-top: 42px;
	margin-top: 3rem;
}
.sickness-content.current{
	display: block;
}

.sickness-content div.doctor{
	display: block;
	float: right;
	clear: both;
	width: auto;
	position: relative;
	background:#5d62fc;
	padding: 14px 21px;
	padding: 1rem 1.5rem;
	line-height: 1.5;
	border-radius: 10px;
	color: #fff;
	font-size: 13px;
	text-align: right;
	margin-right: 76px;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.sickness-content div.doctor:before{
	content: "";
	display: block;
	width: 68px;
	height: 68px;
	position: absolute;
	right:-76px;
	top: 0;
	background:url(images/avatar-doctor.png) no-repeat;
	background-size: 100% auto;
}
.sickness-content div.patient{
	display: block;
	float: left;
	clear: both;
	width: auto;
	position: relative;
	background:#f4f4f4;
	padding: 14px 21px;
	padding: 1rem 1.5rem;
	line-height: 1.5;
	border-radius: 10px;
	color: #000;
	font-size: 13px;
	text-align: left;
	margin-left: 76px;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
}
.sickness-content div.patient:before{
	content: "";
	display: block;
	width: 68px;
	height: 68px;
	position: absolute;
	left:-76px;
	top: 0;
	background:url(images/avatar-patient.png) no-repeat;
	background-size: 100% auto;
}

@media screen and (min-width:768px){
	#contact-middle {
		text-align: left;
	}
	#contact-middle .contact-txt{
		padding-left: 80px;
	}
	#contact-middle .col-6{
		margin-bottom: 0;
	}
	#top-inner {
		background-size: initial;
		height:220px;
		/*display: block;*/
	}
	#top-inner .entry-title{
		margin-top: 100px;
	}
	.top-image {
		height: 150px;
		background-size:auto 100%;
	}
	
	.sub-nav {
		float: left;
		width:180px;
	}
	.sub-nav-title {
		text-align: left;
	}
	.sub-nav li {
		border-left:3px solid #999;
		width:auto;
		float:none;
	}
	.sub-nav li a{
		border-right:none;
	}
	.sub-nav li a:hover{
	}
	
	.sub-nav li.current-menu-item,
	#menu-knowledge li.current_page_item {
		border-left:3px solid #333;
	}
	.sub-nav li.sub-nav-name {
		text-align: left;
	}
	.sub-nav li.sub-nav-name span{
		padding-left:23px;
	}
	.content-with-sub {
		border-left: 1px solid rgba(0,0,0,0.1);
		width:76%;
		width:-webkit-calc(100% - 210px);
		width:calc(100% - 210px);
		float:right!important;
		padding-left: 28px;
		padding-bottom: 60px;
	}
	.content-left {
		float:left;
		width:76%;
		width:-webkit-calc(100% - 230px);
		width:calc(100% - 230px);
	}
	.content-right{
		float:right;
		width:200px;
	}
	
	div#page {
		clear:both;
		/*margin-bottom: 42px;
		margin-bottom: 3rem;*/
	}
}
@media screen and (min-width:1200px){
	#top-inner {
		height:280px;
	}
	#top-inner .entry-title{
		margin-top: 180px;
		font-size: 35px;
		font-size: 2.5rem;
	}

}

/*product pages*/
#top-inner.product-headimage{
	height: auto;
}
#top-inner.product-headimage,
#top-inner.product-headimage .col-raw,
#top-inner.product-headimage .site,
#block-product-bottom,
#block-product-bottom .site,
#block-product-bottom .col-raw,
#block-pricing-form,
#block-pricing-form .site,
#block-pricing-form .col-raw{
	overflow: visible;
}
.product-headimage{
	background:url(images/bg-product.png) no-repeat bottom center;
	background-size: cover;
}
.product-headimage .site{
	margin-bottom: 0;
}
#block-product .site{
	margin-top: 42px;
	margin-top: 3rem;
}
.tab-product{
	text-align: center;
	width: 100%;
	font-size: 0;
	margin-top: 14px;
	border-bottom: 1px solid #e6e6e6;
}
.tab-product-item{
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	font-size: 16px;
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	box-sizing: border-box;
	width: 25%;
	padding:14px 21px;
}
.tab-product-item.current:after{
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	content: "";
	background:#f0c48a;
}
.tab-product-icon{
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 25px;
	background:url(images/icon-insurance.png) no-repeat;
	background-size: 100% auto;
	filter: brightness(0);
	margin-right: 10px;
}
.tab-product-icon-1{
	background-position: 0 0;
}
.tab-product-icon-2{
	background-position: 0 33.33%;
}
.tab-product-icon-3{
	background-position: 0 66.66%;
}
.tab-product-icon-4{
	background-position: 0 100%;
}
.tab-product-item.current .tab-product-icon{
	filter: brightness(1);
}
@media screen and (max-width: 1023px){
	.tab-product{
		border-bottom:0;
		text-align: left;
	}
	.tab-product-item{
		border: 0;
		line-height: 42px;
		height: 42px;
		background: #f4f4f4;
		-webkit-transition: all 0.2s;
		transition: all 0.2s;
		text-align: center;
		border-radius: 10px;
		padding: 0;
		font-size: 13px;
		font-size: 0.9285714rem;
		margin: 5px;
		width: -webkit-calc(50% - 10px);
		width: calc(50% - 10px);
	}
	.tab-product-item:hover,
	.tab-product-item.current{
		text-decoration: none;
		background-color: #5d62fc;
		color: #fff;
	}
	.tab-product-item.current:after{
		display: none;
	}
	.tab-product-icon{
		display: none;
	}
}
.icon-question{
	display: inline-block;
	width: 86px;
	height: 86px;
	background:url(images/icon-question.png) no-repeat;
	background-size: 100% auto;
}
.tab-content{
	display: none;
}
.tab-content.current{
	display: block;
}
.tab-content h2{
	margin-top: 35px!important;
	margin-top: 2.5rem!important;
	margin-bottom: 14px!important;
	margin-bottom: 1rem!important;
}
#tab-content-3 div.highlight{
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
div.highlight{
	margin-top: 35px;
	margin-top: 2.5rem;
	background:#f8f8f8;
	border:1px solid #ededed;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 28px;
	overflow: hidden;
}
div.highlight h2{
	color: #5d62fc!important;
	margin-top: 0!important;
}
div.highlight b{
	color: #5d62fc;
}

.icon-product{
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	height: 60px;
	background:url(images/icon-product.png) no-repeat;
	background-size: 100% auto;
	margin-right: 10px;
}
.icon-product-1{
	background-position: 0 0;
}
.icon-product-2{
	background-position: 0 33.33%;
}
.icon-product-3{
	background-position: 0 66.66%;
}
.icon-product-4{
	background-position: 0 100%;
}
.product-feature{
	margin-top: 28px;
	margin-top: 2rem;
}
div.highlight .icon-question{
	display: none;
}
div.product-feature-item{
	margin-bottom: 28px;
	margin-bottom: 2rem;
	border:1px solid #ededed;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 21px;
	overflow: hidden;
}
div.product-feature-item .icon-product{
	float: left;
	margin-right: 1rem;
}
.product-feature-txt{
	box-sizing: border-box;
	font-size: 14px;
	float: right;
	width: -webkit-calc(100% - 88px);
	width: calc(100% - 88px);
}
.product-feature-txt h3{
	font-size: 16px;
	margin-bottom: 10px;
}
.product-feature-txt p{
	font-size: 14px;
	line-height: 1.6;
}
.table-product td{
	box-sizing: border-box;
	padding:7px 14px;
	text-align: center;
	color: #000;
	font-size: 14px;
	font-size: 1rem;	
}
.table-product tr:first-child td{
	border-top: 0;
}
.table-product td:last-child{
	color: #5d62fc;
	border-left: 2px solid #5d62fc;
	border-right: 2px solid #5d62fc;
}
.table-product tr:last-child td:last-child{
	border-bottom: 2px solid #5d62fc;
}
.table-product tr:first-child td:last-child{
	border-top: 2px solid #5d62fc;
}
.table-product td:first-child{
	text-align: left;
	font-weight: 600;
}
.icon-plus{
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	background:url(images/icon-plus.png) no-repeat;
	background-size: 100% auto;
	margin-right: 10px;
}
.product-range{
	color: #000;
	font-weight: 600;
}
.product-range .col-medium{
	margin-top: 35px;
	margin-top: 2.5rem;
}
.product-range .col-medium .col-n{
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.accordion-title{
	background:#fff;
	color: #000;
	box-sizing: border-box;
	border-radius: 10px;
	padding:12px 28px;
	font-size: 18px;
	cursor: pointer;
	font-weight: 600;
}
.accordion-arraw{
	width: 23px;
	height: 14px;
	background:url(images/arraw-up.png) no-repeat;
	display: inline-block;
	float: right;
	margin-top: 7px;
	margin-top: 0.5rem;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
.accordion-item.current .accordion-arraw{
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	filter: brightness(0);
}
.accordion-item{
	border: 1px solid #ebebeb;
	border-radius: 10px;
	background:#fff;
	margin: 28px 0 28px 0;
	margin: 2rem 0 2rem 0;
}
.accordion-cont{
	box-sizing: border-box;
	overflow: hidden;
	height: 0;
	-webkit-transition: height 0.3s;
	transition: height 0.3s;
}
.accordion-cont-inner{
	box-sizing: border-box;
	padding: 28px;
}
.accordion-item.current .accordion-cont{
	height: unset;
}
.accordion-item.current .accordion-title{
	background:#f7f7f7;
	color: #5d62fc;
	border-radius: 10px 10px 0 0;
}
.accordion-cont p.question{
	margin:28px 0 7px 0;
	color: #000;
	font-weight: 600;
}
.accordion-cont p.awnser{
	margin:7px 0 28px 0;
}
@media screen and (min-width: 768px){
	div.product-feature-item{
		min-height: 200px;
	}
	html[lang="en-US"] div.product-feature-item{
		min-height: 220px;
	}
	div.highlight .icon-question{
		display: block;
		float: left;
		margin-right: 21px;
	}
	.highlight-txt{
		float: left;
		width: -webkit-calc(100% - 108px);
		width: calc(100% - 108px);
	}

}

.form-product-top {
	width: 100%;
	max-width: 300px;
}
.form-product-top input[type="text"],
.form-product-top input[type="date"],
.form-product-top input[type="submit"],
.form-product-bottom input[type="text"],
.form-product-bottom input[type="date"],
.form-product-bottom input[type="submit"],
.form-product-pricing input[type="text"],
.form-product-pricing input[type="date"],
.form-product-pricing input[type="submit"]{
	text-align: center;
	display: block;
	width: 100%;
	max-width: 100%;
}
input.input-huhu[type="text"],
input.input-huhu[type="date"],
input.input-huhu[type="password"],
input.input-huhu[type="submit"]{
	box-sizing: border-box;
	height: 40px;
	font-size: 15px;
	line-height: 1.5;
	padding:8px 16px;
	border-radius: 20px;
}
.form-huhu fieldset{
	width: 100%;
	max-width: 100%;
	margin:14px auto;
	margin:1rem auto;
	position: relative;
}
.form-huhu input.input-huhu[type="text"],
.form-huhu input.input-huhu[type="date"],
.form-huhu input.input-huhu[type="password"],
.form-huhu input.input-huhu[type="submit"]{
	width: 100%;
}
ul.input-check-list{
	margin: 0 15px;
	position: absolute;
	display: none;
	height: 0;
	box-sizing: border-box;
	width: -webkit-calc(100% - 30px);
	width: calc(100% - 30px);
	background:#fff;
	top:39px;
	max-height: 370px;
	overflow-x: hidden;
	overflow-y: auto;
}
.form-product-bottom ul.input-check-list{
	width: -webkit-calc(100% - 46px);
	width: calc(100% - 46px);
}
ul.input-check-list.current{
	height: auto;
	display: block;
	z-index: 99;
}
ul.input-check-list li{
	display: none;
	cursor: pointer;
	color:#000;
	border-bottom: 1px solid #f2f2f2;
	padding:5px 12px;
	font-size: 14px;
	font-size: 1rem;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
ul.input-check-list li.school.publish,
ul.input-check-list li.nodata{
	display: block;
}

ul.input-check-list li:hover{
	background:#f2f2f2;
	color: #5d62fc;
}
.form-product-bottom{
	position: relative;
	background:#f9f2ec;
	padding:40px;
	border-radius: 10px;
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
}
#block-product-bottom .site{
	margin-top: 0;
}
#block-product-bottom .col-n,
#block-pricing-form .col-n{
	margin:14px 0;
	margin:1rem 0;
	position: relative;
}
.form-product-bottom{
	position: relative;
}
.form-product-bottom:before{
	content: "";
	display: block;
	position: absolute;
	width: 80px;
	height: 80px;
	left: -15px;
	top:-66px;
	background:url(images/tiger-doc.png) no-repeat;
	background-size:100% auto;
	z-index: 1;
}
#block-product-bottom h2{
	margin-left: 86px;
}
.form-product-pricing{
	position: relative;
	background:#f3f3f3;
	padding:40px;
	border-radius: 10px;
	box-sizing: border-box;
	display: inline-block;
	width: 100%;
}
#block-pricing-form{
	display: none;
}
#block-pricing-form .site{
	margin-top: 0;
}
#block-pricing-list .sub-title{
	color: #000;
	font-size: 18px;
}
@media screen and (min-width: 1200px){
	#block-pricing-list{
		margin-top: 80px;
	}
}
h1.school-name{
	font-size: 21px;
	font-size: 1.5rem;
}

#plan-list{
	margin:28px auto;
	margin:2rem auto;
}
.plan-box{
	position: relative;
	display: inline-block;
	text-align: center;
	vertical-align: top;
	box-sizing: border-box;
	width: 220px;
	min-height: 438px;
	margin:2px;
	padding:21px;
	padding:1.5rem;
	border:1px solid #ebebeb;
	border-radius: 10px;
	background:#fff;
}
.plan-box-school{
	background:#f3f3f3;
	min-height: unset;
	padding-left: 14px;
	padding-right: 14px;
}
.plan-box-school-table{
	width: 90%;
	line-height: 1.5;
	color: #8c8c8c;
	margin:0 auto;
}
.plan-box-school-table td:first-child{
	text-align: left;
}
.plan-box-school-table td:last-child{
	text-align: right;
}
.plan-box-school .plan-school-logo{
	width: 99px;
	height:66px;
	display: block;
	margin: 0 auto;
}
.plan-box hr{
	background:#ebebeb;
}
.plan-box-price{
	font-size: 26px;
	font-size: 1.85714rem;
	font-weight: 600;
	margin:21px auto;
	margin:1.5rem auto;
	color: #000;
	letter-spacing: -1px;
}
.price-unit{
	font-size: 12px;
	font-weight: normal;
}
.plan-box-school .plan-box-price{
	color: #8c8c8c;
}
.plan-box-price sub{
	font-size: 14px;
	font-size: 1rem;
	vertical-align: middle;
}
.plan-box-price-left,
.plan-box-price-right{
	width: 50%;
	float: left;
}
.plan-box-price-left .price-name,
.plan-box-price-right .price-name{
	font-size: 14px;
	font-size: 1rem;
	color:#5d62fc;
}
.icon-check{
	display: inline-block;
	margin-right: 8px;
	vertical-align: middle;
	background:url(images/icon-check.png) no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
}
ul.plan-feature-list{
	box-sizing: border-box;
	width: 126px;
	margin:0 auto;
	list-style: none;
	white-space: normal;
}
html[lang="en-US"] ul.plan-feature-list{
	width: 100%;
}
ul.plan-feature-list-gray{
	-webkit-filter: grayscale(100%); 
	-moz-filter: grayscale(100%); 
	-ms-filter: grayscale(100%); 
	-o-filter: grayscale(100%); 
	filter: grayscale(100%); 
	filter: gray; 
	-webkit-opacity: 0.8;
	opacity: 0.6;
}
ul.plan-feature-list li{
	position: relative;
	padding-left:18px;
	text-align: left;
	font-size: 12px;
	color: #000;
}
ul.plan-feature-list-gray li{
	color: #999;
}
ul.plan-feature-list li b{
	color: #5d62fc!important;
	font-weight: normal!important;
}
ul.plan-feature-list li:before{
	position: absolute;
	content:"";
	display: block;
	vertical-align: middle;
	background:url(images/icon-check.png) no-repeat;
	background-size: 100% auto;
	background-position: 0 0;
	left:0;
	top:4px;
	width: 10px;
	height: 10px;
}
.plan-box .field-select,
.plan-box .button{
	width: 100%;
}
.plan-box .txt-self{
	color: #000;
	margin-bottom: 5px;
}
.plan-box .field-select{
	line-height: 40px;
	border:1px solid #5d62fc;
	border-radius: 20px;
	margin-bottom: 14px;
}
.plan-box .field-select select{
	padding-left:0;
	padding-right: 0;
	width: 86px;
	margin:0 auto;
	border:0;
	font-size: 15px;
	text-align:center;
	text-align-last:center
}
html[lang="en-US"] .plan-box .field-select select{
	width: 122px;
}
.plan-box .field-select select option{
	text-align: center;
	font-size: 15px;
}
.plan-check-details{
	display: block;
	margin-top: 14px;
	margin-top: 1rem;
	text-decoration: underline;
}
.plan-box.recommended .button1{
	/*background-color: #ff6662;
	border-color: #ff6662;*/
}
.plan-box.recommended .button1:hover{
	/*background-color: #000;
	border-color: #000;*/
}
.plan-box.recommended .field-select{
	/*border-color: #ff6662;*/
}
.plan-box.recommended ul.plan-feature-list li:before{
	/*background-position: 0 100%;*/
}
.plan-box.recommended:before{
	position: absolute;
	z-index: 1;
	left: -1px;
	top:-1px;
	content: "";
	width: 57px;
	height: 60px;
	background:url(images/mark-pub.png) no-repeat;
	background-size: 100% auto;
}
html[lang="en-US"] .plan-box.recommended:before{
	background-image:url(images/mark-pub-en.png);
}
.plan-box.cheap:before{
	position: absolute;
	z-index: 1;
	left: -1px;
	top:-1px;
	content: "";
	width: 57px;
	height: 60px;
	background:url(images/mark-benefit.png) no-repeat;
	background-size: 100% auto;
}
.icon-plan-feature{
	width: 150px;
	height: 150px;
	display: block;
	margin: 0 auto 21px auto;
	margin: 0 auto 1.5rem auto;
}
#block-pricing-feature h2{
	margin-bottom: 35px;
	margin-bottom: 2.5rem;
}
#block-pricing-feature .col-n{
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
.plan-compassion{
	text-align: center;
}
.plan-compassion-col{
	vertical-align: top;
	display: inline-block;
	width: 200px;
}
.plan-compassion-col ul{
	list-style: none;
}
.plan-compassion-col ul li{
	margin:0;
	padding:4px 10px;
	box-sizing: border-box;
	background:#fff;
	color: #000;
	font-size: 14px;
	font-size: 1rem;
}
.plan-compassion-col ul li:empty{
	height: 33px;
}
.plan-compassion-col-first ul li{
	color: #999;
}
.plan-compassion-col ul li.plan-name{
	font-size: 17px;
	font-weight: 600;
	color: #5d62fc;
}
/*.plan-compassion-col.recommended ul li.plan-name{
	color: #ff6662;
}
.plan-compassion-col.recommended .button1{
	border-color: #ff6662;
	background: #ff6662;
}
.plan-compassion-col.recommended .button1.transparent{
	background:transparent;
	color: #ff6662;
}
.plan-compassion-col.recommended .button1:hover{
	background:#000;
	border-color: #000;
}
.plan-compassion-col.recommended .button1.transparent:hover{
	color:#fff;
}*/
.plan-compassion-col ul li:nth-child(even) {
	background:#f8f8f8;
}
.plan-compassion .button{
	width: 136px;
	margin: 0 auto 14px auto;
	margin: 0 auto 1rem auto;
	display: block;
}
.plan-table-price{
	font-size: 21px;
	font-size: 1.5rem;
	font-weight: 600;
	margin:21px auto;
	margin:1.5rem auto;
	color: #000;
}
.plan-table-price sub{
	font-size: 14px;
	font-size: 1rem;
	vertical-align: middle;
}
#price-switch{
	position: relative;
	float: right;
	width: 166px;
	box-sizing: border-box;
	background:#f6f6f6;
	overflow: hidden;
	padding:3px;
	border-radius: 17px;
}
#price-switch:after{
	content: "";
	display: block;
	z-index: 0;
	position: absolute;
	left: 3px;
	top:3px;
	width: 80px;
	height: 30px;
	background:#fff;
	border-radius: 15px;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
}
#price-switch.status0:after{
	left: 50%;
}
.price-switch-tab{
	cursor: pointer;
	position: relative;
	z-index: 1;
	font-size: 13px;
	width: 80px;
	float: left;
	text-align: center;
	color: #acacac;
	height: 30px;
	line-height: 30px;
}
.price-switch-tab.current{
	color: #5d62fc;
}
.list-responsive{
	width: 100%;
	overflow-y: auto;
	_overflow: auto;
	margin: 0 0 1em;
	white-space: nowrap;
}
.list-responsive::-webkit-scrollbar{
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}
.list-responsive::-webkit-scrollbar-thumb{
	border-radius: 8px;
	border: 3px solid #fff;
	background-color: rgba(0, 0, 0, .3);
}

@media screen and (min-width: 768px){
	.form-product-bottom:before{
		width: 148px;
		height: 147px;
	}
	#block-product-bottom h2{
		margin-left: 160px;
	}
	.form-product-pricing{
		padding-left: 80px;
		padding-right: 80px;
	}
	h1.school-name{
		font-size: 28px;
		font-size: 2rem;
	}
	#block-pricing-cs .imgpos{
		text-align: right;
	}
}

/*保单资料填写页面*/
body.graybg{
	background-color: #f9f9ff;
	padding: 0;
	margin:0;
}
@media screen and (min-width: 1200px){
	.block-woo{
		margin-top: 50px;
	}
}
.box-white-shadow{
	width: 100%;
	background:#fff;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .08);
	box-sizing: border-box;
	padding: 40px 35px;
	border: 1px solid #f6f6f6;
	margin-top: 14px;
	margin-top: 1rem;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
form.form-regular{

}
form.form-regular fieldset{
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
form.form-regular label{
	display: block;
	margin-bottom: 7px;
	margin-bottom: 0.5rem;
}
.input-regular{
	box-sizing: border-box;
	height: 40px;
	font-size: 15px;
	line-height: 1.5;
	padding: 8px 16px;
	background:#f2f2f2;
	border:1px solid #f2f2f2;
	border-radius: 20px;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
input.input-regular[type="text"],
input.input-regular[type="date"],
input.input-regular[type="submit"],
input.input-regular[type="email"],
input.input-regular[type="number"],
input.input-regular[type="password"] {
	width: 100%;
}
.input-regular.error{
	position: relative;
	border:1px solid red;
}
.input-regular.input-readonly{
	background:#fff;
	border-radius: 0;
	border-width: 0;
	border-bottom-width: 1px;
	padding-left: 0;
}
/*.input-regular.error:before{
	position: absolute;
	left:20px;
	top:-14px;
	content:"请填写";
	background:red;
	padding: 1px 5px;
	color: #fff;
	display: block;
}*/
form.form-regular .input-regular-radio{
	line-height: 40px;
	margin: 0;
}
.input-phone-area{
	width: 85px!important;
	margin-right: 10px;
	display: inline-block;
}
.input-phone-number{
	display: inline-block;
	width: -webkit-calc(100% - 102px)!important;
	width: calc(100% - 102px)!important;
}
@media screen and (min-width: 1200px){
	.input-phone-area{
		width: 110px!important;
	}
	.input-phone-number{
		width: -webkit-calc(100% - 128px)!important;
		width: calc(100% - 128px)!important;
	}
}
.input-select{
	width: 100%;
}
.input-select select{
	width: 100%;
	background-color: transparent;
	border:0;
	font-size: 15px;
	padding: 0;
	color: #666;
}
.input-select select option,
.input-select select.changed{
	color: #000;
}
.input-select select option:disabled{
	font-size: 15px;
	color: #b2b2b2;
}
a.time-select{
	margin-bottom: 14px;
    margin-bottom: 1rem;
	width: 100%;
	letter-spacing: 0;
}
a.time-select.sel{
	color: #fff;
	background-color: #000;
	border-color: #000;
	pointer-events: none;
}
#sheet_pay p,
#sheet_pay li,
#sheet_sub p,
#sheet_sub li{
	font-size: 12px;
	color: #999;
	margin:0;
	line-height: 1.6;
}
#sheet_pay ol{
	list-style: decimal;
	padding-left: 14px;
	padding-left: 1rem;
}
#sheet_pay .button1{
	width: 100%;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.sheet-price{
	font-size: 28px;
	font-size: 2rem;
	color:#000;
	font-weight: 600;
	margin-top:7px;
	margin-top: 0.5rem;
}
#sheet_pay li a,
#sheet_pay p a,
#sheet_sub li a,
#sheet_sub p a{
	color: #5d62fc;
}
#sheet_sub h3{
	font-size: 18px;
}
#sheet_sub .button{
	width: 100%;
	margin-bottom: 10px;
}
#sheet_sub .summary{
	margin-top: 28px;
	margin-top: 2rem;
	background-color: #f2f2f2;
	margin-left: -35px;
	margin-right: -35px;
}
#summary-school:empty{
	display: none;
}
.woocommerce #sheet_sub .summary{
	margin-top: 0;
}
.woocommerce #sheet_sub{
	padding-top: 21px;
	padding-top: 1rem;
}
#sheet_sub .summary h3{
	height: 40px;
	line-height: 40px;
	border-top: 1px solid #f2f2f2;
	background:#fff;
}
.woocommerce  #sheet_sub .summary h3{
	border-top: 0;
	padding-bottom: 14px;
}
#sheet_sub .summary p{
	padding: 21px;
	font-size: 15px;
	line-height: 1.8;
}
@media screen and (min-width: 1200px){
	#sheet_sub{ width: 343px; }
}
.plan-table{
	margin:14px 0 0 0;
	width: 100%;
}
.plan-table td{
	padding:4px 0;
	line-height: 1.5;
}
.plan-table td:last-child{
	text-align: right;
}
.mark-comment{
	display: inline-block;
	position: relative;
	color: #5d62fc;
}
a.mark-comment i{
	display: inline-block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background:#f2f2f2;
	border-radius: 50%;
	font-size: 14px;
	font-weight: normal;
	}
a.mark-comment span{
	white-space:normal;
	font-weight: normal;
	text-align: left;
	color: #fff;
	line-height: 1.5;
	font-size: 12px;
	background:#000;
	position: absolute;
	z-index: 1;
	left: -73px;
	top:20px;
	box-sizing: border-box;
	border:1px solid #5d62fc;
	border-radius: 5px;
	width: 166px;
	padding:7px 14px;
	box-shadow: 0 0 3px rgba(0,0,0,0.08);
	-webkit-transition:0.2s all;
	transition:0.2s all;
	-webkit-transform:scale(0,0);
	transform:scale(0,0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
a.mark-comment:hover span{
	-webkit-transform:scale(1,1);
	transform:scale(1,1);
}
.group-relatives.hidden{
	display: none;
}
.form-regular-group h3{
	margin:28px 0 14px 0;
	margin:2rem 0 1rem 0;
}
.woocommerce-checkout #payment{
	background: transparent;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box{
	background-color: #f4f4f4;
	padding-left: 21px;
    padding-right: 21px;
}
#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before{
	border-bottom-color: #f4f4f4;
}
.woocommerce-checkout #payment div.payment_box input.input-text{
	border:0;
	border-radius: 25px;
	padding-left: 22px;
	padding-right: 22px;
}
.input-text.wc-credit-card-form-card-cvc{
	width: 150px!important;
	max-width: 100%;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods{
	padding-left: 0;
	padding-right:0;
}
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt{
	background:#5d62fc;
	font-weight: normal;
	line-height: 1.1;
	border-radius: 24px;
	padding: 12px 20px;
	min-width: 100px;
}
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover{
	background:#000;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last{
	width: 100%;
	float: none;
}
p.note_alert{
	box-sizing: border-box;
	display: block;
    padding: 5px 21px;
    background: transparent;
    border: 1px solid #df8800;
    color: #df8800;
    font-size: 13px;
    border-radius: 20px;
}
.woocommerce-info{
	line-height: 1.6;
}
@media screen and (max-width: 767px){
	.woocommerce-MyAccount-navigation{
		overflow: hidden;
		margin-bottom: 28px;
		margin-bottom: 2rem;
	}
	
	.woocommerce-MyAccount-navigation li{
		text-align: center;
		float: left;
		width: 50%;
		padding:0 7px 0 0;
		padding:0 0.5rem 0 0;
		margin-bottom: 14px;
		margin-bottom: 1rem;
		box-sizing: border-box;
	}
	.woocommerce-MyAccount-navigation li:nth-child(even){
		padding:0 0 0 7px;
		padding:0 0 0 0.5rem;
	}
	.woocommerce-MyAccount-navigation li a{
		display: block;
		background: #f4f4f4;
		border-radius: 10px;
	}
	.woocommerce-MyAccount-navigation li a:hover,
	.woocommerce-MyAccount-navigation li.is-active a{
		text-decoration: none;
		background-color: #5d62fc;
		color: #fff;
	}
}
@media screen and (min-width: 768px) {
	#sheet_sub{
		padding-left: 21px;
		padding-right: 21px;
	}
	#sheet_sub .summary{
		margin-left: -21px;
		margin-right: -21px;
	}
	#block-sheet .site{
		margin-bottom: 20px;
	}
}
/*woocommece referral pages */
ul.woocommerce-ref-tabs{
	width:100%;
	border-bottom: 1px solid #f4f4f4;
}
ul.woocommerce-ref-tabs li{
	text-align:center;
	display: inline-block;
	width: auto;
	border:1px solid  #f4f4f4;
	border-bottom: 0;
	border-radius:8px 8px 0 0;
	background-color: #f4f4f4;
}
ul.woocommerce-ref-tabs li a{
	display: block;
	padding:5px 21px;
}
ul.woocommerce-ref-tabs li.current{
	position: relative;
	background-color: #fff;
}
ul.woocommerce-ref-tabs li.current:after{
	position: absolute;
	content: "";
	background:#fff;
	width: 100%;
	height: 2px;
	left:0;
	top:37px;
}
.woocommerce-ref-cont fieldset{
	margin:14px 0;
}
#woocommerce-ref-url{
	width: -webkit-calc(100% - 95px);
	width: calc(100% - 95px);
}
#woocommerce-ref-btn{
	width: 80px;
	margin-left: 10px;
}
table.ref-data{
	width: 100%;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
table.ref-data thead td{
	font-weight: 600;
}
table.ref-data td{
	padding:8px 0;
	line-height: 1.5;
	border-bottom: 1px solid #f4f4f4;
}
table.ref-data td:last-child{
	text-align: right;
}
table.ref-data-brief{
	max-width: 480px;
	margin-top: 14px;
}
.ref-qr{
	height: auto;
	max-width: 100%;
}
.order-wc-cancelled,
.order-wc-failed,
.order-wc-refunded{
	color: red;
}
.order-wc-completed{
	color: green;
}
/*load and toast*/
#loading,
#toast_popup{
	width: 100px;
	height: 100px;
	position: fixed;
	left: calc(50vw - 50px);
	top: calc(50vh - 30px);
	box-sizing: border-box;
	background:url(images/loading-rolling.svg) center center no-repeat;
	background-color: rgba(255,255,255,0.6);
	background-size: 100% auto;
	-webkit-transition: 0.2s all;
	transition: 0.2s all;
	z-index: -1;
	-webkit-opacity: 0;
	opacity: 0;
	border-radius: 10px;
}
#loading.stay,
#toast_popup.stay{
	top: calc(50vh - 50px);
	z-index: 99;
	-webkit-opacity: 1;
	opacity: 1;
}
#toast_popup{
	text-align: center;
	background:rgba(0,0,0,0.8);
	padding:36px 28px;
	height: auto;
	color: #fff;
	width: 280px;
	left: calc(50vw - 140px);
	line-height: 1.5;
}

/*页面遮盖层*/
.coverThePage{/*页面遮盖层*/
	width:100vw;
	height:100vh;
	background:rgba(0,0,0,0.2);
	position: fixed;
	top:0;
	left:0;
	display: none;
	z-index: 100;
}
.coverThePage.stay{
	display: block;
}
/*login-popup*/
.popup-form-container{
	pointer-events: none;
	box-sizing: border-box;
	background-color: #fff;
	background-image: url(images/bg-login-popup.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	border-radius: 10px;
	/*border-top: 3px solid #ee0000;*/
	padding:35px;
	padding:2.5rem;
	position: fixed;
	left:40%;
	left:-webkit-calc(50% - 310px);
	left:calc(50% - 310px);
	top: -webkit-calc(50vh - 250px);
	top: calc(50vh - 250px);
	text-align: left;
	width:620px;
	font-size: 14px;
	font-size: 1rem;
	-webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, .08);
	box-shadow: 0px 0 15px rgba(0, 0, 0, .08);
	z-index: 101;
	-webkit-opacity: 0;
	opacity: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	line-height: 1.5;
	overflow: hidden;
	min-height: 340px; 
}
.popup-form-container form{
	width: 260px;
	max-width: 320px;
	float: right;
}
@media screen and (max-width: 768px){
	.popup-form-container{
		width: 90%;
		left:5%;
		background-image: none;
		min-height: unset; 
	}
	.popup-form-container form{
		width: 100%;
		max-width: unset;
		float: none;
	}
}
.popup-form-container.stay{
	pointer-events: auto;
	/*top:36px;*/
	top: -webkit-calc(50vh - 300px);
	top: calc(50vh - 300px);
	-webkit-opacity: 1;
	opacity: 1;
}
.popup-form-container .social_hint{
	margin-bottom: 7px;
}
.popup-form-container .xh-social{
	display: inline-block;
	vertical-align: middle;
}
.popup-form-container .social{
	/*text-align: right;*/
	margin-top: 28px;
	margin-bottom: 14px;
}
.popup-form-container input.popup-form-input{
	width:100%;
	box-sizing: border-box;
	/*box-sizing: border-box;*/
	border: 1px solid #dadbe0;
	border-radius: 4px;
	height: 35px;
	padding: 5px 10px;
	font-size: 16px;
}
.popup-form-container label{
	margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    display: block;
}
.popup-form-container label.social_hint,
.popup-form-container .xh_social_box{
	display: inline-block;
	vertical-align: middle;
	width: auto;
}
.popup-form-container fieldset{
	margin:15px 0;
	position: relative;
}
.popup-form-container fieldset.links{
	text-align: center;
}
.popup-form-container h2{
	font-size: 20px;
	margin-bottom: 14px;
	text-align: center;
}
.button.header-login-btn{
	vertical-align: middle;
}
.popup-form-container input[type="submit"]{
	font-size: 16px;
	width: 100%;
}
.forgetmenot{
	display: none;
}
.notice{
	display: none;
}
.notice.template-notice{
	display: block;
}
.template-notice{
	padding: 8px 16px;
	text-align: left;
	background: #f9f0f0;
	color: red!important;
	border: 1px solid red;
	border-radius: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.template-notice p{
	color: red!important;
}
.template-notice:empty{
	display: none;
}
#generateAddress{
	display: block;
	margin-bottom: 21px;
	margin-bottom: 1.5rem;
	text-align: right;
}
@media screen and (min-width: 600px){
	#generateAddress{
		display: inline-block;
		float: right;
		margin-top: -40px;
		margin-bottom: 0;
	}
}
/*account pages*/
form.lost_reset_password{
	text-align: center;
	margin: 42px auto;
	margin: 3rem auto;
	box-sizing: border-box;
	max-width: 350px;
}
form.lost_reset_password input{
	width: 100%;
}
.woocommerce-page form.lost_reset_password .form-row-first{
	width: 100%;
}
.woocommerce-page form.lost_reset_password .button{
	margin-top: 21px;
	width: 100%;
}
form.lost_reset_password img{
	margin:28px auto;
	margin:2rem auto;
}
.return-to-shop{
	display: none;
}
.woocommerce-orders-table .button{
	margin-right: 5px!important;
}
.woocommerce table.my_account_orders th{
	padding: 16px 14px;
	color: #fff;
	background:#5d62fc;
}
.woocommerce table.my_account_orders th:first-child{
	border-top-left-radius: 8px;
}
.woocommerce table.my_account_orders th:last-child{
	border-top-right-radius: 8px;
}
.woocommerce table.my_account_orders td{
	padding: 8px 14px;
}
.woocommerce table.shop_table{
	border-radius: 8px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea{
	border-radius: 20px;
	box-sizing: border-box;
	padding: 12px 20px;
}
.select2-container--default .select2-selection--single{
	border-radius: 20px;
	box-sizing: border-box;
	padding: 6px 20px;
	border: 1px solid #ddd;
	height: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 6px;
	right: 8px;
}
.woocommerce form .form-row label{
	line-height: 1.5;
}
.woocommerce-checkout #payment div.payment_box input.input-text{
	font-size: 18px;
}
/*thank you page*/
#thankyou-bg{
	background:url(images/checkout-success.png) no-repeat center top;
	min-height: 536px;
	text-align: center;
	padding-top: 280px;
}
html[lang="en-US"] #thankyou-bg{
	background-image:url(images/checkout-success-en.png);
}
.woocommerce ul.woocommerce-thankyou-order-details{
	max-width: 580px;
	margin: 35px auto;
	text-align: center;
}
.woocommerce ul.woocommerce-thankyou-order-details li{
	float: none;
	display: inline-block;
	vertical-align: top;
	width: auto;
	margin-bottom: 14px;
}
.woocommerce ul.order_details li:last-of-type{
	margin-right: 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
	float: none;
}
/*woocommerce login*/
.woocommerce form.login{
	margin:15px auto;
	max-width: 400px;
	box-sizing: border-box;
	padding:28px;
	border-color: #eee;
	box-shadow: 0px 0 15px rgba(0, 0, 0, .08);
}
.woocommerce .my-account-gray-box{
	box-sizing: border-box;
	padding:28px;
	border-color: #eee;
	border-radius: 10px;
	box-shadow: 0px 0 15px rgba(0, 0, 0, .08);
	line-height: 1.6;
	margin:15px auto;
}
.woocommerce .my-account-gray-box h2{
	font-size: 18px;
}
.woocommerce-button{
	vertical-align: middle;
}
.woocommerce form.login .lost_password{
	display: inline-block;
	vertical-align: middle;
}
/*my account page*/
.woocommerce-Address address{
	font-style: normal;
	margin-top: 14px;
	margin-top: 1rem;
}
.woocommerce-MyAccount-navigation li{
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.woocommerce-MyAccount-content-header{
	background-color: #f4f4f4;
	border-radius: 10px;
	box-sizing: border-box;
	padding: 21px 28px;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
.woocommerce-MyAccount-content-header h1{
	margin-top: 0;
	margin-bottom: 0;
	float: left;
	width: -webkit-calc(100% - 140px);
	width: calc(100% - 140px);
}
.woocommerce-MyAccount-content-header .login-out{
	float: right;
	text-align: right;
	min-width: 130px;
	margin-top: 10px;
	margin-bottom: 10px;
	white-space: nowrap;
}
.woocommerce-MyAccount-content-header p{
	clear:both;
	margin:0;
}
.list-plan-detail li{
	color: #000;
}
.list-plan-detail span{
	display: inline-block;
	min-width: 110px;
	color: #999;
}
/*wpml*/
#hgroup-language .wpml-ls-statics-shortcode_actions{
	width: 88px;
	white-space: nowrap;
	display: inline-block;
	box-sizing: border-box;
}
#hgroup-language .wpml-ls-link{
	height: 29px;
	box-sizing: border-box;
	display: inline-block;
	color: #fff;
	padding: 6px 16px;
	text-align: center;
	font-size: 14px;
	font-size: 1rem;
	letter-spacing: 0;
	text-decoration: none;
	border-radius: 24px;
	line-height: 1.1;
	font-weight: 300;
	background-color: #f48c77;
	width: 76px;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	-webkit-text-shadow: none;
	text-shadow: none;
	word-break: keep-all;
	line-height: 1.1!important;
}
#hgroup-language .wpml-ls-link:hover{
	background:#000;
	color: #fff;
}
#hgroup-language .wpml-ls-legacy-list-horizontal{
	padding: 0;
    vertical-align: middle;
    border:0;
}
#topFloatBar .wpml-ls-legacy-list-horizontal{
	border:0;
	padding: 0;
}
#topFloatBar .wpml-ls-legacy-list-horizontal a{
	padding: 0;
}
#topFloatBar_r_2{
	font-size: 15px;
	font-weight: 600;
}
#topNotice{
	height: 0;
	overflow: hidden;
	color: #fff;
	background:#5d62fc;
	box-sizing: border-box;
	padding: 0;
	line-height: 1.3;
	transition: all 0.2s;
}
#topNotice.stay{
	height: auto;
	padding-top: 8px;
	padding-bottom: 8px;
}
.site-header.scroll #topNotice{
	height: 0;
	padding: 0;
}
#topNotice .site{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
}
#topNotice-content{
	font-size: 13px;
	line-height: 1.5;
	width: -webkit-calc(100% - 110px);
	width: calc(100% - 110px);
}
#topNotice-close{
	width: 110px;
	text-align: right;
}
#topNotice .button1{
	color: #fff;
	border-color: #fff;
}
#topNotice .button1:hover{
	border-color: #000;
}

/*page domestic*/
#top-inner.header-domestic{
	padding-bottom: 60px;
	height: auto;
	background-color: #fbfbfb;
	background-image: url(images/top-domestic.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}
.header-domestic .form-product-top{
	margin:0 auto;
	max-width: 600px;
}
.header-domestic fieldset{
	margin-top: 0;
}
#top-inner.header-domestic,
#top-inner.header-domestic .site,
#top-inner.header-domestic .col-raw{
	overflow: visible;
}
#top-inner.header-domestic .sub-title{
	font-size: 16px;
	color: #000;
	margin-bottom: 28px;
	margin-bottom: 2rem;
}
#top-inner.header-domestic form{
	margin-top: 42px;
}
#top-inner.header-domestic ul.input-check-list{
	width: -webkit-calc(100% - 62px);
	width: calc(100% - 62px);
}
ul.list-domestic-feature{
	margin: 0;
	padding: 0;
	list-style:none;
	text-align: left;
	font-size: 0;
	background:#f9f9f9;
}
ul.list-domestic-feature li{
	font-size: 15px;
	line-height: 1.5;
	color: #000;
	text-align: center;
	box-sizing: border-box;
	background:#f9f9f9;
	padding: 28px;
	height: 190px;
	width: 50%;
	margin: 0;
	list-style: none;
	display: inline-block;
	vertical-align: top;
}
ul.list-domestic-feature li:nth-child(even){
	background:#fcfcfc;
}
ul.list-domestic-feature img{
	width: 96px;
	height: 96px;
	margin-bottom: 7px;
}
#block-domestic h2{
	position: relative;
}
#block-domestic h2:before{
	display: none;
	content: "";
	left:-36px;
	top:5px;
	position: absolute;
	width: 26px;
	height: 24px;
	background:url(images/icon-heart.png) no-repeat center center;
	background-size:100% auto;
}

#block-domestic h2.txt-red:before{
	background-image:url(images/icon-heart-red.png)
}
#block-domestic p,
#block-domestic ol{
	color: #000;
}
#block-domestic .site{
	overflow: visible;
}
.tab-product-icon-11{
	background-image: url(images/icon-insurance-china.png);
	background-position: 0 0;
}
.tab-product-icon-12{
	background-image: url(images/icon-insurance-china.png);
	background-position: 0 100%;
}

@media screen and (min-width: 600px){
	ul.list-domestic-feature li{
		width: 33%;
	}
}
@media screen and (min-width: 768px){
	.header-domestic fieldset{
		width: 50%;
	}
	.header-domestic fieldset.pull-right{
		float: right;
	}
	ul.list-domestic-feature li{
		width: 20%;
	}
}
@media screen and (min-width: 1200px){
	#top-inner.header-domestic{
		padding-top: 120px;
		min-height: 550px;
	}
	#top-inner.header-domestic h1{
		font-size: 42px;
		font-size: 3rem;
		font-weight: 600;
	}
	body.top-note #top-inner{
		margin-top: 50px;
	}
	#block-domestic h2:before{
		display: block;
	}
}
