/* So the HTML5 structural tags work in older browsers */
article, aside, figure, footer, header, nav, section {
    display: block;
}
/* the styles for the elements */
* {
	margin: 0;
	padding: 0;
}
html {
	background-color: #DCEAFE;
}
body {
	font-family: Times New Roman, sans-serif;
    font-size: 100%;
}
a:focus, a:hover {
	font-style: italic;
}
/* the styles for the header */
header {
	border-top: none;
	border-bottom: none;
	padding: 1em 0;
	padding-bottom: .5em;
	background-image: linear-gradient(30deg, blue 0%, skyblue 30%, white 50%, skyblue 80%, blue 100%);
}
header h1 {
	color: black;
	font-size: 200%;
	font-style: bold;
	padding-bottom: .5em;
	text-align: center;
}
header h2 {
	color: black;
	font-size: 150%;
	font-style: italic;
	text-align: center;
}
.shadow {
	text-shadow: 2px 2px 2px yellow;
}

/* the styles for the navigation bar */
nav {
	clear: both;
}
nav ul {
	list-style: none;
	text-align: center;
	padding: 1em 0;       /* padding above and below li elements */
	background-color: black; }
nav li {
	display: inline; }
nav a {
	padding: 1em 1.5em;
	text-decoration: none;
	color: white;
	font-weight: bold;
	border-right: none; }
nav a.current { color: red; }

/* the styles for the section */
section {
	padding: 15px;
	width: 500px;
	margin: 0 auto;
}
section h1 {
	color: blue;
	font-size: 150%;
	padding-bottom: .2em;
	text-align: center;
}
section h2 {
	font-size: 100%;
	padding-bottom: .2em;
	text-align: center;	

}
section h3 {
	font-size: 130%;
	padding-bottom: .2em;
	text-align: center;	
	font-style: italic;
	color: blue;
}
section ul {
	margin: 1em;
}
/* the styles for the form */
fieldset {
    margin-bottom: .5em;
    padding: .5em 1em;
}

legend {
    font-weight: bold;
    font-size: 100%;
}
label{
    float: left;
    font-size: 100%;
    width: 10em;
	padding: .1em;
}

input {
    margin-left: 0.5em;
    margin-bottom: 0.5em;
 	margin-top: .5em;
}

br {
    clear: both;
}
/* the styles for the footer */
footer {
	border-top:none;
	clear: both;
}
footer p {
	padding: 1em 0;
	text-align: center;
}