

/*This style sheet controls only how the TEXTBOXES will look
The only thing that you might want to change will be the color
of the borders. They are set at #000066 at the moment.
The background color is set to ffffff (white), however if you
decide to change it you can. Just remember, if you do, it will affect EVERY
textbox on your site. To change only one, copy and paste the class here in the style sheet,
and alter the color. Change the name also... so the new class may be called
full-width-box-blue for eg. Then the new color can be called with your new class name.
*/


div.content-box {
   background-color: transparent;
	margin: 0px 0px 0px 0px;
	padding: 20px;
	border-top:  5px solid  #000066;
	border-bottom: 5px solid #000066;
	border-right: 5px solid #000066; 
	border-left: 5px solid #000066;
}

<code>
		<td align=center>
			
		</td>
</code>
/*** center column Full Width text box.
Change the colors to suit. The standard box has a white background, and the
box2 has a colored background ***/


div.full-width-box {
   background-color: #ffffcc;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 4px solid #000066;
	
}

/*** RIGHT column text box.
Change the colors to suit. The standard box has a white background, and the
box2 has a colored background ***/

div.full-width-box2 {
   background-color: #9999ff;
	margin: 15px 10px 10px 10px;
	padding: 15px;
   border: 6px ridge #000066;
	
}
	
/*** center column Half of width box on left ***/
div.half-width-box-left {
   background-color: #ffffff;
	margin: 5px 10px 5px 10px;
	border: 6px ridge #000066;
	padding: 12px;
	width: 50%;
	float: left;
	
}
/*** center column Half of width box on right ***/
div.half-width-box-right {
   background-color: #cccccc;
	margin: 5px 5px 5px 5px;
	border: 4px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
	
}



/* the border of the image inside your half width textbox can be changed.
Its set to #5F8B8C at the moment. You can also change the solid
to either dashed or dotted if you want to*/

/*** Picture inside the text ***/
.img-float-left {
	float: right;
	padding: 2px;
	margin-right: 5px;
	border: 2px solid #000066;
}
.img-float-right {
	float: right;
	padding: 2px;
	margin-left: 5px;
	border: 2px solid #000066;
}
/*** Clearing of a float ***/
div.clear {
	clear: both;
	width: 100%;
	height: 1px;
}


