@charset "UTF-8";
/* CSS Document */

/* ******************************************************* */
/* TRES IMPORTANT : indiquez au browser que les tags HTML5 */
/* sont à prendre en compte en tant que blocs, les tags    */
/* inconnus ayant généralement la propriété                */
/* "display:inline" dans les navigateurs.                  */
/* ******************************************************* */
 
header, hgroup, section, footer, aside, nav, article { 
	display: block;   
}

/* ******************************************************* */

body {
	margin:0;
	padding:0;
	background-color:#DAC89D;
	box-shadow: 0px 20px 10px -10px #7D6B59; /* Création d'un degradé de boite, nouvelle CSS3 */
	-moz-box-shadow: 0px 20px 10px -10px rgba(125,107,89,0.2) inset;  /* Création d'un degradé de boite pour navigateur de moteur de rendu Gecko FF <3.5 */
	background-image: url(/css/images/SandBG.gif);
}

img { border:none;} 

a {
	text-decoration: none;
	color: #06C;
}

#conteneur { /* pour centrer la page. */
	clear: both; 
	margin: 0 auto; 
	width: 900px;  
}

/* Le header principal */
/* ******************* */

/* appliqué à la balise header */
#logo {
	padding-top:50px;
}

#logo h1 {
	color:#D73502;
	letter-spacing: -2px;
	text-align:right;
	margin: 0 20px 0 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 50px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

#logo h1 a {
	text-decoration: none;
	margin-top:50px;
}

#logo h2 {
	font:normal 13px Georgia, "Times New Roman", Times, serif;
	margin: 0 20px 20px 0;
	text-align:right;
	color:#7D6B59;
}

#pages {
	float:left;
	margin-bottom: 1em;
	overflow: hidden;
	width: 800px;

}

#navlist {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#navlist li {
	border-right: 1px solid #7D6B59;
	float: left;
	line-height: 1.1em;
	margin: 0 .5em 0 -.5em;
	padding: 4em 1em 0 1em;
	font: 11px Tahoma, Geneva, sans-serif;
	letter-spacing: 3px;
	text-transform:uppercase;
}
#navlist li a {
	color:#F60;
	text-decoration:none;
}
#navlist li a:hover {
	color: #7D6B59;
	text-decoration:underline;
}
	
/* le fond blanc */
#fond-blanc {
	background-color:#E3D1A6;
	padding:20px;
	margin-bottom: 20px;
	border-radius: 20px;   /* création d'un arrondi au bloc, nouvelle propriété CSS3 */
	-moz-border-radius: 20px;   /* création d'un arrondi au bloc pour les navigateurs au moteur de rendu Gecko */
	-webkit-border-radius: 20px;
}

/* L'article */

#article {
	float:left;
	width: 600px;
}

#titre h1{
	font: bold 30px Arial, Helvetica, sans-serif;
	color:#CC3502;
	text-shadow: 0px 0px 8px #ccc; /* Ici on créé une ombre au texte */
	letter-spacing: -1px;
}

#article .Titre {
	color: #CC3502;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

#article img {
	border: 1px solid #999;
	padding: 8px;
	background-color: #FFF;
}

#article .image {
	text-align: center;
}

#article .Date {
	color: #CC3502;
	font-size: 16px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #787878;
}
#article section {
	background-color: #F0E8D5;
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	margin-bottom: 8px;
	border: 1px solid #E0CFA7;
}


#titre pre { /* Ce style va permettre de créer un imprimé type bayadère dans la bordure gauche */
	font: italic normal bold 16px/19px "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif; 
	letter-spacing: 3px;
	color: #426116;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	padding:15px 0 13px 15px;
	margin: 15px 0 35px 0;
	border-left: 15px solid #ecf0e8; /* largeur de la bordure à l'intérieur de laquelle on va créer l'imprimé bayadère. On donne une couleur pour les moteurs de rendu non Gecko */
/*	-moz-border-left-colors: #f60 #f60 #f60 #70a624 #70a624 #70a624 #70a624 #f4de4a #f4de4a #7D6B59 #7D6B59 #f60 #f60 #f60;  Il faut autant de couleurs que de pixel !! */
}

#article h2 {
	font: bold 15px Arial, Helvetica, sans-serif;
	color:#CF3503;
}
#article p {
	font: 13px/25px Georgia, "Times New Roman", Times, serif;
	color: #564F47;
}
#article p a {
	color: #06C;
	text-decoration:none;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 10pt;
}
#article p a:hover {
	text-decoration: underline;
}

#pacMain {
	float:left;
	width: 100%;
}

#pacMain h2 { 
	font: bold 15px Arial, Helvetica, sans-serif;
	color:#70a624;
}

#pac {
	background-color: #F4F2F0;
	border: 1px solid #E6E1DD;
	border-radius: 10px;   /* création d'un arrondi au bloc, nouvelle propriété CSS3 */
	-moz-border-radius: 10px;   /* création d'un arrondi au bloc pour les navigateurs au moteur de rendu Gecko */
	-webkit-border-radius: 10px; /* création d'un arrondi au bloc pour les navigateurs moteur de rendu Webkit : Safari et Konqueror */
	padding: 5px;
	margin: 0 0 10px 0;
}

#pac p {
	font: 11pt Arial, Helvetica, sans-serif;
	color: #564F47;
	line-height: 25px;
}

#pac h1 {
	font: bold 15px Arial, Helvetica, sans-serif;
}

#pac ul li {
	font: 11pt Arial, Helvetica, sans-serif;
	color: #564F47;
	list-style-type:square;
	margin: 2px 0;
}

#autres {
	background-color: #F4F2F0;
	border: 1px solid #E6E1DD;
	border-radius: 10px;   /* création d'un arrondi au bloc, nouvelle propriété CSS3 */
	-moz-border-radius: 10px;   /* création d'un arrondi au bloc pour les navigateurs au moteur de rendu Gecko */
	-webkit-border-radius: 10px; /* création d'un arrondi au bloc pour les navigateurs moteur de rendu Webkit : Safari et Konqueror */
	padding: 10px;
}
#autres h1 {
	font: bold 15px Arial, Helvetica, sans-serif;
}
#autres ul li {
	list-style-type:circle;
	font: normal 15px Arial, Helvetica, sans-serif;
	margin: 10px 0;
}
#autres ul li a {
	color: #DC5014;
	text-decoration:none;
}
#autres ul li a:hover {
	text-decoration:underline;
}

/* la sidebar */
#sidebar {
	float:right;
	width:210px;
	padding-top: 25px;
	font-size: 11pt;
	color: #666;
}
.item {
	margin-bottom: 30px;
	padding: 0;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666;
}
#sidebar h2 {
	letter-spacing: -2pt;
	color:#FE9A78;
	padding: 0;
	margin: 0 0 20px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 37px;
	font-weight: bold;
	text-transform: lowercase;
}
#sidebar ul {
	font: 15px Arial, Helvetica, sans-serif;
	list-style-type:circle;
	padding:0 18px;
	color: #DC5014;
}
#sidebar ul li {
	margin: 10px 0;
}

#sidebar ul li a {
	color: #DC5014;
	text-decoration: none;
}
#sidebar ul li a:hover {
	text-decoration:underline;
}

/* le footer */
#general{
	font: 11px Tahoma, Geneva, sans-serif;
	text-align: center;
	color: #666;
	padding-top: 10px;
	margin-top: 20px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #666;
}
.DataTable {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	border-collapse:collapse;
}


.DataTable td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	padding: 2px;
	border: 1px dotted #999;
}


.DataTable th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	padding: 2px;
}

.Notes {
	letter-spacing: 1px;
	color: #426116; /* largeur de la bordure à l'intérieur de laquelle on va créer l'imprimé bayadère. On donne une couleur pour les moteurs de rendu non Gecko */
	font-family: "Adobe Caslon Pro", "Hoefler Text", Georgia, Garamond, Times, serif;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	font-variant: normal;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 13px;
	padding-left: 15px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 8px;
	border-top-style: dotted;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: solid;
	border-top-color: #BC8C59;
	border-right-color: #BC8C59;
	border-bottom-color: #BC8C59;
	border-left-color: #BC8C59;/*	-moz-border-left-colors: #f60 #f60 #f60 #70a624 #70a624 #70a624 #70a624 #f4de4a #f4de4a #7D6B59 #7D6B59 #f60 #f60 #f60;  Il faut autant de couleurs que de pixel !! */
}

#Divider {
	margin-top: 5px;
	margin-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #666;
}

