﻿/* 
   The below CSS file was built using samples + techniques described by Rachel Andrew in her book:
   The CSS Anthology: 101 Essential Tips, Tricks & Hacks
*/

/* Overall Page */

body {
	margin: 0;
	padding-bottom: 2em;
	background-color: #FFFFFF;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top: 2px solid #B51032;
}

/* Header Section */

#header {
	border-top: 0px solid #B51032;
	border-bottom: 1px dotted #B51032;
	height: 3em;
}
#header .title {
	font: 190% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	float: left;
	margin-right: 2em;
	margin-top: 0.3em;
	margin-left: .8em;
}

#header .breadcrumb {
	font: 90% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	float: right;
	margin-right: 2em;
	margin-top: 0.8em;
	font-weight:bold;
}

#header a:link, a:visited  {
	color: #B51032;
}

/* Navigation */

#navigation {
	top: 5em;
	left: 1em;
	width: .5em;	
	position:absolute;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:90%;
}

#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#navigation li {
	border-bottom: 1px solid #ED9F9F;
}

#navigation li a:hover {
	background-color: #711515;
	color: #FFFFFF;
}
#navigation ul ul {
	margin-left: 12px;
}
#navigation ul ul li {
	border-bottom: 1px solid #711515;
	margin:0;
	background-color: #ED9F9F;
	color: #711515;
}
#navigation ul ul a:link, #navigation ul ul a:visited {
	background-color: #ED9F9F;
	color: #711515;
}
#navigation ul ul a:hover {
	background-color: #711515;
	color: #FFFFFF;
}

#navigation .MenuItem  {
	display: block;
	padding: 5px 5px 5px 7px;
	border-left: 2px solid #711515;
	border-right: 1px solid #711515;
	border-bottom: 1px solid #FFFFFF;  /* white */
	background-color: #B51032;
	color: #FFFFFF;
	text-decoration: none;
}

#navigation .DynamicMenuItemStyle  {
	display: block;
	padding: 5px 5px 5px 7px;
	border-bottom: 1px solid #711515;
	background-color: #ED9F9F;
	color: #711515;
}
/* Main Content */

#content 
{
	margin-top: 1em;
	margin-left: 12em;
	margin-right: 2em;
}
h1 {
	font: 150% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
}
#content p {
	font-size: 80%;
	line-height: 1.6em; 
}

#content ul {
	font-size: 80%;
	line-height: 1.6em; 
}

#content .SouligneBleu {
   text-decoration: underline;
   color: navy
}
/* Essai avec Collapse */

/*
#content .TableauRes
{
  border-style: solid;
  border-right: thin; 
  border-top: thin; 
  border-left: thin; 
  border-bottom: thin;
  background-color: White;
}

#content .TableauRes table {
border-collapse:collapse;
width:100%;
height:100%;
margin:auto;
}

#content .TableauRes thead
{
background-color:#D0E3FA;
border:thin solid;
}
#content .TableauRes thead tr 
{
padding-left: 3px;
padding-right: 3px;
}

#content #content .TableauRes tfoot 
{
background-color:#D0E3FA;
border:thin solid;
}

#content .TableauRes tbody {
background-color: White;
border:thin solid;
}
#content .TableauRes tbody th 
{
background-color:#EFF6FF;
text-align: left;
font-family: sans-serif;
font-weight:normal;
padding-left: 5px;
padding-right: 0px;
}
#content .TableauRes tbody td 
{
padding-left: 3px;
padding-right: 3px;
}

#content .TableauRes caption {
}

#content .TableauRes .CellBorderRight {
   BORDER-RIGHT-COLOR: Black; 
   BORDER-RIGHT: thin solid; 
}
*/


#content .TableauRes
{
 border : 1px black solid;
 background-color : White;
}

#content .TableauRes table {
border-collapse:collapse;
border-spacing: 0px;
empty-cells: show;
width:100%;
height:100%;
margin:auto;
}

#content .TableauRes thead
{
background-color:#D0E3FA;
border:thin solid;
}
#content .TableauRes thead tr 
{
padding-left: 3px;
padding-right: 3px;
}

#content .TableauRes tfoot 
{
background-color:#D0E3FA;
border:thin solid;
}

#content .TableauRes tbody {
background-color: #faffff;
BORDER-LEFT-COLOR: Black; 
BORDER-RIGHT-COLOR: Black; 
border:thin solid;
}

#content .TableauRes tbody th 
{
background-color:#EFF6FF;
text-align: left;
font-family: sans-serif;
font-weight:normal;
padding-left: 5px;
padding-right: 0px;
}
#content .TableauRes tbody td 
{
padding-left: 3px;
padding-right: 3px;
}

#content .TableauRes caption {
}

#content .TableauRes .CellBorderRight {
   BORDER-RIGHT-COLOR: Black; 
   BORDER-RIGHT: thin solid; 
}

/*
#content .TableauRes .CellBorderBottom .CellBorderRightx{
   BORDER-RIGHT-COLOR: Black; 
   BORDER-RIGHT: thin solid; 
   BORDER-BOTTOM-COLOR: Black; 
   BORDER-BOTTOM: thick solid; 
}
*/

#content .TableauRes .CellBorderTop td , #content .TableauRes .CellBorderTop th{
   BORDER-TOP-COLOR: Black; 
   BORDER-TOP: thin solid; 
}

#content .TableauRes .CellBorderBottom td , #content .TableauRes .CellBorderBottom th{
   BORDER-BOTTOM-COLOR: Black; 
   BORDER-BOTTOM: thin solid; 
}

@media print 
{
	.NoPrint {
		display: none;
	}
    
	#header .title 	{
		display:block;
	}

	#navigation {
		display: none;
	}
	#content {
		margin-left: 2px;
		margin-right: 0px;
	}
	
	/* MQ 01/02/2007 Essai pour impression IE6 et FireFox */
	#content .TableauRes
	{
	 margin-left: 0px;
	 border : none;
	 background-color : White;
	}
		
	#content .TableauRes table
	{
	 margin-left: 2px;
	 border : 1px black solid;
	 background-color : White;
	 width: 90%;
	 font-size: 80%;

	}
	
}


