/*BLOCK FOR ENTIRE WIDTH OF THE AVAILABLE PAGE*/
.fullSizeBlock
{
	/*BORDER*/
	border-left: 1px solid #a1a1a1;
	border-right: 1px solid #a1a1a1;
	
	/*BACKGROUND*/
	background-color: #fcfcfc;
	
	width: 100%;
}

/*BLOCK FOR 25% WIDTH OF THE AVAILABLE PAGE*/
.mediumSizeBlock
{
	/*BORDER*/
	border: 1px solid #a1a1a1;
	border-radius: 10px;
	
	/*DIMENSIONS*/
	min-width: 250px;
	width: 50%;
	
	/*VISUAL*/
	padding: 10px;
	
	/*BACKGROUND*/
	background-color: #fcfcfc;
}

/*BLOCK FOR 25% WIDTH OF THE AVAILABLE PAGE*/
.smallSizeBlock
{
	/*BORDER*/
	border: 1px solid #a1a1a1;
	border-radius: 5px;
	
	/*DIMENSIONS*/
	min-width: 400px;
	width: 30%;
	
	/*VISUAL*/
	padding: 10px;
	
	/*BACKGROUND*/
	background-color: #fcfcfc;
}