footer-tophtml,
body {
	margin: 0;
	padding: 0;
}

body {
	font-size: 14px;
	font-family: 微软雅黑;
	color: #000;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: none;

}

a:focus {
	text-decoration: none;
	color: inherit;
}

.t {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.mask {
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all .3s;
	display: none;
	opacity: 0;
}

/*头部*/
header {
	background-color: #fff;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);

	top: 0;
	z-index: 10
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.head-logo {
	width: 150px;
	height: 60px;
	object-fit: contain;
	margin-right: 20px;
}

.nav-list {
	display: flex;
	align-items: center;
	height: 100%;
}

.nav-list-btn {

	position: relative;
	height: 100%;
}

.nav-text {
	padding: 17px 22px;
	font-size: 16px;
	color: #fff;
	display: block;
	border-right: 1px solid #007200;

}

.nav-btn-part {
	width: 150px;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 11;
	transition: all .3s;
	opacity: 0;
	visibility: hidden;
}

.nav-btn:hover>.nav-text {
	color: #003a83;
}

.nav-list-btn:hover>.nav-text {
	background: #00c000;
	color: #fff;
}

.nav-list-btn:hover>.nav-btn-part {
	opacity: 1;
	visibility: visible;
}

.nav-active>.nav-text {
	color: #003a83;
}

.nav-icon {
	font-size: 24px;
	cursor: pointer;
}

/*移动端导航*/
.m-nav-list {
	width: 100%;
	max-height: 80vh;
	overflow-y: auto;
	padding: 20px;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	display: none;
}

.m-nav-list-btn {
	border-bottom: 1px solid #eee;
	text-align: center;
}

.m-nav-btn-part {
	background-color: #f5f5f5;
	display: none
}

/*.m-nav-list-btn:hover > .nav-text{color: #003a83;}*/

.main {
	min-height: 500px;
}

.noData {
	text-align: center;
	line-height: 100px;
	font-size: 16px;
	color: #ccc;
}

/*轮播*/
.banner {
	width: 100%;
}

.banner-ny {
	background-color: #003a83;
	color: white;
	text-align: center;
	padding: 40px;
	font-size: 30px;
}

/*尾部*/
.footer-top {
	background: #00a400;
	border-top: 1px solid #768fa6;
	border-bottom: 1px solid #67839c;

	color: #fff;
	margin-top: 10px;
}

.footer-down {
	background: #fff;
	padding: 10px 0;
	color: #fff;
	border-top: 1px solid #000;
}

.footer-text {
	width: 25%;
	padding-right: 10px;
	padding-top: 20px;
	transition: all .3s;
}

.footer-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

.footer-desc {
	font-size: 14px;
	margin-top: 10px;
}

.footer-cont {
	display: block;
	font-size: 14px;
	margin-top: 10px;
	transition: all .3s;
}

.footer-cont:hover {
	color: #9eccf4;
}

.footer-fir {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-link {
	margin-right: 10px;
}

.copy-right {
	text-align: center;

	color: #000;
}

/*列表页导航*/
.page-tab {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}

.page-title {
	font-size: 20px;
}

.page-nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.page-nav-btn {
	display: block;
	padding: 8px 15px;
	border: 1px solid #eee;
	margin-left: 10px;
	transition: all .3s;
}

.page-nav-btn:first-child {
	margin-left: 0;
}

.page-nav-btn:hover {
	color: #fff;
	background-color: #008d3a;
}

.page-nav-active {
	color: #fff;
	background-color: #008d3a;
}

/*列表页分页颜色*/
.pagination>.active>span {
	background-color: #008d3a;
}

.pagination>li>a {
	color: #003a83;
}

/*详情页导航*/
.detail-tab {
	padding: 20px 0;
	color: #999;
	font-size: 14px;
}

.detail-tab>a {
	color: #003a83;
}

/*详情页内容*/
.page-content {
	margin: 20px 0;
}

.page-content img {
	max-width: 100%;
}

.page-content video {
	max-width: 100%;
}

/*详情页分页*/
.page-box {
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.page-no {
	color: #999 !important;
	background: white !important;
}

/*新闻*/
.news {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.news-img {
	width: 250px;
	height: 200px;
	margin-right: 20px;
	border-radius: 5px;
	overflow: hidden;
}

.news-img>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}

.news-text {
	margin-right: 20px;
	flex: 1;
}

.news-title {
	color: #333;
	font-size: 20px;
	transition: all .3s;
}

.news-desc {
	color: #666;
	line-height: 24px;
	margin-top: 10px;
}

.news-look {
	color: #999;
	font-size: 12px;
	margin-top: 20px;
}

.news-time {
	text-align: center;
}

.news-date {
	color: #999;
	font-size: 36px;
	font-weight: 100;
	line-height: 1;
}

.news-year {
	color: #bbb;
	font-size: 24px;
	padding-top: 10px;
	line-height: 1;
}

.news:hover>.news-img>img {
	transform: scale(1.15);
}

.news:hover .news-title {
	color: #003a83;
}

/*产品*/
.pro-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.pro {
	display: block;
	width: calc(25% - 10px);
	margin-right: 10px;
	margin-bottom: 10px;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	transition: all .3s;
	text-align: center;
}

.pro:nth-child(4n) {
	margin-right: 0;
}

.pro-img {
	width: 350px;
	height: 350px;
	object-fit: contain;
}

.pro-listimg {
	width: 250px;
	height: 250px;
	object-fit: contain;
}

.pro-title {
	padding: 0 10px;
	margin-top: 20px;
	font-size: 30px;
	transition: all .3s;
}

.prolist-title {
	text-align: center;
	font-size: 20px;
}

.pro-desc {
	margin: 10px;
	color: #666;
	font-size: 14px;
}

.pro:hover {
	box-shadow: 5px 5px 10px #ccc;
}

.pro:hover>.pro-title {
	color: #003a83;
}

.pro-detail {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.pro-slide {
	width: 55%;
}

.pro-text {
	width: 45%;
	padding-left: 20px;
}

.pro-specs-list {
	padding: 10px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.pro-specs {
	width: 50%;
	padding-right: 5px;
	color: #999;
	line-height: 24px;
}

.pro-cont-tab {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #eee;
	margin-top: 30px;
}

.pro-cont-tab-btn {
	color: #003a83;
	font-size: 16px;
	padding: 12px 15px;
	border-bottom: 2px solid #003a83;
	cursor: pointer;
}

.pro-slide .swiper-button-prev {
	background-image: url(/public/img/angle-left.png);
	width: 20px;
	height: 15px;
}

.pro-slide .swiper-button-next {
	background-image: url(/public/img/angle-right.png);
	width: 20px;
	height: 15px;
}

/*推荐产品*/
.well-title {
	color: #003a83;
	font-size: 16px;
	padding: 20px 0;
}

.well-pro {
	display: block;
	width: calc((100% - 30px) / 4);
	background-color: #f5f5f5;
	border-radius: 5px;
	overflow: hidden;
}

/*图片*/
.img-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
}

.img {
	display: block;
	width: calc(25% - 10px);
	margin-right: 10px;
	margin-bottom: 10px;
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
	transition: all .3s;
}

.img:nth-child(4n) {
	margin-right: 0;
}

.img-img {
	width: 250px;
	height: 250px;
	object-fit: contain;
}

.img-title {
	padding: 10px;
	text-align: center;
	font-size: 16px;
	transition: all .3s;
}

.img:hover {
	box-shadow: 0 0 10px #ccc;
}

.img:hover>.img-title {
	color: #003a83;
}

/*下载*/
.file {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.file-img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	margin-right: 20px;
}

.file-text {
	flex: 1;
}

.file-title {
	color: #333;
	font-size: 20px;
	transition: all .3s;
}

.file-desc {
	color: #666;
	line-height: 24px;
	margin-top: 10px;
}

.file-down {
	color: #999;
	font-size: 12px;
	margin-top: 20px;
}

.file-btn {
	display: table;
	color: #003a83;
	border: 1px solid #003a83;
	padding: 5px 15px;
	margin-left: 20px;
	cursor: pointer;
	transition: all .3s;
}

.file-btn:hover {
	color: #fff;
	background-color: #003a83;
}

/*搜索*/
.sr-form {
	display: flex;
	align-items: center;
	border: 1px solid #eee;
	border-radius: 50px;
	line-height: 35px;
	margin: 20px 0;
}

.sr-select {
	width: 80px;
	display: table;
	position: relative;
	cursor: pointer;
}

.sr-select-icon {
	font-size: 18px;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}

.sr-select-value {
	padding: 0 20px 0 15px;
	width: 100%;
	user-select: none;
}

.sr-select-init {
	color: #999;
}

.sr-select-list {
	width: 150px;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 11;
	border: 1px solid #eee;
	box-shadow: 0 0 10px #eee;
	border-radius: 5px;
	overflow: hidden;
	transition: all .3s;
	opacity: 0;
	visibility: hidden;
}

.sr-option {
	padding: 12px 15px;
	line-height: 1;
	color: #003a83;
	transition: all .3s;
	cursor: pointer;
	user-select: none;
}

.sr-option:hover {
	color: #fff;
	background-color: #003a83;
}

.sr-option-active {
	color: #fff;
	background-color: #003a83;
}

.search-select {
	background: white;
	border: none;
	margin: 0 20px;
	height: 39px;
}

/*.sr-select:hover .sr-select-list{opacity: 1;visibility: visible;}*/

.sr-input {
	min-width: 50px;
	flex: 1;
	padding: 0 15px;
	outline: none;
	border: none;
	background-color: #f5f5f5;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.sr-btn {
	padding: 0 15px;
	color: #fff;
	background-color: #003a83;
	border: 1px solid #003a83;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.search {
	/* padding: 10px 0;
	border-bottom: 1px solid #eee; */
}

.search-title {
	display: table;
	color: #666;
	font-size: 20px;
	transition: all .3s;
}

.search-title>span {
	font-size: 12px;
}

.search-link {
	display: table;
	color: #003a83;
	margin-top: 10px;
}

.search-link:hover {
	color: #003a83;
}

.search-desc {
	color: #333;
}

.search:hover>.search-title {
	color: #333;
}

/*表单*/
.form-cell {
	display: flex;
	margin-bottom: 15px;
	line-height: 30px;
	flex-wrap: wrap
}

.form-icon {
	font-size: 12px;
	color: #f00;
	transform: scale(0.5);
}

.form-label {
	line-height: 30px;
	color: #333;
	margin-right: 15px;
	font-weight: normal;
	width: 100%
}

.form-input {
	min-width: 50px;
	flex: 1;
	height: 40px;
	padding: 0 15px;
	outline: none;
	border: 1px solid #eee;
	border-radius: 5px;
}

.form-textarea {
	min-width: 50px;
	flex: 1;
	padding: 10px 15px;
	line-height: 20px;
	outline: none;
	border: 1px solid #eee;
	border-radius: 5px;
	resize: none;
}

.form-select {
	width: 150px;
	border: 1px solid #eee;
	border-radius: 5px;
}

.form-radio {
	display: flex;
	align-items: center;
	flex-wrap: wrap
}

.form-checkbox {
	display: flex;
	align-items: center;
	flex-wrap: wrap
}

.form-label>input {
	margin-right: 5px;
}

.checkbox_select {
	padding-right: 20px;
	font-weight: normal;
}

.checkbox_select>input {
	margin-right: 5px;
}

.form-upload {
	flex: 1;
	display: flex;
	align-items: center;
	position: relative;
}

.form-file {
	width: 40px;
	height: 40px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	cursor: pointer;
}

.form-file:focus {
	outline: none !important;
	border: none;
}

.form-upload-icon {
	width: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	background-color: #003a83;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	transition: all .3s;
}

.form-file:hover+.form-upload-icon {
	box-shadow: none;
}

.form-sub {
	background-color: #008d00;
}

.form_file {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 9;
	cursor: pointer;
}

.container img {
	max-width: 100%;
}

.page-tab:nth-child(2) {
	margin-bottom: 15px;
}


@media (max-width: 1200px) {}

@media (max-width: 992px) {
	.footer-text {
		width: 50%;
	}

	.page-title {
		width: 100%;
		text-align: center;
	}

	.page-nav {
		width: 100%;
		justify-content: center;
	}

	.page-nav-btn {
		margin-left: 0;
		margin-right: 10px;
		margin-top: 10px;
	}

	.news-img {
		display: none;
	}

	.pro {
		width: calc(33.33% - 10px);
	}

	.pro:nth-child(4n) {
		margin-right: 10px;
	}

	.pro:nth-child(3n) {
		margin-right: 0
	}

	.well-pro {
		width: calc((100% - 20px) / 3);
	}

	.img {
		width: calc(33.33% - 10px);
	}

	.img:nth-child(4n) {
		margin-right: 10px;
	}

	.img:nth-child(3n) {
		margin-right: 0
	}
}

@media (max-width: 768px) {
	.pro {
		width: calc(50% - 10px);
	}

	.pro:nth-child(3n) {
		margin-right: 10px;
	}

	.pro:nth-child(2n) {
		margin-right: 0;
	}

	.pro-slide {
		width: 100%;
	}

	.pro-text {
		width: 100%;
		margin-top: 20px;
		padding-left: 0;
	}

	.well-pro {
		width: calc((100% - 10px) / 2);
	}

	.img {
		width: calc(50% - 10px);
	}

	.img:nth-child(3n) {
		margin-right: 10px;
	}

	.img:nth-child(2n) {
		margin-right: 0;
	}
}

@media (max-width: 480px) {
	.footer-text {
		width: 100%;
	}

	.pro {
		width: 100%;
		margin-right: 0
	}

	.pro:nth-child(3n) {
		margin-right: 0;
	}

	.pro-specs {
		width: 100%;
		padding-right: 0;
	}

	.well-pro {
		width: 100%;
	}

	.img {
		width: 100%;
		margin-right: 0
	}

	.img:nth-child(3n) {
		margin-right: 0;
	}

	.footer-top {
		text-align: center
	}
}

/* 其他 */
dt {
	font-weight: 400;
}

dd,
dt {
	line-height: inherit;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: inherit;
}

.container {
	
}

.navact {
	background: #00c000;
}

.pro_ltt a:hover {
	color: #e9280c !important;
}

/* 产品轮播图 */
.pro-1 {
	padding-top: 1%;
}

.pro-2 {
	height: 1080px;
	overflow: hidden;
}

.pro-2-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.pro-2-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-bottom: 1%;
}

.pro-2-3 {
	border: 1px solid;
}

.pro-2-3 img {
	width: 100%;
	padding: 3px;
	border: 1px solid;
}

.swiper-container .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	/*之前是ease-out*/
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

/* 常见问题 */
.que-2 {
	height: 20px;
	border-bottom: 1px dashed #aaa;
	margin-bottom: 5px;
}

.que-3-1 {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.que-3-2 {
	display: flex;
	align-items: center;
}

.wen1 {
	font-size: 18px;
	font-weight: 400;
}

.da1 {
	font-size: 13px;
}

.da1 a {
	color: #2aad3b;
}

/* 底部 */
.foot-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70%;
	margin: 0 auto;
	padding: 3%;
}

.foot-2 {
	width: 50%;
}

.foot-3 {
	width: 50%;
}

.foot-3 h4 {
	font-size: 24px;
	font-weight: 600;
}

.foot-3 div {
	font-size: 18px;
}

/* .picMarquee-top1 .tempWrap {
	height: 1080px !important;
}*/
.picMarquee-top ul {
	height: 3060px !important;
}

* {
	box-sizing: content-box;
}


.mo {
	display: none;
}

@media (max-width:768px) {
	.tem_head li a {
		display: block;
		padding: 15px;
		color: #fff;
	}
	.am-collapse,.am-in{
		transition: all .5s;
	}
	.client-2{
		display: none;
	}
	.pc {
		display: none;
	}

	.mo {
		display: block;
	}

	html,
	body {
		background: #fff;
		color: #333;
		font: 14px/1.6 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
	}

	body a {
		color: #333;
		text-decoration: none;
	}

	body a:hover {
		color: #e9280c;
		text-decoration: none;
	}

	header {
		position: relative;
		z-index: 11;
	}

	/* .tem_inner,
	.met_section {
		position: relative;
	} */

	.tem_top {
		overflow: hidden;
		height: 50px !important;
		color: #fff !important;
	}

	.tem_top i {
		position: absolute;
		padding: 0px 10px;
		height: 35px;
		font-size: 24px;
		line-height: 35px;
	}

	.tem_top i.am-icon-bars {
		top: 7px;
		right: 5px;
		background: #00a400;
	}

	.tem_top i.am-icon-globe {
		top: 7px;
		right: 55px;
	}

	.tem_top i.met_now {
		background: #00a400;
	}

	.tem_top h1,
	.tem_top h2 {
		margin: 0;
	}

	.tem_top h1 img,
	.tem_top h2 img {
		visibility: visible;
		max-height: 50px !important;
	}

	.tem_top_nav {
		display: none;
	}

	.tem_head ul:after {
		clear: both;
		display: block;
		visibility: hidden;
		height: 0;
		content: "";
	}

	.tem_head ul {
		margin: 0px;
		padding: 0px;
		background: #00a400;
		color: #fff;
	}

	.tem_head li {
		list-style: none;
	}

	.tem_head li a {
		display: block;
		padding: 15px;
		color: #fff;
	}

	.tem_head li a:hover,
	.tem_head li a.navdown,
	.tem_head li a.met_now {
		background: #00a400;
	}

	.tem_banner ul {
		margin: 0px;
		padding: 0px;
	}

	.tem_banner {
		position: relative;
		overflow: hidden;
		background: #fafafa;
		text-align: center;
		font-size: 0;
	}

	.tem_banner li {
		list-style: none;
	}

	.tem_banner ul li {
		float: left;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.tem_banner ul li a {
		display: block;
		width: 100%;
		height: 100%;
	}

	.tem_banner .am-control-nav {
		position: absolute;
		right: 0;
		bottom: 10px;
		left: 0;
		text-align: center;
	}

	.tem_banner .am-control-nav li {
		display: inline-block;
		margin: 0 4px;
		cursor: pointer;
	}

	.tem_banner .am-control-nav li a {
		display: block;
		width: 10px;
		height: 10px;
		border: 1px solid #fff;
		border-radius: 10px;
		text-indent: -999em;
	}

	.tem_banner .am-control-nav li a.am-active {
		background: #fff;
	}

	.tem_banner .flash img {
		width: 100% !important;
	}

	.tem_index_title {
		margin: 0 0 20px 0 !important;
		padding: 0px;
		border-bottom: 1px solid #ccc;
		text-align: center;
		font-weight: normal;
		font-size: 22px;
	}

	.tem_index_title span {
		position: relative;
		top: 2px;
		display: inline-block;
		padding: 10px 15px;
		border-bottom: 4px solid #666;
	}

	.tem_index_title p {
		margin: 0px;
		height: 0px;
		color: #8c8c8c;
		font-weight: normal;
		font-size: 0px;
	}

	.tem_index_more {
		clear: both;
		margin: 0 auto;
		padding-top: 30px;
		width: 200px;
		text-align: center;
	}

	.tem_index_more a {
		display: block;
		height: 40px;
		background: #e9280c;
		color: #fff;
		font-weight: normal;
		font-size: 14px;
		line-height: 40px;
	}

	.tem_index_more a:hover {
		background: #d82208;
		color: #fff;
	}

	.tem_index_about {
		padding: 20px 10px 30px;
	}

	.tem_index_about_more {
		margin: 0px;
		padding-top: 20px;
	}

	.tem_index_about_more a {
		display: inline-block;
		padding: 8px 30px;
		border: 2px solid #eee;
		color: #999 !important;
		text-decoration: none;
		font-weight: normal;
	}

	.tem_index_about_more a:hover {
		background: #eee;
		text-decoration: none !important;
	}

	.tem_index_about .met_editor {
		padding: 0px 8px;
	}

	.tem_index_product {
		padding: 20px 10px 30px;
	}

	.tem_index_product ul {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}

	.tem_index_product ul li {
		float: left;
		overflow: hidden;
		margin-bottom: 10px;
		width: 50%;
		text-align: center;
	}

	.tem_index_product ul li a {
		display: block;
		margin: 0 auto;
		width: 95%;
		background: #fff;
		text-align: center;
		font-size: 0;
	}

	.tem_index_product ul li h2 {
		margin: 0px;
		padding: 8px 10px;
		background: #8c989f;
		color: #fff;
		text-align: left;
		font-weight: normal;
		font-size: 14px;
		line-height: 1.5;
	}

	.tem_index_product ul li img {
		width: 100%;
	}

	.tem_index_news {
		padding: 20px 10px 30px;
		text-align: center;
	}

	.tem_index_news_tab {
		display: -webkit-box;
		margin: 0 0 10px;
		padding: 0px;
		height: 35px;
		border-right: 1px solid #8c989f;
		list-style: none;
		line-height: 35px;
	}

	.tem_index_news_tab li {
		-webkit-box-flex: 1;
	}

	.tem_index_news_tab li h3 {
		padding: 0 40px;
		height: 35px;
		border: 1px solid #8c989f;
		border-right: 0;
		font-weight: normal;
		line-height: 35px;
		cursor: pointer;
	}

	.tem_index_news_tab li.am-active h3 {
		background: #8c989f;
		color: #fff;
	}

	.tem_index_news_tab li:hover h3 {
		background: #8c989f;
		color: #fff;
	}

	.tem_index_news_slides ul {
		margin: 0px;
		padding: 0px;
	}

	.tem_index_news_list {
		margin: 0px;
		padding: 0px;
		list-style: none;
	}

	.tem_index_news_list div {
		padding: 15px 10px;
		border-bottom: 1px solid #ddd;
		text-align: left;
	}

	.tem_index_news_list a {
		display: block;
	}

	.tem_index_news_list h3 {
		overflow: hidden;
		margin: 0px;
		margin-bottom: 3px;
		padding: 0px;
		height: 23px;
		color: #000;
		font-weight: normal;
		line-height: 23px;
	}

	.tem_index_news_list p {
		margin: 0px;
		padding: 0px;
		color: #818181;
		line-height: 1.5;
	}

	.tem_index_case {
		padding: 20px 10px 30px;
	}

	.tem_index_case .am-slider-default {
		background-color: transparent !important;
		box-shadow: none !important;
	}

	.tem_index_case_list ul.am-slides {
		margin: 0px;
		padding: 0px;
	}

	.tem_index_case_list ul.am-slides:after {
		clear: both;
		display: block;
		visibility: hidden;
		height: 0;
		content: "";
	}

	.tem_index_case_list ul.am-slides li {
		width: 48% !important;
		float: left;
		list-style: none;
	}

	.tem_index_case_list .tem_list {
		float: left;
		margin: 0px;
		margin-bottom: 10px;
		width: 50%;
	}

	.tem_index_case_list .tem_list dt {
		margin: 0px;
		padding: 0 5px;
		text-align: center;
		font-size: 0;
	}

	.tem_index_case_list .tem_list dt a {
		display: block;
		overflow: hidden;
		margin: 0 auto;
	}

	.tem_index_case_list .tem_list dt img {
		width: 100%;
	}

	.tem_index_case_list .tem_list dd {
		margin: 0px;
		padding: 0 5px;
	}

	.tem_index_case_list .tem_list h3 {
		margin: 0 auto;
		height: 40px;
		background: #8c989f;
		text-align: center;
		font-weight: normal;
		line-height: 40px;
	}

	.tem_index_case_list .tem_list h3 a {
		color: #fff;
	}

	.tem_index_case_list .tem_list h3 a:hover {
		color: #fff;
	}

	.tem_index_case_list .am-control-nav {
		bottom: -30px !important;
	}

	.tem_index_to {
		border-top: 1px solid #e7e8ed;
		border-bottom: 1px solid #e7e8ed;
		background: #f7f8fa;
	}

	.tem_index_footer {
		padding: 40px 10px 50px;
		background: #1e1e1e;
	}

	.tem_index_footer dl {}

	.tem_index_footer dl dt {
		margin-right: 25px;
		height: 40px;
		border-bottom: 1px solid #363636;
		color: #f3f3f3;
		font-size: 16px;
		line-height: 40px;
	}

	.tem_index_footer dl dt span {
		position: relative;
		top: -1px;
		display: inline-block;
		border-bottom: 3px solid #838383;
	}

	.tem_index_footer dl dd {
		padding: 10px;
	}

	.tem_index_footer_contact li {
		position: relative;
		margin-bottom: 15px;
		padding-top: 5px;
		padding-left: 48px;
		min-height: 35px;
		color: #646363;
		list-style: none;
	}

	.tem_index_footer_contact li i {
		position: absolute;
		top: 0;
		left: 0;
		width: 35px;
		height: 35px;
		border: 1px solid #424244;
		border-radius: 5px;
		color: #7c7c7c;
		text-align: center;
		font-size: 22px;
		line-height: 35px;
	}

	.tem_index_footer_link dd {
		padding: 20px 0;
	}

	.tem_index_footer_link a {
		display: inline-block;
		margin: 0 12px 10px 0;
		color: #646363;
		white-space: nowrap;
	}

	.tem_index_footer_link a:hover {
		color: #ababab;
	}

	.tem_index_footer_link a img {
		height: 45px;
	}

	.tem_index_footer_attention {}

	.tem_index_footer_attention dd {
		padding: 20px 0;
		color: #646363;
	}

	.tem_index_footer_attention li {
		display: inline-block;
		margin: 8px;
		list-style: none;
	}

	.tem_index_footer_attention li a {
		display: block;
		overflow: hidden;
		width: 44px;
		height: 44px;
		background: url(/public/static/index/images/pnt.png) no-repeat left top;
		color: #646363;
		font-size: 0;
	}

	.tem_index_footer_attention li.tenxun a {
		background-position: -83px top !important;
	}

	.tem_index_footer_attention li.weixin a {
		background-position: -247px top !important;
	}

	.tem_index_footer_attention li.qq a {
		background-position: -165px top !important;
	}

	.tem_index_footer_attention li:hover a {
		background: url(../pnthover.png) no-repeat;
	}

	.tem_index_footer_attention img {
		margin-top: 8px;
		width: 100px;
	}

	.tem_index_footer_attention p {
		margin-top: 5px;
	}

	.tem_footer {
	
		padding: 30px 0 20px;
		background: #161616;
		color: #4a4a4a;
		text-align: center;
		font-size: 12px;
	}

	.tem_footer a {
		color: #4a4a4a;
	}

	.tem_footer_nav {}

	.tem_footer_nav a {
		display: inline-block;
		padding: 5px 10px;
	}

	.tem_footer_text {
		margin-top: 15px;
	}

	.powered_by_metinfo {
		height: 35px;
		background: #161616;
		color: #4a4a4a;
		text-align: center;
		font-size: 12px;
		line-height: 35px;
		margin-bottom: 44px;
	}

	.powered_by_metinfo a {
		color: #4a4a4a;
	}

	.met_section {
		position: relative;
		padding: 0px 0px 30px;
	}

	.met_section aside {
		display: none;
	}

	.met_section aside .am-offcanvas-content {
		padding: 5px;
	}

	.met_section aside .am-offcanvas-bar {
		width: 70%;
		background: #1c1c1c;
	}

	.met_section aside .am-offcanvas-bar dt a {
		display: block;
		padding: 15px;
		border-bottom: 1px solid #292929;
		color: #fff;
		font-weight: normal;
		font-size: 16px;
	}

	.met_section aside .am-offcanvas-bar dd h4 {
		display: inline-block;
		margin: 5px;
	}

	.met_section aside .am-offcanvas-bar dd a {
		display: block;
		padding: 5px;
		background: #292929;
		color: #929292;
		font-weight: normal;
		font-size: 16px;
	}

	.met_section .met_article_head {
		position: relative;
		padding: 0px 10px;
	}

	.met_section .met_article_head h1 {
		padding: 0px 10px;
		height: 60px;
		border-bottom: 1px solid #ddd;
		font-weight: normal;
		font-size: 16px;
		line-height: 60px;
	}

	.met_section .met_article_head h3 {
		position: absolute;
		top: 0px;
		right: 15px;
		height: 60px;
		color: #666;
		font-weight: normal;
		font-size: 12px;
		line-height: 60px;
	}

	.met_section .met_article_head h3 i {
		margin-right: 5px;
		width: 30px;
		height: 30px;
		border-radius: 100px;
		background: #efefef;
		text-align: center;
		font-size: 16px;
		line-height: 30px;
	}


	/*以下CSS样式谨慎修改，内页各模块样式，多模板可共用*/
	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	dl,
	dt,
	li,
	ol,
	ul,
	dd,
	th,
	td,
	p,
	pre,
	form,
	input,
	button,
	textarea,
	hr {
		margin: 0;
		padding: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		font-size: 100%;
	}

	body ul,
	body ol,
	body dl,
	body p,
	body h1,
	body h2,
	body h3,
	body h4,
	body h5,
	body h6 {
		margin: 0px;
		padding: 0px;
		font-size: 16px;
	}

	img {
		border: 0;
	}

	button,
	input,
	select,
	textarea {
		font-size: 100%;
	}

	.met_clear {
		clear: both;
	}

	.met_none {
		display: none;
	}

	.met_hidden {
		visibility: hidden;
	}

	.met_fl {
		float: left;
	}

	.met_fr {
		float: right;
	}

	.met_editor {
		overflow: hidden;
	}

	.met_editor ul,
	.met_editor ol {
		margin: 0;
		padding: 0 0 0 25px;
	}
	.tem_footer_nav a {
		margin-left: 0 !important;
	}
	.met_editor a {
		color: #1c57c4;
	}

	.met_editor a:hover {
		text-decoration: underline;
	}

	.met_editor img {
		max-width: 100%;
		height: auto !important;
	}

	.met_editor blockquote {
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 15px;
		border-left: 4px solid #ddd;
	}

	.met_editor hr {
		display: block;
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		margin: 20px 0;
		padding: 0;
		height: 0;
		border: 0;
		border-top: 1px solid #ddd;
	}

	.met_editor .metvideobox {
		text-align: center;
		visibility: hidden;
		margin: 10px auto;
	}

	.met_editor .video-js {
		max-width: 100%;
	}

	.met_editor table {
		margin-bottom: 1.6rem;
		padding: 0 !important;
		width: 100% !important;
		border: 0;
		border-collapse: collapse !important;
		border-spacing: 0 !important;
	}

	.met_editor_table {
		overflow: scroll;
		width: 100%;
	}

	.met_editor table td {
		border: 1px solid #ddd !important;
	}

	.met_editor table>thead>tr>th,
	table>tbody>tr>th,
	table>tfoot>tr>th,
	table>thead>tr>td,
	table>tbody>tr>td,
	table>tfoot>tr>td {
		padding: .7rem;
		border-top: 1px solid #ddd;
		vertical-align: top;
		line-height: 1.6;
	}

	.met_editor table>thead>tr>th {
		border-bottom: 1px solid #ddd;
		vertical-align: bottom;
	}

	.met_editor #page_break .collapse {
		display: none;
	}

	.met_editor #page_break .num {
		padding: 10px 0;
		text-align: center;
	}

	.met_editor #page_break .num li {
		display: inline;
		overflow: hidden;
		margin: 0 2px;
		padding: 3px 5px;
		border: 1px solid #ccc;
		background-color: #fff;
		color: #666;
		text-align: center;
		font-size: 12px;
		font-family: Arial;
		cursor: pointer;
	}

	.met_editor #page_break .num li.on {
		background-color: #ccc;
		color: #fff;
		font-weight: bold;
	}

	.metinfo-banner1 {
		overflow: hidden;
		margin: 0 auto;
	}

	.met_pager {
		padding: 30px 0 0;
		text-align: center;
	}

	.met_pager a {
		display: inline-block;
		padding: 0px 10px;
		height: 30px;
		border: 1px solid #e0e0e0;
		color: #aaa;
		text-align: center;
		text-align: center;
		line-height: 30px;
	}

	.met_pager a:hover {
		border: 1px solid #a0a0a0;
		color: #aaa;
	}

	.met_pager .PreSpan,
	.met_pager .NextSpan {
		display: inline-block;
		padding: 0px 10px;
		height: 30px;
		border: 1px solid #e0e0e0;
		background: #f0f0f0;
		color: #ccc;
		text-align: center;
		line-height: 30px;
	}

	.met_pager .PreA,
	.met_pager .NextA {
		height: 28px;
		min-width: 58px;
		color: #aaa;
		line-height: 28px;
		_width: 58px;
	}

	.met_pager .PreSpan,
	.met_pager .PreA {
		margin-right: 6px;
	}

	.met_pager .NextSpan,
	.met_pager .NextA {
		margin-left: 6px;
	}

	.met_pager .firstPage,
	.met_pager .lastPage {
		height: 28px;
		min-width: 40px;
		color: #aaa;
		font-weight: bold;
		line-height: 28px;
		_width: 40px;
	}

	.met_pager .Ahover {
		background: #f0f0f0;
		color: #aaa;
	}

	.met_pager .PageText {
		display: none;
		margin-left: 10px;
		color: #aaa;
	}

	.met_pager #metPageT,
	#metPageB {
		border: 1px solid #e0e0e0;
		color: #aaa;
		text-align: center;
	}

	.met_pager #metPageT {
		display: none;
		padding: 6px 5px 5px;
		width: 20px;
	}

	.met_pager #metPageB {
		display: none;
		padding: 6px 0 5px;
		min-width: 40px;
		font-weight: bold;
		cursor: pointer;
		_width: 40px;
	}

	*html .met_pager #metPageT {
		height: 13px;
		line-height: 13px;
	}

	*html .met_pager #metPageB {
		padding: 0;
		height: 28px;
		line-height: 20px;
	}

	*+html .met_pager #metPageT {
		height: 13px;
		line-height: 13px;
	}

	*+html .met_pager #metPageB {
		padding: 0;
		height: 28px;
		line-height: 20px;
	}

	/*各模块页面样式*/
	.met_module1 {
		padding: 30px 10px;
	}

	.met_module2_list {
		padding: 10px 10px;
	}

	.met_module2_list li {
		position: relative;
		padding: 15px 0px;
		border-bottom: 1px solid #ddd;
		list-style: none;
	}

	.met_module2_list h2 {
		font-weight: normal;
	}

	.met_module2_list li p {
		color: #818181;
	}

	.met_module2_list li span.time {
		color: #818181;
	}

	.met_module2_list li h2 i {
		display: none;
	}

	.met_module2_list li.list_2 h2,
	.met_module2_list li.list_3 h2 {
		margin-bottom: 3px;
		font-weight: bold;
	}

	.met_module2_list li.list_2 {
		padding: 15px 0;
	}

	.met_module2_list li.list_3 {
		padding-left: 100px;
		min-height: 80px;
	}

	.met_module2_list li.list_3 img {
		position: absolute;
		top: 15px;
		left: 0;
	}

	.met_module2_list li.list_3 span.time {
		position: static;
	}

	.met_module2 h1.met_title {
		margin-top: 10px;
		padding: 5px 10px;
		font-weight: normal;
		font-size: 28px;
		line-height: 1.2;
	}

	.met_module2 .met_infos {
		margin: 0px 10px 30px;
		padding-bottom: 10px;
		border-bottom: 1px solid #ddd;
		color: #818181;
		font-size: 12px;
	}

	.met_module2 .met_time {
		padding-right: 6px;
	}

	.met_module2 .met_source {
		padding-right: 6px;
	}

	.met_module2 .met_source a {
		color: #607fa6;
	}

	.met_module2 .met_editor {
		padding: 0 10px;
	}

	.met_tools {
		position: relative;
		margin: 30px 10px 0px;
		padding: 5px 5px 0;
		border-top: 1px solid #ddd;
	}

	.met_tools .met_page {
		clear: both;
		display: -webkit-box;
		margin: 10px 0px 0px;
		padding: 0px;
		color: #818181;
	}

	.met_tools .met_page li {
		padding: 8px;
		background: #f7f8fa;
		list-style: none;
		-webkit-box-flex: 1;
	}

	.met_tools .met_page li.met_page_preinfo {
		margin-right: 10px;
		text-align: right;
	}

	.met_tools .met_page a {
		display: block;
		color: #607fa6;
	}

	.met_module3_list ul.list_1 {
		padding: 0px 5px;
		list-style: none;
	}

	.met_module3_list ul.list_1 li {
		float: left;
		overflow: hidden;
		margin-top: 10px;
		width: 50% !important;
		text-align: center;
	}

	.met_module3_list ul.list_1 li a {
		display: block;
		margin: 0 auto;
		width: 95%;
		background: #fff;
		text-align: center;
		font-size: 0;
	}

	.met_module3_list ul.list_1 li h2 {
		padding: 10px 5px;
		text-align: left;
		font-weight: normal;
		font-size: 14px;
		line-height: 1.2;
	}

	.met_module3_list ul a img {
		width: 100%;
		height: auto;
	}

	.met_module3_list ul.list_2 {
		list-style: none;
	}

	.met_module3_list ul.list_2 li {
		padding: 20px 10px;
		border-bottom: 1px solid #ddd;
	}

	.met_module3_list ul.list_2 dt {
		position: relative;
		float: left;
		width: 120px;
	}

	.met_module3_list ul.list_2 dt img {
		width: 100%;
	}

	.met_module3_list ul.list_2 dd {
		float: left;
		margin-top: 0px;
		margin-left: -120px;
		width: 100%;
	}

	.met_module3_list ul.list_2 dd .met_listbox {
		margin-left: 120px;
	}

	.met_module3_list ul.list_2 dd h2 {
		padding: 0px 10px;
		font-weight: normal;
		font-size: 15px;
		line-height: 1.2;
	}

	.met_module3_list ul.list_2 dd p {
		padding: 5px 10px;
		color: #818181;
	}

	#showproduct dl.pshow {
		padding: 0px 10px;
	}

	#showproduct dl.pshow dt {
		position: relative;
		float: left;
		overflow: hidden;
		text-align: center;
		font-size: 0;
	}

	#showproduct dl.pshow dt .met_box {
		margin: 0 auto;
		height: 480px;
	}

	#showproduct .met_imgshowbox ul {
		margin: 0px;
		padding: 0px;
	}

	#showproduct .met_imgshowbox {
		position: relative;
		overflow: hidden;
		text-align: center;
		font-size: 0;
	}

	#showproduct .met_imgshowbox .am-slides li {
		list-style: none;
	}

	#showproduct .met_imgshowbox .am-slides li a {
		display: block;
	}

	#showproduct .met_imgshowbox .am-control-nav {
		position: absolute;
		right: 0;
		bottom: 10px;
		left: 0;
		text-align: center;
	}

	#showproduct .met_imgshowbox .am-control-nav li {
		display: inline-block;
		margin: 0 4px;
		cursor: pointer;
	}

	#showproduct .met_imgshowbox .am-control-nav li a {
		display: block;
		width: 10px;
		height: 10px;
		border: 1px solid #fff;
		border-radius: 10px;
		text-indent: -999em;
	}

	#showproduct .met_imgshowbox .am-control-nav li a.am-active {
		background: #fff;
	}

	#showproduct dl.pshow dd .met_box h1 {
		padding: 20px 5px;
		border-bottom: 1px solid #ddd;
		font-size: 16px;
	}

	#showproduct dl.pshow dd .met_box ul li {
		position: relative;
		padding: 8px 5px 8px 90px;
		border-bottom: 1px solid #ddd;
		color: #818181;
		list-style: none;
	}

	#showproduct dl.pshow dd .met_box ul li span {
		position: absolute;
		top: 0;
		left: 0;
		padding: 8px 5px;
		width: 80px;
		word-wrap: break-word;
	}

	#showproduct dl.pshow dd .met_box .desc {
		margin-top: 20px;
		padding: 10px;
		background: #f7f8fa;
		color: #666;
	}

	#showproduct .met_nav {
		position: relative;
		visibility: hidden;
		overflow: hidden;
		margin: 30px 0;
		height: 45px;
		border: 1px solid #ddd;
		background: #fff;
		line-height: 45px;
	}

	#showproduct .met_nav #wrapper {
		position: absolute;
		overflow: hidden;
		width: 100%;
		height: 43px;
	}

	#showproduct .met_nav #scroller {
		position: absolute;
	}

	#showproduct .met_nav .am-icon-forward {
		position: absolute;
		top: 0px;
		right: 5px;
		color: #aaa;
		font-size: 12px;
	}

	#showproduct .met_nav ol {
		border: 0;
	}

	#showproduct .met_nav li {
		display: inline-block;
		height: 43px;
		border-right: 1px solid #ddd;
		list-style: none;
		cursor: pointer;
	}

	#showproduct .met_nav li a {
		display: block;
		margin-right: 0px;
		padding: 0px;
		height: 100%;
		border: 0;
		text-align: center;
		line-height: 43px;
	}

	#showproduct .met_nav li.am-active a,
	#showproduct .met_nav li.met_hover a {
		background: #f7f8fa;
	}

	#showproduct .met_nav li .am-dropdown-content {
		padding: 5px;
	}

	#showproduct .met_related {
		margin-top: 30px;
		padding: 10px 10px;
		border-bottom: 1px solid #ddd;
		color: #333;
		font-weight: normal;
		font-size: 18px;
	}

	#showproduct .met_related_list {
		list-style: none;
	}

	#showproduct .met_related_list li {
		float: left;
		overflow: hidden;
		margin-top: 10px;
		width: 50%;
		text-align: center;
	}

	#showproduct .met_related_list li a {
		display: block;
		margin: 0 auto;
		width: 95%;
		border: 1px solid #ddd;
		background: #fff;
		text-align: center;
		font-size: 0;
	}

	#showproduct .met_related_list li h2 {
		padding: 10px 10px;
		border-top: 1px solid #ddd;
		text-align: left;
		font-weight: normal;
		font-size: 14px;
	}

	#showproduct .met_related_list li img {
		width: 100%;
	}

	#showproduct .met_related_list li a:hover h2 {
		color: #333;
	}

	#showproduct .met_nav_contbox {
		padding: 0 10px;
		border: 0;
	}

	#downloadlist {
		padding: 15px;
	}

	#downloadlist .metlist {
		margin-bottom: 20px;
	}

	#downloadlist .metlist dt {
		padding: 8px 5px 8px 0;
		border-bottom: 1px solid #ddd;
		background: url(../images/dt-9.gif) no-repeat 5px 11px;
		font-weight: bold;
		font-size: 14px;
	}

	#downloadlist .metlist dd {
		padding: 8px;
		background: #f7f8fa;
		color: #999;
	}

	#downloadlist .metlist dd b {
		font-weight: normal;
	}

	#downloadlist .metlist dd span {
		display: block;
		padding-right: 20px;
	}

	#downloadlist .metlist dd a {
		color: #1c57c4;
	}

	#downloadlist .metlist dd a.down {
		color: #fa1a1a;
	}

	#showdownload {
		padding: 15px;
	}

	#showdownload h1.title {
		margin-bottom: 30px;
		padding: 15px 5px;
		border-bottom: 1px solid #ddd;
		font-size: 24px;
	}

	#showdownload .paralist {
		visibility: hidden;
		padding: 5px 10px;
		background: #8c989f;
		color: #fff;
	}

	#showdownload .paralist li {
		position: relative;
		padding: 8px 5px 8px 90px;
		min-height: 20px;
		border-bottom: 1px solid #ddd;
		list-style: none;
	}

	#showdownload .paralist li:last-child {
		border-bottom: 0;
	}

	#showdownload .paralist li a {
		color: #fff;
	}

	#showdownload .paralist li span {
		position: absolute;
		top: 0;
		left: 0;
		padding: 8px 5px;
		width: 80px;
		word-wrap: break-word;
	}

	#showdownload .met_editor {
		padding: 0 10px;
	}

	#showdownload .ctitle {
		margin: 30px 0 10px;
		padding: 0 10px;
		height: 40px;
		border-bottom: 1px solid #ddd;
		font-weight: normal;
		font-size: 16px;
		line-height: 40px;
	}

	#showdownload .downloadbox {
		margin-top: 30px;
	}

	#showdownload .downloadbox a {
		display: inline-block;
		padding: 0 35px;
		height: 35px;
		border-radius: 2px;
		background: #23b7e5;
		color: #fff;
		line-height: 35px;
	}

	#showdownload .downloadbox a:hover {
		background: #38c4f0;
	}

	#showdownload .downloadbox a.active {
		background: #1ba4cf;
	}

	#imglist ul.list_1 {
		padding: 0px 5px;
		list-style: none;
	}

	#imglist ul.list_1 li {
		float: left;
		overflow: hidden;
		margin-top: 10px;
		width: 50%;
		text-align: center;
	}

	#imglist ul.list_1 li a {
		display: block;
		margin: 0 auto;
		width: 95%;
		border: 1px solid #ddd;
		background: #fff;
		text-align: center;
		font-size: 0;
	}

	#imglist ul.list_1 li h2 {
		padding: 10px 10px;
		border-top: 1px solid #ddd;
		text-align: left;
		font-weight: normal;
		font-size: 14px;
	}

	#imglist ul a img {
		width: 100%;
	}

	#imglist ul a:hover h2 {
		color: #333;
	}

	#imglist ul.list_2 {
		list-style: none;
	}

	#imglist ul.list_2 li {
		padding: 20px 10px;
		border-bottom: 1px solid #ddd;
	}

	#imglist ul.list_2 dt {
		position: relative;
		float: left;
		width: 120px;
	}

	#imglist ul.list_2 dt img {
		width: 100%;
	}

	#imglist ul.list_2 dd {
		float: left;
		margin-top: 0px;
		margin-left: -120px;
		width: 100%;
	}

	#imglist ul.list_2 dd .met_listbox {
		margin-left: 120px;
	}

	#imglist ul.list_2 dd h2 {
		padding: 0px 10px;
		font-size: 15px;
		line-height: 1.2;
	}

	#imglist ul.list_2 dd p {
		padding: 5px 10px;
		color: #818181;
	}

	#showimg h1.met_title {
		margin: 0px 10px;
		margin-bottom: 30px;
		padding: 15px 5px;
		border-bottom: 1px solid #ddd;
		font-size: 24px;
	}

	#showimg .met_imgshowbox ul {
		margin: 0px;
		padding: 0px;
	}

	#showimg .met_imgshowbox {
		position: relative;
		overflow: hidden;
		text-align: center;
		font-size: 0;
	}

	#showimg .met_imgshowbox .am-slides li {
		list-style: none;
	}

	#showimg .met_imgshowbox .am-slides li a {
		display: block;
	}

	#showimg .met_imgshowbox .am-control-nav {
		position: absolute;
		right: 0;
		bottom: 10px;
		left: 0;
		text-align: center;
	}

	#showimg .met_imgshowbox .am-control-nav li {
		display: inline-block;
		margin: 0 4px;
		cursor: pointer;
	}

	#showimg .met_imgshowbox .am-control-nav li a {
		display: block;
		width: 10px;
		height: 10px;
		border: 1px solid #fff;
		border-radius: 10px;
		text-indent: -999em;
	}

	#showimg .met_imgshowbox .am-control-nav li a.am-active {
		background: #fff;
	}

	#showimg .imgparalist {
		visibility: hidden;
		visibility: hidden;
		margin: 0px 10px;
		margin-top: 30px;
		padding: 5px 10px;
		background: #8c989f;
		color: #fff;
	}

	#showimg .imgparalist li {
		position: relative;
		padding: 8px 5px 8px 90px;
		min-height: 20px;
		border-bottom: 1px solid #ddd;
		list-style: none;
	}

	#showimg .imgparalist li:last-child {
		border-bottom: 0;
	}

	#showimg .imgparalist li a {
		color: #fff;
	}

	#showimg .imgparalist li span {
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		padding: 8px 5px;
		width: 80px;
		word-wrap: break-word;
	}

	#joblist {
		padding: 10px;
	}

	#joblist dl {
		margin-top: 10px;
		padding: 10px 5px 10px;
		border: 1px solid #ddd;
	}

	#joblist dt {
		padding: 0 10px;
		font-weight: bold;
		font-size: 16px;
		line-height: 1.2;
	}

	#joblist dd {
		margin-top: 0px;
	}

	#joblist dd .dtail {
		padding: 5px 10px 0;
		border-top: 1px solid #ddd;
	}

	#joblist dd .dtail span {
		margin-right: 15px;
	}

	#joblist dd .dtail a {
		color: #1c57c4;
	}

	#joblist dd .editor {
		padding: 10px;
	}

	#joblist dd .mis {
		padding: 5px 10px;
		border-bottom: 1px solid #ddd;
		font-size: 12px;
	}

	#joblist dd .mis span {
		margin-right: 15px;
		color: #999;
	}

	#showjob h1.title {
		margin: 0px 10px;
		margin-bottom: 30px;
		padding: 15px 5px;
		border-bottom: 1px solid #ddd;
		font-size: 24px;
	}

	#showjob .ctitle {
		margin: 30px 10px 10px;
		padding: 0 10px;
		height: 40px;
		border-bottom: 1px solid #ddd;
		font-weight: normal;
		font-size: 16px;
		line-height: 40px;
	}

	#showjob .met_editor {
		padding: 0 10px;
	}

	#cvlist {
		padding: 15px;
	}

	#showjob .paralist {
		visibility: hidden;
		visibility: hidden;
		margin: 0px 10px;
		margin-top: 30px;
		padding: 5px 10px;
		background: #8c989f;
		color: #fff;
	}

	#showjob .paralist li {
		position: relative;
		padding: 8px 5px 8px 90px;
		min-height: 20px;
		border-bottom: 1px solid #ddd;
		list-style: none;
	}

	#showjob .paralist li:last-child {
		border-bottom: 0;
	}

	#showjob .paralist li a {
		color: #fff;
	}

	#showjob .paralist li span {
		position: absolute;
		top: 0;
		left: 0;
		overflow: hidden;
		padding: 8px 5px;
		width: 80px;
		word-wrap: break-word;
	}

	#showjob .info_cv {
		margin-top: 30px;
		margin-left: 10px;
	}

	#showjob .info_cv a {
		display: inline-block;
		padding: 0 35px;
		height: 35px;
		border-radius: 2px;
		background: #23b7e5;
		color: #fff;
		line-height: 35px;
	}

	#showjob .info_cv a:hover {
		background: #38c4f0;
	}

	#showjob .info_cv a.active {
		background: #1ba4cf;
	}

	#messagelist {
		padding: 10px;
	}

	#messagelist .metlist {
		margin-top: 10px;
		padding: 5px;
		border: 1px solid #ddd;
	}

	#messagelist .metlist dt {
		padding: 5px;
	}

	#messagelist .metlist dt span.name {
		color: #2c7199;
	}

	#messagelist .metlist dt span.time {
		padding-left: 5px;
		color: #aaa;
		font-size: 12px;
	}

	#messagelist .metlist dt span.tt {
		float: right;
		padding-right: 5px;
		color: #aaa;
	}

	#messagelist .metlist dd.info span.tt {
		clear: both;
		display: none;
	}

	#messagelist .metlist dd.info span.text {
		display: block;
		padding: 0 5px 10px;
		border-bottom: 1px solid #ddd;
		line-height: 1.5;
	}

	#messagelist .metlist dd.reinfo span.tt {
		display: block;
		padding: 10px 5px 0;
		color: #2c7199;
	}

	#messagelist .metlist dd.reinfo span.text {
		display: block;
		padding: 5px 5px 10px;
		line-height: 1.5;
	}

	#messagelist .v52fmbx {
		margin: 30px 0 0;
	}

	#linklist {
		padding: 15px 15px 25px;
	}

	#linklist .ctitle {
		margin: 10px 0 10px;
		padding: 5px 10px;
		border-bottom: 1px solid #ddd;
	}

	#linklist .inside {
		padding: 15px 0 0;
	}

	#linklist .metlist .img li {
		display: inline;
		padding-right: 5px;
		list-style: none;
	}

	#linklist .metlist .img img {
		width: 88px;
		height: 31px;
	}

	#linklist .metlist .txt li {
		float: left;
		overflow: hidden;
		margin-right: 5px;
		width: 88px;
		height: 20px;
		list-style: none;
		line-height: 20px;
	}

	#linksubmit {
		padding: 15px;
	}

	#linksubmit table {
		margin: 0 auto;
	}

	#memberbox {
		padding: 15px;
	}

	#memberbox .main_deng {
		width: 95%;
	}

	#memberbox .member_login_submit span {
		display: block;
		margin-top: 20px;
	}

	#memberbox .main_zhuce {
		width: 95%;
	}

	ul.searchnavlist {
		margin: 0;
		padding: 0 20px;
		list-style: none;
	}

	ul.searchnavlist li {
		padding: 5px 0;
	}

	ul.searchnavlist .advsearch_searchword input {
		padding: 2px 5px;
		width: 90%;
		height: 28px;
		outline: 0;
		border: 1px solid #dcdfe0;
		border-radius: 2px;
		background-color: #fff;
		color: #333;
		line-height: 28px\9;
	}

	ul.searchnavlist .searchgo {
		display: block;
		padding: 0 35px;
		height: 34px;
		border: 0 none;
		border-radius: 2px;
		background: #23b7e5;
		color: #fff;
		font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
		line-height: 26px;
		cursor: pointer;
	}

	ul.searchnavlist .searchgo:hover {
		background: #38c4f0;
	}

	ul.searchnavlist .searchgo:active {
		background: #1ba4cf;
	}

	#searchlist {
		padding: 10px;
	}

	#searchlist li {
		margin-bottom: 6px;
		padding-left: 10px;
		line-height: 1.5;
	}

	#searchlist ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#searchlist ul li {
		margin-bottom: 10px;
		padding: 3px 5px;
	}

	#searchlist ul li img {
		display: none;
	}

	#searchlist .search_title {
		display: block;
		padding: 2px 0;
	}

	#searchlist .search_title a {
		color: #12C;
		text-decoration: underline;
		font-size: 16px;
	}

	#searchlist .search_title em {
		color: #c00;
		text-decoration: underline;
		font-style: normal;
	}

	#searchlist .search_detail {
		display: block;
	}

	#searchlist .search_detail a {
		color: #12C;
		text-decoration: underline;
	}

	#searchlist .search_content em {
		color: #c00;
		font-style: normal;
	}

	#searchlist .search_updatetime {
		display: block;
		margin-top: 5px;
		color: green;
	}

	#searchlist a:hover {
		text-decoration: underline;
	}

	#sitemaplist dl {
		margin: 10px 10px 0;
		padding: 20px;
		border: 1px solid #ddd;
	}

	#sitemaplist dt h2 {
		padding: 10px 0;
		border-bottom: 1px solid #ddd;
		font-weight: normal;
		font-size: 18px;
	}

	#sitemaplist dd {
		margin-top: 0px;
	}

	#sitemaplist dd ul {
		margin: 0px;
		padding: 0px;
	}

	#sitemaplist dt h2 i {
		position: relative;
		top: 2px;
		margin-left: 10px;
		color: #888;
		font-weight: normal;
		font-size: 22px;
	}

	#sitemaplist dd ul {
		float: left;
		margin-top: 20px;
		width: 25%;
		list-style: none;
	}

	#sitemaplist dd li {
		margin-top: 5px;
	}

	#sitemaplist dd li h4 a {
		color: #666;
		font-weight: normal;
	}

	#feedback {
		margin: 10px;
	}

	/*表单*/
	.v52fmbx_hr {
		margin: 0;
		padding: 0 5px 0 15px;
		height: 60px;
		border-top: 1px solid #ddd;
		background: #ddd;
		font-size: 14px;
		line-height: 60px;
	}

	:-ms-input-placeholder {
		color: #999;
	}

	.met-focus {
		border: 1px solid #23b7e5 !important;
	}

	.v52fmbx {
		overflow: hidden;
		border: 1px solid #ddd;
		border-top: 0;
		text-align: left;
	}

	.v52fmbx dl:after {
		clear: both;
		display: block;
		visibility: hidden;
		height: 0;
		content: "";
	}

	.v52fmbx dl {
		width: 100%;
		background: #fff;
		zoom: 1;
	}

	.v52fmbx dl {
		position: relative;
		margin: 0;
		padding: 5px 0;
		border-top: 1px solid #ddd;
	}

	.v52fmbx dl dt {
		overflow: hidden;
		padding: 15px 15px 10px 15px;
		text-align: left;
		font-weight: normal;
		line-height: 1.2;
	}

	.v52fmbx dl dd {
		margin: 0;
		padding: 2px 0 0 15px;
	}

	.v52fmbx dl dd label input {
		position: relative;
		top: 1px;
		margin-right: 3px;
	}

	.v52fmbx dl dd .fbox {
		margin: 0 10px 10px 0;
	}

	.v52fmbx dl dd .tips {
		color: #aaa;
	}

	.v52fmbx dl dd .tips:hover {
		color: #f00;
	}

	.v52fmbx dl dd.labelinline label {
		display: inline;
	}

	.v52fmbx dl dt.addimgdt {
		padding: 10px 5px 10px;
	}

	.v52fmbx dl dt.addimgdt p {
		margin-bottom: 8px;
		height: 30px;
		line-height: 30px;
	}

	.v52fmbx dl.noborder {
		border-bottom: 0;
	}

	.v52fmbx dl.noborder dt {
		display: none;
	}

	.v52fmbx dl.noborder dd {
		padding: 10px 15px;
	}

	.formerror {
		margin-top: 6px;
		height: 20px;
		line-height: 20px;
	}

	.formerror .fa-times {
		margin-right: 5px;
		padding: 1px 2px;
		border-radius: 3px;
		background: red;
		color: #fff;
		font-size: 16px;
	}

	.formerror .fa-check {
		margin-right: 5px;
		padding: 2px;
		border-radius: 3px;
		background: #10aa00;
		color: #fff;
		font-size: 14px;
	}

	.formerrorbox {
		border: 2px solid #f00 !important;
	}

	.v52fmbx dl dd.ftype_description {
		margin: 0 5px;
		padding: 8px;
		background: #6c6fbf;
		color: #fff;
	}

	.ftype_input .tips {
		padding-top: 5px;
	}

	.ftype_input .fbox input {
		padding: 2px 5px;
		width: 95%;
		height: 45px;
		outline: 0;
		border: 1px solid #dcdfe0;
		border-radius: 2px;
		background-color: #fff;
		color: #333;
	}

	.ftype_input .fbox input::-webkit-input-placeholder {
		font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
	}

	.placeholder-ie {
		position: relative;
	}

	.placeholder-ie label {
		position: absolute;
		top: 7px;
		left: 8px;
		color: #999;
		cursor: text;
	}

	.ftype_textarea .tips {
		display: block;
	}

	.ftype_textarea textarea {
		padding: 7px 5px;
		width: 95%;
		height: 100px;
		outline: 0;
		border: 1px solid #dcdfe0;
		background-color: #fff;
		color: #333;
		line-height: 1.5;
	}

	.ftype_textarea .fbox textarea::-webkit-input-placeholder {
		font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
	}

	.ftype_select .tips,
	.ftype_select-linkage .tips {
		display: block;
		margin-top: 5px;
	}

	select {
		padding: 4px;
		height: 31px;
		outline: 0;
		border: 1px solid #ccc;
		background-color: #fff;
		color: #656565;
		vertical-align: middle;
		line-height: 31px;
	}

	.ftype_radio .fbox label {
		display: block;
		margin: 0;
		height: 28px;
		font-weight: normal;
		line-height: 28px;
	}

	.ftype_radio .fbox input[type='radio'] {
		position: relative;
		position: relative;
		top: -1px;
		bottom: 3px;
		margin: 0;
		margin-right: 6px;
		width: 15px;
		height: 15px;
		border-radius: 100%;
		vertical-align: middle;
	}

	.ftype_radio .formerror {
		margin-top: 0;
	}

	.ftype_checkbox .fbox input[type='checkbox'] {
		position: relative;
		bottom: 3px;
		margin: 0;
		width: 15px;
		height: 15px;
		border-radius: 100%;
		vertical-align: middle;
	}

	.ftype_checkbox .fbox label {
		display: block;
		margin: 0;
		height: 28px;
		font-weight: normal;
		line-height: 28px;
	}

	.ftype_checkbox .fbox input {
		position: relative;
		top: -1px;
		margin-right: 6px !important;
	}

	.ftype_checkbox .formerror {
		margin-top: 0;
	}

	.ftype_transverse .fbox label {
		display: inline;
		margin-right: 15px;
	}

	.submit {
		display: block;
		padding: 0 35px;
		height: 34px;
		border: 0 none;
		border-radius: 2px;
		background: #23b7e5;
		color: #fff;
		font-family: 'Microsoft YaHei', Tahoma, Verdana, 'Simsun';
		line-height: 26px;
		cursor: pointer;
	}

	.submit:hover {
		background: #38c4f0;
	}

	.submit.active {
		background: #1ba4cf;
	}

	.v52fmbx dl dd.ftype_code input {
		margin-right: 10px;
		width: 80px;
	}

	.v52fmbx dl dd.ftype_code img {
		position: relative;
		bottom: 2px;
		height: 30px;
	}

	/*底部菜单样式*/
	#footernav {
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 999;
		text-align: center
	}

	.footerboxnav {
		max-width: 640px;
		margin: 0 auto;
		position: relative
	}

	#footernav ul {
		display: -webkit-box
	}

	#footernav ul li {
		display: -webkit-box;
		-webkit-box-flex: 1;
		text-align: center;
		border-right: 1px solid #003c87;
		border-left: 1px solid #008cd7
	}

	#footernav ul li a {
		display: block;
		width: 100%;
		text-align: center;
		color: #fff
	}

	#footernav .icon {
		display: block;
		margin: 0 auto 6px;
		position: relative;
		top: 3px;
		width: 30px;
		height: 22px;
		overflow: hidden;
		background: url(../footer.png) no-repeat;
		background-size: 150px;
		background-position: -2px 0
	}

	#footernav .map {
		background-position: -82px 2px
	}

	#footernav .message {
		background-position: -44px 0
	}

	#footernav .home {
		background-position: -116px 1px
	}

	#footnum {
		display: none
	}

	#footernav .icon-phone {
		color: #fff;
		font-size: 23px;
		text-align: center;
		line-height: 32px
	}

	#footernav .icon-map-marker {
		color: #fff;
		font-size: 23px;
		text-align: center;
		line-height: 32px
	}

	#footernav .icon-edit {
		color: #fff;
		font-size: 22px;
		text-align: center;
		line-height: 34px
	}

	#footernav .icon-home {
		color: #fff;
		font-size: 23px;
		text-align: center;
		line-height: 32px
	}

	.jisou-info {
		position: absolute;
		height: 100px;
		background: rgba(0, 0, 0, 0);
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		z-index: 800;
		display: none !important
	}

	.info-nr {
		z-index: 900;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
	}

	.info-nr-menu {
		-webkit-appearance: button;
		display: inline-block;
		width: 36px !important;
		height: 36px !important;
		border-radius: 36px;
		position: absolute;
		bottom: 17px;
		left: 17px;
		z-index: 999;
		-moz-box-shadow: 0 0 0 4px #fff, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
		-webkit-box-shadow: 0 0 0 4px #fff, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
		box-shadow: 0 0 0 4px #fff, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
		background-color: #b70000;
		-webkit-transition: -webkit-transform 200ms;
		-webkit-transform: rotate(1deg);
		color: #fff;
		background-image: url("../plus.png");
		background-repeat: no-repeat;
		background-position: center center;
		outline: 0;
		border: 0
	}

	.info-nr-menu:before {
		font-size: 20px;
		margin: 9px 0 0 9px
	}

	.info-nr-menu:checked {
		-webkit-transform: rotate(135deg)
	}

	.info-nr-phone>div {
		width: 32px;
		height: 32px;
		border-radius: 32px;
		-moz-box-shadow: 0 0 0 3px #fff, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
		-webkit-box-shadow: 0 0 0 3px #fff, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
		box-shadow: 0 0 0 3px #fff, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
		background: #b70000;
		position: absolute;
		bottom: 0;
		left: 0;
		margin-bottom: 20px;
		margin-left: 20px;
		z-index: 900;
		-webkit-transition: -webkit-transform 200ms
	}

	.info-nr-phone>div a {
		display: block;
		height: 32px;
		width: 32px
	}

	.info-nr-phone>div.on:nth-of-type(1) {
		-webkit-transform: translate(0, -100px) rotate(720deg)
	}

	.info-nr-phone>div.on:nth-of-type(2) {
		-webkit-transform: translate(47px, -81px) rotate(720deg)
	}

	.info-nr-phone>div.on:nth-of-type(3) {
		-webkit-transform: translate(81px, -45px) rotate(720deg)
	}

	.info-nr-phone>div.on:nth-of-type(4) {
		-webkit-transform: translate(100px, 0) rotate(720deg)
	}

	.color-blue .info-nr-menu,
	.color-blue div {
		background-color: #2192e1
	}

	.color-green .info-nr-menu,
	.color-green div {
		background-color: #64c31f
	}

	.color-grey .info-nr-menu,
	.color-grey div {
		background-color: #656664
	}

	.color-red .info-nr-menu,
	.color-red div {
		background-color: #d32020
	}

	.color-orange .info-nr-menu,
	.color-orange div {
		background-color: #0058a4
	}

	#footer {
		width: 100%;
		position: fixed;
		bottom: 0;
		left: 0;
		height: 45px;
		overflow: hidden;
		z-index: 999;
		text-align: center
	}

	#footer .footerbox {
		width: 100%;
		height: 45px;
		margin: 0 auto;
		position: relative
	}

	#footer .footerlist {
		width: 100%;
		height: 45px;
		overflow: hidden;
		position: absolute;
		left: 0;
		border-top: 0
	}

	#footer ul {
		width: 100%;
		display: -webkit-box
	}

	#footer ul li {
		display: -webkit-box;
		-webkit-box-flex: 1;
		text-align: center;
		border-right: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 0;
		position: relative
	}

	#footer ul li i.iconfont {
		padding: 0
	}

	#footer ul li i.fa-qq {
		font-size: 22px
	}

	#footer ul li a {
		display: block;
		width: 100%;
		text-align: center;
		color: #fff;
		height: 45px
	}

	#footer .icon {
		display: block;
		text-align: center;
		margin: 0 auto 0;
		width: 35px;
		height: 29px;
		line-height: 33px;
		overflow: hidden;
		font-size: 26px
	}

	#footer .map {
		background-position: -83px 0
	}

	#footer .message {
		background-position: -45px 0
	}

	#footer .home {
		background-position: -118px 0
	}

	#footer .txt {
		display: block;
		height: 16px;
		line-height: 16px;
		font-size: 12px
	}

	/*! Amaze UI v2.1.0 | by Amaze UI Team | (c) 2015 AllMobilize, Inc. | Licensed under MIT | 2015-01-13T02:01:01 UTC */
	*,
	:before,
	:after {
		-webkit-box-sizing: border-box;
		box-sizing: border-box
	}

	html,
	body {
		min-height: 100%
	}

	html {
		-ms-text-size-adjust: 100%;
		-webkit-text-size-adjust: 100%
	}

	body {
		margin: 0
	}

	article,
	aside,
	details,
	figcaption,
	figure,
	footer,
	header,
	hgroup,
	menu,
	main,
	nav,
	section,
	summary {
		display: block
	}

	audio,
	canvas,
	progress,
	video {
		display: inline-block;
		vertical-align: baseline
	}

	audio:not([controls]) {
		display: none;
		height: 0
	}

	[hidden],
	template,
	script {
		display: none
	}

	a {
		background-color: transparent
	}

	a:focus {
		outline: thin dotted
	}

	a:active,
	a:hover {
		outline: 0
	}

	ins,
	a {
		text-decoration: none
	}

	abbr[title] {
		border-bottom: 1px dotted
	}

	b,
	strong {
		font-weight: 700
	}

	pre {
		white-space: pre-wrap
	}

	q {
		quotes: "\201C" "\201D" "\2018" "\2019"
	}

	small {
		font-size: 80%
	}

	sub,
	sup {
		font-size: 75%;
		line-height: 0;
		position: relative;
		vertical-align: baseline
	}

	sup {
		top: -.5em
	}

	sub {
		bottom: -.25em
	}

	img {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		max-width: 100%;
		height: auto;
		vertical-align: middle;
		border: 0
	}

	svg:not(:root) {
		overflow: hidden
	}

	figure {
		margin: 0
	}

	code,
	kbd,
	pre,
	samp {
		font-family: Monaco, Menlo, Consolas, "Courier New", FontAwesome, monospace;
		font-size: 1em
	}

	fieldset {
		border: 1px solid silver;
		margin: 0 2px;
		padding: .35em .625em .75em
	}

	legend {
		border: 0;
		padding: 0
	}

	button,
	input,
	optgroup,
	select,
	textarea {
		color: inherit;
		font: inherit;
		margin: 0
	}

	button {
		overflow: visible
	}

	button,
	input {
		line-height: normal
	}

	button,
	select {
		text-transform: none
	}

	button,
	html input[type=button],
	input[type=reset],
	input[type=submit] {
		-webkit-appearance: button;
		cursor: pointer
	}

	input[type=radio],
	input[type=checkbox] {
		cursor: pointer;
		padding: 0;
		-webkit-box-sizing: border-box;
		box-sizing: border-box
	}

	button[disabled],
	html input[disabled] {
		cursor: default
	}

	button::-moz-focus-inner,
	input::-moz-focus-inner {
		border: 0;
		padding: 0
	}

	input[type=number]::-webkit-inner-spin-button,
	input[type=number]::-webkit-outer-spin-button {
		height: auto
	}

	input[type=search] {
		-webkit-appearance: textfield;
		-webkit-box-sizing: content-box;
		box-sizing: content-box
	}

	input[type=search]::-webkit-search-cancel-button,
	input[type=search]::-webkit-search-decoration {
		-webkit-appearance: none
	}

	textarea {
		overflow: auto;
		vertical-align: top;
		resize: vertical
	}

	optgroup {
		font-weight: 700
	}

	table {
		border-collapse: collapse;
		border-spacing: 0
	}

	td,
	th {
		padding: 0
	}

	html {
		font-size: 62.5%;
		-webkit-tap-highlight-color: transparent
	}

	body {
		position: relative;
		background: #fff;
		font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
		font-weight: 400;
		line-height: 1.6;
		color: #333;
		font-size: 1.6rem
	}

	body,
	input,
	textarea,
	select,
	button {
		text-rendering: optimizeLegibility;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		-moz-font-feature-settings: "liga", "kern"
	}

	@media only screen and (max-width:640px) {
		body {
			word-wrap: break-word;
			-webkit-hyphens: auto;
			-ms-hyphens: auto;
			-moz-hyphens: auto;
			hyphens: auto
		}
	}

	a {
		color: #0e90d2
	}

	a:hover,
	a:focus {
		color: #095f8a
	}

	a:focus {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px
	}

	ins {
		background: #ffa;
		color: #333
	}

	mark {
		background: #ffa;
		color: #333
	}

	abbr[title],
	dfn[title] {
		cursor: help
	}

	dfn[title] {
		border-bottom: 1px dotted;
		font-style: normal
	}

	p,
	hr,
	ul,
	ol,
	dl,
	blockquote,
	pre,
	address,
	fieldset,
	figure {
		margin: 0 0 1.6rem 0
	}

	*+p,
	*+hr,
	*+ul,
	*+ol,
	*+dl,
	*+blockquote,
	*+pre,
	*+address,
	*+fieldset,
	*+figure {
		margin-top: 1.6rem
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0 0 1.6rem 0;
		font-weight: 600;
		font-size: 100%
	}

	h1 {
		font-size: 1.5em
	}

	h2 {
		font-size: 1.25em
	}

	*+h1,
	*+h2,
	*+h3,
	*+h4,
	*+h5,
	*+h6 {
		margin-top: 2em
	}

	ul,
	ol {
		padding-left: 2em
	}

	ul>li>ul,
	ul>li>ol,
	ol>li>ol,
	ol>li>ul {
		margin: 1em 0
	}

	dt {
		font-weight: 700
	}

	dt+dd {
		margin-top: .5em
	}

	dd {
		margin-left: 0
	}

	dd+dt {
		margin-top: 1em
	}

	hr {
		display: block;
		padding: 0;
		border: 0;
		height: 0;
		border-top: 1px solid #eee;
		-webkit-box-sizing: content-box;
		box-sizing: content-box
	}

	address {
		font-style: normal
	}

	blockquote {
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 15px;
		border-left: 4px solid #ddd;
		font-family: Georgia, "Times New Roman", Times, Kai, "Kaiti SC", KaiTi, BiauKai, FontAwesome, serif
	}

	blockquote small {
		display: block;
		color: #999;
		font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
		text-align: right
	}

	blockquote p:last-of-type {
		margin-bottom: 0
	}

	iframe {
		border: 0
	}

	button,
	input:not([type=radio]):not([type=checkbox]),
	select {
		vertical-align: middle
	}

	.am-container {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: auto;
		margin-right: auto;
		padding-left: 1rem;
		padding-right: 1rem;
		width: 100%;
		max-width: 1000px
	}

	.am-container:before,
	.am-container:after {
		content: " ";
		display: table
	}

	.am-container:after {
		clear: both
	}

	@media only screen and (min-width:641px) {
		.am-container {
			padding-left: 1.5rem;
			padding-right: 1.5rem
		}
	}

	.am-container>.am-g {
		width: auto;
		margin-left: -1rem;
		margin-right: -1rem
	}

	@media only screen and (min-width:641px) {
		.am-container>.am-g {
			margin-left: -1.5rem;
			margin-right: -1.5rem
		}
	}

	.am-g {
		margin: 0 auto;
		width: 100%
	}

	.am-g:before,
	.am-g:after {
		content: " ";
		display: table
	}

	.am-g:after {
		clear: both
	}

	.am-g .am-g {
		margin-left: -1rem;
		margin-right: -1rem;
		width: auto
	}

	.am-g .am-g.am-g-collapse {
		margin-left: 0;
		margin-right: 0;
		width: auto
	}

	@media only screen and (min-width:641px) {
		.am-g .am-g {
			margin-left: -1.5rem;
			margin-right: -1.5rem
		}
	}

	.am-g.am-g-collapse .am-g {
		margin-left: 0;
		margin-right: 0
	}

	.am-g-collapse [class*=am-u-] {
		padding-left: 0;
		padding-right: 0
	}

	.am-g-fixed {
		max-width: 1000px
	}

	[class*=am-u-] {
		width: 100%;
		padding-left: 1rem;
		padding-right: 1rem;
		float: left;
		position: relative
	}

	[class*=am-u-]+[class*=am-u-]:last-child {
		float: right
	}

	[class*=am-u-]+[class*=am-u-].am-u-end {
		float: left
	}

	@media only screen and (min-width:641px) {
		[class*=am-u-] {
			padding-left: 1.5rem;
			padding-right: 1.5rem
		}
	}

	[class*=am-u-pull-] {
		left: auto
	}

	[class*=am-u-push-] {
		right: auto
	}

	@media only screen {
		.am-u-sm-1 {
			width: 8.33333333%
		}

		.am-u-sm-2 {
			width: 16.66666667%
		}

		.am-u-sm-3 {
			width: 25%
		}

		.am-u-sm-4 {
			width: 33.33333333%
		}

		.am-u-sm-5 {
			width: 41.66666667%
		}

		.am-u-sm-6 {
			width: 50%
		}

		.am-u-sm-7 {
			width: 58.33333333%
		}

		.am-u-sm-8 {
			width: 66.66666667%
		}

		.am-u-sm-9 {
			width: 75%
		}

		.am-u-sm-10 {
			width: 83.33333333%
		}

		.am-u-sm-11 {
			width: 91.66666667%
		}

		.am-u-sm-12 {
			width: 100%
		}

		.am-u-sm-pull-0 {
			right: 0
		}

		.am-u-sm-pull-1 {
			right: 8.33333333%
		}

		.am-u-sm-pull-2 {
			right: 16.66666667%
		}

		.am-u-sm-pull-3 {
			right: 25%
		}

		.am-u-sm-pull-4 {
			right: 33.33333333%
		}

		.am-u-sm-pull-5 {
			right: 41.66666667%
		}

		.am-u-sm-pull-6 {
			right: 50%
		}

		.am-u-sm-pull-7 {
			right: 58.33333333%
		}

		.am-u-sm-pull-8 {
			right: 66.66666667%
		}

		.am-u-sm-pull-9 {
			right: 75%
		}

		.am-u-sm-pull-10 {
			right: 83.33333333%
		}

		.am-u-sm-pull-11 {
			right: 91.66666667%
		}

		.am-u-sm-push-0 {
			left: 0
		}

		.am-u-sm-push-1 {
			left: 8.33333333%
		}

		.am-u-sm-push-2 {
			left: 16.66666667%
		}

		.am-u-sm-push-3 {
			left: 25%
		}

		.am-u-sm-push-4 {
			left: 33.33333333%
		}

		.am-u-sm-push-5 {
			left: 41.66666667%
		}

		.am-u-sm-push-6 {
			left: 50%
		}

		.am-u-sm-push-7 {
			left: 58.33333333%
		}

		.am-u-sm-push-8 {
			left: 66.66666667%
		}

		.am-u-sm-push-9 {
			left: 75%
		}

		.am-u-sm-push-10 {
			left: 83.33333333%
		}

		.am-u-sm-push-11 {
			left: 91.66666667%
		}

		.am-u-sm-offset-0 {
			margin-left: 0
		}

		.am-u-sm-offset-1 {
			margin-left: 8.33333333%
		}

		.am-u-sm-offset-2 {
			margin-left: 16.66666667%
		}

		.am-u-sm-offset-3 {
			margin-left: 25%
		}

		.am-u-sm-offset-4 {
			margin-left: 33.33333333%
		}

		.am-u-sm-offset-5 {
			margin-left: 41.66666667%
		}

		.am-u-sm-offset-6 {
			margin-left: 50%
		}

		.am-u-sm-offset-7 {
			margin-left: 58.33333333%
		}

		.am-u-sm-offset-8 {
			margin-left: 66.66666667%
		}

		.am-u-sm-offset-9 {
			margin-left: 75%
		}

		.am-u-sm-offset-10 {
			margin-left: 83.33333333%
		}

		.am-u-sm-offset-11 {
			margin-left: 91.66666667%
		}

		.am-u-sm-reset-order {
			margin-left: 0;
			margin-right: 0;
			left: auto;
			right: auto;
			float: left
		}

		[class*=am-u-].am-u-sm-centered {
			margin-left: auto;
			margin-right: auto;
			float: none
		}

		[class*=am-u-].am-u-sm-centered:last-child {
			float: none
		}

		[class*=am-u-].am-u-sm-uncentered {
			margin-left: 0;
			margin-right: 0;
			float: left
		}

		[class*=am-u-].am-u-sm-uncentered:last-child {
			float: left
		}
	}

	@media only screen and (min-width:641px) {
		.am-u-md-1 {
			width: 8.33333333%
		}

		.am-u-md-2 {
			width: 16.66666667%
		}

		.am-u-md-3 {
			width: 25%
		}

		.am-u-md-4 {
			width: 33.33333333%
		}

		.am-u-md-5 {
			width: 41.66666667%
		}

		.am-u-md-6 {
			width: 50%
		}

		.am-u-md-7 {
			width: 58.33333333%
		}

		.am-u-md-8 {
			width: 66.66666667%
		}

		.am-u-md-9 {
			width: 75%
		}

		.am-u-md-10 {
			width: 83.33333333%
		}

		.am-u-md-11 {
			width: 91.66666667%
		}

		.am-u-md-12 {
			width: 100%
		}

		.am-u-md-pull-0 {
			right: 0
		}

		.am-u-md-pull-1 {
			right: 8.33333333%
		}

		.am-u-md-pull-2 {
			right: 16.66666667%
		}

		.am-u-md-pull-3 {
			right: 25%
		}

		.am-u-md-pull-4 {
			right: 33.33333333%
		}

		.am-u-md-pull-5 {
			right: 41.66666667%
		}

		.am-u-md-pull-6 {
			right: 50%
		}

		.am-u-md-pull-7 {
			right: 58.33333333%
		}

		.am-u-md-pull-8 {
			right: 66.66666667%
		}

		.am-u-md-pull-9 {
			right: 75%
		}

		.am-u-md-pull-10 {
			right: 83.33333333%
		}

		.am-u-md-pull-11 {
			right: 91.66666667%
		}

		.am-u-md-push-0 {
			left: 0
		}

		.am-u-md-push-1 {
			left: 8.33333333%
		}

		.am-u-md-push-2 {
			left: 16.66666667%
		}

		.am-u-md-push-3 {
			left: 25%
		}

		.am-u-md-push-4 {
			left: 33.33333333%
		}

		.am-u-md-push-5 {
			left: 41.66666667%
		}

		.am-u-md-push-6 {
			left: 50%
		}

		.am-u-md-push-7 {
			left: 58.33333333%
		}

		.am-u-md-push-8 {
			left: 66.66666667%
		}

		.am-u-md-push-9 {
			left: 75%
		}

		.am-u-md-push-10 {
			left: 83.33333333%
		}

		.am-u-md-push-11 {
			left: 91.66666667%
		}

		.am-u-md-offset-0 {
			margin-left: 0
		}

		.am-u-md-offset-1 {
			margin-left: 8.33333333%
		}

		.am-u-md-offset-2 {
			margin-left: 16.66666667%
		}

		.am-u-md-offset-3 {
			margin-left: 25%
		}

		.am-u-md-offset-4 {
			margin-left: 33.33333333%
		}

		.am-u-md-offset-5 {
			margin-left: 41.66666667%
		}

		.am-u-md-offset-6 {
			margin-left: 50%
		}

		.am-u-md-offset-7 {
			margin-left: 58.33333333%
		}

		.am-u-md-offset-8 {
			margin-left: 66.66666667%
		}

		.am-u-md-offset-9 {
			margin-left: 75%
		}

		.am-u-md-offset-10 {
			margin-left: 83.33333333%
		}

		.am-u-md-offset-11 {
			margin-left: 91.66666667%
		}

		.am-u-md-reset-order {
			margin-left: 0;
			margin-right: 0;
			left: auto;
			right: auto;
			float: left
		}

		[class*=am-u-].am-u-md-centered {
			margin-left: auto;
			margin-right: auto;
			float: none
		}

		[class*=am-u-].am-u-md-centered:last-child {
			float: none
		}

		[class*=am-u-].am-u-md-uncentered {
			margin-left: 0;
			margin-right: 0;
			float: left
		}

		[class*=am-u-].am-u-md-uncentered:last-child {
			float: left
		}
	}

	@media only screen and (min-width:1025px) {
		.am-u-lg-1 {
			width: 8.33333333%
		}

		.am-u-lg-2 {
			width: 16.66666667%
		}

		.am-u-lg-3 {
			width: 25%
		}

		.am-u-lg-4 {
			width: 33.33333333%
		}

		.am-u-lg-5 {
			width: 41.66666667%
		}

		.am-u-lg-6 {
			width: 50%
		}

		.am-u-lg-7 {
			width: 58.33333333%
		}

		.am-u-lg-8 {
			width: 66.66666667%
		}

		.am-u-lg-9 {
			width: 75%
		}

		.am-u-lg-10 {
			width: 83.33333333%
		}

		.am-u-lg-11 {
			width: 91.66666667%
		}

		.am-u-lg-12 {
			width: 100%
		}

		.am-u-lg-pull-0 {
			right: 0
		}

		.am-u-lg-pull-1 {
			right: 8.33333333%
		}

		.am-u-lg-pull-2 {
			right: 16.66666667%
		}

		.am-u-lg-pull-3 {
			right: 25%
		}

		.am-u-lg-pull-4 {
			right: 33.33333333%
		}

		.am-u-lg-pull-5 {
			right: 41.66666667%
		}

		.am-u-lg-pull-6 {
			right: 50%
		}

		.am-u-lg-pull-7 {
			right: 58.33333333%
		}

		.am-u-lg-pull-8 {
			right: 66.66666667%
		}

		.am-u-lg-pull-9 {
			right: 75%
		}

		.am-u-lg-pull-10 {
			right: 83.33333333%
		}

		.am-u-lg-pull-11 {
			right: 91.66666667%
		}

		.am-u-lg-push-0 {
			left: 0
		}

		.am-u-lg-push-1 {
			left: 8.33333333%
		}

		.am-u-lg-push-2 {
			left: 16.66666667%
		}

		.am-u-lg-push-3 {
			left: 25%
		}

		.am-u-lg-push-4 {
			left: 33.33333333%
		}

		.am-u-lg-push-5 {
			left: 41.66666667%
		}

		.am-u-lg-push-6 {
			left: 50%
		}

		.am-u-lg-push-7 {
			left: 58.33333333%
		}

		.am-u-lg-push-8 {
			left: 66.66666667%
		}

		.am-u-lg-push-9 {
			left: 75%
		}

		.am-u-lg-push-10 {
			left: 83.33333333%
		}

		.am-u-lg-push-11 {
			left: 91.66666667%
		}

		.am-u-lg-offset-0 {
			margin-left: 0
		}

		.am-u-lg-offset-1 {
			margin-left: 8.33333333%
		}

		.am-u-lg-offset-2 {
			margin-left: 16.66666667%
		}

		.am-u-lg-offset-3 {
			margin-left: 25%
		}

		.am-u-lg-offset-4 {
			margin-left: 33.33333333%
		}

		.am-u-lg-offset-5 {
			margin-left: 41.66666667%
		}

		.am-u-lg-offset-6 {
			margin-left: 50%
		}

		.am-u-lg-offset-7 {
			margin-left: 58.33333333%
		}

		.am-u-lg-offset-8 {
			margin-left: 66.66666667%
		}

		.am-u-lg-offset-9 {
			margin-left: 75%
		}

		.am-u-lg-offset-10 {
			margin-left: 83.33333333%
		}

		.am-u-lg-offset-11 {
			margin-left: 91.66666667%
		}

		.am-u-lg-reset-order {
			margin-left: 0;
			margin-right: 0;
			left: auto;
			right: auto;
			float: left
		}

		[class*=am-u-].am-u-lg-centered {
			margin-left: auto;
			margin-right: auto;
			float: none
		}

		[class*=am-u-].am-u-lg-centered:last-child {
			float: none
		}

		[class*=am-u-].am-u-lg-uncentered {
			margin-left: 0;
			margin-right: 0;
			float: left
		}

		[class*=am-u-].am-u-lg-uncentered:last-child {
			float: left
		}
	}

	[class*=am-avg-] {
		display: block;
		padding: 0;
		margin: 0;
		list-style: none
	}

	[class*=am-avg-]:before,
	[class*=am-avg-]:after {
		content: " ";
		display: table
	}

	[class*=am-avg-]:after {
		clear: both
	}

	[class*=am-avg-]>li {
		display: block;
		height: auto;
		float: left
	}

	@media only screen {
		.am-avg-sm-1>li {
			width: 100%
		}

		.am-avg-sm-1>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-1>li:nth-of-type(1n+1) {
			clear: both
		}

		.am-avg-sm-2>li {
			width: 50%
		}

		.am-avg-sm-2>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-2>li:nth-of-type(2n+1) {
			clear: both
		}

		.am-avg-sm-3>li {
			width: 33.33333333%
		}

		.am-avg-sm-3>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-3>li:nth-of-type(3n+1) {
			clear: both
		}

		.am-avg-sm-4>li {
			width: 25%
		}

		.am-avg-sm-4>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-4>li:nth-of-type(4n+1) {
			clear: both
		}

		.am-avg-sm-5>li {
			width: 20%
		}

		.am-avg-sm-5>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-5>li:nth-of-type(5n+1) {
			clear: both
		}

		.am-avg-sm-6>li {
			width: 16.66666667%
		}

		.am-avg-sm-6>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-6>li:nth-of-type(6n+1) {
			clear: both
		}

		.am-avg-sm-7>li {
			width: 14.28571429%
		}

		.am-avg-sm-7>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-7>li:nth-of-type(7n+1) {
			clear: both
		}

		.am-avg-sm-8>li {
			width: 12.5%
		}

		.am-avg-sm-8>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-8>li:nth-of-type(8n+1) {
			clear: both
		}

		.am-avg-sm-9>li {
			width: 11.11111111%
		}

		.am-avg-sm-9>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-9>li:nth-of-type(9n+1) {
			clear: both
		}

		.am-avg-sm-10>li {
			width: 10%
		}

		.am-avg-sm-10>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-10>li:nth-of-type(10n+1) {
			clear: both
		}

		.am-avg-sm-11>li {
			width: 9.09090909%
		}

		.am-avg-sm-11>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-11>li:nth-of-type(11n+1) {
			clear: both
		}

		.am-avg-sm-12>li {
			width: 8.33333333%
		}

		.am-avg-sm-12>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-sm-12>li:nth-of-type(12n+1) {
			clear: both
		}
	}

	@media only screen and (min-width:641px) {
		.am-avg-md-1>li {
			width: 100%
		}

		.am-avg-md-1>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-1>li:nth-of-type(1n+1) {
			clear: both
		}

		.am-avg-md-2>li {
			width: 50%
		}

		.am-avg-md-2>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-2>li:nth-of-type(2n+1) {
			clear: both
		}

		.am-avg-md-3>li {
			width: 33.33333333%
		}

		.am-avg-md-3>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-3>li:nth-of-type(3n+1) {
			clear: both
		}

		.am-avg-md-4>li {
			width: 25%
		}

		.am-avg-md-4>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-4>li:nth-of-type(4n+1) {
			clear: both
		}

		.am-avg-md-5>li {
			width: 20%
		}

		.am-avg-md-5>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-5>li:nth-of-type(5n+1) {
			clear: both
		}

		.am-avg-md-6>li {
			width: 16.66666667%
		}

		.am-avg-md-6>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-6>li:nth-of-type(6n+1) {
			clear: both
		}

		.am-avg-md-7>li {
			width: 14.28571429%
		}

		.am-avg-md-7>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-7>li:nth-of-type(7n+1) {
			clear: both
		}

		.am-avg-md-8>li {
			width: 12.5%
		}

		.am-avg-md-8>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-8>li:nth-of-type(8n+1) {
			clear: both
		}

		.am-avg-md-9>li {
			width: 11.11111111%
		}

		.am-avg-md-9>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-9>li:nth-of-type(9n+1) {
			clear: both
		}

		.am-avg-md-10>li {
			width: 10%
		}

		.am-avg-md-10>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-10>li:nth-of-type(10n+1) {
			clear: both
		}

		.am-avg-md-11>li {
			width: 9.09090909%
		}

		.am-avg-md-11>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-11>li:nth-of-type(11n+1) {
			clear: both
		}

		.am-avg-md-12>li {
			width: 8.33333333%
		}

		.am-avg-md-12>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-md-12>li:nth-of-type(12n+1) {
			clear: both
		}
	}

	@media only screen and (min-width:1025px) {
		.am-avg-lg-1>li {
			width: 100%
		}

		.am-avg-lg-1>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-1>li:nth-of-type(1n+1) {
			clear: both
		}

		.am-avg-lg-2>li {
			width: 50%
		}

		.am-avg-lg-2>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-2>li:nth-of-type(2n+1) {
			clear: both
		}

		.am-avg-lg-3>li {
			width: 33.33333333%
		}

		.am-avg-lg-3>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-3>li:nth-of-type(3n+1) {
			clear: both
		}

		.am-avg-lg-4>li {
			width: 25%
		}

		.am-avg-lg-4>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-4>li:nth-of-type(4n+1) {
			clear: both
		}

		.am-avg-lg-5>li {
			width: 20%
		}

		.am-avg-lg-5>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-5>li:nth-of-type(5n+1) {
			clear: both
		}

		.am-avg-lg-6>li {
			width: 16.66666667%
		}

		.am-avg-lg-6>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-6>li:nth-of-type(6n+1) {
			clear: both
		}

		.am-avg-lg-7>li {
			width: 14.28571429%
		}

		.am-avg-lg-7>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-7>li:nth-of-type(7n+1) {
			clear: both
		}

		.am-avg-lg-8>li {
			width: 12.5%
		}

		.am-avg-lg-8>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-8>li:nth-of-type(8n+1) {
			clear: both
		}

		.am-avg-lg-9>li {
			width: 11.11111111%
		}

		.am-avg-lg-9>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-9>li:nth-of-type(9n+1) {
			clear: both
		}

		.am-avg-lg-10>li {
			width: 10%
		}

		.am-avg-lg-10>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-10>li:nth-of-type(10n+1) {
			clear: both
		}

		.am-avg-lg-11>li {
			width: 9.09090909%
		}

		.am-avg-lg-11>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-11>li:nth-of-type(11n+1) {
			clear: both
		}

		.am-avg-lg-12>li {
			width: 8.33333333%
		}

		.am-avg-lg-12>li:nth-of-type(n) {
			clear: none
		}

		.am-avg-lg-12>li:nth-of-type(12n+1) {
			clear: both
		}
	}

	code,
	kbd,
	pre,
	samp {
		font-family: Monaco, Menlo, Consolas, "Courier New", FontAwesome, monospace
	}

	code {
		padding: 2px 4px;
		font-size: 1.3rem;
		color: #c7254e;
		background-color: #f8f8f8;
		white-space: nowrap;
		border-radius: 0
	}

	pre {
		display: block;
		padding: 1rem;
		margin: 1rem 0;
		font-size: 1.3rem;
		line-height: 1.6;
		word-break: break-all;
		word-wrap: break-word;
		color: #555;
		background-color: #f8f8f8;
		border: 1px solid #dedede;
		border-radius: 0
	}

	pre code {
		padding: 0;
		font-size: inherit;
		color: inherit;
		white-space: pre-wrap;
		background-color: transparent;
		border-radius: 0
	}

	.am-pre-scrollable {
		max-height: 24rem;
		overflow-y: scroll
	}

	.am-btn {
		display: inline-block;
		margin-bottom: 0;
		padding: .625em 1em;
		vertical-align: middle;
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1.2;
		text-align: center;
		white-space: nowrap;
		background-image: none;
		border: 1px solid transparent;
		border-radius: 0;
		cursor: pointer;
		outline: 0;
		-webkit-appearance: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-webkit-transition: background-color 300ms ease-out, border-color 300ms ease-out;
		transition: background-color 300ms ease-out, border-color 300ms ease-out
	}

	.am-btn:focus {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px
	}

	.am-btn:hover,
	.am-btn:focus {
		outline: 0;
		color: #444;
		text-decoration: none
	}

	.am-btn:active,
	.am-btn.am-active {
		background-image: none;
		-webkit-box-shadow: inset 0 1px 8px rgba(0, 0, 0, .125);
		box-shadow: inset 0 1px 8px rgba(0, 0, 0, .125)
	}

	.am-btn.am-disabled,
	.am-btn[disabled],
	fieldset[disabled] .am-btn {
		pointer-events: none;
		border-color: transparent;
		cursor: not-allowed;
		opacity: .45;
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.am-btn.am-round {
		border-radius: 1000px
	}

	.am-btn.am-radius {
		border-radius: 2px
	}

	.am-btn-default {
		color: #444;
		background-color: #e6e6e6;
		border-color: #e6e6e6
	}

	.am-btn-default:hover,
	.am-btn-default:focus,
	.am-btn-default:active,
	.am-btn-default.am-active,
	.am-active .am-btn-default.am-dropdown-toggle {
		color: #444;
		background-color: #c7c7c7;
		border-color: #c7c7c7
	}

	.am-btn-default:active,
	.am-btn-default.am-btn-active,
	.am-active .am-btn-default.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-default.am-disabled,
	.am-btn-default[disabled],
	fieldset[disabled] .am-btn-default,
	.am-btn-default.am-disabled:hover,
	.am-btn-default[disabled]:hover,
	fieldset[disabled] .am-btn-default:hover,
	.am-btn-default.am-disabled:focus,
	.am-btn-default[disabled]:focus,
	fieldset[disabled] .am-btn-default:focus,
	.am-btn-default.am-disabled:active,
	.am-btn-default[disabled]:active,
	fieldset[disabled] .am-btn-default:active,
	.am-btn-default.am-disabled.am-btn-active,
	.am-btn-default[disabled].am-btn-active,
	fieldset[disabled] .am-btn-default.am-btn-active {
		background-color: #e6e6e6;
		border-color: #e6e6e6
	}

	.am-btn-group .am-btn-default,
	.am-btn-group-stacked .am-btn-default {
		border-color: #d9d9d9
	}

	.am-btn-primary {
		color: #fff;
		background-color: #0e90d2;
		border-color: #0e90d2
	}

	.am-btn-primary:hover,
	.am-btn-primary:focus,
	.am-btn-primary:active,
	.am-btn-primary.am-active,
	.am-active .am-btn-primary.am-dropdown-toggle {
		color: #fff;
		background-color: #0a6999;
		border-color: #0a6999
	}

	.am-btn-primary:active,
	.am-btn-primary.am-btn-active,
	.am-active .am-btn-primary.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-primary.am-disabled,
	.am-btn-primary[disabled],
	fieldset[disabled] .am-btn-primary,
	.am-btn-primary.am-disabled:hover,
	.am-btn-primary[disabled]:hover,
	fieldset[disabled] .am-btn-primary:hover,
	.am-btn-primary.am-disabled:focus,
	.am-btn-primary[disabled]:focus,
	fieldset[disabled] .am-btn-primary:focus,
	.am-btn-primary.am-disabled:active,
	.am-btn-primary[disabled]:active,
	fieldset[disabled] .am-btn-primary:active,
	.am-btn-primary.am-disabled.am-btn-active,
	.am-btn-primary[disabled].am-btn-active,
	fieldset[disabled] .am-btn-primary.am-btn-active {
		background-color: #0e90d2;
		border-color: #0e90d2
	}

	.am-btn-group .am-btn-primary,
	.am-btn-group-stacked .am-btn-primary {
		border-color: #0c80ba
	}

	.am-btn-warning {
		color: #fff;
		background-color: #f37b1d;
		border-color: #f37b1d
	}

	.am-btn-warning:hover,
	.am-btn-warning:focus,
	.am-btn-warning:active,
	.am-btn-warning.am-active,
	.am-active .am-btn-warning.am-dropdown-toggle {
		color: #fff;
		background-color: #c85e0b;
		border-color: #c85e0b
	}

	.am-btn-warning:active,
	.am-btn-warning.am-btn-active,
	.am-active .am-btn-warning.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-warning.am-disabled,
	.am-btn-warning[disabled],
	fieldset[disabled] .am-btn-warning,
	.am-btn-warning.am-disabled:hover,
	.am-btn-warning[disabled]:hover,
	fieldset[disabled] .am-btn-warning:hover,
	.am-btn-warning.am-disabled:focus,
	.am-btn-warning[disabled]:focus,
	fieldset[disabled] .am-btn-warning:focus,
	.am-btn-warning.am-disabled:active,
	.am-btn-warning[disabled]:active,
	fieldset[disabled] .am-btn-warning:active,
	.am-btn-warning.am-disabled.am-btn-active,
	.am-btn-warning[disabled].am-btn-active,
	fieldset[disabled] .am-btn-warning.am-btn-active {
		background-color: #f37b1d;
		border-color: #f37b1d
	}

	.am-btn-group .am-btn-warning,
	.am-btn-group-stacked .am-btn-warning {
		border-color: #ea6e0c
	}

	.am-btn-danger {
		color: #fff;
		background-color: #dd514c;
		border-color: #dd514c
	}

	.am-btn-danger:hover,
	.am-btn-danger:focus,
	.am-btn-danger:active,
	.am-btn-danger.am-active,
	.am-active .am-btn-danger.am-dropdown-toggle {
		color: #fff;
		background-color: #c62b26;
		border-color: #c62b26
	}

	.am-btn-danger:active,
	.am-btn-danger.am-btn-active,
	.am-active .am-btn-danger.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-danger.am-disabled,
	.am-btn-danger[disabled],
	fieldset[disabled] .am-btn-danger,
	.am-btn-danger.am-disabled:hover,
	.am-btn-danger[disabled]:hover,
	fieldset[disabled] .am-btn-danger:hover,
	.am-btn-danger.am-disabled:focus,
	.am-btn-danger[disabled]:focus,
	fieldset[disabled] .am-btn-danger:focus,
	.am-btn-danger.am-disabled:active,
	.am-btn-danger[disabled]:active,
	fieldset[disabled] .am-btn-danger:active,
	.am-btn-danger.am-disabled.am-btn-active,
	.am-btn-danger[disabled].am-btn-active,
	fieldset[disabled] .am-btn-danger.am-btn-active {
		background-color: #dd514c;
		border-color: #dd514c
	}

	.am-btn-group .am-btn-danger,
	.am-btn-group-stacked .am-btn-danger {
		border-color: #d93c37
	}

	.am-btn-success {
		color: #fff;
		background-color: #5eb95e;
		border-color: #5eb95e
	}

	.am-btn-success:hover,
	.am-btn-success:focus,
	.am-btn-success:active,
	.am-btn-success.am-active,
	.am-active .am-btn-success.am-dropdown-toggle {
		color: #fff;
		background-color: #429842;
		border-color: #429842
	}

	.am-btn-success:active,
	.am-btn-success.am-btn-active,
	.am-active .am-btn-success.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-success.am-disabled,
	.am-btn-success[disabled],
	fieldset[disabled] .am-btn-success,
	.am-btn-success.am-disabled:hover,
	.am-btn-success[disabled]:hover,
	fieldset[disabled] .am-btn-success:hover,
	.am-btn-success.am-disabled:focus,
	.am-btn-success[disabled]:focus,
	fieldset[disabled] .am-btn-success:focus,
	.am-btn-success.am-disabled:active,
	.am-btn-success[disabled]:active,
	fieldset[disabled] .am-btn-success:active,
	.am-btn-success.am-disabled.am-btn-active,
	.am-btn-success[disabled].am-btn-active,
	fieldset[disabled] .am-btn-success.am-btn-active {
		background-color: #5eb95e;
		border-color: #5eb95e
	}

	.am-btn-group .am-btn-success,
	.am-btn-group-stacked .am-btn-success {
		border-color: #4db14d
	}

	.am-btn-secondary {
		color: #fff;
		background-color: #3bb4f2;
		border-color: #3bb4f2
	}

	.am-btn-secondary:hover,
	.am-btn-secondary:focus,
	.am-btn-secondary:active,
	.am-btn-secondary.am-active,
	.am-active .am-btn-secondary.am-dropdown-toggle {
		color: #fff;
		background-color: #0f9ae0;
		border-color: #0f9ae0
	}

	.am-btn-secondary:active,
	.am-btn-secondary.am-btn-active,
	.am-active .am-btn-secondary.am-dropdown-toggle {
		background-image: none
	}

	.am-btn-secondary.am-disabled,
	.am-btn-secondary[disabled],
	fieldset[disabled] .am-btn-secondary,
	.am-btn-secondary.am-disabled:hover,
	.am-btn-secondary[disabled]:hover,
	fieldset[disabled] .am-btn-secondary:hover,
	.am-btn-secondary.am-disabled:focus,
	.am-btn-secondary[disabled]:focus,
	fieldset[disabled] .am-btn-secondary:focus,
	.am-btn-secondary.am-disabled:active,
	.am-btn-secondary[disabled]:active,
	fieldset[disabled] .am-btn-secondary:active,
	.am-btn-secondary.am-disabled.am-btn-active,
	.am-btn-secondary[disabled].am-btn-active,
	fieldset[disabled] .am-btn-secondary.am-btn-active {
		background-color: #3bb4f2;
		border-color: #3bb4f2
	}

	.am-btn-group .am-btn-secondary,
	.am-btn-group-stacked .am-btn-secondary {
		border-color: #23abf0
	}

	.am-btn-link {
		color: #0e90d2;
		font-weight: 400;
		cursor: pointer;
		border-radius: 0
	}

	.am-btn-link,
	.am-btn-link:active,
	.am-btn-link[disabled],
	fieldset[disabled] .am-btn-link {
		background-color: transparent;
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.am-btn-link,
	.am-btn-link:hover,
	.am-btn-link:focus,
	.am-btn-link:active {
		border-color: transparent
	}

	.am-btn-link:hover,
	.am-btn-link:focus {
		color: #095f8a;
		text-decoration: underline;
		background-color: transparent
	}

	.am-btn-link[disabled]:hover,
	fieldset[disabled] .am-btn-link:hover,
	.am-btn-link[disabled]:focus,
	fieldset[disabled] .am-btn-link:focus {
		color: #999;
		text-decoration: none
	}

	.am-btn-xs {
		font-size: 1.2rem
	}

	.am-btn-sm {
		font-size: 1.4rem
	}

	.am-btn-lg {
		font-size: 1.8rem
	}

	.am-btn-xl {
		font-size: 2rem
	}

	.am-btn-block {
		display: block;
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}

	.am-btn-block+.am-btn-block {
		margin-top: 5px
	}

	input[type=submit].am-btn-block,
	input[type=reset].am-btn-block,
	input[type=button].am-btn-block {
		width: 100%
	}

	.am-btn.am-btn-loading .am-icon-spin {
		margin-right: 5px
	}

	table {
		max-width: 100%;
		background-color: transparent;
		empty-cells: show
	}

	table code {
		white-space: normal
	}

	th {
		text-align: left
	}

	.am-table {
		width: 100%;
		margin-bottom: 1.6rem;
		border-spacing: 0;
		border-collapse: separate
	}

	.am-table>thead>tr>th,
	.am-table>tbody>tr>th,
	.am-table>tfoot>tr>th,
	.am-table>thead>tr>td,
	.am-table>tbody>tr>td,
	.am-table>tfoot>tr>td {
		padding: .7rem;
		line-height: 1.6;
		vertical-align: top;
		border-top: 1px solid #ddd
	}

	.am-table>thead>tr>th {
		vertical-align: bottom;
		border-bottom: 1px solid #ddd
	}

	.am-table>caption+thead>tr:first-child>th,
	.am-table>colgroup+thead>tr:first-child>th,
	.am-table>thead:first-child>tr:first-child>th,
	.am-table>caption+thead>tr:first-child>td,
	.am-table>colgroup+thead>tr:first-child>td,
	.am-table>thead:first-child>tr:first-child>td {
		border-top: 0
	}

	.am-table>tbody+tbody tr:first-child td {
		border-top: 2px solid #ddd
	}

	.am-table-bordered {
		border: 1px solid #ddd
	}

	.am-table-bordered>thead>tr>th,
	.am-table-bordered>tbody>tr>th,
	.am-table-bordered>tfoot>tr>th,
	.am-table-bordered>thead>tr>td,
	.am-table-bordered>tbody>tr>td,
	.am-table-bordered>tfoot>tr>td {
		border-left: 1px solid #ddd
	}

	.am-table-bordered>thead>tr>th:first-child,
	.am-table-bordered>tbody>tr>th:first-child,
	.am-table-bordered>tfoot>tr>th:first-child,
	.am-table-bordered>thead>tr>td:first-child,
	.am-table-bordered>tbody>tr>td:first-child,
	.am-table-bordered>tfoot>tr>td:first-child {
		border-left: none
	}

	.am-table-radius {
		border: 1px solid #ddd;
		border-radius: 2px
	}

	.am-table-radius>thead>tr:first-child>th:first-child,
	.am-table-radius>thead>tr:first-child>td:first-child {
		border-top-left-radius: 2px;
		border-left: none
	}

	.am-table-radius>thead>tr:first-child>th:last-child,
	.am-table-radius>thead>tr:first-child>td:last-child {
		border-top-right-radius: 2px;
		border-right: none
	}

	.am-table-radius>tbody>tr>th:first-child,
	.am-table-radius>tbody>tr>td:first-child {
		border-left: none
	}

	.am-table-radius>tbody>tr>th:last-child,
	.am-table-radius>tbody>tr>td:last-child {
		border-right: none
	}

	.am-table-radius>tbody>tr:last-child>th,
	.am-table-radius>tbody>tr:last-child>td {
		border-bottom: none
	}

	.am-table-radius>tbody>tr:last-child>th:first-child,
	.am-table-radius>tbody>tr:last-child>td:first-child {
		border-bottom-left-radius: 2px
	}

	.am-table-radius>tbody>tr:last-child>th:last-child,
	.am-table-radius>tbody>tr:last-child>td:last-child {
		border-bottom-right-radius: 2px
	}

	.am-table-striped>tbody>tr:nth-child(odd)>td,
	.am-table-striped>tbody>tr:nth-child(odd)>th {
		background-color: #f9f9f9
	}

	.am-table-hover>tbody>tr:hover>td,
	.am-table-hover>tbody>tr:hover>th {
		background-color: #e9e9e9
	}

	.am-table>thead>tr>td.am-active,
	.am-table>tbody>tr>td.am-active,
	.am-table>tfoot>tr>td.am-active,
	.am-table>thead>tr>th.am-active,
	.am-table>tbody>tr>th.am-active,
	.am-table>tfoot>tr>th.am-active,
	.am-table>thead>tr.am-active>td,
	.am-table>tbody>tr.am-active>td,
	.am-table>tfoot>tr.am-active>td,
	.am-table>thead>tr.am-active>th,
	.am-table>tbody>tr.am-active>th,
	.am-table>tfoot>tr.am-active>th {
		background-color: #ffd
	}

	.am-table>thead>tr>td.am-disabled,
	.am-table>tbody>tr>td.am-disabled,
	.am-table>tfoot>tr>td.am-disabled,
	.am-table>thead>tr>th.am-disabled,
	.am-table>tbody>tr>th.am-disabled,
	.am-table>tfoot>tr>th.am-disabled,
	.am-table>thead>tr.am-disabled>td,
	.am-table>tbody>tr.am-disabled>td,
	.am-table>tfoot>tr.am-disabled>td,
	.am-table>thead>tr.am-disabled>th,
	.am-table>tbody>tr.am-disabled>th,
	.am-table>tfoot>tr.am-disabled>th {
		color: #999
	}

	.am-table>thead>tr>td.am-primary,
	.am-table>tbody>tr>td.am-primary,
	.am-table>tfoot>tr>td.am-primary,
	.am-table>thead>tr>th.am-primary,
	.am-table>tbody>tr>th.am-primary,
	.am-table>tfoot>tr>th.am-primary,
	.am-table>thead>tr.am-primary>td,
	.am-table>tbody>tr.am-primary>td,
	.am-table>tfoot>tr.am-primary>td,
	.am-table>thead>tr.am-primary>th,
	.am-table>tbody>tr.am-primary>th,
	.am-table>tfoot>tr.am-primary>th {
		color: #0b76ac;
		background-color: rgba(14, 144, 210, .115)
	}

	.am-table>thead>tr>td.am-success,
	.am-table>tbody>tr>td.am-success,
	.am-table>tfoot>tr>td.am-success,
	.am-table>thead>tr>th.am-success,
	.am-table>tbody>tr>th.am-success,
	.am-table>tfoot>tr>th.am-success,
	.am-table>thead>tr.am-success>td,
	.am-table>tbody>tr.am-success>td,
	.am-table>tfoot>tr.am-success>td,
	.am-table>thead>tr.am-success>th,
	.am-table>tbody>tr.am-success>th,
	.am-table>tfoot>tr.am-success>th {
		color: #5eb95e;
		background-color: rgba(94, 185, 94, .115)
	}

	.am-table>thead>tr>td.am-warning,
	.am-table>tbody>tr>td.am-warning,
	.am-table>tfoot>tr>td.am-warning,
	.am-table>thead>tr>th.am-warning,
	.am-table>tbody>tr>th.am-warning,
	.am-table>tfoot>tr>th.am-warning,
	.am-table>thead>tr.am-warning>td,
	.am-table>tbody>tr.am-warning>td,
	.am-table>tfoot>tr.am-warning>td,
	.am-table>thead>tr.am-warning>th,
	.am-table>tbody>tr.am-warning>th,
	.am-table>tfoot>tr.am-warning>th {
		color: #f37b1d;
		background-color: rgba(243, 123, 29, .115)
	}

	.am-table>thead>tr>td.am-danger,
	.am-table>tbody>tr>td.am-danger,
	.am-table>tfoot>tr>td.am-danger,
	.am-table>thead>tr>th.am-danger,
	.am-table>tbody>tr>th.am-danger,
	.am-table>tfoot>tr>th.am-danger,
	.am-table>thead>tr.am-danger>td,
	.am-table>tbody>tr.am-danger>td,
	.am-table>tfoot>tr.am-danger>td,
	.am-table>thead>tr.am-danger>th,
	.am-table>tbody>tr.am-danger>th,
	.am-table>tfoot>tr.am-danger>th {
		color: #dd514c;
		background-color: rgba(221, 81, 76, .115)
	}

	fieldset {
		border: none
	}

	legend {
		display: block;
		width: 100%;
		margin-bottom: 2rem;
		font-size: 2rem;
		line-height: inherit;
		color: #333;
		border-bottom: 1px solid #e5e5e5;
		padding-bottom: .5rem
	}

	label {
		display: inline-block;
		margin-bottom: 5px;
		font-weight: 700
	}

	input[type=search] {
		-webkit-box-sizing: border-box;
		box-sizing: border-box
	}

	input[type=radio],
	input[type=checkbox] {
		margin: 4px 0 0;
		margin-top: 1px \9;
		line-height: normal
	}

	input[type=file] {
		display: block
	}

	select[multiple],
	select[size] {
		height: auto
	}

	select optgroup {
		font-size: inherit;
		font-style: inherit;
		font-family: inherit
	}

	input[type=file]:focus,
	input[type=radio]:focus,
	input[type=checkbox]:focus {
		outline: thin dotted;
		outline: 5px auto -webkit-focus-ring-color;
		outline-offset: -2px
	}

	input[type=number]::-webkit-outer-spin-button,
	input[type=number]::-webkit-inner-spin-button {
		height: auto
	}

	output {
		display: block;
		padding-top: 1.6rem;
		font-size: 1.6rem;
		line-height: 1.6;
		color: #555;
		vertical-align: middle
	}

	.am-form select,
	.am-form textarea,
	.am-form input[type=text],
	.am-form input[type=password],
	.am-form input[type=datetime],
	.am-form input[type=datetime-local],
	.am-form input[type=date],
	.am-form input[type=month],
	.am-form input[type=time],
	.am-form input[type=week],
	.am-form input[type=number],
	.am-form input[type=email],
	.am-form input[type=url],
	.am-form input[type=search],
	.am-form input[type=tel],
	.am-form input[type=color],
	.am-form-field {
		display: block;
		width: 100%;
		padding: .625em;
		font-size: 1.6rem;
		line-height: 1.2;
		color: #555;
		vertical-align: middle;
		background-color: #fff;
		background-image: none;
		border: 1px solid #ccc;
		border-radius: 0;
		-webkit-appearance: none;
		-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
		transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
	}

	.am-form select:focus,
	.am-form textarea:focus,
	.am-form input[type=text]:focus,
	.am-form input[type=password]:focus,
	.am-form input[type=datetime]:focus,
	.am-form input[type=datetime-local]:focus,
	.am-form input[type=date]:focus,
	.am-form input[type=month]:focus,
	.am-form input[type=time]:focus,
	.am-form input[type=week]:focus,
	.am-form input[type=number]:focus,
	.am-form input[type=email]:focus,
	.am-form input[type=url]:focus,
	.am-form input[type=search]:focus,
	.am-form input[type=tel]:focus,
	.am-form input[type=color]:focus,
	.am-form-field:focus {
		outline: 0
	}

	.am-form select:focus,
	.am-form textarea:focus,
	.am-form input[type=text]:focus,
	.am-form input[type=password]:focus,
	.am-form input[type=datetime]:focus,
	.am-form input[type=datetime-local]:focus,
	.am-form input[type=date]:focus,
	.am-form input[type=month]:focus,
	.am-form input[type=time]:focus,
	.am-form input[type=week]:focus,
	.am-form input[type=number]:focus,
	.am-form input[type=email]:focus,
	.am-form input[type=url]:focus,
	.am-form input[type=search]:focus,
	.am-form input[type=tel]:focus,
	.am-form input[type=color]:focus,
	.am-form-field:focus {
		background-color: #fefffe;
		border-color: #3bb4f2;
		outline: 0;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px rgba(59, 180, 242, .3);
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px rgba(59, 180, 242, .3)
	}

	.am-form select::-webkit-input-placeholder,
	.am-form textarea::-webkit-input-placeholder,
	.am-form input[type=text]::-webkit-input-placeholder,
	.am-form input[type=password]::-webkit-input-placeholder,
	.am-form input[type=datetime]::-webkit-input-placeholder,
	.am-form input[type=datetime-local]::-webkit-input-placeholder,
	.am-form input[type=date]::-webkit-input-placeholder,
	.am-form input[type=month]::-webkit-input-placeholder,
	.am-form input[type=time]::-webkit-input-placeholder,
	.am-form input[type=week]::-webkit-input-placeholder,
	.am-form input[type=number]::-webkit-input-placeholder,
	.am-form input[type=email]::-webkit-input-placeholder,
	.am-form input[type=url]::-webkit-input-placeholder,
	.am-form input[type=search]::-webkit-input-placeholder,
	.am-form input[type=tel]::-webkit-input-placeholder,
	.am-form input[type=color]::-webkit-input-placeholder,
	.am-form-field::-webkit-input-placeholder {
		color: #999
	}

	.am-form select::-moz-placeholder,
	.am-form textarea::-moz-placeholder,
	.am-form input[type=text]::-moz-placeholder,
	.am-form input[type=password]::-moz-placeholder,
	.am-form input[type=datetime]::-moz-placeholder,
	.am-form input[type=datetime-local]::-moz-placeholder,
	.am-form input[type=date]::-moz-placeholder,
	.am-form input[type=month]::-moz-placeholder,
	.am-form input[type=time]::-moz-placeholder,
	.am-form input[type=week]::-moz-placeholder,
	.am-form input[type=number]::-moz-placeholder,
	.am-form input[type=email]::-moz-placeholder,
	.am-form input[type=url]::-moz-placeholder,
	.am-form input[type=search]::-moz-placeholder,
	.am-form input[type=tel]::-moz-placeholder,
	.am-form input[type=color]::-moz-placeholder,
	.am-form-field::-moz-placeholder {
		color: #999
	}

	.am-form select:-ms-input-placeholder,
	.am-form textarea:-ms-input-placeholder,
	.am-form input[type=text]:-ms-input-placeholder,
	.am-form input[type=password]:-ms-input-placeholder,
	.am-form input[type=datetime]:-ms-input-placeholder,
	.am-form input[type=datetime-local]:-ms-input-placeholder,
	.am-form input[type=date]:-ms-input-placeholder,
	.am-form input[type=month]:-ms-input-placeholder,
	.am-form input[type=time]:-ms-input-placeholder,
	.am-form input[type=week]:-ms-input-placeholder,
	.am-form input[type=number]:-ms-input-placeholder,
	.am-form input[type=email]:-ms-input-placeholder,
	.am-form input[type=url]:-ms-input-placeholder,
	.am-form input[type=search]:-ms-input-placeholder,
	.am-form input[type=tel]:-ms-input-placeholder,
	.am-form input[type=color]:-ms-input-placeholder,
	.am-form-field:-ms-input-placeholder {
		color: #999
	}

	.am-form select::placeholder,
	.am-form textarea::placeholder,
	.am-form input[type=text]::placeholder,
	.am-form input[type=password]::placeholder,
	.am-form input[type=datetime]::placeholder,
	.am-form input[type=datetime-local]::placeholder,
	.am-form input[type=date]::placeholder,
	.am-form input[type=month]::placeholder,
	.am-form input[type=time]::placeholder,
	.am-form input[type=week]::placeholder,
	.am-form input[type=number]::placeholder,
	.am-form input[type=email]::placeholder,
	.am-form input[type=url]::placeholder,
	.am-form input[type=search]::placeholder,
	.am-form input[type=tel]::placeholder,
	.am-form input[type=color]::placeholder,
	.am-form-field::placeholder {
		color: #999
	}

	.am-form select::-moz-placeholder,
	.am-form textarea::-moz-placeholder,
	.am-form input[type=text]::-moz-placeholder,
	.am-form input[type=password]::-moz-placeholder,
	.am-form input[type=datetime]::-moz-placeholder,
	.am-form input[type=datetime-local]::-moz-placeholder,
	.am-form input[type=date]::-moz-placeholder,
	.am-form input[type=month]::-moz-placeholder,
	.am-form input[type=time]::-moz-placeholder,
	.am-form input[type=week]::-moz-placeholder,
	.am-form input[type=number]::-moz-placeholder,
	.am-form input[type=email]::-moz-placeholder,
	.am-form input[type=url]::-moz-placeholder,
	.am-form input[type=search]::-moz-placeholder,
	.am-form input[type=tel]::-moz-placeholder,
	.am-form input[type=color]::-moz-placeholder,
	.am-form-field::-moz-placeholder {
		opacity: 1
	}

	.am-form select[disabled],
	.am-form textarea[disabled],
	.am-form input[type=text][disabled],
	.am-form input[type=password][disabled],
	.am-form input[type=datetime][disabled],
	.am-form input[type=datetime-local][disabled],
	.am-form input[type=date][disabled],
	.am-form input[type=month][disabled],
	.am-form input[type=time][disabled],
	.am-form input[type=week][disabled],
	.am-form input[type=number][disabled],
	.am-form input[type=email][disabled],
	.am-form input[type=url][disabled],
	.am-form input[type=search][disabled],
	.am-form input[type=tel][disabled],
	.am-form input[type=color][disabled],
	.am-form-field[disabled],
	.am-form select[readonly],
	.am-form textarea[readonly],
	.am-form input[type=text][readonly],
	.am-form input[type=password][readonly],
	.am-form input[type=datetime][readonly],
	.am-form input[type=datetime-local][readonly],
	.am-form input[type=date][readonly],
	.am-form input[type=month][readonly],
	.am-form input[type=time][readonly],
	.am-form input[type=week][readonly],
	.am-form input[type=number][readonly],
	.am-form input[type=email][readonly],
	.am-form input[type=url][readonly],
	.am-form input[type=search][readonly],
	.am-form input[type=tel][readonly],
	.am-form input[type=color][readonly],
	.am-form-field[readonly],
	fieldset[disabled] .am-form select,
	fieldset[disabled] .am-form textarea,
	fieldset[disabled] .am-form input[type=text],
	fieldset[disabled] .am-form input[type=password],
	fieldset[disabled] .am-form input[type=datetime],
	fieldset[disabled] .am-form input[type=datetime-local],
	fieldset[disabled] .am-form input[type=date],
	fieldset[disabled] .am-form input[type=month],
	fieldset[disabled] .am-form input[type=time],
	fieldset[disabled] .am-form input[type=week],
	fieldset[disabled] .am-form input[type=number],
	fieldset[disabled] .am-form input[type=email],
	fieldset[disabled] .am-form input[type=url],
	fieldset[disabled] .am-form input[type=search],
	fieldset[disabled] .am-form input[type=tel],
	fieldset[disabled] .am-form input[type=color],
	fieldset[disabled] .am-form-field {
		cursor: not-allowed;
		background-color: #eee
	}

	.am-form select.am-radius,
	.am-form textarea.am-radius,
	.am-form input[type=text].am-radius,
	.am-form input[type=password].am-radius,
	.am-form input[type=datetime].am-radius,
	.am-form input[type=datetime-local].am-radius,
	.am-form input[type=date].am-radius,
	.am-form input[type=month].am-radius,
	.am-form input[type=time].am-radius,
	.am-form input[type=week].am-radius,
	.am-form input[type=number].am-radius,
	.am-form input[type=email].am-radius,
	.am-form input[type=url].am-radius,
	.am-form input[type=search].am-radius,
	.am-form input[type=tel].am-radius,
	.am-form input[type=color].am-radius,
	.am-form-field.am-radius {
		border-radius: 2px
	}

	.am-form select.am-round,
	.am-form textarea.am-round,
	.am-form input[type=text].am-round,
	.am-form input[type=password].am-round,
	.am-form input[type=datetime].am-round,
	.am-form input[type=datetime-local].am-round,
	.am-form input[type=date].am-round,
	.am-form input[type=month].am-round,
	.am-form input[type=time].am-round,
	.am-form input[type=week].am-round,
	.am-form input[type=number].am-round,
	.am-form input[type=email].am-round,
	.am-form input[type=url].am-round,
	.am-form input[type=search].am-round,
	.am-form input[type=tel].am-round,
	.am-form input[type=color].am-round,
	.am-form-field.am-round {
		border-radius: 1000px
	}

	.am-form textarea,
	.am-form select[multiple],
	.am-form select[size] {
		height: auto
	}

	.am-form select {
		-webkit-appearance: none !important;
		-webkit-border-radius: 0;
		background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+) no-repeat 100% center
	}

	.am-form select[multiple=multiple] {
		background-image: none
	}

	.am-form-help {
		display: block;
		margin-top: 5px;
		margin-bottom: 10px;
		color: #999;
		font-size: 1.3rem
	}

	.am-form-group {
		margin-bottom: 1.5rem
	}

	.am-radio,
	.am-checkbox {
		display: block;
		min-height: 1.92rem;
		margin-top: 10px;
		margin-bottom: 10px;
		padding-left: 20px;
		vertical-align: middle
	}

	.am-radio label,
	.am-checkbox label {
		display: inline;
		margin-bottom: 0;
		font-weight: 400;
		cursor: pointer
	}

	.am-radio input[type=radio],
	.am-radio-inline input[type=radio],
	.am-checkbox input[type=checkbox],
	.am-checkbox-inline input[type=checkbox] {
		float: left;
		margin-left: -20px;
		outline: 0
	}

	.am-radio+.am-radio,
	.am-checkbox+.am-checkbox {
		margin-top: -5px
	}

	.am-radio-inline,
	.am-checkbox-inline {
		display: inline-block;
		padding-left: 20px;
		margin-bottom: 0;
		vertical-align: middle;
		font-weight: 400;
		cursor: pointer
	}

	.am-radio-inline+.am-radio-inline,
	.am-checkbox-inline+.am-checkbox-inline {
		margin-top: 0;
		margin-left: 10px
	}

	input[type=radio][disabled],
	input[type=checkbox][disabled],
	.am-radio[disabled],
	.am-radio-inline[disabled],
	.am-checkbox[disabled],
	.am-checkbox-inline[disabled],
	fieldset[disabled] input[type=radio],
	fieldset[disabled] input[type=checkbox],
	fieldset[disabled] .am-radio,
	fieldset[disabled] .am-radio-inline,
	fieldset[disabled] .am-checkbox,
	fieldset[disabled] .am-checkbox-inline {
		cursor: not-allowed
	}

	.am-form-warning .am-form-help,
	.am-form-warning .am-form-label,
	.am-form-warning .am-radio,
	.am-form-warning .am-checkbox,
	.am-form-warning .am-radio-inline,
	.am-form-warning .am-checkbox-inline,
	.am-form-warning label {
		color: #f37b1d
	}

	.am-form-warning [class*=icon-] {
		color: #f37b1d
	}

	.am-form-warning .am-form-field {
		border-color: #f37b1d !important;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
	}

	.am-form-warning .am-form-field:focus {
		background-color: #fefffe;
		border-color: #d2620b;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #f8b47e !important;
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #f8b47e !important
	}

	.am-form-error .am-form-help,
	.am-form-error .am-form-label,
	.am-form-error .am-radio,
	.am-form-error .am-checkbox,
	.am-form-error .am-radio-inline,
	.am-form-error .am-checkbox-inline,
	.am-form-error label {
		color: #dd514c
	}

	.am-form-error [class*=icon-] {
		color: #dd514c
	}

	.am-form-error .am-form-field,
	.am-field-error {
		border-color: #dd514c !important;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
	}

	.am-form-error .am-form-field:focus,
	.am-field-error:focus {
		background-color: #fefffe;
		border-color: #cf2d27;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #eda4a2 !important;
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #eda4a2 !important
	}

	.am-form-success .am-form-help,
	.am-form-success .am-form-label,
	.am-form-success .am-radio,
	.am-form-success .am-checkbox,
	.am-form-success .am-radio-inline,
	.am-form-success .am-checkbox-inline,
	.am-form-success label {
		color: #5eb95e
	}

	.am-form-success [class*=icon-] {
		color: #5eb95e
	}

	.am-form-success .am-form-field,
	.am-field-valid {
		border-color: #5eb95e !important;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
	}

	.am-form-success .am-form-field:focus,
	.am-field-valid:focus {
		background-color: #fefffe;
		border-color: #459f45;
		-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #a5d8a5 !important;
		box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 5px #a5d8a5 !important
	}

	.am-form-horizontal .am-form-label,
	.am-form-horizontal .am-radio,
	.am-form-horizontal .am-checkbox,
	.am-form-horizontal .am-radio-inline,
	.am-form-horizontal .am-checkbox-inline {
		margin-top: 0;
		margin-bottom: 0;
		padding-top: .6em
	}

	.am-form-horizontal .am-form-group:before,
	.am-form-horizontal .am-form-group:after {
		content: " ";
		display: table
	}

	.am-form-horizontal .am-form-group:after {
		clear: both
	}

	@media only screen and (min-width:641px) {
		.am-form-horizontal .am-form-label {
			text-align: right
		}
	}

	@media only screen and (min-width:641px) {
		.am-form-inline .am-form-group {
			display: inline-block;
			margin-bottom: 0;
			vertical-align: middle
		}

		.am-form-inline .am-form-field {
			display: inline-block;
			width: auto;
			vertical-align: middle
		}

		.am-form-inline .am-input-group {
			display: inline-table;
			vertical-align: middle
		}

		.am-form-inline .am-input-group .am-input-group-addon,
		.am-form-inline .am-input-group .am-input-group-btn,
		.am-form-inline .am-input-group .am-form-control {
			width: auto
		}

		.am-form-inline .am-input-group>.am-form-field {
			width: 100%
		}

		.am-form-inline .am-form-label {
			margin-bottom: 0;
			vertical-align: middle
		}

		.am-form-inline .am-radio,
		.am-form-inline .am-checkbox {
			display: inline-block;
			margin-top: 0;
			margin-bottom: 0;
			padding-left: 0;
			vertical-align: middle
		}

		.am-form-inline .am-radio input[type=radio],
		.am-form-inline .am-checkbox input[type=checkbox] {
			float: none;
			margin-left: 0
		}

		.am-form-inline .am-form-feedback .am-form-field-feedback {
			top: 0
		}
	}

	.am-input-sm {
		font-size: 1.4rem !important
	}

	.am-input-lg {
		font-size: 1.8rem !important
	}

	.am-form-icon {
		position: relative
	}

	.am-form-icon .am-form-field {
		padding-left: 1.875em !important
	}

	.am-form-icon [class*=am-icon-] {
		position: absolute;
		left: .625em;
		top: 50%;
		display: block;
		margin-top: -.635em;
		line-height: 1;
		z-index: 2
	}

	.am-form-feedback {
		position: relative
	}

	.am-form-feedback .am-form-field {
		padding-left: .625em !important;
		padding-right: 1.875em !important
	}

	.am-form-feedback [class*=am-icon-] {
		right: .625em;
		left: auto
	}

	.am-form-set {
		margin-bottom: 1.5rem;
		padding: 0
	}

	.am-form-set>input {
		position: relative;
		top: -1px;
		border-radius: 0 !important
	}

	.am-form-set>input:focus {
		z-index: 2
	}

	.am-form-set>input:first-child {
		top: 1px;
		border-top-right-radius: 0 !important;
		border-top-left-radius: 0 !important
	}

	.am-form-set>input:last-child {
		top: -2px;
		border-bottom-right-radius: 0 !important;
		border-bottom-left-radius: 0 !important
	}

	.am-img-thumbnail {
		display: inline-block;
		padding: 2px;
		line-height: 1.6;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 0;
		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out
	}

	.am-img-thumbnail.am-radius {
		border-radius: 2px
	}

	.am-img-responsive {
		display: block
	}

	.am-nav {
		margin-bottom: 0;
		padding: 0;
		list-style: none
	}

	.am-nav:before,
	.am-nav:after {
		content: " ";
		display: table
	}

	.am-nav:after {
		clear: both
	}

	.am-nav>li {
		position: relative;
		display: block
	}

	.am-nav>li+li {
		margin-top: 5px
	}

	.am-nav>li+.am-nav-header {
		margin-top: 1em
	}

	.am-nav>li>a {
		position: relative;
		display: block;
		padding: .4em 1em;
		border-radius: 0
	}

	.am-nav>li>a:hover,
	.am-nav>li>a:focus {
		text-decoration: none;
		background-color: #eee
	}

	.am-nav>li.am-active>a,
	.am-nav>li.am-active>a:hover,
	.am-nav>li.am-active>a:focus {
		color: #fff;
		background-color: #0e90d2;
		cursor: default
	}

	.am-nav>li.am-disabled>a {
		color: #999
	}

	.am-nav>li.am-disabled>a:hover,
	.am-nav>li.am-disabled>a:focus {
		color: #999;
		text-decoration: none;
		background-color: transparent;
		cursor: not-allowed
	}

	.am-nav-header {
		padding: .4em 1em;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 100%;
		color: #555
	}

	.am-nav-divider {
		margin: 15px 1em !important;
		border-top: 1px solid #ddd;
		-webkit-box-shadow: 0 1px 0 #fff;
		box-shadow: 0 1px 0 #fff
	}

	.am-nav-pills>li {
		float: left
	}

	.am-nav-pills>li+li {
		margin-left: 5px;
		margin-top: 0
	}

	.am-nav-tabs {
		border-bottom: 1px solid #ddd
	}

	.am-nav-tabs>li {
		float: left;
		margin-bottom: -1px
	}

	.am-nav-tabs>li+li {
		margin-top: 0
	}

	.am-nav-tabs>li>a {
		margin-right: 5px;
		line-height: 1.6;
		border: 1px solid transparent;
		border-radius: 0
	}

	.am-nav-tabs>li>a:hover {
		border-color: #eee #eee #ddd
	}

	.am-nav-tabs>li.am-active>a,
	.am-nav-tabs>li.am-active>a:hover,
	.am-nav-tabs>li.am-active>a:focus {
		color: #555;
		background-color: #fff;
		border: 1px solid #ddd;
		border-bottom-color: transparent;
		cursor: default
	}

	.am-nav-tabs.am-nav-justify {
		border-bottom: 0
	}

	.am-nav-tabs.am-nav-justify>li>a {
		margin-right: 0;
		border-bottom: 1px solid #ddd;
		border-radius: 0
	}

	.am-nav-tabs.am-nav-justify>.am-active>a,
	.am-nav-tabs.am-nav-justify>.am-active>a:hover,
	.am-nav-tabs.am-nav-justify>.am-active>a:focus {
		border-bottom-color: #fff
	}

	.am-nav-justify {
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-nav-justify>li {
		float: none;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	.am-nav-justify>li>a {
		text-align: center;
		margin-bottom: 0
	}

	.lte9 .am-nav-justify>li {
		display: table-cell;
		width: 1%
	}

	.am-topbar {
		position: relative;
		min-height: 50px;
		margin-bottom: 1.6rem;
		background: #f8f8f8;
		border-width: 0 0 1px;
		border-style: solid;
		border-color: #ddd;
		color: #666
	}

	.am-topbar:before,
	.am-topbar:after {
		content: " ";
		display: table
	}

	.am-topbar:after {
		clear: both
	}

	.am-topbar a {
		color: #666
	}

	.am-topbar-brand {
		margin: 0
	}

	@media only screen and (min-width:641px) {
		.am-topbar-brand {
			float: left
		}
	}

	.am-topbar-brand a:hover {
		color: #4d4d4d
	}

	.am-topbar-collapse {
		width: 100%;
		overflow-x: visible;
		padding: 10px;
		clear: both;
		-webkit-overflow-scrolling: touch
	}

	.am-topbar-collapse:before,
	.am-topbar-collapse:after {
		content: " ";
		display: table
	}

	.am-topbar-collapse:after {
		clear: both
	}

	.am-topbar-collapse.am-in {
		overflow-y: auto
	}

	@media only screen and (min-width:641px) {
		.am-topbar-collapse {
			margin-top: 0;
			padding: 0;
			width: auto;
			clear: none
		}

		.am-topbar-collapse.am-collapse {
			display: block !important;
			height: auto !important;
			padding: 0;
			overflow: visible !important
		}

		.am-topbar-collapse.am-in {
			overflow-y: visible
		}
	}

	.am-topbar-brand {
		padding: 0 10px;
		float: left;
		font-size: 1.8rem;
		height: 50px;
		line-height: 50px
	}

	.am-topbar-toggle {
		position: relative;
		float: right;
		margin-right: 10px
	}

	@media only screen and (min-width:641px) {
		.am-topbar-toggle {
			display: none
		}
	}

	@media only screen and (max-width:640px) {
		.am-topbar-nav {
			margin-bottom: 8px
		}

		.am-topbar-nav>li {
			float: none
		}
	}

	@media only screen and (max-width:640px) {
		.am-topbar-nav>li+li {
			margin-left: 0;
			margin-top: 5px
		}
	}

	@media only screen and (min-width:641px) {
		.am-topbar-nav {
			float: left
		}

		.am-topbar-nav>li>a {
			position: relative;
			line-height: 50px;
			padding: 0 10px
		}

		.am-topbar-nav>li>a:after {
			position: absolute;
			left: 50%;
			margin-left: -7px;
			bottom: -1px;
			content: "";
			display: inline-block;
			width: 0;
			height: 0;
			vertical-align: middle;
			border-bottom: 7px solid #f8f8f8;
			border-right: 7px solid transparent;
			border-left: 7px solid transparent;
			border-top: 0 dotted;
			-webkit-transform: rotate(360deg);
			-ms-transform: rotate(360deg);
			transform: rotate(360deg);
			opacity: 0;
			-webkit-transition: opacity .1s;
			transition: opacity .1s
		}

		.am-topbar-nav>li>a:hover:after {
			opacity: 1;
			border-bottom-color: #666
		}

		.am-topbar-nav>li.am-dropdown>a:after {
			display: none
		}

		.am-topbar-nav>li.am-active>a,
		.am-topbar-nav>li.am-active>a:hover,
		.am-topbar-nav>li.am-active>a:focus {
			border-radius: 0;
			color: #0e90d2;
			background: 0 0
		}

		.am-topbar-nav>li.am-active>a:after {
			opacity: 1;
			border-bottom-color: #0e90d2
		}
	}

	@media only screen and (max-width:640px) {
		.am-topbar-collapse .am-dropdown.am-active .am-dropdown-content {
			float: none;
			position: relative;
			width: 100%
		}
	}

	@media only screen and (min-width:641px) {
		.am-topbar-left {
			float: left
		}

		.am-topbar-right {
			float: right;
			margin-right: 10px
		}
	}

	@media only screen and (max-width:640px) {
		.am-topbar-form .am-form-group {
			margin-bottom: 5px
		}
	}

	@media only screen and (min-width:641px) {
		.am-topbar-form {
			padding: 0 10px;
			margin-top: 8px
		}

		.am-topbar-form .am-form-group+.am-btn {
			margin-left: 5px
		}
	}

	.am-topbar-btn {
		margin-top: 8px
	}

	@media only screen and (max-width:640px) {

		.am-topbar-collapse .am-topbar-btn,
		.am-topbar-collapse .am-btn {
			display: block;
			width: 100%
		}
	}

	.am-topbar-inverse {
		background-color: #0e90d2;
		border-color: #0b6fa2;
		color: #eee
	}

	.am-topbar-inverse a {
		color: #eee
	}

	.am-topbar-inverse .am-topbar-brand a {
		color: #fff
	}

	.am-topbar-inverse .am-topbar-brand a:hover,
	.am-topbar-inverse .am-topbar-brand a:focus {
		color: #fff;
		background-color: transparent
	}

	.am-topbar-inverse .am-topbar-nav>li>a {
		color: #eee
	}

	.am-topbar-inverse .am-topbar-nav>li>a:hover,
	.am-topbar-inverse .am-topbar-nav>li>a:focus {
		color: #fff;
		background-color: rgba(0, 0, 0, .05)
	}

	.am-topbar-inverse .am-topbar-nav>li>a:hover:after,
	.am-topbar-inverse .am-topbar-nav>li>a:focus:after {
		border-bottom-color: #0b6fa2
	}

	.am-topbar-inverse .am-topbar-nav>li>a:after {
		border-bottom-color: #0e90d2
	}

	.am-topbar-inverse .am-topbar-nav>li.am-active>a,
	.am-topbar-inverse .am-topbar-nav>li.am-active>a:hover,
	.am-topbar-inverse .am-topbar-nav>li.am-active>a:focus {
		color: #fff;
		background-color: rgba(0, 0, 0, .1)
	}

	.am-topbar-inverse .am-topbar-nav>li.am-active>a:after,
	.am-topbar-inverse .am-topbar-nav>li.am-active>a:hover:after,
	.am-topbar-inverse .am-topbar-nav>li.am-active>a:focus:after {
		border-bottom-color: #fff
	}

	.am-topbar-inverse .am-topbar-nav>li .disabled>a,
	.am-topbar-inverse .am-topbar-nav>li .disabled>a:hover,
	.am-topbar-inverse .am-topbar-nav>li .disabled>a:focus {
		color: #444;
		background-color: transparent
	}

	.am-topbar-fixed-top,
	.am-topbar-fixed-bottom {
		position: fixed;
		right: 0;
		left: 0;
		z-index: 1000;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	.am-topbar-fixed-top {
		top: 0
	}

	.am-topbar-fixed-bottom {
		bottom: 0;
		margin-bottom: 0;
		border-width: 1px 0 0
	}

	.am-with-topbar-fixed-top {
		padding-top: 51px
	}

	.am-with-topbar-fixed-bottom {
		padding-bottom: 51px
	}

	@media only screen and (max-width:640px) {
		.am-topbar-fixed-bottom .am-topbar-collapse {
			position: absolute;
			bottom: 100%;
			margin-bottom: 1px;
			background-color: #f8f8f8
		}

		.am-topbar-fixed-bottom .am-topbar-collapse .am-dropdown-content:before,
		.am-topbar-fixed-bottom .am-topbar-collapse .am-dropdown-content:after {
			display: none
		}

		.am-topbar-fixed-bottom.am-topbar-inverse .am-topbar-collapse {
			background-color: #0e90d2
		}
	}

	.am-breadcrumb {
		padding: .7em .5em;
		margin-bottom: 2rem;
		list-style: none;
		background-color: transparent;
		border-radius: 0;
		font-size: 85%
	}

	.am-breadcrumb>li {
		display: inline-block
	}

	.am-breadcrumb>li [class*=am-icon-]:before {
		color: #999;
		margin-right: 5px
	}

	.am-breadcrumb>li+li:before {
		content: "»\00a0";
		padding: 0 8px;
		color: #ccc
	}

	.am-breadcrumb>.am-active {
		color: #999
	}

	.am-breadcrumb-slash>li+li:before {
		content: "/\00a0"
	}

	.am-pagination {
		padding-left: 0;
		margin: 1.5rem 0;
		list-style: none;
		color: #999;
		text-align: left
	}

	.am-pagination:before,
	.am-pagination:after {
		content: " ";
		display: table
	}

	.am-pagination:after {
		clear: both
	}

	.am-pagination>li {
		display: inline-block
	}

	.am-pagination>li>a,
	.am-pagination>li>span {
		position: relative;
		display: block;
		padding: .5em 1em;
		text-decoration: none;
		line-height: 1.2;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 0;
		margin-bottom: 5px;
		margin-right: 5px
	}

	.am-pagination>li:last-child>a,
	.am-pagination>li:last-child>span {
		margin-right: 0
	}

	.am-pagination>li>a:hover,
	.am-pagination>li>span:hover,
	.am-pagination>li>a:focus,
	.am-pagination>li>span:focus {
		background-color: #eee
	}

	.am-pagination>.am-active>a,
	.am-pagination>.am-active>span,
	.am-pagination>.am-active>a:hover,
	.am-pagination>.am-active>span:hover,
	.am-pagination>.am-active>a:focus,
	.am-pagination>.am-active>span:focus {
		z-index: 2;
		color: #fff;
		background-color: #0e90d2;
		border-color: #0e90d2;
		cursor: default
	}

	.am-pagination>.am-disabled>span,
	.am-pagination>.am-disabled>span:hover,
	.am-pagination>.am-disabled>span:focus,
	.am-pagination>.am-disabled>a,
	.am-pagination>.am-disabled>a:hover,
	.am-pagination>.am-disabled>a:focus {
		color: #999;
		background-color: #fff;
		border-color: #ddd;
		cursor: not-allowed;
		pointer-events: none
	}

	.am-pagination .am-pagination-prev {
		float: left
	}

	.am-pagination .am-pagination-prev a {
		border-radius: 0
	}

	.am-pagination .am-pagination-next {
		float: right
	}

	.am-pagination .am-pagination-next a {
		border-radius: 0
	}

	.am-pagination-centered {
		text-align: center
	}

	.am-pagination-right {
		text-align: right
	}

	[class*=am-animation-] {
		-webkit-animation-duration: .5s;
		animation-duration: .5s;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both
	}

	@media screen {
		.cssanimations [data-am-scrollspy*=animation] {
			opacity: 0
		}
	}

	.am-animation-fade {
		-webkit-animation-name: am-fade;
		animation-name: am-fade;
		-webkit-animation-duration: .8s;
		animation-duration: .8s;
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear
	}

	.am-animation-scale-up {
		-webkit-animation-name: am-scale-up;
		animation-name: am-scale-up
	}

	.am-animation-scale-down {
		-webkit-animation-name: am-scale-down;
		animation-name: am-scale-down
	}

	.am-animation-slide-top {
		-webkit-animation-name: am-slide-top;
		animation-name: am-slide-top
	}

	.am-animation-slide-bottom {
		-webkit-animation-name: am-slide-bottom;
		animation-name: am-slide-bottom
	}

	.am-animation-slide-left {
		-webkit-animation-name: am-slide-left;
		animation-name: am-slide-left
	}

	.am-animation-slide-right {
		-webkit-animation-name: am-slide-right;
		animation-name: am-slide-right
	}

	.am-animation-slide-top-fixed {
		-webkit-animation-name: am-slide-top-fixed;
		animation-name: am-slide-top-fixed
	}

	.am-animation-shake {
		-webkit-animation-name: am-shake;
		animation-name: am-shake
	}

	.am-animation-spin {
		-webkit-animation: am-spin 2s infinite linear;
		animation: am-spin 2s infinite linear
	}

	.am-animation-left-spring {
		-webkit-animation: am-left-spring .3s ease-in-out;
		animation: am-left-spring .3s ease-in-out
	}

	.am-animation-right-spring {
		-webkit-animation: am-right-spring .3s ease-in-out;
		animation: am-right-spring .3s ease-in-out
	}

	.am-animation-reverse {
		-webkit-animation-direction: reverse;
		animation-direction: reverse
	}

	.am-animation-paused {
		-webkit-animation-play-state: paused !important;
		animation-play-state: paused !important
	}

	@-webkit-keyframes am-fade {
		0% {
			opacity: 0
		}

		100% {
			opacity: 1
		}
	}

	@keyframes am-fade {
		0% {
			opacity: 0
		}

		100% {
			opacity: 1
		}
	}

	@-webkit-keyframes am-scale-up {
		0% {
			opacity: 0;
			-webkit-transform: scale(0.2);
			transform: scale(0.2)
		}

		100% {
			opacity: 1;
			-webkit-transform: scale(1);
			transform: scale(1)
		}
	}

	@keyframes am-scale-up {
		0% {
			opacity: 0;
			-webkit-transform: scale(0.2);
			transform: scale(0.2)
		}

		100% {
			opacity: 1;
			-webkit-transform: scale(1);
			transform: scale(1)
		}
	}

	@-webkit-keyframes am-scale-down {
		0% {
			opacity: 0;
			-webkit-transform: scale(1.8);
			transform: scale(1.8)
		}

		100% {
			opacity: 1;
			-webkit-transform: scale(1);
			transform: scale(1)
		}
	}

	@keyframes am-scale-down {
		0% {
			opacity: 0;
			-webkit-transform: scale(1.8);
			transform: scale(1.8)
		}

		100% {
			opacity: 1;
			-webkit-transform: scale(1);
			transform: scale(1)
		}
	}

	@-webkit-keyframes am-slide-top {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-100%);
			transform: translateY(-100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@keyframes am-slide-top {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-100%);
			transform: translateY(-100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@-webkit-keyframes am-slide-bottom {
		0% {
			opacity: 0;
			-webkit-transform: translateY(100%);
			transform: translateY(100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@keyframes am-slide-bottom {
		0% {
			opacity: 0;
			-webkit-transform: translateY(100%);
			transform: translateY(100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@-webkit-keyframes am-slide-left {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%);
			transform: translateX(-100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@keyframes am-slide-left {
		0% {
			opacity: 0;
			-webkit-transform: translateX(-100%);
			transform: translateX(-100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@-webkit-keyframes am-slide-right {
		0% {
			opacity: 0;
			-webkit-transform: translateX(100%);
			transform: translateX(100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@keyframes am-slide-right {
		0% {
			opacity: 0;
			-webkit-transform: translateX(100%);
			transform: translateX(100%)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@-webkit-keyframes am-shake {

		0%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		10% {
			-webkit-transform: translateX(-9px);
			transform: translateX(-9px)
		}

		20% {
			-webkit-transform: translateX(8px);
			transform: translateX(8px)
		}

		30% {
			-webkit-transform: translateX(-7px);
			transform: translateX(-7px)
		}

		40% {
			-webkit-transform: translateX(6px);
			transform: translateX(6px)
		}

		50% {
			-webkit-transform: translateX(-5px);
			transform: translateX(-5px)
		}

		60% {
			-webkit-transform: translateX(4px);
			transform: translateX(4px)
		}

		70% {
			-webkit-transform: translateX(-3px);
			transform: translateX(-3px)
		}

		80% {
			-webkit-transform: translateX(2px);
			transform: translateX(2px)
		}

		90% {
			-webkit-transform: translateX(-1px);
			transform: translateX(-1px)
		}
	}

	@keyframes am-shake {

		0%,
		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		10% {
			-webkit-transform: translateX(-9px);
			transform: translateX(-9px)
		}

		20% {
			-webkit-transform: translateX(8px);
			transform: translateX(8px)
		}

		30% {
			-webkit-transform: translateX(-7px);
			transform: translateX(-7px)
		}

		40% {
			-webkit-transform: translateX(6px);
			transform: translateX(6px)
		}

		50% {
			-webkit-transform: translateX(-5px);
			transform: translateX(-5px)
		}

		60% {
			-webkit-transform: translateX(4px);
			transform: translateX(4px)
		}

		70% {
			-webkit-transform: translateX(-3px);
			transform: translateX(-3px)
		}

		80% {
			-webkit-transform: translateX(2px);
			transform: translateX(2px)
		}

		90% {
			-webkit-transform: translateX(-1px);
			transform: translateX(-1px)
		}
	}

	@-webkit-keyframes am-slide-top-fixed {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@keyframes am-slide-top-fixed {
		0% {
			opacity: 0;
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@-webkit-keyframes am-slide-bottom-fixed {
		0% {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@keyframes am-slide-bottom-fixed {
		0% {
			opacity: 0;
			-webkit-transform: translateY(10px);
			transform: translateY(10px)
		}

		100% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}
	}

	@-webkit-keyframes am-spin {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(359deg);
			transform: rotate(359deg)
		}
	}

	@keyframes am-spin {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(359deg);
			transform: rotate(359deg)
		}
	}

	@-webkit-keyframes am-right-spring {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		50% {
			-webkit-transform: translateX(-20%);
			transform: translateX(-20%)
		}

		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@keyframes am-right-spring {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		50% {
			-webkit-transform: translateX(-20%);
			transform: translateX(-20%)
		}

		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@-webkit-keyframes am-left-spring {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		50% {
			-webkit-transform: translateX(20%);
			transform: translateX(20%)
		}

		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	@keyframes am-left-spring {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}

		50% {
			-webkit-transform: translateX(20%);
			transform: translateX(20%)
		}

		100% {
			-webkit-transform: translateX(0);
			transform: translateX(0)
		}
	}

	.am-article:before,
	.am-article:after {
		content: " ";
		display: table
	}

	.am-article:after {
		clear: both
	}

	.am-article>:last-child {
		margin-bottom: 0
	}

	.am-article+.am-article {
		margin-top: 2.4rem
	}

	.am-article-title {
		font-size: 2.8rem;
		line-height: 1.15;
		font-weight: 400
	}

	.am-article-title a {
		color: inherit;
		text-decoration: none
	}

	.am-article-meta {
		font-size: 1.2rem;
		line-height: 1.5;
		color: #999
	}

	.am-article-lead {
		color: #666;
		font-size: 1.4rem;
		line-height: 1.5;
		border: 1px solid #dedede;
		border-radius: 2px;
		background: #f9f9f9;
		padding: 10px
	}

	.am-article-divider {
		margin-bottom: 2.4rem;
		border-color: #eee
	}

	*+.am-article-divider {
		margin-top: 2.4rem
	}

	.am-article-bd blockquote {
		font-family: Georgia, "Times New Roman", Times, Kai, "Kaiti SC", KaiTi, BiauKai, FontAwesome, serif
	}

	.am-badge {
		display: inline-block;
		min-width: 10px;
		padding: .25em .625em;
		font-size: 1.2rem;
		font-weight: 700;
		color: #fff;
		line-height: 1;
		vertical-align: baseline;
		white-space: nowrap;
		text-align: center;
		background-color: #999;
		border-radius: 0
	}

	.am-badge:empty {
		display: none
	}

	.am-badge.am-square {
		border-radius: 0
	}

	.am-badge.am-radius {
		border-radius: 2px
	}

	.am-badge.am-round {
		border-radius: 1000px
	}

	a.am-badge:hover,
	a.am-badge:focus {
		color: #fff;
		text-decoration: none;
		cursor: pointer
	}

	.am-badge-primary {
		background-color: #0e90d2
	}

	.am-badge-secondary {
		background-color: #3bb4f2
	}

	.am-badge-success {
		background-color: #5eb95e
	}

	.am-badge-warning {
		background-color: #f37b1d
	}

	.am-badge-danger {
		background-color: #dd514c
	}

	.am-comment:before,
	.am-comment:after {
		content: " ";
		display: table
	}

	.am-comment:after {
		clear: both
	}

	.am-comment-avatar {
		float: left;
		width: 32px;
		height: 32px;
		border-radius: 50%;
		border: 1px solid transparent
	}

	@media only screen and (min-width:641px) {
		.am-comment-avatar {
			width: 48px;
			height: 48px
		}
	}

	.am-comment-main {
		position: relative;
		margin-left: 42px;
		border: 1px solid #dedede;
		border-radius: 0
	}

	.am-comment-main:before,
	.am-comment-main:after {
		position: absolute;
		top: 10px;
		left: -8px;
		right: 100%;
		width: 0;
		height: 0;
		display: block;
		content: " ";
		border-color: transparent;
		border-style: solid solid outset;
		border-width: 8px 8px 8px 0;
		pointer-events: none
	}

	.am-comment-main:before {
		border-right-color: #dedede;
		z-index: 1
	}

	.am-comment-main:after {
		border-right-color: #f8f8f8;
		margin-left: 1px;
		z-index: 2
	}

	@media only screen and (min-width:641px) {
		.am-comment-main {
			margin-left: 63px
		}
	}

	.am-comment-hd {
		background: #f8f8f8;
		border-bottom: 1px solid #eee;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-comment-title {
		margin: 0 0 8px 0;
		font-size: 1.6rem;
		line-height: 1.2
	}

	.am-comment-meta {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding: 10px 15px;
		font-size: 13px;
		color: #999;
		line-height: 1.2;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden
	}

	.am-comment-meta a {
		color: #999
	}

	.am-comment-author {
		font-weight: 700;
		color: #999
	}

	.am-comment-bd {
		padding: 15px;
		overflow: hidden
	}

	.am-comment-bd>:last-child {
		margin-bottom: 0
	}

	.am-comment-footer {
		padding: 0 15px 5px
	}

	.am-comment-footer .am-comment-actions a+a {
		margin-left: 5px
	}

	.am-comment-actions {
		font-size: 13px;
		color: #999
	}

	.am-comment-actions a {
		display: inline-block;
		padding: 10px 5px;
		line-height: 1;
		color: #999;
		opacity: .7
	}

	.am-comment-actions a:hover {
		color: #0e90d2;
		opacity: 1
	}

	.am-comment-hd .am-comment-actions {
		padding-right: .5rem
	}

	.am-comment-flip .am-comment-avatar {
		float: right
	}

	.am-comment-flip .am-comment-main {
		margin-left: auto;
		margin-right: 42px
	}

	@media only screen and (min-width:641px) {
		.am-comment-flip .am-comment-main {
			margin-right: 63px
		}
	}

	.am-comment-flip .am-comment-main:before,
	.am-comment-flip .am-comment-main:after {
		left: auto;
		right: -8px;
		border-width: 8px 0 8px 8px
	}

	.am-comment-flip .am-comment-main:before {
		border-left-color: #dedede
	}

	.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8;
		margin-right: 1px;
		margin-left: auto
	}

	.am-comment-primary .am-comment-avatar {
		border-color: #0e90d2
	}

	.am-comment-primary .am-comment-main {
		border-color: #0e90d2
	}

	.am-comment-primary .am-comment-main:before {
		border-right-color: #0e90d2
	}

	.am-comment-primary.am-comment-flip .am-comment-main:before {
		border-left-color: #0e90d2;
		border-right-color: transparent
	}

	.am-comment-primary.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8
	}

	.am-comment-secondary .am-comment-avatar,
	.am-comment-highlight .am-comment-avatar {
		border-color: #3bb4f2
	}

	.am-comment-secondary .am-comment-main,
	.am-comment-highlight .am-comment-main {
		border-color: #3bb4f2
	}

	.am-comment-secondary .am-comment-main:before,
	.am-comment-highlight .am-comment-main:before {
		border-right-color: #3bb4f2
	}

	.am-comment-secondary.am-comment-flip .am-comment-main:before,
	.am-comment-highlight.am-comment-flip .am-comment-main:before {
		border-left-color: #3bb4f2;
		border-right-color: transparent
	}

	.am-comment-secondary.am-comment-flip .am-comment-main:after,
	.am-comment-highlight.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8
	}

	.am-comment-success .am-comment-avatar {
		border-color: #5eb95e
	}

	.am-comment-success .am-comment-main {
		border-color: #5eb95e
	}

	.am-comment-success .am-comment-main:before {
		border-right-color: #5eb95e
	}

	.am-comment-success.am-comment-flip .am-comment-main:before {
		border-left-color: #5eb95e;
		border-right-color: transparent
	}

	.am-comment-success.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8
	}

	.am-comment-warning .am-comment-avatar {
		border-color: #f37b1d
	}

	.am-comment-warning .am-comment-main {
		border-color: #f37b1d
	}

	.am-comment-warning .am-comment-main:before {
		border-right-color: #f37b1d
	}

	.am-comment-warning.am-comment-flip .am-comment-main:before {
		border-left-color: #f37b1d;
		border-right-color: transparent
	}

	.am-comment-warning.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8
	}

	.am-comment-danger .am-comment-avatar {
		border-color: #dd514c
	}

	.am-comment-danger .am-comment-main {
		border-color: #dd514c
	}

	.am-comment-danger .am-comment-main:before {
		border-right-color: #dd514c
	}

	.am-comment-danger.am-comment-flip .am-comment-main:before {
		border-left-color: #dd514c;
		border-right-color: transparent
	}

	.am-comment-danger.am-comment-flip .am-comment-main:after {
		border-left-color: #f8f8f8
	}

	.am-comments-list {
		padding: 0;
		list-style: none
	}

	.am-comments-list .am-comment {
		margin: 1.6rem 0 0 0;
		list-style: none
	}

	@media only screen and (min-width:641px) {
		.am-comments-list-flip .am-comment-main {
			margin-right: 64px
		}

		.am-comments-list-flip .am-comment-flip .am-comment-main {
			margin-left: 64px
		}
	}

	.am-btn-group,
	.am-btn-group-stacked {
		position: relative;
		display: inline-block;
		vertical-align: middle
	}

	.am-btn-group>.am-btn,
	.am-btn-group-stacked>.am-btn {
		position: relative;
		float: left
	}

	.am-btn-group>.am-btn:hover,
	.am-btn-group-stacked>.am-btn:hover,
	.am-btn-group>.am-btn:focus,
	.am-btn-group-stacked>.am-btn:focus,
	.am-btn-group>.am-btn:active,
	.am-btn-group-stacked>.am-btn:active,
	.am-btn-group>.am-btn.active,
	.am-btn-group-stacked>.am-btn.active {
		z-index: 2
	}

	.am-btn-group>.am-btn:focus,
	.am-btn-group-stacked>.am-btn:focus {
		outline: 0
	}

	.am-btn-group .am-btn+.am-btn,
	.am-btn-group .am-btn+.am-btn-group,
	.am-btn-group .am-btn-group+.am-btn,
	.am-btn-group .am-btn-group+.am-btn-group {
		margin-left: -1px
	}

	.am-btn-toolbar {
		margin-left: -5px
	}

	.am-btn-toolbar:before,
	.am-btn-toolbar:after {
		content: " ";
		display: table
	}

	.am-btn-toolbar:after {
		clear: both
	}

	.am-btn-toolbar .am-btn-group,
	.am-btn-toolbar .am-input-group {
		float: left
	}

	.am-btn-toolbar>.am-btn,
	.am-btn-toolbar>.am-btn-group,
	.am-btn-toolbar>.am-input-group {
		margin-left: 5px
	}

	.am-btn-group>.am-btn:not(:first-child):not(:last-child):not(.am-dropdown-toggle) {
		border-radius: 0
	}

	.am-btn-group>.am-btn:first-child {
		margin-left: 0
	}

	.am-btn-group>.am-btn:first-child:not(:last-child):not(.am-dropdown-toggle) {
		border-bottom-right-radius: 0;
		border-top-right-radius: 0
	}

	.am-btn-group>.am-btn:last-child:not(:first-child),
	.am-btn-group>.am-dropdown-toggle:not(:first-child) {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}

	.am-btn-group>.am-btn-group {
		float: left
	}

	.am-btn-group>.am-btn-group:not(:first-child):not(:last-child)>.am-btn {
		border-radius: 0
	}

	.am-btn-group>.am-btn-group:first-child>.am-btn:last-child,
	.am-btn-group>.am-btn-group:first-child>.am-dropdown-toggle {
		border-bottom-right-radius: 0;
		border-top-right-radius: 0
	}

	.am-btn-group>.am-btn-group:last-child>.am-btn:first-child {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}

	.am-btn-group-xs>.am-btn {
		font-size: 1.2rem
	}

	.am-btn-group-sm>.am-btn {
		font-size: 1.4rem
	}

	.am-btn-group-lg>.am-btn {
		font-size: 1.8rem
	}

	.am-btn-group-stacked>.am-btn,
	.am-btn-group-stacked>.am-btn-group,
	.am-btn-group-stacked>.am-btn-group>.am-btn {
		display: block;
		float: none;
		width: 100%;
		max-width: 100%
	}

	.am-btn-group-stacked>.am-btn-group:before,
	.am-btn-group-stacked>.am-btn-group:after {
		content: " ";
		display: table
	}

	.am-btn-group-stacked>.am-btn-group:after {
		clear: both
	}

	.am-btn-group-stacked>.am-btn-group>.am-btn {
		float: none
	}

	.am-btn-group-stacked>.am-btn+.am-btn,
	.am-btn-group-stacked>.am-btn+.am-btn-group,
	.am-btn-group-stacked>.am-btn-group+.am-btn,
	.am-btn-group-stacked>.am-btn-group+.am-btn-group {
		margin-top: -1px;
		margin-left: 0
	}

	.am-btn-group-stacked>.am-btn:not(:first-child):not(:last-child) {
		border-radius: 0
	}

	.am-btn-group-stacked>.am-btn:first-child:not(:last-child) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-btn-group-stacked>.am-btn:last-child:not(:first-child) {
		border-bottom-left-radius: 0;
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-btn-group-stacked>.am-btn-group:not(:first-child):not(:last-child)>.am-btn {
		border-radius: 0
	}

	.am-btn-group-stacked>.am-btn-group:first-child:not(:last-child)>.am-btn:last-child,
	.am-btn-group-stacked>.am-btn-group:first-child:not(:last-child)>.am-dropdown-toggle {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-btn-group-stacked>.am-btn-group:last-child:not(:first-child)>.am-btn:first-child {
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-btn-group-justify {
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-btn-group-justify>.am-btn,
	.am-btn-group-justify>.am-btn-group {
		float: none;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	.am-btn-group-justify>.am-btn-group .am-btn {
		width: 100%
	}

	.lte9 .am-btn-group-justify {
		display: table;
		table-layout: fixed;
		border-collapse: separate
	}

	.lte9 .am-btn-group-justify>.am-btn,
	.lte9 .am-btn-group-justify>.am-btn-group {
		float: none;
		display: table-cell;
		width: 1%
	}

	.am-btn-group .am-dropdown {
		float: left;
		margin-left: -1px
	}

	.am-btn-group .am-dropdown>.am-btn {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}

	.am-btn-group .am-active .am-dropdown-toggle {
		-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
		box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
	}

	.am-btn-group .am-active .am-dropdown-toggle.am-btn-link {
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.am-btn-group .am-dropdown-toggle:active,
	.am-btn-group .am-active .am-dropdown-toggle {
		outline: 0
	}

	[data-am-button]>.am-btn>input[type=radio],
	[data-am-button]>.am-btn>input[type=checkbox] {
		position: absolute;
		z-index: -1;
		opacity: 0
	}

	.am-close {
		display: inline-block;
		text-align: center;
		width: 24px;
		font-size: 20px;
		font-weight: 700;
		line-height: 24px;
		color: #000;
		text-shadow: 0 1px 0 #fff;
		opacity: .2;
		-webkit-transition: all .3s;
		transition: all .3s
	}

	.am-close:hover,
	.am-close:focus {
		color: #000;
		text-decoration: none;
		cursor: pointer;
		opacity: .5;
		outline: 0
	}

	.am-close[class*=am-icon-] {
		font-size: 16px
	}

	button.am-close {
		padding: 0;
		cursor: pointer;
		background: 0 0;
		border: 0;
		-webkit-appearance: none
	}

	a.am-close:hover {
		color: inherit;
		text-decoration: none;
		cursor: pointer
	}

	.am-close-alt {
		border-radius: 50%;
		background: #eee;
		opacity: .7;
		-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
		box-shadow: 0 0 0 1px rgba(0, 0, 0, .25)
	}

	.am-close-alt:hover,
	.am-close-alt:focus {
		opacity: 1
	}

	.am-close-spin:hover {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}

	[class*=am-icon-] {
		display: inline-block
	}

	[class*=am-icon-]:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale
	}

	.am-icon-border {
		padding: .2em .25em .15em;
		border: solid .08em #eee;
		border-radius: .1em
	}

	[class*=am-icon-].am-fl {
		margin-right: .3em
	}

	[class*=am-icon-].am-fr {
		margin-left: .3em
	}

	.am-icon-sm:before {
		font-size: 150%;
		vertical-align: -10%
	}

	.am-icon-md:before {
		font-size: 200%;
		vertical-align: -16%
	}

	.am-icon-lg:before {
		font-size: 250%;
		vertical-align: -22%
	}

	.am-icon-btn {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		display: inline-block;
		width: 48px;
		height: 48px;
		font-size: 24px;
		line-height: 48px;
		border-radius: 50%;
		background-color: #eee;
		color: #555;
		text-align: center
	}

	.am-icon-btn:hover,
	.am-icon-btn:focus {
		background-color: #f5f5f5;
		color: #333;
		text-decoration: none;
		outline: 0
	}

	.am-icon-btn:active {
		background-color: #ddd;
		color: #333
	}

	.am-icon-btn.am-primary,
	.am-icon-btn.am-secondary,
	.am-icon-btn.am-success,
	.am-icon-btn.am-warning,
	.am-icon-btn.am-danger {
		color: #fff
	}

	.am-icon-btn.am-primary {
		background-color: #0e90d2
	}

	.am-icon-btn.am-secondary {
		background-color: #3bb4f2
	}

	.am-icon-btn.am-success {
		background-color: #5eb95e
	}

	.am-icon-btn.am-warning {
		background-color: #f37b1d
	}

	.am-icon-btn.am-danger {
		background-color: #dd514c
	}

	.am-icon-btn-sm {
		width: 32px;
		height: 32px;
		font-size: 16px;
		line-height: 32px
	}

	.am-icon-btn-lg {
		width: 64px;
		height: 64px;
		font-size: 28px;
		line-height: 64px
	}

	.am-icon-glass:before {
		content: "\f000"
	}

	.am-icon-music:before {
		content: "\f001"
	}

	.am-icon-search:before {
		content: "\f002"
	}

	.am-icon-envelope-o:before {
		content: "\f003"
	}

	.am-icon-heart:before {
		content: "\f004"
	}

	.am-icon-star:before {
		content: "\f005"
	}

	.am-icon-star-o:before {
		content: "\f006"
	}

	.am-icon-user:before {
		content: "\f007"
	}

	.am-icon-film:before {
		content: "\f008"
	}

	.am-icon-th-large:before {
		content: "\f009"
	}

	.am-icon-th:before {
		content: "\f00a"
	}

	.am-icon-th-list:before {
		content: "\f00b"
	}

	.am-icon-check:before {
		content: "\f00c"
	}

	.am-icon-remove:before,
	.am-icon-close:before,
	.am-icon-times:before {
		content: "\f00d"
	}

	.am-icon-search-plus:before {
		content: "\f00e"
	}

	.am-icon-search-minus:before {
		content: "\f010"
	}

	.am-icon-power-off:before {
		content: "\f011"
	}

	.am-icon-signal:before {
		content: "\f012"
	}

	.am-icon-gear:before,
	.am-icon-cog:before {
		content: "\f013"
	}

	.am-icon-trash-o:before {
		content: "\f014"
	}

	.am-icon-home:before {
		content: "\f015"
	}

	.am-icon-file-o:before {
		content: "\f016"
	}

	.am-icon-clock-o:before {
		content: "\f017"
	}

	.am-icon-road:before {
		content: "\f018"
	}

	.am-icon-download:before {
		content: "\f019"
	}

	.am-icon-arrow-circle-o-down:before {
		content: "\f01a"
	}

	.am-icon-arrow-circle-o-up:before {
		content: "\f01b"
	}

	.am-icon-inbox:before {
		content: "\f01c"
	}

	.am-icon-play-circle-o:before {
		content: "\f01d"
	}

	.am-icon-rotate-right:before,
	.am-icon-repeat:before {
		content: "\f01e"
	}

	.am-icon-refresh:before {
		content: "\f021"
	}

	.am-icon-list-alt:before {
		content: "\f022"
	}

	.am-icon-lock:before {
		content: "\f023"
	}

	.am-icon-flag:before {
		content: "\f024"
	}

	.am-icon-headphones:before {
		content: "\f025"
	}

	.am-icon-volume-off:before {
		content: "\f026"
	}

	.am-icon-volume-down:before {
		content: "\f027"
	}

	.am-icon-volume-up:before {
		content: "\f028"
	}

	.am-icon-qrcode:before {
		content: "\f029"
	}

	.am-icon-barcode:before {
		content: "\f02a"
	}

	.am-icon-tag:before {
		content: "\f02b"
	}

	.am-icon-tags:before {
		content: "\f02c"
	}

	.am-icon-book:before {
		content: "\f02d"
	}

	.am-icon-bookmark:before {
		content: "\f02e"
	}

	.am-icon-print:before {
		content: "\f02f"
	}

	.am-icon-camera:before {
		content: "\f030"
	}

	.am-icon-font:before {
		content: "\f031"
	}

	.am-icon-bold:before {
		content: "\f032"
	}

	.am-icon-italic:before {
		content: "\f033"
	}

	.am-icon-text-height:before {
		content: "\f034"
	}

	.am-icon-text-width:before {
		content: "\f035"
	}

	.am-icon-align-left:before {
		content: "\f036"
	}

	.am-icon-align-center:before {
		content: "\f037"
	}

	.am-icon-align-right:before {
		content: "\f038"
	}

	.am-icon-align-justify:before {
		content: "\f039"
	}

	.am-icon-list:before {
		content: "\f03a"
	}

	.am-icon-dedent:before,
	.am-icon-outdent:before {
		content: "\f03b"
	}

	.am-icon-indent:before {
		content: "\f03c"
	}

	.am-icon-video-camera:before {
		content: "\f03d"
	}

	.am-icon-photo:before,
	.am-icon-image:before,
	.am-icon-picture-o:before {
		content: "\f03e"
	}

	.am-icon-pencil:before {
		content: "\f040"
	}

	.am-icon-map-marker:before {
		content: "\f041"
	}

	.am-icon-adjust:before {
		content: "\f042"
	}

	.am-icon-tint:before {
		content: "\f043"
	}

	.am-icon-edit:before,
	.am-icon-pencil-square-o:before {
		content: "\f044"
	}

	.am-icon-share-square-o:before {
		content: "\f045"
	}

	.am-icon-check-square-o:before {
		content: "\f046"
	}

	.am-icon-arrows:before {
		content: "\f047"
	}

	.am-icon-step-backward:before {
		content: "\f048"
	}

	.am-icon-fast-backward:before {
		content: "\f049"
	}

	.am-icon-backward:before {
		content: "\f04a"
	}

	.am-icon-play:before {
		content: "\f04b"
	}

	.am-icon-pause:before {
		content: "\f04c"
	}

	.am-icon-stop:before {
		content: "\f04d"
	}

	.am-icon-forward:before {
		content: "\f04e"
	}

	.am-icon-fast-forward:before {
		content: "\f050"
	}

	.am-icon-step-forward:before {
		content: "\f051"
	}

	.am-icon-eject:before {
		content: "\f052"
	}

	.am-icon-chevron-left:before {
		content: "\f053"
	}

	.am-icon-chevron-right:before {
		content: "\f054"
	}

	.am-icon-plus-circle:before {
		content: "\f055"
	}

	.am-icon-minus-circle:before {
		content: "\f056"
	}

	.am-icon-times-circle:before {
		content: "\f057"
	}

	.am-icon-check-circle:before {
		content: "\f058"
	}

	.am-icon-question-circle:before {
		content: "\f059"
	}

	.am-icon-info-circle:before {
		content: "\f05a"
	}

	.am-icon-crosshairs:before {
		content: "\f05b"
	}

	.am-icon-times-circle-o:before {
		content: "\f05c"
	}

	.am-icon-check-circle-o:before {
		content: "\f05d"
	}

	.am-icon-ban:before {
		content: "\f05e"
	}

	.am-icon-arrow-left:before {
		content: "\f060"
	}

	.am-icon-arrow-right:before {
		content: "\f061"
	}

	.am-icon-arrow-up:before {
		content: "\f062"
	}

	.am-icon-arrow-down:before {
		content: "\f063"
	}

	.am-icon-mail-forward:before,
	.am-icon-share:before {
		content: "\f064"
	}

	.am-icon-expand:before {
		content: "\f065"
	}

	.am-icon-compress:before {
		content: "\f066"
	}

	.am-icon-plus:before {
		content: "\f067"
	}

	.am-icon-minus:before {
		content: "\f068"
	}

	.am-icon-asterisk:before {
		content: "\f069"
	}

	.am-icon-exclamation-circle:before {
		content: "\f06a"
	}

	.am-icon-gift:before {
		content: "\f06b"
	}

	.am-icon-leaf:before {
		content: "\f06c"
	}

	.am-icon-fire:before {
		content: "\f06d"
	}

	.am-icon-eye:before {
		content: "\f06e"
	}

	.am-icon-eye-slash:before {
		content: "\f070"
	}

	.am-icon-warning:before,
	.am-icon-exclamation-triangle:before {
		content: "\f071"
	}

	.am-icon-plane:before {
		content: "\f072"
	}

	.am-icon-calendar:before {
		content: "\f073"
	}

	.am-icon-random:before {
		content: "\f074"
	}

	.am-icon-comment:before {
		content: "\f075"
	}

	.am-icon-magnet:before {
		content: "\f076"
	}

	.am-icon-chevron-up:before {
		content: "\f077"
	}

	.am-icon-chevron-down:before {
		content: "\f078"
	}

	.am-icon-retweet:before {
		content: "\f079"
	}

	.am-icon-shopping-cart:before {
		content: "\f07a"
	}

	.am-icon-folder:before {
		content: "\f07b"
	}

	.am-icon-folder-open:before {
		content: "\f07c"
	}

	.am-icon-arrows-v:before {
		content: "\f07d"
	}

	.am-icon-arrows-h:before {
		content: "\f07e"
	}

	.am-icon-bar-chart-o:before,
	.am-icon-bar-chart:before {
		content: "\f080"
	}

	.am-icon-twitter-square:before {
		content: "\f081"
	}

	.am-icon-facebook-square:before {
		content: "\f082"
	}

	.am-icon-camera-retro:before {
		content: "\f083"
	}

	.am-icon-key:before {
		content: "\f084"
	}

	.am-icon-gears:before,
	.am-icon-cogs:before {
		content: "\f085"
	}

	.am-icon-comments:before {
		content: "\f086"
	}

	.am-icon-thumbs-o-up:before {
		content: "\f087"
	}

	.am-icon-thumbs-o-down:before {
		content: "\f088"
	}

	.am-icon-star-half:before {
		content: "\f089"
	}

	.am-icon-heart-o:before {
		content: "\f08a"
	}

	.am-icon-sign-out:before {
		content: "\f08b"
	}

	.am-icon-linkedin-square:before {
		content: "\f08c"
	}

	.am-icon-thumb-tack:before {
		content: "\f08d"
	}

	.am-icon-external-link:before {
		content: "\f08e"
	}

	.am-icon-sign-in:before {
		content: "\f090"
	}

	.am-icon-trophy:before {
		content: "\f091"
	}

	.am-icon-github-square:before {
		content: "\f092"
	}

	.am-icon-upload:before {
		content: "\f093"
	}

	.am-icon-lemon-o:before {
		content: "\f094"
	}

	.am-icon-phone:before {
		content: "\f095"
	}

	.am-icon-square-o:before {
		content: "\f096"
	}

	.am-icon-bookmark-o:before {
		content: "\f097"
	}

	.am-icon-phone-square:before {
		content: "\f098"
	}

	.am-icon-twitter:before {
		content: "\f099"
	}

	.am-icon-facebook:before {
		content: "\f09a"
	}

	.am-icon-github:before {
		content: "\f09b"
	}

	.am-icon-unlock:before {
		content: "\f09c"
	}

	.am-icon-credit-card:before {
		content: "\f09d"
	}

	.am-icon-rss:before {
		content: "\f09e"
	}

	.am-icon-hdd-o:before {
		content: "\f0a0"
	}

	.am-icon-bullhorn:before {
		content: "\f0a1"
	}

	.am-icon-bell:before {
		content: "\f0f3"
	}

	.am-icon-certificate:before {
		content: "\f0a3"
	}

	.am-icon-hand-o-right:before {
		content: "\f0a4"
	}

	.am-icon-hand-o-left:before {
		content: "\f0a5"
	}

	.am-icon-hand-o-up:before {
		content: "\f0a6"
	}

	.am-icon-hand-o-down:before {
		content: "\f0a7"
	}

	.am-icon-arrow-circle-left:before {
		content: "\f0a8"
	}

	.am-icon-arrow-circle-right:before {
		content: "\f0a9"
	}

	.am-icon-arrow-circle-up:before {
		content: "\f0aa"
	}

	.am-icon-arrow-circle-down:before {
		content: "\f0ab"
	}

	.am-icon-globe:before {
		content: "\f0ac"
	}

	.am-icon-wrench:before {
		content: "\f0ad"
	}

	.am-icon-tasks:before {
		content: "\f0ae"
	}

	.am-icon-filter:before {
		content: "\f0b0"
	}

	.am-icon-briefcase:before {
		content: "\f0b1"
	}

	.am-icon-arrows-alt:before {
		content: "\f0b2"
	}

	.am-icon-group:before,
	.am-icon-users:before {
		content: "\f0c0"
	}

	.am-icon-chain:before,
	.am-icon-link:before {
		content: "\f0c1"
	}

	.am-icon-cloud:before {
		content: "\f0c2"
	}

	.am-icon-flask:before {
		content: "\f0c3"
	}

	.am-icon-cut:before,
	.am-icon-scissors:before {
		content: "\f0c4"
	}

	.am-icon-copy:before,
	.am-icon-files-o:before {
		content: "\f0c5"
	}

	.am-icon-paperclip:before {
		content: "\f0c6"
	}

	.am-icon-save:before,
	.am-icon-floppy-o:before {
		content: "\f0c7"
	}

	.am-icon-square:before {
		content: "\f0c8"
	}

	.am-icon-navicon:before,
	.am-icon-reorder:before,
	.am-icon-bars:before {
		content: "\f0c9"
	}

	.am-icon-list-ul:before {
		content: "\f0ca"
	}

	.am-icon-list-ol:before {
		content: "\f0cb"
	}

	.am-icon-strikethrough:before {
		content: "\f0cc"
	}

	.am-icon-underline:before {
		content: "\f0cd"
	}

	.am-icon-table:before {
		content: "\f0ce"
	}

	.am-icon-magic:before {
		content: "\f0d0"
	}

	.am-icon-truck:before {
		content: "\f0d1"
	}

	.am-icon-pinterest:before {
		content: "\f0d2"
	}

	.am-icon-pinterest-square:before {
		content: "\f0d3"
	}

	.am-icon-google-plus-square:before {
		content: "\f0d4"
	}

	.am-icon-google-plus:before {
		content: "\f0d5"
	}

	.am-icon-money:before {
		content: "\f0d6"
	}

	.am-icon-caret-down:before {
		content: "\f0d7"
	}

	.am-icon-caret-up:before {
		content: "\f0d8"
	}

	.am-icon-caret-left:before {
		content: "\f0d9"
	}

	.am-icon-caret-right:before {
		content: "\f0da"
	}

	.am-icon-columns:before {
		content: "\f0db"
	}

	.am-icon-unsorted:before,
	.am-icon-sort:before {
		content: "\f0dc"
	}

	.am-icon-sort-down:before,
	.am-icon-sort-desc:before {
		content: "\f0dd"
	}

	.am-icon-sort-up:before,
	.am-icon-sort-asc:before {
		content: "\f0de"
	}

	.am-icon-envelope:before {
		content: "\f0e0"
	}

	.am-icon-linkedin:before {
		content: "\f0e1"
	}

	.am-icon-rotate-left:before,
	.am-icon-undo:before {
		content: "\f0e2"
	}

	.am-icon-legal:before,
	.am-icon-gavel:before {
		content: "\f0e3"
	}

	.am-icon-dashboard:before,
	.am-icon-tachometer:before {
		content: "\f0e4"
	}

	.am-icon-comment-o:before {
		content: "\f0e5"
	}

	.am-icon-comments-o:before {
		content: "\f0e6"
	}

	.am-icon-flash:before,
	.am-icon-bolt:before {
		content: "\f0e7"
	}

	.am-icon-sitemap:before {
		content: "\f0e8"
	}

	.am-icon-umbrella:before {
		content: "\f0e9"
	}

	.am-icon-paste:before,
	.am-icon-clipboard:before {
		content: "\f0ea"
	}

	.am-icon-lightbulb-o:before {
		content: "\f0eb"
	}

	.am-icon-exchange:before {
		content: "\f0ec"
	}

	.am-icon-cloud-download:before {
		content: "\f0ed"
	}

	.am-icon-cloud-upload:before {
		content: "\f0ee"
	}

	.am-icon-user-md:before {
		content: "\f0f0"
	}

	.am-icon-stethoscope:before {
		content: "\f0f1"
	}

	.am-icon-suitcase:before {
		content: "\f0f2"
	}

	.am-icon-bell-o:before {
		content: "\f0a2"
	}

	.am-icon-coffee:before {
		content: "\f0f4"
	}

	.am-icon-cutlery:before {
		content: "\f0f5"
	}

	.am-icon-file-text-o:before {
		content: "\f0f6"
	}

	.am-icon-building-o:before {
		content: "\f0f7"
	}

	.am-icon-hospital-o:before {
		content: "\f0f8"
	}

	.am-icon-ambulance:before {
		content: "\f0f9"
	}

	.am-icon-medkit:before {
		content: "\f0fa"
	}

	.am-icon-fighter-jet:before {
		content: "\f0fb"
	}

	.am-icon-beer:before {
		content: "\f0fc"
	}

	.am-icon-h-square:before {
		content: "\f0fd"
	}

	.am-icon-plus-square:before {
		content: "\f0fe"
	}

	.am-icon-angle-double-left:before {
		content: "\f100"
	}

	.am-icon-angle-double-right:before {
		content: "\f101"
	}

	.am-icon-angle-double-up:before {
		content: "\f102"
	}

	.am-icon-angle-double-down:before {
		content: "\f103"
	}

	.am-icon-angle-left:before {
		content: "\f104"
	}

	.am-icon-angle-right:before {
		content: "\f105"
	}

	.am-icon-angle-up:before {
		content: "\f106"
	}

	.am-icon-angle-down:before {
		content: "\f107"
	}

	.am-icon-desktop:before {
		content: "\f108"
	}

	.am-icon-laptop:before {
		content: "\f109"
	}

	.am-icon-tablet:before {
		content: "\f10a"
	}

	.am-icon-mobile-phone:before,
	.am-icon-mobile:before {
		content: "\f10b"
	}

	.am-icon-circle-o:before {
		content: "\f10c"
	}

	.am-icon-quote-left:before {
		content: "\f10d"
	}

	.am-icon-quote-right:before {
		content: "\f10e"
	}

	.am-icon-spinner:before {
		content: "\f110"
	}

	.am-icon-circle:before {
		content: "\f111"
	}

	.am-icon-mail-reply:before,
	.am-icon-reply:before {
		content: "\f112"
	}

	.am-icon-github-alt:before {
		content: "\f113"
	}

	.am-icon-folder-o:before {
		content: "\f114"
	}

	.am-icon-folder-open-o:before {
		content: "\f115"
	}

	.am-icon-smile-o:before {
		content: "\f118"
	}

	.am-icon-frown-o:before {
		content: "\f119"
	}

	.am-icon-meh-o:before {
		content: "\f11a"
	}

	.am-icon-gamepad:before {
		content: "\f11b"
	}

	.am-icon-keyboard-o:before {
		content: "\f11c"
	}

	.am-icon-flag-o:before {
		content: "\f11d"
	}

	.am-icon-flag-checkered:before {
		content: "\f11e"
	}

	.am-icon-terminal:before {
		content: "\f120"
	}

	.am-icon-code:before {
		content: "\f121"
	}

	.am-icon-mail-reply-all:before,
	.am-icon-reply-all:before {
		content: "\f122"
	}

	.am-icon-star-half-empty:before,
	.am-icon-star-half-full:before,
	.am-icon-star-half-o:before {
		content: "\f123"
	}

	.am-icon-location-arrow:before {
		content: "\f124"
	}

	.am-icon-crop:before {
		content: "\f125"
	}

	.am-icon-code-fork:before {
		content: "\f126"
	}

	.am-icon-unlink:before,
	.am-icon-chain-broken:before {
		content: "\f127"
	}

	.am-icon-question:before {
		content: "\f128"
	}

	.am-icon-info:before {
		content: "\f129"
	}

	.am-icon-exclamation:before {
		content: "\f12a"
	}

	.am-icon-superscript:before {
		content: "\f12b"
	}

	.am-icon-subscript:before {
		content: "\f12c"
	}

	.am-icon-eraser:before {
		content: "\f12d"
	}

	.am-icon-puzzle-piece:before {
		content: "\f12e"
	}

	.am-icon-microphone:before {
		content: "\f130"
	}

	.am-icon-microphone-slash:before {
		content: "\f131"
	}

	.am-icon-shield:before {
		content: "\f132"
	}

	.am-icon-calendar-o:before {
		content: "\f133"
	}

	.am-icon-fire-extinguisher:before {
		content: "\f134"
	}

	.am-icon-rocket:before {
		content: "\f135"
	}

	.am-icon-maxcdn:before {
		content: "\f136"
	}

	.am-icon-chevron-circle-left:before {
		content: "\f137"
	}

	.am-icon-chevron-circle-right:before {
		content: "\f138"
	}

	.am-icon-chevron-circle-up:before {
		content: "\f139"
	}

	.am-icon-chevron-circle-down:before {
		content: "\f13a"
	}

	.am-icon-html5:before {
		content: "\f13b"
	}

	.am-icon-css3:before {
		content: "\f13c"
	}

	.am-icon-anchor:before {
		content: "\f13d"
	}

	.am-icon-unlock-alt:before {
		content: "\f13e"
	}

	.am-icon-bullseye:before {
		content: "\f140"
	}

	.am-icon-ellipsis-h:before {
		content: "\f141"
	}

	.am-icon-ellipsis-v:before {
		content: "\f142"
	}

	.am-icon-rss-square:before {
		content: "\f143"
	}

	.am-icon-play-circle:before {
		content: "\f144"
	}

	.am-icon-ticket:before {
		content: "\f145"
	}

	.am-icon-minus-square:before {
		content: "\f146"
	}

	.am-icon-minus-square-o:before {
		content: "\f147"
	}

	.am-icon-level-up:before {
		content: "\f148"
	}

	.am-icon-level-down:before {
		content: "\f149"
	}

	.am-icon-check-square:before {
		content: "\f14a"
	}

	.am-icon-pencil-square:before {
		content: "\f14b"
	}

	.am-icon-external-link-square:before {
		content: "\f14c"
	}

	.am-icon-share-square:before {
		content: "\f14d"
	}

	.am-icon-compass:before {
		content: "\f14e"
	}

	.am-icon-toggle-down:before,
	.am-icon-caret-square-o-down:before {
		content: "\f150"
	}

	.am-icon-toggle-up:before,
	.am-icon-caret-square-o-up:before {
		content: "\f151"
	}

	.am-icon-toggle-right:before,
	.am-icon-caret-square-o-right:before {
		content: "\f152"
	}

	.am-icon-euro:before,
	.am-icon-eur:before {
		content: "\f153"
	}

	.am-icon-gbp:before {
		content: "\f154"
	}

	.am-icon-dollar:before,
	.am-icon-usd:before {
		content: "\f155"
	}

	.am-icon-rupee:before,
	.am-icon-inr:before {
		content: "\f156"
	}

	.am-icon-cny:before,
	.am-icon-rmb:before,
	.am-icon-yen:before,
	.am-icon-jpy:before {
		content: "\f157"
	}

	.am-icon-ruble:before,
	.am-icon-rouble:before,
	.am-icon-rub:before {
		content: "\f158"
	}

	.am-icon-won:before,
	.am-icon-krw:before {
		content: "\f159"
	}

	.am-icon-bitcoin:before,
	.am-icon-btc:before {
		content: "\f15a"
	}

	.am-icon-file:before {
		content: "\f15b"
	}

	.am-icon-file-text:before {
		content: "\f15c"
	}

	.am-icon-sort-alpha-asc:before {
		content: "\f15d"
	}

	.am-icon-sort-alpha-desc:before {
		content: "\f15e"
	}

	.am-icon-sort-amount-asc:before {
		content: "\f160"
	}

	.am-icon-sort-amount-desc:before {
		content: "\f161"
	}

	.am-icon-sort-numeric-asc:before {
		content: "\f162"
	}

	.am-icon-sort-numeric-desc:before {
		content: "\f163"
	}

	.am-icon-thumbs-up:before {
		content: "\f164"
	}

	.am-icon-thumbs-down:before {
		content: "\f165"
	}

	.am-icon-youtube-square:before {
		content: "\f166"
	}

	.am-icon-youtube:before {
		content: "\f167"
	}

	.am-icon-xing:before {
		content: "\f168"
	}

	.am-icon-xing-square:before {
		content: "\f169"
	}

	.am-icon-youtube-play:before {
		content: "\f16a"
	}

	.am-icon-dropbox:before {
		content: "\f16b"
	}

	.am-icon-stack-overflow:before {
		content: "\f16c"
	}

	.am-icon-instagram:before {
		content: "\f16d"
	}

	.am-icon-flickr:before {
		content: "\f16e"
	}

	.am-icon-adn:before {
		content: "\f170"
	}

	.am-icon-bitbucket:before {
		content: "\f171"
	}

	.am-icon-bitbucket-square:before {
		content: "\f172"
	}

	.am-icon-tumblr:before {
		content: "\f173"
	}

	.am-icon-tumblr-square:before {
		content: "\f174"
	}

	.am-icon-long-arrow-down:before {
		content: "\f175"
	}

	.am-icon-long-arrow-up:before {
		content: "\f176"
	}

	.am-icon-long-arrow-left:before {
		content: "\f177"
	}

	.am-icon-long-arrow-right:before {
		content: "\f178"
	}

	.am-icon-apple:before {
		content: "\f179"
	}

	.am-icon-windows:before {
		content: "\f17a"
	}

	.am-icon-android:before {
		content: "\f17b"
	}

	.am-icon-linux:before {
		content: "\f17c"
	}

	.am-icon-dribbble:before {
		content: "\f17d"
	}

	.am-icon-skype:before {
		content: "\f17e"
	}

	.am-icon-foursquare:before {
		content: "\f180"
	}

	.am-icon-trello:before {
		content: "\f181"
	}

	.am-icon-female:before {
		content: "\f182"
	}

	.am-icon-male:before {
		content: "\f183"
	}

	.am-icon-gittip:before {
		content: "\f184"
	}

	.am-icon-sun-o:before {
		content: "\f185"
	}

	.am-icon-moon-o:before {
		content: "\f186"
	}

	.am-icon-archive:before {
		content: "\f187"
	}

	.am-icon-bug:before {
		content: "\f188"
	}

	.am-icon-vk:before {
		content: "\f189"
	}

	.am-icon-weibo:before {
		content: "\f18a"
	}

	.am-icon-renren:before {
		content: "\f18b"
	}

	.am-icon-pagelines:before {
		content: "\f18c"
	}

	.am-icon-stack-exchange:before {
		content: "\f18d"
	}

	.am-icon-arrow-circle-o-right:before {
		content: "\f18e"
	}

	.am-icon-arrow-circle-o-left:before {
		content: "\f190"
	}

	.am-icon-toggle-left:before,
	.am-icon-caret-square-o-left:before {
		content: "\f191"
	}

	.am-icon-dot-circle-o:before {
		content: "\f192"
	}

	.am-icon-wheelchair:before {
		content: "\f193"
	}

	.am-icon-vimeo-square:before {
		content: "\f194"
	}

	.am-icon-turkish-lira:before,
	.am-icon-try:before {
		content: "\f195"
	}

	.am-icon-plus-square-o:before {
		content: "\f196"
	}

	.am-icon-space-shuttle:before {
		content: "\f197"
	}

	.am-icon-slack:before {
		content: "\f198"
	}

	.am-icon-envelope-square:before {
		content: "\f199"
	}

	.am-icon-wordpress:before {
		content: "\f19a"
	}

	.am-icon-openid:before {
		content: "\f19b"
	}

	.am-icon-institution:before,
	.am-icon-bank:before,
	.am-icon-university:before {
		content: "\f19c"
	}

	.am-icon-mortar-board:before,
	.am-icon-graduation-cap:before {
		content: "\f19d"
	}

	.am-icon-yahoo:before {
		content: "\f19e"
	}

	.am-icon-google:before {
		content: "\f1a0"
	}

	.am-icon-reddit:before {
		content: "\f1a1"
	}

	.am-icon-reddit-square:before {
		content: "\f1a2"
	}

	.am-icon-stumbleupon-circle:before {
		content: "\f1a3"
	}

	.am-icon-stumbleupon:before {
		content: "\f1a4"
	}

	.am-icon-delicious:before {
		content: "\f1a5"
	}

	.am-icon-digg:before {
		content: "\f1a6"
	}

	.am-icon-pied-piper:before {
		content: "\f1a7"
	}

	.am-icon-pied-piper-alt:before {
		content: "\f1a8"
	}

	.am-icon-drupal:before {
		content: "\f1a9"
	}

	.am-icon-joomla:before {
		content: "\f1aa"
	}

	.am-icon-language:before {
		content: "\f1ab"
	}

	.am-icon-fax:before {
		content: "\f1ac"
	}

	.am-icon-building:before {
		content: "\f1ad"
	}

	.am-icon-child:before {
		content: "\f1ae"
	}

	.am-icon-paw:before {
		content: "\f1b0"
	}

	.am-icon-spoon:before {
		content: "\f1b1"
	}

	.am-icon-cube:before {
		content: "\f1b2"
	}

	.am-icon-cubes:before {
		content: "\f1b3"
	}

	.am-icon-behance:before {
		content: "\f1b4"
	}

	.am-icon-behance-square:before {
		content: "\f1b5"
	}

	.am-icon-steam:before {
		content: "\f1b6"
	}

	.am-icon-steam-square:before {
		content: "\f1b7"
	}

	.am-icon-recycle:before {
		content: "\f1b8"
	}

	.am-icon-automobile:before,
	.am-icon-car:before {
		content: "\f1b9"
	}

	.am-icon-cab:before,
	.am-icon-taxi:before {
		content: "\f1ba"
	}

	.am-icon-tree:before {
		content: "\f1bb"
	}

	.am-icon-spotify:before {
		content: "\f1bc"
	}

	.am-icon-deviantart:before {
		content: "\f1bd"
	}

	.am-icon-soundcloud:before {
		content: "\f1be"
	}

	.am-icon-database:before {
		content: "\f1c0"
	}

	.am-icon-file-pdf-o:before {
		content: "\f1c1"
	}

	.am-icon-file-word-o:before {
		content: "\f1c2"
	}

	.am-icon-file-excel-o:before {
		content: "\f1c3"
	}

	.am-icon-file-powerpoint-o:before {
		content: "\f1c4"
	}

	.am-icon-file-photo-o:before,
	.am-icon-file-picture-o:before,
	.am-icon-file-image-o:before {
		content: "\f1c5"
	}

	.am-icon-file-zip-o:before,
	.am-icon-file-archive-o:before {
		content: "\f1c6"
	}

	.am-icon-file-sound-o:before,
	.am-icon-file-audio-o:before {
		content: "\f1c7"
	}

	.am-icon-file-movie-o:before,
	.am-icon-file-video-o:before {
		content: "\f1c8"
	}

	.am-icon-file-code-o:before {
		content: "\f1c9"
	}

	.am-icon-vine:before {
		content: "\f1ca"
	}

	.am-icon-codepen:before {
		content: "\f1cb"
	}

	.am-icon-jsfiddle:before {
		content: "\f1cc"
	}

	.am-icon-life-bouy:before,
	.am-icon-life-buoy:before,
	.am-icon-life-saver:before,
	.am-icon-support:before,
	.am-icon-life-ring:before {
		content: "\f1cd"
	}

	.am-icon-circle-o-notch:before {
		content: "\f1ce"
	}

	.am-icon-ra:before,
	.am-icon-rebel:before {
		content: "\f1d0"
	}

	.am-icon-ge:before,
	.am-icon-empire:before {
		content: "\f1d1"
	}

	.am-icon-git-square:before {
		content: "\f1d2"
	}

	.am-icon-git:before {
		content: "\f1d3"
	}

	.am-icon-hacker-news:before {
		content: "\f1d4"
	}

	.am-icon-tencent-weibo:before {
		content: "\f1d5"
	}

	.am-icon-qq:before {
		content: "\f1d6"
	}

	.am-icon-wechat:before,
	.am-icon-weixin:before {
		content: "\f1d7"
	}

	.am-icon-send:before,
	.am-icon-paper-plane:before {
		content: "\f1d8"
	}

	.am-icon-send-o:before,
	.am-icon-paper-plane-o:before {
		content: "\f1d9"
	}

	.am-icon-history:before {
		content: "\f1da"
	}

	.am-icon-circle-thin:before {
		content: "\f1db"
	}

	.am-icon-header:before {
		content: "\f1dc"
	}

	.am-icon-paragraph:before {
		content: "\f1dd"
	}

	.am-icon-sliders:before {
		content: "\f1de"
	}

	.am-icon-share-alt:before {
		content: "\f1e0"
	}

	.am-icon-share-alt-square:before {
		content: "\f1e1"
	}

	.am-icon-bomb:before {
		content: "\f1e2"
	}

	.am-icon-soccer-ball-o:before,
	.am-icon-futbol-o:before {
		content: "\f1e3"
	}

	.am-icon-tty:before {
		content: "\f1e4"
	}

	.am-icon-binoculars:before {
		content: "\f1e5"
	}

	.am-icon-plug:before {
		content: "\f1e6"
	}

	.am-icon-slideshare:before {
		content: "\f1e7"
	}

	.am-icon-twitch:before {
		content: "\f1e8"
	}

	.am-icon-yelp:before {
		content: "\f1e9"
	}

	.am-icon-newspaper-o:before {
		content: "\f1ea"
	}

	.am-icon-wifi:before {
		content: "\f1eb"
	}

	.am-icon-calculator:before {
		content: "\f1ec"
	}

	.am-icon-paypal:before {
		content: "\f1ed"
	}

	.am-icon-google-wallet:before {
		content: "\f1ee"
	}

	.am-icon-cc-visa:before {
		content: "\f1f0"
	}

	.am-icon-cc-mastercard:before {
		content: "\f1f1"
	}

	.am-icon-cc-discover:before {
		content: "\f1f2"
	}

	.am-icon-cc-amex:before {
		content: "\f1f3"
	}

	.am-icon-cc-paypal:before {
		content: "\f1f4"
	}

	.am-icon-cc-stripe:before {
		content: "\f1f5"
	}

	.am-icon-bell-slash:before {
		content: "\f1f6"
	}

	.am-icon-bell-slash-o:before {
		content: "\f1f7"
	}

	.am-icon-trash:before {
		content: "\f1f8"
	}

	.am-icon-copyright:before {
		content: "\f1f9"
	}

	.am-icon-at:before {
		content: "\f1fa"
	}

	.am-icon-eyedropper:before {
		content: "\f1fb"
	}

	.am-icon-paint-brush:before {
		content: "\f1fc"
	}

	.am-icon-birthday-cake:before {
		content: "\f1fd"
	}

	.am-icon-area-chart:before {
		content: "\f1fe"
	}

	.am-icon-pie-chart:before {
		content: "\f200"
	}

	.am-icon-line-chart:before {
		content: "\f201"
	}

	.am-icon-lastfm:before {
		content: "\f202"
	}

	.am-icon-lastfm-square:before {
		content: "\f203"
	}

	.am-icon-toggle-off:before {
		content: "\f204"
	}

	.am-icon-toggle-on:before {
		content: "\f205"
	}

	.am-icon-bicycle:before {
		content: "\f206"
	}

	.am-icon-bus:before {
		content: "\f207"
	}

	.am-icon-ioxhost:before {
		content: "\f208"
	}

	.am-icon-angellist:before {
		content: "\f209"
	}

	.am-icon-cc:before {
		content: "\f20a"
	}

	.am-icon-shekel:before,
	.am-icon-sheqel:before,
	.am-icon-ils:before {
		content: "\f20b"
	}

	.am-icon-meanpath:before {
		content: "\f20c"
	}

	@-webkit-keyframes icon-spin {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(359deg);
			transform: rotate(359deg)
		}
	}

	@keyframes icon-spin {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(359deg);
			transform: rotate(359deg)
		}
	}

	.am-icon-spin {
		-webkit-animation: icon-spin 2s infinite linear;
		animation: icon-spin 2s infinite linear
	}

	.am-icon-ul {
		padding-left: 0;
		margin-left: 2.14285714em;
		list-style-type: none
	}

	.am-icon-ul>li {
		position: relative
	}

	.am-icon-li {
		position: absolute;
		left: -2.14285714em;
		width: 2.14285714em;
		top: .14285714em;
		text-align: center
	}

	.am-input-group {
		position: relative;
		display: table;
		border-collapse: separate
	}

	.am-input-group[class*=col-] {
		float: none;
		padding-left: 0;
		padding-right: 0
	}

	.am-input-group .am-form-field {
		position: relative;
		z-index: 2;
		float: left;
		width: 100%;
		margin-bottom: 0
	}

	.am-input-group-label,
	.am-input-group-btn,
	.am-input-group .am-form-field {
		display: table-cell
	}

	.am-input-group-label:not(:first-child):not(:last-child),
	.am-input-group-btn:not(:first-child):not(:last-child),
	.am-input-group .am-form-field:not(:first-child):not(:last-child) {
		border-radius: 0
	}

	.am-input-group-label,
	.am-input-group-btn {
		width: 1%;
		white-space: nowrap;
		vertical-align: middle
	}

	.am-input-group-label {
		padding: .625em 1em;
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1.2;
		color: #555;
		text-align: center;
		background-color: #eee;
		border: 1px solid #ccc;
		border-radius: 0
	}

	.am-input-group-label input[type=radio],
	.am-input-group-label input[type=checkbox] {
		margin-top: 0
	}

	.am-input-group .am-form-field:first-child,
	.am-input-group-label:first-child,
	.am-input-group-btn:first-child>.am-btn,
	.am-input-group-btn:first-child>.am-btn-group>.am-btn,
	.am-input-group-btn:first-child>.am-dropdown-toggle,
	.am-input-group-btn:last-child>.am-btn:not(:last-child):not(.dropdown-toggle),
	.am-input-group-btn:last-child>.am-btn-group:not(:last-child)>.am-btn {
		border-bottom-right-radius: 0;
		border-top-right-radius: 0
	}

	.am-input-group-label:first-child {
		border-right: 0
	}

	.am-input-group .am-form-field:last-child,
	.am-input-group-label:last-child,
	.am-input-group-btn:last-child>.am-btn,
	.am-input-group-btn:last-child>.am-btn-group>.am-btn,
	.am-input-group-btn:last-child>.am-dropdown-toggle,
	.am-input-group-btn:first-child>.am-btn:not(:first-child),
	.am-input-group-btn:first-child>.am-btn-group:not(:first-child)>.am-btn {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}

	.am-input-group-label:last-child {
		border-left: 0
	}

	.am-input-group-btn {
		position: relative;
		font-size: 0;
		white-space: nowrap
	}

	.am-input-group-btn>.am-btn {
		position: relative;
		border-color: #ccc
	}

	.am-input-group-btn>.am-btn+.am-btn {
		margin-left: -1px
	}

	.am-input-group-btn>.am-btn:hover,
	.am-input-group-btn>.am-btn:focus,
	.am-input-group-btn>.am-btn:active {
		z-index: 2
	}

	.am-input-group-btn:first-child>.am-btn,
	.am-input-group-btn:first-child>.am-btn-group {
		margin-right: -2px
	}

	.am-input-group-btn:last-child>.am-btn,
	.am-input-group-btn:last-child>.am-btn-group {
		margin-left: -1px
	}

	.am-input-group-lg>.am-form-field,
	.am-input-group-lg>.am-input-group-label,
	.am-input-group-lg>.am-input-group-btn>.am-btn {
		padding: 12px 18px !important;
		font-size: 1.8rem !important
	}

	.am-input-group-sm>.am-form-field,
	.am-input-group-sm>.am-input-group-label,
	.am-input-group-sm>.am-input-group-btn>.am-btn {
		padding: 9px 14px !important;
		font-size: 1.4rem !important
	}

	.am-input-group-primary .am-input-group-label {
		background: #0e90d2;
		color: #fff
	}

	.am-input-group-primary .am-input-group-label,
	.am-input-group-primary .am-input-group-btn>.am-btn,
	.am-input-group-primary .am-form-field {
		border-color: #0e90d2
	}

	.am-input-group-secondary .am-input-group-label {
		background: #3bb4f2;
		color: #fff
	}

	.am-input-group-secondary .am-input-group-label,
	.am-input-group-secondary .am-input-group-btn>.am-btn,
	.am-input-group-secondary .am-form-field {
		border-color: #3bb4f2
	}

	.am-input-group-success .am-input-group-label {
		background: #5eb95e;
		color: #fff
	}

	.am-input-group-success .am-input-group-label,
	.am-input-group-success .am-input-group-btn>.am-btn,
	.am-input-group-success .am-form-field {
		border-color: #5eb95e
	}

	.am-input-group-warning .am-input-group-label {
		background: #f37b1d;
		color: #fff
	}

	.am-input-group-warning .am-input-group-label,
	.am-input-group-warning .am-input-group-btn>.am-btn,
	.am-input-group-warning .am-form-field {
		border-color: #f37b1d
	}

	.am-input-group-danger .am-input-group-label {
		background: #dd514c;
		color: #fff
	}

	.am-input-group-danger .am-input-group-label,
	.am-input-group-danger .am-input-group-btn>.am-btn,
	.am-input-group-danger .am-form-field {
		border-color: #dd514c
	}

	.am-list {
		margin-bottom: 1.6rem;
		padding-left: 0
	}

	.am-list>li {
		position: relative;
		display: block;
		margin-bottom: -1px;
		background-color: #fff;
		border: 1px solid #dedede;
		border-width: 1px 0
	}

	.am-list>li>a {
		display: block;
		padding: 1rem 0
	}

	.am-list>li>a.am-active,
	.am-list>li>a.am-active:hover,
	.am-list>li>a.am-active:focus {
		z-index: 2;
		color: #fff;
		background-color: #0e90d2;
		border-color: #0e90d2
	}

	.am-list>li>a.am-active .am-list-item-heading,
	.am-list>li>a.am-active:hover .am-list-item-heading,
	.am-list>li>a.am-active:focus .am-list-item-heading {
		color: inherit
	}

	.am-list>li>a.am-active .am-list-item-text,
	.am-list>li>a.am-active:hover .am-list-item-text,
	.am-list>li>a.am-active:focus .am-list-item-text {
		color: #b2e2fa
	}

	.am-list>li>.am-badge {
		float: right
	}

	.am-list>li>.am-badge+.am-badge {
		margin-right: 5px
	}

	.am-list-static>li {
		padding: .8rem .2rem
	}

	.am-list-static.am-list-border>li {
		padding: 1rem
	}

	.am-list-border>li {
		border-width: 1px
	}

	.am-list-border>li:first-child,
	.am-list-border>li:first-child>a {
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-list-border>li:last-child,
	.am-list-border>li:last-child>a {
		margin-bottom: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-list-border>li>a {
		padding: 1rem
	}

	.am-list-border>li>a:hover,
	.am-list-border>li>a:focus {
		background-color: #f5f5f5
	}

	.am-list-striped>li:nth-of-type(even) {
		background: #f5f5f5
	}

	.am-list-item-hd {
		margin-top: 0
	}

	.am-list-item-text {
		line-height: 1.4;
		font-size: 1.3rem;
		color: #999;
		margin: 0
	}

	.am-panel {
		margin-bottom: 20px;
		background-color: #fff;
		border: 1px solid transparent;
		border-radius: 0;
		-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
		box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
	}

	.am-panel-hd {
		padding: .6rem 1.25rem;
		border-bottom: 1px solid transparent;
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-panel-bd {
		padding: 1.25rem
	}

	.am-panel-title {
		margin: 0;
		font-size: 100%;
		color: inherit
	}

	.am-panel-title>a {
		color: inherit
	}

	.am-panel-footer {
		padding: .6rem 1.25rem;
		background-color: #f5f5f5;
		border-top: 1px solid #ddd;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-panel-default {
		border-color: #ddd
	}

	.am-panel-default>.am-panel-hd {
		color: #444;
		background-color: #f5f5f5;
		border-color: #ddd
	}

	.am-panel-default>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #ddd
	}

	.am-panel-default>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #ddd
	}

	.am-panel-primary {
		border-color: #10a0ea
	}

	.am-panel-primary>.am-panel-hd {
		color: #fff;
		background-color: #0e90d2;
		border-color: #10a0ea
	}

	.am-panel-primary>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #10a0ea
	}

	.am-panel-primary>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #10a0ea
	}

	.am-panel-secondary {
		border-color: #caebfb
	}

	.am-panel-secondary>.am-panel-hd {
		color: #14a6ef;
		background-color: rgba(59, 180, 242, .15);
		border-color: #caebfb
	}

	.am-panel-secondary>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #caebfb
	}

	.am-panel-secondary>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #caebfb
	}

	.am-panel-success {
		border-color: #c9e7c9
	}

	.am-panel-success>.am-panel-hd {
		color: #5eb95e;
		background-color: rgba(94, 185, 94, .15);
		border-color: #c9e7c9
	}

	.am-panel-success>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #c9e7c9
	}

	.am-panel-success>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #c9e7c9
	}

	.am-panel-warning {
		border-color: #fbd0ae
	}

	.am-panel-warning>.am-panel-hd {
		color: #f37b1d;
		background-color: rgba(243, 123, 29, .15);
		border-color: #fbd0ae
	}

	.am-panel-warning>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #fbd0ae
	}

	.am-panel-warning>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #fbd0ae
	}

	.am-panel-danger {
		border-color: #f5cecd
	}

	.am-panel-danger>.am-panel-hd {
		color: #dd514c;
		background-color: rgba(221, 81, 76, .15);
		border-color: #f5cecd
	}

	.am-panel-danger>.am-panel-hd+.am-panel-collapse>.am-panel-bd {
		border-top-color: #f5cecd
	}

	.am-panel-danger>.am-panel-footer+.am-panel-collapse>.am-panel-bd {
		border-bottom-color: #f5cecd
	}

	.am-panel>.am-table {
		margin-bottom: 0
	}

	.am-panel>.am-table:first-child {
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-panel>.am-table:first-child>thead:first-child>tr:first-child td:first-child,
	.am-panel>.am-table:first-child>tbody:first-child>tr:first-child td:first-child,
	.am-panel>.am-table:first-child>thead:first-child>tr:first-child th:first-child,
	.am-panel>.am-table:first-child>tbody:first-child>tr:first-child th:first-child {
		border-top-left-radius: 0
	}

	.am-panel>.am-table:first-child>thead:first-child>tr:first-child td:last-child,
	.am-panel>.am-table:first-child>tbody:first-child>tr:first-child td:last-child,
	.am-panel>.am-table:first-child>thead:first-child>tr:first-child th:last-child,
	.am-panel>.am-table:first-child>tbody:first-child>tr:first-child th:last-child {
		border-top-right-radius: 0
	}

	.am-panel>.am-table:last-child {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-panel>.am-table:last-child>tbody:last-child>tr:last-child td:first-child,
	.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child td:first-child,
	.am-panel>.am-table:last-child>tbody:last-child>tr:last-child th:first-child,
	.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child th:first-child {
		border-bottom-left-radius: 0
	}

	.am-panel>.am-table:last-child>tbody:last-child>tr:last-child td:last-child,
	.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child td:last-child,
	.am-panel>.am-table:last-child>tbody:last-child>tr:last-child th:last-child,
	.am-panel>.am-table:last-child>tfoot:last-child>tr:last-child th:last-child {
		border-bottom-right-radius: 0
	}

	.am-panel>.am-panel-bd+.am-table {
		border-top: 1px solid #ddd
	}

	.am-panel>.am-table>tbody:first-child>tr:first-child th,
	.am-panel>.am-table>tbody:first-child>tr:first-child td {
		border-top: 0
	}

	.am-panel>.am-table-bd {
		border: 0
	}

	.am-panel>.am-table-bd>thead>tr>th:first-child,
	.am-panel>.am-table-bd>tbody>tr>th:first-child,
	.am-panel>.am-table-bd>tfoot>tr>th:first-child,
	.am-panel>.am-table-bd>thead>tr>td:first-child,
	.am-panel>.am-table-bd>tbody>tr>td:first-child,
	.am-panel>.am-table-bd>tfoot>tr>td:first-child {
		border-left: 0
	}

	.am-panel>.am-table-bd>thead>tr>th:last-child,
	.am-panel>.am-table-bd>tbody>tr>th:last-child,
	.am-panel>.am-table-bd>tfoot>tr>th:last-child,
	.am-panel>.am-table-bd>thead>tr>td:last-child,
	.am-panel>.am-table-bd>tbody>tr>td:last-child,
	.am-panel>.am-table-bd>tfoot>tr>td:last-child {
		border-right: 0
	}

	.am-panel>.am-table-bd>thead>tr:first-child>td,
	.am-panel>.am-table-bd>tbody>tr:first-child>td,
	.am-panel>.am-table-bd>thead>tr:first-child>th,
	.am-panel>.am-table-bd>tbody>tr:first-child>th {
		border-bottom: 0
	}

	.am-panel>.am-table-bd>tbody>tr:last-child>td,
	.am-panel>.am-table-bd>tfoot>tr:last-child>td,
	.am-panel>.am-table-bd>tbody>tr:last-child>th,
	.am-panel>.am-table-bd>tfoot>tr:last-child>th {
		border-bottom: 0
	}

	.am-panel>.am-list {
		margin: 0
	}

	.am-panel>.am-list>li>a {
		padding-left: 1rem;
		padding-right: 1rem
	}

	.am-panel>.am-list-static li {
		padding-left: 1rem;
		padding-right: 1rem
	}

	.am-panel-group {
		margin-bottom: 2rem
	}

	.am-panel-group .am-panel {
		margin-bottom: 0;
		border-radius: 0
	}

	.am-panel-group .am-panel+.am-panel {
		margin-top: 6px
	}

	.am-panel-group .am-panel-hd {
		border-bottom: 0
	}

	.am-panel-group .am-panel-hd+.am-panel-collapse .am-panel-bd {
		border-top: 1px solid #ddd
	}

	.am-panel-group .am-panel-footer {
		border-top: 0
	}

	.am-panel-group .am-panel-footer+.am-panel-collapse .am-panel-bd {
		border-bottom: 1px solid #ddd
	}

	@-webkit-keyframes progress-bar-stripes {
		from {
			background-position: 36px 0
		}

		to {
			background-position: 0 0
		}
	}

	@keyframes progress-bar-stripes {
		from {
			background-position: 36px 0
		}

		to {
			background-position: 0 0
		}
	}

	.am-progress {
		overflow: hidden;
		height: 2rem;
		margin-bottom: 2rem;
		background-color: #f5f5f5;
		border-radius: 0;
		-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
		box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
	}

	.am-progress-bar {
		float: left;
		width: 0;
		height: 100%;
		font-size: 1.2rem;
		line-height: 2rem;
		color: #fff;
		text-align: center;
		background-color: #0e90d2;
		-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
		box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
		-webkit-transition: width .6s ease;
		transition: width .6s ease
	}

	.am-progress-striped .am-progress-bar {
		background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.75, rgba(255, 255, 255, .15)), color-stop(0.75, transparent), to(transparent));
		background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		-webkit-background-size: 36px 36px;
		background-size: 36px 36px
	}

	.am-progress.am-active .am-progress-bar {
		-webkit-animation: progress-bar-stripes 2s linear infinite;
		animation: progress-bar-stripes 2s linear infinite
	}

	.am-progress-bar[aria-valuenow="1"],
	.am-progress-bar[aria-valuenow="2"] {
		min-width: 30px
	}

	.am-progress-bar[aria-valuenow="0"] {
		color: #999;
		min-width: 30px;
		background: 0 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}

	.am-progress-bar-secondary {
		background-color: #3bb4f2
	}

	.am-progress-striped .am-progress-bar-secondary {
		background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.75, rgba(255, 255, 255, .15)), color-stop(0.75, transparent), to(transparent));
		background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
	}

	.am-progress-bar-success {
		background-color: #5eb95e
	}

	.am-progress-striped .am-progress-bar-success {
		background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.75, rgba(255, 255, 255, .15)), color-stop(0.75, transparent), to(transparent));
		background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
	}

	.am-progress-bar-warning {
		background-color: #f37b1d
	}

	.am-progress-striped .am-progress-bar-warning {
		background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.75, rgba(255, 255, 255, .15)), color-stop(0.75, transparent), to(transparent));
		background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
	}

	.am-progress-bar-danger {
		background-color: #dd514c
	}

	.am-progress-striped .am-progress-bar-danger {
		background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, .15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, .15)), color-stop(0.75, rgba(255, 255, 255, .15)), color-stop(0.75, transparent), to(transparent));
		background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
		background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
	}

	.am-progress-xs {
		height: .6rem
	}

	.am-progress-sm {
		height: 1.2rem
	}

	.am-thumbnail {
		display: block;
		padding: 2px;
		margin-bottom: 2rem;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 0;
		-webkit-transition: all .2s ease-in-out;
		transition: all .2s ease-in-out
	}

	.am-thumbnail>img,
	.am-thumbnail a>img {
		margin-left: auto;
		margin-right: auto;
		display: block
	}

	.am-thumbnail a.am-thumbnail:hover,
	.am-thumbnail a.am-thumbnail:focus,
	.am-thumbnail a.am-thumbnail.active {
		border-color: #0e90d2;
		background-color: #fff
	}

	.am-thumbnail-caption {
		margin: 0;
		padding: .8rem;
		color: #333;
		font-weight: 400
	}

	.am-thumbnail-caption :last-child {
		margin-bottom: 0
	}

	.am-thumbnails {
		margin-left: -.5rem;
		margin-right: -.5rem
	}

	.am-thumbnails>li {
		padding: 0 .5rem 1rem .5rem
	}

	.am-scrollable-horizontal {
		width: 100%;
		overflow-y: hidden;
		overflow-x: auto;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		-webkit-overflow-scrolling: touch
	}

	.am-scrollable-vertical {
		height: 240px;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		resize: vertical
	}

	.am-square {
		border-radius: 0
	}

	.am-radius {
		border-radius: 2px
	}

	.am-round {
		border-radius: 1000px
	}

	.am-circle {
		border-radius: 50%
	}

	.am-cf:before,
	.am-cf:after {
		content: " ";
		display: table
	}

	.am-cf:after {
		clear: both
	}

	.am-fl {
		float: left
	}

	.am-fr {
		float: right
	}

	.am-nbfc {
		overflow: hidden
	}

	.am-center {
		display: block;
		margin-left: auto;
		margin-right: auto
	}

	.am-block {
		display: block !important
	}

	.am-inline {
		display: inline !important
	}

	.am-inline-block {
		display: inline-block !important
	}

	.am-hide {
		display: none !important;
		visibility: hidden !important
	}

	.am-vertical-align {
		font-size: 0
	}

	.am-vertical-align:before {
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle
	}

	.am-vertical-align-middle,
	.am-vertical-align-bottom {
		display: inline-block;
		font-size: 1.6rem;
		max-width: 100%
	}

	.am-vertical-align-middle {
		vertical-align: middle
	}

	.am-vertical-align-bottom {
		vertical-align: bottom
	}

	.am-responsive-width {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		max-width: 100%;
		height: auto
	}

	.am-margin {
		margin: 1.6rem
	}

	.am-margin-xs {
		margin: .5rem
	}

	.am-margin-sm {
		margin: 1rem
	}

	.am-margin-lg {
		margin: 2.4rem
	}

	.am-margin-xl {
		margin: 3.2rem
	}

	.am-margin-horizontal {
		margin-left: 1.6rem;
		margin-right: 1.6rem
	}

	.am-margin-horizontal-xs {
		margin-left: .5rem;
		margin-right: .5rem
	}

	.am-margin-horizontal-sm {
		margin-left: 1rem;
		margin-right: 1rem
	}

	.am-margin-horizontal-lg {
		margin-left: 2.4rem;
		margin-right: 2.4rem
	}

	.am-margin-horizontal-xl {
		margin-left: 3.2rem;
		margin-right: 3.2rem
	}

	.am-margin-vertical {
		margin-top: 1.6rem;
		margin-bottom: 1.6rem
	}

	.am-margin-vertical-xs {
		margin-top: .5rem;
		margin-bottom: .5rem
	}

	.am-margin-vertical-sm {
		margin-top: 1rem;
		margin-bottom: 1rem
	}

	.am-margin-vertical-lg {
		margin-top: 2.4rem;
		margin-bottom: 2.4rem
	}

	.am-margin-vertical-xl {
		margin-top: 3.2rem;
		margin-bottom: 3.2rem
	}

	.am-margin-top {
		margin-top: 1.6rem
	}

	.am-margin-top-xs {
		margin-top: .5rem
	}

	.am-margin-top-sm {
		margin-top: 1rem
	}

	.am-margin-top-lg {
		margin-top: 2.4rem
	}

	.am-margin-top-xl {
		margin-top: 3.2rem
	}

	.am-margin-bottom {
		margin-bottom: 1.6rem
	}

	.am-margin-bottom-xs {
		margin-bottom: .5rem
	}

	.am-margin-bottom-sm {
		margin-bottom: 1rem
	}

	.am-margin-bottom-lg {
		margin-bottom: 2.4rem
	}

	.am-margin-bottom-xl {
		margin-bottom: 3.2rem
	}

	.am-margin-left {
		margin-left: 1.6rem
	}

	.am-margin-left-xs {
		margin-left: .5rem
	}

	.am-margin-left-sm {
		margin-left: 1rem
	}

	.am-margin-left-lg {
		margin-left: 2.4rem
	}

	.am-margin-left-xl {
		margin-left: 3.2rem
	}

	.am-margin-right {
		margin-right: 1.6rem
	}

	.am-margin-right-xs {
		margin-right: .5rem
	}

	.am-margin-right-sm {
		margin-right: 1rem
	}

	.am-margin-right-lg {
		margin-right: 2.4rem
	}

	.am-margin-right-xl {
		margin-right: 3.2rem
	}

	.am-padding {
		padding: 1.6rem
	}

	.am-padding-xs {
		padding: .5rem
	}

	.am-padding-sm {
		padding: 1rem
	}

	.am-padding-lg {
		padding: 2.4rem
	}

	.am-padding-xl {
		padding: 3.2rem
	}

	.am-padding-horizontal {
		padding-left: 1.6rem;
		padding-right: 1.6rem
	}

	.am-padding-horizontal-xs {
		padding-left: .5rem;
		padding-right: .5rem
	}

	.am-padding-horizontal-sm {
		padding-left: 1rem;
		padding-right: 1rem
	}

	.am-padding-horizontal-lg {
		padding-left: 2.4rem;
		padding-right: 2.4rem
	}

	.am-padding-horizontal-xl {
		padding-left: 3.2rem;
		padding-right: 3.2rem
	}

	.am-padding-vertical {
		padding-top: 1.6rem;
		padding-bottom: 1.6rem
	}

	.am-padding-vertical-xs {
		padding-top: .5rem;
		padding-bottom: .5rem
	}

	.am-padding-vertical-sm {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.am-padding-vertical-lg {
		padding-top: 2.4rem;
		padding-bottom: 2.4rem
	}

	.am-padding-vertical-xl {
		padding-top: 3.2rem;
		padding-bottom: 3.2rem
	}

	.am-padding-top {
		padding-top: 1.6rem
	}

	.am-padding-top-xs {
		padding-top: .5rem
	}

	.am-padding-top-sm {
		padding-top: 1rem
	}

	.am-padding-top-lg {
		padding-top: 2.4rem
	}

	.am-padding-top-xl {
		padding-top: 3.2rem
	}

	.am-padding-bottom {
		padding-bottom: 1.6rem
	}

	.am-padding-bottom-xs {
		padding-bottom: .5rem
	}

	.am-padding-bottom-sm {
		padding-bottom: 1rem
	}

	.am-padding-bottom-lg {
		padding-bottom: 2.4rem
	}

	.am-padding-bottom-xl {
		padding-bottom: 3.2rem
	}

	.am-padding-left {
		padding-left: 1.6rem
	}

	.am-padding-left-xs {
		padding-left: .5rem
	}

	.am-padding-left-sm {
		padding-left: 1rem
	}

	.am-padding-left-lg {
		padding-left: 2.4rem
	}

	.am-padding-left-xl {
		padding-left: 3.2rem
	}

	.am-padding-right {
		padding-right: 1.6rem
	}

	.am-padding-right-xs {
		padding-right: .5rem
	}

	.am-padding-right-sm {
		padding-right: 1rem
	}

	.am-padding-right-lg {
		padding-right: 2.4rem
	}

	.am-padding-right-xl {
		padding-right: 3.2rem
	}

	@media only screen {

		.am-show-sm-only,
		.am-show-sm-up,
		.am-show-sm,
		.am-show-sm-down,
		.am-hide-md-only,
		.am-hide-md-up,
		.am-hide-md,
		.am-show-md-down,
		.am-hide-lg-only,
		.am-hide-lg-up,
		.am-hide-lg,
		.am-show-lg-down {
			display: inherit !important
		}

		.am-hide-sm-only,
		.am-hide-sm-up,
		.am-hide-sm,
		.am-hide-sm-down,
		.am-show-md-only,
		.am-show-md-up,
		.am-show-md,
		.am-hide-md-down,
		.am-show-lg-only,
		.am-show-lg-up,
		.am-show-lg,
		.am-hide-lg-down {
			display: none !important
		}
	}

	@media only screen and (min-width:641px) {

		.am-hide-sm-only,
		.am-show-sm-up,
		.am-hide-sm,
		.am-hide-sm-down,
		.am-show-md-only,
		.am-show-md-up,
		.am-show-md,
		.am-show-md-down,
		.am-hide-lg-only,
		.am-hide-lg-up,
		.am-hide-lg,
		.am-show-lg-down {
			display: inherit !important
		}

		.am-show-sm-only,
		.am-hide-sm-up,
		.am-show-sm,
		.am-show-sm-down,
		.am-hide-md-only,
		.am-hide-md-up,
		.am-hide-md,
		.am-hide-md-down,
		.am-show-lg-only,
		.am-show-lg-up,
		.am-show-lg,
		.am-hide-lg-down {
			display: none !important
		}
	}

	@media only screen and (min-width:1025px) {

		.am-hide-sm-only,
		.am-show-sm-up,
		.am-hide-sm,
		.am-hide-sm-down,
		.am-hide-md-only,
		.am-show-md-up,
		.am-hide-md,
		.am-hide-md-down,
		.am-show-lg-only,
		.am-show-lg-up,
		.am-show-lg,
		.am-show-lg-down {
			display: inherit !important
		}

		.am-show-sm-only,
		.am-hide-sm-up,
		.am-show-sm,
		.am-show-sm-down,
		.am-show-md-only,
		.am-hide-md-up,
		.am-show-md,
		.am-show-md-down,
		.am-hide-lg-only,
		.am-hide-lg-up,
		.am-hide-lg,
		.am-hide-lg-down {
			display: none !important
		}
	}

	@media only screen and (orientation:landscape) {

		.am-show-landscape,
		.am-hide-portrait {
			display: inherit !important
		}

		.am-hide-landscape,
		.am-show-portrait {
			display: none !important
		}
	}

	@media only screen and (orientation:portrait) {

		.am-show-portrait,
		.am-hide-landscape {
			display: inherit !important
		}

		.am-hide-portrait,
		.am-show-landscape {
			display: none !important
		}
	}

	.am-sans-serif {
		font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif
	}

	.am-serif {
		font-family: Georgia, "Times New Roman", Times, SimSun, FontAwesome, serif
	}

	.am-kai {
		font-family: Georgia, "Times New Roman", Times, Kai, "Kaiti SC", KaiTi, BiauKai, FontAwesome, serif
	}

	.am-monospace {
		font-family: Monaco, Menlo, Consolas, "Courier New", FontAwesome, monospace
	}

	.am-text-primary {
		color: #0e90d2
	}

	.am-text-secondary {
		color: #3bb4f2
	}

	.am-text-success {
		color: #5eb95e
	}

	.am-text-warning {
		color: #f37b1d
	}

	.am-text-danger {
		color: #dd514c
	}

	.am-link-muted {
		color: #666
	}

	.am-link-muted a {
		color: #666
	}

	.am-link-muted:hover,
	.am-link-muted a:hover {
		color: #555
	}

	.am-text-default {
		font-size: 1.6rem
	}

	.am-text-xs {
		font-size: 1.2rem
	}

	.am-text-sm {
		font-size: 1.4rem
	}

	.am-text-lg {
		font-size: 1.8rem
	}

	.am-text-xl {
		font-size: 2.4rem
	}

	.am-text-xxl {
		font-size: 3.2rem
	}

	.am-text-xxxl {
		font-size: 4.2rem
	}

	.am-ellipsis,
	.am-text-truncate {
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-text-break {
		word-wrap: break-word;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto
	}

	.am-text-nowrap {
		white-space: nowrap
	}

	[class*=am-align-] {
		margin-bottom: 1rem
	}

	.am-align-left {
		margin-right: 1rem;
		float: left
	}

	.am-align-right {
		margin-left: 1rem;
		float: right
	}

	.am-sr-only {
		position: absolute;
		width: 1px;
		height: 1px;
		margin: -1px;
		padding: 0;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		border: 0
	}

	.am-text-ir {
		font: 0/0 a;
		color: transparent;
		text-shadow: none;
		background-color: transparent;
		border: 0
	}

	@media only screen {
		.am-text-left {
			text-align: left !important
		}

		.am-text-right {
			text-align: right !important
		}

		.am-text-center {
			text-align: center !important
		}

		.am-text-justify {
			text-align: justify !important
		}
	}

	@media only screen and (max-width:640px) {
		.am-sm-only-text-left {
			text-align: left !important
		}

		.am-sm-only-text-right {
			text-align: right !important
		}

		.am-sm-only-text-center {
			text-align: center !important
		}

		.am-sm-only-text-justify {
			text-align: justify !important
		}
	}

	@media only screen and (min-width:641px) and (max-width:1024px) {
		.am-md-only-text-left {
			text-align: left !important
		}

		.am-md-only-text-right {
			text-align: right !important
		}

		.am-md-only-text-center {
			text-align: center !important
		}

		.am-md-only-text-justify {
			text-align: justify !important
		}
	}

	@media only screen and (min-width:641px) {
		.am-md-text-left {
			text-align: left !important
		}

		.am-md-text-right {
			text-align: right !important
		}

		.am-md-text-center {
			text-align: center !important
		}

		.am-md-text-justify {
			text-align: justify !important
		}
	}

	@media only screen and (min-width:1025px) {
		.am-lg-text-left {
			text-align: left !important
		}

		.am-lg-text-right {
			text-align: right !important
		}

		.am-lg-text-center {
			text-align: center !important
		}

		.am-lg-text-justify {
			text-align: justify !important
		}
	}

	.am-text-top {
		vertical-align: top !important
	}

	.am-text-middle {
		vertical-align: middle !important
	}

	.am-text-bottom {
		vertical-align: bottom !important
	}

	.am-angle {
		position: absolute
	}

	.am-angle:before,
	.am-angle:after {
		position: absolute;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border: 8px dashed transparent;
		z-index: 1
	}

	.am-angle-up {
		top: 0
	}

	.am-angle-up:before,
	.am-angle-up:after {
		border-bottom-style: solid;
		border-width: 0 8px 8px
	}

	.am-angle-up:before {
		border-bottom-color: #ddd;
		bottom: 0
	}

	.am-angle-up:after {
		border-bottom-color: #fff;
		bottom: -1px
	}

	.am-angle-down {
		bottom: -9px
	}

	.am-angle-down:before,
	.am-angle-down:after {
		border-top-style: solid;
		border-width: 8px 8px 0
	}

	.am-angle-down:before {
		border-top-color: #ddd;
		bottom: 0
	}

	.am-angle-down:after {
		border-top-color: #fff;
		bottom: 1px
	}

	.am-angle-left {
		left: -9px
	}

	.am-angle-left:before,
	.am-angle-left:after {
		border-right-style: solid;
		border-width: 8px 8px 8px 0
	}

	.am-angle-left:before {
		border-right-color: #ddd;
		left: 0
	}

	.am-angle-left:after {
		border-right-color: #fff;
		left: 1px
	}

	.am-angle-right {
		right: 0
	}

	.am-angle-right:before,
	.am-angle-right:after {
		border-left-style: solid;
		border-width: 8px 0 8px 8px
	}

	.am-angle-right:before {
		border-left-color: #ddd;
		left: 0
	}

	.am-angle-right:after {
		border-left-color: #fff;
		left: -1px
	}

	.am-alert {
		margin-bottom: 15px;
		padding: 10px;
		background: #0e90d2;
		color: #fff;
		border: 1px solid #0c7cb5;
		border-radius: 0
	}

	.am-alert a {
		color: #fff
	}

	.am-alert h1,
	.am-alert h2,
	.am-alert h3,
	.am-alert h4,
	.am-alert h5,
	.am-alert h6 {
		color: inherit
	}

	.am-alert .am-close {
		opacity: .4
	}

	.am-alert .am-close:hover {
		opacity: .6
	}

	*+.am-alert {
		margin-top: 15px
	}

	.am-alert>:last-child {
		margin-bottom: 0
	}

	.am-alert>.am-close:first-child {
		float: right;
		height: auto;
		margin: -3px -5px auto auto
	}

	.am-alert>.am-close:first-child+* {
		margin-top: 0
	}

	.am-alert-secondary {
		background-color: #eee;
		border-color: #dfdfdf;
		color: #555
	}

	.am-alert-success {
		background-color: #5eb95e;
		border-color: #4bad4b;
		color: #fff
	}

	.am-alert-warning {
		background-color: #f37b1d;
		border-color: #e56c0c;
		color: #fff
	}

	.am-alert-danger {
		background-color: #dd514c;
		border-color: #d83832;
		color: #fff
	}

	.am-dropdown {
		position: relative;
		display: inline-block
	}

	.am-dropdown-toggle:focus {
		outline: 0
	}

	.am-dropdown-content {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1020;
		display: none;
		float: left;
		min-width: 160px;
		padding: 15px;
		margin: 9px 0 0;
		text-align: left;
		line-height: 1.6;
		background-color: #fff;
		border: 1px solid #ddd;
		border-radius: 0;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		-webkit-animation-duration: .15s;
		animation-duration: .15s
	}

	.am-dropdown-content:before,
	.am-dropdown-content:after {
		position: absolute;
		display: block;
		content: "";
		width: 0;
		height: 0;
		border: 8px dashed transparent;
		z-index: 1
	}

	.am-dropdown-content:before,
	.am-dropdown-content:after {
		border-bottom-style: solid;
		border-width: 0 8px 8px
	}

	.am-dropdown-content:before {
		border-bottom-color: #ddd;
		bottom: 0
	}

	.am-dropdown-content:after {
		border-bottom-color: #fff;
		bottom: -1px
	}

	.am-dropdown-content:before,
	.am-dropdown-content:after {
		left: 10px;
		top: -8px;
		pointer-events: none
	}

	.am-dropdown-content:after {
		top: -7px
	}

	.am-active>.am-dropdown-content {
		display: block
	}

	.am-dropdown-content :first-child {
		margin-top: 0
	}

	.am-dropdown-up .am-dropdown-content {
		top: auto;
		bottom: 100%;
		margin: 0 0 9px
	}

	.am-dropdown-up .am-dropdown-content:before,
	.am-dropdown-up .am-dropdown-content:after {
		border-bottom: none;
		border-top: 8px solid #ddd;
		top: auto;
		bottom: -8px
	}

	.am-dropdown-up .am-dropdown-content:after {
		bottom: -7px;
		border-top-color: #fff
	}

	.am-dropdown-flip .am-dropdown-content {
		left: auto;
		right: 0
	}

	.am-dropdown-flip .am-dropdown-content:before,
	.am-dropdown-flip .am-dropdown-content:after {
		left: auto;
		right: 10px
	}

	ul.am-dropdown-content {
		list-style: none;
		padding: 5px 0
	}

	ul.am-dropdown-content.am-fr {
		right: 0;
		left: auto
	}

	ul.am-dropdown-content .am-divider {
		height: 1px;
		margin: 0 0;
		overflow: hidden;
		background-color: #e5e5e5
	}

	ul.am-dropdown-content>li>a {
		display: block;
		padding: 6px 20px;
		clear: both;
		font-weight: 400;
		color: #333;
		white-space: nowrap
	}

	ul.am-dropdown-content>li>a:hover,
	ul.am-dropdown-content>li>a:focus {
		text-decoration: none;
		color: #262626;
		background-color: #f5f5f5
	}

	ul.am-dropdown-content>.am-active>a,
	ul.am-dropdown-content>.am-active>a:hover,
	ul.am-dropdown-content>.am-active>a:focus {
		color: #fff;
		text-decoration: none;
		outline: 0;
		background-color: #0e90d2
	}

	ul.am-dropdown-content>.am-disabled>a,
	ul.am-dropdown-content>.am-disabled>a:hover,
	ul.am-dropdown-content>.am-disabled>a:focus {
		color: #999
	}

	ul.am-dropdown-content>.am-disabled>a:hover,
	ul.am-dropdown-content>.am-disabled>a:focus {
		text-decoration: none;
		background-color: transparent;
		background-image: none;
		filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
		cursor: not-allowed
	}

	.am-dropdown-header {
		display: block;
		padding: 6px 20px;
		font-size: 1.2rem;
		color: #999
	}

	.am-fr>.am-dropdown-content {
		right: 0;
		left: auto
	}

	.am-fr>.am-dropdown-content:before {
		right: 10px;
		left: auto
	}

	.am-dropdown-animation {
		-webkit-animation: am-dropdown-animation .15s ease-out;
		animation: am-dropdown-animation .15s ease-out
	}

	@-webkit-keyframes am-dropdown-animation {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}

		100% {
			opacity: 0;
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px)
		}
	}

	@keyframes am-dropdown-animation {
		0% {
			opacity: 1;
			-webkit-transform: translateY(0);
			transform: translateY(0)
		}

		100% {
			opacity: 0;
			-webkit-transform: translateY(-10px);
			transform: translateY(-10px)
		}
	}

	.am-slider a:hover,
	.am-slider a:focus {
		outline: 0
	}

	.am-slides,
	.am-control-nav,
	.am-direction-nav {
		margin: 0;
		padding: 0;
		list-style: none
	}

	.am-slider {
		margin: 0;
		padding: 0
	}

	.am-slider .am-slides:before,
	.am-slider .am-slides:after {
		content: " ";
		display: table
	}

	.am-slider .am-slides:after {
		clear: both
	}

	.am-slider .am-slides>li {
		display: none;
		-webkit-backface-visibility: hidden;
		position: relative
	}

	.no-js .am-slider .am-slides>li:first-child {
		display: block
	}

	.am-slider .am-slides img {
		width: 100%;
		display: block
	}

	.am-pauseplay span {
		text-transform: capitalize
	}

	.am-slider {
		position: relative
	}

	.am-viewport {
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.am-slider-carousel li {
		margin-right: 5px
	}

	.am-control-nav {
		position: absolute
	}

	.am-control-nav li {
		display: inline-block
	}

	.am-control-thumbs {
		position: static;
		overflow: hidden
	}

	.am-control-thumbs img {
		-webkit-transition: opacity .1s;
		transition: opacity .1s
	}

	.am-slider-default {
		margin: 0 0 20px;
		background-color: #fff;
		border-radius: 2px;
		-webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .15);
		box-shadow: 0 0 2px rgba(0, 0, 0, .15)
	}

	.am-slider-default .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-default .am-viewport {
		max-height: 300px
	}

	.am-slider-default .carousel li {
		margin-right: 5px
	}

	.am-slider-default .am-direction-nav a {
		position: absolute;
		top: 50%;
		z-index: 10;
		display: block;
		width: 36px;
		height: 24px;
		margin: -12px 0 0;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: rgba(0, 0, 0, .65);
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-default .am-direction-nav a:before {
		color: #333;
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f137";
		font-size: 24px
	}

	.am-slider-default .am-direction-nav a.am-next:before {
		content: "\f138"
	}

	.am-slider-default .am-direction-nav .am-prev {
		left: 10px
	}

	.am-slider-default .am-direction-nav .am-next {
		right: 10px;
		text-align: right
	}

	.am-slider-default .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-default:hover .am-prev {
		opacity: .7;
		left: 10px
	}

	.am-slider-default:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-default:hover .am-next {
		opacity: .7;
		right: 10px
	}

	.am-slider-default:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-default .am-pauseplay a {
		display: block;
		width: 20px;
		height: 20px;
		position: absolute;
		bottom: 5px;
		left: 10px;
		opacity: .8;
		z-index: 10;
		overflow: hidden;
		cursor: pointer;
		color: #000
	}

	.am-slider-default .am-pauseplay a::before {
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		font-size: 20px;
		display: inline-block;
		content: "\f04c"
	}

	.am-slider-default .am-pauseplay a:hover {
		opacity: 1
	}

	.am-slider-default .am-pauseplay a.am-play::before {
		content: "\f04b"
	}

	.am-slider-default .am-slider-desc {
		background-color: rgba(0, 0, 0, .7);
		position: absolute;
		bottom: 0;
		padding: 10px;
		width: 100%;
		color: #fff
	}

	.am-slider-default .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: -15px;
		text-align: center
	}

	.am-slider-default .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-default .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: #666;
		background-color: rgba(0, 0, 0, .5);
		line-height: 0;
		font-size: 0;
		cursor: pointer;
		text-indent: -9999px;
		border-radius: 20px;
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
	}

	.am-slider-default .am-control-nav li a:hover {
		background-color: #333;
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-default .am-control-nav li a.am-active {
		background-color: #000;
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-default .am-control-thumbs {
		margin: 5px 0 0;
		position: static;
		overflow: hidden
	}

	.am-slider-default .am-control-thumbs li {
		width: 25%;
		float: left;
		margin: 0
	}

	.am-slider-default .am-control-thumbs img {
		width: 100%;
		display: block;
		opacity: .7;
		cursor: pointer
	}

	.am-slider-default .am-control-thumbs img:hover {
		opacity: 1
	}

	.am-slider-default .am-control-thumbs .am-active {
		opacity: 1;
		cursor: default
	}

	.am-modal {
		width: 270px;
		position: fixed;
		display: none;
		z-index: 1110;
		left: 50%;
		margin-left: -135px;
		margin-top: 0;
		top: 50%;
		text-align: center;
		border-radius: 0;
		opacity: 0;
		-webkit-transform: translate3d(0, 0, 0) scale(1.185);
		transform: translate3d(0, 0, 0) scale(1.185);
		-webkit-transition-property: -webkit-transform, opacity;
		transition-property: transform, opacity
	}

	.am-modal:focus {
		outline: 0
	}

	.am-modal.am-modal-active {
		opacity: 1;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1)
	}

	.am-modal.am-modal-out {
		opacity: 0;
		z-index: 1109;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
		-webkit-transform: translate3d(0, 0, 0) scale(0.815);
		transform: translate3d(0, 0, 0) scale(0.815)
	}

	@media only screen and (min-width:641px) {
		.am-modal {
			width: 540px;
			margin-left: -270px
		}
	}

	.am-modal-dialog {
		border-radius: 0;
		background: #f8f8f8
	}

	.am-modal-hd {
		padding: 15px 10px 5px 10px;
		font-size: 1.8rem;
		font-weight: 500
	}

	.am-modal-hd+.am-modal-bd {
		padding-top: 0
	}

	.am-modal-hd .am-close {
		position: absolute;
		top: 4px;
		right: 4px
	}

	.am-modal-bd {
		padding: 15px 10px;
		text-align: center;
		border-bottom: 1px solid #dedede;
		border-radius: 2px 2px 0 0
	}

	.am-modal-bd+.am-modal-bd {
		margin-top: 5px
	}

	.am-modal-prompt-input {
		display: block;
		margin: 5px auto 0 auto;
		border-radius: 0;
		padding: 5px;
		line-height: 1.8rem;
		width: 80%;
		border: 1px solid #dedede;
		-webkit-appearance: none;
		-moz-appearance: none;
		-ms-appearance: none;
		appearance: none
	}

	.am-modal-prompt-input:focus {
		outline: 0;
		border-color: #d6d6d6
	}

	.am-modal-footer {
		height: 44px;
		overflow: hidden;
		display: table;
		width: 100%;
		border-collapse: collapse
	}

	.am-modal-btn {
		display: table-cell !important;
		padding: 0 5px;
		height: 44px;
		-webkit-box-sizing: border-box !important;
		box-sizing: border-box !important;
		font-size: 1.6rem;
		line-height: 44px;
		text-align: center;
		color: #0e90d2;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		cursor: pointer;
		border-right: 1px solid #dedede
	}

	.am-modal-btn:first-child {
		border-radius: 0
	}

	.am-modal-btn:last-child {
		border-right: none;
		border-radius: 0
	}

	.am-modal-btn:first-child:last-child {
		border-radius: 0
	}

	.am-modal-btn.am-modal-btn-bold {
		font-weight: 500
	}

	.am-modal-btn:active {
		background: #d4d4d4
	}

	.am-modal-btn+.am-modal-btn {
		border-left: 1px solid #dedede
	}

	.am-modal-no-btn .am-modal-dialog {
		border-radius: 0;
		border-bottom: none
	}

	.am-modal-no-btn .am-modal-bd {
		border-bottom: none
	}

	.am-modal-no-btn .am-modal-footer {
		display: none
	}

	.am-modal-loading .am-modal-bd {
		border-bottom: none
	}

	.am-modal-loading .am-icon-spin {
		display: inline-block;
		font-size: 2.4rem
	}

	.am-modal-loading .am-modal-footer {
		display: none
	}

	.am-modal-actions {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 1110;
		width: 100%;
		text-align: center;
		border-radius: 0;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		-webkit-transition: -webkit-transform 300ms;
		transition: transform 300ms
	}

	.am-modal-actions.am-modal-active {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}

	.am-modal-actions.am-modal-out {
		z-index: 1109;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%)
	}

	.am-modal-actions-group {
		margin: 10px
	}

	.am-modal-actions-group .am-list {
		margin: 0;
		border-radius: 0
	}

	.am-modal-actions-group .am-list>li {
		margin-bottom: 0;
		border-bottom: none;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .015);
		box-shadow: inset 0 1px 0 rgba(0, 0, 0, .015)
	}

	.am-modal-actions-group .am-list>li>a {
		padding: 1rem;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-modal-actions-group .am-list>li:first-child {
		border-top: none;
		border-top-right-radius: 0;
		border-top-left-radius: 0
	}

	.am-modal-actions-group .am-list>li:last-child {
		border-bottom: none;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0
	}

	.am-modal-actions-header {
		padding: 1rem;
		color: #999;
		font-size: 1.4rem
	}

	.am-modal-actions-danger {
		color: #dd514c
	}

	.am-modal-actions-danger a {
		color: inherit
	}

	.am-popup {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1110;
		background: #fff;
		display: none;
		overflow: hidden;
		-webkit-transition-property: -webkit-transform;
		transition-property: transform;
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%)
	}

	.am-popup.am-modal-active,
	.am-popup.am-modal-out {
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms
	}

	.am-popup.am-modal-active {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}

	.am-popup.am-modal-out {
		-webkit-transform: translateY(100%);
		-ms-transform: translateY(100%);
		transform: translateY(100%)
	}

	@media all and (min-width:630px) and (min-height:630px) {
		.am-popup {
			width: 630px;
			height: 630px;
			left: 50%;
			top: 50%;
			margin-left: -315px;
			margin-top: -315px;
			-webkit-transform: translateY(1024px);
			-ms-transform: translateY(1024px);
			transform: translateY(1024px)
		}

		.am-popup.am-modal-active {
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0)
		}

		.am-popup.am-modal-out {
			-webkit-transform: translateY(1024px);
			-ms-transform: translateY(1024px);
			transform: translateY(1024px)
		}
	}

	.am-popup-inner {
		padding-top: 44px;
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch
	}

	.am-popup-hd {
		position: fixed;
		top: 0;
		width: 100%;
		height: 43px;
		border-bottom: 1px solid #dedede;
		background-color: #fff
	}

	.am-popup-hd .am-popup-title {
		font-size: 1.8rem;
		font-weight: 700;
		line-height: 43px;
		text-align: center;
		margin: 0 30px;
		color: #333;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-popup-hd .am-close {
		position: absolute;
		right: 10px;
		top: 8px;
		cursor: pointer;
		-webkit-transition: all .3s;
		transition: all .3s;
		color: #999
	}

	.am-popup-hd .am-close:hover {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
		color: #555
	}

	.am-popup-bd {
		padding: 15px;
		background: #f8f8f8;
		color: #555
	}

	.am-offcanvas {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1090;
		background: rgba(0, 0, 0, .15)
	}

	.am-offcanvas.am-active {
		display: block
	}

	.am-offcanvas-page {
		position: fixed;
		-webkit-transition: margin-left .3s ease-in-out;
		transition: margin-left .3s ease-in-out
	}

	.am-offcanvas-bar {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 1091;
		width: 270px;
		max-width: 100%;
		background: #333;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: -webkit-transform .3s ease-in-out;
		transition: transform .3s ease-in-out;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	.am-offcanvas-bar:after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		width: 1px;
		background: #262626
	}

	.am-offcanvas.am-active .am-offcanvas-bar.am-offcanvas-bar-active {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	.am-offcanvas-bar-flip {
		left: auto;
		right: 0;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%)
	}

	.am-offcanvas-bar-flip:after {
		right: auto;
		left: 0
	}

	.am-offcanvas-content {
		padding: 15px;
		color: #999
	}

	.am-offcanvas-content a {
		color: #ccc
	}

	.am-popover {
		position: absolute;
		top: 0;
		left: 0;
		margin: 0;
		border-radius: 0;
		background: #333;
		color: #fff;
		border: 1px solid #333;
		display: none;
		font-size: 1.6rem;
		z-index: 1030;
		opacity: 0;
		-webkit-transition: opacity 300ms;
		transition: opacity 300ms
	}

	.am-popover.am-active {
		display: block !important;
		opacity: 1
	}

	.am-popover-inner {
		position: relative;
		background: #333;
		padding: 8px;
		z-index: 110;
		overflow: auto;
		-webkit-overflow-scrolling: touch
	}

	.am-popover-caret {
		position: absolute;
		left: 5px;
		top: 0;
		z-index: 100;
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-bottom: 8px solid #333;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-top: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
		overflow: hidden
	}

	.am-popover-top .am-popover-caret {
		top: auto;
		bottom: -8px;
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg)
	}

	.am-popover-bottom .am-popover-caret {
		top: -8px
	}

	.am-popover-left .am-popover-caret {
		top: auto;
		left: auto;
		right: -12px;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-popover-right .am-popover-caret {
		right: auto;
		left: -12px;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}

	.am-popover-sm {
		font-size: 1.4rem
	}

	.am-popover-sm .am-popover-inner {
		padding: 5px
	}

	.am-popover-lg {
		font-size: 1.8rem
	}

	.am-popover-secondary {
		border-color: #0e90d2
	}

	.am-popover-secondary .am-popover-inner {
		background: #0e90d2
	}

	.am-popover-secondary .am-popover-caret {
		border-bottom-color: #0e90d2
	}

	.am-popover-secondary {
		border-color: #3bb4f2
	}

	.am-popover-secondary .am-popover-inner {
		background: #3bb4f2
	}

	.am-popover-secondary .am-popover-caret {
		border-bottom-color: #3bb4f2
	}

	.am-popover-success {
		border-color: #5eb95e
	}

	.am-popover-success .am-popover-inner {
		background: #5eb95e
	}

	.am-popover-success .am-popover-caret {
		border-bottom-color: #5eb95e
	}

	.am-popover-warning {
		border-color: #f37b1d
	}

	.am-popover-warning .am-popover-inner {
		background: #f37b1d
	}

	.am-popover-warning .am-popover-caret {
		border-bottom-color: #f37b1d
	}

	.am-popover-danger {
		border-color: #dd514c
	}

	.am-popover-danger .am-popover-inner {
		background: #dd514c
	}

	.am-popover-danger .am-popover-caret {
		border-bottom-color: #dd514c
	}

	#nprogress {
		pointer-events: none
	}

	#nprogress .nprogress-bar {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 2000;
		width: 100%;
		height: 2px;
		background: #5eb95e
	}

	#nprogress .nprogress-peg {
		display: block;
		position: absolute;
		right: 0;
		width: 100px;
		height: 100%;
		-webkit-box-shadow: 0 0 10px #5eb95e, 0 0 5px #5eb95e;
		box-shadow: 0 0 10px #5eb95e, 0 0 5px #5eb95e;
		opacity: 1;
		-webkit-transform: rotate(3deg) translate(0px, -4px);
		-ms-transform: rotate(3deg) translate(0px, -4px);
		transform: rotate(3deg) translate(0px, -4px)
	}

	#nprogress .nprogress-spinner {
		position: fixed;
		top: 15px;
		right: 15px;
		z-index: 2000;
		display: block
	}

	#nprogress .nprogress-spinner-icon {
		width: 18px;
		height: 18px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		border: solid 2px transparent;
		border-top-color: #5eb95e;
		border-left-color: #5eb95e;
		border-radius: 50%;
		-webkit-animation: nprogress-spinner 400ms linear infinite;
		animation: nprogress-spinner 400ms linear infinite
	}

	@-webkit-keyframes nprogress-spinner {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg)
		}
	}

	@keyframes nprogress-spinner {
		0% {
			-webkit-transform: rotate(0deg);
			transform: rotate(0deg)
		}

		100% {
			-webkit-transform: rotate(360deg);
			transform: rotate(360deg)
		}
	}

	.am-tabs-bd {
		position: relative;
		overflow: hidden;
		border: 1px solid #ddd;
		border-top: none;
		z-index: 100;
		-webkit-transition: height .3s;
		transition: height .3s
	}

	.am-tabs-bd .am-tab-panel {
		position: absolute;
		top: 0;
		z-index: 99;
		float: left;
		width: 100%;
		padding: 10px 10px 15px;
		visibility: hidden;
		-webkit-transition: -webkit-transform .3s;
		transition: transform .3s;
		-webkit-transform: translateX(-100%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%)
	}

	.am-tabs-bd .am-tab-panel * {
		-webkit-user-drag: none
	}

	.am-tabs-bd .am-tab-panel.am-active {
		position: relative;
		z-index: 100;
		visibility: visible;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	.am-tabs-bd .am-tab-panel.am-active~.am-tab-panel {
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%)
	}

	.am-share {
		font-size: 14px
	}

	.am-share-title {
		padding: 10px 0 0;
		margin: 0 10px;
		font-weight: 400;
		text-align: center;
		color: #555;
		background-color: #f8f8f8;
		border-bottom: 1px solid #fff;
		border-top-right-radius: 2px;
		border-top-left-radius: 2px
	}

	.am-share-title:after {
		content: "";
		display: block;
		width: 100%;
		height: 0;
		margin-top: 10px;
		border-bottom: 1px solid #dfdfdf
	}

	.am-share-sns {
		margin: 0 10px;
		padding-top: 15px;
		background-color: #f8f8f8;
		border-bottom-right-radius: 2px;
		border-bottom-left-radius: 2px
	}

	.am-share-sns li {
		margin-bottom: 15px
	}

	.am-share-sns a {
		display: block;
		color: #555
	}

	.am-share-sns span {
		display: block
	}

	.am-share-sns [class*=am-icon] {
		background-color: #3bb4f2;
		border-radius: 50%;
		width: 36px;
		height: 36px;
		line-height: 36px;
		color: #fff;
		margin-bottom: 5px;
		font-size: 18px
	}

	.am-share-sns .am-icon-weibo {
		background-color: #ea1328
	}

	.am-share-sns .am-icon-qq {
		background-color: #009cda
	}

	.am-share-sns .am-icon-star {
		background-color: #ffc028
	}

	.am-share-sns .am-icon-tencent-weibo {
		background-color: #23ccfe
	}

	.am-share-sns .am-icon-wechat,
	.am-share-sns .am-icon-weixin {
		background-color: #44b549
	}

	.am-share-sns .am-icon-renren {
		background-color: #105ba3
	}

	.am-share-sns .am-icon-comment {
		background-color: #5eb95e
	}

	.am-share-footer {
		margin: 10px
	}

	.am-share-footer .am-btn {
		color: #555
	}

	.am-share-wechat-qr {
		font-size: 14px;
		color: #777
	}

	.am-share-wechat-qr .am-modal-dialog {
		background-color: #fff;
		border: 1px solid #dedede
	}

	.am-share-wechat-qr .am-modal-hd {
		padding-top: 10px;
		text-align: left;
		margin-bottom: 10px
	}

	.am-share-wechat-qr .am-share-wx-qr {
		margin-bottom: 10px
	}

	.am-share-wechat-qr .am-share-wechat-tip {
		text-align: left
	}

	.am-share-wechat-qr .am-share-wechat-tip em {
		color: #dd514c;
		font-weight: 700;
		font-style: normal;
		margin-left: 3px;
		margin-right: 3px
	}

	.am-pureview {
		position: fixed;
		left: 0;
		top: 0;
		bottom: 0;
		right: 0;
		z-index: 1120;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, .95);
		display: none;
		overflow: hidden;
		-webkit-transition: -webkit-transform .3s;
		transition: transform .3s;
		-webkit-transform: translate(0, 100%);
		-ms-transform: translate(0, 100%);
		transform: translate(0, 100%)
	}

	.am-pureview.am-active {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0)
	}

	.am-pureview ul,
	.am-pureview ol {
		list-style: none;
		padding: 0;
		margin: 0;
		width: 100%
	}

	.am-pureview-slider {
		overflow: hidden;
		height: 100%
	}

	.am-pureview-slider li {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		vertical-align: middle;
		-webkit-transition: all .3s linear;
		transition: all .3s linear;
		z-index: 100;
		visibility: hidden
	}

	.am-pureview-slider li.am-pureview-slide-prev {
		-webkit-transform: translate(-100%, 0);
		-ms-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
		z-index: 109
	}

	.am-pureview-slider li.am-pureview-slide-next {
		-webkit-transform: translate(100%, 0);
		-ms-transform: translate(100%, 0);
		transform: translate(100%, 0);
		z-index: 109
	}

	.am-pureview-slider li.am-active {
		position: relative;
		z-index: 110;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
		visibility: visible
	}

	.am-pureview-slider .pinch-zoom-container {
		width: 100%;
		z-index: 1121
	}

	.am-pureview-slider .am-pinch-zoom {
		position: relative;
		width: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center
	}

	.am-pureview-slider .am-pinch-zoom:after {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f110";
		-webkit-animation: icon-spin 2s infinite linear;
		animation: icon-spin 2s infinite linear;
		font-size: 24px;
		line-height: 24px;
		color: #eee;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -12px;
		margin-top: -12px;
		z-index: 1
	}

	.am-pureview-slider img {
		position: relative;
		display: block;
		max-width: 100%;
		max-height: 100%;
		opacity: 0;
		z-index: 200;
		-webkit-user-drag: none;
		-webkit-transition: opacity .2s ease-in;
		transition: opacity .2s ease-in
	}

	.am-pureview-slider img.am-img-loaded {
		opacity: 1
	}

	.am-pureview-direction {
		position: absolute;
		top: 50%;
		width: 100%;
		margin-top: -18px !important;
		z-index: 1122
	}

	.am-touch .am-pureview-direction,
	.am-pureview-only .am-pureview-direction {
		display: none
	}

	.am-pureview-direction li {
		position: absolute;
		width: 36px;
		height: 36px
	}

	.am-pureview-direction a {
		display: block;
		height: 36px;
		border: none;
		color: #ccc;
		opacity: .5;
		cursor: pointer;
		text-align: center;
		z-index: 1125
	}

	.am-pureview-direction a:before {
		content: "\f137";
		line-height: 36px;
		font-size: 24px
	}

	.am-pureview-direction a:hover {
		opacity: 1
	}

	.am-pureview-direction .am-pureview-prev {
		left: 15px
	}

	.am-pureview-direction .am-pureview-next {
		right: 15px
	}

	.am-pureview-direction .am-pureview-next a:before {
		content: "\f138"
	}

	.am-pureview-bar {
		position: absolute;
		bottom: 0;
		height: 45px;
		width: 100%;
		background-color: rgba(0, 0, 0, .35);
		color: #eee;
		line-height: 45px;
		padding: 0 10px;
		font-size: 14px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-pureview-bar .am-pureview-title {
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		margin-left: 6px;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	.am-pureview-bar .am-pureview-total {
		font-size: 10px;
		line-height: 48px
	}

	.am-pureview-actions {
		position: absolute;
		z-index: 1130;
		left: 0;
		right: 0;
		top: 0;
		height: 45px;
		background-color: rgba(0, 0, 0, .35)
	}

	.am-pureview-actions a {
		position: absolute;
		left: 10px;
		color: #ccc;
		display: block;
		width: 45px;
		line-height: 45px;
		text-align: left;
		font-size: 16px
	}

	.am-pureview-actions a:hover {
		color: #fff
	}

	.am-pureview-actions [data-am-toggle=share] {
		left: auto;
		right: 10px
	}

	.am-pureview-bar,
	.am-pureview-actions {
		opacity: 0;
		-webkit-transition: all .15s;
		transition: all .15s;
		z-index: 1130
	}

	.am-pureview-bar-active .am-pureview-bar,
	.am-pureview-bar-active .am-pureview-actions {
		opacity: 1
	}

	.am-pureview-nav {
		position: absolute;
		bottom: 15px;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 1131
	}

	.am-pureview-bar-active .am-pureview-nav {
		display: none
	}

	.am-pureview-nav li {
		display: inline-block;
		background: #ccc;
		background: rgba(255, 255, 255, .5);
		width: 8px;
		height: 8px;
		margin: 0 3px;
		border-radius: 50%;
		text-indent: -9999px;
		overflow: hidden;
		cursor: pointer
	}

	.am-pureview-nav .am-active {
		background: #fff;
		background: rgba(255, 255, 255, .9)
	}

	[data-am-pureview] img {
		cursor: pointer
	}

	.am-pureview-active {
		overflow: hidden
	}

	.ath-viewport * {
		-webkit-box-sizing: border-box;
		box-sizing: border-box
	}

	.ath-viewport {
		position: relative;
		z-index: 2147483641;
		pointer-events: none;
		-webkit-tap-highlight-color: transparent;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-webkit-text-size-adjust: none;
		-ms-text-size-adjust: none;
		text-size-adjust: none
	}

	.ath-modal {
		pointer-events: auto !important;
		background: rgba(0, 0, 0, .6)
	}

	.ath-mandatory {
		background: #000
	}

	.ath-container {
		pointer-events: auto !important;
		position: absolute;
		z-index: 2147483641;
		padding: .7em .6em;
		width: 18em;
		background: #eee;
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
		-webkit-box-shadow: 0 .2em 0 #d1d1d1;
		box-shadow: 0 .2em 0 #d1d1d1;
		font-family: sans-serif;
		font-size: 15px;
		line-height: 1.5em;
		text-align: center
	}

	.ath-ios.ath-phone {
		bottom: 1.8em;
		left: 50%;
		margin-left: -9em
	}

	.ath-ios6.ath-tablet {
		left: 5em;
		top: 1.8em
	}

	.ath-ios7.ath-tablet {
		left: .7em;
		top: 1.8em
	}

	.ath-ios8.ath-tablet {
		right: .4em;
		top: 1.8em
	}

	.ath-android {
		right: 1.5em;
		top: 1.8em
	}

	.ath-container:before {
		content: '';
		position: relative;
		display: block;
		float: right;
		margin: -.7em -.6em 0 .5em;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIQAAACECAMAAABmmnOVAAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAAeHAAAHhwFd+hRDAAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAHVQTFRFAAAAOTk5MzMzOzs7Nzc3QUFBQEBAPz8/Pj4+QUFBQEBAPz8/Pj4+QUFBQEBAPz8/QUFBPj4+Pz8/Pz8/Pj4+Pz8/Pz8/Pz8/Pj4+Pz8/Pj4+Pz8/Pz8/Pz8/Pz8/Pz8/Pj4+Pz8/Pz8/Pz8/Pz8/QEBAPz8/n3QmjwAAACZ0Uk5TAAkKDQ4zODk6OzxBQkNERUusrbG0tba7vL3Excbu8fL19fb3+PgucqJgAAACqklEQVR42sXc23LCIBAGYKy2pgft0WpP2vTA+z9i0+goCZAs7O7P3oWZTL5ZYAh7sca0MXmYG3jM7yfu4/TV1jdow01tX6cdg4UrGoN1FNM3a+GK1nBSzPYGrOJgsPZt1hrerYUrjoa9wjHgFI7B2veZWVk3tpCdWm07H30y8+4AIhedPFj7cW7wioABrggawIqIAaroGbYXzlGCUvQNnc0IUgwaQIoRA0QxagAoCAZ1BcmgrCAaVBVkg6IiwaCmSDIoKRINKopkg4IiwyCuyDIIKzINoopsg6CCYRBTsAxCCqZBRLGo2RcrtkLAwFaIGJgKIQNLIWZgKAQN2QpRg1dKoCmEDVkKcUOGQsGQrFAxJCqUDEkKNUOCQtFAVqgaiAplg69YFDAQFADDqAJiGFGADI1iF1XADAOKvqHSLApHFFBDRAE2BBVwQ0BRwOApfn8LGDxFEcOQAmeIK5CGmAJrCCvQBq8A8r9Zrw08qp6irvAGs/zpIr4XBQxf3nQsyhvwipABrQgbsIqYAamIG3CKnqH+LKDoGXbVwD84zDB4E4AZ4IqgAayIGKCKqMGYS5RiwOArlgUMnuJrWcAAUYwaAAqCQV1BMigriAZVBdmgqEgwqCmSDEqKRIOKItmgoMgwiCv6hkvaa6KKTIOoItsgqGAYxBQsg5CCaRBRsA0CCgEDWyFiYCqEDCyFmIGhEDRkK0QNmQphQ5ZC3JChUDAkK1QMiQolQ5JCzZCguNUzkBV3P4oGokLZQFKoGwgKgGFUATGMKECGQQXMYMxVTAE0RBVQQ0QBNgQVcENI8QwoBo8cUiszWYPz4OVi3bQ9cBQoQ0exblsvTDZwg6PYHNo/tE0XmvVwa4BxWBentgtnL+A8HHPxcnYaaBRoQ6twDY3iEW5oFI8Hwx/QxSE448b+MwAAAABJRU5ErkJggg==);
		background-color: rgba(255, 255, 255, .8);
		-webkit-background-size: 50% 50%;
		background-size: 50%;
		background-repeat: no-repeat;
		background-position: 50%;
		width: 2.7em;
		height: 2.7em;
		text-align: center;
		overflow: hidden;
		color: #a33;
		z-index: 2147483642
	}

	.ath-container.ath-icon:before {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0;
		float: none
	}

	.ath-mandatory .ath-container:before {
		display: none
	}

	.ath-container.ath-android:before {
		float: left;
		margin: -.7em .5em 0 -.6em
	}

	.ath-container.ath-android.ath-icon:before {
		position: absolute;
		right: auto;
		left: 0;
		margin: 0;
		float: none
	}

	.ath-action-icon {
		display: inline-block;
		vertical-align: middle;
		background-position: 50%;
		background-repeat: no-repeat;
		text-indent: -9999em;
		overflow: hidden
	}

	.ath-android .ath-action-icon {
		width: 1.2em;
		height: 1.8em;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAADcBAMAAAAig/QJAAAAA3NCSVQICAjb4U/gAAAACXBIWXMAAFtDAABbQwH5xg68AAAAGXRFWHRTb2Z0d2FyZQB3d3cuaW5rc2NhcGUub3Jnm+48GgAAAB5QTFRFAAAA////cXFxaWlp////ZmZmnJycoaGhpqam////1D9b6wAAAAV0Uk5TAAgJERExZxYzAAAAYklEQVRYw+3WoQ2AUBAE0SsBOiBUQEIDCArA4FFoHBaJxNItFYz/x5+xz282VmwJTdM0rRzbsS1e7Pm9zdgUVn491rkFmqZpSezEjqo/Sos1HoAEjdjgFmiapiWxG7tq/igfnYteFlnOWZEAAAAASUVORK5CYII=);
		-webkit-background-size: auto 100%;
		background-size: auto 100%
	}

	.ath-ios7 .ath-action-icon,
	.ath-ios8 .ath-action-icon {
		width: 1.6em;
		height: 1.6em;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAACtCAYAAAB7l7tOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAABa5AAAWuQBuyxkRwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAZoSURBVHja7d1ZbFRlGIfxzxVwl809goLgghrRoEaNSzQagrsRt8QYgzEG443SOQNSA0QTXHALcY2KMe7EuCB6YbxwiUtwA0VwQRSxqMimUNt5vOg5OEPL9Ew705m2zz95L5rOvOfr+8s3nZ6TOQ2hNyXiyhDxQpjADr3q5+4VyTIhRORCBCHijTCRPg6lZ+3c5hg3qZfdyT0D9/IQ0bQFblIvhnq2d0jdF3d8Edyknhe5O6aOs0PExnZwk3ooBLZxaN0lWcaFiE0pcVsqy+Ohnm0dXq0nYmzJuP8jPypyLSfDySFifYdwk8ow00HWYiZzeojY0Cnc/2uWA60t3FPLiJvU3Q62FpLl2BCxusy4SU1xwNVMhjEhYk2FcJOqd9DVSB3HhYi/KozrTq4S7ui0L8v9ppYJOUPk4LsiUxgVIlalQRl5D4x+oPhjrniuJOQ6ASqZiCNCREMajIPuhOV/wfGziz/uuz9gwtySdvPNQlQiGQ4LGX5LgzB0JixbDdA+8Pd/QnMOrnw+NXAuRNwgSDkzmUNDxMo0AENmwo8xLsCY2Zsv8m8VGKCpGS5/rgTkDNcLUx7cg0PE8jSD3/cOWPI7+fnj6PuLnwBZ1MCnyYObmmH8syUhXydQ53CHhoif0uIuXlWA+ydwzJH3sa7Y825/l7OAd5InNTbBeXNSIzeHDFcJ1ZHUMSRELEsz6L1vh28KcdcCJ4QQQnvAk+ZzCrAz8G7y5E1NMO6p1MhNIcsVgpWSLPuFiCVpBjxwOnyxshXuiUmrNMAhhADsBnyYjzz2yZKQLxMuTW5h3xDxbZrBDpgOn60owF0HnJTfLi1wjLw78FHS7O9GOOOxkpAvFbBYIvYJEYvTDLT/NFhQiLseOHnLlqUAx8h7AB8nTTc0wmmPpkZuDBnOFbKt3MzeIeLrNIPccxp8+ksB7j/AmW21LRU4D/mTfORTH0mNvClkGSdofjIMCBGfpxngrrfB+8ta4Z61tdYdAY6RBwFfbn552ASnPFwCcsRYYUMIoZ7+IWJBmsHtUg/vFeJuBM4u1r6jwDHyYOCr5GBrNsKY2amR/w6TOV3giKlpBtbnVnjz2wLcRuD89tp3BjgPeWFy0FUbYNS9qZEXhkvYrrfv4G1Dlsfbu+T39tJWuBemad9Z4Bh5L2BRcvDV/8DoB9vFXRKyHOAODiEsX06/8c+2fcaq760wv3Dn/gtcnLZ3OYBj5P2BpWl28oh7aHpmQdtv+npdgL7A/FwOJr7a+mV53uJWuJeU0r9cwPFaDwC+SxbTsB4On1XY7/BZsHJdy7eBIwSGqcnAcjm46bWWQe0wBeYuLMDNARNK7V9O4Hi9w4HNf6T9th4Oi5FH3dvydV4WQS//HQz0A97KR574Kjz9WcGgmoGrO9K/3MDxmg8EfkgWt2w1nPMErFhbsOZVwNG9fgfHA+sDvELbaQau6WjvSgDHax6Wv5O3yK/AocoWDmxHYO4Wg8oB13amb6WA4zUf0gbyL8BIRbeO/FIe7o2d7VlJ4HjNI4DkrPjPwAgliw9sO+Bp4KZy9Ks0cLzmkfEFiuEKphtY2T7C2RXA5V6zqUFgI7AR2AhsBBZYYIGNwEZgI3DFk+X1blX1DK4acD2Du928uugmJuWrOoZUDbjlA3Hda14CCyywwF1XF8zhqGoBXzCHowSucE2aV/jx0K4EnjSPkwQWWGCBawS4/7SW2yPUUi1tYFi1gJc2MKzW5tF/WieAB82gFlO1d9HAkFobxqAZAgsscC8FHjiDHHBRjdVOVQTeqdbmMXBG8Vs1FgUeMJ3m0M3T068mDZje6n8yCiywwAILLLDAAgsssMACCyywwAILLLDAAgsssMACCyywwAILLLDAAgsssMACCyywwAILLLDAAgsssMACCyywwAILLLDAAgsssMACCyywwAILLLDAAgsssMACCyywwAILLLDAHc+KtXz88xrYWjWsKe3+0wLXWIAP2rlh61CBBRZYYIGrBXwMcFqR6iuwEdgIbAQ2AhuBBRZYYIEFNgIbgY3ARmCBBRZYYIGNwEZgI7AR2AgssMACG4GNwEZgI7ARWGCBBRZYYCOwEdgIbAQWWGCBBRbYCGwENgIbgY3AAgsssMACG4GNwEZgI7DAHQGup69Vu9UpYKsHlEMQ2BLYEtgS2BLYKrWG3wVWz62A6dERWGAjsKnZ/Af2wMWISv7RmgAAAABJRU5ErkJggg==);
		margin-top: -.3em;
		-webkit-background-size: auto 100%;
		background-size: auto 100%
	}

	.ath-ios6 .ath-action-icon {
		width: 1.8em;
		height: 1.8em;
		background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAAB0CAQAAADAmnOnAAAAAnNCSVQICFXsRgQAAAAJcEhZcwAAWwEAAFsBAXkZiFwAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAGaklEQVR42u3cfUxVZRwH8O8FRERRfNfKt4zM2UzNMszZFPMPW5KWzizJ0JJWitOU3mYs54ZuNRk6zblSaebUnKllSpopaRorJiqmtjRNK4sNEBR5+fbH45ELwrnn5Tnn3gPP7/cv9/7O/eyc5zyvAF6PrlgAFTrRHcQmtFIQekDEYXRRFA3GzP4gCOI39FcaDcQ7g24BEUUYrTz0gIhKvKZE9IAIIhNhSkUPiNiGaOWiB0Tko4eS0QMi/sQQZaMHRJRivNLRAyKqkKZ89IAIYg1aKCDq5l60U0D6WYDeCkg/r2KEAtLPG5iqgPSzBukKKFB+ikgFpJ+56KyA9PMcHjBXYYwjGRmyQMR/GGWmAqVnNV4N4TuIICowPXhA1ZgR0o+Y6Yk1uTyVeD7E26Da3GpsYk0iTwQ3kSS5nbLboAj0wnBMwGwsRhaysRO5yEMe8iJP2bjig+joIlALbhE86xguCWUgXkYmduMMbjrQVhLEWfRzCagldwmelfTZhOmM8ViGXJQ7hFI3iwK906SUieLXgifTFs9DeA/HUOMKjP87LdlhoFb8RvB8ZJHHhxHIxEWXYfzzY0Q4BtSG3wueDyzhxCAFvwSRJuA7zeYXx/CQ4LEy/3sPlqMkBHBEHkN36UBt+YPgWWgapzfWoiJkcERewECpQB2YR5I1nG/6PbUcN0IMR2QJxhkEWsi0gPkjSVYzxRROS6SjLCRxGplYa+QPq2goqjnTFM8wFIQwjpZZCJcDVMmppu6dTNf7OFbzEDoFAKrcx5yA+ZIJnh444hEckcfRUxcoXe5wMwH/eIqHIK7gUbeAklHlOR4xCElyA2iWR3mIGixyHijDoziMqRw8xflH7H2v8vTjKfIyhzoLNNurPM+xVHRksp0EesabbU84M1hDklVMo885oMdcmhGUnO25W9w7xUx0sh8Ui/Ne5InjCcFTwL4BetI2gbZ5kedZreXZwjYBx2K2gKZ7DydMa3mqRcvjJFAcrnmNJ5ZfiXunlBMNzgfZAPrSazx9eVzwnOB9hmcULQM96TWeCSwRPFv9Wx6ngMKQ3zRaHqeAXvQSTzttNfgaJ5leOLQE5EOhd3j6MF/wnGSchZVVS0Bj5f6ELhzKiZzLdC7nOm7nAebzPIvqZKHF7x7DfwXPNsZYWpu3BLTD/iptPFO4mnt5muWGVg0uW6ozj5UBWh4ngPpYHZxG8nGmcTPPsJpmwzxQK34mPlrGKTY2UFkAWmJ+y8wopnM/y/QEilnAQ9zJbGZxMedzBif559EF5mr24s/ie3/nIFtb8CwAnTV+md04hzm83hBIFQu5mUv5Op/mQMbK3YKXyGJR5Vt2NPqzZAH1N3aJrTmNu1lRn6WUOVzGJA5hlHN7FFNFy0N+yAjbu1xNA70duFOWwPXaeFmLIu7gmxxm5oKtAUVxvahYzhfMVZAFdES/GU7m6bo0Z7mMw2n7jLsxoB78SVQ9T9OHfeUARfluNv5QzeNFf5pCvssBbm4DHsm/ReXvaOGkhhyg+MbeU3N4pZamhGs53O190m/wprZ/0tKDLAdo7p3f4GMSL9Ti/MpZbO32RvIofiKqX2eS1QpSgMI+r//5+7mvFucgE+nQf9TQA7qbR0X9PzjUegUpQG1O1F04eau2j3OAw4JzFGGE9nDvYQc7FaQARRf7rwwc1nDOcbLtbeUWgVK0vtYK2jw5LwMo2nf7c8navVPORWY7fbKAorlRXMMNJtuvIAMoTusKLhXzc2QO74UrcSfQXdodfEnOwy0D6GGxY3qPNj+XBNeiPlCCNs+TY3y05ThQ7EiwK4+JCztjdJTsBFCaNtpaJe9AlgSgsVN6aQOJzWwLBAcokqu1lucVmRUkAC2eeElsKE+F66EBdWOuyXkeF4EYT7LCzZanPtBoXtXmeTrJriAD6AmW8SkgWEC3W541bCm/ggygRxiPIMWSB1cInAqTRyJcnw8KUrD7rXmewY5VaAJA++W3PE0JKMPUPE8MEpoXkLnBcBL+wqpmBWQiemIXCCqghiIcadoxvvYbFFD9GIDDtb9s3EkF5B9RyKj7jy0UkH+MvnNBXAFp0QEbGjoCqoC0mNPwL1NACshYhKUqIN2YvFEB6ca0LxSQAlJACkgBKSAFpICsADXdVEAKSAEpIAWkgBSQAlJACkgBKaDgA41hc8vUXHM3UPOLVQpIAbkH9D87oz0rvnJrOgAAAABJRU5ErkJggg==);
		margin-bottom: .4em;
		-webkit-background-size: 100% auto;
		background-size: 100% auto
	}

	.ath-container p {
		margin: 0;
		padding: 0;
		position: relative;
		z-index: 2147483642;
		text-shadow: 0 .1em 0 #fff;
		font-size: 1.1em
	}

	.ath-ios.ath-phone:after {
		content: '';
		background: #eee;
		position: absolute;
		width: 2em;
		height: 2em;
		bottom: -.9em;
		left: 50%;
		margin-left: -1em;
		-webkit-transform: scaleX(0.9) rotate(45deg);
		-ms-transform: scaleX(0.9) rotate(45deg);
		transform: scaleX(0.9) rotate(45deg);
		-webkit-box-shadow: .2em .2em 0 #d1d1d1;
		box-shadow: .2em .2em 0 #d1d1d1
	}

	.ath-ios.ath-tablet:after {
		content: '';
		background: #eee;
		position: absolute;
		width: 2em;
		height: 2em;
		top: -.9em;
		left: 50%;
		margin-left: -1em;
		-webkit-transform: scaleX(0.9) rotate(45deg);
		-ms-transform: scaleX(0.9) rotate(45deg);
		transform: scaleX(0.9) rotate(45deg);
		z-index: 2147483641
	}

	.ath-android:after {
		content: '';
		background: #eee;
		background: -webkit-linear-gradient(-45deg, rgba(238, 238, 238, 0) 0, rgba(238, 238, 238, 0) 50%, #eee 50%, #eee 100%);
		position: absolute;
		width: 2em;
		height: 2em;
		top: -1.5em;
		right: 0
	}

	.ath-application-icon {
		position: relative;
		padding: 0;
		border: 0;
		margin: 0 auto .2em auto;
		height: 4.8em;
		width: 4.8em;
		z-index: 2147483642
	}

	.ath-container.ath-ios .ath-application-icon {
		border-radius: 1em;
		-webkit-box-shadow: 0 .2em .4em rgba(0, 0, 0, .3), inset 0 .07em 0 rgba(255, 255, 255, .5);
		box-shadow: 0 .2em .4em rgba(0, 0, 0, .3), inset 0 .07em 0 rgba(255, 255, 255, .5);
		margin: 0 auto .4em auto
	}

	@media only screen and (orientation:landscape) {
		.ath-container.ath-phone {
			width: 24em
		}

		.ath-ios.ath-phone {
			margin-left: -12em
		}

		.ath-ios6:after {
			left: 39%
		}

		.ath-ios8.ath-phone {
			left: auto;
			bottom: auto;
			right: .4em;
			top: 1.8em
		}

		.ath-ios8.ath-phone:after {
			bottom: auto;
			top: -.9em;
			left: 68%;
			z-index: 2147483641;
			-webkit-box-shadow: none;
			box-shadow: none
		}
	}

	.am-checkbox,
	.am-radio {
		margin-bottom: 12px;
		padding-left: 25px;
		position: relative;
		-webkit-transition: color .25s linear;
		transition: color .25s linear;
		font-size: 14px;
		line-height: 1.5
	}

	label.am-checkbox,
	label.am-radio {
		font-weight: 400
	}

	.am-ucheck-icons {
		color: #999;
		display: block;
		height: 20px;
		top: 0;
		left: 0;
		position: absolute;
		width: 20px;
		text-align: center;
		line-height: 21px;
		font-size: 18px;
		cursor: pointer
	}

	.am-checkbox .am-icon-checked,
	.am-radio .am-icon-checked,
	.am-checkbox .am-icon-unchecked,
	.am-radio .am-icon-unchecked {
		position: absolute;
		left: 0;
		top: 0;
		display: inline-table;
		margin: 0;
		background-color: transparent;
		-webkit-transition: color .25s linear;
		transition: color .25s linear
	}

	.am-checkbox .am-icon-checked:before,
	.am-radio .am-icon-checked:before,
	.am-checkbox .am-icon-unchecked:before,
	.am-radio .am-icon-unchecked:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale
	}

	.am-checkbox .am-icon-checked,
	.am-radio .am-icon-checked {
		opacity: 0
	}

	.am-checkbox .am-icon-checked:before {
		content: "\f046"
	}

	.am-checkbox .am-icon-unchecked:before {
		content: "\f096"
	}

	.am-radio .am-icon-checked:before {
		content: "\f192"
	}

	.am-radio .am-icon-unchecked:before {
		content: "\f10c"
	}

	.am-ucheck-checkbox,
	.am-ucheck-radio {
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
		padding: 0;
		width: 20px;
		height: 20px;
		opacity: 0;
		outline: 0 !important
	}

	.am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
		color: #0e90d2
	}

	.am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-ucheck-radio:checked+.am-ucheck-icons {
		color: #0e90d2
	}

	.am-ucheck-checkbox:checked+.am-ucheck-icons .am-icon-unchecked,
	.am-ucheck-radio:checked+.am-ucheck-icons .am-icon-unchecked {
		opacity: 0
	}

	.am-ucheck-checkbox:checked+.am-ucheck-icons .am-icon-checked,
	.am-ucheck-radio:checked+.am-ucheck-icons .am-icon-checked {
		opacity: 1
	}

	.am-ucheck-checkbox:disabled+.am-ucheck-icons,
	.am-ucheck-radio:disabled+.am-ucheck-icons {
		cursor: default;
		color: #d8d8d8
	}

	.am-ucheck-checkbox:disabled:checked+.am-ucheck-icons .am-icon-unchecked,
	.am-ucheck-radio:disabled:checked+.am-ucheck-icons .am-icon-unchecked {
		opacity: 0
	}

	.am-ucheck-checkbox:disabled:checked+.am-ucheck-icons .am-icon-checked,
	.am-ucheck-radio:disabled:checked+.am-ucheck-icons .am-icon-checked {
		opacity: 1;
		color: #d8d8d8
	}

	.am-checkbox.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-secondary .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-checkbox.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-secondary .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
		color: #3bb4f2
	}

	.am-checkbox.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-radio.am-secondary .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-checkbox.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons,
	.am-radio.am-secondary .am-ucheck-radio:checked+.am-ucheck-icons {
		color: #3bb4f2
	}

	.am-checkbox.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-success .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-checkbox.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-success .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
		color: #5eb95e
	}

	.am-checkbox.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-radio.am-success .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-checkbox.am-success .am-ucheck-radio:checked+.am-ucheck-icons,
	.am-radio.am-success .am-ucheck-radio:checked+.am-ucheck-icons {
		color: #5eb95e
	}

	.am-checkbox.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-warning .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-checkbox.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-warning .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
		color: #f37b1d
	}

	.am-checkbox.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-radio.am-warning .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-checkbox.am-warning .am-ucheck-radio:checked+.am-ucheck-icons,
	.am-radio.am-warning .am-ucheck-radio:checked+.am-ucheck-icons {
		color: #f37b1d
	}

	.am-checkbox.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-danger .am-ucheck-checkbox:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-checkbox.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons,
	.am-radio.am-danger .am-ucheck-radio:hover:not(.am-nohover):not(:disabled)+.am-ucheck-icons {
		color: #dd514c
	}

	.am-checkbox.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-radio.am-danger .am-ucheck-checkbox:checked+.am-ucheck-icons,
	.am-checkbox.am-danger .am-ucheck-radio:checked+.am-ucheck-icons,
	.am-radio.am-danger .am-ucheck-radio:checked+.am-ucheck-icons {
		color: #dd514c
	}

	.am-field-error+.am-ucheck-icons {
		color: #dd514c
	}

	.am-field-valid+.am-ucheck-icons {
		color: #5eb95e
	}

	.am-input-group-label .am-radio,
	.am-input-group-label .am-checkbox {
		margin: -2px 0;
		padding-left: 15px
	}

	.am-form-inline .am-checkbox,
	.am-form-inline .am-radio {
		padding-left: 24px
	}

	.am-selected-btn {
		text-align: right;
		width: 200px
	}

	.am-selected-btn.am-btn-default {
		background: 0 0
	}

	.am-selected-header {
		height: 45px;
		background-color: #f2f2f2;
		border-bottom: 1px solid #ddd;
		display: none
	}

	.am-selected-status {
		text-align: left;
		width: 100%;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-selected-content {
		padding: 10px 0
	}

	.am-selected-search {
		padding: 0 10px 10px
	}

	.am-selected-search .am-form-field {
		padding: .5em
	}

	.am-selected-list {
		margin: 0;
		padding: 0;
		list-style: none;
		font-size: 1.5rem
	}

	.am-selected-list li {
		position: relative;
		cursor: pointer;
		padding: 5px 10px;
		-webkit-transition: background-color .15s;
		transition: background-color .15s
	}

	.am-selected-list li:hover {
		background-color: #f8f8f8
	}

	.am-selected-list li:hover .am-icon-check {
		opacity: .6
	}

	.am-selected-list li.am-checked .am-icon-check {
		opacity: 1;
		color: #0e90d2
	}

	.am-selected-list .am-selected-list-header {
		margin-top: 8px;
		font-size: 1.3rem;
		color: #999;
		border-bottom: 1px solid #e5e5e5;
		cursor: default
	}

	.am-selected-list .am-selected-list-header:hover {
		background: 0 0
	}

	.am-selected-list .am-selected-list-header:first-child {
		margin-top: 0
	}

	.am-selected-list .am-selected-text {
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		margin-right: 30px
	}

	.am-selected-list .am-icon-check {
		position: absolute;
		right: 8px;
		top: 5px;
		color: #999;
		opacity: 0;
		-webkit-transition: opacity .15s;
		transition: opacity .15s
	}

	.am-selected-hint {
		line-height: 1.2;
		color: #dd514c
	}

	.am-selected-hint:not(:empty) {
		margin-top: 10px;
		border-top: 1px solid #e5e5e5;
		padding: 10px 10px 0
	}

	.am-fade {
		opacity: 0;
		-webkit-transition: opacity .2s linear;
		transition: opacity .2s linear
	}

	.am-fade.am-in {
		opacity: 1
	}

	.am-collapse {
		display: none
	}

	.am-collapse.am-in {
		display: block
	}

	tr.am-collapse.am-in {
		display: table-row
	}

	tbody.am-collapse.am-in {
		display: table-row-group
	}

	.am-collapsing {
		position: relative;
		height: 0;
		overflow: hidden;
		-webkit-transition: height .3s ease;
		transition: height .3s ease
	}

	.am-sticky {
		position: fixed !important;
		z-index: 1010;
		-webkit-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		transform-origin: 0 0
	}

	[data-am-sticky][class*=am-animation-] {
		-webkit-animation-duration: .2s;
		animation-duration: .2s
	}

	.am-dimmer-active {
		overflow: hidden
	}

	.am-dimmer {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .6);
		z-index: 1100;
		opacity: 0
	}

	.am-dimmer.am-active {
		opacity: 1
	}

	[data-am-collapse] {
		cursor: pointer
	}

	.am-datepicker {
		top: 0;
		left: 0;
		border-radius: 0;
		background: #fff;
		-webkit-box-shadow: 0 0 10px #ccc;
		box-shadow: 0 0 10px #ccc;
		padding-bottom: 10px;
		margin-top: 10px;
		width: 238px;
		color: #555;
		display: none
	}

	.am-datepicker>div {
		display: none
	}

	.am-datepicker table {
		width: 100%
	}

	.am-datepicker tr.am-datepicker-header {
		font-size: 1.6rem;
		color: #fff;
		background: #3bb4f2
	}

	.am-datepicker td,
	.am-datepicker th {
		text-align: center;
		font-weight: 400;
		cursor: pointer
	}

	.am-datepicker th {
		height: 48px
	}

	.am-datepicker td {
		font-size: 1.4rem
	}

	.am-datepicker td.am-datepicker-day {
		height: 34px;
		width: 34px
	}

	.am-datepicker td.am-datepicker-day:hover {
		background: #f0f0f0;
		height: 34px;
		width: 34px
	}

	.am-datepicker td.am-datepicker-day.am-disabled {
		cursor: no-drop;
		color: #999;
		background: #fafafa
	}

	.am-datepicker td.am-datepicker-old,
	.am-datepicker td.am-datepicker-new {
		color: #89d7ff
	}

	.am-datepicker td.am-active,
	.am-datepicker td.am-active:hover {
		border-radius: 0;
		color: #0084c7;
		background: #f0f0f0
	}

	.am-datepicker td span {
		display: block;
		width: 79.33px;
		height: 40px;
		line-height: 40px;
		float: left;
		cursor: pointer
	}

	.am-datepicker td span:hover {
		background: #f0f0f0
	}

	.am-datepicker td span.am-active {
		color: #0084c7;
		background: #f0f0f0
	}

	.am-datepicker td span.am-datepicker-old {
		color: #89d7ff
	}

	.am-datepicker .am-datepicker-dow {
		height: 40px;
		color: #0c80ba
	}

	.am-datepicker-caret {
		display: block !important;
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-bottom: 7px solid #3bb4f2;
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-top: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
		position: absolute;
		top: -7px;
		left: 6px
	}

	.am-datepicker-right .am-datepicker-caret {
		left: auto;
		right: 7px
	}

	.am-datepicker-up .am-datepicker-caret {
		top: auto;
		bottom: -7px;
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-top: 7px solid #fff;
		border-right: 7px solid transparent;
		border-left: 7px solid transparent;
		border-bottom: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}

	.am-datepicker-select {
		height: 34px;
		line-height: 34px;
		text-align: center;
		-webkit-transition: background-color 300ms ease-out;
		transition: background-color 300ms ease-out
	}

	.am-datepicker-select:hover {
		background: rgba(154, 217, 248, .5);
		color: #0c80ba
	}

	.am-datepicker-prev,
	.am-datepicker-next {
		width: 34px;
		height: 34px
	}

	.am-datepicker-prev-icon,
	.am-datepicker-next-icon {
		width: 34px;
		height: 34px;
		line-height: 34px;
		display: inline-block;
		-webkit-transition: background-color 300ms ease-out;
		transition: background-color 300ms ease-out
	}

	.am-datepicker-prev-icon:hover,
	.am-datepicker-next-icon:hover {
		background: rgba(154, 217, 248, .5);
		color: #0c80ba
	}

	.am-datepicker-prev-icon:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053"
	}

	.am-datepicker-next-icon:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f054"
	}

	.am-datepicker-dropdown {
		position: absolute;
		z-index: 1000
	}

	@media only screen and (max-width:640px) {
		.am-datepicker {
			width: 100%
		}

		.am-datepicker td span {
			width: 33.33%
		}

		.am-datepicker-caret {
			display: none !important
		}

		.am-datepicker-prev,
		.am-datepicker-next {
			width: 44px;
			height: 44px
		}
	}

	.am-datepicker-success tr.am-datepicker-header {
		background: #5eb95e
	}

	.am-datepicker-success td.am-datepicker-day.am-disabled {
		color: #999
	}

	.am-datepicker-success td.am-datepicker-old,
	.am-datepicker-success td.am-datepicker-new {
		color: #94df94
	}

	.am-datepicker-success td.am-active,
	.am-datepicker-success td.am-active:hover {
		color: #1b961b
	}

	.am-datepicker-success td span.am-datepicker-old {
		color: #94df94
	}

	.am-datepicker-success td span.am-active {
		color: #1b961b
	}

	.am-datepicker-success .am-datepicker-caret {
		border-bottom-color: #5eb95e
	}

	.am-datepicker-success .am-datepicker-dow {
		color: #367b36
	}

	.am-datepicker-success .am-datepicker-select:hover,
	.am-datepicker-success .am-datepicker-prev-icon:hover,
	.am-datepicker-success .am-datepicker-next-icon:hover {
		background: rgba(165, 216, 165, .5);
		color: #367b36
	}

	.am-datepicker-danger tr.am-datepicker-header {
		background: #dd514c
	}

	.am-datepicker-danger td.am-datepicker-day.am-disabled {
		color: #999
	}

	.am-datepicker-danger td.am-datepicker-old,
	.am-datepicker-danger td.am-datepicker-new {
		color: #f59490
	}

	.am-datepicker-danger td.am-active,
	.am-datepicker-danger td.am-active:hover {
		color: #c10802
	}

	.am-datepicker-danger td span.am-datepicker-old {
		color: #f59490
	}

	.am-datepicker-danger td span.am-active {
		color: #c10802
	}

	.am-datepicker-danger .am-datepicker-caret {
		border-bottom-color: #dd514c
	}

	.am-datepicker-danger .am-datepicker-dow {
		color: #a4241f
	}

	.am-datepicker-danger .am-datepicker-select:hover,
	.am-datepicker-danger .am-datepicker-prev-icon:hover,
	.am-datepicker-danger .am-datepicker-next-icon:hover {
		background: rgba(237, 164, 162, .5);
		color: #a4241f
	}

	.am-datepicker-warning tr.am-datepicker-header {
		background: #f37b1d
	}

	.am-datepicker-warning td.am-datepicker-day.am-disabled {
		color: #999
	}

	.am-datepicker-warning td.am-datepicker-old,
	.am-datepicker-warning td.am-datepicker-new {
		color: #ffad6d
	}

	.am-datepicker-warning td.am-active,
	.am-datepicker-warning td.am-active:hover {
		color: #aa4b00
	}

	.am-datepicker-warning td span.am-datepicker-old {
		color: #ffad6d
	}

	.am-datepicker-warning td span.am-active {
		color: #aa4b00
	}

	.am-datepicker-warning .am-datepicker-caret {
		border-bottom-color: #f37b1d
	}

	.am-datepicker-warning .am-datepicker-dow {
		color: #a14c09
	}

	.am-datepicker-warning .am-datepicker-select:hover,
	.am-datepicker-warning .am-datepicker-prev-icon:hover,
	.am-datepicker-warning .am-datepicker-next-icon:hover {
		background: rgba(248, 180, 126, .5);
		color: #a14c09
	}

	@media print {

		*,
		:before,
		:after {
			background: transparent !important;
			color: #000 !important;
			-webkit-box-shadow: none !important;
			box-shadow: none !important;
			text-shadow: none !important
		}

		a,
		a:visited {
			text-decoration: underline
		}

		a[href]:after {
			content: " (" attr(href) ")"
		}

		abbr[title]:after {
			content: " [" attr(title) "] "
		}

		a[href^="javascript:"]:after,
		a[href^="#"]:after {
			content: ""
		}

		pre,
		blockquote {
			border: 1px solid #999;
			page-break-inside: avoid
		}

		thead {
			display: table-header-group
		}

		tr,
		img {
			page-break-inside: avoid
		}

		img {
			max-width: 100% !important
		}

		p,
		h2,
		h3 {
			orphans: 3;
			widows: 3
		}

		h2,
		h3 {
			page-break-after: avoid
		}

		@page {
			margin: .5cm
		}

		select {
			background: #fff !important
		}

		.am-topbar {
			display: none
		}

		.am-table td,
		.am-table th {
			background-color: #fff !important
		}

		.am-table {
			border-collapse: collapse !important
		}

		.am-table-bordered th,
		.am-table-bordered td {
			border: 1px solid #ddd !important
		}
	}

	.am-print-block {
		display: none !important
	}

	@media print {
		.am-print-block {
			display: block !important
		}
	}

	.am-print-inline {
		display: none !important
	}

	@media print {
		.am-print-inline {
			display: inline !important
		}
	}

	.am-print-inline-block {
		display: none !important
	}

	@media print {
		.am-print-inline-block {
			display: inline-block !important
		}
	}

	@media print {
		.am-print-hide {
			display: none !important
		}
	}

	.lte9 #nprogress .nprogress-spinner {
		display: none !important
	}

	.lte8 .am-dimmer {
		background-color: #000;
		filter: alpha(opacity=60)
	}

	.lte8 .am-modal-actions {
		display: none
	}

	.lte8 .am-modal-actions.am-modal-active {
		display: block
	}

	.lte8 .am-offcanvas.am-active {
		background: #000
	}

	.lte8 .am-popover .am-popover-caret {
		border: 8px solid transparent
	}

	.lte8 .am-popover-top .am-popover-caret {
		border-top: 8px solid #333;
		border-bottom: none
	}

	.lte8 .am-popover-left .am-popover-caret {
		right: -8px;
		margin-top: -6px;
		border-left: 8px solid #333;
		border-right: none
	}

	.lte8 .am-popover-right .am-popover-caret {
		left: -8px;
		margin-top: -6px;
		border-right: 8px solid #333;
		border-left: none
	}

	.am-accordion-item {
		margin: 0
	}

	.am-accordion-title {
		font-weight: 400;
		cursor: pointer
	}

	.am-accordion-bd {
		margin: 0 !important;
		padding: 0 !important;
		border: none !important
	}

	.am-accordion-content {
		margin-top: 0;
		padding: .8rem 1rem 1.2rem;
		font-size: 1.4rem
	}

	.am-accordion-default {
		margin: 1rem;
		border-radius: 2px;
		-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
		box-shadow: 0 0 0 1px rgba(0, 0, 0, .1)
	}

	.am-accordion-default .am-accordion-item {
		border-top: 1px solid rgba(0, 0, 0, .05)
	}

	.am-accordion-default .am-accordion-item:first-child {
		border-top: none
	}

	.am-accordion-default .am-accordion-title {
		color: rgba(0, 0, 0, .6);
		-webkit-transition: background-color .2s ease-out;
		transition: background-color .2s ease-out;
		padding: .8rem 1rem
	}

	.am-accordion-default .am-accordion-title:before {
		content: "\f0da";
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		-webkit-transition: -webkit-transform .2s ease;
		transition: transform .2s ease;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		margin-right: 5px
	}

	.am-accordion-default .am-accordion-title:hover {
		color: #0e90d2
	}

	.am-accordion-default .am-accordion-content {
		color: #666
	}

	.am-accordion-default .am-active .am-accordion-title {
		background-color: #eee;
		color: #0e90d2
	}

	.am-accordion-default .am-active .am-accordion-title:before {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-accordion-basic {
		margin: 1rem
	}

	.am-accordion-basic .am-accordion-title {
		color: #333;
		-webkit-transition: background-color .2s ease-out;
		transition: background-color .2s ease-out;
		padding: .8rem 0 0
	}

	.am-accordion-basic .am-accordion-title:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f0da";
		-webkit-transition: -webkit-transform .2s ease;
		transition: transform .2s ease;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		margin-right: .5rem
	}

	.am-accordion-basic .am-accordion-content {
		color: #666
	}

	.am-accordion-basic .am-active .am-accordion-title {
		color: #0e90d2
	}

	.am-accordion-basic .am-active .am-accordion-title:before {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-accordion-gapped {
		margin: .5rem 1rem
	}

	.am-accordion-gapped .am-accordion-item {
		border: 1px solid #dedede;
		border-bottom: none;
		margin: .5rem 0
	}

	.am-accordion-gapped .am-accordion-item.am-active {
		border-bottom: 1px solid #dedede
	}

	.am-accordion-gapped .am-accordion-title {
		color: rgba(0, 0, 0, .6);
		-webkit-transition: background-color .15s ease-out;
		transition: background-color .15s ease-out;
		border-bottom: 1px solid #dedede;
		padding: .8rem 2rem .8rem 1rem;
		position: relative
	}

	.am-accordion-gapped .am-accordion-title:after {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f105";
		-webkit-transition: -webkit-transform .2s linear;
		transition: transform .2s linear;
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -.8rem
	}

	.am-accordion-gapped .am-accordion-title:hover {
		color: rgba(0, 0, 0, .8)
	}

	.am-accordion-gapped .am-accordion-content {
		color: #666
	}

	.am-accordion-gapped .am-active .am-accordion-title {
		background-color: #f5f5f5;
		color: rgba(0, 0, 0, .8)
	}

	.am-accordion-gapped .am-active .am-accordion-title:after {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-accordion-one {
		margin: 0 10px 0 10px
	}

	.am-accordion-one .am-accordion-item {
		border: 1px solid #dfdfdf;
		margin: .5rem 0;
		background: #fff
	}

	.am-accordion-one .am-accordion-title {
		color: #555;
		-webkit-transition: background-color .2s ease-out;
		transition: background-color .2s ease-out;
		padding: .8rem 2rem .8rem 1rem;
		position: relative
	}

	.am-accordion-one .am-accordion-title:after {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f105";
		-webkit-transition: -webkit-transform .2s linear;
		transition: transform .2s linear;
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -.8rem
	}

	.am-accordion-one .am-accordion-title:hover {
		color: #15afef
	}

	.am-accordion-one .am-accordion-content {
		color: #666
	}

	.am-accordion-one .am-active .am-accordion-title {
		background-color: #f8f8f8;
		color: #15afef
	}

	.am-accordion-one .am-active .am-accordion-title:after {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-divider-default {
		height: 1px;
		border: none;
		margin: 1.5rem auto;
		overflow: hidden;
		background-color: #ddd;
		clear: both
	}

	.am-divider-one {
		height: 10px;
		border: none;
		overflow: hidden;
		clear: both;
		margin: 0
	}

	.am-figure-zoomable {
		position: relative;
		cursor: pointer
	}

	.am-figure-zoomable:after {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f00e";
		position: absolute;
		top: 1rem;
		right: 1rem;
		color: #999;
		font-size: 1.6rem;
		-webkit-transition: all .2s;
		transition: all .2s
	}

	.am-figure-zoomable:hover:after {
		color: #eee
	}

	.am-figure-default {
		margin: 10px
	}

	.am-figure-default img {
		display: block;
		max-width: 100%;
		height: auto;
		padding: 2px;
		border: 1px solid #eee;
		margin: 10px auto
	}

	.am-figure-default figcaption {
		text-align: center;
		font-size: 1.4rem;
		margin-bottom: 15px;
		color: #333
	}

	.am-figure-one {
		margin: 0 10px;
		background: #fff
	}

	.am-figure-one img {
		display: block;
		max-width: 100%;
		height: auto;
		padding: 2px;
		border: 1px solid #dfdfdf
	}

	.am-figure-one figcaption {
		text-align: center;
		font-size: 1.4rem;
		padding: 10px 0;
		color: #888
	}

	.am-footer {
		text-align: center;
		padding: 1em 0;
		font-size: 1.6rem
	}

	.am-footer .am-switch-mode-ysp {
		cursor: pointer
	}

	.am-footer .am-footer-text {
		margin-top: 10px;
		font-size: 14px
	}

	.am-footer .am-footer-text-left {
		text-align: left;
		padding-left: 10px
	}

	.am-modal-footer-hd {
		padding-bottom: 10px
	}

	.am-footer-default {
		background-color: #fff
	}

	.am-footer-default a {
		color: #555
	}

	.am-footer-default .am-footer-switch {
		margin-bottom: 10px;
		font-weight: 700
	}

	.am-footer-default .am-footer-ysp {
		color: #555;
		cursor: pointer
	}

	.am-footer-default .am-footer-divider {
		color: #ccc
	}

	.am-footer-default .am-footer-desktop {
		color: #0e90d2
	}

	.am-footer-default .am-footer-miscs {
		color: #999;
		font-size: 13px
	}

	.am-footer-default .am-footer-miscs p {
		margin: 5px 0
	}

	@media only screen and (min-width:641px) {
		.am-footer-default .am-footer-miscs p {
			display: inline-block;
			margin: 5px
		}
	}

	.am-footer-one a {
		color: #15afef;
		font-weight: 700
	}

	.am-footer-one .am-footer-switch {
		margin-bottom: 10px
	}

	.am-footer-one .am-footer-ysp {
		color: #15afef;
		cursor: pointer
	}

	.am-footer-one .am-footer-divider {
		color: #999
	}

	.am-footer-one .am-footer-desktop {
		font-weight: 400;
		color: #555
	}

	.am-footer-one .am-footer-miscs {
		color: #7c7c7c;
		overflow: hidden;
		padding: 0 10px;
		font-size: 14px
	}

	.am-footer-one .am-footer-miscs ul,
	.am-footer-one .am-footer-miscs li {
		padding-left: 0;
		list-style: none
	}

	.am-footer-one .am-footer-miscs p {
		margin: 4px 0
	}

	.am-footer-one .am-footer-miscs a {
		font-weight: 400;
		color: #555;
		margin: 0 1px
	}

	.am-footer-one .am-footer-miscs img {
		display: block;
		max-width: 100%;
		margin: 0 auto 2px auto
	}

	@media only screen and (min-width:641px) {
		.am-footer-one .am-footer-miscs p {
			display: inline-block;
			margin: 5px
		}
	}

	.am-gallery {
		padding: 5px 5px 0 5px;
		list-style: none
	}

	.am-gallery h3 {
		margin: 0
	}

	[data-am-gallery*=pureview] img {
		cursor: pointer
	}

	.am-gallery-default>li {
		padding: 5px
	}

	.am-gallery-default .am-gallery-item img {
		width: 100%;
		height: auto
	}

	.am-gallery-default .am-gallery-title {
		margin-top: 10px;
		font-weight: 400;
		font-size: 1.4rem;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		color: #555
	}

	.am-gallery-default .am-gallery-desc {
		color: #999;
		font-size: 1.2rem
	}

	.am-gallery-overlay>li {
		padding: 5px
	}

	.am-gallery-overlay .am-gallery-item {
		position: relative
	}

	.am-gallery-overlay .am-gallery-item img {
		width: 100%;
		height: auto
	}

	.am-gallery-overlay .am-gallery-title {
		font-weight: 400;
		font-size: 1.4rem;
		color: #fff;
		position: absolute;
		bottom: 0;
		width: 100%;
		background-color: rgba(0, 0, 0, .5);
		text-indent: 5px;
		height: 30px;
		line-height: 30px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-gallery-overlay .am-gallery-desc {
		display: none
	}

	.am-gallery-bordered>li {
		padding: 5px
	}

	.am-gallery-bordered .am-gallery-item {
		-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .35);
		box-shadow: 0 0 3px rgba(0, 0, 0, .35);
		padding: 5px
	}

	.am-gallery-bordered .am-gallery-item img {
		width: 100%;
		height: auto
	}

	.am-gallery-bordered .am-gallery-title {
		margin-top: 10px;
		font-weight: 400;
		font-size: 1.4rem;
		color: #555;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-gallery-bordered .am-gallery-desc {
		color: #999;
		font-size: 1.2rem
	}

	.am-gallery-imgbordered>li {
		padding: 5px
	}

	.am-gallery-imgbordered .am-gallery-item img {
		width: 100%;
		height: auto;
		border: 3px solid #FFF;
		-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .35);
		box-shadow: 0 0 3px rgba(0, 0, 0, .35)
	}

	.am-gallery-imgbordered .am-gallery-title {
		margin-top: 10px;
		font-weight: 400;
		font-size: 1.4rem;
		color: #555;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-gallery-imgbordered .am-gallery-desc {
		color: #999;
		font-size: 1.2rem
	}

	.am-gallery-one {
		padding: 0 5px;
		background-color: #fff
	}

	.am-gallery-one>li {
		padding: 5px
	}

	.am-gallery-one .am-gallery-item {
		padding: 5px
	}

	.am-gallery-one .am-gallery-item img {
		width: 100%;
		height: auto
	}

	.am-gallery-one .am-gallery-title {
		line-height: 34px;
		font-weight: 400;
		font-size: 1.4rem;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		color: #555
	}

	.am-gallery-one .am-gallery-desc {
		color: #999;
		font-size: 1.2rem
	}

	.am-gallery-one .am-gallery-more {
		width: 100%
	}

	.am-gallery-one .am-gallery-more a {
		background-color: #dfdfdf;
		color: #555;
		height: 35px;
		line-height: 35px;
		font-size: 1.4rem;
		display: block;
		text-align: center
	}

	.am-gotop a {
		display: inline-block;
		text-decoration: none
	}

	.am-gotop-default {
		text-align: center;
		margin: 10px 0
	}

	.am-gotop-default a {
		background-color: #0e90d2;
		padding: .5em 1.5em;
		border-radius: 0;
		color: #fff
	}

	.am-gotop-default a img {
		display: none
	}

	.am-gotop-fixed {
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 1010;
		opacity: 0;
		width: 32px;
		min-height: 32px;
		overflow: hidden;
		border-radius: 0;
		text-align: center
	}

	.am-gotop-fixed.am-active {
		opacity: .9
	}

	.am-gotop-fixed.am-active:hover {
		opacity: 1
	}

	.am-gotop-fixed a {
		display: block
	}

	.am-gotop-fixed .am-gotop-title {
		display: none
	}

	.am-gotop-fixed .am-gotop-icon-custom {
		display: inline-block;
		max-width: 30px;
		vertical-align: middle
	}

	.am-gotop-fixed .am-gotop-icon {
		width: 100%;
		line-height: 32px;
		background-color: #555;
		vertical-align: middle;
		color: #ddd
	}

	.am-gotop-fixed .am-gotop-icon:hover {
		color: #fff
	}

	.am-with-fixed-navbar .am-gotop-fixed {
		bottom: 60px
	}

	.am-gotop-one {
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 1005;
		width: 32px;
		height: 32px;
		background-color: #fff;
		border-radius: 0;
		border: 1px solid #15afef;
		text-align: center
	}

	.am-gotop-one .am-gotop-title {
		display: none
	}

	.am-gotop-one .am-gotop-icon {
		vertical-align: middle;
		display: inline-block;
		color: #15afef
	}

	.am-with-fixed-navbar .am-gotop-one {
		bottom: 60px
	}

	.am-header {
		position: relative;
		width: 100%;
		height: 49px;
		line-height: 49px;
		padding: 0 10px
	}

	.am-header h1 {
		margin-top: 0;
		margin-bottom: 0
	}

	.am-header .am-header-title {
		margin: 0 30%;
		font-size: 2rem;
		font-weight: 400;
		text-align: center;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-header .am-header-title img {
		margin-top: 12px;
		height: 25px;
		vertical-align: top
	}

	.am-header .am-header-nav {
		position: absolute;
		top: 0
	}

	.am-header .am-header-nav img {
		height: 16px;
		width: auto;
		vertical-align: middle
	}

	.am-header .am-header-left {
		left: 10px
	}

	.am-header .am-header-right {
		right: 10px
	}

	.am-header-fixed {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1010
	}

	.am-with-fixed-header {
		padding-top: 49px
	}

	.am-header-default {
		background-color: #0e90d2
	}

	.am-header-default .am-header-title {
		color: #fff
	}

	.am-header-default .am-header-title a {
		color: #fff
	}

	.am-header-default .am-header-icon {
		font-size: 20px
	}

	.am-header-default .am-header-nav {
		color: #eee
	}

	.am-header-default .am-header-nav>a {
		display: inline-block;
		min-width: 36px;
		text-align: center;
		color: #eee
	}

	.am-header-default .am-header-nav>a+a {
		margin-left: 5px
	}

	.am-header-default .am-header-nav .am-btn {
		margin-top: 9px;
		height: 31px;
		padding: 0 .5em;
		line-height: 30px;
		font-size: 14px;
		vertical-align: top
	}

	.am-header-default .am-header-nav .am-btn .am-header-icon {
		font-size: inherit
	}

	.am-header-default .am-header-nav .am-btn-default {
		color: #999
	}

	.am-header-default .am-header-nav-title,
	.am-header-default .am-header-nav-title+.am-header-icon {
		font-size: 14px
	}

	.am-header-one {
		background: #fff
	}

	.am-header-one .am-header-title {
		margin: 0 15%;
		color: #333;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-header-one .am-header-title a {
		color: #333
	}

	.am-header-one .am-header-title img {
		height: 34px;
		width: auto;
		margin-top: 8px;
		vertical-align: top
	}

	.am-header-one .am-header-nav>a {
		color: #15afef
	}

	.am-intro {
		position: relative
	}

	.am-intro-hd {
		position: relative;
		height: 45px;
		line-height: 45px
	}

	.am-intro-title {
		font-size: 18px;
		margin: 0;
		font-weight: 700
	}

	.am-intro-more-top {
		position: absolute;
		right: 10px;
		top: 0;
		font-size: 1.4rem
	}

	.am-intro-bd {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 1.4rem
	}

	.am-intro-bd p:last-child {
		margin-bottom: 0
	}

	.am-intro-more-bottom {
		clear: both;
		text-align: center
	}

	.am-intro-more-bottom .am-btn {
		font-size: 14px
	}

	.am-intro-default .am-intro-hd {
		background-color: #0e90d2;
		color: #fff;
		padding: 0 10px
	}

	.am-intro-default .am-intro-hd a {
		color: #eee
	}

	.am-intro-default .am-intro-right {
		padding-left: 0
	}

	.am-intro-one {
		padding-bottom: 10px;
		background-color: #fff
	}

	.am-intro-one a {
		color: #15afef
	}

	.am-intro-one .am-intro-hd {
		border-bottom: 1px solid #15afef;
		margin-left: 10px;
		margin-right: 10px;
		line-height: 44px
	}

	.am-intro-one .am-intro-title {
		color: #333;
		padding-left: 10px
	}

	.am-intro-one .am-intro-title:before {
		position: absolute;
		left: 1px;
		top: 10px;
		bottom: 10px;
		content: '';
		width: 3px;
		background-color: #15afef;
		display: block
	}

	.am-intro-one .am-intro-bd {
		color: #555
	}

	.am-intro-one .am-intro-left {
		float: left;
		display: inline
	}

	.am-intro-one .am-intro-right {
		display: inline;
		padding-left: 0;
		font-size: 1.4rem
	}

	.am-intro-one .am-intro-right p {
		display: inline;
		margin: 0;
		padding: 0
	}

	.am-list-news-hd {
		padding-top: 1.2rem;
		padding-bottom: .8rem
	}

	.am-list-news-hd a {
		display: block
	}

	.am-list-news-hd h2 {
		font-size: 1.6rem;
		float: left;
		margin: 0;
		height: 2rem;
		line-height: 2rem
	}

	.am-list-news-hd h3 {
		margin: 0
	}

	.am-list-news-hd .am-list-news-more {
		font-size: 1.3rem;
		height: 2rem;
		line-height: 2rem
	}

	.am-list .am-list-item-dated a {
		padding-right: 80px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-list .am-list-item-dated a::after {
		display: none
	}

	.am-list .am-list-item-desced a,
	.am-list .am-list-item-thumbed a {
		padding-right: 0
	}

	.am-list-news .am-list-item-hd {
		margin: 0
	}

	.am-list-date {
		position: absolute;
		right: 5px;
		font-size: 1.3rem;
		top: 1.3rem
	}

	.am-list-item-desced {
		padding-bottom: 1rem
	}

	.am-list-item-desced>a {
		padding: 1rem 0
	}

	.am-list-item-desced .am-list-date {
		position: static
	}

	.am-list-item-thumbed {
		padding-top: 1em
	}

	.am-list-news-ft {
		text-align: center
	}

	.am-list-news-default {
		margin: 10px
	}

	.am-list-news-default .am-g {
		margin-left: auto;
		margin-right: auto
	}

	.am-list-news-default .am-list-item-hd {
		font-weight: 400
	}

	.am-list-news-default .am-list-date {
		color: #999
	}

	.am-list-news-default .am-list>li {
		border-color: #dedede
	}

	.am-list-news-default .am-list .am-list-item-desced {
		padding-top: 1rem;
		padding-bottom: 1rem
	}

	.am-list-news-default .am-list .am-list-item-desced>a {
		padding: 0
	}

	.am-list-news-default .am-list .am-list-item-desced .am-list-item-text {
		margin-top: .5rem;
		color: #757575
	}

	.am-list-news-default .am-list .am-list-item-text {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		line-height: 1.3em;
		-webkit-line-clamp: 2;
		max-height: 2.6em
	}

	.am-list-news-default .am-list .am-list-item-thumb-top .am-list-thumb {
		padding: 0;
		margin-bottom: .8rem
	}

	.am-list-news-default .am-list .am-list-item-thumb-top .am-list-main {
		padding: 0
	}

	.am-list-news-default .am-list .am-list-item-thumb-left .am-list-thumb {
		padding-left: 0
	}

	.am-list-news-default .am-list .am-list-item-desced .am-list-main {
		padding: 0
	}

	.am-list-news-default .am-list .am-list-item-thumb-right .am-list-thumb {
		padding-right: 0
	}

	.am-list-news-default .am-list .am-list-item-thumb-bottom-left .am-list-item-hd {
		clear: both;
		padding-bottom: .5rem
	}

	.am-list-news-default .am-list .am-list-item-thumb-bottom-left .am-list-thumb {
		padding-left: 0
	}

	.am-list-news-default .am-list .am-list-item-thumb-bottom-right .am-list-item-hd {
		clear: both;
		padding-bottom: .5rem
	}

	.am-list-news-default .am-list .am-list-item-thumb-bottom-right .am-list-thumb {
		padding-right: 0
	}

	.am-list-news-default .am-list .am-list-thumb img {
		width: 100%;
		display: block
	}

	@media only screen and (max-width:640px) {

		.am-list-news-default .am-list-item-thumb-left .am-list-thumb,
		.am-list-news-default .am-list-item-thumb-right .am-list-thumb {
			max-height: 80px;
			overflow: hidden
		}

		.am-list-news-default .am-list-item-thumb-bottom-left .am-list-item-text,
		.am-list-news-default .am-list-item-thumb-bottom-right .am-list-item-text {
			-webkit-line-clamp: 3;
			max-height: 3.9em
		}

		.am-list-news-default .am-list-item-thumb-bottom-left .am-list-thumb,
		.am-list-news-default .am-list-item-thumb-bottom-right .am-list-thumb {
			max-height: 60px;
			overflow: hidden
		}
	}

	.am-list-news-one {
		margin: 0 10px
	}

	.am-list-news-one .am-list-news-hd {
		background: #fff;
		height: 40px;
		line-height: 40px;
		border-bottom: 1px solid #15afef;
		padding: 0 0 0 10px;
		margin: 0;
		position: relative;
		color: #000
	}

	.am-list-news-one .am-list-news-hd::before {
		width: 4px;
		height: 30px;
		background: #15afef;
		display: inline-block;
		content: '';
		position: absolute;
		top: 5px;
		left: 0
	}

	.am-list-news-one .am-list-news-hd>a {
		color: #000;
		display: inline
	}

	.am-list-news-one .am-list-news-hd>a .am-list-news-more {
		color: #888;
		padding: 0;
		margin-right: 5px;
		background: 0 0;
		font-size: 1.4rem;
		height: 40px;
		line-height: 40px
	}

	.am-list-news-one .am-list-news-hd h2 {
		font-weight: 400;
		float: left;
		line-height: 40px;
		height: 40px
	}

	.am-list-news-one .am-list-news-bd {
		padding: 0 5px 4px 5px;
		background: #fff
	}

	.am-list-news-one .am-list {
		margin-bottom: 0
	}

	.am-list-news-one .am-list>li {
		margin: 0;
		border: 0;
		overflow: hidden
	}

	.am-list-news-one .am-list>li>a {
		color: #222;
		font-weight: 400;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		height: 30px;
		line-height: 30px;
		padding: 0;
		position: relative;
		text-indent: 10px
	}

	.am-list-news-one .am-list>li>a:before {
		width: 4px;
		height: 4px;
		background: #15afef;
		display: inline-block;
		content: '';
		position: absolute;
		top: 14px;
		left: 0
	}

	.am-list-news-one .am-list>li .am-list-date {
		color: #666;
		top: 5px;
		right: 0;
		display: none
	}

	.am-list-news-one .am-list>li:last-child {
		border-bottom: 0
	}

	.am-list-news-one .am-list .am-list-item-dated>a {
		color: #222
	}

	.am-list-news-one .am-list .am-list-item-desced {
		padding: 3px 0;
		border-bottom: 1px dashed #dfdfdf
	}

	.am-list-news-one .am-list .am-list-item-desced:before {
		display: none
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-item-hd {
		font-weight: 400;
		font-size: 1.5rem;
		margin-bottom: 0
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-item-hd>a:before {
		display: none
	}

	.am-list-news-one .am-list .am-list-item-desced a.am-list-item-hd {
		height: 34px;
		line-height: 34px;
		padding: 0;
		color: #15afef;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		text-indent: 0
	}

	.am-list-news-one .am-list .am-list-item-desced a.am-list-item-hd:before {
		display: none
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-item-text {
		color: #666;
		line-height: 22px;
		font-size: 1.4rem;
		max-height: none;
		margin-bottom: 8px
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-item-text a {
		color: #666
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-main {
		padding: 0 5px;
		position: relative
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-main .am-list-date {
		position: absolute;
		right: 5px;
		top: 3.5rem;
		font-size: 1.2rem;
		color: #888
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-main .am-list-item-text {
		max-height: 3rem;
		overflow: hidden;
		font-size: 1.2rem;
		line-height: 18px;
		color: #666
	}

	.am-list-news-one .am-list .am-list-item-desced .am-list-main .am-list-item-text a {
		color: #666
	}

	.am-list-news-one .am-list .am-list-item-thumbed {
		border-bottom: 1px dashed #dfdfdf;
		padding: 0 0 5px 0
	}

	.am-list-news-one .am-list .am-list-item-thumbed:before {
		content: none
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-item-hd {
		font-weight: 400;
		height: 30px;
		line-height: 30px;
		margin-bottom: 0
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-item-hd a {
		font-size: 1.5rem;
		color: #15afef;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		padding: 0;
		text-indent: 0
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-thumb {
		padding: 0;
		height: 60px
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-thumb a {
		width: 100%;
		display: block;
		padding: 0;
		text-indent: 0;
		height: 60px
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-thumb a img {
		width: 100%;
		height: 60px;
		vertical-align: top
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-main {
		padding: 0 5px 14px 5px;
		position: relative
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-date {
		position: absolute;
		right: 5px;
		top: 3.5rem;
		font-size: 1.2rem;
		color: #888
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-item-text {
		max-height: 3rem;
		overflow: hidden;
		font-size: 1.2rem;
		line-height: 18px;
		color: #666
	}

	.am-list-news-one .am-list .am-list-item-thumbed .am-list-item-text a {
		color: #666
	}

	.am-list-news-one .am-list-news-more {
		background: #dfdfdf;
		color: #666;
		height: 35px;
		line-height: 35px;
		font-size: 1.4rem;
		display: block;
		border: 0;
		border-radius: 0;
		padding: 0
	}

	@media only screen and (max-width:640px) {

		.am-list-news-one .am-list-item-thumb-left .am-list-thumb,
		.am-list-news-one .am-list-item-thumb-right .am-list-thumb {
			max-height: 80px;
			overflow: hidden
		}

		.am-list-news-one .am-list-item-thumb-bottom-left .am-list-item-text,
		.am-list-news-one .am-list-item-thumb-bottom-right .am-list-item-text {
			-webkit-line-clamp: 3;
			max-height: 3.9em
		}

		.am-list-news-one .am-list-item-thumb-bottom-left .am-list-thumb,
		.am-list-news-one .am-list-item-thumb-bottom-right .am-list-thumb {
			max-height: 60px;
			overflow: hidden
		}
	}

	.am-map {
		width: 100%;
		height: 300px
	}

	.am-map-default #bd-map {
		width: 100%;
		height: 100%;
		overflow: hidden;
		margin: 0;
		font-size: 14px;
		line-height: 1.4 !important
	}

	.am-map-default .BMap_bubble_title {
		font-weight: 700
	}

	.am-map-default #BMap_mask {
		width: 100%
	}

	.am-mechat {
		margin: 1rem
	}

	.am-mechat .section-cbox-wap .cbox-post-wap .post-action-wap .action-function-wap .function-list-wap .list-upload-wap .upload-mutual-wap {
		-webkit-box-sizing: content-box;
		box-sizing: content-box
	}

	.am-menu {
		position: relative;
		padding: 0;
		margin: 0
	}

	.am-menu ul {
		padding: 0;
		margin: 0
	}

	.am-menu li {
		list-style: none
	}

	.am-menu a:after,
	.am-menu a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale
	}

	.am-menu-sub {
		z-index: 1050
	}

	.am-menu-toggle {
		display: none
	}

	.am-menu-toggle img {
		display: inline-block;
		height: 16px;
		width: auto;
		vertical-align: middle
	}

	.am-menu-nav a {
		display: block;
		padding: .8rem 0;
		-webkit-transition: all .45s;
		transition: all .45s
	}

	.am-menu-default .am-menu-nav {
		padding-top: 8px;
		padding-bottom: 8px
	}

	.am-menu-default .am-menu-nav a {
		text-align: center;
		height: 36px;
		line-height: 36px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		padding: 0;
		color: #0e90d2
	}

	.am-menu-default .am-menu-nav>.am-parent>a {
		position: relative;
		-webkit-transition: .15s;
		transition: .15s
	}

	.am-menu-default .am-menu-nav>.am-parent>a:after {
		content: "\f107";
		margin-left: 5px;
		-webkit-transition: .15s;
		transition: .15s
	}

	.am-menu-default .am-menu-nav>.am-parent>a:before {
		position: absolute;
		top: 100%;
		margin-top: -16px;
		left: 50%;
		margin-left: -12px;
		content: "\f0d8";
		display: none;
		color: #f1f1f1;
		font-size: 24px
	}

	.am-menu-default .am-menu-nav>.am-parent.am-open>a {
		color: #095f8a
	}

	.am-menu-default .am-menu-nav>.am-parent.am-open>a:before {
		display: block
	}

	.am-menu-default .am-menu-nav>.am-parent.am-open>a:after {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg)
	}

	.am-menu-default .am-menu-sub {
		position: absolute;
		left: 5px;
		right: 5px;
		background-color: #f1f1f1;
		border-radius: 0;
		padding-top: 8px;
		padding-bottom: 8px
	}

	.am-menu-default .am-menu-sub>li>a {
		color: #555
	}

	@media only screen and (min-width:641px) {
		.am-menu-default .am-menu-nav li {
			width: auto;
			float: left;
			clear: none;
			display: inline
		}

		.am-menu-default .am-menu-nav a {
			padding-left: 1.5rem;
			padding-right: .5rem
		}
	}

	.am-menu-dropdown1 {
		position: relative
	}

	.am-menu-dropdown1 .am-menu-toggle {
		position: absolute;
		right: 5px;
		top: -47px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		text-align: center;
		color: #fff
	}

	.am-menu-dropdown1 a {
		-webkit-transition: all .4s;
		transition: all .4s;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-menu-dropdown1 .am-menu-nav {
		position: absolute;
		left: 0;
		right: 0;
		z-index: 1050
	}

	.am-menu-dropdown1 .am-menu-nav a {
		padding: .8rem
	}

	.am-menu-dropdown1 .am-menu-nav>li {
		width: 100%
	}

	.am-menu-dropdown1 .am-menu-nav>li.am-parent>a {
		position: relative
	}

	.am-menu-dropdown1 .am-menu-nav>li.am-parent>a::before {
		content: "\f067";
		position: absolute;
		right: 1rem;
		top: 1.4rem
	}

	.am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a {
		background-color: #0c80ba;
		border-bottom: none;
		color: #fff
	}

	.am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a:before {
		content: "\f068"
	}

	.am-menu-dropdown1 .am-menu-nav>li.am-parent.am-open>a:after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-top: 8px solid #0c80ba;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-bottom: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -4px
	}

	.am-menu-dropdown1 .am-menu-nav>li>a {
		border-bottom: 1px solid #0b76ac;
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		background-color: #0e90d2;
		color: #fff;
		height: 49px;
		line-height: 49px;
		padding: 0;
		text-indent: 10px
	}

	.am-menu-dropdown1 .am-menu-sub {
		background-color: #fff
	}

	.am-menu-dropdown1 .am-menu-sub a {
		color: #555;
		height: 44px;
		line-height: 44px;
		text-indent: 5px;
		padding: 0
	}

	.am-menu-dropdown1 .am-menu-sub a:before {
		content: "\f105";
		color: #aaa;
		font-size: 16px;
		margin-right: 5px
	}

	.am-menu-dropdown2 .am-menu-toggle {
		position: absolute;
		right: 5px;
		top: -47px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		text-align: center;
		color: #fff
	}

	.am-menu-dropdown2 .am-menu-nav {
		position: absolute;
		left: 0;
		right: 0;
		background-color: #f5f5f5;
		-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .2);
		box-shadow: 0 0 5px rgba(0, 0, 0, .2);
		z-index: 1050;
		padding-top: 8px;
		padding-bottom: 8px
	}

	.am-menu-dropdown2 .am-menu-nav a {
		height: 38px;
		line-height: 38px;
		padding: 0;
		text-align: center
	}

	.am-menu-dropdown2 .am-menu-nav>li>a {
		color: #333
	}

	.am-menu-dropdown2 .am-menu-nav>li.am-parent>a {
		position: relative
	}

	.am-menu-dropdown2 .am-menu-nav>li.am-parent>a:after {
		content: "\f107";
		margin-left: 5px;
		-webkit-transition: -webkit-transform .2s;
		transition: transform .2s
	}

	.am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a {
		position: relative
	}

	.am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a:after {
		color: #0e90d2;
		-webkit-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg)
	}

	.am-menu-dropdown2 .am-menu-nav>li.am-parent.am-open>a:before {
		position: absolute;
		top: 100%;
		margin-top: -16px;
		left: 50%;
		margin-left: -12px;
		font-size: 24px;
		content: "\f0d8";
		color: rgba(0, 0, 0, .2)
	}

	.am-menu-dropdown2 .am-menu-sub {
		position: absolute;
		left: 5px;
		right: 5px;
		padding: 8px 0;
		border-radius: 2px;
		-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
		box-shadow: 0 0 3px rgba(0, 0, 0, .15);
		background-color: #fff;
		z-index: 1055
	}

	.am-menu-dropdown2 .am-menu-sub a {
		padding: 0;
		height: 35px;
		color: #555;
		line-height: 35px
	}

	@media only screen and (min-width:641px) {
		.am-menu-dropdown2 .am-menu-toggle {
			display: none !important
		}

		.am-menu-dropdown2 .am-menu-nav {
			position: static;
			display: block
		}

		.am-menu-dropdown2 .am-menu-nav>li {
			float: none;
			width: auto;
			display: inline-block
		}

		.am-menu-dropdown2 .am-menu-nav>li a {
			padding-left: 1.5rem;
			padding-right: 1.5rem
		}

		.am-menu-dropdown2 .am-menu-sub {
			left: auto;
			right: auto
		}

		.am-menu-dropdown2 .am-menu-sub>li {
			float: none;
			width: auto
		}

		.am-menu-dropdown2 .am-menu-sub a {
			padding-left: 2rem;
			padding-right: 2rem
		}
	}

	.am-menu-slide1 .am-menu-toggle {
		position: absolute;
		right: 5px;
		top: -47px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		text-align: center;
		color: #fff
	}

	.am-menu-slide1 .am-menu-nav {
		background-color: #f5f5f5;
		padding-top: 8px;
		padding-bottom: 8px
	}

	.am-menu-slide1 .am-menu-nav.am-in:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f0d8";
		font-size: 24px;
		color: #f5f5f5;
		position: absolute;
		right: 16px;
		top: -16px
	}

	.am-menu-slide1 .am-menu-nav a {
		line-height: 38px;
		height: 38px;
		display: block;
		padding: 0;
		text-align: center
	}

	.am-menu-slide1 .am-menu-nav>li>a {
		color: #333;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-menu-slide1 .am-menu-nav>.am-parent>a {
		position: relative;
		-webkit-transition: .15s;
		transition: .15s
	}

	.am-menu-slide1 .am-menu-nav>.am-parent>a:after {
		content: "\f107";
		margin-left: 5px;
		-webkit-transition: .15s;
		transition: .15s
	}

	.am-menu-slide1 .am-menu-nav>.am-parent>a:before {
		position: absolute;
		top: 100%;
		margin-top: -16px;
		left: 50%;
		margin-left: -12px;
		content: "\f0d8";
		display: none;
		color: #0e90d2;
		font-size: 24px
	}

	.am-menu-slide1 .am-menu-nav>.am-parent.am-open>a {
		color: #0e90d2
	}

	.am-menu-slide1 .am-menu-nav>.am-parent.am-open>a:before {
		display: block
	}

	.am-menu-slide1 .am-menu-nav>.am-parent.am-open>a:after {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg)
	}

	.am-menu-slide1 .am-menu-sub {
		position: absolute;
		left: 5px;
		right: 5px;
		background-color: #0e90d2;
		border-radius: 0;
		padding-top: 8px;
		padding-bottom: 8px
	}

	.am-menu-slide1 .am-menu-sub>li>a {
		color: #fff
	}

	@media only screen and (min-width:641px) {
		.am-menu-slide1 .am-menu-toggle {
			display: none !important
		}

		.am-menu-slide1 .am-menu-nav {
			background-color: #f5f5f5;
			display: block
		}

		.am-menu-slide1 .am-menu-nav.am-in:before {
			display: none
		}

		.am-menu-slide1 .am-menu-nav li {
			width: auto;
			clear: none
		}

		.am-menu-slide1 .am-menu-nav li a {
			padding-left: 1.5rem;
			padding-right: 1.5rem
		}
	}

	.am-menu-offcanvas1 .am-menu-toggle {
		position: absolute;
		right: 5px;
		top: -47px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		text-align: center;
		color: #fff
	}

	.am-menu-offcanvas1 .am-menu-nav {
		border-bottom: 1px solid rgba(0, 0, 0, .3);
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .05)
	}

	.am-menu-offcanvas1 .am-menu-nav>li>a {
		height: 44px;
		line-height: 44px;
		text-indent: 15px;
		padding: 0;
		position: relative;
		color: #ccc;
		border-top: 1px solid rgba(0, 0, 0, .3);
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		text-shadow: 0 1px 0 rgba(0, 0, 0, .5)
	}

	.am-menu-offcanvas1 .am-menu-nav>.am-open>a,
	.am-menu-offcanvas1 .am-menu-nav>li>a:hover,
	.am-menu-offcanvas1 .am-menu-nav>li>a:focus {
		background-color: #474747;
		color: #fff;
		outline: 0
	}

	.am-menu-offcanvas1 .am-menu-nav>.am-active>a {
		background-color: #1a1a1a;
		color: #fff
	}

	.am-menu-offcanvas1 .am-menu-nav>.am-parent>a {
		-webkit-transition: all .3s;
		transition: all .3s
	}

	.am-menu-offcanvas1 .am-menu-nav>.am-parent>a:after {
		content: "\f104";
		position: absolute;
		right: 1.5rem;
		top: 1.3rem
	}

	.am-menu-offcanvas1 .am-menu-nav>.am-parent.am-open>a:after {
		content: "\f107"
	}

	.am-menu-offcanvas1 .am-menu-sub {
		border-top: 1px solid rgba(0, 0, 0, .3);
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		padding: 5px 0 5px 15px;
		background-color: #1a1a1a;
		font-size: 1.4rem
	}

	.am-menu-offcanvas1 .am-menu-sub a {
		color: #eee
	}

	.am-menu-offcanvas1 .am-menu-sub a:hover {
		color: #fff
	}

	.am-menu-offcanvas1 .am-nav-divider {
		border-top: 1px solid #1a1a1a
	}

	.am-menu-offcanvas2 .am-menu-toggle {
		position: absolute;
		right: 5px;
		top: -47px;
		display: block;
		width: 44px;
		height: 44px;
		line-height: 44px;
		text-align: center;
		color: #fff
	}

	.am-menu-offcanvas2 .am-menu-nav {
		padding: 10px 5px
	}

	.am-menu-offcanvas2 .am-menu-nav>li {
		padding: 5px
	}

	.am-menu-offcanvas2 .am-menu-nav>li>a {
		-webkit-transition: all .3s;
		transition: all .3s;
		background-color: #404040;
		color: #ccc;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		border: 1px solid rgba(0, 0, 0, .3);
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
		height: 44px;
		line-height: 44px;
		padding: 0;
		text-align: center
	}

	.am-menu-offcanvas2 .am-menu-nav>li>a:hover,
	.am-menu-offcanvas2 .am-menu-nav>li>a:focus {
		background-color: #262626;
		color: #fff;
		outline: 0
	}

	.am-menu-offcanvas2 .am-menu-nav>.am-active>a {
		background-color: #262626;
		color: #fff
	}

	.am-menu-stack .am-menu-nav {
		border-bottom: 1px solid #dedede;
		-webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: 0 1px 0 rgba(255, 255, 255, .05)
	}

	.am-menu-stack .am-menu-nav>.am-parent>a {
		-webkit-transition: all .3s;
		transition: all .3s
	}

	.am-menu-stack .am-menu-nav>.am-parent>a:after {
		content: "\f105";
		position: absolute;
		right: 1.5rem;
		top: 1.3rem;
		-webkit-transition: all .15s;
		transition: all .15s
	}

	.am-menu-stack .am-menu-nav>.am-parent.am-open>a:after {
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.am-menu-stack .am-menu-nav>li>a {
		position: relative;
		color: #333;
		background-color: #f5f5f5;
		border-top: 1px solid #dedede;
		-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
		height: 49px;
		line-height: 49px;
		text-indent: 10px;
		padding: 0
	}

	.am-menu-stack .am-menu-nav>.am-open>a,
	.am-menu-stack .am-menu-nav>li>a:hover,
	.am-menu-stack .am-menu-nav>li>a:focus {
		background-color: #e5e5e5;
		color: #222;
		outline: 0
	}

	.am-menu-stack .am-menu-sub {
		padding: 0;
		font-size: 1.4rem;
		border-top: 1px solid #dedede
	}

	.am-menu-stack .am-menu-sub a {
		border-bottom: 1px solid #dedede;
		padding-left: 2rem;
		color: #444
	}

	.am-menu-stack .am-menu-sub a:hover {
		color: #333
	}

	.am-menu-stack .am-menu-sub li:last-child a {
		border-bottom: none
	}

	.am-menu-stack .am-menu-sub>li>a {
		height: 44px;
		line-height: 44px;
		text-indent: 15px;
		padding: 0
	}

	@media only screen and (min-width:641px) {
		.am-menu-stack .am-menu-nav {
			background-color: #f5f5f5
		}

		.am-menu-stack .am-menu-nav>li {
			float: left;
			width: auto;
			clear: none !important;
			display: inline-block
		}

		.am-menu-stack .am-menu-nav>li a {
			padding-left: 1.5rem;
			padding-right: 1.5rem
		}

		.am-menu-stack .am-menu-nav>li.am-parent>a:after {
			position: static;
			content: "\f107"
		}

		.am-menu-stack .am-menu-nav>li.am-parent.am-open a {
			border-bottom: none
		}

		.am-menu-stack .am-menu-nav>li.am-parent.am-open a:after {
			-webkit-transform: rotateX(-180deg);
			transform: rotateX(-180deg)
		}

		.am-menu-stack .am-menu-nav>li.am-parent.am-open .am-menu-sub {
			background-color: #e5e5e5
		}

		.am-menu-stack .am-menu-sub {
			position: absolute;
			left: 0;
			right: 0;
			background-color: #ddd;
			border-top: none
		}

		.am-menu-stack .am-menu-sub li {
			width: auto;
			float: left;
			clear: none
		}
	}

	.am-menu-one {
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 10px;
		background-color: #f5f5f5;
		-webkit-box-shadow: 0 2px 10px #d7d7d7;
		box-shadow: 0 2px 10px #d7d7d7;
		height: 40px
	}

	.am-menu-one .am-menu-nav-wrap {
		overflow: hidden
	}

	.am-menu-one .am-menu-nav {
		height: 40px
	}

	.am-menu-one .am-menu-nav:before,
	.am-menu-one .am-menu-nav:after {
		content: " ";
		display: table
	}

	.am-menu-one .am-menu-nav:after {
		clear: both
	}

	.am-menu-one .am-menu-nav>li {
		float: left;
		clear: none;
		width: auto
	}

	.am-menu-one .am-menu-nav>li>a {
		display: block;
		height: 40px;
		line-height: 40px;
		padding: 0 10px;
		color: #7d7d7d
	}

	.am-menu-one .am-menu-nav .am-active>a {
		color: #555;
		border-bottom: 2px solid #15afef
	}

	.am-menu-one .am-menu-nav .am-open>a {
		position: relative
	}

	.am-menu-one .am-menu-nav .am-open>a:before {
		position: absolute;
		top: 100%;
		left: 50%;
		margin-top: -6px;
		margin-left: -6px;
		content: '';
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-bottom: 6px solid #15afef;
		border-right: 6px solid transparent;
		border-left: 6px solid transparent;
		border-top: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}

	.am-menu-one .am-menu-nav-sub-wrap {
		position: relative;
		z-index: 1050
	}

	.am-menu-one .am-menu-sub {
		position: absolute;
		top: 1px;
		left: -5px;
		right: -5px;
		background-color: #fff;
		border-radius: 2px;
		-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
		box-shadow: 0 0 3px rgba(0, 0, 0, .15)
	}

	.am-menu-one .am-menu-sub li {
		text-align: center
	}

	.am-menu-one .am-menu-sub a {
		padding: 0;
		color: #555;
		line-height: 40px
	}

	.am-navbar {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 49px;
		line-height: 49px;
		z-index: 1010
	}

	.am-navbar ul {
		padding-left: 0;
		margin: 0;
		list-style: none;
		width: 100%
	}

	.am-navbar .am-navbar-nav {
		padding-left: 8px;
		padding-right: 8px;
		text-align: center;
		overflow: hidden;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-navbar .am-navbar-nav li {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		float: none
	}

	.am-navbar-nav {
		position: relative;
		z-index: 1015
	}

	.am-navbar-nav a {
		display: inline-block;
		width: 100%;
		height: 49px;
		line-height: 20px
	}

	.am-navbar-nav a img {
		display: block;
		vertical-align: middle;
		height: 24px;
		width: 24px;
		margin: 4px auto 0
	}

	.am-navbar-nav a [class*=am-icon] {
		width: 24px;
		height: 24px;
		margin: 4px auto 0;
		display: block;
		line-height: 24px
	}

	.am-navbar-nav a [class*=am-icon]:before {
		font-size: 22px;
		vertical-align: middle
	}

	.am-navbar-nav a .am-navbar-label {
		padding-top: 2px;
		line-height: 1;
		font-size: 12px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-navbar-more [class*=am-icon-] {
		-webkit-transition: .15s;
		transition: .15s
	}

	.am-navbar-more.am-active [class*=am-icon-] {
		-webkit-transform: rotateX(-180deg);
		transform: rotateX(-180deg)
	}

	.am-navbar-actions {
		position: absolute;
		bottom: 49px;
		right: 0;
		left: 0;
		z-index: 1009;
		opacity: 0;
		-webkit-transition: .3s;
		transition: .3s;
		-webkit-transform: translate(0, 100%);
		-ms-transform: translate(0, 100%);
		transform: translate(0, 100%)
	}

	.am-navbar-actions.am-active {
		opacity: 1;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0)
	}

	.am-navbar-actions li {
		line-height: 42px;
		position: relative
	}

	.am-navbar-actions li a {
		display: block;
		width: 100%;
		height: 40px;
		-webkit-box-shadow: inset 0 1px rgba(220, 220, 220, .25);
		box-shadow: inset 0 1px rgba(220, 220, 220, .25);
		padding-left: 20px;
		padding-right: 36px
	}

	.am-navbar-actions li a :after {
		font-family: FontAwesome, sans-serif;
		content: "\f105";
		display: inline-block;
		position: absolute;
		top: 0;
		right: 20px
	}

	.am-navbar-actions li a img {
		vertical-align: middle;
		height: 20px;
		width: 20px;
		display: inline
	}

	#am-navbar-qrcode {
		width: 220px;
		height: 220px;
		margin-left: -110px
	}

	#am-navbar-qrcode .am-modal-bd {
		padding: 10px
	}

	#am-navbar-qrcode canvas {
		display: block;
		width: 200px;
		height: 200px
	}

	.am-with-fixed-navbar {
		padding-bottom: 54px
	}

	.am-navbar-default a {
		color: #fff
	}

	.am-navbar-default .am-navbar-nav {
		background-color: #0e90d2
	}

	.am-navbar-default .am-navbar-actions {
		background-color: #0d86c4
	}

	.am-navbar-default .am-navbar-actions a {
		border-bottom: 1px solid #0b6fa2
	}

	.am-navbar-one a {
		color: #fff
	}

	.am-navbar-one .am-navbar-nav {
		background-color: #15afef
	}

	.am-navbar-one .am-navbar-actions {
		background-color: #0f9fdb
	}

	.am-navbar-one .am-navbar-actions a {
		border-bottom: 1px solid #0d87ba
	}

	.am-pagination {
		position: relative
	}

	.am-pagination-default {
		margin-left: 10px;
		margin-right: 10px;
		font-size: 1.6rem
	}

	.am-pagination-default .am-pagination-prev,
	.am-pagination-default .am-pagination-next {
		float: none
	}

	.am-pagination-select {
		margin-left: 10px;
		margin-right: 10px;
		font-size: 1.6rem
	}

	.am-pagination-select>li>a {
		line-height: 36px;
		background-color: #eee;
		padding: 0 15px;
		border: 0;
		color: #555
	}

	.am-pagination-select .am-pagination-select {
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -35px;
		width: 70px;
		height: 36px;
		text-align: center;
		border-radius: 0
	}

	.am-pagination-select .am-pagination-select select {
		display: block;
		border: 0;
		line-height: 36px;
		width: 70px;
		height: 36px;
		border-radius: 0;
		color: #555;
		background-color: #eee;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		padding-left: 18px
	}

	.am-pagination-one {
		margin-left: 10px;
		margin-right: 10px;
		text-align: center
	}

	.am-pagination-one>li>a {
		line-height: 36px;
		background-color: #fff;
		padding: 0 15px;
		color: #555
	}

	.am-pagination-one .am-pagination-select {
		float: left;
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: -25px;
		width: 50px;
		height: 36px;
		text-align: center
	}

	.am-pagination-one .am-pagination-select select {
		display: block;
		line-height: 36px;
		width: 50px;
		height: 36px;
		border-radius: 0;
		text-align: center;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		padding-left: 18px;
		background: #fff;
		border: 1px solid #dfdfdf;
		color: #555
	}

	.am-paragraph p {
		margin: 10px 0
	}

	.am-paragraph img {
		max-width: 100%
	}

	.am-paragraph h1,
	.am-paragraph h2,
	.am-paragraph h3,
	.am-paragraph h4,
	.am-paragraph h5,
	.am-paragraph h6 {
		color: #222
	}

	.am-paragraph table {
		max-width: none
	}

	.am-paragraph-table-container {
		overflow: hidden;
		background: #eee;
		max-width: none
	}

	.am-paragraph-table-container table {
		width: 100%;
		max-width: none
	}

	.am-paragraph-table-container table th {
		background: #bce5fb;
		height: 40px;
		border: 1px solid #999;
		text-align: center
	}

	.am-paragraph-table-container table td {
		border: 1px solid #999;
		text-align: center;
		vertical-align: middle;
		background: #fff
	}

	.am-paragraph-table-container table td p {
		text-indent: 0;
		font-size: 1.4rem
	}

	.am-paragraph-table-container table td a {
		font-size: 1.4rem
	}

	.am-paragraph-default {
		margin: 0 10px;
		color: #333;
		background-color: transparent
	}

	.am-paragraph-default p {
		font-size: 1.4rem
	}

	.am-paragraph-default img {
		max-width: 98%;
		display: block;
		margin: 5px auto;
		border: 1px solid #eee;
		padding: 2px
	}

	.am-paragraph-default a {
		color: #0e90d2
	}

	.am-paragraph-one {
		color: #555;
		background: #fff;
		margin: 0 10px;
		padding: 4px
	}

	.am-paragraph-one h1,
	.am-paragraph-one h2,
	.am-paragraph-one h3,
	.am-paragraph-one h4,
	.am-paragraph-one h5,
	.am-paragraph-one h6 {
		color: #333;
		font-weight: 400;
		margin-top: 0
	}

	.am-paragraph-one h1 {
		font-size: 2rem
	}

	.am-paragraph-one h2,
	.am-paragraph-one h3 {
		font-size: 1.8rem
	}

	.am-paragraph-one h4,
	.am-paragraph-one h5 {
		font-size: 1.6rem
	}

	.am-paragraph-one h6 {
		font-size: 1.4rem
	}

	.am-paragraph-one hr {
		background: #dfdfdf;
		height: 1px;
		border: 0;
		overflow: hidden
	}

	.am-paragraph-one img {
		max-width: 100%;
		display: block;
		margin: 5px 0
	}

	.am-paragraph-one a {
		color: #333
	}

	.am-paragraph-one p,
	.am-paragraph-one div,
	.am-paragraph-one table {
		font-size: 1.4rem;
		margin: 0 0 1rem 0
	}

	.am-paragraph-one ul,
	.am-paragraph-one ol {
		padding-left: 0
	}

	.am-paragraph-one li {
		list-style: none;
		font-size: 1.4rem
	}

	.am-slider-a1 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-a1 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-a1 .am-viewport {
		max-height: 300px
	}

	.am-slider-a1 .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: 5px;
		text-align: center;
		line-height: 0
	}

	.am-slider-a1 .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-a1 .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px;
		border-radius: 50%;
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
	}

	.am-slider-a1 .am-control-nav li a:hover {
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-a1 .am-control-nav li a.am-active {
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-a1 .am-direction-nav,
	.am-slider-a1 .am-pauseplay {
		display: none
	}

	.am-slider-a2 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-a2 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-a2 .am-viewport {
		max-height: 300px
	}

	.am-slider-a2 .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: 5px;
		text-align: center;
		line-height: 0
	}

	.am-slider-a2 .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-a2 .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px;
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
	}

	.am-slider-a2 .am-control-nav li a:hover {
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-a2 .am-control-nav li a.am-active {
		background: #0e93d7;
		cursor: default
	}

	.am-slider-a2 .am-direction-nav,
	.am-slider-a2 .am-pauseplay {
		display: none
	}

	.am-slider-a3 {
		margin-bottom: 20px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-a3 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-a3 .am-viewport {
		max-height: 300px
	}

	.am-slider-a3 .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: -20px;
		text-align: center;
		height: 20px;
		background-color: #000;
		padding-top: 5px;
		line-height: 0
	}

	.am-slider-a3 .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-a3 .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px;
		border-radius: 50%;
		-webkit-box-shadow: inset 0 0 3px rgba(200, 200, 200, .3);
		box-shadow: inset 0 0 3px rgba(200, 200, 200, .3)
	}

	.am-slider-a3 .am-control-nav li a:hover {
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-a3 .am-control-nav li a.am-active {
		background: #0e90d2;
		cursor: default
	}

	.am-slider-a3 .am-direction-nav,
	.am-slider-a3 .am-pauseplay {
		display: none
	}

	.am-slider-a4 {
		margin-bottom: 30px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-a4 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-a4 .am-viewport {
		max-height: 300px
	}

	.am-slider-a4 .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: -15px;
		text-align: center;
		line-height: 0
	}

	.am-slider-a4 .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-a4 .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px;
		border-radius: 50%;
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
	}

	.am-slider-a4 .am-control-nav li a:hover {
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-a4 .am-control-nav li a.am-active {
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-a4 .am-direction-nav,
	.am-slider-a4 .am-pauseplay {
		display: none
	}

	.am-slider-a5 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-a5 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-a5 .am-viewport {
		max-height: 300px
	}

	.am-slider-a5 .am-control-nav {
		width: 100%;
		position: absolute;
		text-align: center;
		height: 6px;
		display: table;
		bottom: 0;
		font-size: 0;
		line-height: 0
	}

	.am-slider-a5 .am-control-nav li {
		display: table-cell
	}

	.am-slider-a5 .am-control-nav li a {
		width: 100%;
		height: 6px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px
	}

	.am-slider-a5 .am-control-nav li a:hover {
		background-color: rgba(0, 0, 0, .7)
	}

	.am-slider-a5 .am-control-nav li a.am-active {
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-a5 .am-direction-nav,
	.am-slider-a5 .am-pauseplay {
		display: none
	}

	.am-slider-b1 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-b1 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-b1 .am-viewport {
		max-height: 300px
	}

	.am-slider-b1 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		padding: 8px 0;
		margin: -20px 0 0;
		position: absolute;
		top: 50%;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: #fff;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		background-color: rgba(0, 0, 0, .5);
		font-size: 0;
		text-align: center;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-b1 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 24px
	}

	.am-slider-b1 .am-direction-nav a.am-prev {
		left: 0;
		padding-right: 5px;
		border-bottom-right-radius: 5px;
		border-top-right-radius: 5px
	}

	.am-slider-b1 .am-direction-nav a.am-next {
		right: 0;
		padding-left: 5px;
		border-bottom-left-radius: 5px;
		border-top-left-radius: 5px
	}

	.am-slider-b1 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-b1 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-b1:hover .am-prev {
		opacity: .7
	}

	.am-slider-b1:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-b1:hover .am-next {
		opacity: .7
	}

	.am-slider-b1:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-b1 .am-control-nav,
	.am-slider-b1 .am-pauseplay {
		display: none
	}

	.am-slider-b2 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-b2 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-b2 .am-viewport {
		max-height: 300px
	}

	.am-slider-b2 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		padding: 4px;
		margin: -16px 0 0;
		position: absolute;
		top: 50%;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: #fff;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		background-color: rgba(0, 0, 0, .5);
		font-size: 0;
		text-align: center;
		border-radius: 50%;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-b2 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 16px;
		line-height: 24px
	}

	.am-slider-b2 .am-direction-nav a.am-prev {
		left: 5px
	}

	.am-slider-b2 .am-direction-nav a.am-next {
		right: 5px
	}

	.am-slider-b2 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-b2 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-b2:hover .am-prev {
		opacity: .7
	}

	.am-slider-b2:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-b2:hover .am-next {
		opacity: .7
	}

	.am-slider-b2:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-b2 .am-control-nav,
	.am-slider-b2 .am-pauseplay {
		display: none
	}

	.am-slider-b3 {
		margin: 15px 30px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-b3 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-b3 .am-viewport {
		max-height: 300px
	}

	.am-slider-b3 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		padding: 4px;
		margin: -16px 0 0;
		position: absolute;
		top: 50%;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: #333;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		font-size: 0;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-b3 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 24px
	}

	.am-slider-b3 .am-direction-nav a.am-prev {
		left: -25px
	}

	.am-slider-b3 .am-direction-nav a.am-next {
		right: -25px;
		text-align: right
	}

	.am-slider-b3 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-b3 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-b3:hover .am-prev {
		opacity: .7
	}

	.am-slider-b3:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-b3:hover .am-next {
		opacity: .7
	}

	.am-slider-b3:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-b3 .am-control-nav,
	.am-slider-b3 .am-pauseplay {
		display: none
	}

	.am-slider-b4 {
		margin: 15px 20px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-b4 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-b4 .am-viewport {
		max-height: 300px
	}

	.am-slider-b4 .am-direction-nav a {
		position: absolute;
		top: 50%;
		z-index: 10;
		display: block;
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		width: 24px;
		height: 24px;
		margin: -16px 0 0;
		padding: 4px;
		overflow: hidden;
		opacity: .45;
		background-color: rgba(0, 0, 0, .8);
		cursor: pointer;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		font-size: 0;
		border-radius: 50%;
		text-align: center;
		color: #fff;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-b4 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 20px;
		line-height: 24px
	}

	.am-slider-b4 .am-direction-nav a.am-prev {
		left: -15px
	}

	.am-slider-b4 .am-direction-nav a.am-next {
		right: -15px
	}

	.am-slider-b4 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-b4 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-b4:hover .am-prev {
		opacity: .7
	}

	.am-slider-b4:hover .am-prev:hover {
		opacity: .9
	}

	.am-slider-b4:hover .am-next {
		opacity: .7
	}

	.am-slider-b4:hover .am-next:hover {
		opacity: .9
	}

	.am-slider-b4 .am-control-nav,
	.am-slider-b4 .am-pauseplay {
		display: none
	}

	.am-slider-c1 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-c1 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-c1 .am-viewport {
		max-height: 300px
	}

	.am-slider-c1 .am-control-nav {
		position: absolute;
		bottom: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		height: 6px;
		font-size: 0;
		line-height: 0;
		text-align: center
	}

	.am-slider-c1 .am-control-nav li {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	.am-slider-c1 .am-control-nav li a {
		width: 100%;
		height: 6px;
		display: block;
		background-color: rgba(0, 0, 0, .7);
		cursor: pointer;
		text-indent: -9999px
	}

	.am-slider-c1 .am-control-nav li a:hover {
		background: rgba(0, 0, 0, .8)
	}

	.am-slider-c1 .am-control-nav li a.am-active {
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-c1 .am-slider-desc {
		background-color: rgba(0, 0, 0, .6);
		position: absolute;
		bottom: 6px;
		padding: 8px;
		width: 100%;
		color: #fff;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-c1 .am-direction-nav,
	.am-slider-c1 .am-pauseplay {
		display: none
	}

	.am-slider-c2 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-c2 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-c2 .am-viewport {
		max-height: 300px
	}

	.am-slider-c2 .am-control-nav {
		position: absolute;
		bottom: 15px;
		right: 0;
		height: 6px;
		text-align: center;
		font-size: 0;
		line-height: 0
	}

	.am-slider-c2 .am-control-nav li {
		display: inline-block;
		margin-right: 6px
	}

	.am-slider-c2 .am-control-nav li a {
		width: 6px;
		height: 6px;
		display: block;
		background-color: rgba(255, 255, 255, .4);
		cursor: pointer;
		text-indent: -9999px
	}

	.am-slider-c2 .am-control-nav li a:hover {
		background: rgba(230, 230, 230, .4)
	}

	.am-slider-c2 .am-control-nav li a.am-active {
		background-color: #0e90d2;
		cursor: default
	}

	.am-slider-c2 .am-slider-desc {
		background-color: rgba(0, 0, 0, .6);
		position: absolute;
		bottom: 0;
		padding: 8px 60px 8px 8px;
		width: 100%;
		color: #fff;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-c2 .am-direction-nav,
	.am-slider-c2 .am-pauseplay {
		display: none
	}

	.am-slider-c3 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-c3 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-c3 .am-viewport {
		max-height: 300px
	}

	.am-slider-c3 .am-slider-desc {
		background-color: rgba(0, 0, 0, .6);
		position: absolute;
		bottom: 10px;
		right: 60px;
		height: 30px;
		left: 0;
		padding-right: 5px;
		color: #fff;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-c3 .am-slider-counter {
		margin-right: 5px;
		display: inline-block;
		height: 30px;
		background-color: #0e90d2;
		width: 40px;
		text-align: center;
		line-height: 30px;
		color: #eee;
		font-size: 1rem
	}

	.am-slider-c3 .am-slider-counter .am-active {
		font-size: 1.8rem;
		font-weight: 700;
		color: #fff
	}

	.am-slider-c3 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		padding: 4px 0;
		margin: -16px 0 0;
		position: absolute;
		top: 50%;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: #fff;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		background-color: rgba(0, 0, 0, .5);
		font-size: 0;
		text-align: center;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-c3 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 16px;
		line-height: 24px
	}

	.am-slider-c3 .am-direction-nav a.am-prev {
		left: 0;
		padding-right: 5px
	}

	.am-slider-c3 .am-direction-nav a.am-next {
		right: 0;
		padding-left: 5px
	}

	.am-slider-c3 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-c3 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-c3:hover .am-prev {
		opacity: .7
	}

	.am-slider-c3:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-c3:hover .am-next {
		opacity: .7
	}

	.am-slider-c3:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-c3 .am-control-nav,
	.am-slider-c3 .am-pauseplay {
		display: none
	}

	.am-slider-c4 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-c4 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-c4 .am-viewport {
		max-height: 300px
	}

	.am-slider-c4 .am-slider-desc {
		width: 100%;
		background-color: rgba(0, 0, 0, .6);
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
		padding: 8px 40px;
		color: #fff;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-c4 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		padding: 4px 0;
		margin: 0;
		position: absolute;
		bottom: 4px;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		font-size: 0;
		text-align: center;
		color: rgba(0, 0, 0, .7);
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-c4 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 24px
	}

	.am-slider-c4 .am-direction-nav a.am-prev {
		left: 0;
		padding-right: 5px
	}

	.am-slider-c4 .am-direction-nav a.am-next {
		right: 0;
		padding-left: 5px
	}

	.am-slider-c4 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-c4 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-c4:hover .am-prev {
		opacity: .7
	}

	.am-slider-c4:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-c4:hover .am-next {
		opacity: .7
	}

	.am-slider-c4:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-c4 .am-control-nav,
	.am-slider-c4 .am-pauseplay {
		display: none
	}

	.am-slider-d1 {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-d1 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-d1 .am-viewport {
		max-height: 300px
	}

	.am-slider-d1 .am-slider-desc {
		padding: 8px 35px;
		width: 100%;
		color: #fff;
		background-color: #0e90d2
	}

	.am-slider-d1 .am-slider-title {
		font-weight: 400;
		margin-bottom: 2px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-d1 .am-slider-more {
		color: #eee;
		font-size: 1.3rem
	}

	.am-slider-d1 .am-direction-nav a {
		-webkit-box-sizing: content-box;
		box-sizing: content-box;
		display: block;
		width: 24px;
		height: 24px;
		margin: 0;
		position: absolute;
		bottom: 18px;
		z-index: 10;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		font-size: 0;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, .9);
		color: rgba(255, 255, 255, .9);
		border-radius: 50%;
		-webkit-transition: all 3s ease;
		transition: all 3s ease
	}

	.am-slider-d1 .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		content: "\f053";
		font-size: 16px;
		line-height: 24px
	}

	.am-slider-d1 .am-direction-nav a.am-prev {
		left: 5px
	}

	.am-slider-d1 .am-direction-nav a.am-next {
		right: 5px
	}

	.am-slider-d1 .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-d1 .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-d1:hover .am-prev {
		opacity: .7
	}

	.am-slider-d1:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-d1:hover .am-next {
		opacity: .7
	}

	.am-slider-d1:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-d1 .am-control-nav,
	.am-slider-d1 .am-pauseplay {
		display: none
	}

	.am-slider-d2 {
		margin-bottom: 20px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-d2 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-d2 .am-viewport {
		max-height: 300px
	}

	.am-slider-d2 .am-slider-desc {
		position: absolute;
		left: 10px;
		bottom: 20px;
		right: 50px;
		color: #fff
	}

	.am-slider-d2 .am-slider-content {
		background-color: rgba(0, 0, 0, .7);
		padding: 10px 6px;
		margin-bottom: 10px
	}

	.am-slider-d2 .am-slider-content p {
		margin: 0;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		font-size: 1.4rem
	}

	.am-slider-d2 .am-slider-title {
		font-weight: 400;
		margin-bottom: 5px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-d2 .am-slider-more {
		color: #eee;
		font-size: 1.3rem;
		background-color: #0e90d2;
		padding: 2px 10px
	}

	.am-slider-d2 .am-control-nav {
		width: 100%;
		position: absolute;
		bottom: -15px;
		text-align: center
	}

	.am-slider-d2 .am-control-nav li {
		margin: 0 6px;
		display: inline-block
	}

	.am-slider-d2 .am-control-nav li a {
		width: 8px;
		height: 8px;
		display: block;
		background-color: rgba(0, 0, 0, .5);
		cursor: pointer;
		text-indent: -9999px;
		border-radius: 50%;
		font-size: 0;
		line-height: 0;
		-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
		box-shadow: inset 0 0 3px rgba(0, 0, 0, .3)
	}

	.am-slider-d2 .am-control-nav li a:hover {
		background: rgba(0, 0, 0, .5)
	}

	.am-slider-d2 .am-control-nav li a.am-active {
		background: #0e90d2;
		cursor: default
	}

	.am-slider-d2 .am-direction-nav,
	.am-slider-d2 .am-pauseplay {
		display: none
	}

	.am-slider-d3 {
		margin-bottom: 10px;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
	}

	.am-slider-d3 .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-d3 .am-viewport {
		max-height: 300px
	}

	.am-slider-d3 .am-slider-desc {
		position: absolute;
		bottom: 0;
		color: #fff;
		width: 100%;
		background-color: rgba(0, 0, 0, .7);
		padding: 8px 5px
	}

	.am-slider-d3 .am-slider-desc p {
		margin: 0;
		font-size: 1.3rem;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-d3 .am-slider-title {
		font-weight: 400;
		margin-bottom: 5px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-d3 .am-control-thumbs {
		position: static;
		overflow: hidden;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	.am-slider-d3 .am-control-thumbs li {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding: 12px 4px 4px;
		position: relative
	}

	.am-slider-d3 .am-control-thumbs img {
		width: 100%;
		display: block;
		opacity: .85;
		cursor: pointer
	}

	.am-slider-d3 .am-control-thumbs img:hover {
		opacity: 1
	}

	.am-slider-d3 .am-control-thumbs .am-active {
		opacity: 1;
		cursor: default
	}

	.am-slider-d3 .am-control-thumbs .am-active+i {
		position: absolute;
		top: 0;
		left: 50%;
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		vertical-align: middle;
		border-top: 8px solid rgba(0, 0, 0, .7);
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
		border-bottom: 0 dotted;
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
		margin-left: -4px;
		-webkit-transition: all .2s;
		transition: all .2s
	}

	.am-slider-d3 .am-direction-nav,
	.am-slider-d3 .am-pauseplay {
		display: none
	}

	.am-slider-one {
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .5);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .5);
		margin: 0 10px
	}

	.am-slider-one .am-viewport {
		max-height: 2000px;
		-webkit-transition: all 1s ease;
		transition: all 1s ease
	}

	.loading .am-slider-one .am-viewport {
		max-height: 300px
	}

	.am-slider-one .am-viewport .am-slider-desc {
		position: absolute;
		left: 0;
		bottom: 0;
		height: 26px;
		width: 100%;
		line-height: 26px;
		background: rgba(0, 0, 0, .5);
		color: #fff
	}

	.am-slider-one .am-viewport .am-slider-desc .am-slider-title {
		font-weight: 400;
		font-size: 12px;
		text-indent: 4px;
		padding-right: 80px;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-slider-one .am-control-nav {
		display: none
	}

	.am-slider-one .am-direction-nav a {
		position: absolute;
		top: 50%;
		z-index: 10;
		display: block;
		width: 24px;
		height: 24px;
		margin: -12px 0 0;
		overflow: hidden;
		opacity: .45;
		cursor: pointer;
		color: rgba(0, 0, 0, .8);
		text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.am-slider-one .am-direction-nav a:before {
		display: inline-block;
		font-family: FontAwesome, sans-serif;
		font-weight: 400;
		font-style: normal;
		vertical-align: baseline;
		line-height: 1;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		color: rgba(0, 0, 0, .7);
		content: "\f053";
		font-size: 24px
	}

	.am-slider-one .am-direction-nav a.am-next:before {
		content: "\f054"
	}

	.am-slider-one .am-direction-nav .am-prev {
		left: 10px
	}

	.am-slider-one .am-direction-nav .am-next {
		right: 10px;
		text-align: right
	}

	.am-slider-one .am-direction-nav .am-disabled {
		opacity: 0 !important;
		cursor: default
	}

	.am-slider-one:hover .am-prev {
		opacity: .7;
		left: 10px
	}

	.am-slider-one:hover .am-prev:hover {
		opacity: 1
	}

	.am-slider-one:hover .am-next {
		opacity: .7;
		right: 10px
	}

	.am-slider-one:hover .am-next:hover {
		opacity: 1
	}

	.am-slider-one .am-pauseplay {
		display: none
	}

	[data-am-widget=tabs] {
		margin: 10px
	}

	[data-am-widget=tabs] .am-tabs-nav {
		width: 100%;
		padding: 0;
		margin: 0;
		list-style: none;
		text-align: center;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}

	[data-am-widget=tabs] .am-tabs-nav li {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	[data-am-widget=tabs] .am-tabs-nav a {
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-tabs-default .am-tabs-nav {
		line-height: 40px;
		background-color: #eee
	}

	.am-tabs-default .am-tabs-nav a {
		color: #222;
		line-height: 42px
	}

	.am-tabs-default .am-tabs-nav>.am-active a {
		background-color: #0e90d2;
		color: #fff
	}

	.am-tabs-d2 .am-tabs-nav {
		background-color: #eee
	}

	.am-tabs-d2 .am-tabs-nav li {
		height: 42px
	}

	.am-tabs-d2 .am-tabs-nav a {
		color: #222;
		line-height: 42px
	}

	.am-tabs-d2 .am-tabs-nav>.am-active {
		position: relative;
		background-color: #fcfcfc;
		border-bottom: 2px solid #0e90d2
	}

	.am-tabs-d2 .am-tabs-nav>.am-active a {
		line-height: 40px;
		color: #0e90d2
	}

	.am-tabs-d2 .am-tabs-nav>.am-active:after {
		position: absolute;
		width: 0;
		height: 0;
		bottom: 0;
		left: 50%;
		margin-left: -5px;
		border: 6px transparent solid;
		content: "";
		z-index: 1;
		border-bottom-color: #0e90d2
	}

	.am-tabs-one {
		background: #fff
	}

	.am-tabs-one .am-tabs-nav {
		height: 36px;
		background-color: #fff;
		font-size: 14px;
		border-radius: 0
	}

	.am-tabs-one .am-tabs-nav a {
		line-height: 34px;
		color: #15afef
	}

	.am-tabs-one .am-tabs-nav li {
		border: 1px solid #15afef
	}

	.am-tabs-one .am-tabs-nav li:first-child {
		border-bottom-left-radius: 0;
		border-top-left-radius: 0
	}

	.am-tabs-one .am-tabs-nav li:last-child {
		border-bottom-right-radius: 0;
		border-top-right-radius: 0
	}

	.am-tabs-one .am-tabs-nav li+li {
		border-left: none
	}

	.am-tabs-one .am-tabs-nav .am-active a {
		background-color: #15afef;
		color: #fff
	}

	.am-tabs-one .am-tabs-bd {
		border: none
	}

	.am-tabs-one .am-tab-panel {
		padding: 15px 5px 20px
	}

	.am-titlebar {
		margin-top: 20px;
		height: 45px;
		font-size: 100%
	}

	.am-titlebar h2 {
		margin-top: 0;
		margin-bottom: 0;
		font-size: 1.6rem
	}

	.am-titlebar .am-titlebar-title img {
		height: 24px;
		width: auto
	}

	.am-titlebar-default {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin-left: 10px;
		margin-right: 10px;
		background-color: transparent;
		border-bottom: 1px solid #dedede;
		line-height: 44px
	}

	.am-titlebar-default a {
		color: #0e90d2
	}

	.am-titlebar-default .am-titlebar-title {
		position: relative;
		padding-left: 12px;
		color: #0e90d2;
		font-size: 1.8rem;
		text-align: left;
		font-weight: 700
	}

	.am-titlebar-default .am-titlebar-title:before {
		content: "";
		position: absolute;
		left: 2px;
		top: 8px;
		bottom: 8px;
		border-left: 3px solid #0e90d2
	}

	.am-titlebar-default .am-titlebar-nav {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: right
	}

	.am-titlebar-default .am-titlebar-nav a {
		margin-right: 10px
	}

	.am-titlebar-default .am-titlebar-nav a:last-child {
		margin-right: 5px
	}

	.am-titlebar-multi {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		background-color: #f5f5f5;
		border-top: 2px solid #3bb4f2;
		border-bottom: 1px solid #e8e8e8
	}

	.am-titlebar-multi a {
		color: #0e90d2
	}

	.am-titlebar-multi .am-titlebar-title {
		padding-left: 10px;
		color: #0e90d2;
		font-size: 1.8rem;
		text-align: left;
		font-weight: 700;
		line-height: 42px
	}

	.am-titlebar-multi .am-titlebar-nav {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: right;
		line-height: 42px
	}

	.am-titlebar-multi .am-titlebar-nav a {
		margin-right: 10px
	}

	.am-titlebar-cols {
		position: relative;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		padding-left: 10px;
		background-color: #f5f5f5;
		color: #555;
		font-size: 18px;
		border-top: 2px solid #e1e1e1;
		line-height: 41px
	}

	.am-titlebar-cols a {
		color: #555
	}

	.am-titlebar-cols .am-titlebar-title {
		color: #0e90d2;
		margin-right: 15px;
		border-bottom: 2px solid #0e90d2;
		font-weight: 700
	}

	.am-titlebar-cols .am-titlebar-title a {
		color: #0e90d2
	}

	.am-titlebar-cols .am-titlebar-nav {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1
	}

	.am-titlebar-cols .am-titlebar-nav a {
		display: inline-block;
		margin-right: 15px;
		line-height: 41px;
		border-bottom: 2px solid transparent
	}

	.am-titlebar-cols .am-titlebar-nav a:hover {
		color: #3c3c3c;
		border-bottom-color: #0e90d2
	}

	.am-titlebar-cols .am-titlebar-nav a:last-child {
		margin-right: 10px
	}

	.am-titlebar-one {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		margin-left: 10px;
		margin-right: 10px;
		height: 45px;
		line-height: 44px;
		background-color: #fff;
		overflow: hidden;
		border-bottom: 1px solid #15afef
	}

	.am-titlebar-one .am-titlebar-title {
		padding-left: 12px;
		position: relative;
		color: #222;
		display: block;
		word-wrap: normal;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden
	}

	.am-titlebar-one .am-titlebar-title:before {
		content: "";
		position: absolute;
		left: 2px;
		top: 8px;
		bottom: 8px;
		border-left: 3px solid #15afef
	}

	.am-titlebar-one .am-titlebar-title a {
		color: #222
	}

	.am-titlebar-one .am-titlebar-title img {
		height: 24px;
		vertical-align: top;
		margin-top: 10px
	}

	.am-titlebar-one .am-titlebar-title h1,
	.am-titlebar-one .am-titlebar-title h2,
	.am-titlebar-one .am-titlebar-title h3,
	.am-titlebar-one .am-titlebar-title h4,
	.am-titlebar-one .am-titlebar-title h5,
	.am-titlebar-one .am-titlebar-title h6,
	.am-titlebar-one .am-titlebar-title strong,
	.am-titlebar-one .am-titlebar-title em {
		font-style: normal;
		font-weight: 400;
		margin-bottom: 0
	}

	.am-titlebar-one .am-titlebar-title ul,
	.am-titlebar-one .am-titlebar-title li {
		list-style: none;
		padding-left: 0
	}

	.am-titlebar-one .am-titlebar-nav {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		text-align: right;
		padding-right: 5px;
		color: #999;
		font-size: 1.4rem
	}

	.am-titlebar-one .am-titlebar-nav a {
		color: #999
	}
	.met_article {
		margin-left: 49% !important;
		width: 100%;
	}
	.met_module3_list {
		width: 100% !important;
	}
}