

/*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 (blue) 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.
*/


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

IE has difficulty with dashed and dotted. Dotted will show as dashed, and dashed can be dodgy anyway. 
So you are far better to use the solid property, as I have done here. At least you know you will get the same display in
every browser. Maybe Microsoft will produce a decent standards compliant browser ones day...but I doubt it.

PADDING: is the gap between the text and the wall of the cell.  
*/



 /*** These boxes below are half boxes centered on half a page***/

div.center-box {
  width: 50%;
  background-color: #8c6f5f; <!-- Brown box if you want to use it -->
	margin-left:auto;
	margin-right:auto;
	padding: 15px;
  border: 1px solid #000066;
	
}

 /*** This box created by me from center-box above - it appears a right-aligned grey box - with a bottom & left margin - NOT USED***/
div.center-box-grey {
  width: 50%;
  background-color: #EDEDEE; <!-- Dark Grey box if you want to use it -->
	margin: 5px 5px 5px 5px;
	margin-left: 15px;
	margin-bottom: 15px;
	padding: 15px;
  border: 1px solid #000066;
	float: right;
}  
  
  
  /***************************************
  These boxes below are full width boxes.  I created the grey one.  The one with none; is original.
  Don't put comments on the lines that have the brackets { -  This creates a problem accessing them. ***/

div.full-width-box {  
	background-color: none;
	margin: 20px 20px 20px 20px;
	padding: 15px;
	border: 1px solid #000066;

}

 /*** This box created by me and used in working-overseas Pages e.g. <div class= "full-width-box-grey"> ***/
div.full-width-box-grey {  
	background-color: #ecf0f1; 
	margin: 10px 10px 10px 10px;
	padding: 10px;
	border: 1px solid #000066;

}




div.full-width-box2 {
  background-color: #feffbf; <!-- Yellow sidebar boxes -->
	margin: 5px 0px 5px 0px;
	padding: 15px;
   border: 1px solid #000066;
}
	
	/*** box below is transparent ***/
div.full-width-box3 {
  background-color: none; 
	margin: 15px 0px 5px 0px;
	padding: 15px;
   border: 1px solid #000066;
   
}
	
/*** box below is white ***/	
div.full-width-box-4 {					
  background-color: none;
	margin: 20px 20px 20px 20px;<!-- Full text box - white -->
	padding: 15px;
  border: 1px solid #000066;

}

/*** This box created by me - a full width box with light blue background - used on Overseas Employment ***/
 div.full-width-box5 {					
  background-color: #D6E4FE;
	margin: 20px 20px 20px 20px;
	margin-left: 15px;
	margin-right: 15px;
	padding: 15px;
  border: 1px solid #000066;

}  
  /*** This box created by me - a full width box with pale blue background - used on Multiple Intelligences Inventory ***/ 
 div.full-width-box6 {					
  background-color: #D2E6FE;
	margin: 20px 20px 20px 20px;
	margin-left: 15px;
	margin-right: 15px;
	padding: 15px;
  border: 1px solid #000066;

}     
  
   
 /*** HALF WIDTH BOXES BELOW***/  
   
   
	
/*** right column Half of width box left ***/
div.half-width-box-left {
  background-color: #e3c3cc; <!-- Pink box to left Center Column -->
	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: #93d8d9; <!-- Aqua box to left Center Column NO SHOW-->
	margin: 20px 15px 15px 15px;
	margin-left: 20px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
}





/*** right column Half of width box right ***/
div.plain-half-width-box-right  {
  background-color: none; <!-- Transparent box right of Center Column -->
	margin: 15px 15px 15px 15px;
	margin-left: 15px;
	border: 1px solid #000066;
	padding: 10px;
	width: 50%;
	float: right;
}



/*** I created this right column Quarter width box right. <!-- Blue (#d6e4fe or #D2E6FE) box right of Center Column --> ***/
div.quarter-width-box-right-blue  {
  background-color: #d6e4fe; 
	margin: 15px 15px 15px 15px;
	margin-left: 15px;
	border: 1px solid #000066;
	padding: 10px;
	width: 30%;
	float: right;
}



/*** I created this right column Quarter width box right. <!-- GREY (#ecf0f1) box right of Center Column --> ***/
div.quarter-width-box-right-grey  {
  background-color: #ecf0f1; 
	margin: 15px 15px 15px 15px;
	margin-left: 15px;
	border: 1px solid #000066;
	padding: 10px;
	width: 30%;
	float: right;
}


/*** I created this Quarter width box left. <!-- GREY (#ecf0f1) box left of Center Column --> ***/
div.quarter-width-box-left-grey  {
  background-color: #ecf0f1; 
	margin: 5px 5px 5px 5px;
	margin-right: 10px;
	border: 1px solid #000066;
	padding: 10px;
	width: 30%;
	float: left;
}






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


