#picShow{
	position:absolute;
	background:#FFF;
	padding:2px;
	display:none;
	color:#333;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-o-border-radius:5px;
	border-radius:5px;
	-moz-box-shadow:0px 0px 10px #333;
	-webkit-box-shadow:0px 0px 10px #333;
	-o-border-box-shadow:0px 0px 10px #333;
	box-shadow:0px 0px 10px #333;
	-webkit-transform-origin:top center;
	-webkit-animation-name: pulse;
	-webkit-animation-duration:8s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function: ease-in-out;
	z-index:9999999999
	 }
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: rotate(0deg) ;
	}
	25% {
		-webkit-transform: rotate(4deg) ;
	}
	50% {
		-webkit-transform: rotate(0deg) ;
	}
	75% {
		-o-transform: rotate(-4deg) ;
		-webkit-transform: rotate(-4deg) ;
	}
	100% {
		-webkit-transform: rotate(0deg) ;
	}
}

