

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.float-clear {
	clear: both;
}	

.center {
	text-align: center;
}

.justify {
	text-align: justify;
}

.justleft {
	text-align: left;
}

.justright {
	text-align: right;
}

.large {
	font-size: larger;
}

.bold {
	font-weight: bold;
}

.underline {
	text-decoration: underline;
}

.boxed {
	background-color: #D4CCCC;
	font-size: smaller;
	padding: 5px;
	margin: 25px;
}	

.dropshadow {
 -moz-box-shadow: 5px 5px 6px #999; /* Firefox */
 -webkit-box-shadow: 5px 5px 6px #999; /* Safari/Chrome */
 box-shadow: 5px 5px 6px #999; /* Opera and other CSS3 supporting browsers */
 -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999')";/* IE 8 */
 : progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999');/* IE 5.5 - 7 */ 
}




