@charset "UTF-8";

/* HTML et BODY */

html {
	/*
		Évite un bug d'IE :
		http://web.covertprestige.info/test/10-bug-unites-relatives-em-et-ie-1.html
	*/
	font-size: 100%;
	margin: 0; padding: 0;
}
body {
	margin: 0;
	padding: 0;
	/*
		font-size: .8em;
		line-height: 1.4em;
		font-family: "Nimbus Sans L", Arial, Helvetica, sans-serif;
	*/
	font-size: .75em;
	line-height: 1.5em;
	font-family: "Bitstream Vera Sans", Verdana, "Lucida Grande", sans-serif;
	/*
		Style par défaut si pas d'image de fond :
	*/
	color: black;
	background-color: orange;
}

/* STYLES GÉNÉRIQUES */

a {
	color: black;
	text-decoration: none;
	border-bottom: solid 1px #650;
}
a:hover, a:focus, a:active {
	color: black;
	background-color: #ffcc33;
}
.sombre a {	/* Note : la classe "sombre" est appliquée à tous
			les éléments à fond sombre pouvant contenir du texte et notamment des liens */
	color: white;
	border-bottom-color: #aa8811;
}
.sombre a:hover, .sombre a:focus, .sombre a:active {
	color: black;
	background-color: #ffcc33;
	border-bottom-color: #ffcc33;
}
a img {border: none;}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3em;
}
a.externe {
	padding-right: 14px;
	background: url(../.images/lien-externe1.png) no-repeat right center;
}
a.externe:hover, a.externe:focus, a.externe:active {
	background-image: url(../.images/lien-externe2.png);
}
a.discret {border: none;}
a.discret:hover {background: none;}

/* STRUCTURE */

div#global {
	width: 730px;
	margin: 0 auto;
	padding: 1px 0;
}

/* EN-TÊTE AVEC LOGO */

#logo {
	margin: 20px 0 0 0;
	height: 112px;
}
#logo img {
	display: block;
}
#logo a img {
	border: none;
}

/* MENU D'ACCÈS RAPIDE */

div#menu-rapide {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 50%;
	height: 72px;
}
div#menu-rapide ul {
	height: 100%;
	margin: 0 80px 0 0;
	padding: 12px 15px 0 0;
	text-align: right;
	background: url(../.images/navigation-global.png) no-repeat right top;
}
div#menu-rapide li {
	display: inline;
	padding: 0 1px;
}

