@charset "UTF-8";
a:link {
	color: #0000ee;
}
a:visited {
	color: #0000ee;
}
a:hover {
	color: #CC0000;
}
a:active {
	color: #CC0000;
}
body  {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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: #000000;
}
.twoColFixLtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #container_lieux {
	width: 490px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #header {
	background: #FFFFFF;
	padding: 0 10px 0 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. */
	font-size: 10px;
} 
.twoColFixLtHdr #header h1 {
	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 */
	font-size: 11px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 15px 0px;
}
.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 278px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 10px 15px 0px;
}
.entete1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #0066CC;
	text-indent: 15px;
	text-align: left;
}
.entete1b {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #0066CC;
	text-align: left;
}
.entete1b a:link {
	color: #0000ee;
}
.entete1b a:visited {
	color: #0000ee;
}
.entete1b a:hover {
	color: #CC0000;
}
.entete1b a:active {
	color: #CC0000;
}
.entete1c {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-align: left;
}
.entete1c a:link {
	color: #0000ee;
}
.entete1c a:visited {
	color: #0000ee;
}
.entete1c a:hover {
	color: #CC0000;
}
.entete1c a:active {
	color: #CC0000;
}
.rbdh
{
	width: 240px;
	background: #989286;
	background: #8DC54C;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: white;
	font-weight: bold;
	padding: 4px 10px 4px 10px;
	border-bottom: 1px solid white;
	font-style: normal;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 290px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #999999;
} 
.twoColFixLtHdr #mainContent_pub {
	margin: 0 0 0 295px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #999999;
}
.twoColFixLtHdr #mainContent_lieux {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #999999;
} 

.twoColFixLtHdr #footer {
	padding: 0 10px 0 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#d3e5f7;
	margin-top: 15px;
	height: 100%;
	font-size: 9px;
	text-align: right;
} 
.twoColFixLtHdr #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: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* boîte de gauche */

.boite_gauche {
	font-size: 12px;
	height: 100%;
	width: 210px;
	margin-left: 20px;
	padding-top: 5px;
	padding-right: 9px;
	padding-bottom: 5px;
	padding-left: 9px;
	border: 1px solid #999999;
}
.boite_gauche_pub {
	font-size: 12px;
	height: 100%;
	width: 220px;
	margin-left: 18px;
	padding-top: 5px;
	padding-right: 9px;
	padding-bottom: 5px;
	padding-left: 9px;
	border: 0px solid #ffffff;

}
.boite_gauche_pub a:link {
	border: 0px solid #ffffff;
}
.boite_gauche_pub a:visited {
	border: 0px solid #ffffff;
}
.boite_gauche_pub a:hover {
	border: 0px solid #ffffff;
}
.boite_gauche_pub a:active {
	border: 0px solid #ffffff;
}
.date_vert {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: left;
	text-indent: 3px;
}
.tx_table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: none;
}
.tx_table a:link {
	color: #0000ee;
}
.tx_table a:visited {
	color: #0000ee;
}
.tx_table a:hover {
	color: #CC0000;
}
.tx_table a:active {
	color: #CC0000;
}
.tx_table_gris {
	color: #999900;
	font-size: 12px;
}
.tit_danse {
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}
.index_danse {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	color: #003366;
	font-weight: bold;
}
.style4 {
	font-size: 21px;
	font-weight: bold;
	line-height: 150%
}
.site_communaute {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-transform: none;
	color: #000000;
	text-align: right;
}
.texte_ecrivez {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-transform: none;
	color: #000000;
	line-height: 120%;
}
.entete_7 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	text-transform: none;
	color: #0066CC;
}
.entete_8 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	text-transform: none;
	color: #0066CC;
}
