/* Default CSS */

* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html,body {
	height: 100%;
}

body {
	font-family: 'Oswald', sans-serif;
	font-weight: normal;
	font-size: 16px;
	background: #FDC830;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #F37335, #FDC830);  /* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-gradient(linear, left top, right top, from(#F37335), to(#FDC830));
	background: -webkit-linear-gradient(left, #F37335, #FDC830);
	background: -moz-linear-gradient(left, #F37335, #FDC830);
	background: linear-gradient(to right, #F37335, #FDC830); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	position: relative;
}

body a {
	text-decoration: none;
}
body a:hover {
	cursor: pointer;
}

.clearfix:after {
	content: " ";
	display: block;
	clear: both;
}

.bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url('../img/vtrlogo.jpg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.10;
	filter: alpha(opacity=10);
	z-index: 1;
}
.wrapper {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 100%;
}

/* Header */
.header {
	padding: 5px;
	min-height: 77px; 
}
.header .logo {
	max-width: 300px;
	float: left;
}
.header .logo a {
	display: block;
}
.logo img {
	width: 100%;
}
.header .nav-right {
	float: right;
}
.header .nav-right li {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
}
.header .nav-right li a {
	color: #fff;
}
.header .nav-right li a i {
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border: 1px solid #fff;
	-webkit-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.header .nav-right li a:hover i {
	background-color: #fff;
	color: #F37335;
}


/* Main Content_left */
.main {
	position: relative;
	height: -webkit-calc(100% - 250px);
	height: -moz-calc(100% - 250px);
	height: calc(100% - 250px);
}
.content_left {
	position: relative;
	height: 100%;
	float: left;
	width: -webkit-calc(100% - 270px);
	width: -moz-calc(100% - 270px);
	width: calc(100% - 270px);
}
.audio-wrapper {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	   -moz-transform: translateY(-50%) translateX(-50%);
	    -ms-transform: translateY(-50%) translateX(-50%);
	     -o-transform: translateY(-50%) translateX(-50%);
	        transform: translateY(-50%) translateX(-50%);
	left: 50%;
}

.sidebar_right {
	float: right;
	width: 30%;
	max-width: 270px;
	height: 100%;
	padding: 15px;
	text-align: right;
	border-left: 1px solid #fff;
}
.sidebar_content {
	height: 100%;
	max-width: 240px;
	display: inline-block;
	width: 100%;
	overflow-y: auto;
}

.sidebar_content .overview {
	width: 100%;
}
.text-block {
	width: 100%;
	height: 240px;
	border: 1px solid #fff;
	margin-bottom: 15px;
}

/* Footer */
.footer {
	color: #fff;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 0;
	min-height: 68px;
}
.footer p {
	margin-top: 0;
}






@media (max-width: 960px) {
	body {
		/*overflow: hidden; */
	}
	.main {
		overflow-y: auto;
	}
	.content_left,
	.sidebar_right {
		width: 100%;
	}
	.sidebar_right {
		border-left: none;
	}
	.sidebar_right,
	.sidebar_content {
		max-width: 100%;
	}
	.sidebar_content {
		height: auto;
	}
	.footer {
		background: #FDC830;  /* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #F37335, #FDC830);  /* Chrome 10-25, Safari 5.1-6 */
		background: -webkit-gradient(linear, left top, right top, from(#F37335), to(#FDC830));
		background: -webkit-linear-gradient(left, #F37335, #FDC830);
		background: -moz-linear-gradient(left, #F37335, #FDC830);
		background: linear-gradient(to right, #F37335, #FDC830); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
		padding: 15px;
	}
	.footer p {
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 0;
	}
	.footer p a {
		font-size: inherit;
		line-height: inherit;
	}
	.nav-right ul {
		padding-left: 0;
	}
}

@media (max-width: 480px) {
	.header .logo {
		max-width: 140px;
	}
	.nav-right ul {
		margin: 9px 0;
	}
	.footer p {
		font-size: 12px;
	}
}
@media (max-width: 359px) {
	.header .logo {
		max-width: 70%;
		margin: 0 auto;
		float: none;
	}
	.header .nav-right {
		float: none;
		margin: auto;
		max-width: 190px;
	}
	.main {
		height: -webkit-calc(100% - 253px);
		height: -moz-calc(100% - 253px);
		height: calc(100% - 253px);
	}
}


/* Demo Only */
.text-block {
	line-height: 250px;
	text-align: center;
}
.text-block p {
	margin: 0;
}