h1{
	color:#008000;
}
span:nth-child(1), div>ul>li:nth-child(odd) {
	color: #ff0000;
}
div>span:nth-of-type(2),div>ul>li:nth-child(even) {
	background-color: #ffff00;
	color: #000000;
}

span{
	color: #008000;
}
a:nth-of-type(2) {
	color: #008000;
}
[title]{
	color: #ff0000;
}
b, ul>li:last-child{
	color:#800080;
}
b+span{
	color: #5151f5;;
}
p>span:last-child{
	color: #000000;
}
div+div{
	color: pink;
}
ol>li:nth-child(odd){
	color: #0000ff;
}
ol>li:nth-child(even){
	color: green;
}
ol>li:nth-child(4){
	background-color: gray;
}
.special, ol>li:last-child{
	color:#ffa500;}



