/*Common layout and formatting elements */
.float-left {
	float: left;
}

.float-right {
	float: right;
}

.full-width {
	width: 100%;
}

.half-width {
	width: 50%;
}

.one-thirds-width {
	width: 33%;
}

.two-thirds-width {
	width: 66%;
}

.display-none {
	display: none;
}

.clear {
	clear: both;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-bold {
	font-weight: bold;
}

.no-border {
	border: none;
}

strong {
	font-weight: bold;
}

body { /*background-color: #1E4262;*/
	
}

h2,h3,h4 {
	font-weight: bold;
	color: #1E4262;
}

h2 {
	font-size: 22px;
	margin: 5px;
}

h3 {
	font-size: 18px;
	margin: 8px;
}

h4 {
	font-size: 12px;
	margin: 12px;
}

div.buttonContainer {
	float: left;
	margin-left: 25px;
}

div.outerContainer div.buttonContainer .button, div.contactContainer div.buttonContainer .button{
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	background-color: #2f566b;
	border: 2px solid;
	border-color: #67b8e1 #4786a7 #4786a7 #67b8e1;
	background-color: #469FCD;
	padding: 3px 5px 3px 5px;
}

div.error {
	border: 1px solid #c63b4b;
	background-color: #f8dbde;
	padding: 5px;
	font-weight: bold;
	margin: 5px 3px 5px 3px;
	color: #666;
}
div.okayMessage {
	border: 1px solid #52902f;
	background-color: #daefcf;
	padding: 5px;
	font-weight: bold;
	margin: 5px 3px 5px 3px;
	color: #666;
}