	.effect_newtoy_display {
		overflow: hidden;
		width:170px;
		padding:5px;
		display:inline-block;
	}
	.effect_newtoy_display img {
		border:none;
		vertical-align:middle;
		-webkit-transition: -webkit-transform 0.5s linear;
		-moz-transition: -moz-transform 0.5s linear;
		-o-transition: -o-transform 0.5s linear;
		transition: transform 0.5s linear;
	}
	.effect_newtoy_display .link {
		border:2px solid #E5E5E5;
		overflow:hidden;
		display:block;
		-webkit-transition: border-color 0.5s linear;
		-moz-transition: border-color 0.5s linear;
		-o-transition: border-color 0.5s linear;
		transition: border-color 0.5s linear;
	}
	.effect_newtoy_display:hover img {
		-webkit-transform: scale(1.2) rotate(-5deg);
		-moz-transform: scale(1.2) rotate(-5deg);
		-o-transform: scale(1.2) rotate(-5deg);
		transform: scale(1.2) rotate(-5deg);
	}
	.effect_newtoy_display:hover .link {
		border-color:#99CCCC;
	}