/* Bathroom Emporium main layout CSS
21st September 2009 */

body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color:#FFFBE7;
}
body a:link {text-decoration: none;}
body a:visited {text-decoration: none;}
body a:hover {text-decoration: none;}
body a:active {text-decoration: none;}

/************** header tag styles **************/

h1{
	font-size: 160%;
	font-weight:bold;
	margin: 0px;
	padding: 0px;
	text-align: center;
	color:#BF0202;
}

h2{
	font-size: 130%;
	font-weight:bold;
	margin: 0px;
	padding: 0px;
	text-align:center;
	color:#BF0202;
}

h3{
	font-size: 120%;
 	font-weight:bold;
	margin: 0;
	padding: 10px 0px 5px 0px;
	color:#BF0202;
}

h4{
	font-size: 100%;
 	font-weight:normal;
	margin: 0px;
	padding: 0px;
}

h5{
	font-size: 95%;
	font-style:italic;
	margin: 0px;
	padding: 0px;
	color:#BF0202;
}

h6{
	font-size: 100%;
	margin: 0px 0px -8px 0px;
	padding: 10px 0px 5px 0px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	color:#BF0202;
}
/* Set colour as red when bold*/
strong{color:#BF0202;
}
/* Define the header area */
#main_background {
	background-color:#E6E6E6;	
	width:100%;
	margin:0;
	padding:0;
}
#headerArea {
	background: #FFFFFF url(images/content_background.jpg) repeat-y top left;
	height:200px;
	width:1050px;
	margin:0 auto;
	padding:0;
}

/* Navigation menu definition*/
#menu_background{
	background:#A10327 url(images/menu_background.gif) repeat-x top left;
	width:100%;
	padding-bottom: 10px;
}
#menu_base{background:#000;
		   height: 5px;
		   position: relative;
}
#menu{
	font-size:x-small;
	text-transform:uppercase;
	font-weight:bold;
	text-align:left;
	width:1050px;
	margin:0 auto;
	padding-bottom:10px;
}
#menu ul {margin:0;
	      padding:10px 0 10px 30px;
	  	  width:100%;
}
#menu li {list-style:none;
	display:inline;
	margin:0;
	padding:0;
	float:left;
}
#menu a{
	display:block;
	margin:0;
	padding:0;
	color:#000000;
	text-decoration:none;
	letter-spacing:1px;
	padding:10px;
	border-left: 1px solid #751306;
	border-right: 1px solid #fc0000;
}
/* Don't display the left and right borders for the first and last respectivly */
#menu a.first{
	border-left:none;
}
#menu a.last{
	border-right:none;
}
#menu a.last_item_selected{color:#ffffff;
                            border-right:none;}
#menu a:hover{background:#6D0019	;color:#ffffff;}
#menu .item_selected a{color:#ffffff;}

/* Clear the floats */
.clear_float {clear: both;
			  display: block;
			  margin: 0; 
			  padding: 0;
			  line-height: 0px; 
			  font-size: 1px;
}

/*Define the content section inclduing it's background */
#content_background{line-height:1.8em;
					background:#FFFFFF url(images/content_background.jpg) repeat-y top left;
					margin: 0 auto;
					width: 1050px;
}
/*Define the container for the content itself */
#content{padding: 10px 50px 10px 50px;
         margin:0;
		 text-align:justify;
}

/* Define the footer section*/
#footer{clear:both;
	    background: #FFFBE7 url(images/footer_top_background.jpg) repeat-x top left;
		color:#000000;
		font-size:x-small;
		text-align:center;
}
/*Define the container for the information within the footer */
.footer_container{width: 1050px;
				  padding: 10px 50px 20px 50px;
				  margin: 0 auto;
}

/*Set-up the copyright banner */
.copyright{
	color: #000000; 
	font-size: x-small;
	text-align: center;
	padding: 10px 0 10px 0;
	margin: 0;
}

/* Float the last updated text to the left under the base of the container background, add a left margin so that it lines up under the edge of the container. This is outside of the container margins.*/
.last_updated{text-align:left;
			  font-size:xx-small;
			  float:left;
			  padding:10px 10px 0 45px;
			  margin:0;
}

/* Float the powered by to the right under the base of the container background, add a right margin so that it lines up under the edge of the container. This is outside of the container margins.*/
.poweredby{float:right;
			  padding:0 45px 0 10px;
			  margin:0;
} 
/* class to define the top of the page text */
.totp{clear:both;
	color: #000000;
	font-size: xx-small;
	padding: 20px 40px 10px 40px;
	text-align: right;
	font-style: italic;
}

.row{clear:both;
     margin:20px 0 10px 0;
	 padding:0 0 30px 0;
	 background:url(images/be_row_separator.jpg) no-repeat bottom center;
}

/*Place a image in the centre */
.image_centre img{margin-left:auto;
				  margin-right:auto;
				  display:block;
}
