@charset "UTF-8";
/* CSS */

/****************************************************************************************************/
/*GENERAL*/
/****************************************************************************************************/

	*{
		margin:0px;
		padding:0px;
	}
	
	body, html{
		width:100%;
		height:100%;
		min-height: 100%;
	}
	
	body{
		font-family: Arial, Helvetica, Sans-Serif;
		font-size: 12px;
		line-height: 15px;
		background-color:#000;
	}
	

/****************************************************************************************************/
/*FONTFACE*/
/****************************************************************************************************/
	
	#gridContainer{
		width:100%;
		height:100%;
	    position: relative;
	    overflow:hidden;
	}
	#gridElementsContainer{
		width:10000px;
		height:10000px;
	}
	#gridContainer .gridItem{
	    float:left;
	    width:10%;
	    height:100px;
	    background-color:#dedede;
	    font-size: 10px;
	    line-height: 12px;
	}  		
	#gridContainer .gridSquare{
		position:absolute;
		background-color:#000000;
		overflow:hidden;
 		cursor:pointer;		
	}
 	#gridContainer .gridSquare img{
 		position:relative;
 	}
 
/****************************************************************************************************/
/*CONSTRUCT*/
/****************************************************************************************************/

	
	

/****************************************************************************************************/
/*STYLES*/
/****************************************************************************************************/

	.clearBox{
		clear:both;
	}
