/*
file:			index.css
author:			jasper morgan
date:			20 May 2007
version:		1.0
comments:		Styles that are used for the index (home) page of the website. This css file overrides
				several styles in page.css.
*/

@import "page.css";


/*------------------- Banner ------------------------------
	The coloured banner that contains the name of the page
	and the navigation links.
*/

#banner {
	position: relative;
	width: 100%;
	height: 217px;
	background: #fff url(../img/index/homeBannerStrip.jpg) repeat-x;
	color: #fefefe;
}

#banner #pageName {
	float: left;
	width: 420px;
	height: 200px;
	margin-top: 0px;
	background: url(../img/index/homeBannerImage.jpg) no-repeat;

}

/*The name of the current page aligned to the bottom of the banner.*/
#banner #pageName span {
	position: absolute;
	bottom: 18px;
	left: 10px;
	font-size: 1.8em;
}


/*-----------------------------------------------------------
	The Columns for a Page
-----------------------------------------------------------*/
/*The conten tof a page - the main text and sidebar.*/
#content{
  padding: 0px;

}

/*Used for any Titles within the page content or sidebar.*/
#content h1 {
	font-size: 1.1em;
	border-bottom: 1px solid #c7c7bd;
}

/*The main text in a page.*/
#maintext {
  width:48%;
  float:left;
  background-color: #000;
  margin-bottom: 0px;
}

/*This div is only for providing a gutter between the
  main text and the sidbar.  The right padding creates the effect.*/
#maintext div {  
  xheight: 300px;
	border-right:20px solid #fff;
	background-color: #645E57;
	text-align: center;
}

#maintext img {
	border: 0px;
}


#breadcrumbs {
	font-size: 0.9em;
	color: #aea29d; 
	font-weight: normal;
	padding-bottom: 18px;
}

#breadcrumbs a {
	font-weight: bold;
	color: #aea29d;
}


#sidebar{
  width:48%;
  float:right;
  padding-top: 8px !important;
  padding-top: 30px;
  padding-right: 20px;
/*  font-size: 1.2em;*/
}

#sidebar p {
font-size: 1.1em;
letter-spacing: .02em;
}

/*-----------------------------------------------------------
	Content Styles within a Page
-----------------------------------------------------------*/
/*Positions an image to the left of a piece of text. The text wraps under the image.*/
.image-left{
	float: left;
	margin: 0 10px 0 0;
}

/*Positions an image to the right of a piece of text. The text wraps under the image.*/
.image-right {
	float: right;
	margin: 0 0 0 10px;
}

#content p {
	text-align: justify;
	line-height: 1.4;
}

img {
	border: 1px solid #2f2f2f;
}