/*
   Web page Style Sheet
   Author: Trevor Slay
   Date: 03/18/2016

   Filename: baseballWS.css
   Supporting files: none
*/

/*Navigation styles*/

nav {
   position: relative;
   top: 0px;
   left: 65px;
	}

nav ul li {
	background-color: #136BB8;
   	border: 4px outset #EE174B;
   	
   	display: block;
	float: left;
   	height: 30px;
   	line-height: 30px;
   	font-size: 14px;
	font-weight: bold;
   	text-align: center;
   	margin: 0px 6px;
	min-width: 50px;
   	padding: 0px 10px;
	}
	
nav ul li a {
   	color: #FFF;
	font-family: 'Lucida Grande', Verdana, sans-serif;
   	text-decoration: underline;
	}
	
/*Heading/Body styles*/	

header {
position: relative;
   top: 0px;
   left: 50px;
}


h1 {
	color: blue;
	text-align: center;
	font-size: 18px;
	}
	
h2 {
	color: #F2B411;
	text-align: left;
	font-variant: small-caps;
	}
	
h3 {
	color: #EE174B;
	text-align: center;
	font-size: 14px;
	}

p {
	font-size: 15px;
	text-align: justify;
	}

body {
	background-color: black;
	width: 950px; 
	margin: 0px auto; 
	font-family: 'Lucida Grande', Verdana, sans-serif;
	color: #FFF;
	}
	
/*Audio/Video styles*/
	
iframe, movie, audio, object {
	border-color: #000;
	display: block;
	margin: 10px auto;
	text-align: center;
	width: 75%;
	}
	
/*Rotate style*/

h4 {
	font-size: 30px;
	color: red;
	width: 425px;
	height: 110px;
	background-color: blue;
	-ms-transform: rotate(6deg);
	-webkit-transform: rotate(6deg);
	transform: rotate(6deg);
	}
		