/*   Nick Barnett
     module4Preschool.css
     INFO1315.SN
     Professor Olberding
     9/29/14
*/

body {
	margin-left: 50px;
	margin-right: 50px;
	background-color: #b1ec7c;
	/**************COMMENT OUT LINES 13 THROUGH 16 TO VALIDATE********************/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#b1ec7c), to(#5cae12));
	background-image: -moz-linear-gradient(top, #b1ec7c, #5cae12);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b1ec7c, endColorstr=#5cae12);
	background-image: linear-gradient(#b1ec7c, #5cae12);
}

#wrapper {
	border: 3px solid #000;
	border-radius: 15px;
    -moz-box-shadow: 6px 8px 11px #000000;
    -webkit-box-shadow: 6px 8px 11px #000000;
    box-shadow: 6px 8px 11px #000000;
}

header {
	height: 100px;
	background-color: #5cae12;
	padding-top: 1px;
	border-bottom: 1px solid #000;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	clear: both;
}

nav {
	height: 60px;
	background-color: #438b03;
	padding-top: 1px;
	border-bottom: 1px solid #000;
}

nav ul li {
	display: inline;
	float: left;
	position: relative;
}

nav ul li a {
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	color: #95e052;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 1.3em;
	font-family: "Comic Sans MS", cursive, sans-serif;
}

a:link {
	color: #95e052;
}

a:visited {
	color: #5cae12;
}

a:hover {
	cursor: pointer;
	color: #000;
	background-color: #b1ec7c;
}

a:active {
	color: #fff;
}

main {
	background-color: #fff;
	padding-top: 1px;
	padding-bottom: 1px;
}

p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1.4em;
	text-indent: 15px;
	padding-left: 10px;
}

td {
	border: 1px solid black;
	text-align: center;
}

h1 {
	font-size: 4em;
	margin-top: .06em;
	font-family: "Comic Sans MS", cursive, sans-serif;
	text-align: left;
	padding-left: 70px;
}

h2 {
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-size: 2em;
	text-align: center;
}

footer {
	height: 50px;
	background-color: #438b03;
	padding-top: 1px;
	text-align: center;
	font-size: 1.2em;
	font-style: italic;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

footer p {
	margin-top: .6em;
}

footer a {
	text-decoration: none;
}

.logo {
	float:right;
	padding-right: 50px;
	-webkit-animation-duration: 2s;
	-webkit-animation-delay: .5s;
	-webkit-animation-iteration-count: 1;
	-moz-animation-duration: 2s;
	-moz-animation-delay: .5s;
	-moz-animation-iteration-count: 1;
}

.inlineImage {
	padding: 5px 30px 20px 30px;
	float:right;
}