/*
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;
}

.console
{
	background-color:black;
	color:white;
	border:2px solid black;
	display:block;
	width:90%;
	margin:auto;
	font-family:Arial, Courier, Times, 'Times New Roman', serif;
}

.question
{
	padding-left: 35px;
	background-image: url(parser/question.png);
	background-repeat: no-repeat;
	height:auto;
	min-height:32px;
}

/*Class des liens*/
.apt, .ftp, .wikipedia, .udoc, .mail, .irc
{
	padding-left: 17px;
	background-repeat: no-repeat;
}

.apt
{
	background-image: url(parser/package.png);
}

.udoc
{
	background-image: url(parser/ubuntu.png);
}

.ftp
{
	background-image: url(parser/ftp.png);
}

.wikipedia
{
	background-image: url(parser/wikipedia.png);
}

.mail
{
	background-image: url(parser/mail.png);
}

.irc
{
	background-image: url(parser/irc.png);
}

/*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;
}

