/**
Import du fichier pour les navigateurs qui n'implémentent pas html5
**/
@IMPORT url("html5.css");

@IMPORT url("menu.css");

@IMPORT url("form.css");

html {
	color: black;
}

body {
	-webkit-font-smoothing: antialiased;
	font: 13px "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
	background: #fff url(../images/fond.png) left top repeat-x fixed;
}

body>header {
	margin-bottom: 45px;
	clear: both;
}

caption {
	display: table-caption;
	text-align: left;
	color: #025a95;
}

iframe {
	border: 1px solid #bfbfbf;
	padding: 1px;
}

/**Pied de page**/
footer a, footer strong, footer b {
	color: #FFFFFF;
	text-decoration: none;
}

footer {
	background-image: url("../images/footer.png");
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3),
		rgba(0, 0, 0, 10)), url("../images/footer.png");
	background-repeat: repeat-x, repeat;
	border-top: 1px solid #7ACEF4;
	padding: 10px;
}

/**
Contenu principal
**/
main {
	text-align: center;
	padding: 5px;
	width: 100%;
}

b, strong {
	font-weight: bold;
}

a {
	color: black;
}

a img {
	border: 0;
	text-decoration: none;
	margin-right: 5px;
}

.aligne {
	display: inline-block;
	margin: 10px;
}

/**
Permet d'encadre lors d'un drag and drop la zonne
**/
.dropEnter {
	border: 3px dashed red;
}

.drop {
	border: 3px dashed green;
}

.dropDone {
	border: 3px solid green;
}

.icon {
	width: 30px;
	height: 30px;
	position: relative;
}

.txt {
	background-color: red;
	font-size: x-small;
	position: absolute;
	padding: 5px;
	top: 1px;
	/* left: 5px; */
	border-radius: 20px;
	text-align: right;
	right: 1px;
	color: white;
}
/**
Présentation en table
*/
.table {
	display: table;
	width: 100%;
	border-spacing: 5px;
	border-color: black;
}

.table .colonne {
	/*Pour IE*/
	/*overflow: hidden;*/
	display: table-cell;
	vertical-align: top;
	height: 100%;
	margin-bottom: 5px;
}

.table .ligne {
	display: table-row;
}
/**
* Ligne de tableau clickable
*/
.clickable-row:hover {
	cursor: pointer;
}

/**
Permet de rendre invisible un élément(sans perturber la mise en page)
**/
.invisible {
	position: fixed;
	left: -1000px;
}

.hidden {
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb),
		to(#F8F8F8));
	background: -moz-linear-gradient(top, #ebebeb, #F8F8F8);
	background-color: #ebebeb;
}

/**
Met le texte à gauche
**/
.gauche {
	text-align: left;
}

/**
Permet de mettre une ligne pour séparer visuellement les listes
**/
ul.separateur>li:FIRST-CHILD {
	border: 0px;
}

ul.separateur>li {
	padding-top: 5px;
	border-top: 1px solid #CDCDCD;
}

/**
Permet de créer une barre de boutons
**/
.boutons {
	margin-bottom: auto auto 10px auto;
	text-align: center;
	clear: both;
}
/**
Boutons
**/
.bouton {
	background-color: #F1F1F1;
	font-weight: bold;
	cursor: pointer;
	padding: 5px;
	margin: 5px;
	border-radius: 6px;
	transition: all 0.218s ease 0s;
	background-image: linear-gradient(to right, #CDCDCD, #F1F1F1);
	text-decoration: none;
	border: 1px solid #CDCDCD;
	display: inline-block;
}

/**
Fixe la taille du bouton pour qu'il soit tous de la mÃªme taille
**/
.boutons .taille {
	display: block;
	width: 80%;
}

.bouton:hover {
	background-color: #CDCDCD;
	background-image: linear-gradient(to right, #F1F1F1, #CDCDCD);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	color: #222222;
}
/**
Permet de mettre les boutons à la ligne
*/
.boutons .separateur {
	margin-bottom: 15px;
}

a.retour {
	position: absolute;
	top: 60px;
	left: 10px;
}

a.retourParcours {
	position: absolute;
	top: 10px;
	left: 10px;
}

a.precedent {
	position: absolute;
	top: 60px;
	left: 10px;
}

.displayNone {
	display: none;
}

.listParcours {
	/* 	position: absolute; */
	top: 20px;
}

/**
Bouton retour
**/
a.retour span {
	padding-left: 22px;
	background: url("../images/retour.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton retour
**/
a.retourParcours span {
	padding-left: 22px;
	background: url("../images/retour.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Permet de mettre une image loupe sur un élément
**/
.filtreActif {
	padding-left: 22px;
	background: url("../images/filtreActif.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Permet de mettre une image loupe sur un élément
**/
.filtreInactif {
	padding-left: 22px;
	background: url("../images/filtreInactif.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Bouton ajouter
**/
.ajouter {
	padding-left: 22px;
	background: url("../images/ajouter.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton ajouter
**/
.evenement {
	padding-left: 22px;
	background: url("../images/preparer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton archiver
**/
.archiver {
	padding-left: 22px;
	background: url("../images/archiver.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton archiver
**/
.synchroniser {
	padding-left: 22px;
	padding-top: 1.5px;
	background: url("../images/synchronize.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}


/**
Bouton desactiver synchro collective
**/
.desynchroniser {
	padding-left: 22px;
	padding-top: 1.5px;
	background: url("../images/defavorable.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton desactiver synchro collective
**/
.resynchroniser {
	padding-left: 22px;
	padding-top: 1.5px;
	background: url("../images/oui.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}


/**
Bouton jury
**/
.jury {
	padding-left: 22px;
	background: url("../images/jury.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton ajouter
**/
.categorieDepot {
	padding-left: 22px;
	background: url("../images/categorieDepot.png") no-repeat scroll left
		top rgba(0, 0, 0, 0);
}

.typeParcours {
	padding-left: 22px;
	background: url("../images/typeparcours.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Texte depot  tuteur final
**/
.depot {
	font-size: 10px;
	font-style: italic;
}

/**
Bouton ajouter
**/
.profil {
	padding-left: 22px;
	background: url("../images/lier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton membre
**/
.membre {
	padding-left: 22px;
	background: url("../images/membre.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton ajouter
**/
.typeDepot {
	padding-left: 22px;
	background: url("../images/typeDepot.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton chargement
**/
.chargement {
	padding-left: 22px;
	background: url("../images/chargement.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton preparer
**/
.preparer {
	padding-left: 22px;
	background: url("../images/preparer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton avis
**/
.avisJury {
	width: 100%;
	padding-left: 22px;
	background: url("../images/avis.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Bouton cloturer
**/
.cloturer {
	padding-left: 22px;
	background: url("../images/cloturer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton decloturer
**/
.decloturer {
	padding-left: 22px;
	background: url("../images/decloturer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton relancer
**/
.relancer {
	padding-left: 22px;
	background: url("../images/relancer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton replanifier
**/
.replanifier {
	padding-left: 22px;
	background: url("../images/replanifier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton ressrouce
**/
.ressource {
	padding-left: 22px;
	background: url("../images/ressource.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton rythme
**/
.rythme {
	padding-left: 22px;
	background: url("../images/rythme.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton rythmde
**/
.rythmde {
	padding-left: 22px;
	background: url("../images/rythmde.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}


/**
Bouton zip
**/
.zip {
	padding-left: 22px;
	background: url("../images/zip.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton ajouter
**/
.rss {
	padding-left: 22px;
	background: url("../images/rss.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton parcours
**/
.parcours {
	padding-left: 22px;
	background: url("../images/parcours.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton oui
**/
.oui {
	padding-left: 22px;
	background: url("../images/oui.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton non
**/
.non {
	padding-left: 22px;
	background: url("../images/non.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton favorable
**/
.favorable {
	padding-left: 22px;
	background: url("../images/favorable.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton defavorable
**/
.defavorable {
	padding-left: 22px;
	background: url("../images/defavorable.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton connecter
**/
.connecter {
	padding-left: 22px;
	background: url("../images/connecter.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton basculer
**/
.basculer {
	padding-left: 22px;
	background: url("../images/bascule.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton modifier
**/
.modifier {
	padding-left: 22px;
	background: url("../images/modifier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton action de remédiation
**/
.remediaition {
	padding-left: 22px;
	background: url("../images/accompagnement.png") no-repeat scroll left
		top rgba(0, 0, 0, 0);
}

/**
Bouton avis pour accès diplôme
**/
.avis {
	padding-left: 22px;
	background: url("../images/avis.png") no-repeat scroll left
		top rgba(0, 0, 0, 0);
}

.validerDisable {
	padding: 5px;
	font-weight: bold;
	background-color: #D14836;
	color: #FFFFFF;
	border-radius: 5px;
	border: 1px solid #D14836;
	float: right;
	margin: 5px;
	cursor: not-allowed;
	opacity: 0.5;
	text-transform: uppercase;
}

.modifierDisable {
	padding-left: 22px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/modifier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.publierDisable {
	padding-left: 22px;
	padding-bottom: 10px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/publier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.supprimerDisable {
	padding-left: 22px;
	padding-bottom: 10px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/supprimer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.pdfDisable {
	padding-left: 22px;
	padding-bottom: 10px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/pdf.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.zipDisable {
	padding-left: 22px;
	padding-bottom: 10px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/zip.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton transférer
**/
.transferer {
	padding-left: 22px;
	background: url("../images/iconTransfert.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton publier
**/
.publier {
	padding-left: 22px;
	padding-bottom: 5px;
	background: url("../images/publier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton depublier
**/
.depublier {
	padding-left: 22px;
	padding-bottom: 5px;
	background: url("../images/depublier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton visualiser depôt
**/
.visualiser {
	padding-left: 22px;
	background: url("../images/visualiserDepot.png") no-repeat scroll left
		top;
}

/**
Bouton signalemnet
**/
.signaler {
	padding-left: 22px;
	background: url("../images/signaler.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton Favori jaune sans border
**/
.favoriJ {
	padding-left: 15px;
	border-style: none;
	background: url("../images/faviconjaune.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
	padding-top: 5px
}
/**
Bouton Favori gris sans border
**/
.favoriG {
	padding-left: 15px;
	border-style: none;
	background: url("../images/favicongrise.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
	padding-top: 5px
}

/**
Bouton password
**/
.password {
	padding-left: 22px;
	background: url("../images/password.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton historique
**/
.historique {
	padding-left: 22px;
	background: url("../images/historique.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Bouton connexion
**/
.connexion {
	padding-left: 22px;
	background: url("../images/connexion.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Bouton document
**/
.document {
	padding-left: 22px;
	background: url("../images/document.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton déposer
**/
.deposer {
	padding-left: 22px;
	background: url("../images/document.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton suprimer
**/
.supprimer {
	padding-left: 22px;
	padding-bottom: 10px;
	background: url("../images/supprimer.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton afficher
**/
.afficher {
	padding-left: 22px;
	background: url("../images/afficher.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.afficherDisable {
	padding-left: 22px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/afficher.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton lier
**/
.lier {
	padding-left: 22px;
	padding-bottom: 10px;
	background: url("../images/lier.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.mettre_non_evaluable {
	padding-left: 22px;
	padding-bottom: 10px;
	background: url("../images/mettre_non_evaluable.png") no-repeat scroll
		left top rgba(0, 0, 0, 0);
}

.mettre_evaluable {
	padding-left: 22px;
	padding-bottom: 10px;
	background: url("../images/mettre_evaluable.png") no-repeat scroll left
		top rgba(0, 0, 0, 0);
}

/**
Bouton retour
**/
.lister {
	padding-left: 22px;
	background: url("../images/lister.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.discussion {
	padding-left: 22px;
	background: url("../images/discussion.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.list-group {
	position: relative;
	display: block;
	padding: 0px 15px;
	margin-bottom: -1px;
	/*     //border: 1px solid #ddd; */
	line-height: 1em;
}

.divCadre {
	height: auto !important;
	background-color: #FFCC00 !important;
}

.divFiltre {
	width: 45px !important;
	background-color: #FFCC00 !important;
}

.divFiltredroite {
	position: relative;
	left: 51px;
	width: 20%;
}

/**
Bouton retour
**/
.card {
	padding-left: 22px;
	background: url("../images/vcard.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton home
**/
.home {
	border-style: none;
	padding-left: 22px;
	background: url("../images/vcard.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton configure
**/
.configurer {
	padding-left: 22px;
	background: url("../images/config.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}
/**
Bouton retour
**/
.suivant {
	position: relative;
	top: -3px;
	padding-bottom: 5px;
	padding-right: 15px;
	background: url("../images/suivant.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton retour
**/
.precedent {
	position: relative;
	top: -2px;
	padding-bottom: 5px;
	padding-left: 22px;
	background: url("../images/precedent.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton annuler
**/
.annuler {
	padding-left: 22px;
	background: url("../images/annuler.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Bouton retour
**/
.discipline {
	padding-left: 22px;
	background: url("../images/discipline.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**Bouton excel**/
.xls {
	padding-left: 22px;
	background: url("../images/xls.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

.xlsDisable {
	padding-left: 22px;
	padding-bottom: 10px;
	color: currentColor;
	cursor: not-allowed;
	opacity: 0.5;
	text-decoration: none;
	background: url("../images/xls.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**Bouton question**/
.question {
	padding-left: 22px;
	background: url("../images/question.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**Bouton pdf**/
.pdf {
	padding-left: 22px;
	background: url("../images/pdf.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**Fiche attention**/
.attention-icon {
	padding-left: 22px;
	background: url("../images/attention.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
}

/**
Information
**/
.information {
	padding-left: 22px;
	background: url("../images/information.png") no-repeat scroll left top
		rgba(0, 0, 0, 0);
	background-size: contain;
}

.email {
	background-image: url("../images/email.png");
	background-repeat: no-repeat;
	padding-left: 20px;
}

.tel {
	background-image: url("../images/tel.png");
	background-repeat: no-repeat;
	padding-left: 20px;
}

.fax {
	background-image: url("../images/fax.png");
	background-repeat: no-repeat;
	padding-left: 20px;
}

.adr {
	margin-bottom: 5px;
	margin-top: 5px;
	padding-left: 15px;
}

.complet td {
	background-color: #afffbb;
}

.non_evaluable td {
	background-color: #f2acac;
}

/**
Conteneur
**/
.textLeft {
	text-align: left;
}

.textRight {
	text-align: right;
}

.textCenter {
	text-align: center;
}

/**
Positionne l'élément à droite(utilisé la classe clearBoth pour forcer le saut de ligne
**/
.floatRight {
	float: right;
}

/**
Positionne l'élément à gauche(utilisé la classe clearBoth pour forcer le saut de ligne
**/
.floatLeft {
	float: left;
}

.clearLeft {
	clear: left;
}

/**
Force le saut de ligne
**/
.clearBoth {
	clear: both;
}

/**
Message d'erreur(met le span à la ligne)
**/
.attention {
	color: #CD0A0A;
	border: 1px solid #CD0A0A;
	border-radius: 6px 6px 6px 6px;
	padding: 10px 10px 10px 33px;
	font-weight: bold;
	background: url("../images/attention.png") no-repeat scroll left center
		#FEF1EC;
	background-position: 11px;
		
}

.signalement {
	color: #ff5a00;
	border: 1px solid #ce5c00;
	border-radius: 6px 6px 6px 6px;
	padding: 10px 10px 10px 33px;
	font-weight: bold;
	background: url("../images/signaler.png") no-repeat scroll left center
		#F5C173;
	background-position: 11px;
		
}

.signalement2 {
	color: #272626;
	border: 1px solid #ff5a00;
	/* border-radius: 6px 6px 6px 6px; */
	padding: 10px 10px 10px 22px;
	/* font-weight: bold; */
	background: no-repeat scroll left top #fb6901d9;
}
/**
Permet d'indiquer qu'un dépôt est sauvegardé en tant que brouillon
**/
.brouillon {
	color: #ce5c00;
	border: 1px solid #ce5c00;
	border-radius: 6px 6px 6px 6px;
	padding: 10px 10px 10px 22px;
	font-weight: bold;
	margin-left: 30px;
	margin-right: 30px;
	background-color: #F5C173;
	text-align: center;
}

/**
Permet d'indiquer qu'une colonne est supprimé (utilisé sur les berceaux) 
**/
table>tr .supprime {
	background-color: #fcf0b4 !important;
}

.supprimeBerceau {
	background: #fcf0b4 !important;
}

/**
Message d'erreur des formulaire (met le span à la ligne)
**/
.erreur {
	color: #CD0A0A;
	border: 1px solid #CD0A0A;
	border-radius: 6px 6px 6px 6px;
	padding: 10px 10px 10px 22px;
	font-weight: bold;
	background: url("../images/attention.png") no-repeat scroll left top
		#FEF1EC;
	display: block;
	margin: 5px;
	text-align: center;
}

/**
Afficher un message d'erreur
**/
.msg-erreur {
	border-color: #CD0A0A;
	border-style: solid;
	border-width: 1px;
	border-radius: 8px;
	margin: auto;
	overflow: auto;
	padding: 10px 10px 10px 33px;
	width: 50%;
	background: url("../images/attention.png") no-repeat scroll left center
		#FEF1EC;
	background-position: 11px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-weight: bold;
	color: #CD0A0A;
}

/**
Afficher un message de succès
**/
.validation {
	border-color: #4e9a06;
	border-style: solid;
	border-width: 1px;
	border-radius: 8px;
	margin: auto;
	overflow: auto;
	padding: 10px 10px 10px 33px;
	width: 50%;
	background: url("../images/oui.png") no-repeat scroll left center
		#ccfb9f;
	background-position: 11px;
	margin-top: 5px;
	margin-bottom: 5px;
}

.publie {
	border: 1px solid #4e9a06;
	border-radius: 6px 6px 6px 6px;
	padding: 10px 10px 10px 22px;
	font-weight: bold;
	margin-left: 50px;
	margin-right: 50px;
	background-color: #ccfb9f;
	text-align: center;
}

/**
Afficher un message
**/
.aide {
	margin: 5px;
	border-color: #8cb9fd;
	color: white;
	border-style: solid;
	border-width: 1px;
	border-radius: 8px;
	overflow: auto;
	padding: 10px 10px 10px 33px;
	background: url("../images/question.png") no-repeat scroll left center
		#204a87;
	background-position: 11px;
}

/**
Affichage des labels
**/
.labelDetail {
	font-weight: bold;
	font-style: italic;
}

.gras {
	color: #ef2929;
	font-weight: bold;
}

.grasNoir {
	color: #000000;
	font-weight: bold;
}

.grasNoirGrand {
	color: #000000;
	font-weight: bold;
	font-size: 15px;
}

.grasBleu {
	color: #0f64b0;
	font-weight: bold;
}

.bleu {
	color: #0f64b0;
}

/**
Cadre pour encadrer un élément
**/

/**
Permet de réaliser des cadres en combinant avec les balises h.. pour 
découper.
**/
.cadre {
	box-shadow: 2px 2px 6px #979797;
	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb),
		to(#fafafa));
	background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
	/*border:#48b9ef 1px solid;*/
	text-align: left;
	min-height: 50px;
	overflow: auto;
	margin-left: 5px;
	margin-bottom: 5px;
}

/**
Rend le cadre flottant avec une lat ta
**/
.flottant {
	width: 45%;
	display: inline;
	vertical-align: top;
	float: left;
}

.cadre h3 {
	background: -webkit-gradient(linear, left top, left bottom, from(#F1F1F1),
		to(#F1F1F1));
	background: -moz-linear-gradient(top, #F1F1F1, #F1F1F1);
	background-color: #F1F1F1;
	border-bottom: #ccc 1px solid;
	padding: 6px;
	text-align: center;
	text-transform: uppercase;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
}

.cadre h4 {
	/*background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#dadada), to(#ebebeb));
	background: -moz-linear-gradient(top,  #dadada,  #ebebeb);*/
	border-bottom: #ccc 1px solid;
	margin: 5px;
	padding: 6px;
}

.cadre p {
	margin-left: 5px;
}

.cadre ul {
	margin: 5px;
}
/**
VCard
**/
.fiche {
	background-color: #E6E6E6;
	border: 1px solid #A8A8A8;
	border-radius: 8px;
	color: #333333;
	margin-bottom: 5px;
}

.text {
	text-align: justify !important;
	text-justify: inter-word !important;
	width: 378px !important;
	display: inherit !important;
}

.textaria {
	overflow: auto;
	vertical-align: top;
	min-height: 55px;
	min-width: 270px;
}

.fiche:hover {
	background-color: #FFCCCC;
}

.fiche div {
	margin: 5px;
}

.fiche h3:FIRST-CHILD {
	border-radius: 8px 8px 0px 0px;
	text-align: center;
	text-transform: uppercase;
}

.fiche h3 {
	background: #ededed;
	border-bottom: 1px solid #48b9ef;
	padding: 5px;
}

.fiche h5:FIRST-CHILD {
	border-radius: 8px 8px 0px 0px;
	text-align: center;
	text-transform: uppercase;
}

.evenementleft {
	float: left !important;
	border-radius: 8px 8px 0px 0px !important;
	text-align: left !important;
	text-transform: uppercase !important;
}

.evenementright {
	float: right !important;
	border-radius: 8px 8px 0px 0px !important;
	text-align: right !important;
	text-transform: uppercase !important;
}

.fiche h4:FIRST-CHILD {
	border-radius: 8px 8px 0px 0px;
	margin: 0px;
	text-align: center;
	text-transform: uppercase;
}

.fiche h4 {
	background: #ededed;
	border-bottom: 1px solid #48b9ef;
	padding: 5px;
}

.fiche h5 {
	text-align: center;
	background: #ededed;
	border-bottom: 1px solid #48b9ef;
	padding: 5px;
}

.fiche img {
	padding-right: 0.5em;
}

.vertical-menu {
	width: 200px;
}

.vertical-menu a {
	background-color: #eee;
	color: black;
	display: block;
	padding: 12px;
	text-decoration: none;
}

.vertical-menu a:hover {
	background-color: #ccc;
}

.vertical-menu a.active {
	background-color: #9e9e9e;
	color: white;
}

/**
Mise en page des tableaux
**/

/*
Table Style - This is what you want
------------------------------------------------------------------ */
.tableau {
	font-family: Arial, Helvetica, sans-serif;
	color: #666;
	background: #eaebec;
	margin-left: auto;
	margin-right: auto;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
	border-collapse: collapse;
	margin-bottom: 5px;
}

.tableau a:link {
	color: #666;
	font-weight: bold;
}

.tableau th a:visited {
	color: #666;
	font-weight: bold;
}

.tableau  a:visited {
	color: #999999;
	font-weight: bold;
}

.tableau  a:active, .tableau  a:hover {
	color: #bd5a35;
}

.tableau tr {
	text-align: center;
	padding-left: 20px;
	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb),
		to(#fafafa));
	background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}

.tableau tr:nth-child(even) {
	background: #f8f8f8;
	background: -webkit-gradient(linear, left top, left bottom, from(#fafafa),
		to(#f8f8f8));
	background: -moz-linear-gradient(top, #fafafa, #f8f8f8);
}

.tableau  tr:hover {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2),
		to(#f0f0f0));
	background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}

.tableau  th {
	padding: 10px;
	border: 1px solid #e0e0e0;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed),
		to(#ebebeb));
	background: -moz-linear-gradient(top, #ededed, #ebebeb);
}

.tableau  th:first-child {
	text-align: left;
	padding-left: 20px;
}

.tableau  td {
	white-space: nowrap;
	padding: 5px;
	border: 1px solid #e0e0e0;
}

.width-100 {
	width: 100%;
}

.ellipsis {
	/*      border: 1px solid black; */
	width: 400px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
}

.tableauTDB {
	padding: 10px !important;
	border: 1px solid #e0e0e0 !important;
	background: #ededed !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed),
		to(#ebebeb)) !important;
	background: -moz-linear-gradient(top, #ededed, #ebebeb) !important;
	font-style: gras;
}

.tableau  td:first-child {
	text-align: center;
}

.tableau td.gauche {
	text-align: left !important;
	word-wrap: break-word;
	white-space: normal;
}

.favorisubmit {
	border-right: none !important;
}

.favoritext {
	border-left: none !important;
}

.leftaffichage {
	text-align: left !important;
}

.rightaffichage {
	text-align: left !important;
}

.tableau  tr:hover td {
	/*border-top-color: #48b9ef;
	border-bottom-color: #48b9ef;*/
	
}

.tableau  tr:hover td:first-child {
	border-left-color: #48b9ef;
}

.tableau  tr:hover td:last-child {
	border-right-color: #48b9ef;
}

.tableau td ul {
	text-align: left;
}

.tableau td li {
	margin-top: 5px;
}

.tableaux {
	width: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #666;
	background: #eaebec;
	margin-left: auto;
	margin-right: auto;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
	border-collapse: collapse;
	margin-bottom: 5px;
}

.tableaux a:link {
	color: #666;
	font-weight: bold;
}

.tableaux th a:visited {
	color: #666;
	font-weight: bold;
}

.tableaux  a:visited {
	color: #999999;
	font-weight: bold;
}

.tableaux  a:active, .tableaux  a:hover {
	color: #bd5a35;
}

.tableaux tr {
	height: 52px;
	text-align: center;
	padding-left: 20px;
	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb),
		to(#fafafa));
	background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}

.tableaux tr:nth-child(even) {
	background: #f8f8f8;
	background: -webkit-gradient(linear, left top, left bottom, from(#fafafa),
		to(#f8f8f8));
	background: -moz-linear-gradient(top, #fafafa, #f8f8f8);
}

.tableaux  tr:hover {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2),
		to(#f0f0f0));
	background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}

.tableaux  th {
	padding: 10px;
	border: 1px solid #e0e0e0;
	background: #e0e0e0;
}

.tableaux  th:first-child {
	text-align: center;
	padding-left: 20px;
}

.tableaux  td {
	padding: 5px;
	border: 1px solid #e0e0e0;
}

/**
Css poru les grilles
**/
.grille td:first-child {
	text-align: left;
	padding-left: 40px;
}

/**
Pagination
**/
.pagination {
	color: #48b9ef;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	text-align: center;
}

.pagination a {
	color: #48b9ef;
	padding: 2px 5px;
	margin: 0 2px;
	text-decoration: none;
	border: 2px solid #f0f0f0;
}

.pagination a:hover, .pagination a:active {
	border: 2px solid #ff5a00;
	color: #ff5a00;
}

.pagination span.current {
	padding: 2px 5px;
	border: 2px solid #ff5a00;
	color: #fff;
	font-weight: bold;
	background-color: #ff6c16;
}

.pagination span.disabled {
	display: none;
}

.form-control:disabled, .form-control[readonly] {
	background-color: white;
	opacity: 1;
}

/*
Menu context
*/
body ul.contextMenu, body ul.contextMenu ul {
	/* Required settings */
	top: -1000px;
	left: -1000px;
	position: absolute;
	z-index: 999;
	/* Possibly inherited values overrides */
	border-width: 0;
	float: none;
	height: auto;
	margin: 0;
	padding: 0;
	width: auto;
	/* Additional settings */
	border-top: solid 1px #acacac;
	border-bottom: solid 1px #acacac;
	min-width: 220px;
}

body ul.contextMenu li {
	/* Required settings */
	width: 162px;
	list-style: none none outside;
	/* Possibly inherited values overrides */
	float: none;
	height: auto;
	letter-spacing: normal;
	margin: 0;
	border-width: 0;
	line-height: normal;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	vertical-align: top;
	word-spacing: normal;
	font-family: Arial, Sans-Serif;
	font-size: 13px;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	/* Additional settings */
	overflow: hidden;
	cursor: default;
	padding: 5px 5px 5px 5px;
	border-left: solid 1px #acacac;
	border-right: solid 1px #acacac;
	background-color: #e6e6e6;
	min-width: 220px;
}

body ul.contextMenu li.separator {
	width: 198px;
	height: 12px;
	background: #e6e6e6 url(images/separator.gif) no-repeat;
	padding: 0;
	/* IE 6/7 hack */
	*margin: -1px 0 -5px 0
}

body ul.contextMenu li.disabled {
	color: #999
}

body ul.contextMenu li span.submenu {
	display: block;
	width: 4px;
	height: 11px;
	float: right;
	background: url(images/submenu.gif) no-repeat 0 4px
}

body ul.contextMenu li.disabled span.submenu {
	background-image: url(images/submenu_dis.gif)
}

body ul.contextMenu li.hover {
	background-color: #d4dde6;
	background-image: url(images/hover.gif)
}
/* no hover effects on separators*/
body ul.contextMenu li.hover.separator {
	background-color: #e6e6e6;
	background-image: url(images/separator.gif)
}

/**
Desktop
**/
@media only screen and (min-width: 800px) {
	.table .colonne {
		min-width: 15%;
	}
}

@media all and (max-width: 500px) {
	html {
		filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=3);
	}
}

.contentexception {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

/*
page de connexion externe
*/
.authentificationExt {
	padding: 8px 12px;
	overflow: hidden;
}

.champ {
	padding: 8px 12px;
	overflow: hidden;
}

.champLabel {
	width: 9em;
	float: left;
}

.champInputext {
	float: left;
}

.compasOverlay {
	position: fixed; /* Sit on top of the page content */
	display: none; /* Hidden by default */
	width: 100%; /* Full width (cover the whole page) */
	height: 100%; /* Full height (cover the whole page) */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	/* Black background with opacity */
	z-index: 2;
	/* Specify a stack order in case you're using a different order for other elements */
}

@keyframes spinner-border {
	to {-webkit-transform: rotate(360deg);
	transform: rotate(360deg)
}

}
.compasSpinner {
	position: absolute;
	top: 40%;
	left: 48%;
	width: 4rem;
	height: 4rem;
	vertical-align: -.125em;
	border: .25em solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: .75s linear infinite spinner-border;
	animation: .75s linear infinite spinner-border;
}

.niveau {
	width: 110px;
	vertical-align: middle !important;
}

.form-container {
	margin: 2px;
}

.form-dialog {
	overflow: hidden;
	margin: 0;
}

nav ul li ul hr {
	border-top: 0px;
	border-bottom: solid 2px #767474;
	margin-top: 0px;
	margin-bottom: 0px;
}

.img-conrainer {
	margin-left: 20px;
	margin-bottom: 20px;
	display: block;
	line-height: 16px;
}

.img-label {
	vertical-align: middle;
	margin-left: 5px;
	font-weight: bold;
}

.libelle-textarea {
	min-height: 1px;
}

.li-retour-ligne {
	white-space: pre-line;
}

.container-marge {
	margin: 10px;
}

.text-ellipsis {
	white-space: nowrap;
	width: 500px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-favoris {
	float: right;
	min-width: 400px;
	margin-right: 5px;
	max-height: 520px;
	overflow-y: auto;
}

.espaceLignes {
	line-height: 1.5em;
}

.description-grille {
	white-space: pre-line;
	margin: 10px;
}

.columns-justify {
	column-count: 2;
	text-align: justify;
}

.custom-header-transparent {
	caret-color: transparent;
}

.custom-header-inline {
	display: inline-block;
}

.supprimer-image {
	cursor: pointer;
	margin-left: 5px;
	vertical-align: middle;
}

.alignement-haut {
	width: 400px;
	vertical-align: top;
}

.tableau-vide {
	margin: 10px;
	font-size: 13px;
	font-weight: 600;
	color: rgb(102, 102, 102);
}