/*------------------------------------------------------------------
Console Core
--------------------------------------------------------------------*/
#consoleMini{
	padding:5px 10px;
	position:absolute;
	top:10px;
	left:10px;
	cursor:pointer;
	transition:background 0.3s;
	-webkit-transition:background 0.3s;
	z-index:10000;
	background:rgba(235,235,235,0.9);
}

#consoleMini:hover{background:rgba(206,235,238,0.9);}
#consoleMini span{display:block;}

#console{
	width:100%;
	position:absolute;
	top:0;
	border:solid 2px #333;
	display:none;
	z-index:10000;
	background:rgba(255,255,255,0.96);
}

#console #co-header{margin-bottom:10px; background:#333;}
#console #co-header span{
	padding:5px 10px;
	display:inline-block;
	font-size:14px;
	cursor:pointer;
	transition:color 0.3s;
	-webkit-transition:color 0.3s;
	color:#d1d1d1;
}
#console #co-header span.actif,
#console #co-header span:hover{color:#24E5FF;}

#console form, #configuration{display:none;}

#console #co-content{padding:0 10px 10px 10px;}
#console #co-content span{
	width:49%;
	float:left;
	display:block;
}

#console #co-content span:nth-child(odd){
	margin-right:2%;
}

#console label{
	width:35%;
	margin:0;
	float:left;
	display:block;
	font-size:12px;
}

#console input[type="text"]{
	width:65%;
	height:25px;
	margin-bottom:5px;
	padding:0 5px;
	border:solid 1px #d1d1d1;
	border-radius:3px;
	float:left;
	display:block;
	outline:0;
	transition:border 0.3s, box-shadow 0.3s;
	-webkit-transition:border 0.3s, box-shadow 0.3s;
	color:#555;	
}

#console textarea{
	width:65%;
	height:57px;
	margin-bottom:5px;
	padding:5px;
	border:solid 1px #d1d1d1;
	border-radius:3px;
	float:left;
	display:block;
	outline:0;
	resize:none;
	transition:border 0.3s, box-shadow 0.3s;
	-webkit-transition:border 0.3s, box-shadow 0.3s;
	color:#555;
}

#console input[type="text"]:focus,
#console textarea:focus{
	border:solid 1px #04A1B6;
	box-shadow:0 0 2px 0px #04A1B6;
	background-color:#fff;
}

#console #co-footer{
	padding:3px 10px 1px 10px;
	clear:both;
	background:#333;	
}

#console #co-footer span {
	margin-left:10px;
	display:none;
	color:#24E5FF;
}

#console button{
	width:110px;
	height:25px;
	padding:7px;
	border:none;
	font-size:12px;
	text-transform:uppercase;
	color:#fff;
	cursor:pointer;
	outline:0;
	background: #04a1b6;
	background: url(data:image/svg+xml;
	background: -moz-linear-gradient(top,  #04a1b6 0%, #048c9e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#04a1b6), color-stop(100%,#048c9e));
	background: -webkit-linear-gradient(top,  #04a1b6 0%,#048c9e 100%);
	background: -o-linear-gradient(top,  #04a1b6 0%,#048c9e 100%);
	background: -ms-linear-gradient(top,  #04a1b6 0%,#048c9e 100%);
	background: linear-gradient(to bottom,  #04a1b6 0%,#048c9e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04a1b6', endColorstr='#048c9e',GradientType=0 );	
}