html{
	
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	background-attachment: fixed;
	background-image: url('img/background.jpg');
	font-size: 13px;
}


h3{
	margin: 5px 0;
}

form{
	margin: 0;
	padding: 0;
}

a{
	color: #088DA5;
}

input, select, textarea{
	font-family: 'Open Sans', sans-serif;
}

a{
	text-decoration: none;
}

h1.title{
	font-size: 17px;
	background: #777;
	padding: 10px 15px;
	color: white;
	font-weight: 600;
}

h3.banner{
	display: block;
	padding: 10px;
	color: white;
	background: #666;
}

div.error{
	background: #FF3232;
	color: white;
	padding: 3px;
	font-size: 12px;
	margin-bottom: 10px;
	text-align: center;
}

ul, li{padding: 0; margin:0; list-style-type:none;}

div.nav{
	position: fixed;
	width: 100%;
	top: 0px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#333333+0,444444+100 */
	background: rgb(51,51,51); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(51,51,51,1) 0%, rgba(68,68,68,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(51,51,51,1)), color-stop(100%,rgba(68,68,68,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(51,51,51,1) 0%,rgba(68,68,68,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(51,51,51,1) 0%,rgba(68,68,68,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(51,51,51,1) 0%,rgba(68,68,68,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(51,51,51,1) 0%,rgba(68,68,68,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#444444',GradientType=0 ); /* IE6-9 */

}

ul.menu{
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

ul.menu li{
	float: left;
}

ul.menu li a{
	display: block;
	font-size: 13px;
	padding: 12px 18px;
	color: white;
	margin: 0;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
}

div.menu a.top10{
	background: #ffae19;
}

div.menu a.top10:hover{
	background: #e59400;
	color: white;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.menu li a:hover{
	background: #222;
	color: white!important;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
}

div.page_wrapper{
	width: 100%;
	background: #fff;
	max-width: 1000px;
	margin: 0px auto;
	min-height: 100%;
	/*border-left: 1px solid #999;
	border-right: 1px solid #999;*/
}

div.page{
	padding: 70px 30px 10px 30px;	
}

div.login input{
	padding: 6px 10px;
	border: 1px solid #bbb;
	font-size: 16px;
	
}

span.count_box{
	vertical-align: middle;
	display: inline-block;
	padding: 0px 3px;
	background: orange;
	color: white;
	font-weight: bold;
	font-size: 10px;
}

div.steps{
	overflow: hidden;
}

div.steps div{
	width: 33.33%;
	font-size: 11px;
	text-transform: uppercase;
	background: #444;
	color: white;
	padding: 5px 0px;
	text-align: center;
	float: left;
}

div.steps div.active{
	background: #66CD00;
}

div.upload{
	margin-top: 20px;
	overflow: hidden;
}

div.upload input[type="text"]{
	padding: 7px;
	border: 1px solid #bbb;
	width: 100%;
}

div.activity{
	margin-top: 8px;
	border: 1px solid #bbb;
	border-radius: 3px;
}

div.activity div.image{
	display: block;
	height: 38px;
	width: 38px;
	float: left;
}

div.activity div.image img{
	display: block;
	height: 100%;
	width: 100%;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
	border-top-left-radius:2px;
	border-bottom-left-radius: 2px;
}

div.activity div.detail{
	padding: 10px;
	margin-left: 40px;
	font-size: 13px;
	overflow: hidden;
    white-space: nowrap;
}

div.activity span.followers{
	color: #777;
}

div.upload input[type="submit"].right{
	float: right;
}

div.upload input[type="submit"]{
	color: white;
	border: none;
	padding: 8px 15px;
	background: #888;
	margin-top: 15px;
}

.flatRoundedCheckbox
{
    width: 50px;
    height: 25px;
	display: inline-block;
    position: relative;
}
.flatRoundedCheckbox div
{
    width: 100%;
    height:100%;
    background: #d3d3d3;
    position: relative;
    top:-20px;
}

.flatRoundedCheckbox label
{
    display: block;
    width: 15px;
    height: 15px;
    

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;

    cursor: pointer;
    position: absolute;
    top: 4px;
    z-index: 1;
    left: 5px;
    background: #FFF;
}

.flatRoundedCheckbox input[type=checkbox]:checked ~ div
{
    background: #4fbe79;
}

.flatRoundedCheckbox input[type=checkbox]:checked ~ label {
    left: 30px;
}

.p30pxleft{
	padding: 30px;
	float: left;
	width: 400px;
	overflow: hidden;
}

label.uploadlabel{
	display: inline-block;
	font-size: 20px;
	font-weight: 300;
	cursor: pointer;
	width: 120px;
}

div.formdata{
	margin: 8px 0;
}

div.upload select{
	padding: 5px;
	border: 1px solid #ddd;
	color: #555;
}

div.producers{
	margin-top: 10px;
}

div.producer{
	width: 70px;
	margin-right: 13px;
	float: left;
	height: auto;
	display: block;
	position: relative;
	margin-top: 5px;
}

div.producer a{
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	color: white;
	background: black;
	padding: 1px 3px;
	font-size: 14px;
	opacity: 0.7;
}

div.producer img{
	height: 70px;
	width: 70px;
}

div.producer div{
	color: white;
	background: #333;
	overflow:hidden;
	font-size: 10px;
	padding: 2px;
	white-space: nowrap;
}

a.trackstats{
	color: white;
	background: #666;
	display: inline-block;
	padding: 4px 10px;
}

a.delete{
	color: white;
	background: #FF3232;
	display: inline-block;
	padding: 4px 10px;
	font-weight: bold;
}

a.edit{
	color: white;
	background: #FFA500;
	display: inline-block;
	padding: 4px 10px;
	font-weight: bold;
}

span.count{
	color: white;
	background: #4495E5;
	display: inline-block;
	padding: 4px 8px;
}

div.greybox{
	background: #ddd;
	padding: 5px 12px;
}

a.sortbutton{
	display: inline-block;
	background: white;
	padding: 5px;
}

div.nav img.avatar{
	display: block;
	margin-top: 4px;
	height: 35px;
	width: 35px;
	float: right;
}

div#dev{
	position: absolute;
	top: 0;
	right: 0;
	max-width: 350px;
	font-size: 10px;
	background: white;
	padding: 4px;
}

/* DOWNLOAD PAGE */

div.dlwrapper{
	max-width: 700px;
	margin: 70px auto 0px auto;
	overflow: hidden;
}

div.box{
	width:100%;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
	overflow:hidden;
	position: relative;
	background: white;
}

span.small{
	font-size: 13px;
}

div.box_inner{
	padding: 20px;
}

div.info{
	font-size: 11px;
}

input.connect, a.connect{
	display: block;
	padding: 11px 0;
	background:#FF6600;
	text-align: center;
	font-weight: 700;
	color: white;
	text-decoration: none;
	border: none;
	width: 100%;
	cursor: pointer;
    font-size: 13px;
}

input.connect:hover, a.connect:hover{
	background: #e55b00;
}

a.connect.hypem{
	background: #83c441;
}

a.connect.hypem:hover{
	background: #6fa935;
}


div.comment{
	height: 40px;
	width: 50%;
	float: left;
}

div.button{
	width:50%;
	height: 40px;
	float: left;
}

input#comment{
	width: 100%;
	height: 100%;
	padding-left: 19px;
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	border: none;
	border-top: solid 1px #dbdbdb;
	background: #f4f4f4;
}

input#comment:focus{
	outline: 0;
	background: #ffffff;
}

div.header{
	padding: 8px;
	text-align: center;
}

div.header img{
	max-height: 200px;
	width: auto;
}

div.track{
	z-index: 0;
}

a.options{
	display: block;
	padding: 9px;
	background:#FFFFFF;
	text-align: center;
	font-weight: 700;
	color: #222;
	text-decoration: none;
	border: 1px solid #222;
	text-transform: uppercase;
	transition: all 0.3s;
}

a.options:hover{
	background: #222;
	color: white;
}

input.bigCheckbox{
	width: 20px;
	height: 20px;
	margin: 0;
}

/* old styles */

div.logopreview{
	width: 130px;
	height: auto;
	float: left;
	margin-right: 50px;
	text-align: center;
}

div.logopreview img{
	width: 100%;
	height: auto;
	display: block;
}

div.usersettings{
	float: left;
}

div.formdata{
	padding:5px 0px;
}

div.ad{
	text-align: center;
	margin-bottom: 8px;
}

div.ad img{
	width: 100%;
	height: auto;
	display: inline-block;
}

div.formdata label{
	display: inline-block;
	width: 120px;
}

div.fixedchannels input[type="text"] {
  padding: 7px;
  border: 1px solid #bbb;
  width: 100%;
}

div.fixedchannels input[type="submit"] {
  color: white;
  border: none;
  padding: 8px 15px;
  background: #888;
  margin-top: 15px;
}

div.chart{
	overflow: hidden;
	background: #f5f5f5;
}

div.chart div.number{
	width: 150px;
	float: left;
}

div.chart div.number div.place{
	font-size: 67px;
	text-align: center;
}

div.chart a.dl{
	display: block;
	text-align: center;
	background: #FF6600;
	font-weight: 600;
	color: white;
	text-decoration: none;
	padding: 6px 0;
    font-size: 17px;
}

div.chart div.track{
	width: 790px;
	float: left;
}

span.small{
	font-size: 11px;
}

input.linkbox{
	font-size: 18px;
	padding: 8px;
	width: 50%;
}

table.pro{
	font-size: 14px;
	border-spacing: 2px;
}

table.pro tr{
	background: #eee;
	text-align: center;
}

table.pro td, table.pro th{
	padding: 5px;
}

table.pro tr td:first-child{
	text-align: left;
	font-size: 12px;
	padding: 10px;
}

table.pro tr td:nth-child(3n+3){
	font-weight: 700;
	color: #00A300;
}

div.proUntil{
	width: 60%;
	padding: 10px;
	color: white;
	font-size: 14px;
	background: #444;
	margin-bottom: 5px;
}

a.gopro{
	display: inline-block;
	background: #FF6600;
	color: white;
	font-weight: 700;
	padding: 5px 15px;
	font-size: 14px;
	text-align: center;
}

a.gopro:hover{
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	background: #222;
}

div.proBuyBox{
	padding: 10px;
	background: #f1f1f1;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-align: center;
}

div.proBuyBox:hover{
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
	background: #222;
	color: white;
}

.tinybtn{
	border: none;
	font-size: 12px;
	padding: 3px 5px;
	text-align: center;
	background: #333;
	color: white;
	display: inline-block;
	border-radius: 2px;
	margin: 5px auto;
}

.tinybtn:hover{
	background: #777;
	cursor: pointer;
}

div.promo{
	height: 70px;
	margin-bottom: 20px;
	background: white;
}

div.promo a{
	width: 630px;
	text-align: center;
	float: left;
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: black;
	padding: 23px 0;
	text-transform:uppercase;
}

div.promo a:hover{
	color: white;
	background: #222;
	-webkit-transition: all 0.3s;
    transition: all 0.3s;
}

div.promo img{
	width: 70px;
	height: 70px;
	display: block;
	float: left;
	
}

div.promo_box{
	margin-top: 40px;
}

div.promo_header{
	text-align: center;
	padding: 4px 0;
	font-weight: bold;
	text-transform: uppercase;
	color: #333;
    font-size: 14px;
}

div.promo_box a{
	padding: 7px 0;
}
