

html, body{
	margin: 0;
	padding: 0;
}


body{
	font-family: "Open Sans", sans-serif;
	font-weight: 300;
	background-color: #e5ebef;
	scrollbar-face-color: #121212;
}

::-webkit-scrollbar {
	width: 10px;
} 

::-webkit-scrollbar-track {
	background-color: #ecf0f1;
} 

::-webkit-scrollbar-thumb {
	background-color: #34495e;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	    -ms-border-radius: 2px;
		 -o-border-radius: 2px;
			border-radius: 2px;
} 

::-webkit-scrollbar-button {
	display: none;
} 

::-webkit-scrollbar-corner {
	background-color: #000000;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	margin-top: 5px;
	margin-bottom: 5px;
}
h1{font-size: 30px;}
h2,h3{font-size: 24px;}
a{
	color: #bdc3c7;
	text-decoration: none;
}

a:hover{
	color: #f1c40f;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
		 
}

/*	BOOTSTRAP RESET
===============================*/

.input-group-btn:last-child>.btn, 
.input-group-btn:last-child>.btn-group{
	margin-left: 0;
}

.form-control{
	border: 1px solid #ecf0f1;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.form-control:focus{
	background-color: #ecf0f1;
	border: 1px solid #ecf0f1;
	box-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-default{
	background-color: #bdc3c7;
	border:1px solid #bdc3c7;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-default:hover{
	background-color: #7f8c8d;
	border: 1px solid #7f8c8d;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-primary{
	background-color: #3498db;
	border: 1px solid #3498db;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-primary:hover{
	background-color: #2980b9;
	border: 1px solid #2980b9;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-success{
	background-color: #2ecc71;
	border: 1px solid #2ecc71;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-success:hover{
	background-color: #27ae60;
	border: 1px solid #27ae60;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-info{
	background-color: #1abc9c;
	border: 1px solid #1abc9c;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-info:hover{
	background-color: #16a085;
	border: 1px solid #16a085;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-warning{
	background-color: #f1c40f;
	border: 1px solid #f1c40f;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-warning:hover{
	background-color: #f39c12;
	border: 1px solid #f39c12;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.btn.btn-danger{
	background-color: #e74c3c;
	border: 1px solid #e74c3c;
	color: #fff;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.btn.btn-danger:hover{
	background-color: #c0392b;
	border: 1px solid #c0392b;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.pagination > li:first-child > a, 
.pagination > li:first-child > span{
	border-top-left-radius: 100%;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span{
	border-top-right-radius: 100%;
}
.pagination li span{
	margin-right: 7px;
	margin-left: 7px;color:#23527c;background-color:#eee;border-color:#ddd;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	    -ms-border-radius: 100%;
	     -o-border-radius: 100%;
}
.pagination li a{
	margin-right: 7px;
	margin-left: 7px;
	border: 1px solid #fff;
	color: #34495e;
	border-radius: 100%;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	    -ms-border-radius: 100%;
	     -o-border-radius: 100%;
}
.pagination li.pagnav-active a{
background-color: #f1c40f;
	color: #fff;
	border: 1px solid #f39c12;
}
.pagination li a:hover{
	background-color: #f1c40f;
	color: #fff;
	border: 1px solid #f39c12;
}

.input-group-addon{
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
}

.input-group .form-control:first-child, 
.input-group-addon:first-child, 
.input-group-btn:first-child>.btn, 
.input-group-btn:first-child>.btn-group>.btn, 
.input-group-btn:first-child>.dropdown-toggle, 
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle), 
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.label{
	border-radius: 0;
	line-height: 2.2;
	font-weight: 300;
	font-size: 100%;
}

.label-default{
	background-color: #161616;
}

.label-default[href]:hover, 
.label-default[href]:focus{
	background-color: #f1c40f;
}

.label-primary{
	background-color: #3498db;
}

.label-primary[href]:hover,
.label-primary[href]:focus{
	background-color: #2980b9;
}

.label-success{
	background-color: #2ecc71;
}

.label-success[href]:hover,
.label-success[href]:focus{
	background-color: #27ae60;
}

.label-info{
	background-color: #1abc9c;
}

.label-info[href]:hover,
.label-info[href]:focus{
	background-color: #16a085;
}

.label-warning{
	background-color: #f1c40f;
}

.label-warning[href]:hover,
.label-warning[href]:focus{
	background-color: #f39c12;
}

.label-danger{
	background-color: #e74c3c;
}

.label-danger[href]:hover,
.label-danger[href]:focus{
	background-color: #c0392b;
}

.thumbnail{
	border-radius: 0;
	padding: 0;
}

.progress{
	height: 30px;
	border-radius: 0;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
	    -ms-border-radius: 0;
	     -o-border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
}

.progress-bar{
	line-height: 30px;
	background-color: #34495e;
	box-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
}

.progress-bar-primary{
	background-color: #3498db;
}

.progress-bar-success{
	background-color: #2ecc71;
}

.progress-bar-info{
	background-color: #1abc9c;
}

.progress-bar-warning{
	background-color: #f1c40f;
}

.progress-bar-danger{
	background-color: #e74c3c;
}


.navbar.navbar-default{
	background-color: #29343a;
	border-bottom: 3px solid #e5ebef;
	margin-bottom: 35px;
	padding: 8px 0;
}

.navbar.navbar-default .navbar-brand{
	color: #fff;
}

.navbar-default .navbar-nav>.active>a, 
.navbar.navbar-default .navbar-nav>.active>a:hover, 
.navbar.navbar-default .navbar-nav>.active>a:focus{
	background-color: #29343a;
	color: #f1c40f;
}

.navbar-default .navbar-nav > .open > a, 
.navbar-default .navbar-nav > .open > a:hover, 
.navbar-default .navbar-nav > .open > a:focus{
	color: #fff;
	background-color: #f1c40f;
}

.navbar-default .navbar-collapse, 
.navbar-default .navbar-form{
	border-color: transparent;
}

.dropdown-menu{
	background-color: #f1c40f;
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
}

.dropdown-menu li a{
	color: #fff;
	padding: 10px 20px;
}

.navbar-default ul.nav li a{
	font-weight: 400;
}

.navbar-default ul.nav li a:hover{
	color: #f1c40f;
}

/* CONTENT
===============================*/

.content aside{
	margin-bottom: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.content aside img{
	width: 100%;
	
}

.content aside .content-title{
	background-color: #fff;
	width:100%;
	padding: 20px 10px;
  
}

.content aside .content-title h3{
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width:100%;  padding: 1px 0;
}

.content aside .content-title a{
	text-decoration: none;
	color: #000;
}

.content aside .content-title a:hover{
	color: #f1c40f;
}

.content aside .content-footer{
	padding: 10px 20px;
	background-color: #e5ecee;
}

.content aside .content-footer img{
	width: 33px;
	height: 33px;
	border-radius: 100%;
	margin-right: 10px;
	border: 2px solid #fff;
}

.content aside .content-footer span.pull-right{
	margin-top: 7px;
}

.content aside .content-footer span.pull-right a{
	color: #999;
	text-decoration: none;
}

.content aside .content-footer span.pull-right a:hover{
	color: #f1c40f;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.content aside .content-footer span.pull-right a i.fa{
	margin-left: 10px;
}

/*	SIDEBAR
===============================*/

#sidebar{
	margin-bottom: 20px;
}

#sidebar .widget-sidebar{
	background-color: #fff;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#sidebar .widget-sidebar h3.title-widget-sidebar{
	font-size: 14pt;
	border-bottom: 2px solid #e5ebef;
	margin-bottom: 15px;
	padding-bottom: 10px;
}

#sidebar .widget-sidebar h3.title-widget-sidebar:after{
	border-bottom: 2px solid #f1c40f;
	width: 100px;
	display: block;
	position: absolute;
	content: '';
	padding-bottom: 10px;
}

#sidebar .widget-sidebar .content-widget-sidebar ul{
	padding-left: 0;
	list-style: none;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li.recent-post{
	height: 70px;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li .thumbnail{
	border: none;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li img{
	width: 100px;
	height: 70px;
	float: left;
	margin-right: 15px;
	border: 5px solid #95a5a6;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li img:hover{
	border: 5px solid #f1c40f;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li a{
	text-decoration: none;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li h5{
	color: #000;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li h5:hover{
	color: #f1c40f;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li p small,
#sidebar .widget-sidebar .content-widget-sidebar ul li.recent-post i.fa{
	font-style: italic;
	color: #777;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li.archive a h5:hover{
	padding-left: 10px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
	    -ms-transition: all 0.6s ease;
	     -o-transition: all 0.6s ease;
}

#sidebar .widget-sidebar .content-widget-sidebar ul li.categories a h5:hover{
	padding-left: 10px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	   -moz-transition: all 0.6s ease;
	    -ms-transition: all 0.6s ease;
	     -o-transition: all 0.6s ease;
}
li.categories{
border-bottom: 1px solid #eee;
padding: 5px 0;
}
li.categories:nth-last-child(1){
border:0;
padding-bottom:0;
}
/*
===============================*/

/* SINGLE BLOG
===============================*/

#main-single-content{
	box-shadow: 0 1px 2px rgba(0,0,0,0.2);
	background-color: #fff;
	margin-bottom: 20px;
}
#main-single-content > img{
	width: 100%;
	height: 450px;
}

.content-single{
	padding: 20px;
}

.content-single .tag span{
	margin-right: 7px;
}

.border-title{
  font-size: 24px;margin-bottom: 20px;
  border-bottom: 3px solid #ddd;
  padding-bottom: 10px;
}
.border-title:after{
  content: '';
  position: absolute;
  display: block;
  border-bottom: 3px solid #f1c40f;
  width: 130px;
  padding-bottom: 10px;
  }
.content-single p{
	font-weight: 400;
}
.content-single .hr-single{
	border-bottom: 2px dashed #ddd;
	margin-bottom: 20px;
	margin-top: 20px;
}
.content-single .tag a{
	color: #999;
}

.content-single .tag a:hover{
	color: #f1c40f;
}

.content-single .tag i.fa{
	margin-right: 7px;
	color: #ddd;
}

.content-single .tag i.fa.fa-circle{
	font-size: 6pt;
	color: #f1c40f;
}

/*	COMMENTS
===============================*/

.comment:before, 
.comment:after {
	content: "";
	display: table;
	clear: both;
}

.comment h3,
.form-comment h3{
	font-size: 24px;
	line-height: 26px;
	color: #5c7280;
	margin: 20px 0 40px;
}

.comment ul.comments > li > img {
	position: relative;
	float: left;
	margin-left: 0;
	margin-top: 0;
	width: 65px;
	height: 65px;
	border: 5px solid #ddd;
	box-shadow: none;
	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
	    -ms-box-shadow: none;
	     -o-box-shadow: none;
	opacity: 1;
	filter: Alpha(opacity=100);
	border-radius: 4px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	    -ms-border-radius: 4px;
	     -o-border-radius: 4px;
}

ul.comments{
	list-style: none;
	padding-left: 0;
}

ul.comments p.meta{
	border-bottom: 1px dashed #ccc;
	padding-bottom: 13px;
}

.post-comments {
	border: 1px solid #eee;
	margin-bottom: 20px;
	margin-right: 0px;
	padding: 10px 20px;
	position: relative;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	    -ms-border-radius: 4px;
	     -o-border-radius: 4px;
	background: #ecf0f1;
	color: #6b6e80;
	position: relative;
}

.post-comments:before {
	content: "";
	position: absolute;
	top: 8px;
	left: -10px;
	border: 10px;
	border-top: 10px solid transparent;
	border-right: 10px solid #ecf0f1;
	border-bottom: 10px solid transparent;
	border-left: 0px solid transparent;
}

.comment ul.comments ul {
	margin-left: 85px;
}

.form-comment .form-control{
	background-color: #ecf0f1;
	box-shadow: none;
	border: 2px solid #ecf0f1;
}

.form-comment .form-control:focus{
	border: 2px solid #f1c40f;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

/*	LOGIN
===============================*/

#login{
	background: url('../img/bg-body.jpg')no-repeat center center fixed;
	background-size: cover;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    -ms-background-size: cover;
	     -o-background-size: cover;
}

#login .overlay{
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px;
}

.box-login{
	background-color: #fff;
	width: 380px;
	padding: 20px;
	margin: 137px auto;
	box-shadow: 0 1px 2px rgba(255, 255, 255 ,0.8);
	border-radius: 4px;
}

.box-login h3{
	font-weight: 600;
}

.box-login .form-control{
	background-color: #ecf0f1;
	border: 2px solid #ecf0f1;
	box-shadow: none;
}

.box-login .form-control:focus{
	border: 2px solid #f1c40f;
}

.box-login-alt{
	background-color: #fff;
	width: 380px;
	padding: 20px;
	margin: 40px auto 60px;
	box-shadow: 0 1px 2px rgba(255, 255, 255 ,0.8);
	border-radius: 4px;
}

.box-login-alt h3{
	font-weight: 600;
}

.box-login-alt .form-control{
	background-color: #ecf0f1;
	border: 2px solid #ecf0f1;
	box-shadow: none;
}

.box-login-alt .form-control:focus{
	border: 2px solid #f1c40f;
}

/*	REGISTER
===============================*/

#register{
	background: url('../img/bg-body.jpg')no-repeat center center fixed;
	background-size: cover;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	    -ms-background-size: cover;
	     -o-background-size: cover;
}

#register .overlay{
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px;
}

.box-register{
	background-color: #fff;
	width: 420px;
	padding: 20px;
	margin: 45px auto;
	box-shadow: 0 1px 2px rgba(255, 255, 255 ,0.8);
	border-radius: 4px;
}

.box-register h3{
	font-weight: 600;
}

.box-register .form-control{
	background-color: #ecf0f1;
	border: 2px solid #ecf0f1;
	box-shadow: none;
}

.box-register .form-control:focus{
	border: 2px solid #f1c40f;
}

/*	BLANK PAGE
===============================*/

.box-blank-page{
	background-color: #fff;
	padding: 20px;
	margin-bottom: 30px;
	height: 700px;
	box-shadow: 0 1px 2px rgba(255, 255, 255 ,0.8);
	border-radius: 6px;

}

/* FOOTER
===============================*/

footer{
	background-color: #202020;
	padding: 5px 0;
	border-top: 7px solid #bdc3c7;
	color: #ecf0f1;
}

footer .widget-footer{
	margin-bottom: 20px;
}

footer h4{
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 2px solid #ecf0f1;
}

footer h4:after{
	position: absolute;
	display: block;
	content: '';
	padding-bottom: 10px;
	border-bottom: 2px solid #f1c40f;
	width: 100px;
}

footer .sosmed-footer i.fa{
	background-color: #161616;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-top: 6.5px;
	padding-left: 7.5px;
	width: 30px;
	height: 30px;
	color: #fff;
	border-radius: 4px;
}

footer .sosmed-footer i.fa:hover{
	background-color: #f1c40f;
	color: #fff;
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.footer-bottom{
	background-color: #161616;
	padding: 20px 0 15px;
	color: #ecf0f1;
}

.footer-bottom p{
	margin-bottom: 0;
}

.footer-bottom a{
	font-size: 10pt;
	margin-left: 10px;
}

.footer-bottom a:hover{
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	   -moz-transition: all 1s ease;
	    -ms-transition: all 1s ease;
	     -o-transition: all 1s ease;
}

.ads{margin-bottom:15px;}

.video{width:750px;margin:0;text-align:center;height:425px;}
.video a{width:100%;height:100%;background:url(../images/player.png) top left no-repeat;display:block;z-index:1}
.video a:hover{ -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;background-position:bottom;}
	
	
	
.videoStopped{
			background:#000;
			background-repeat:no-repeat;
			background-position:top;
			background-size: cover;
		}

.videoContainer{
	height:420px;
	width:750px;
	vertical-align:middle;
	cursor:pointer;
	position: relative;
}

.player-title{
	background:rgba(0,0,0,0.9);color:#fff; margin:0;padding:10px; position:absolute;top:0;width:750px;
}

.warning{
	background:no-repeat scroll 9px 10px, -moz-linear-gradient(center top , rgb(255, 255, 255) 0%, rgb(230, 230, 230) 100%) repeat scroll 0% 0% transparent; text-align:center; padding:5px;border-bottom:1px solid #ccc;
}
.warning h2{
	color:#006600;font-size:20px;display:inline-block;
}

.largePlayBtn{
	height:100%;
}
.twocolumn{
	margin:10px;
}
.twocolumn .signup{
	width:65%;float:left;margin-right:5px;background: #efefef url('../img/bg-signup.jpg') no-repeat scroll 100% 100% ;padding:10px;
}
.twocolumn .signup p{
	font-size:13px; line-height:2;
}

.twocolumn .signin{
	width:34%;float:right;background:#efefef url('../img/bg-signin.png') no-repeat scroll 100% 100% ;padding:10px 10px 25px;min-height:227px;
}


.videoPlaying{
	background-image:url(../img/movies.gif)!important;
	background-repeat:no-repeat;
}

.bufferBarContainer{	
	width:475px;
	height:40px;
	
	padding-left:10px;
	padding-right:10px;
}

.bufferBar{
	background-color:#333;
	width:7px;
	margin-top: 27px;
  margin-left: 26px;
}

.seekBar{
	background-color:#FBBF3E;
	height:11px;
	width:0px;
	
	text-align:right;
}

.seekBtn{
	background-image:url(../img/seek.png);
	background-repeat:repeat-x;
	width:10px;
	height:10px;
	margin-top:0;
}

.loading{
	font-family:Arial, Helvetica, sans-serif;
	font-size:10px;
	font-weight:bold;
	color:#FF9326;
}

.playerBar{
	background:#000;
	height:84px;
	width:750px;
}

.playerBar table{
	width:100%;
	height:65px;
}

.playBtn {
	background:url(../img/play.png) no-repeat center;
	width:52px;
	height:54px;
	margin-top:-5px;
}

.pauseBtn{
	background:url(../img/pause.png) no-repeat center;
	width:52px;
	height:54px;
	margin-top:-5px;
}

#largePlayBtn{
	width: 750px;
height: 420px;
background: url('../img/largeplay.png') no-repeat center;
}
.btn{
	opacity:0.6;
	filter:alpha(opacity=60);
	cursor:pointer;
	
	display:inline-table;
	vertical-align:middle;
}
.timer{
	color: #fff;
	font-size: 12px;
	padding-bottom:10px
;}

.btn:hover{
	opacity:1;
	filter:alpha(opacity=100);
	cursor:pointer;
}

.time{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#999999;
	
	display:inline-table;
	vertical-align:middle;
	margin-left:10px;
}
.download{
	width:670px; background:#fff; border-radius:4px; border:1px solid #333; box-shadow:1px 1px 5px #000; margin:10px 0px; position:absolute; top:50px; left:40px; z-index:10; padding-bottom:10px; display: none;
}

/*Create Account*/
.download.active{
	display:block;
}
.createAccount{
	display:none;
	width:480px;
	margin:0px auto 0;
	padding:10px;
	
	background: #6a6a6a; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzZhNmE2YSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ4JSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyNDI0MjQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #6a6a6a 0%, #4d4d4d 48%, #242424 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6a6a6a), color-stop(48%,#4d4d4d), color-stop(100%,#242424)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6a6a6a 0%,#4d4d4d 48%,#242424 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6a6a6a 0%,#4d4d4d 48%,#242424 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6a6a6a 0%,#4d4d4d 48%,#242424 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6a6a6a 0%,#4d4d4d 48%,#242424 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6a6a6a', endColorstr='#242424',GradientType=0 ); /* IE6-8 */
	
	-webkit-border-radius: 5px;
        border-radius: 5px;
	background-clip: padding-box;
	
	border:1px solid #848484;

	-webkit-box-shadow: 0px 0px 14px #444444;
        box-shadow: 0px 0px 14px #444444;


}
.createAccount img{
	float:left;
}

.createForm{
	float:left;
	margin:0px 0px 0px 20px;
	width:67%;
}

.createForm p{
	color:#EEE;
	font-family: 'Merriweather Sans', sans-serif;
	line-height:20px;
	text-shadow: 1px 1px 1px #333;
	text-align:left;
	margin:5px 0;	
}

.createForm p span{
	color:#F0C132;
	font-weight:bold;
}

input[type="text"] , input[type="password"] {width:80%; padding:8px 4px; background:#f4ffed; border:1px solid #80d64c;}
input[type="button"]{background:#8ab732; padding:8px 40px; color:#fff; border-radius:4px; border:none;}
ul.benefit-list li{font-size:12px; margin:4px 0;}
#benefit{width:33%;display:inline-block;border: 2px solid green;padding: 10px; float:right;}
#benefit ul li{margin-left:20px;}

ul{padding:0 0 3px 10px;margin:0}p{margin:0 0 15px 0;line-height:1.5;}.alignleft{float:left}
h1{font-size:17px;margin:0 0 10px 0}h2,h3{font-size:16px;margin:0 0 8px 0}h4{font-size:15px;margin:0 0 5px 0}.lighter{font-weight:lighter;font-size:12px;margin:0;text-align:left}.big{font-size:30px;font-weight:bold;margin:0;text-align:left}
.1-2column{width:50%;float:left;}

#step ol li{
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	width: 30%;
	vertical-align: top;
	margin: 10px;
	text-align: center;
}
.nav-tabs>li>a{color:#555;}
.nav-tabs{margin-bottom:15px;padding-bottom:0;  border-bottom: 1px solid #bdc3c7;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{border-bottom-color:#f1c40f}