

/*This style sheet controls 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: 10px 25px 15px 25px;
	border-top: none;
	border-bottom: none;
	Border-right: 0px solid #000066; 
	border-left: 0px solid #000066;
}







/*** right column Full width box.
Change the colors to suit. The standard box has a white background, and the
box2 has a colored background ***/

/*  soft gray green (was #fcffd2 yellow )  */
div.full-width-box {
   background-color: #c4d0cb;
	margin: 15px 12px 10px 12px;
	padding: 15px;
   border: 1px solid #a5b3a6;
	}
	
/* pale tan */
div.full-width-box2 {
   background-color: #f5e9db;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #000066;
	
}
/* soft salmon */
div.full-width-box3 {
    background-color: #fce8e0;
   margin: 15px 10px 10px 10px;
   padding: 15px;
   border: 0px solid #000066;
   }
   
 	

/* pale blue green */
div.full-width-box4 {
    background-color: #f3f9f7;
   margin: 15px 10px 10px 10px;
   padding: 15px;
   border: 1px solid #000066;
   } 
 
  /* very pale orange  (was fff6eb tan, border 000066) */
 div.full-width-box5 {
    background-color: #fff4ef;
   margin: 15px 2px 10px 2px;
   padding: 15px;
   border: 1px solid #000066;
   }

 
 div.full-width-box6 {
   background-color: #fff;
   margin: 10px 0px 0px 0px;
   padding: 20px;
   border: 0px;
   text-style: italic;
   }  

	/*pale pink, mauve border */
	 div.full-width-box7 {
    background-color: #fef8f8;
   margin: 15px 8px 15px 8px;
   padding: 15px;
   border: 1px solid #fdc3bb;
   } 
	
	
	
	
	
	
	
	
/*** right column Half of width box left ***/
div.half-width-box-left {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: left;
	
}
/*** right column Half of width box right ***/
div.half-width-box-right {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
	
}
/* ice pink, dark blue border */
div.half-width-box-center {
   background-color: #fffff0;
	margin: 5px 5px 5px 30px;
	border: 1px solid #000066;
	padding: 10px 10px 20px 30px;
	width: 80%;
	float: center;
	}

	div.half-width-box-center2 {
   background-color: #ffffff;
   border: 1px solid #000;
	margin: 5px 5px 5px 30px;
	padding: 10px 10px ;
	width: 80%;
	float: center;
	}
	
/* pale yellow, mauve border */
div.half-width-box-center3 {
   background-color: #fffff0;
   border: 1px solid #fdc3bb;
	margin: 5px 5px 5px 30px;
	padding: 10px 10px 20px 30px;
	width: 80%;
	float: center;
	}
	
	
/* pale pinkish tan , mauve border */
div.half-width-box-center4 {
   background-color: #fef8f8;
   border: 1px solid #fdc3bb;
	margin: 5px 5px 5px 30px;
	padding: 10px 10px 10px 10px;
	width: 80%;
	float: center;
	}


div.half-width-box-left2 {
   background-color: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	width: 50%;
	float: left;
}
	
div.half-width-box-right2 {
   background-color: #ffffff;
	margin: 0px 0px px 0px;
	padding: 0px;
	width: 50%;
	float: right;
	}
	
/* pale green , med green border  Right Column Box*/
div.right-column-box {
   background-color: #c4d0cb;
   border: 1px solid #a5b3a6;
	margin: 10px 10px 10px 10px;
	padding: 5px 10px 10px 10px;
	float: center;
	}
	
/* soft pale pink, mauve border */
div.right-column-box2 {
   background-color: #fef8f8;
   border: 1px solid #fdc3bb;
	margin: 10px 10px 10px 10px;
	padding: 5px 10px 10px 10px;
	float: center;
	}



/* 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: left;
	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;
}


