/* CSS Document */

.left {
	float: left;
	margin-right: 10px;
	margin-bottom: 5px;
}
.right {
	float: right;
	margin-left: 10px;
	margin-bottom: 5px;
}
.center {
	text-align: center;
}
.middle {
	vertical-align: middle;
}
.justify {
	text-align: justify;
}
.text-left {
	text-align: left;
}
.block {
	display: block;
}
.fontsize-10 {
	font-size: 10px;
}
.fontsize-11 {
	font-size: 11px;
}
.fontsize-12 {
	font-size: 12px;
}
.indent-190 {
	margin-left: 190px;
	display: block;
}
.red {
	color: #EC2127;
}
.blue {
	color: #0033CC;
}
.light-blue {
	color: #536ebc;
}
.uppercase {
	text-transform: uppercase;
}
.lowercase {
	text-transform: lowercase;
}
.bold {
	font-weight: bold;
}
.extra-top-12 {
	margin-top: 12px;
}
.extra-top-18 {
	margin-top: 18px;
}
.extra-bottom-12 {
	margin-bottom: 12px;
}
.no-margin {
	margin: 0px;
}
.no-padding {
	padding: 0px;
}
.hr-white {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	color: #FFFFFF;
}
.underline {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}
.no-decoration {
	text-decoration: none;
}
.bg-red {
	background-color: #FF0000;
	color: #FFFFFF;
}
.bg-gray {
	background-color: #CCCCCC;
}
.user-message {
	background-color:#E1FDE2;
	padding: 8px;
	width: auto;
	border: 1px solid #009900;
}
.table-standard {
	width: 100%;
	background-color: #FFFFFF;
}
.table-standard th {
	font-weight: bold;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding: 4px;
	font-size: 10px;
}
.table-standard td {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding: 4px;
}
.table-gray th {
	background-color: #CCCCCC;
}
.table-gray td {
	background-color: #CCCCCC;
}
ul.list-basic {
	padding: 0px;
	margin: 0px;
}
.list-basic li {
	list-style-type: none;
	margin-bottom: 10px;
}
.list-underline li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	padding-bottom: 8px;
	padding-top: 5px;
}
.list-indent-15 li {
	margin-left: 15px;	
}
.list-uppercase li {
	text-transform: uppercase;	
}

table.table-results {
	width: 100%;
	border-collapse: collapse;
}
.table-results strong {
	text-transform: uppercase;
}
.table-results td,
.table-results th {
	background-color: #CCCCCC;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	padding: 3px;
}


