﻿/* MODIFIED GRIDS FOR 3 COLUMN LAYOUT */
#column1		{visibility:hidden; display:none;}
#column2		{width: 73%;}
#column3		{width: 23%;}
#column4		{visibility:hidden; display:none;}

.box1 			{margin:0px 20px 10px 10px;}
.box4 			{margin:0px 0px 10px 20px;}

/* ADAPTIVE LAYOUTS CSS <=700 */
@media screen and (min-width:0px) and (max-width:700px){
#column2		{width: 73%;}
#column3		{width: 23%;}
}

/* ADAPTIVE LAYOUTS CSS <=481 */
@media screen and (min-width:0px) and (max-width:480px){
#column2		{width: auto;	float:none;}
#column3		{width: auto;	float:none;}
}

