/* text styles */
.bold {
	font-weight:bold;
}
.italic {
	font-style:italic;
}

.left {
	text-align:left;
}
.right {
	text-align:right;
}
.center, .centered {
	text-align:center;
}
.justify, .justified {
	text-align:justify;
}

.uppercase {
	text-transform:uppercase;
}
.lowercase {
	text-transform:lowercase;
}
.strikethrough {
	text-decoration:line-through;
}
.underline {
	text-decoration:underline;
}

/* text sizes */
.small {
	font-size:0.8em;
}
.medium {
	font-size:0.9em;
}
.regular {
	font-size:1.0em;
}
.large {
	font-size:1.1em;
}
.larger {
	font-size:1.3em;
}

/* colours */
.color_darkred {
	color:#cc0000;
}
.color_maroon {
	color:#961207;
}
.color_magenta {
	color:#8d0148;
}
.color_gray, .color_grey {
	color:#737373;
}
.color_bluegate {
	color:#194391;
}
.color_bluehomes {
	color:#195797;
}
.color_yellow {
	color:#ffff00;
}
.color_white {
	color:#ffffff;
}
.color_black {
	color:#000000;
}
.color_mint_green {
	color:#339999;
}
/* scriptaculous re-order lists */
div.auto_complete {
	position:absolute;
	width:250px;
	background-color:white;
	border:1px solid #888;
	margin:0px;
	padding:0px;
}
#list {
	margin:0;
	margin-top:10px;
	padding:0;
	list-style-type: none;
}
#list li {
	margin:0;
	margin-bottom:4px;
	padding:2px;
	border:1px solid #888;
	cursor:move;
	width:300px;
	background-color:#bebebe;
}
div.cleared {
	margin:5px 0;
	clear:both;
}
div.left_image{
	float: left;
	margin: 0 5px 10px 0;
}
.required{
	color: #F00;
}

/* auto complete list styling */
div.list_auto_complete {
	width: 100px;
	background: #fff;
	display: inline;
}
div.list_auto_complete ul {
	border: 1px solid #888;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style-type: none;
}

div.list_auto_complete ul li {
	margin: 0;
	padding: 3px;
}
div.list_auto_complete ul li:hover {
	cursor:pointer;
}
div.list_auto_complete ul li.selected { 
	background-color: #ffb; 
}

div.list_auto_complete ul strong.highlight { 
	color: #800; 
	margin: 0;
	padding: 0;
}