
/* 黄色いballボタン */



p.css-btn2{  
   position: absolute;  
   top: 73px;  
   left: 11px;  
}  


p.css-btn2 a:link,
p.css-btn2 a:visited {
 -moz-animation: 'anime1' 5s ease -2s infinite alternate;
 -webkit-animation: 'anime1' 5s ease -2s infinite alternate;
 -o-animation: 'anime1' 5s ease -2s infinite alternate;
 -ms-animation: 'anime1' 5s ease -2s infinite alternate;
 }

p.css-btn2 a:link,
p.css-btn2 a:visited{        
	text-align:center;
        color:#fff;
        text-decoration:none;
        position:relative;

        background-image: url(../image/2221.png);　/* ボタンのball画像 */
        background-repeat: no-repeat; 
        
	display:block;
	background: -webkit-gradient(linear, left top, left bottom, from(#fffff0), to( rgba(223,223,0,0.5)));
	background: -moz-linear-gradient(top, #fffff0, rgba(223,223,0,0.5));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffff0', endColorstr='#dfdf00'), alpha(opacity=70);
	
	-moz-box-shadow: 1px 1px 3px #333;
	-webkit-box-shadow: 1px 1px 3px #333;
	box-shadow: 1px 1px 3px #333;
	text-shadow:-1px -1px 0 #888;
 }





 @-webkit-keyframes 'anime1' {
 0% {width: 24px; height: 24px;  font-size:0px;line-height:24px; -webkit-border-radius: 12px; box-shadow: 4px 4px 5px #555;}
 100% {width: 120px; height: 24px; font-size:14px;line-height:29px; -webkit-border-radius: 12px; box-shadow: 1px 1px 3px #333;}
 }

 
 