@charset "UTF-8";

.ndate {
	color:#fff;
	background-color:#444;
	font-size:0.76em;
	padding:5px 10px;
	text-align:right;
	margin:-30px auto 30px;
}

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

@media screen and (max-width: 499px) {
	.ndate {
	margin:-20px auto 30px;
}
	.nwimg {
	max-width: 300px;
	max-height: 300px;
	width: expression(this.width >= this.height ? "300px" : "auto");
	height: expression(this.width <= this.height ? "300px" : "auto");
}
}

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

}