

/*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: #ffffff;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #ffffff;
	
}

div.full-width-box-boarder {
   background-color: #ffffff;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #000066;
	
}
div.center-box {
   width: 50%;
   background-color: #ffffff;
	margin-left:auto;
	margin-right:auto;
	padding: 15px;
   border: 1px solid #ffffff;
	
}
/*** a automatically resizing full with box with pale yellow background ***/
div.full-width-box2 {
   background-color: #ffffaa;
	margin: 15px 0px 10px 0px;
	padding: 15px;
   border: 1px solid #000066;
	
}
	
/*** Left 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;
	
}

/*** Left column Half of width box left NO BORDER ***/
div.half-width-box-left-no-border {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #ffffff;
	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;
	
}

/*** right column Half of width box right ***/
div.half-width-box-right-no-border {
   background-color: #ffffff;
	margin: 5px 5px 5px 5px;
	border: 1px solid #ffffff;
	padding: 10px;
	width: 50%;
	float: right;
	
}
/*** New Class for Navigation Headers on Left Hand Column ***/
.nbgred {
background-color:#ee0000; 
color:#fff;
width: auto;
}

.nbggreen {
background-color:#009900; 
color:#fff;
width: auto;
}

.nbgpurple {
background-color:#800080; 
color:#fff;
width: auto;
}

.nbgorange {
background-color:#ff5721; 
color:#fff;
width: auto;
}

.nbgwine {
background-color:#991826; 
color:#fff;
width: auto;
}
/*** New Class for PINK Information Headers on Right Hand Column ***/
.nbgdarkpink {
background-color:#cd1076; 
color:#fff;
width: auto;
}

/*** For a Hi, H2, or H3 Heading in Plain black text - simply put ***/

<h1>text</h1>


/* 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;
}

/*** This is how you put a link in text ***/
<i> Put your footer info here. You can also add <a href="#">links</a> here if you wish.</i>

/*** An in context link that OPENS A NEW WINDOW.***/
<p>
Visit <a href="http://www.fontstuff.com" target="_blank">Fontstuff</a> today!
</p>

/*** This is how you put an image in! ***/
<img src="image-files/AbacusHomePage.jpg" width="139" height="200" alt="Abacus" align="right">

/*** This is how you put an image in AND have the text wrap around it ***/
<img src="image-files/k6logostudent.jpg" width="120" height="126" title="" alt="garden" align="left" vspace="20" hspace="20"> 

/*** This is how you put an image in AND link it to another page! **/
<a href="index.html"><div align="right"><img src="image-files/HeaderPlaceholder.jpg" width="650" height="145" title="return to homepage" alt="return to homepage" border="0"></div></a> 

/*** This is how you put a list of bullets in! ***/
<ul>
   <li class="custom">Table attributes moved to the stylesheet</li>
   <li class="custom">More include files added</li>

</ul>

/*** This is how you put a horizontal divider in! ***/
<hr>

/*** This is how you put a heading in in the main text ***/
<h2  class="hbg">Your H2 Heading</h2>

/*** This is how you create a table - just copy and paste this, and replace info, increase numbers of rows and cells if required ***/
 <table border="0" bordercolor="ffffff" width="90%" bgcolor="ffffff">
<tr>
<td> row 1, column 1 </td>
<td> row 1, column 2 </td>
<td> row 1, column 3 </td>
</tr>
<tr>
<td> row 2, column 1 </td>
<td> row 2, column 2 </td>
<td> row 2, column 3 </td>
</tr>
<tr>
<td> row 3, column 1 </td>
<td> row 3, column 2 </td>
<td> row 3, column 3 </td>
</tr>
<tr>
<td> row 4, column 1 </td>
<td> row 4, column 2 </td>
<td> row 4, column 3 </td>
</tr>
<tr>
<td> row 5, column 1 </td>
<td> row 5, column 2 </td>
<td> row 5, column 3 </td>
</tr>
</table>



