H2 {display: inline;}
 a:link {
   color: #006699;
}

/* visited link */
a:visited {
    color: #0099CC;
}

/* mouse over link */
a:hover {
    color: #FFCCCC;text-shadow: 1px 1px gray;text-transform: uppercase;
}

/* selected link */
a:active {
    color: red ;
} 

			#cf2 {

			position: relative;
			height: auto;
			width: auto;
			margin: 0 auto;
		}
		#cf2 img {
			position: absolute;
			height:auto;
			width: 100%;
			top:0%;
			left: 0;
			opacity: 0;
			-webkit-transition: opacity 1s ease-in-out;
			-moz-transition: opacity 1s ease-in-out;
			-o-transition: opacity 1s ease-in-out;
			transition: opacity 1s ease-in-out;
		}

		#cf2 img.visible {
			opacity: 1;
		}