

/*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.
*/



/*** 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*/


div.full-width-box {
   background-color: #fff;
	margin: 15px 0px 15px 0px;
	padding: 15px;
   border: 1px solid #000;
	}


div.center-box {
   width: 50%;
   background-color: #fff;
	margin-left:auto;
	margin-right:auto;
	padding: 15px;
   border: 1px solid #000;
	}








/*** home page newsletter box ***/
div.full-width-box2 {
   background-color: #112958;
	margin: 0px 0px 0px 0px;
	padding: 0px;
   border: 1px solid #000;
	}
	
	
	/*** right column newsletter box ***/
div.full-width-box3 {
   background-color: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px;
   border: 1px solid #cccccc;
	}
	
/*** you can be an author box ***/
div.center-box4 {
   width: 89%;
   background-color: #E4E3B3;
	margin-left:auto;
	margin-right:auto;
	padding: 10px;
   border: 1px solid #ccc;
	}	

/*** me2everyone ***/
div.center-box5 {
   width: 89%;
   background-color: #ffffcc;
	margin-left:auto;
	margin-right:auto;
	padding: 10px;
   border: 1px solid #ccc;
	}	



/*** right column Half of width box left - specially for article directory***/
div.half-width-box-left {
   background-color: #fff;
	margin: 0px 0px 0px 0px;
	border: 1px solid #ccc;
	padding: 5px;
	width: 31%;
	float: left;
	}


/*** right column Half of width box right - specially for article directory***/
div.half-width-box-right {
   background-color: #fff;
	margin: 0x 0px 0px 0px;
	border: 1px solid #ccc;
	padding: 5px;
	width: 31%;
	float: right;
	}


/*** for AdSense ad rectangle 250 × 250 left ***/
div.half-width-box-left-adsense-ad-rectangle-250-250 {
  background-color: #fff;
	margin: 0px 0px 0px 0px;
	border: 1px solid #fff;
	padding: 0px;
	width: 42%;
	float: left;
	}


/*** for AdSense ad rectangle 200 × 200 left ***/
div.half-width-box-left-adsense-ad-rectangle-200-200 {
  background-color: #fff;
	margin: 0px 0px 0px 0px;
	border: 1px solid #fff;
	padding: 0px;
	width: 36%;
	float: left;
	}
	
	
/*** for free e-books ***/
div.half-width-box-left-free-e-books {
  background-color: #fff;
	margin: 0px 0px 0px 0px;
	border: 1px solid #fff;
	padding: 0px;
	width: 31%;
	float: left;
	}	
	
	
/*** for free e-courses ***/
div.half-width-box-left-free-e-courses {
  background-color: #fff;
	margin: 0px 0px 0px 0px;
	border: 1px solid #fff;
	padding: 0px;
	width: 15%;
	float: left;
	}		
	
	
	
	
	
	
/*** for free link exchange ***/
div.half-width-box-left-free-link-exchange {
  background-color: #fff;
	margin: 2px 0px 0px 0px;
	border: 1px solid #fff;
	padding: 0px;
	width: 27%;
	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: 1px solid #000;
}
.img-float-right {
	float: right;
	padding: 2px;
	margin-left: 5px;
	border: 1px solid #000;
}
/*** Clearing of a float ***/
div.clear {
	clear: both;
	width: 100%;
	height: 1px;
}


