@media only screen and (min-width: 200px) {
	body{
		background-color:#ffffff;
	}
	.fixedsize{
		width:100%;
	}
	.smalldevice{
		display:block;
	}
	.bigdevice{
		display:none;
	}
	.smallbigdevice{
		colspan:2;
	}
}

@media only screen and (min-width: 801px){
	body{
		background-color:#ffffff;
	}
	.fixedsize{
		width:1024px;
	}
	.smalldevice{
		display:none;
	}
	.bigdevice{
		display:block;
	}
	.smallbigdevice{
		colspan:1;
	}	
}
