@charset "UTF-8";
@font-face {
	font-family: Scott; 
	src: url("Scott.ttf");
}

html {
	background-color: #003366;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

#container {
	width: 1280px;
	height: 800px;
	margin: -15px auto 0px; /* auto margin (left and right)
	centres layout of container on page */
	padding: 15px;
	background: no-repeat scroll url("images/bkgd.jpg"); /* background shorthand */
	position: relative;
}

header {
	height: 100px;
  margin-right: 55px;
}

header li {
	display: inline;
}

header nav {
	float: right;
}

header a {
	width: auto;
	border: medium inset #d6d6d6;  /* border shorthand */
	margin: 10px; /* shorthand for margin for all sides equals 10px */
	padding: 10px; /* shorthand for padding for all sides equals 10px */
	/* box shadow */
	box-shadow: 2px 2px 2px #ccc inset;
	-webkit-box-shadow: inset 2px 2px 2px #ccc; /* Safari alt */
	/* border radius */
	border-radius: 10px;
	-moz-border-radius: 10px; /* Firefox alt */
	color: #000;
	text-align: center;
	text-shadow: 1px 1px 1px #fff; /* unsupported by IE */
	transition: ease 0.5s;
  display: inline-block;
}

header a:link {
	background-color: #b0c4de;
	font: bold 22px Scott; /* font shorthand */
}

header a:visited {
	background-color: #b0c4de;
	font: bold 22px Scott; /* font shorthand */
}

header a:hover {
	background-color: #e6e6fa; /* lavender */
	font: bold 30px Scott;  /* font shorthand */
	/* rotation upon hover */
	transform: rotate(7deg); /* CSS3 */
	-ms-transform: rotate(7deg); /* for IE compatibility */
	-moz-transform: rotate(7deg); /* for Firefox compatibility */
	-webkit-transform: -webkit-rotate(7deg); /* for Safari and Chrome compatibility */
	-o-transform: rotate(7deg); /* for Opera compatibility */
}

#content {
	width: 940px;
	height: 510px;
	border: thick groove #fff;  /* border shorthand */
	position: absolute;
	top: 115px;
	left: 280px;
}

#content h1 {
	font: bolder 26px Scott;
	color: #E2F2F2;
}

#content a {
	display: block;
}

#content img {
  bottom: 10px;
}

#toc li {
  font: bold 24px Scott;
	width: 220px;
  height: 300px;
  background-color: #b0c4de;
	border: 15px groove #909090;  /* border shorthand */
	margin: 10px; /* shorthand for margin for all sides equals 10px */
	padding: 5px; /* shorthand for padding for all sides equals 10px */
	/* box shadow */
	box-shadow: 2px 2px 2px #ccc inset;
	-webkit-box-shadow: inset 2px 2px 2px #ccc; /* Safari alt */
	/* border radius */
	border-radius: 10px;
	-moz-border-radius: 10px; /* Firefox alt */
	color: #000;
	text-align: center;
	text-shadow: 1px 1px 1px #fff; /* unsupported by IE */
  display: inline-block;
  transition: ease 0.5s;
}

#toc li:hover {
	background-color: #e6e6fa; /* lavender */
}

#toc a {
  color: #000;
	padding: 0 10px;
}

#intro h1 {
	font: bolder 50px Scott;
	color: #E2F2F2;
	position: relative;
	margin: 10px 134px;
}

#main h1 {
  margin: 0 262px;
}

aside {
	width: 195px;
	height: auto;
	border: 2px solid #99ccff; /* border shorthand */
	padding: 6px;
	position: absolute;
	top: 135px;
	left: 30px;
}

aside h1 {
	font: bolder 27px Scott;
	color: #F1F0F2;
	text-align: center;
	margin: 0 0 -5px 0;
}

.menu h2 {
	font: bold 23px "CartoGothic Std", "Lucida Console", Arial, sans-serif;
	color: #99ccff;
	text-align: right;
	margin: 20px 0 5px 0;
}

.menu a {
	display: block;
	font-family: "Helvetica", "Arial", sans-serif;
	text-align: right;
	color: #000;
	border-top: 1px solid #48704b;
	padding: 3px;
}

.menu a:link {
	background: #788ca0;
	font-size: 17px;
}

.menu a:visited {
	background-color: #77aadd;
}

.menu a:hover {
	background-color: #99ccff;
	font-size: 22px;
	text-shadow: 1px 1px #fff;
}

footer {
	width: 1270px;
	height: 85px;
	border: groove #fff;  /* border shorthand */
	position: absolute;
	top: 650px;
	left: 0px;
}

footer a {
	font: bold 20px "Scott";
	text-align: center;
	color: #fff;
	float: left;
	width: 180px;
	display: inline;
}

footer img {
	margin-top: 10px;
	border: none;
}

.small {
	font: 16px "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #d6d6d6;
	position: absolute;
	bottom: -10px;
	right: 50px;
}