/**
 * @fichier style.css
 * @version 2.0.0.0
 * @auteur  Stéphane RIO, modifications charte graphique 2012 : Gabrielle Calvet
 * @email   stephane.rio@univ-rennes1.fr
 * @date    23.04.2012
*/


/* Règle générale : <html> et <body> */

html, body
{
	/*-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;*/
	height: 100%;
}

/* Règle générale : <body> */

body
{ 
	margin: 0;
	padding: 0;
	font: 13px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	background-color: #fff;
}

p{
	text-align: justify;
}

.hidden_overflow{
	overflow:hidden;
}

/* Règle générale : <a> */

a:link,
a:active,
a:visited
{
	color: #2589ba;
	/*text-decoration: underline;*/
}

a:hover
{
	color: #e0580a;
	/*text-decoration: underline;*/
}

/* Règle générale : <img> */

img
{
	border: none;
}


/* Règle générale pour la balise <code> */

code
{
	color: #339933;
}

/* Règle générale : cacher un élément */

.hide
{
	display: none;
}