 /**
				* @MainDescription* 
				* @name 		:: Valign Cross browser , inline-block
				* @type     	:: stand-alone , html structure dependant
				*
				* @cssLevel 	:: 2.1
				*
				* @author      	:: Griboval Cyril
				* @Contact     	:: gccyrillus(at)hotmail.com
				* @website     	::  http://yidille.free.fr/plux/valign
				* @Copyright   	:: Free to use with author name and website for personnal and commercial use 
				* 
				* @purpose     	:: vertical align a full website
				*
				* @compatible  	:: not IE less than 8 without the Conditionnel Comment going along 
				* @mode        	:: standard
				* @Alternative 	:: IE7 and less
				* @Alerte      	:: Conditionnal Comments needed for Internet Explorer
				*
				* @mainRule    	:: Display : inline-block; vertical-align
				* @doctype     	:: use a valid doctype ! 
				*
				**/
				
				/** 
				*@description*
				*@comment       :: html, body
				*@purpose      	:: set layout size to viewport.
				*@mainrule		:: height, width , white-space 
				**/
				
html , body  {
	margin : 0;
	padding : 0;
	height : 100%;
	width : 100%;
	white-space : nowrap;
}
				/** 
				*@description*
				*@comment       :: main container and its ruler.
				*@purpose      	:: fix display
				*@mainrule		:: display , vertical-align
				**/

.conteneur , .etai  {
	display : -moz-inline-stack;	/* FIREFOX < version 2 */
	display : inline-block;               /* any good mate */
	vertical-align : middle;             /* well , it turns to be avalaible */
	}
.etai {
	padding:0;
	margin:0;
}
				/** 
				*@description*
				*@comment       :: first child main container , killing  stack effects in FF2 and less and move down one level white-space  for IE.
				*@purpose      	:: set width , override white-space , bring up front
				**/
.cell {
	width : 744px;
	white-space : normal;/* IE */
	position:relative;/* FF2 <2 */
}
				/** 
				*@description*
				*@comment       :: ruler sets Valign.
				*@purpose      	:: set width , fixed reference for vertical-align.
				**/
.etai {
	width : 0;
	height : 100%;/* don' forget to reset margin and padding if scrollbar appear with no reason */
}
