@charset "utf-8";
/*
 COMMUN A TOUT FORMULAIRE
 MAJ: 07/08/2008 - HD
*/

/* FORMULAIRE */
#sobi2EditForm #titreForm,
#sobi2EditForm #piedForm {	/*** Mise en forme du titre et du pied de formulaire ***/
	font: bold 1.1em arial, hevetica, sans-serif;
	margin: 0;
	padding: .5em;
}
#sobi2EditForm #piedForm { /*** Les boutons sont alignés à droite ***/
	text-align: right;
}
#sobi2EditForm #piedForm input {
	font-weight: bold; /*** Pour améliorer la lisibilité des boutons ***/
	margin-left: 1em;
}

/* FIELDSET , LEGEND */
#sobi2EditForm fieldset {
	margin-bottom: 10px;
	border: #CCC 1px solid;
}
#sobi2EditForm fieldset:hover {
	background-color: #FFF;
}
#sobi2EditForm fieldset legend {
	padding: 0 10px;
	border-left: #CCC 1px solid;
	border-right: #CCC 1px solid;
	font-size: 1.2em;
	color: #999;
}

/* LABEL */
#sobi2EditForm label {
 	background-color: #FFCC66;
  /*	display: block;*/
 	width: 39%;       	/* Les intitulés prennent cette largeur totale du formulaire */
    float: left;  /* Très important  */
   /* padding-right: 1%; Pos Pb affichage, retour à ligne sur Fx */
	text-align: right;
	letter-spacing: 1px;
    padding-right: 6px;
}
#sobi2EditForm label:hover {
	cursor: pointer;	/* Petite astuce pour apprendre aux utilisateurs à cliquer sur les intitulés */
}
#sobi2EditForm .descNonLabel:hover {
     cursor: default;   /* Pas d'effet sur les textes de présentation */
}
#sobi2EditForm .form_label_nostyle {
	background: none; /* A voir sir ca sert ?*/
}
#sobi2EditForm label span.info { /* Ajout texte d'info taille plus petite */
	margin-top: .2em;
	font-size: .7em;
	font-weight: normal;
	cursor: default;
}
#sobi2EditForm .oblig label{ /* Mise en évidence des champs obligatoires */
	color: Red;
	font-weight:600;
}
#sobi2EditForm .labelEquiv {  /* Mise en forme équivalent à un pseudo-label pour un titre span */
 	background-color: #FFCC66;
	display: block;
	width: 39%; 	/* Les intitulés prennent cette largeur totale du formulaire */
	float: left; 	/* Très important */
	padding-right: 1%;
	text-align: right;
	letter-spacing: 1px;
}
#sobi2EditForm label.labelBtn { /* label des boutons radio, checkbox. Doit annuler attributs des labels */
    width: auto;
    float: none;
    color: #000000;
    background-color: transparent;
    text-align: left;  /* Indispensable pour coller case à cocher */
}

/* INPUT */
#sobi2EditForm input {
   	margin-left: 1%;
	border: #CCC 1px solid;
   	/* border: 1px inset #ABABAB; provenant de template.css */
}
#sobi2EditForm input[type="text"]{ /* Valable avec Navigateur moderne */
  width: 58%;  /* pose pb si déclaré dans input avec checkbox*/
}
#sobi2EditForm input:hover {
	background-color: #ADFF2F;
}
#sobi2EditForm input:focus {
	border: 1px ridge #070707;
	background-color: #F4F4F4;
}
#sobi2EditForm .inputbox { /* Class écrasant attributs chargés avant, provenant du template: template.ccs  */
	padding: 0%
}

/* INPUT TYPE CHECKBOX */
#field_type_site{
   /*  display: none;  Masque champ de saisie */ 
}


/* TEXTAREA */
#sobi2EditForm textarea { /* Champ de saisie plus long */
	width: 58%;
	margin-left: 1%;
}
#sobi2EditForm textarea:hover   {
	background-color: #ADFF2F;
}
#sobi2EditForm textarea:focus  {
	border: 1px solid #070707;
	background-color: #F4F4F4;
}

/* SELECT */
#sobi2EditForm select {
	margin-left: 1%;
	width: 58%;
	border: #CCC 1px solid;
}
#sobi2EditForm select:hover {
	background-color: #ADFF2F;
}
#sobi2EditForm select:focus {
	border: 1px solid #070707;
	background-color: #F4F4F4;
}
#sobi2SlectedCatsID {
  display: none;  /* Masque champ de saisie quand 1 seule catégorie qui est imposée */
  }

/* BTN CHOIX : Groupement multiligne  */
#sobi2EditForm .multiChoixPlusieursLgn {
    float: left; /* Indispensable */
    /* background-color: #ffff00;*/
    width: 58%; /* Indispensable, comme autre saisie */
    margin-left: 1%;
}
#sobi2EditForm .multiChoixPlusieursLgn p{ /* Label + input - ne pas modifier */
    width:100%;
    float:  left;
}
#sobi2EditForm .multiChoixPlusieursLgn p:hover{ /* Survol de la ligne */
    background-color: #ADFF2F;
}
/* RADIO, CHECKBOX */
#sobi2EditForm input[type="radio"] {  /* pas l'air de fonctionner */
    /* margin-left:100px;     */
  /*  float:left;*/
}
#sobi2EditForm input.checkbox:focus {   /* pas l'air de fonctionner */
	border: 1px solid #070707;
	background-color: #F4F4F4;
}

/* SUBMIT */
#sobi2EditForm input[type="submit"] {
	border: #DDEEFF 1px solid;
	width: 27%;
}
#sobi2EditForm input[type="submit"]:hover {
	background-color: #66CC33;
	cursor: pointer;
}

#accept_rules_row label{
  width:400px; /* Long. txt pour tenir sur 1 seul ligne et surcharger longueur label */
  background-color: transparent; 
}

