/*CSS Reset*/
@import url('cssReset.css');

body {
	background-color: #cccccc;
	font-family: "Times New Roman", Times, serif;
}


#wrap{
	width: 960px;
	margin: auto;
	background-color: #ffffff;
	margin-top: 20px;
	margin-bottom: 20px;
	
}

/* Nav */
nav{
	display: block;
	width: 100%;
	height: 20px;
	background-color: #9b9b9b;
}
nav ul {
	list-style-type: none;
	padding-left: 80px;
}
nav li {
	float: left;
}
nav li a {
	display: block;
	width: 76px;
	margin: 0px 2px 0px 2px;
	height: 20px;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	background-color: #bcbcbc;
	color: #ffffff;
}
nav a:hover{
	color: #662244;
}

nav a:hover{
	text-decoration: underline;
}

/* Headers */
h1 {
	font-size: 2.2rem;
	color: #ffffff;
	background-color: #2039f9;
	padding: 25px 80px 25px 80px;
	font-weight: bold;
}

h2{
	font-size: 1.8rem;
	font-weight: bold;
	padding: 20px 0px 20px 0px;
}

/* Main Text */
section{
	padding: 0px 80px 20px 80px;
}
article{
	line-height: 1.25;
}
article p{
	text-indent: 50px;
	padding-bottom: 20px;
}
blockquote{
	padding: 0px 50px 0px 50px;
}

/*Table*/
caption{
	text-align: left;
}
table{
	width: 100%;
}
table{
	border: 1px solid black;
}
th, td{
	border-right: 1px dotted black;
	border-bottom: 1px dashed black;
	padding: 2px 5px 2px 5px;
}
th{
	font-weight: bold;
}

/* Lists */
article ol{
	padding-left: 40px;
	list-style-type: decimal;
}
article ul{
	padding-left: 40px;
	list-style-type: circle;
}


/* Footer */
footer{
	color: #ffffff;
	background-color: #2039f9;
	padding: 5px 80px 5px 80px;
	font-size: 0.8rem;
}
