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

Title: RKJaer - one-paged presentation page
Type: XHTML Markup
Version: 1.0
Author: Rasmus Kjær Jessen - @rkjaer on Twitter.com


TABLE OF CONTENTS:

01 - General
02 - Typography
03 - Footer
04 - Xtras


/* ----------------------------------------------*/
/* 01 - General
/* ----------------------------------------------*/

body {
	background: #FFF url('../images/bg-tile.gif');
	color: #444;
	font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
	font-size: 14px;
	
	text-transform: lowercase;
}

#wrapper {
	text-align: center;
	width: 100%;
}

#container {
	background: #FFF url('../images/bg-grain.gif');
	margin: 0 auto 15px;
	overflow: hidden;
	padding: 30px 20px 20px;
	position: relative;
	text-align: left;
	width: 710px;
	
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;
	
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	
	-moz-box-shadow: 0 -2px 8px #111;
	-webkit-box-shadow: 0 -2px 8px #111;
	box-shadow: 0 -2px 8px #111;
}

#details {
	float: right;
	width: 235px;
}

/* ----------------------------------------------*/
/* 02 - TYPOGRAPHY
/* ----------------------------------------------*/

h1,
h2,
h3,
h4 {
	color: #333;
	font-family: Georgia;
	font-weight: bold;
	letter-spacing: -1.2px;
	margin: 0 0 0.15em 0;
	text-shadow: 0 1px 1px #999;
}

h1 em,
h2 em,
h3 em,
h4 em {
	color: #888;
	cursor: pointer;
}

h1 {
	display: none;
	font-size: 1.8em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	margin-top: 1em;
	font-size: 1.15em;
}

h4 {
	font-size: 1.1em;
}

p {
	letter-spacing: -0.4px;
	line-height: 1.3em;
	margin: 0 0 .8em 0;
	
	text-shadow: 0 1px 2px #CCC;
}

a {
	border-bottom: 1px dotted #333;
	color: #999;
	text-decoration: none;
}

	a:hover {
		background: #FFF8A8;
		border-bottom: none;
		color: #000;
	}

ul {}

	ul li {
		margin: 0 0 4px 0;
	}
	
	
img {
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

/* ----------------------------------------------*/
/* 03 - Footer
/* ----------------------------------------------*/

#footer {
	color: #696969;
	font-size: 0.85em;
	margin: 0 auto 15px;
	overflow: hidden;
	text-align: center;
	width: 750px;
	
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

	#footer span {
		clear: both;
		float: left;
		padding: 2px 0 0 0;
		text-shadow: 0 -1px 0 #000;
		width: 100%;
	}
	
	#footer a {
		color: #2276BB;
	}
	
		#footer a:hover {
			background: none;
			color: #3690da;
		}

/* ----------------------------------------------*/
/* 04 - Xtras
/* ----------------------------------------------*/

.right {
	float: right;
}

img.shadow {
	margin: 5px 0 10px 0;
	
	-moz-box-shadow: 1px 1px 10px #333;
	-webkit-box-shadow: 1px 1px 10px #333;
	box-shadow: 1px 1px 10px #333;
}

::-moz-selection {
	background: #333;
	color: #FFF;
}

::selection {
	background: #333;
	color: #FFF;
}