table {
	margin: 0 auto;
}

form , .formulaire{
	background-color: #ffd5d5;
	border-radius: 10px;
	padding: 10px;
	width: 500px;
/ /
	position: absolute; //
	left: 50%; //
	top: 200; //
	// margin-left: -200px; /* -largeur/2 */
	margin-left: auto;
	margin-right: auto;
}

form.login {
	width: 396px;
}

fieldset {
	padding: 0 20px 20px 20px;
	margin-bottom: 10px;
	border: 1px solid #DF3F3F;
}

legend {
	color: #DF3F3F;
	font-weight: bold;
}

label {
	margin-top: 1px;
	display: block;
	width: 200px;
	float: left;
}

label.login {
	width: 120px;
}

.inline {
	display: inline;
}

label.inline {
	display: inline;
	margin-right: 5px;
}

.labelTitreInterprete {
	width: 120px;
}
.rechercheChanson {
	width: 320px;
}


input, textarea, select, option {
	background-color: #FFF3F3;
}

input, textarea, select {
	padding: 3px;
	border: 1px solid #F5C5C5;
	border-radius: 5px;
	width: 200px;
	box-shadow: 1px 1px 2px #C0C0C0 inset;
}

input#login, input#pass {
	width: 150px;
}

select {
	margin-top: 10px;
}

input[type=radio] {
	background-color: transparent;
	border: none;
	width: 10px;
}

input[type=submit], input[type=reset] {
	width: 100px;
	margin-left: 5px;
	box-shadow: 1px 1px 1px #D83F3D;
	cursor: pointer;
	float: right;
	display: block;
}

#labels {
	width: 120px;
	float: left;
	display: block;
}

#champs {
	width: 200px;
	float: left;
	display: block;
}

.centrer {
	 text-align: center;
 }

.alignerAdroite {
	text-align: right;
}

footer {
	clear: both;
/*	position: sticky;*/
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 10;
	height: 6em;
	margin-top: 1em;
	text-align: center;
	background-color: #E1E1E1;
	font-weight: bold;
	color: #3737DD;
}

footer a{
	color: #410404;
}

li.fichiers {
    background-color: #fff;
    color: #000;
    font-size: 14px;
    list-style-type: none;
    width: 40%;
	border-radius: 3px;
    border: 1px solid #000;
    padding: 10px;
	margin: 0 auto 10px;
}


.doc {
	margin-top: 1px;
	display: inline;
	width: 200px;
	float: none;
	color: #DF3333;
}

/* Gestion de popin jquery */
.contenu_popup {
	background-color: #FFFFFF;
	border: 1px solid #DF3333;
	cursor: default;
	display: none;
	margin-top: 15px;
	position: absolute;
	text-align: left;
	width: 400px;
	z-index: 50;
	padding: 2px 2px;
}

span.selected {
	background-color: #1F75CC;
	color: white;
	z-index: 100;
}


#sortable {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 60%;
}

#sortable li {
	margin: 1px 1px 1px 1px;
	padding: 0.1em 0.1em 0.1em 1.5em;
	font-size: 1em;
	/* height: 18px; */
}

#sortable li span {
	position: absolute;
	margin-left: -1.3em;
}

.lienMentionsLegales {
	font-size: x-small;
}


.star { display: inline-block; background: url("../images/icones/star.png") no-repeat; width: 25px; height: 25px }
.star_hover { display: inline-block;
	background: url("../images/icones/star.png") no-repeat 0 -25px;
	width: 25px; height: 25px }

.ok {
    font-size: medium;
    color: #119911;
}

.ko {
    font-size: 2em;
    color: #992211;
}

.info {
    font-size: medium;
    color: #115599;
}

.filtres {
	background: rgba(255, 155, 155, 0.75);
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	width: 300px;
	color: black;
	font-size: 11px;
	padding-left: 15px;
	border: 5px;
	border-radius :22px;
}


/*// Style pour la modale*/

.modal {
	display: none; /* Masqué par défaut */
	position: fixed; /* Reste en place */
	z-index: 1; /* Au-dessus des autres éléments */
	left: 0;
	top: 0;
	width: 100%; /* Largeur complète */
	height: 100%; /* Hauteur complète */
	overflow: auto; /* Ajoute un défilement si nécessaire */
	background-color: rgb(0,0,0); /* Couleur de fond */
	background-color: rgba(0,0,0,0.68); /* Couleur de fond avec transparence */
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto; /* 15% du haut et centré */
	padding: 20px;
	border: 1px solid #888;
	width: 66%; /* Largeur du modal */
}

.close {
	color: #FF0000; /* Couleur de la croix */
	float: right; /* Aligne à droite */
	font-size: 56px; /* Taille de la croix */
	font-weight: bold; /* Gras */
}

.close:hover,
.close:focus {
	color: black; /* Change la couleur au survol */
	text-decoration: none; /* Pas de soulignement */
	cursor: pointer; /* Curseur en forme de main */
}