

/*This style sheet controls how the textboxes will look
The only thing that you will want to change will be the color
of the borders. They are set at #cc0000 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, it can be done on the actual page*/

hr {
	clear: both;
	color: #9966cc;
	background-color: #fff;
	border-style: solid;
	border-width: 1px;
	margin: 5px 0px 10px 0px;
	}
	
	b{
color: black;
font-family: Verdana;
font-size: 13px;
font-style: normal;
}

/*** right column Full width box color poem ***/
div.full-width-box-color-poem {
	background-color: #ffffcc;
	margin: 15px 0px 10px 0px;
	padding: 5px 100px 5px 100px; 
	width: 400px;
	border: 1px dotted #ff6600;

}
	

	
	

/*** right column Full width box ***/
div.full-width-box {
	margin: 15px 0px 10px 0px;
	padding: 15px;
	border: 1px dotted #ff6600;
	background-color: ffffff;
}


/*** right column Full width box ***/
div.full-width-box-notepaper {
	margin: 0px 0px 0px 0px;
	padding: 45px;
	border: 0px dotted #ff6600;
	
}

}


/*** right column Full width box color ***/
div.full-width-box-color {
	background-color: #ffffcc;
	margin: 15px 0px 10px 0px;
	padding: 15px;
	border: 1px dotted #ff6600;

}

/*** right column Half of width box left ***/
div.half-width-box-left {
	margin: 10px 10px 10px 10px;
	border: 1px dotted #ff6600;
	padding: 15px;
	width: 280px;
	float: left;
	}
	/*** left column Half of width box left coloured background ***/
	
	div.half-width-box-left-color {
	background-color: #ffffcc;
	margin: 10px 10px 10px 10px;
	border: 1px dotted #ff6600;
	padding: 15px;
	width: 280px;
	float: left;
}
/*** right column Half of width box right ***/
div.half-width-box-right {
	margin: 10px 0px 10px 0px;
	border: 1px dotted #ff6600;
	padding: 15px;
	width: 280px;
	float: right;
}
/* the border of the image inside your half width textboxs can be changed.
Its set to a pale green at the moment (7CBF3A). 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 #ffcc66;
}
.img-float-right {
	float: right;
	padding: 2px;
	margin-left: 5px;
	border: 2px solid #ffcc66;
}
/*** Clearing of a float ***/
div.clear {
	clear: both;
	width: 100%;
	height: 1px;
}


