/* text decoration */
.text_red
{
	color: #ff0000;
}

.text_green
{
	color: #00aa00;
}

.text_orange
{
	color: #ffcc66;;
}

.text_blue
{
	color: #0000ff;
}

.text_aqua
{
	color: #00ffff;
}

.text_center
{
	text-align: center;
}


.text_del
{
	text-decoration: line-through;
}

/* image */
img
{
	border: 0px;
}

/* Return */
br.cb
{
	clear: both;
}

/* link */
a.text
{
	color: #0000ff;
}

a.news
{
	color: #00ffff;
}

a.text:hover,a.news:hover
{
	text-decoration: none;
}

/* FLOAT解除 */
.float_del
{
	zoom: 100%;
}

.float_del:after
{
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

/* 点滅 */ .blinking{ -webkit-animation:blink 1.5s ease-in-out infinite alternate; -moz-animation:blink 1.5s ease-in-out infinite alternate; animation:blink 1.5s ease-in-out infinite alternate; } @-webkit-keyframes blink{ 0% {opacity:0;} 100% {opacity:1;} } @-moz-keyframes blink{ 0% {opacity:0;} 100% {opacity:1;} } @keyframes blink{ 0% {opacity:0;} 100% {opacity:1;} } 
