/* background image taken from: http://www.grsites.com/ */

/*** Print styles that only show when page is printed ***/
@media print{

	.print {
		display: block;
	}

	.screen {
		display: none;
	}

	acronym {
		border-bottom: none;
	}

	h1 {
		background-color: #FFFFFF;
		color: #000000;
	}

	.content {
		font-size: 12pt;
		width: 800px;
	}

/* end print styles */
}


/*** Screen styles that only show when page is on screen ***/
@media screen{

	.print {
		display: none;
	}

	acronym {
		cursor: help;
		border-bottom: 1px dotted #000000;
	}

	.content {
		width: 630px;
	}
}

/*******************************************************************/
/* General global tags */

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Trebuchet MS", helvetica, arial, sans-serif;
	font-size: 13px;
	background-image: url('../img/metallic.jpg');
	background-repeat: repeat;
	background-position: top left;
}

img {
	border: none;
}

/* blue line */
hr {
	height:0px; 
    border:0px; 
    border-top: 1px solid #17257D; 
	padding-bottom: 1em;
	clear: both;
}

/* spaced lists */
ul.spaced,
ul.spaced li {
	padding-bottom: 1em;
}

/*******************************************************************/
/* Anchors */

/* Dark blue link color*/
a, .linkcolor{
	color: #17257D;
}

a {
	text-decoration: underline;
}

a:hover {
	color: #DC143C; /* Crimson */
	text-decoration: underline;
}

/*this avoids having image replacement sections display a dotted outline*/
a:focus {
	outline-style: none;
}

/*******************************************************************/
/* theme colors */

h1,
#footer {
	color: #000000;
	background-color: #E2D820;
}

/*******************************************************************/
/* headers */

h1{
	margin: 5px -10px;
	padding-left: 10px;
}

h2{
	margin: 5px -2px;
	padding: 2px;
	border-bottom: 1px solid #000000;
}

/*******************************************************************/
/* wrappers for centering and background images */

#header_wrapper{
	background-image: url('../img/shadow_10px_down.png');
	background-repeat: repeat-x;
	background-position: bottom left;
}

#header_wrapper,
#outer{
	margin: auto;
	padding: 0;
	text-align: center;
}

#header{
	margin: auto;
	padding: 0;
	height: 150px;
	min-width: 920px;
	max-width: 960px;
	background-image: url('../img/header.png');
	background-repeat: no-repeat;
	background-position: bottom center;
}

#outer{
	background-image: url('../img/shadow_940px.png');
	background-repeat: repeat-y;
	background-position: top center;
}

#inner{
	margin: auto;
	padding: 0;
	width: 920px;
	text-align: left;
	padding-bottom: 5px;
	background-color: #FFFFFF;
	background-image: url('../img/shadow_10px_down.png');
	background-repeat: repeat-x;
	background-position: top left;
}

.content,
.sidebar {
	margin: 0 5px;
	float: left;
}

.sidebar {
	padding-top: 20px;
	padding-left: 20px;
	width: 150px;
	height: 200px;
}

.content {
	padding: 20px 45px;
	text-align: left;
	float: left;
}

#toc,
#footer,
.content p,
.content li {
	line-height: 1.5em;
}

#footer{
	margin: 0 5px;
	padding: 5px 2px;
	font-size: 8pt;
	text-align: center;
}

#footer a,
#footer a:hover {
	color: #17257D;
}

/*******************************************************************/
/* sidebar menu */

div#toc a {
	width: 150px;
	height: 50px;
	background-image: url('../img/menu.png');
	background-repeat: no-repeat;
	display: block;
}

a#menu_intro{
	background-position: 0px 0px;
}

a#menu_intro:hover{
	background-position: -150px 0px;
}

a#menu_car{
	background-position: 0px -50px;
}

a#menu_car:hover{
	background-position: -150px -50px;
}

a#menu_team{
	background-position: 0px -100px;
}

a#menu_team:hover{
	background-position: -150px -100px;
}

a#menu_media{
	background-position: 0px -150px;
}

a#menu_media:hover{
	background-position: -150px -150px;
}


/*******************************************************************/
/* My Classes */

.off-left {
	position: absolute;
	left: -999px;
	width: 900px;
}

.center {
	text-align: center;
}

.clear {
	clear: both;
}

.navyblue {
	color: #17257D;
}

.crimson {
	color: #DC143C;
}

.clickable {
	cursor: pointer;
}

.large {
	font-size: 12pt;
}

/* Hide from user, but screen readers and text-only browsers can "see" this */
#preloader {
	position: absolute;
	top: -1000px;
}

.two-column {
	float: left;
	width: 400px;
	padding-right: 45px;
}