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
| html,body{
height:100%;
margin:0;
font:10pt sans-serif;
background:url('images/structure/bleu.png') repeat-y #ffcc00;
background-position:center;
}
#page {
position:relative;
margin:auto;
background:url('images/structure/head.png') repeat-x #84b6ff;
width:780px;
height:100%;
}
#contenu{
margin:auto;
background:#fff;
width:750px;
min-height:76%;
padding:0px 5px 0px 5px;
}
#menuongl {
float:left;
width:100%;
background:url("images/structure/menubg.png") no-repeat bottom;
font-size:93%;
line-height:normal;
margin-top:50px;
}
#menuongl ul {
margin:0;
padding:10px 10px 0;
list-style:none;
}
#menuongl li {
float:right;
background:url("images/structure/onglleft.png") no-repeat left top;
margin:0;
padding:0 0 0 9px;
}
#menuongl a {
float:left;
display:block;
background:url("images/structure/onglright.png") no-repeat right top;
padding:5px 15px 4px 6px;
text-decoration:none;
font-weight:bold;
color:#765;
}
/* Commented Backslash Hack
hides rule from IE5-Mac \*/
#menuongl a {float:none;}
/* End IE5-Mac hack */
#menuongl a:hover {
color:#333;
}
#menuongl #current {
background-image:url("images/structure/onglleft_on.gif");
}
#menuongl #current a {
background-image:url("images/structure/onglright_on.gif");
color:#333;
padding-bottom:5px;
} |