/* Formatting CSS 
This section defines formatting text in the example XHTML page.
It is placed as a separate page from the CSS page that handles the layout of the content.
*/

/*
Body style. The styles here will apply to all content., unless overridden by another style.
A good way to do basic formatting*/
body 
{
    color: #666666;  /* Grey */ 
	background-color: #FFFFFF; /* White */ 
	font: 90% arial, verdana, helvetica, sans-serif;
	background-image: url(../images/tile2.jpg);/* The green fabric behind the container box */  
	background-repeat: repeat;
	margin: 20px;
}

/*Main Heading:. Using a h1 means it will still be a header if CSS fails*/
h1
{
    margin: 10px 0px 0px 0px;
	padding: 0px;
	font-size: 1.4em;
	
}

/*Subheading: Using a h2 means it will still be a header if CSS fails*/
h2
{
    font: bold 0.9em/1.0em arial, verdana, helvetica, sans-serif;
	margin: 0px 0px 5px 0px;
	padding: 0px;
}

/*Paragraph style. Sets font size and padding/margins for text content. */
p
{
    font: 0.8em arial, verdana, helvetica, sans-serif;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

ul {font: 0.8em arial, verdana, helvetica, sans-serif; }

.floatleft
{
	float: left;
	padding: 0px 7px 7px 0px;
}

table
{
	border: 0px;
	border-collapse: collapse; 
}


/*Link styles. Sets basic link parameters, then uses cascading and pseudo classes*/

p a /*Formatting for the links in the paragraph content */ 
{
    font-family: arial, verdana, helvetica, sans-serif;
	text-decoration: none;
	color:#002BC0;/*blue */ 
}

p a:link {color: #002BC0;} /*blue */ 

p a:visited { color: purple;}

p a:hover {text-decoration:underline;}

.content a /*Formatting for the links in the content area*/ 
{
    font-family: arial, verdana, helvetica, sans-serif;
	text-decoration: none;
	color:#002BC0; /*blue */ 
}

.content a:link {color: #002BC0;} /*blue */ 

.content a:visited { color: purple;}

.content a:hover {text-decoration:underline;}

.footer a /*Formatting for the links in the footer (copyright and privacy)*/ 
{
    font-family: arial, verdana, helvetica, sans-serif;
	text-decoration: none;
	color:#002BC0; /*blue */  
}

.footer a:link {color: #002BC0;} /*blue */ 

.footer a:visited { color: purple;}

.footer a:hover {text-decoration:underline;}



.services a /*Formatting for the links in the LH nav bars:this is forthe title of the top one called "services"*/
{
    
	font-family: arial, verdana, helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}

.services a:link {color: white;}
.services a:visited {color: white;}
.services a:hover {color:lightsteelblue;} 

.serviceslist a /*Formatting for the links in the LH nav bars:this is forthe links of "services"*/
{
    
	font-family: arial, verdana, helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}

.serviceslist a:link {color:#5b7584;} 
.serviceslist a:visited {color: #5b7584;}
.serviceslist a:hover {color:#B0C4DE;} /*lightsteelblue*/

.industries a /*Formatting for the links in the LH nav bars:this is forthe title of the top one called "industries"*/
{
    
	font-family: arial, verdana, helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}

.industries a:link {color: white;}
.industries a:visited {color: white;}
.industries a:hover {color: aquamarine;}

.industrieslist a /*Formatting for the links in the LH nav bars:this is forthe links of "industries"*/
{
    
	font-family: arial, verdana, helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
}

.industrieslist a:link {color:#459a87;} 
.industrieslist a:visited {color: #459a87;}
.industrieslist a:hover {color: aquamarine;}






