/* Col3 CSS Document */

.thinkcyber #sidebar1 {
	float: left; 
	width: 177px; /* since this element is floated, a width must be given */
	background: #f0b7e7; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 0; /* top and bottom padding create visual space within this div */
}

.thinkcyber #sidebar2 {
	float: right; 
	width: 180px; /* since this element is floated, a width must be given */
	/*background: #e7edf5; the background color will be displayed for the length of the content in the column, but no further */
	padding: 3px 0; /* top and bottom padding create visual space within this div */
}
.thinkcyber #sidebar1 h3, .thinkcyber #sidebar1 p, .thinkcyber #sidebar2 p, .thinkcyber #sidebar2 h3 {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.thinkcyber #mainContent {
 	margin: 0 12.5em 0 14.5em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0 7px 0 7px; /* padding here creates white space "inside the box." */
	
}
 
