/*
Title:          screen.css - rubytreasures.com/rubidium
Author:         Aaron Schaefer <aaron@rubytreasures.com>
Created:        Tue 19 Dec 2006
Last Modified:  Sat 23 Dec 2006
*/

@import url( base.css );

/*
	SITE COLOR PALETTE

	#25B6FC - Blue
	#282828 - Dark Gray
	#A9A9A9 - Light Gray
	#FFFFDD - Pale Yellow
	#A81230 - Ruby Red
*/

/* -----( STRUCTURE )-------------------------------------------------------- */

html {
	background: url( ../images/html-bg.png ) no-repeat fixed bottom right;
	height: 100%;
	}

body {
	background: url( ../images/body-bg.png ) repeat-x top right;
	font-family: Verdana, Helvetica, Arial, sans-serif; 
	font-size: 62.5%;
	height: 100%;
	}

#container {
	min-height: 100%;
	margin: 0 auto;
	position: relative;
	width: 870px;
	}
* html #container { height: 100%; }  /* IE hack for min-height */



/* -----( HEADER )----------------------------------------------------------- */

#header {
	padding-top: 58px;
	}

#header img {
	left: 132px;
	position: absolute;
	top: 91px;
	}

#header h1 :link,
#header h1 :visited {
	background: url( ../images/rubidium.png ) no-repeat 0 0;
	height: 36px;
	display: block;
	left: 1px;
	position: absolute;
	top: 204px;
	width: 206px;
	}

#header span {
	display: none;
	}

#header :link,
#header :visited {
	border-bottom: none;
	}



/* -----( NAVIGATION )------------------------------------------------------- */

#navigation {
	position: absolute;
	top: 284px;
	width: 207px;
	}

#navigation ul {
	list-style: none;
	}

#navigation ul li {
	color: #A81230;
	font: normal 1.6em/1.2 Tahoma, Verdana, Helvetica, Arial, sans-serif;
	margin: 16px 0;
	text-align: right;
	}

#navigation :link:focus,
#navigation :visited:focus {
	border-bottom: 1px solid #681D2C;
	color: #681D2C;
	}
#navigation :link,
#navigation :visited {
	color: #A81230;
	border-bottom: none;
	}
#navigation :link:hover,
#navigation :visited:hover {
	border-bottom: 1px solid #681D2C;
	color: #681D2C;
	}
#navigation :link:active,
#navigation :visited:active {
	border-bottom: 1px solid #681D2C;
	color: #681D2C;
	}

#navigation :link.current,
#navigation :visited.current {
	color: #681D2C;
	border-bottom: none;
	font-weight: bold;
	}



/* -----( CONTENT )---------------------------------------------------------- */

#content {
	background: url( ../images/content-bg.png ) repeat-y 0 48px;
	padding: 76px 0 16px 272px;
	margin-bottom: 80px;
	}

#content h2 {
	color: #A81230;
	font: bold 3.2em/1.2 "Trebuchet MS", Helvetica, Arial, sans-serif;
	margin: 0.5em 0;
	}

#content h3 {
	color: #A9A9A9;
	font: bold 2.4em/1.2 "Trebuchet MS", Helvetica, Arial, sans-serif;
	margin: 0.5em 0 -0.5em;
	}

#content pre {
	color: #FFF;
	background-color: #282828;
	border: 1px solid #A9A9A9;
	font-size: 12px;
	margin: -0.5em 0 0 2em;
	overflow: auto;
	padding: 0.25em 0.5em;
	}

#content #tagline {
	color: #A81230;
	font: normal 2.1em/1.2 "Trebuchet MS", Helvetica, Arial, sans-serif;
	margin-top: 27px;
	}

/* Focus Box ---------------------- */

.focus {
	background-color: #AFE4FE;
	border: 5px solid #66CCFD;
	margin: -12px 64px 16px 0;
	padding: 12px 16px;
	}

.focus:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
* html .focus { height: 1%; }  /* IE hack to fix clearing */

.focus p {
	color: #024F73;
	font: normal 2.1em/1.45 Verdana, Helvetica, Arial, sans-serif; 
	margin: 0;
	}



/* -----( FOOTER )----------------------------------------------------------- */

#footer {
	background-color: #A81230;
	border-top: 3px solid #282828;
	height: 2.9em;
	margin-top: -32px;
	position: relative;
	}

#footer p {
	color: #A9A9A9;
	display: inline;  /* IE hack for double-margin bug */
	float: right;
	font: 1.1em/1.6em "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	margin: 0 16px;
	}

#footer ul {
	list-style: none;
	padding: 5px 0 0 8px;
	}

#footer ul li {
	border-right: 1px solid #999;
	float: left;
	}

#footer ul li.last {
	border-right: none;
	}

#footer ul li :link,
#footer ul li :visited {
	display: block;
	font: 1.1em/1.6em "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
	padding: 0 8px;
	text-align: center;
	}

#footer :link:focus,
#footer :visited:focus {
	color: #FFF;
	}
#footer :link,
#footer :visited {
	border-bottom: none;
	color: #CCC;
	}
#footer :link:hover,
#footer :visited:hover {
	color: #FFF;
	}
#footer :link:active,
#footer :visited:active {
	color: #FFF;
	}



/* -----( MISCELLANEOUS )---------------------------------------------------- */

.right {
	float: right;
	}

#skiplink {
   	margin: 0;
	}

#skiplink :link,
#skiplink :visited {
	left: 36px;
	height: 0;
	overflow: hidden;
	position: absolute;
	top: 24px;
	width: 0;
	z-index: 1;
	}
#skiplink :active,
#skiplink :focus {
	background: #FFC;
	border: 5px solid #A81230;
	color: #282828;
	font: bold 1em sans-serif;
	height: auto;
	overflow: visible;
	padding: 0.5em;
	text-decoration: underline;
	width: auto;
	}

:link.current,
:visited.current {
	cursor: default;
	}

