1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
| body
{
background:#CCCCCC;
background-repeat:repeat-y;
margin:10px 0;
padding:0;
text-align:center;
font-family:Verdana, Geneva, sans-serif;
font-size:11px;
}
body a
{
text-decoration:none;
}
#conteneur
{
width:750px;
margin:0 auto;
text-align:left;
border:1px solid #000000;
background:#FFFFCC;
}
/*/////////////////////////////////////
L'en-tête
/////////////////////////////////////*/
#entete
{
height:96px;
}
/*/////////////////////////////////////
Le chemin
/////////////////////////////////////*/
.chemin
{
margin:5px;
color:#FF9900;
float:left;
}
.imprimer img
{
float:right;
margin:5px;
text-decoration:none;
border:none;
}
/*/////////////////////////////////////
Le menu horizontal
/////////////////////////////////////*/
#menutop, #menutop ul /* Liste */
{
padding : 0;
margin : 0;
list-style : none;
line-height : 18px; /* hauteur pour chaque élément */
text-align : center; /*centre le texte qui se trouve dans la liste */
}
#menutop /* Ensemble du menu */
{
font-weight : bold;
font-family : Arial;
font-size : 10.5px;
float:right;
}
#menutop li ul li a
{
font-weight : normal;
}
#menutop a /* Contenu des listes */
{
display : block; /*liens deviennent des balises de type block */
padding : 0;
background : #66FFFF;
color : #006699;
text-decoration : none;
width : 119px;
}
#menutop a:hover
{
color: #000000;
background: #66CCFF;
}
#menutop li /* Elements des listes */
{
float : left;
/* pour IE qui ne reconnaît pas "transparent" */
border-right : 1px solid #fff; /*bordure blanche à droite de chaque élément */
}
/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menu li
{
border-right: 1px solid #fff ; /*bordure transparente à droite de chaque élément */
}
#menutop li ul /* Sous-listes */
{
position: absolute;
width: 144px;
left: -999em;
}
#menutop li ul li
{
font-size : 10.5px;
}
/* IE ne reconnaissant pas le sélecteur ">" */
html>body #menutop li ul li
{
border-top : 1px solid #fff; /*bordure transparente en haut de chaque élément */
}
#menutop li:hover ul, #menutop li.sfhover ul /* Sous-listes lorsque la souris passe sur un élément de liste*/
{
left: auto;
min-height: 0; /* Corrige bug sous IE */
}
/*/////////////////////////////////////
Le menu vertical à gauche
/////////////////////////////////////*/
#menuleft
{
margin:0;
padding:0;
width:150px;
float:left;
background:#FFFF99;
}
#menuleft li, #menuleft li a
{
list-style :none;
text-decoration:none;
}
#menuleft h3, #menuleft h3 a
{
font-size:10.5px;
color:#000000;
}
#menuleft h3 a:hover
{
color:#FF9900;
}
.ascenseur
{
cursor:pointer;
}
#menuleft li a:hover
{
color:#FF9900;
}
.menuSousGauche
{
margin:0;
padding:0;
}
.urgent
{
color:#CC6633;
}
/*/////////////////////////////////////
Le contenu
/////////////////////////////////////*/
#contenu
{
margin-top:40px;
padding-top:15px;
margin-left:180px;
margin-right:15px;
}
#contenu h3
{
text-align:center;
font-family:Arial;
font-size:16px;
}
.clear
{
clear:both;
}
/*/////////////////////////////////////
Le pied de page
/////////////////////////////////////*/
#pied
{
width:770px;
margin:0 auto;
font-size:10px;
text-align:center;
} |