/*----------------------------------------
[A Single Man Stylesheet]

Author:       Ethan Poole
Version:      1.0.0
Last updated: 12 November 2009

[Color codes]
See also base.css for more colour values.
Order now button: #999999
UPress links:     #555555
Footer:           #555555

[Table of contents]
1. Reset
2. Accessibility
3. Layout positioning
4. Sidebar / Book header
	4.1. Navigation
5. Order now button
6. UPress header
7. Footer
8. Default content styles

[Notes]
- Widths, margins, and paddings are based on 15px.

----------------------------------------*/

/* ----- [1. Reset] ----- */
* {
	font-family: inherit;
	font-size: 1em;
	margin: 0px;
	outline: 0px;
	padding: 0px;
}

/* ----- [2. Accessibility] ----- */
.accessible {
	height: 0px !important;
	left: -9999px !important;
	overflow: hidden !important;
	position: absolute !important;
	top: -9999px !important;
	width: 0px !important;
}

/* ----- [3. Layout positioning] ----- */
body {
	margin: 0px auto;
	padding-top: 115px; /* Makes room for the UPress header. */
	position: relative;
	width: 870px;
}
div#umn_press {
	height: 65px;
	padding: 20px 15px 15px 50px;
	position: absolute;
	top: 15px;
	width: 840px;
}
div#header {
	float: left;
	margin-bottom: 30px;
	padding-top: 40px;
	width: 270px;
}
div#content {
	margin-left: 270px; /* This value must match the width of the sidebar (div#header). */
	padding: 40px 30px 15px;
}
div#footer {
	clear: both;
	padding: 0px 15px 30px;
}

/* ----- [4. Sidebar / Book header] ----- */
div#header h1 a {
	background: #999;
	border: 1px solid #EEE;
	display: block;
	font-size: 3.2em;
	font-weight: normal;
	height: 378px;
	line-height: 130%;
	padding: 15px;
	position: relative;
	width: 238px;
}
div#header h1 a span {
	background: url(../images/book-cover.jpg);
	display: block;
	height: 408px;
	left: 0px;
	top: 0px;
	position: absolute;
	width: 268px;
}
	
	/* ----- [4.1. Navigation] ----- */
	div#header ul#navigation {
		margin: 15px;
		text-transform: uppercase;
	}
	div#header ul#navigation li {
		list-style-type: none;
		margin-bottom: 5px;
	}

/* ----- [5. Order now button] ----- */
div#header p#order_now {
	position: absolute;
	right: 15px;
	top: 40px;
	z-index: 10;
}
div#header p#order_now a {
	background: #999;
	color: #000;
	display: block;
	font-size: 1.3em;
	height: 15px;
	line-height: 100%;
	overflow: hidden;
	padding: 10px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	width: 120px;
}
div#header p#order_now a:hover {
	background: #555;
}
div#header p#order_now a span {
	background: url(../images/order-now.gif);
	display: block;
	height: 35px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 140px;
}
div#header p#order_now a:hover span {
	background-position: 0px 35px;
}

/* ----- [6. UPress header] ----- */
div#umn_press {
	background: url(../images/header-background.gif) no-repeat;
	text-transform: uppercase;
}
div#umn_press h2 {
	font-size: 2em;
	font-weight: normal;
	margin-bottom: 5px;
}
div#umn_press h2 a {
	color: #EEE;
	text-decoration: none;
}
div#umn_press h2 a:hover {
	background: transparent;
}
div#umn_press h2 a span {
	display: block;
	height: 100px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 37px;
}
div#umn_press ul {
	list-style-type: none;
}
div#umn_press ul li {
	float: left;
	margin-right: 1em;
}
div#umn_press ul li a {
	color: #555;
	font-size: 0.9em;
}
div#umn_press ul li a:hover {
	background: #555;
	color: #EEE;
}

/* ----- [7. Footer] ----- */
div#footer {
	color: #555;
	line-height: 100%;
}
div#footer p#follow_links {
	margin-bottom: 5px;
}
div#footer p#follow_links a:hover {
	background: transparent;
}

/* ----- [8. Default content styles] ----- */
div#content * {
	/* Keeps everything tidy inside the column. */
	max-width: 540px !important;
}
div#content h2 {
	font-size: 2.3em;
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 15px;
	text-transform: uppercase;
}
div#content h3 {
	font-size: 1.2em;
	font-weight: bold;
}
div#content p {
	margin-bottom: 15px;
}
div#content ul, div#content ol {
	margin: 0px 0px 15px 2em;
}
div#content p.tagline {
	font-size: 1.2em;
	margin-top: -15px;
	text-transform: uppercase;
}