/* 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: white;
}
body {
	font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    width: 90%;
	height: auto;
    margin: 0 auto;
    border: 3px solid #B22222;
    background-color: #FFFFFF;
}
/* the styles for the header */
header {
	padding: 2em 0;
	background-image: -moz-linear-gradient(
	    30deg, #CC99FF 0%, #A8A8A8   40%, white 50%, #9999FF  90%, #00BFFF 100%);
	background-image: -webkit-linear-gradient(
	    30deg, #CC99FF 0%, #A8A8A8   40%, white 50%, #9999FF  90%, #00BFFF 100%);
	background-image: -o-linear-gradient(
	    30deg, #CC99FF 0%, #A8A8A8   40%, white 50%, #9999FF  90%, #00BFFF 100%);
	background-image: linear-gradient(
	    30deg, #CC99FF 0%, #A8A8A8   40%, white 50%, #9999FF  90%, #00BFFF 100%);
}
header h1 {
	text-align: center;
	color: #66CCFF;
}
header h2 {
	font-style: italic;
}
.shadow {
	text-shadow: 3px 3px 2px black;
	letter-spacing: 2px;
	font-size: 2em;
}

/* Styles of the navigation bar*/
nav a {
	color: #B22222;
	font-weight: bold;
}

ul#navmenu, ul.sub1{
	list-style-type: none;
}

ul#navmenu .li_navmenu{
	width: 20%;
	text-align: center;
	position: relative;
	float: left;
}

ul#navmenu a {
	text-decoration: none;
	display: block;
	line-height: 25px;
	background-color: #00BFFF;
	border: 2px solid #CCC;
}

ul#navmenu .sub1 a {
	margin-top: 2px;
}

ul#navmenu li:hover > a {
	background-color: #CFC;
}

ul#navmenu li:hover a:hover {
	background-color: #FF0;
}

ul#navmenu ul.sub1 {
	display: none;
}

ul#navmenu li:hover .sub1 {
	display: block;
}

nav a.current { color: white;}

/*Styles for the headings*/
h1.headings{
	margin-top: 40px;
	width: 100%;
	text-align: center;
	height: 50px;
	font-family: Freesyle Script; 
	font-size: 3em;
	font-style: italic;
	text-shadow: 3px 3px 3px #333;
	letter-spacing: 3px;
	color: #66CCFF;
}
h3.headings{
	padding-top: 5px;
	font-size: 18px;
	font-family: Freesyle Script; 
	text-shadow: 1px 1px 1px #333;
	letter-spacing: 2px;
	color: #66CCFF;
	text-align: center;
}

/*Styles for the section*/

section {
	margin: 20px;
	clear: right;
	width: 60%;
	float: left;
}

.info{
	text-align: center;
	padding-bottom: 20px;
}

.images {
	position: relative;
	left: 34%;
	margin: 20px;
	width: 25%;
	height: 150px;
}

#unordered_list{
	list-style-type: none;
	font-size: 17px;
	padding: 10px;
}


/*Styles of the aside*/
aside{
	margin-right: 5px;
	margin-top: 20px;
	margin-bottom: 20px;
	float: right;
	width: 30%;
	border: 2px solid #66CCFF;
}

#ordered_list{
	font-size: 17px;
	padding:10px;
	text-align: center;
	margin: 10px;
}
#unordered_list_II{
	list-style: none;
	font-size: 16px;
	margin-left: 34%;
	margin-top: 4%;
	margin-bottom: 3%;
}

.list_image{
	background: url('../images/style_image.png') no-repeat 0 6px;
	background-size: 10px;
	padding-left: 16px;
	padding-bottom: 10px;
	margin-top: 10px;
	font-style: italic;
	text-shadow: 3px 3px 3px #333;
	letter-spacing: 1px;
	color: #66CCFF;
}


/*Styles for the footer*/
footer{
	clear: both;
	border-top: 3px solid #B22222;
}

footer p {
	margin: 20px;
	text-align: center;
}
