Heya guys

I'm trying to get some CSS (fading links) to work in Opera:

Code:
.alert a {
        color: #fff;
	padding: 10px;
	text-shadow: 0px 0px 5px #000;
	line-height: 1.6;
	font-size: 14px;
	-webkit-transition:all 400ms ease-in;
	-o-transition:all 400ms ease-in;
        -moz-transition:all 400ms ease-in;
}

It works in all other browsers apart from Opera. Is there anything I can do to get it to work?