@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background-color: #c7c5c6;
	margin: 0;
	padding: 0;
	color: #c7c5c6;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

ul, ol {
	list-style-type: none;
	list-style-position: inside;	
}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
	text-decoration:underline;
	font-style: italic;	
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: black;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: black;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: red;
	text-decoration: none;
}

hr {
   margin: 50px auto;
   padding: 0; 
   border: 1px #c00 solid;
   width: 900px;	
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 1200px;
	background-color: #000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 20px;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#Header {
	background-color: red;
	height: 200px;
}

#Header.header2015 {
        background:url('../_images/header2015.png');
}

#Header.headerArchives {
        background:url('../_images/headArchives.png');
}

#Header.headerCalendrier {
        background:url('../_images/headCalendrier.png');
}

#Header.headerClassement {
        background:url('../_images/headClassement.png');
}

#Header.headerEvolution {
        background:url('../_images/headEvolution.png');
}

#Header.headerSelections {
        background:url('../_images/headSelections.png');
}

#Header.headerReglements {
        background:url('../_images/headReglements.png');
}

#Header.headerStatistiques {
        background:url('../_images/headStatistiques.png');
}

#Header.headerRules {
        background:url('../_images/headRules.png');
}

#Header.headerAustralie {
        background:url('../_images/headAustralie.png');
}

#Header.headerMalaisie {
        background:url('../_images/headMalaisie.png');
}

#Header.headerChine {
        background:url('../_images/headChine.png');
}

#Header.headerBahrain {
        background:url('../_images/headBahrain.png');
}

#Header.headerEspagne {
        background:url('../_images/headEspagne.png');
}

#Header.headerMonaco {
        background:url('../_images/headMonaco.png');
}

#Header.headerCanada {
        background:url('../_images/headCanada.png');
}

#Header.headerGBretagne {
        background:url('../_images/headGBretagne.png');
}

#Header.headerAllemagne {
        background:url('../_images/headAllemagne.png');
}

#Header.headerHongrie {
        background:url('../_images/headHongrie.png');
}

#Header.headerBelgique {
        background:url('../_images/headBelgique.png');
}

#Header.headerItalie {
        background:url('../_images/headItalie.png');
}

#Header.headerSingapour {
        background:url('../_images/headSingapour.png');
}

#Header.headerJapon {
        background:url('../_images/headJapon.png');
}

#Header.headerAutriche {
        background:url('../_images/headAutriche.png');
}

#Header.headerRussie {
        background:url('../_images/headRussie.png');
}

#Header.headerAbuDhabi {
        background:url('../_images/headAbuDhabi.png');
}

#Header.headerEtatsUnis {
        background:url('../_images/headEtatsUnis.png');
}

#Header.headerBresil {
        background:url('../_images/headBresil.png');
}

#Header.headerMexique {
        background:url('../_images/headMexique.png');
}

#TopNav {
		 width: 1170px;
         height: 26px;
         font-weight: bold;
		 background-color: #00a19c; 
		 border-radius: 20px;
		 border: 15px solid black;
		 margin-top: -15px;
}

#TopNav li {
        float: left;   		
		padding: 0 20px 3px 20px; 
		margin-left: 1px;          
}

#TopNav li a:link, #TopNav li a:visited, #TopNav li a:active {
        color: #000;
        text-decoration: none;
		padding: 0 20px 3px 20px;
		border-radius: 5px;
}

#TopNav li a:hover {
        color: #c7c5c6;
        background-color: #000;
		padding: 0 20px 3px 20px;
		border-radius: 5px;  
}

#TopNav li.selected {
        color: #c7c5c6;
        background-color: #C00;
		padding: 0 20px 2px 20px;
		border-radius: 5px;
		margin-top: 1px;
}


/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

#Content {

	padding: 10px 0;
}


/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background-color: #00a19c;
	border: 15px black solid;
	border-radius: 25px;
	color: black;
	
}

.clearBoth {
    clear: both;
}

.floatLeft {
	float: left;	
}

.floatRight {
	float: right;
}


/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

div.participant{
	margin: 0 0 20px 25px;		
	border: 3px #c6c5c7 inset;
	border-radius: 25px;
	width: 17%;
	background-color: #c7c5c6;
	float: left;
}

div.participant p {
	margin-top: 15px;
	margin-Bottom: 0;
	font-size: 24px;
	color: black;	
}

div.participant dl {
	padding: 15px;	
}

div.participant dt {
	color: #C00;	
	font-size: 18px;
	font-weight: bold;
}

div.participant dd {
	color: black;
	margin-left: 5px;
	margin-left: 15px;	
}

p.calendrier {
	padding: 10px;
	margin: 0 0 20px 35px;		
	border: 3px #c6c5c7 inset;
	border-radius: 15px;
	width: 19%;
	background-color: #c7c5c6;
	float: left;
	text-align: center;
	font-weight: bold;
}

.largeFont {
	font-size: 24px;
	color: #C00;	
}

div.wrapper {
	margin: 0 auto;
	width: 50%;
}

div.classement {
	margin: 0 0 20px 0;		
	border: 3px #c6c5c7 inset;
	border-radius: 15px;
	width: 100%;
	background-color: #c7c5c6;
	float: left;
	color: black;
	padding: 0;	
}

div.classement p {
	float: left;	
	font-weight: bold;
	font-size: 16px;
	margin-top: 10px;
}

div.classement p.position {
	width: 30px;
}

div.classement p.nom {
	width: 130px;
	color: #c00;
	font-size: 18px;
}

div.classement p.points {
	
}

div.statsWrapper {
	margin: 0 auto;
	width: 88%;
}

div.raceNumber {
	margin: 0 0 20px 0;		
	border: 3px #c6c5c7 inset;
	border-radius: 15px;	
	background-color: #00a19c;
	float: left;
	color: black;	
}

div.raceNumber p {
	float: left;
	width: 15px;
	margin-top: 10px;	
	font-weight: bold; 
	padding-top: 4px; 
	padding-bottom: 4px;
}

div.raceNumber p.playerName {
	color: #c00;	
	float: left;
	width: 70px;	
}

div.raceStanding {
	margin: 0 0 20px 0;		
	border: 3px #c6c5c7 inset;
	border-radius: 15px;	
	background-color: #c7c5c6;
	float: left;
	color: black;	
}

div.raceStanding p {
	float: left;
	width: 15px;
	margin-top: 10px;	
	font-weight: bold; 
	padding-top: 4px; 
	padding-bottom: 4px;
}

div.raceStanding p.playerName {
	color: #c00;	
	float: left;
	width: 70px;	
}


.tdFirst {
         background-color: #ffd700;
         color: black;
}

.tdSecond {
          background-color: #808080;
          color: black;
}

.tdThird {
         background-color: #b8860b;
         color: black;
}
div.classWrapper {
	margin: 0 auto;
	width: 90%;
	border: 3px #c7c5c6 inset;	
	border-radius: 25px;
	background-color: #c7c5c6;
}

div.classes {
	float: left;
	width: 33%;
}

div.classes h2 {
	margin-top: 20px;
	margin-bottom: -25px;
	color: #c00;	
}

#Content div.classes table {
	margin-left: 15px;
	width: 95%;
	border-radius: 7px;
}

.titreArchives {
	font-weight: bold;
}

dt.titreArchives a {
		color: white;
}

.copy {
	margin-top: -20px;
	float:right;	
}

#Content dl.archiveYears {
	margin-left: 20px;
	padding: 7px;
	float: left;
	width: 30%;
	border-bottom: 1px red solid;
}

#Content dl.archiveYears a:hover {
	color: #c00;	
}

.trInterligne  {
    background-color: #c7c5c6;
}

.trInterligne2  {
    background-color: #858585;
}

.rulesSection {
	background-color: #c7c5c6;
	color: black;
	margin: 30px;
	padding: 20px;
	border-radius: 25px;
}

.rulesSection h2 {
	color: #c00;
}

.rulesSection ul {
         list-style-type :none;
         list-style-position: outside;
		 padding: 0 10px 0 30px;
		 margin-bottom: 40px;
}

.rulesSection ul li ul li{
		 padding: 3px;
         list-style-image: url('../_images/RghtArrBlt.gif');         		 
}

.rulesSection div.listTable{
	margin-left:50px;	
}

.rulesSection div.leftList {
   float:left;
   width: 450px;        
}

.rulesSection ul.leftList {
         float: left;
}

.rulesSection ul.leftList li {
         border-bottom: 1px  solid #00a19c;
         border-left: 1px solid #00a19c;
         padding: 3px; 
         text-align: center;
         width: 120px;
}

.rulesSection ul.rightList {
         float: left;
}

.rulesSection ul.rightList li {
         border-bottom: 1px  solid #00a19c;
         border-right: 1px solid #00a19c;
         padding: 3px; 
         text-align: center;
         width: 120px;
}

.rulesSection dl {
	margin-left: 40px;
	margin-bottom: 20px;
}

.rulesSection dt {
	font-weight: bold;
}
.rulesSection dd {
	color: #c00;
}

.redText {
	color: #c00;	
	font-weight: bold;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
.rulesSection a:link {
	color: red;
	text-decoration: underline;
}
.rulesSection a:visited {
	color: red;
	text-decoration: underline;
}
.rulesSection a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: red;
	text-decoration: underline;
}

