/*----------------------------------------------------------
This  is the main stylesheet for structural and layout changes
------------------------------------------------------------*/

/*----------------------------------------------------------

[Table of contents]

0.0 Imports
	0.1 Reset
	0.2 type
	0.3 style
	0.4 forms

1.0 Body
	1.1. Wrapper / #wrapper
	1.2. Container / #container

2.0 Header / #header

3.0 Content / #content
	3.1. Column 1 / #column_1
	3.2. Column 2 / #column_2
	3.3. Column 3 / #column_3
	3.4. Sidebar / #sidebar

4.0 Footer / #footer

5.0 Miscellaneous
	5.1 - Miscellaneous - Sidebox
	5.2 - Miscellaneous - Header Info Box
	5.3 - Miscellaneous - The styles for the wizard/steps
6.0 Tables

7.0 Recycle bin (old HTML or disable css for testing)

------------------------------------------------------------*/

/* 0.0 - Imports
------------------------------------------------------------*/
	
	@import url("style_type.css");
	@import url("style_tools.css");
	@import url("style_forms.css");
	
	@import url("reset.css");
	
	@import url("browser_ie6.css");
	@import url("browser_ie7.css");
	




/* 1.0 - Body
------------------------------------------------------------*/
	

	
	body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #333333;
	margin: 0px;
	padding-bottom: 100px;
}

/* 1.1 - Body / Wrapper
------------------------------------------------------------*/

	#wrapper {  }

/* 1.2 - Body / Container
------------------------------------------------------------*/

	#container {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
	margin-top: 17px;
	border: 10px solid #F2EADB;
}

/* 2.0 - Header
------------------------------------------------------------*/
	
#header {
	height: 100px;
	margin-right: 12px;
	margin-left: 12px;
}
#header_top {
	height: 36px;
	background-image: url(../images/bg_headerblue.jpg);
	background-repeat: repeat-x;
	padding-top: 8px;

	padding-left: 7px;
}

#logo {
	margin-top: 15px;
	margin-left: 0px;
}


	

/* 2.1 - Header / Secondary Navigation
------------------------------------------------------------*/

#secondary_navigation {
	list-style-type: none;
	display: block;
	height: 35px;
	overflow: hidden;

	margin-bottom: 0px;

	padding: 0px;

}
#secondary_navigation li{
	display: block;
	float:left;
}
#secondary_navigation li a{
	display: block;
	text-decoration: none;
	color: #999999;
	float: left;
	text-align: center;
	font-size: 12px;
	height: 32px;
	line-height: 32px;
	padding-right: 10px;
	padding-left: 10px;
	font-weight: normal;
}
#secondary_navigation li a:hover{
	color: #FFF;
	background-color: #282828;
}


/* 2.2 - Header / Primary Navigation
------------------------------------------------------------*/

#primary_navigation {
	list-style-type: none;
	display: block;
	height: 60px;
	overflow: hidden;
	margin-right: 12px;
	margin-bottom: 0px;
	margin-left: 12px;
	clear: both;
	background-color: #333333;
	padding: 0px;
	background-image: url(../images/nav_bg.jpg);
}
#primary_navigation .last{
	background-image: none;
	padding-right: 10px;
		padding-right: 10px;
}



#primary_navigation li{float: left;}
#primary_navigation li a{
	display: block;
	text-decoration: none;
	color: #CCC;
	float: left;
	text-align: left;
	font-size: 15px;
	height: 60px;
	padding-top: 12px;
	padding-right: 7px;
	padding-left: 7px;
	font-weight: normal;
	line-height: 16px;
	background-image: url(../images/nav_divider.jpg);
	background-repeat: no-repeat;
	background-position: right 10px;
	margin: 0px;
}
.uefooter {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	color: #FFFFFF;
}

.uefooter a{
	color: #FFFFFF;
}



#primary_navigation li a:hover{
	color: #FFF;
	background-color: #282828;
}

#primary_navigation li a span{
	font-size: 10px;
	display: block;
	color: #818181;
	padding-top: 3px;
	text-transform: lowercase;
		line-height: 12px;
}

	
#home .home, #about .about, #business .business, #people .people, #contact .contact, #news .news {color: #000; font-weight: bold; background-color: #FFF;}
#home .home:hover , #about .about:hover , #business .business:hover , #people .people:hover , #contact .contact:hover , #news .news:hover  {color: #000;}


/* 2.2 - Header / Image Container
------------------------------------------------------------*/

	#image_container {
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: 12px;
	margin-bottom: 20px;
	margin-right: 12px;
	margin-left: 12px;
	padding-right: 0px;
	padding-left: 0px;
	padding-top: 0px;
	display: block;
	height:600px;
}

#image_container h1{
	font-size: 28px;
	color: #CCCCCC;
	font-weight: normal;
	padding-bottom: 23px;

}

#image_container h2{
	font-size: 28px;
	color: #CCCCCC;
	font-weight: normal;
	padding-bottom: 23px;

}

#image_container p{
	color: #999999;
	padding-bottom: 15px;
	line-height: 20px;

}

/* 3.0 - Content
------------------------------------------------------------*/

#content { width: 960px; margin-top: 0px; margin-right: 0px; margin-bottom: 60px; margin-left: 10px; 
}




/* 3.1 - Content / Column 1
------------------------------------------------------------*/

#column_1 {
	width: 980px;
	float: left;
	background-image: url(../images/home_column1.jpg);
	background-repeat: no-repeat;
	
	margin: 0px;
	padding-right: 30px;
}




/* 3.2 - Content / Column 2
------------------------------------------------------------*/
#column_2 {
	width: 305px;
	float: left;
	margin-right: 13px;
	display: none;
}

/* 3.3 - Content / Column 3
------------------------------------------------------------*/
#column_3 { width: 300px; float: left; background-image: url(../images/home_column3.jpg); background-repeat: no-repeat; }

/* 3.4 - Content / Column 4
------------------------------------------------------------*/


/* 3.5 - Content / Form Styling
------------------------------------------------------------*/

#asp_form { margin: 0 0 30px 0px; }
#asp_form label { margin-right: 5px; display:inline-block; }
#asp_form span { display: block; padding: 0; margin: 0; }
#asp_form li { display: block; display: inline-table;  width: 100%;}
#asp_form li li {  }
#asp_form li.sidebyside { margin: 5px 0 5px 0; }
#asp_form .validationsummary_holder ul { margin: 10px 0 10px 20px; line-height: 1.4em;  }
#content #asp_form #sent strong { color: #fff; }
#asp_form .formButton { clear:both; margin: 40px 0 0 0; }

#asp_form .no_block { position: relative; float: right; width: 60%; }
#asp_form .no_block label { display: block; line-height: 18px; margin:0; padding:0;}
#asp_form .no_block input { clear: left; display: block; float: left;}

#sent {
	color: #FFFFFF;
	background-color: #333333;
	padding: 8px;
	margin-right: 50px;
	margin-left: 25px;
	text-align:center;
}

#sent p{
	color: #FFFFFF;
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 1.1em;
}

#sent strong{
	font-size: 1.5em;
}

.formTxtBox{
	width: 95%;
	height: 20px;
	background-color: #EFE9EA;
	padding: 2px;
	margin-right: 15px;
	margin-top: 5px;
	border: 1px solid #9AB3B8;
}

.formTxtBoxSm{
	height: 20px;
	background-color: #EFE9EA;
	padding: 2px;
	margin-left: 0px;
	margin-top: 5px;
	border: 1px solid #9AB3B8;
}

.formTxtBoxMulti{
	width: 95%;
	height: 150px;
	background-image: url(../images/formfield-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #9AB3B8;
	background-color: #FEFEFE;
	margin-top: 5px;
}
label {
	display: block;
	font-weight: normal;
	margin-bottom: 2px;
	margin-left: 0px;

	color: #666666;

	margin-top: 2px;
}

#column_2 label {
	color: #FFFFFF;
	padding: 0px!important;
	margin-top: 10px!important;
	margin-right: 0px!important;
	margin-bottom: 0px!important;
	margin-left: 0px!important;
}



fieldset {
	padding: 10px;
	background-color: #FFFFFF;
	margin-right: 50px;
	margin-left: 25px;
	display: block;
	margin-top: 25px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#column1 fieldset p {
	margin-left: 0px;
}
.formButton {
	color: #FFFFFF;
	width: 96%;
	margin-top: 15px;
	display: block;
	font-size: 1em;
	font-weight: bold;
	font-family: "Trebuchet MS", Verdana, Helvetica, sans-serif;
	height: 34px;
	margin-right: auto;
	background-image: url(../images/formbutton-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #333333;
	margin-left: 0;
}

.formButton2 {
	color: #FFFFFF;
	width: 80%;
	margin-top: 15px;
	display: block;
	font-size: 1em;
	font-weight: bold;
	font-family: "Trebuchet MS", Verdana, Helvetica, sans-serif;
	height: 34px;
	margin-right: auto;
	background-image: url(../images/formbutton-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #CCCCCC;
	margin-left: auto;
}

.asp_form label {
	color: #000;
	width: 100%!important;

}

.asp_form .formTxtBox{
	width: 90%;
	height: 20px;
	background-color: #EFE9EA;
	padding: 2px;
	margin-right: 15px;
	margin-top: 5px;
	background-image: url(../images/formfield-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border: 1px solid #9AB3B8;
}

.asp_form .formTxtBoxMulti{
	width: 90%;
	height: 150px;
	background-image: url(../images/formfield-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #9AB3B8;
	background-color: #FEFEFE;
	margin-top: 5px;
}

.asp_form .formButton {
	color: #FFFFFF;
	width: 85%;
	margin-top: 15px;
	display: block;
	font-size: 1em;
	font-weight: bold;
	font-family: "Trebuchet MS", Verdana, Helvetica, sans-serif;
	height: 34px;
	background-image: url(../images/formbutton-background.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #349A46;
	margin-left: 35px;
	margin-right: auto;
}


.asp_form li {
	background-image: none!important;
	background: none!important;
	list-style-type: none!important;
	list-style-image: none!important;
}


/* 4.0 - Footer
------------------------------------------------------------*/

.footer_link1 {
	display: block;
	background-color: #666666;
	margin-bottom: 4px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 25px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 18px;
	font-weight: normal;
	font-family:"Trebuchet MS";
	background-image:url(../images/newsletter.jpg);
	background-repeat:no-repeat;
	clear: both;
	margin: 20px 0 5px 0;
}

.footer_link1:hover {
	background-color: #7c7c7c;
	background-position: 0px -62px;
	}

.footer_link1 span {
	font-size: 14px;
	font-weight: normal;
	font-family:"Trebuchet MS";
	color:#CCCCCC;
}

.footer_link2 {
	display: block;
	background-color: #999999;
	margin-bottom: 4px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 25px;
	color: #FFFFFF;
	text-decoration: none;
	font-size: 18px;
	font-weight: normal;
	font-family:"Trebuchet MS";
	background-image:url(../images/offers.jpg);
	background-repeat:no-repeat;
}

.footer_link2:hover {
	background-color: #7c7c7c;
	background-position: 0px -62px;}

.footer_link2 span {
	font-size: 14px;
	font-weight: normal;
	font-family:"Trebuchet MS";
	color:#CCCCCC;
}


#footer { 
	height: 168px; 
	clear: both; 
	background-color: #ffffff; 
	padding: 15px; 
	background-image: url(../images/footer.jpg); 
	background-repeat: repeat-x; 
	background-position: right top;
	}
	
#footer h4{ 
	font-family:"Trebuchet MS";
	font-size:18px;
	color:#FFFFFF;
	font-weight:normal;
	margin-bottom:20px;
	}
	
#footer .footercol1 p{ 
	font-family:"Trebuchet MS";
	font-size:14px;
	color: #333333;
	font-weight:normal;
	margin-left:10px;
	}
	
#footer	.footercol1	{
	float:left;
	width:260px;
	}

#footer	.footercol2	{
	float:left;
	width:180px;
	padding-left:20px;
	padding-right:20px;
	}

#footer	.footercol3	{
	float:left;
	width:220px;
	padding-left:20px;
	}
	
#footer	ul	{
	padding-left:20px;
	}

#footer	li	{
	list-style-image: url(../images/bullet.gif);
	font-family:"Trebuchet MS";
	font-size:12px;
	color:#666666;
	line-height:20px;
	}
	
	
	
	

/* 5.0 - Miscellaneous
------------------------------------------------------------*/

/* 5.1 - Miscellaneous - Sidebox
------------------------------------------------------------*/

#content .sidebox {
	background-image: url(../images/sidebox_middle.jpg);
	background-repeat: repeat-y;
	width: 237px;
	margin-bottom: 12px;
}



.button {
	display: block;
	height: 30px;
	width: 100px;
	line-height: 30px;
	color: #999999;
	text-align: center;

	background-image: url(../images/sidebox_button.gif);
	background-repeat: no-repeat;

	font-size: 12px;
	text-decoration: none;
	margin-top: 10px;
}

#content .sidebox .button {
	color: #999999;
	float: right;
		margin-left: 8px;

}

#container .button:hover {
	color: #FFFFFF;

}

#content .sidebox_footer {
	background-image: url(../images/sidebox_footer.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	clear: both;
	height: 15px;

}


#content .sidebox p{
	color: #999;
	margin-top: 0px;
	margin-bottom: 2px;
	display: block;
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 12px;
	padding-bottom: 12px;
	margin-right: 2px;
	margin-left: 2px;
	background-image: url(../images/gradient_grey_to_white.jpg);
	background-repeat: repeat-x;
	font-size: 11px;
}

#content .sidebox p:hover{
	background-color: #DDDDDD;
	background-image: none;
	color: #333333;
}


#content .sidebox h3{
	color: #999999;
	font-size: 23px;
	background-image: url(../images/sidebox_header.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	clear: both;
	width: auto;
	padding-right: 15px;
	padding-left: 15px;
	padding-top: 12px;
	padding-bottom: 12px;
	font-weight: normal;
}


#content .sidebox_2 h3{
	color: #999999;
	margin: 0px!important;
	padding: 0px;
}

#content .sidebox_2 h3 a{
	color: #999999;
	background-image: url(../images/sidebox2_header.jpg);
	margin: 0px!important;
	margin: 0px!important;
	background-repeat: no-repeat;
	display: block;
	padding-top: 10px;
	padding-right: 12px;
	padding-bottom: 0px;
	padding-left: 12px;
	text-decoration: none;
}
#content .sidebox_2 h3 a:hover{
	text-decoration: underline;
	color: #FFFFFF;
}



#content .sidebox_2 .sidebox_footer {
	color: #999999;
	background-image: url(../images/sidebox2_footer.jpg);
}

#content .sidebox_2 {
	color: #999999;
	background-image: url(../images/sidebox2_middle.jpg);
}
#content .sidebox_2 p{
	background-image: url(none);
	font-size: 16px;
	color: #FFFFFF;
	display: block;
	font-weight: normal;

	margin: 0px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
}

#content .sidebox_2 p:hover{
	background-color:transparent;
	color: #FFFFFF;
}


#content strong {
	font-size: 13px;
	color: #333333;
	display: block;
}

.newsletter	{
	margin:20px;
	}

.newsletter	label{
	color:#333333;
	margin-top:5px;
	}
	
.newsletter	input	{
	width:99%;
	}



/* 5.2 - Miscellaneous -  Homebox
------------------------------------------------------------*/

#gallery {
	height: 350px;

}



#content .homebox {
	float: left;
	width: 155px;
	margin-right: 5px;
	margin-bottom: 5px;
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 100px;
	padding-top: 15px;
	padding-right: 130px;
	padding-bottom: 15px;
	padding-left: 15px;
	color: #999999;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
}


 .homebox_1 {
	background-image: url(../images/homebox1.jpg);
	background-repeat: no-repeat;
}

 .homebox_2 {
	background-image: url(../images/homebox2.jpg);
	background-repeat: no-repeat;
}

 .homebox_3 {
	background-image: url(../images/homebox_3.jpg);
	background-repeat: no-repeat;
}

 .homebox_4 {
	background-image: url(../images/homebox1.jpg);
	background-repeat: no-repeat;
}

 .homebox_5 {
	background-image: url(../images/homebox1.jpg);
	background-repeat: no-repeat;
}

 .homebox_6 {
	background-image: url(../images/homebox1.jpg);
	background-repeat: no-repeat;
}




#container .homecol	{
	width:285px;
	float:left;
	margin-right: 18px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-image: url(../images/bg_columns_home.jpg);
	background-repeat: repeat-y;
	background-position: right top;
}

#container .homecol h1	{
	padding-top: 5px;
	font-size: 20px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #E0E0E0;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #666666;
	margin-bottom: 10px;
}

#container .homecol h1 a	{
	color: #666666;
	text-decoration: none;
}

#container .homecol h1 a:hover	{
	color: #666666;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
}

#container .homecol h3 a	{
	color: #666666;
	text-decoration: none;
}

#container .homecol h3 a:hover	{
	color: #666666;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
}

#container .homecol h3	{
	padding-top: 5px;
	font-size: 20px;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #E0E0E0;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #666666;
	margin-bottom: 10px;
}
#container .homecol h3 a	{
	color: #666666;
	text-decoration: none;
}


#container .homecol h3 a:hover	{
	color: #666666;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
}

#container .homecol .intro{
	display: block;
	padding-top: 15px;
	color: #666666;
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 20px;
}

#container .homecol p{
	color: #999999;
	font-size: 12px;
	line-height: 20px;
}

#container .homecol img	{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#content .section {
	background-image: url(../images/section_bg.jpg);
	background-repeat: no-repeat;
	height: 162px;
	width: 292px;
	margin-right: 20px;
	margin-bottom: 20px;
	display: block;
	float: left;
	background-position: left top;
	padding-top: 8px;
	padding-left: 8px;
	font-size: 18px;
	color: #999999;
	font-weight: normal;
	text-decoration: none;
}

#content .section:hover {
	color: #FFFFFF;
	background-position: left -170px;
	background-color: #333333;
}


.homebox strong{
	display: block;
	font-size: 25px;
	font-weight: normal;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 4px;
}




.image_1 {
	background-image: url(../images/header_10.jpg);
}

.image_2 {
	background-image: url(../images/header_storage.jpg);

}

.image_3 {
	background-image: url(../images/header_wardrobes.jpg);

}

.image_4 {
	background-image: url(../images/Sliding-room-dividers-and-partitions/aluminium/main%5D.jpg);

}
.image_5 {
	background-image: url(../images/header_11.jpg);

}
.image_6 {
	background-image: url(../images/Sliding%20Wardrobe-Doors/aspen/main.jpg);

}
.image_7 {
	background-image: url(../images/Sliding%20Wardrobe-Doors/canto/main.jpg);

}
.image_8 {
	background-image: url(../images/Sliding%20Wardrobe-Doors/aluminium/main.jpg);

}
.image_9 {
	background-image: url(../images/header_wardrobes_milan.jpg);

}
.image_10 {
	background-image: url(../images/header_wardrobes_delano.jpg);

}

.image_11 {
	background-image: url(../images/Walk-in%20Wardrobes/oxford/main.jpg);

}


.image_12 {
	background-image: url(../images/header_wardrobes_systemduo.jpg);

}


.image_13 {
	background-image: url(../images/header_wardrobes_delano.jpg);

}


.image_14 {
	background-image: url(../images/header_wardrobes_delano.jpg);

}


.image_15 {
	background-image: url(../images/header_wardrobes_delano.jpg);

}


.image_16 {
	background-image: url(../images/header_brochure.jpg);

}


.image_17 {
	background-image: url(../images/header_shutters.jpg);

}

.image_18 {
	background-image: url(../images/Hinged-Wardrobe-Doors/main.jpg);

}
.image_19 {
	background-image: url(../images/Hinged-Wardrobe-Doors/milan/main.jpg);

}

.image_20 {
	background-image: url(../images/Hinged-Wardrobe-Doors/delano/main.jpg);

}

.image_21 {
	background-image: url(../images/Walk-in%20Wardrobes/header.jpg);

}

.image_22 {
	background-image: url(../images/Wardrobe%20Interiors/header.jpg);

}

.image_23 {
	background-image: url(../images/Walk-in%20Wardrobes/system-duo/header.jpg);

}
.image_24 {
	background-image: url(../images/Shutters/header.jpg);

}
#header_secondary {
	background-color: #333333;
	clear: both;
	height: 32px;

}

#header_secondary_inner {
	width: 960px;
	margin-right: auto;
	margin-left: auto;

}

#header_secondary p {
	float: right;
	font-size: 22px;
	line-height: 32px;
	color: #666666;
	height: 32px;
	font-weight: normal;
}


#header_secondary #search {
	background-color: #999999;
	height: 25px;
	width: 149px;
	float: right;
	background-image: url(../images/search.jpg);
	background-repeat: no-repeat;
	margin-top: 3px;
	margin-left: 20px;
}



#header_links {
	float: right;
	width: 190px;

}
#header_links a {
	float: left;
	height: 75px;
	width: 180px;
	color: #999999;
	padding-top: 20px;
	padding-left: 10px;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: 0px 5px;
}
#header_links a:hover {
	color: #333333;
	background-position: 0px -120px;
}


#header_links strong {
	display:block;
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	color: #333333;
}


.header_link1 {
	background-image: url(../images/header_1.jpg);
}


.header_link2 {
	background-image: url(../images/header_2.jpg);
} 


.header_link3 {
	background-image: url(../images/header_3.jpg);
} 

/* How we work
------------------------------------------------------------*/

.article_entry_divider {
	clear: both;
	display: block;
	height: 3px;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #362527;
	overflow: hidden;
	margin-top: 5px;
	margin-bottom: 5px;
}
.article_entry {
	display: block;
	float: left;

}
.step {
	float: left;
	height: 59px;
	width: 57px;
	display: block;
	background-image: url(../images/greysquare.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-right: 10px;
	margin-bottom: 25px;
	text-align: center;
	line-height: 1.6em;
	padding-top: 10px;
}

.step	p {
	clear: both;
	font-size: 2em;
	font-weight: bold;
	padding-top:8px;
}

.news {
	float: left;
	height: 59px;
	width: 57px;
	display: block;
	background-image: url(../images/greysquare.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin-right: 10px;
	text-align: center;
	padding-top: 2px;
}

#content #column_1 .news p {
	clear: both;
	font-size: 2em;
	font-weight: bold;
	color:#999999;
}

#content #column_1 .news span {
	clear: both;
	font-size: 14px;
	font-weight: bold;
	padding-top:8px;
	color: #CCCCCC;
	margin-bottom:10px;
	line-height:25px;
}


#image_flash	{
	height:600px;
	background-color:#CC33FF;
	width:900px;
	}



/* 6.0 - Tables - Default table styles
------------------------------------------------------------*/
#content table{ width:100%; border-collapse:collapse; margin:1em 0;}
#content table, td{ }
#content caption { color: #0060A6; font-weight: bold; font-size: 14px; padding-bottom: 3px; }
#content th, td{text-align:left;padding:.5em;border:1px solid #fff;}
#content th{ color:#fff; background-color: #333333; background-image: url(../tr_back.gif); background-repeat: repeat-x; }
#content td{ background-color: #E9E9E9; color: #666666; }
#content tr.even td{ background-color: #EFEFEF; }
#content tr.odd td{ background-color: #FFFFFF; }
#content td.empty, tr.odd td.empty, tr.even td.empty{background:#fff;}/* use this if you want to apply different styleing to empty table cells*/

/* 7.0 - Recycle Bin
------------------------------------------------------------*/

/*
Put old css in here:






*/
