@charset "utf-8";
/* CSS Document */


/*_______________________________
MULTI USE CLASSES FOR FORMATTING
_________________________________*/

.h1secondlevel {
	margin-top: -45px;
}
.h2secondlevel {
	margin-top: -20px;
}
.h3secondlevel {
	margin-top: -12px;
}
.bluetext {
	color: #19a0e2;
}
.greytext {
	color: #86858a;
}
.whitetext {
	color: #fff;
}
.blacktext {
	color: #000;
}
.redtext {
	color: #E82124;
}
.redrighttext {
	color: #E82124;
	text-align: right;	
}
.bold {
	font-weight: bold;	
}
.normal {
	font-weight: normal;
}
.fltrt { /* 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;
	background: transparent;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	background: transparent;
}
.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;
}
.clear-block {
  clear: both;
}
.inline {
	display: inline;
}
.hidden {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}