/* FONDS */
.indication{
	background-color:var(--vlight-bg-color);
}
.header{
	background-color:lightgray;
}

.partie {
	position : relative ;
	border : #999 5px solid ;
	border-radius: 8px;
	padding-left: 6px;
	padding-bottom: 16px;
	/*background : #f5f5f5 ;*/
}
.titre_partie{
   display: block;
   position : relative ;
   margin : -15px 0 0 20px ;
   padding: 3px;
	float : left ;
	font-size : 13px ;
	font-weight: bold;
	color: #666;
	background : var(--light-bg-color);
}

/* boutons */
.bouton_color{
	color:white;
	border-radius: 7px;
	font-weight:bold;
	padding:4px 15px 4px 15px;
	cursor:  pointer;
}
.bouton_indian{
	background-color:IndianRed;
}
.bouton_red{
	background-color:Red;
}
.bouton_blue{
	background-color:DodgerBlue;
}
.bouton_gris{
	background-color:Gainsboro;
}
.bouton_vert{
	background-color:Green;
}
.bouton_vert_clair{
	background-color:MediumSeaGreen;
}
.bouton_darkgray{
	background-color: #999;
}
/* cellules */
.oneline{
	white-space:nowrap;
}

/* input */
.cssinput_red {  
	border: 1px solid red;
	margin-right: 2px;
  background-color: var(--dark-bg-color);
  overflow: hidden;
}

.avert{
	background-color: red;
	color:white;
	text-align: center;
	font-size: 1.2em;
	padding: 4px 0 4px 0;
}

/* ADAPTATION des MENUS généraux (Chrome n'accepte pas ces définitions, d'où leur copie dans les fichiers !!) */
#menu1{
        width:90%;
margin-left:auto; 
margin-right:auto;
        margin: 0;
        padding: 0 0 0 0;
        list-style: none;
display: inline;		/* */
}

#menu1 li{
        float: left;
        padding: 5px 0 10px 0;
        position: relative;
}

#menu1 a{		/* niveau 1 */
        float: left;
        color: #444;
  font-family: Verdana, Arial;
  font-size: 11px;
  font-weight: bold;
        text-decoration: none;
        height: auto;			/* */
        padding: 0px;		/* */
        padding-right: 5px;
}

#menu1 li:hover > a{
        color: #111;
}

*html #menu1 li a:hover{ /* IE6 */
        color: #111;
}

#menu1 li:hover > ul{
        display: block;
}

/* Sous-menu */

#menu1 ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 99999;
    background: var(--dark-bg-color);
}

#menu1 ul li{
    float: none;
    padding: 0;
    display: block;
    border: 1px solid #aaa;		/* */
    margin: auto;
}
/*
#menu1 ul li:last-child{
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
*/
#menu1 ul a{
    padding: auto;
    height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

*html #menu1 ul a{ /* IE6 */
        height: 10px;
        width: 150px;
}

*:first-child+html #menu1 ul a{ /* IE7 */
        height: 10px;
        width: 150px;
}

#menu1 ul a:hover{
        background: var(--light-bg-color);
}

#menu1 ul li:last-child {									/* */
margin-bottom: 0px;
}

/* Rétablissement du flottement */
#menu1:after{
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
}

#menu1 ul li ul{	/*second niveau */
  margin:0 0 0 100px;
}

#menu1 ul li ul li{	
  margin:0 0 0 0;
}

#menu1 ul li ul a{	/* top, right, bottom, left */
    padding: 5px 15px 5px 20px;
}

#menu1 ul li ul li:last-child {
	margin-bottom: 0px;
}
/*
#menu1 ul li:first-child a{
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

#menu1 ul li:first-child a:after{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #444;
}

#menu1 ul li:first-child a:hover:after{
    border-bottom-color: #04acec;
}
*/

* html #menu1             { zoom: 1; } /* IE6 */
*:first-child+html #menu1 { zoom: 1; } /* IE7 */

/* upload */
.container{
    width:inherit;
    background-color: var(--dark-bg-color);
}

/* Preview */
.preview{
    margin: 0;
    display: none;
}

#overlay_aide, #overlay_add_aut, #overlay_del_aut{
    display: none;
    position: fixed;
    top:0; right:0; bottom:0; left:0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
#overlay_aide:target{
    display: block;
}
#overlay_add_aut:target{
    display: block;
}
#overlay_del_aut:target{
    display: block;
}

/* spécial MCE */
.mce-tinymce.mce-container.mce-panel {
width: 95%;
}