/*

 Metro Metals Burnley Ltd.
 All design work and coding (c) Branches Design Ltd
 Study, but please don't copy. Thank you.



Let normalise things...

*/

body, html, p, q, h1, h2, h3, h4, h5, ul, ol, li {
	padding: 0px;
	margin: 0px;
}

li {
	list-style: none;
}

/* Let's get on with things... */

body {
	font-family: "Lucida Grande", Lucida, Verdana, sans-serif;
	background: url(../images/bg_top.png) repeat-x scroll 0 top;
	height: 100%;
}

html {
	background: url(../images/bg_bottom.png) repeat-x scroll 0 bottom;
}

#container {
	width: 760px;
	margin: auto;
}

#branding {
	width: 100%;
	height: 120px;
}

#contact_info {
	padding-top: 5px;;
	float: left;
	width: 260px;
	font-size: 0.85em;
}

#logo {
	float: right;
	width: 336px;
	height: 97px;
	background: url(../images/top_logo.png) scroll;
}

#flash_stage {
	clear: both;
	height: 170px;
}

#header_images {
	clear: both;
	height: 175px;
}

/* Buttons */

#button_container {
	height: 190px;
	margin: auto;
}

#button_container ul {
	padding-left: 3px;	
}

#button_container li {
	float: left;
	display: inline;
}

#vehicle {
	height: 190px;
	width: 250px;
	text-indent: -10000px;
	overflow: hidden;
	background: url(../images/button_vehicle.jpg) top left no-repeat;
	display: block;
}

#vehicle:hover {
	background-position: 0 -190px;
}

#environmental {
	height: 190px;
	width: 250px;
	text-indent: -10000px;
	overflow: hidden;
	background: url(../images/button_environment.jpg) top left no-repeat;
	display: block;
}

#environmental:hover {
	background-position: 0 -190px;
}

#recycling {
	height: 190px;
	width: 250px;
	text-indent: -10000px;
	overflow: hidden;
	background: url(../images/button_recycling.jpg) top left no-repeat;
	display: block;
}

#recycling:hover {
	background-position: 0 -190px;
}

/* Start of main stuff */

#wrapper {
	width: 760px;
}

/* Main content */

#main_content {
	width: 512px;
	float: left;
	line-height: 1.4em;
	padding-left: 10px;
}

#main_content h1 {
	font-size: 1.3em;
	margin-bottom: 0.5em;
	margin-top: 1.2em;
	color: #8fb111;
}

#main_content h2 {
	font-size: 1.2em;
	margin-bottom: 1.0em;
}

#main_content .bold {
	font-weight: bold;
	color: #000000;
}

#main_content p {
	margin-bottom: 1em;
	color: #434343;
}

#main_content a {
	color: #009a44;
}

#main_content a:hover {
	color: white;
	background-color: #009a44;
}

#main_content ul {
	margin-bottom: 1.5em;
}

#main_content li {
	margin-left: 15px;
	list-style: disc;
	color: #434343;
	line-height: 28px;
}

.img_left {
	float: left;
	padding: 3px;
	margin: 5px 10px 10px 5px;
	border: 1px solid green;	
}
.img_left_nob {
	float: left;
	padding-right: 3px;
	margin: 5px;	
}


.img_right {
	float: right;
	padding: 3px;
	margin: 5px;
	border: 1px solid green;	
}

/* Nav */

#main_nav {
	width: 200px;
	float: right;
	padding-right: 10px;
}

#main_nav li {
	list-style: none;
	display: block;
	border-bottom: 1px solid silver;
}

#main_nav a {
	padding: 8px 0px 8px 8px;
	display: block;
	text-decoration: none;
	color: #4C2716;
	background-color: inherit;
}

#main_nav a:hover {
	background-color: #7da600;
	color: white;
}
#credentials {
	float: right;
	padding-right:50px;
	padding-top: 50px;
	border-style: none;
	width:  180px;
	text-align: right;
}
#credentials a{
	border-style: none;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	font-size: 10px;
}
#credentials img{
	border-style: none;
}
#credentials p{
	margin: 0 0 25px;
	text-align: center;
	padding: 0;
}

/* Site info */

#site_info {
	padding-top: 30px;
	clear: both;
	text-align: center;
	font-size: 0.75em;
	border-top:
}

#site_info a {
	color: #7DA600;
}

#site_info a:hover {
	color: white;
	background-color: #7DA600;
}

#site_info ul {
	padding-bottom: 10px;
}

#site_info li {
	display: inline;
}

#site_info li a {
	padding: 0px 5px 0px 5px;
	line-height: 1.7em;
}

/* Extra classes for presentational stuff */

.hide {
	display: none;
}
/*////////popups css/////////*/
a.screen, a.screen:visited {
color:#c00; 
position:relative; 
z-index:1;
}
a.screen b {
position:absolute;
visibility:hidden; /* hide the image */
width:400px; /* give it a width */
height:0; /* no height to solve an Opera bug that 
             makes it selectable when hidden */
border:1px solid #000; /* add a border */
left: 180px; /* position:the image */
top: -420px;
}
a.screen:hover {
text-decoration:none; 
border:0; /* needed for this to work in IE */ 
z-index:1000;
}
a.screen:hover b {
visibility:visible; /* make the image visible */
height:600px; /* now give it a height */
cursor:pointer; /* for IE */
z-index:500; 
}
a.screen:hover b img {
border:0; /* remove the link border */
}