@charset "UTF-8";

html, body {

	height:100%;
}

body {
	
	overflow: scroll;
}

body, div {
	
	margin: 0px;
	padding: 0px;
	border: 0px;
}

/* Centrage horizontal d'un élément de type block */

div.css_horizontalCenter {

	position: relative;

	/* Centrage horizontal */
	margin-left: auto;
	margin-right: auto;
}

/* Structure de base d'un panel de type HBF (Header, Body, Footer) */

div.css_HBFPanelContainer {
	
	min-height: 100%;
}

* html div.css_HBFPanelContainer {

	height: 100%;
}

div.css_HBFPanelHeader {
	
}

div.css_HBFPanelBody {
	
}

div.css_HBFPanelBody:after {

	content: " ";
	display: block;
	clear: both;
}

* html div.css_HBFPanelBody {

	height: 1px;
}

div.css_HBFPanelFooter {
	
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
}


