@charset "utf-8";
/*
 * @Course: Intro to CSS3 
 * @Author: Luis Moreno
 */

section, article, aside, figure, header, footer{
	display: block;
}

h2, h3, h4, h5, h6 {
    height: 10px;
}

h1{
	color: navy;
	background-color: white;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: x-large;
	font-style: oblique;
	font-weight: 900;
	word-spacing: 10px;
	letter-spacing: 4px;
	height: 40px;
	line-height: 42px;
	width: 400px;
	-webkit-box-shadow: inset -3px -3px 2px 1px rgba(33, 98, 175, 1);
	box-shadow: inset -3px -3px 2px 1px rgba(33, 98, 175, 1);
	-webkit-border-radius: 80px;
	border-radius: 80px;
}

header {
	margin-top: 5%;
	width: 100%;
}

.mainheader{
	border: medium outset gray;
	width: 100%;
	float: left;
}

hgroup *{
	width: 78%;
	margin-top: 1%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 1%;
	float: left;
}

header img {
	float: left;
	width: 20%;
	border: medium outset gray;	
}

nav{
	clear: both;
	border: medium outset gray;
	width: 100%;
}

.main-content{
	clear: both;
	text-align: justify;
	width: 100%;
	border: medium outset gray;
	-webkit-box-shadow: inset -3px -3px 2px 1px rgba(76, 76, 76, 1);
	box-shadow: inset -3px -3px 2px 1px rgba(76, 76, 76, 1);	
}

section{
	border: medium outset gray;
}

body{
	background-color: white;
	color: black;
	text-align: justify;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: larger;
	margin-left: 10%;
	margin-right: 10%;
	letter-spacing: 1px;
}

p{
	margin-right: 1%;
	text-indent: 1%;
}
/*
.sidebar{
	float: right;
	width: 10%;
	text-align: center;
}
*/

.footer{
	clear: both;
	text-align: center;
	border: medium outset gray;
	width: 100%;
}

.author{
	font-style: italic;
	text-align: right;
}

.com-date{
	color: graytext;
    font-style: oblique;
    font-weight: bold;
    text-align: right;
	margin-right: 5%;
}

/* CSS menu*/
#navigation {
	text-align: center;
	font-size: 1em;
	font-family: "Times New Roman", Times, serif;
	font-weight: 600;
}

#navigation ul {
	margin-left: 0;
	padding-left: 0;
}

#navigation li {
	list-style: none;
	border-bottom: solid black;
	border-top: solid black;
	border-width: 1px;
	background: #369cd6;
	display: inline;
} 

#navigation a {
	color: white;
	cursor: pointer;
	display: inline;
	height: 25px;
	line-height: 25px;
	text-decoration: none;
	width: 100%;
}

#navigation li a:hover {
	text-decoration:underline;
	color: black;
	background: #2162af;
	position: relative;
}

#navigation li span {
	text-decoration: underline;
	color: black;
	background: #2162af;
	position: relative;
	display: inline;
	height: 25px;
	line-height: 25px;	
}