@charset "utf-8";
body {
	font: 9pt Arial, Helvetica, sans-serif;
	background: #231f20;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666;
}

.lumex #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #fff;
}

.lumex #header {
	background: #bf1e2e; 
	height: 100px;
	padding: 0;
	margin: 0;
}

.lumex #menu {
	font: 10pt Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: #bcbdc0;
}


.lumex #menu.active {
	background-image: url(images/menuBg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

.lumex #menu td a{
	display: block;
	height: 21px;
	padding: 10px 0;
	color: #fff;
	text-decoration:none;
}

.lumex #menu td a.about:hover {
	display: block;
	color: #fff;
	text-decoration:none;
	background-color: #bf1e2e;
	background-image: url(images/menu-mo_01.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.lumex #menu td a.about.active {
	background: #bf1e2e;
	background-image: url(images/menu-mo_01.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.lumex #menu td a.discover:hover {
	display: block;
	color: #fff;
	text-decoration:none;
	background-color: #bf1e2e;
	background-image: url(images/menu-mo_02.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.lumex #menu td a.discover.active {
	background: #bf1e2e;
	background-image: url(images/menu-mo_02.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

.lumex #menu td a:hover {
	display: block;
	color: #fff;
	text-decoration:none;
	background-color: #bf1e2e;
}

.lumex #menu td a.active {
	background: #bf1e2e;
}


.lumex #menu .leftBar {border-left: 1px solid #fff;}

.lumex #menu .rightBar {border-right: 1px solid #fff;}

.lumex #mainContent {
	padding: 0 163px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.lumex #mainContent h1 {
	font: 12pt Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: normal;
	padding: 10px 0 5px 0;
	margin: 10px 0 5px 0;	
}

.lumex #mainContent h2 {
 	font: 9pt Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: bold;
	color: #bf1e2e;
	padding: 10px 0 2px 0;
	margin: 10px 0 2px 0;
}

.lumex #mainContent table tr td {
	font: 9pt Arial, Helvetica, sans-serif;
}

.lumex form {
	font: 8pt Arial, Helvetica, sans-serif;
}

.logo {
	text-align:right;
	padding: 20px 0 2px 0;
}

.cbre {
	text-align:right;
}

.lumex #footer {
	background: #bf1e2e;
	height: 80px;
}

.lumex #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.formLabel {
	color: #bf1e2e;
	text-transform: uppercase;
	font-weight:bold;
}

.strongRed {
	color: #bf1e2e;
	font-weight: bold;
}

.bigRed {
	color: #bf1e2e;
	font-size: 12pt;
	font-weight: bold;
	line-height: 14pt;
}

.biggerRed {
	color: #bf1e2e;
	font-size: 16pt;
	font-weight: bold;
	line-height: 14pt;
}

.validation-failed {
	border: 1px solid #f00;
}
.validation-passed {
	border: 1px solid green;
}
.validation-advice {
	font-size: 9px;
	margin: 2px; 
	padding: 2px; 
	color: #f00;
}
.warning {
	border: 1px solid #c66;
}
.warning-advice {
	font-size: 9px;
	margin: 2px;
	padding: 2px;
	color:#bbb;
}