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

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

header {
	margin-top: 5%;
}

nav{
	clear: both;
	margin-left: 20%;
}

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;
/*
	border: inset;
	border-color: silver;
	border-style: inset;
	border-width: thick;
*/
	width: 400px;
	-webkit-box-shadow: inset -5px -5px 10px 1px rgba(000, 000, 250, 1);
	box-shadow: inset -3px -3px 2px 1px rgba(33, 98, 175, 1);
	-webkit-border-radius: 80px;
	border-radius: 80px;
	height: 40px;
	line-height: 42px;
}

body{
	background-color: white;
/*	background-color: #9fd5ff;*/
	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;
}

hgroup{
	margin-left: 20%;
	margin-right: 10%;
}

.header img {
/*	display: block;*/
	float: left;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

.main-content{
	float: left;
	text-align: justify;
	width: 100%;
	-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);
}

.main-content p{
	margin-right:5%
}
.sidebar{
	float: right;
	width: 10%;
	text-align: center;
}

.footer{
	clear: both;
	margin-left: 30%;
	margin-right: 30%;
	text-align: center;
}

.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 {
	font-size: 1em;
	font-family: "Times New Roman", Times, serif;
	font-weight: 600;
/*	width: 110px; */
}

#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;	
}