/* ==============================================
   FEUILLE DE STYLES DES GABARITS HTML/CSS --- 05
   © Elephorm & Alsacreations.com
   Conditions d'utilisation:
   http://creativecommons.org/licenses/by/2.0/fr/
   ============================================== */


/* --- COULEURS --- */

/* Note: vous pouvez modifier simplement l'aspect de ce gabarit en modifiant
   uniquement les couleurs de fond (propriétés background) et les couleurs
   du texte (propriété color).
   Pour modifier la disposition des blocs, voir plus bas dans la feuille de
   styles la partie «positionnement». */

/* Général */
body {
	color: #F0E39E;
	background: #2C2F22;
}
a {
	color: #FF6533;
}
a:hover, a:focus {
	color: #FF4C00;
}
strong {
	color: #a0a0a0;
    font-size: 30px;
    font-family: "times new roman";
    font-style: italic;
}

/* Global */
#global {
	color: #F0E39E;
	background: #181A12; /* Voir -> Note 1 ci-dessous */
}

/* Navigation */
#navigation {
	background: #181A12;
}
#navigation a {
	color: #FF6533;
}
#navigation a:hover, #navigation a:focus {
	background: #000000;
}

#date {
    color: #999;
    font-size: 11px;
    margin-top: 20%;
    margin-left: 20%;
}
#footer {
    background: url(logo_cfp_s.png) no-repeat;
    height: 22px;
    margin-top:8px;
    margin-bottom: 8px;
    margin-left:40%;
}

/* Contenu principal */
#contenu {
	color: #363B29;
	background: #cbd888;
}
#contenu a {
	color: #332510;
}
#contenu a:hover, #contenu a:focus {
	color: #6E5122;
}
#contenu strong {
	color: #181A12;
}


/* --- POSITIONNEMENT --- */

/* Page */
body {
/*	padding: 30px 50px 30px 50px; /* -> 2 */
    padding-left: 30px;
    padding-top: 50px;
    padding-right: 0px;
    padding-bottom: 50px;
}
h3 {
    border-bottom: 1px dotted;
}
#global {
 /*   position: absolute;*/
	width: 100%; /* -> 3 */
	overflow: hidden; /* -> 3 */
}

/* En-tête */
#entete {
	padding: 20px;
}
#entete h1 {
	margin: 0;
    color: #FFF;
}
#entete h1 img {
	float: left;
	margin: 7px 20px 10px 0;
}
#entete .sous-titre {
	margin: 4px 0 15px 0;
}
form.login {
    position: absolute;
    z-index: 100;
    margin-left: 70%;
    margin-top: -8%;
}

/* Menu de navigation */
#navigation {
	width: 16%; /* -> 4 */
	float: left;
}
#navigation ul {
	margin: 0;
	padding: 20px 10px;
	list-style: none;
}
#navigation a {
	display: block;
	height: 1%; /* -> 5 */
	padding: 6px 6px 6px 10px;
	line-height: 1.5;
	font-size: .9em;
	text-decoration: none;
}

/* Contenu */
#contenu {
    position: relative;
	margin-left: 16%; /* -> 6 */
	padding: 10px 20px;
}
#contenu > :first-child {
	margin-top: 10px;
}
#contenu p, #contenu li {
	line-height: 1.5;
}
/* admin */
input, textarea{
    border : 1px solid #cbd888;
}
.title {
    width: 100%;
    background-color: #cbd888;
    font-weight: bold;
    border-bottom: 1px dotted;
    margin-bottom: 5px;
}
.code {
    width: 80%;
    height: 150px;
    width: 100%;
}
#new {
    margin-top: 20px;
}
ul.sousmenu {
    padding: 0;
}
.sousmenu li {
    padding: 0;
}

