@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000;
}

a {
	text-decoration: none;
}
a:link {
	color: #4a4add;
}
a:visited {
	color:#4a4add;
}
a:hover {
	text-decoration: underline;
	/*font-weight: bold;*/
}

/* Miscellaneous classes for reuse */
.floatrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	padding-left: 8px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 4px;
	padding-bottom: 4px;
}
.floatlft { /* this class can be used to float an element left in your page */
	float: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-right: 8px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.floatrtNoPad { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.floatlftNoPad { /* this class can be used to float an element left in your page */
	float: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.floatrtBorder { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	margin-top: 4px;
	margin-bottom: 4px;
	margin-left: 8px;
}
.floatlftBorder { /* this class can be used to float an element left in your page */
	float: left;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	margin-top: 4px;
	margin-right: 8px;
	margin-bottom: 4px;
}

.whiteBackground {
	background-color: #FFF;
}

.border1 {
	border: 1px solid;
	border-color: #999;
}

.border2 {
	border: 2px;
	border-color: #999;
	border-style: solid;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
}

.centre {
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.middle {
	vertical-align: middle;
}

.redText {
	color: #C03;
}

.greenText {
	color: #063;
}

.blueText {
	color: #028;
}

.padSides {
	padding-right: 2px;
	padding-left: 2px;
}

.centrePad {
	text-align: center;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 8px;
}

.centreBorder {
	text-align: center;
	margin-top: 4px;
	margin-right: 8px;
	margin-bottom: 4px;
	margin-left: 8px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
}


.indent {
	padding-left: 10px;
}

.indent2 {
	padding-left: 20px;
}

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
