/*###########################
# BASE
#############################*/

html {
	width: 100%;
	height: 100%;
	background-color: #white ;
}

body {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	font-size: 16px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: black;
	background-color: white;
	text-align: left;
}

/*###########################
# CARACTERES
#############################*/

h1 {
	font-size: 24px;
	margin: 0;
	padding: 10px;
	color: white; /* #DA0000; */
	font-weight: bold;
}

h4 {
	font-size: 16px;
	font-weight: bold;
	color: #DA0000;
	text-align: center;
}

h5 {
	font-size: 16px;
	font-weight: bold;
	color: #DA0000;
}

h6 {
	font-size: 14px;
	font-weight: bold;
	color: black;
	text-align: left;
}

/*###########################
# SECTIONS, BOITES
#############################*/

header {
	background-color: #DA0000;
}

article {
	width: 100%;
	padding: 0;
}

nav {
	float: right;
}

footer {
	font-size: 12px;
	margin: 0;
	padding: 10px;
	color: white;
	background-color: #6F6F6F;
	text-align: center;
}

img {
	display: block;
	margin: 0 auto;
}

/* COLONNES */

.column-layout2 {
	display: table;
	width: 100%;
	border-collapse: separate; 
}
  	
.column-layout2 > div {
  	display: table-cell;
  	width: 50%;	/* 2 colonnes */
  	text-align: left;
  	background-color: white;
	padding: 3px;
}	

/* LIENS */

a:link, a:visited {
	color: maroon;
	background-color: white;
	text-decoration: underline; 
}

a:hover, a:active {
	color: white;
	background-color: maroon;
	text-decoration: none; 
}

/* MENU ADMIN HORIZONTAL */

nav ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	background-color: transparent;
}

nav li {
	display: inline-block;
	width: 100px;
	height: 40px;
	margin: 0px;
	padding: 0px;
	text-align: center;
	line-height: 40px;
}

nav li a {
	display: block;
	text-decoration: none;
}

nav a:link, nav a:visited  {
   	color: white;
	background-color: black;
	text-decoration: none;
}

nav a:active {
    color: black;
	background-color: white;
	text-decoration: none;
}

nav a:hover {
    color: black;
	background-color: #B7B7B7;
	text-decoration: none;
}

/* LISTE DE LA PAGE DES LIENS */

.liens ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}

.liens li {
	margin: 0px;
	padding-bottom: 20px;
	text-align: left;
	line-height: 1.2;
}



