﻿/**
 * Demo Bar
 */
 .html-demo {
 	overflow: hidden;
 	height: 100%;
 }
 body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 100%;
 }
 a {
	text-decoration: none;
 }
 ul {
	list-style: none;
 }
.wrap-switcher {
	width: 100%;
	z-index: 100;
	position: relative;
}
#switcher-inner {
	background: #fff;
	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.12);
	position: fixed;
	top: 0;
	width: 100%;
}
#switcher {
	max-width: 1024px;
	margin: 0 auto;
	backface-visibility: hidden;
	height: 50px;
	padding: 0;
	z-index: 1;
}
#switcher-inner {
	-webkit-transform: translateY(0%) translate3d(0px, 0px, 0px);
	-moz-transform: translateY(0%) translate3d(0px, 0px, 0px);
	transform: translateY(0%) translate3d(0px, 0px, 0px);
	-webkit-transition: transform 0.3s ease 0s;
	-moz-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
}
.switcher-hidden #switcher-inner {
	-webkit-transform: translateY(-100%) translate3d(0px, 0px, 0px);
	-moz-transform: translateY(-100%) translate3d(0px, 0px, 0px);
	transform: translateY(-100%) translate3d(0px, 0px, 0px);
}
#switcher .logo {
	float: left;
	margin: 0;
}
#switcher .logo a {
	float: left;
	margin: 0px 5px 0 20px;
	font-size: 38px;
	font-weight: bolder;
	line-height: 42px;
	color: #53aa39;
	text-decoration: none;
	outline: none;
}
#switcher ul.theme-select {
	float: left;
	width: 200px;
	background: #dddddd;
	padding: 0;
	margin: 4px 20px;
	outline: none;
}
#tname {
	cursor: pointer;
}
#switcher ul.theme-select.active ul {
	display: block;
}
#switcher ul.theme-select li#theme_list {
	border-radius: 4px;
	box-shadow: 0 0px 1px #AAA;
	background: #ffffff;
	background-image: url(img/arrow.png), -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
	background-image: url(img/arrow.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF), color-stop(100%,#E5E5E5));
	background-image: url(img/arrow.png), -webkit-linear-gradient(top, #FFF 0%,#E5E5E5 100%);
	background-image: url(img/arrow.png), -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	background-image: url(img/arrow.png), -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	background-image: url(img/arrow.png), linear-gradient(to bottom, #FFF 0%,#E5E5E5 100%);
	background-repeat: no-repeat;
	background-position: 95% 15px;
	list-style: none;
}
#switcher ul.theme-select.active li#theme_list {
	box-shadow: 0 0px 1px #AAA;
	background: #ffffff;
	background-image: url(img/arrow-active.png), -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
	background-image: url(img/arrow-active.png), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFF), color-stop(100%,#E5E5E5));
	background-image: url(img/arrow-active.png), -webkit-linear-gradient(top, #FFF 0%,#E5E5E5 100%);
	background-image: url(img/arrow-active.png), -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	background-image: url(img/arrow-active.png), -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	background-image: url(img/arrow-active.png), linear-gradient(to bottom, #FFF 0%,#E5E5E5 100%);
	background-repeat: no-repeat;
	background-position: 95% 15px;
}
#switcher ul.theme-select .menu-demo-menu-container {
	position: absolute;
	min-width: 280px;
}
#switcher .theme-select ul {
	display: none;
	padding: 0;
	background: #ffffff;
	margin: 0;
}
#switcher ul.theme-select ul li {
	border-bottom: 1px solid #ECECEC;
	list-style: none;
}
#switcher ul.theme-select ul li:last-child {
	border: none;
}
#switcher ul.theme-select ul li:hover {
	background: #ECECEC;
}
#switcher ul.theme-select a, #tname  {
	text-decoration: none;
	font-weight: bold;
	color: #666666;
	padding: 6px 20px;
	display: block;
}
#switcher .sreen-size {
	margin-left: 14px;
	padding: 14px 0;
	float: left;
}

#switcher .sreen-size a {
    opacity:0.5;
    float: left;
    margin: 0 6px;
}

#switcher .sreen-size a.desktop { 
	background: url(img/devices.png) no-repeat 0 0; 
	width: 20px; 
	height: 19px; 
}

#switcher .sreen-size a.tabletlandscape { 
	background: url(img/devices.png) no-repeat -30px -3px; 
	width: 17px; 
	height: 14px; 
	margin-top: 2px;
}

#switcher .sreen-size a.tabletportrait { 
	background: url(img/devices.png) no-repeat -59px -1px; 
	width: 14px; 
	height: 17px;
	margin-top: 1px; 
}

#switcher.sreen-size a.mobilelandscape { 
	background: url(img/devices.png) no-repeat -87px -4px; 
	width: 14px; 
	height: 11px;
	margin-top: 5px; 
}

#switcher .sreen-size a.mobileportrait { 
	background: url(img/devices.png) no-repeat -117px -3px; 
	width: 11px; 
	height: 14px;
	margin-top: 3px; 
}

#switcher .sreen-size a.active, .sreen-size a:hover { 
	opacity:1; 
	color: #ffffff;
}
#switcher .links {
	float: right;
	padding: 0;
	margin: 3px 20px 0 0;
}
#switcher .close a {
	background: #DBDBDB url(img/close.png) no-repeat center;
	color: #FFFFFF;
	text-decoration: none;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
	margin-top: 3px;
	padding: 3px 18px 6px;
	float: left;
	border-radius: 2px;
	font-weight: bold;
	margin-left: 15px;
	text-indent: -9999px;
}
#switcher .btn-buy-now {
	background: #2d81d7;
	color: #ffffff;
	border-color: #2b79cc;
	width: 200px;
	margin: 3px 0 0 80px;
	float: left;
	border-radius: 5px;
}
#switcher .btn-buy-now a {
	padding: 6px;
	display: block;
	color: #fff;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
}
#iframelive {

}
#frameWrapper {
    margin: 0 auto;
    overflow: auto;
}
#iframe {
	display: block;
    margin: 50px auto 0;
    min-width: 100%;
    width: 10px;
    transition: margin-top 0.3s ease 0s, height 0.3s ease 0s;
}
.switcher-hidden #iframe {
	margin-top: 0;
}
.back-to-top {
	display: none;
}
.toggle {
	background: rgba(238, 238, 238, 1);
	backface-visibility: hidden;
	color: #000 !important;
	font-size: 20px;
	height: 50px;
	line-height: 46px;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	width: 54px;
	z-index: 99998;
	opacity: 0.8;
}
.toggle .fa {
	display: inline-block;
	-webkit-transform: rotate(0deg) translate3d(0px, 0px, 0px);
	-moz-transform: rotate(0deg) translate3d(0px, 0px, 0px);
	transform: rotate(0deg) translate3d(0px, 0px, 0px);
	-webkit-transition: transform 0.3s ease 0s;
	-moz-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
}
.switcher-hidden .toggle .fa {
	-webkit-transform: rotate(45deg) translate3d(0px, 0px, 0px);
	-moz-transform: rotate(45deg) translate3d(0px, 0px, 0px);
	transform: rotate(45deg) translate3d(0px, 0px, 0px);
}

/* Portrait and Landscape */
@media (max-width: 767px) {
	#switcher ul.theme-select {
		width: 100px;
		margin: 4px 10px;
	}
	#switcher ul.theme-select li#theme_list {
		border-radius: 1px;
		width: 100%;
	}
	#switcher ul.theme-select a, #tname  {
		font-size: 14px;
		padding: 7px 10px;
	}
	#switcher ul.theme-select #tname {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		padding: 7px 15px 7px 10px;
	}
	#switcher ul.theme-select .menu-demo-menu-container {
		width: 200px;
	}
	#switcher .sreen-size {
		display: none;
	}
	#switcher .btn-buy-now {
		width: auto;
		margin: 4px 0 0;
	}
	#switcher .btn-buy-now a {
		padding: 8px 10px;
		font-size: 14px;
		border: none;
	}
}