@charset "UTF-8";

.newsimg {
	max-width:350px;
	max-height:350px;
	width: expression(this.width >= this.height ? "350px" : "auto");
	height: expression(this.width <= this.height ? "350px" : "auto");
}

@media screen and (min-width: 500px) {

}



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

.newsimg {
	max-width:250px;
	max-height:250px;
	width: expression(this.width >= this.height ? "250px" : "auto");
	height: expression(this.width <= this.height ? "250px" : "auto");
}

}

