/*
Red Lantern redesign
HFWD Chapter 1
http://headfirslabs.com/books/hfwd/ch01/stylesheets/screen.css
*/

/*
The font size here is set to 62.5% so that
1em = 10px. This makes adjusting our typography
a little easier
*/
body {
	margin: 0;
	padding: 0;
	background: #3056A7 url('../images/body_bg.png') repeat-x top;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
}

h1, h2, p, ul, li {
	margin: 0;
	padding: 0;
}

p {
	line-height: 1.4em;
}

ul {
	list-style-type: none;
}

a:link, a:visited {
	color: #333;
	background: #eee;
}
a:hover{
color: #E38953;	
}

/* This rule adds a nice style to our ampersands */
span.amp {
	font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
	font-weight: normal;
	font-style: italic;
}

/*
"margin: 0 auto" with a width will center the layout
in the browser window
*/
#masthead {
	margin: 0 auto;
	margin-top: 20px;
	width: 800px;
	color: #fff;
}

#masthead h1 {
	float: left;
}

#nav {
	float: right;
	margin: 50px 10px 0 0;
	font-size: 16px;
}

#nav li {
	display: inline;
	margin: 0 0 0 20px;
}

#nav li a {
	color: #fff;
	text-decoration: none;
	background: none;
}
#nav li a:hover {
	color: #E38953;
}

/*
Because the header content is outside the wrap <div>,
we need to use the same "margin: 0 auto" trick to center
the layout
*/
#wrap {
	clear: both;
	margin: 0 auto;
	padding: 10px;
	width: 780px;
	background: #fff;
	border: 10px solid #264482;
}

#header img {
	border: 10px solid #ccc;
}

#header h1 {
	font-size: 22px;
	margin: 10px 0 0 0;
	padding: 10px;
	text-align: center;
	background: url('../images/tagline_bg.gif') repeat-x #E38953;
}

#content, #sidebar {
	width: 360px;
	margin: 20px 0 20px 0;
	padding: 10px;
}

#main_content{
	width: 720px;
	margin: 20px 0 20px 0;
	padding: 10px;
}

#content {
	float: right;
}

#content h2 {
	font-size: 22px;
	margin: 0 0 10px 0;
}

#content p {
	margin: 0 0 10px 0;
}

#link-list {
	margin: 20px 0 0 0;
	font-size: 12px;
}

#link-list li {
	margin: 0 0 10px 0;
}

#sidebar {
	float: left;
	background: #eee;
}

#sidebar h2 {
	font-weight: bold;
	border-bottom: 1px solid #E38953;
	margin: 0 0 20px 0;
	font-size:20px;
	padding: 5px;
}

#port li {
	margin: 0 10px 20px 0;
	float: left;
	text-align:center;
}
#port li a img{
	border: 5px solid #dddddd;	
}
#port li a:hover img{
	border: 5px solid #E38953;	
}

#footer {
	clear: both;
	background: #eee;
	padding: 10px;
	border-top: 2px solid #E38953;
	text-align: center; 
	color: #777;
}
.orange{
color: #E38953;	
}

input, textarea{
	width: 250px;
	border: solid 1px #E38953; 
	padding: 3px;
	margin: 0 0 0 10px;
	font-family:Verdana, Geneva, sans-serif;
	max-width:250px;
}
.button{
	background-color: #3056A7;
	color: #ffffff;
	border: solid 1px #E38953; 
	padding: 5px 10px;
	width:auto;
}