

/*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 #BE8648 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 ***/


div.full-width-box {
   background-color: #ffffff;
	margin: 15px 0px 10px 0px;
	padding: 15px;
	border: 1px dotted #BE8648;
	
}

div.full-width-box2 {
   background-color: #ffffdd;
	margin: 15px 0px 10px 0px;
	padding: 15px;
	border: 1px dotted #BE8648;
}	
	
/*** right column Half of width box left ***/
div.half-width-box-left {
	margin: 5px 5px 5px 5px;
	border: 1px dotted #BE8648;
	padding: 15px;
	width: 280px;
	float: left;
}
/*** right column Half of width box right ***/
div.half-width-box-right {
   
	margin: 5px 5px 5px 5px;
	border: 1px dotted #BE8648;
	padding: 15px;
	width: 280px;
	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: left;
	padding: 2px;
	margin-right: 5px;
	border: 2px solid #5F8B8C;
}
.img-float-right {
	float: right;
	padding: 2px;
	margin-left: 5px;
	border: 2px solid #5F8B8C;
}
/*** Clearing of a float ***/
div.clear {
	clear: both;
	width: 100%;
	height: 1px;
}
/*** this is to give a textbox with rounded edges....and no extra images required, which
is the usual way of doing it. Notice the background is set to #fff, which is white? Thats so it blends into the background...change it if your background isnt white. The other two colors can be changed, but keep them the same as each other to keep the illusion of a rounded rectangle.  Dont alter anything else unless you are SURE you know what your doing. And if you do, and it goes wrong, please dont ask me why. ;-) ***/

div#textbox{ margin: 0 10%;background: #cbe1de; }
b.rtop, b.rbottom{display:block;background: #fff;}
b.rtop b, b.rbottom b{display:block;height: 1px;
    overflow: hidden; background: #cbe1de}
b.r1{margin: 0 5px}
b.r2{margin: 0 3px}
b.r3{margin: 0 2px}
b.rtop b.r4, b.rbottom b.r4{margin: 0 1px;height: 2px}

