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

body {
	font-family: 'Open Sans', sans-serif; font-weight:300; font-style:regular;
	background: #666666;
	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: #000000;
	font-size:18px;
	text-size-adjust:none;
}
table, th, td {
  border: 0px solid black;
}
table {
  border-collapse: collapse;
}
.oneColElsCtr #container {
	width: 60em;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.oneColElsCtr #tableMain {

	table-layout:fixed;
	//border: 0px;
	width:100%;
	text-size-adjust:none;
}

.oneColElsCtr #trBlack {
	background-color:#000000;
	color:#FFFFFF;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-size-adjust:none;
}

.oneColElsCtr #trYellow {
	background-color:#ffe28d;
	color:#000000;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-size-adjust:none;
}

.oneColElsCtr #trGray {
	background-color:#e5e5e5;
	color:#000000;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-size-adjust:none;
}

.oneColElsCtr #trWhite {
	background-color:#FFFFFF;
	color:#000000;
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-size-adjust:none;
}

.reversetext {
	background-color:#999;
	color:#fff;
}

#linkBlack {
    color:#9CF;
    text-decoration: none;
}

#linkLight {
    color:#36F;
    text-decoration: none;
}


/* form with stacking boxes */

{
  box-sizing: border-box;
}

input[type=text], textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

select {
  width: 50%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

input[type=email] {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

label {
  padding: 6px 6px 6px 0;
  display: inline-block;
  float: none;
}

input[type=submit] {
  background-color: #E1AF00;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  float: right;
  font-size: 100%;
  font-family: 'Open Sans', sans-serif;
  font-style: regular;
}

input[type=submit]:hover {
  background-color: #999;
}

/*.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}*/

/*.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}*/

/*Clear floats after the columns */
/*.row:after {
  content: "";
  display: table;
  clear: both;
}*/

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
/*@media screen and (max-width: 400px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }*/
}