/*
"Mark in Japan" final layout
HFWD Chapter 3
http://headfirslabs.com/books/hfwd/ch03/stylesheets/screen.css
*/

body {
	margin: 0;
	padding: 0;
	background: #325064;
	font-family: Helvetica, sans-serif;
	line-height: 1.4em;
}

a:link {
	text-decoration: none;
	color: #64A1CA;
}
a:visited {
	text-decoration: none;
	color: #98C373;
}
a:hover {
	text-decoration: none;
	color: #16354B;
}
a:active {
	text-decoration: none;
	color: #64A1CA;
}
a {
	font-weight: bold;
}
/* Use a single rule for elements that share the same properties */
h1, h2, h3, p, ul, li {
	margin: 0;
	padding: 0;
}

p, h2, h3 {
	margin: 0 0 10px 0;
}

ul {
	list-style-type: none;
}

/* Our friend "margin: 0 auto" shows up again */
#wrap {
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 40px;
	padding: 10px;
	width: 780px;
	background: #FFF;
	border: 10px solid #64A1CA;
}

#header {
	background: url('../images/opcuglogo4.jpg') no-repeat;
	height: 220px;
}

/*
Use background images in CSS to add visuals
to text
*/
#header h1 {
	color: #fff;
	font-weight: bold;
	letter-spacing: -1px;
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 70px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 40px;
}

/* Standard float positioning */
#content {
	margin: 10px 0 0 0;
	padding: 10px;
}



/*
Remember to "clear: both" when positioning elements
below floated elements.
*/
#footer {
	clear: both;
	padding: 10px;
	background: #eee;
	border-bottom: 2px solid #ddd;
}

#footer p {
	margin: 0;
	text-align: center;
	color: #777;
}
#nav {
	height: 40px;
	width: 710px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 40px;
	background-color: #16354B;
}
.float_image_left {
	float: left;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.margin_left_30px {
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 30px;
}
.margin_left_60px {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 60px;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #64A1CA;
}
.small_font {
	font-size: 11px;
	font-weight: bold;
}
.red_text {
	color: #F00;
}
