/*
header.css

CSS for Babaroga website header section
This defines the CSS that will be global to all pages on the Babaroga website

Created by Brian Smith
*/

/********************/
/* Global formatting */
/********************/
html, body, h1, h2, h3, h4
{
	margin: 0px;
	padding: 0px;
	color: #DBDBDB;
	list-style: none;
}

h1 img
{
	display: block;
}

img
{
	border: 0px;
}

p
{
	margin: 0.5em 0px;
}


/*************/
/* Formatting */
/*************/
a
{
	color: white;
	text-decoration: none;
}

a:hover
{
	color: #eee;
	text-decoration: underline;
}

body
{
	background: #7D1007;
	font: 11px arial, sans-serif;
}

.borderLeft
{
	position: relative;		/*Trick IE into floating correctly*/
	float: left;
}

.borderRight
{
	position: relative;		/*Trick IE into floating correctly*/
	float: right;
}

#header
{
	position:absolute;
	left: 0;
	top: 0;
	background: 0px 0px url(images/header_bg.jpg) repeat-x;
	height: 284px;
	width: 100%;
}

#header #left-person
{
	background: 0px 0px url(images/person-left.jpg) no-repeat;
	height: 590px;
	width: 282px;
}

#home
{
	position: absolute;
	top: 69px;
	left: 16px;
	width: 205px;
	height: 210px;
}

#home a img
{
	width: 205px;
	height: 210px;
}

#logoutButton
{
	z-index: 1;
	position: absolute;
	width: 625px;
	text-align: right;
	left: 280px;
	top: 15px;
}

#nav
{
	font-size: 14px;
	position: relative;
	margin-top: 58px;
}

#nav a
{
	font-weight: normal;
}

#nav .borderLeft 
{
	background: top left url(images/nav_left.png) no-repeat;
	width: 19px;
	height: 51px;
}

#nav .borderMiddle
{
	background: top left url(images/nav_bg.png) repeat-x;
	padding: 6px 0px 15px 0px;
	height: 51px;
	margin-right: 19px;
	margin-left: 19px;
}

#nav .borderRight
{
	background: top right url(images/nav_right.png) no-repeat;
	width: 33px;
	height: 56px;
}

#nav .borderMiddle table
{
	font-size: 15px;
	color: white;
	font-weight: normal;
	margin: auto;
	text-align: center;
}

#pageContent
{
	position: relative;
	left: 280px;
	width: 640px;
}