@CHARSET "UTF-8";
/*
* PHP BBCode
* @author	Duncan Mundell <duncan<nospam>@swaziboy.com>
* @version	1.0
* @updated	21/01/2007
*/

.bold {
	font-weight: bold;
	}

.italics {
	font-style: italic;
	}

.underline {
	text-decoration: underline;
	}

.strikethrough {
	text-decoration: line-through;
	}

.overline {
	text-decoration: overline;
	}

.boxaround{
	float:left;
	margin-bottom:10px;
	margin-right:10px;
	border: 1px #cccccc solid;
	}

.boxheader{
	border: 1px #cccccc solid;
	background-color:#433f40;
	width:100%;
	font-weight:bold;
	color:#ffffff;
	}

.boxbody{
	border: 1px #cccccc solid;
	margin:0px;
	width:100%;
	}

.listbullet {
	list-style-type: disc;
	list-style-position: inside;
	}

.listdecimal {
	list-style-type: decimal;
	list-style-position: inside;
	}

.listlowerroman {
	list-style-type: lower-roman;
	list-style-position: inside;
	}

.listupperroman {
	list-style-type: upper-roman;
	list-style-position: inside;
	}

.listloweralpha {
	list-style-type: lower-alpha;
	list-style-position: inside;
	}

.listupperalpha {
	list-style-type: upper-alpha;
	list-style-position: inside;
	}