.content {
	padding: 10px 0;
	background-image: url(../pictures/bg.jpg);
}
.container .content p {
	font-size: 18px;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	font-style: normal;
}

h1 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 24px;
	color: #000;
	line-height: normal;
	font-weight: bold;
}
tr {
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-size: larger;
	font-weight: bold;

}
li {
	list-style-type:disc;
	color: #000;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: inset;
	border-right-style: inset;
	border-bottom-style: inset;

}
.special {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	color: #000;
	background-color: #F99;
}

.spin {
	animation-name: myfirst;
animation-duration: 5s;
animation-timing-function: linear;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
/* Firefox: */
-moz-animation-name: myfirst;
-moz-animation-duration: 5s;
-moz-animation-timing-function: linear;
-moz-animation-delay: 0s;
-moz-animation-iteration-count: infinite;
-moz-animation-direction: alternate;
-moz-animation-play-state: running;
/* Safari and Chrome: */
-webkit-animation-name: myfirst;
-webkit-animation-duration: 50s;
-webkit-animation-timing-function: linear;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: alternate;
-webkit-animation-play-state: running;
/* Opera: */
-o-animation-name: myfirst;
-o-animation-duration: 5s;
-o-animation-timing-function: linear;
-o-animation-delay: 0s;
-o-animation-iteration-count: infinite;
-o-animation-direction: alternate;
-o-animation-play-state: running;
} 
@keyframes myfirst
{
from {transform: rotateY(0deg);
-webkit-transform: rotateY(0deg); /* Safari and Chrome */
-moz-transform: rotateY(0deg); /* Firefox */}
to {transform: rotateY(360deg);
-webkit-transform: rotateY(360deg); /* Safari and Chrome */
-moz-transform: rotateY(360deg); /* Firefox */}
}

@-moz-keyframes myfirst
{
from {transform: rotateY(0deg);
-webkit-transform: rotateY(0deg); /* Safari and Chrome */
-moz-transform: rotateY(0deg); /* Firefox */}
to {transform: rotateY(360deg);
-webkit-transform: urotateY(360deg); /* Safari and Chrome */
-moz-transform: rotateY(360deg); /* Firefox */}
}

@-webkit-keyframes myfirst 
{
from {transform: rotateY(0deg);
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg); }
to {transform: rotateY(360deg);
-webkit-transform: rotateY(360deg); 
-moz-transform: rotateY(360deg); }
}
@-o-keyframes myfirst /* Opera */
{
 {from {transform: rotateY(0deg);
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);}
to {transform: rotateY(360deg);
-webkit-transform: rotateY(360deg); /* Safari and Chrome */
-moz-transform: rotateY(360deg); /* Firefox */
} 
}