/*
Cette feuille de style reprend tous les attributs du parser tels que [u], [centre], etc...
*/

/*balises sémantiques*/

blockquote
{
	width: 80%;
	padding: 5px;
	margin: auto;
	
	border: dashed 1px #3F6DFF;
	background-color: #C9D6FF;
}

cite
{
	font-weight: bold;
	font-style: normal;
	display:block;
	width:80%;
	margin:auto;
}

pre  /*utilisé pour du code*/
{
	width: 80%;
	padding: 5px;
	margin: auto;
	
	border: dashed 1px #3F6DFF;
	background-color: #C9D6FF;
}

/*balises non-sémantiques (les noms sont clairs, non ?)*/
.souligne
{
	text-decoration: underline;
}

.centre
{
	text-align: center;
}

.gauche
{
   text-align: left;
}

.droite
{
   text-align: right;
}

.flottant_gauche
{
	float: left;
	margin-right: 5px;
}

.flottant_droite
{
	float: right;
	margin-left: 5px;
}

/*Tailles du texte*/

.size_tgrand
{
	font-size: 2em;
}

.size_grand
{
	font-size: 1.5em;
}

.size_moyen
{
	font-size: 1em;
}

.size_petit
{
	font-size: 0.75em;
}

.size_tpetit
{
	font-size: 0.5em;
}