@charset "UTF-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #191919;
	font-family: "Lucida Grande", Geneva, Arial, Verdana, sans-serif;
	font-size: 10px;
	background-color: #FFFFFF;
}
a{
	color: #990000;
	text-decoration: none;
}
a:hover {
	color: #FFFFFF;
	text-decoration: none;
	background-color: #000000;
}
.txt_ColTitle {
	font-weight: bold;
	text-transform: uppercase;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	text-align: left;
	border: 1px dotted #666666;
}
#header {
	/*background: #E6E6E6;*/ 
	padding: 10px;   /*this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header p {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	/* padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header_image {
	/*padding: 10; this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #666666;
	border-bottom-color: #666666;
}
#main {
	/*height: 100%;*/
}
#main_table {
	/*height: 100%;*/
}
/*#sidebar {
	background: #EE9700;
	color: #333333;
}
#sidebar a:hover{
	color: #000000;
	text-decoration: none;
	background-color: #996600;*/
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #000000;	/*background: #E6E6E6;*/ 
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.txt_petit {
	font-family: "Lucida Grande", Geneva, Arial, Verdana, sans-serif;
	font-size: 9px;
}
.titre {
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-weight: bold;
}
.soustitre {
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
}
