/* ***** BEGIN LICENSE BLOCK *****
 * This file is part of DotClear.
 * Copyright (c) 2004 Maurice Svay and contributors. All rights
 * reserved.
 *
 * DotClear is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * DotClear is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with DotClear; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * ***** END LICENSE BLOCK *****
 *
 * Contributor(s):
 *  Maurice Svay
 */

/* Ce fichier définit le style visuel pour les différents éléments du blog.
 * Dans l'ordre, vous trouverez les règles qui définissent l'apparence pour:
 * - les éléments HTML en général
 * - la page
 * - l'entête
 * - le prélude
 * - le contenu
 * - la barre de navigation
 * - le pied de page
 *
 * L'agengement des blocs est défini dans le fichier layout.css
 * Pour mettre la barre de navigation à gauche, décommentez l'appel à 
 * layout-gauche.css
 */
/* @import "layout.css";*/
/* @import "layout-gauche.css"; */
 
 
/* Les éléments HTML en général
-------------------------------------------------------- */

 body{
	background: #ffffff;
	color: #000000;
	font-size: 90%;
	font-family: "Trebuchet MS", Geneva, Arial, Helvetica, sans-serif;
}
 
#container
{
width: 100%;
margin: 10px auto;
margin-top: 40px;
background-color:#ffffff;

}

#leftnav
{
float: left;
width: 190px;
margin: 0;
padding: 1em;
}



ul#categories li {

list-style: none;
margin-bottom: 20px;

 }


#content
{
background-color: #ffffff;
margin-left: 230px;
width: 597px;
padding: 1em;
color: #000000;

}




a{
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	text-decoration:none;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;

}

a:visited{
	color: #000000;
	font-size: 14px;
	font-weight: bold;
	text-decoration:none;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
}

a:hover{
color: #000000;
	font-size: 14px;
	font-weight: bold;
	text-decoration:none;
	font-family: "Trebuchet MS", Verdana, Geneva, Arial, Helvetica, sans-serif;
}






