@charset "utf-8";
/* CSS Document */


h1   {
	font-size: 1.6em;
  	font-weight: bold;
 	 color: #0066cc;	
}

h2   {
	font-size: 1.2em;
  	font-weight: bold;
 	color: #0066cc;	
}

p  {
	font-size: 1.2em;
 	color: #0066cc;
}

.racestartphoto  {
	margin: 0 auto; /* avoids using <center> html tag */
	max-width: 100%;
	opacity: 1;
	border-radius: 10px;		/* needs to be here to prevent the <img> border-radius showing up with a corner to the background (cuased by drop-shadow) */
	box-shadow: 4px 4px 8px rgba(0, 0, 0, .75);
   	transition: opacity .25s ease-in-out;
  	-moz-transition: opacity .25s ease-in-out;
   	-webkit-transition: opacity .25s ease-in-out;
}

.racestartphoto:hover, table img:hover {
	opacity: .4;
}


table img  {
	width: 100%;
	margin: 10px;
	opacity: 1;
	border-radius: 8px;
	box-shadow: 4px 4px 6px rgba(0, 0, 0, .75);
	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
   	-webkit-transition: opacity .25s ease-in-out;
}
