/*
** Académie des Jardins de la Danse
** Copyright 2016, tous droits reservés.
**
** Contact webmaster@lesjardinsdeladanse.fr
**
** Manager global stylesheet v1.0 
*/

/* rgba(0, 255, 135, 1.00) */

/* Global containers */
body {
	margin: 0px;
	padding: 0px;
	background: rgba(28, 28, 28, 1.00) /*rgba(11, 35, 53, 1.00)*/;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.manager-header {
	height: 50px;
	width: 100%;
	top: 0px;
	right: 0px;
	left: 0px;
	position: absolute;
	background: rgba(0, 0, 0, 0.50);
	overflow: hidden;
}
.manager-header span {
	display: inline-block;
	float: left;
	height: 40px;
	margin: 5px 0px 5px 5px;
	cursor: default;
	box-sizing: border-box;
}
.manager-header span:first-child {
	width: 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.50);
}
.manager-header span:nth-child(n + 2) {
	line-height: 20px;
	font-size: 16px;
	padding: 10px 0px 10px 5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
}

.manager-body {
	width: 100%;
	top: 50px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	position: absolute;
}


/* Animation classes */
.animate {
	transition-property: all;
	transition-duration: .2s;
}

/* Fields & buttons */
input[type="text"], input[type="password"] {
	padding: 5px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	line-height: 15px;
	color: rgba(28, 28, 28, 1.00);
	background: rgba(255, 255, 255, 1.00);
	outline: none;
}

input[type="button"], input[type="submit"] {
	padding: 5px 3px;
	border: 2px solid rgba(255, 0, 61, 1.00);
	border-radius: 5px;
	font-size: 12px;
	line-height: 13px;
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(28, 28, 28, 1.00);
	background: rgba(255, 0, 61, 1.00);
	outline: none;
}
input[type="button"]:hover, input[type="submit"]:hover {
	color: rgba(28, 28, 28, 0.50);
}
input[type="button"]:active, input[type="submit"]:active {
	border: 2px solid rgba(255, 0, 61, 1.00);
	color: rgba(255, 0, 61, 1.00);
	background: rgba(28, 28, 28, 1.00);
}
input[type="button"].disabled, input[type="submit"].disabled {
	color: rgba(255, 255, 255, 0.50);
	background: rgba(255, 255, 255, 0.10);
}