@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/* full screen */
#Column1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 49%;
	display: block;
}
#Column2 {
	clear: none;
	float: left;
	margin-left: 2%;
	width: 48.9%;
	display: block;
}


/* Tablet Layout: 481px to 768px. */

@media only screen and (max-width: 768px) {

#Column1 {
	clear: none;
	float: left;
	margin-left: 2%;
	width: 98%;
	display: block;
}
#Column2 {
	clear: none;
	float: left;
	margin-left: 2%;
	width: 98%;
	display: block;
}
}

/* Cellphone */

@media only screen and (max-width: 481px) {
/* Mobile Layout: 480px and below. */

#Column1 {
	clear: none;
	float: left;
	margin-left: 3%;
	width: 97%;
	display: block;
}
#Column2 {
	clear: none;
	float: left;
	margin-left: 3%;
	width: 97%;
	display: block;
}
}