
/* remove the Gould Stainless elements we don't want to print */
#nav, #footer, #copyright, .whisker, .email, .image-border{
	display: none;
}

/* get rid of unnecessary backgrounds */
body,
#header,
#column-wrapper,
#main-content,
#nav {
	background: none;   
	/* filter:none;   CSS validator doesn't like this */
}

/* change the font and size to be print friendly */
body {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	color: #000;
}

ul {
	list-style: none;
	margin-left: 0;
	}
	
li a{
	text-decoration: none;
	color:#333;
	}
	
#secondary-content .contact-info h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	font-weight: bold;
	margin: 0;
	}
	
#secondary-content .contact-info h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	font-weight: normal;
	}
	
h5 {
	text-align: right;
	font-size: 12pt;
	font-weight: bold;
	margin-right: 20px;
	}
	


/*let the container take the available room */
#container {
	width: auto;
}

/*then center the both columns of content within the container */
#column-wrapper {
	margin: 0;
	width: 100%;
}

#secondary-content {
	float: left;
	width: 165px;
	}

#main-content {
	margin-left: 165px; /* equals the width of the secondary-content column which is floated left */
	border-left: solid 1px #000;
	padding: 0 0 0 20px;
	}
	
	
.image-on-right {			
	float: right;		/* Floats images to the right side of the page. */
	margin: 0 10px 0 10px;	/* Add some space on the left side of the image and right margin. */
}

.image-on-left {			
	float: left;		/* Floats images to the left side of the page. */
	margin-right: 10px;	/*/adds some space on the right and left side of the image. */
}

/** testimonial **/

#testimonial img {
	float: left;
		}
	
#testimonial p {
	text-align: right;
	color: #000;
	font-style: italic;
	padding: 10px 25px 0 30px;
	border-top: 1px #333 dashed;
	}
	
#testimonial-source {
	text-align: right;
	font-weight: bold;
	padding: 10px 25px 15px 60px;
	}


