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

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
}

.basictable {
  /*table-layout:fixed; 
  word-wrap:break-word;*/
  background-color:#FFF;
  border:1px  solid black;
  width:80%
  border-collapse:collapse;
}

.basictd {
  padding-right: 6px;
}

.container {
	width: 90%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.header {
	padding: 1px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left;
}
.navigation {
	background-color: #6699FF;
	text-align: center;
	font-weight: bold;
	color: #FFFFFF;
	padding: 10px 20px;
	text-decoration: none;
}
.navigation a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 12px;
}
.mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	text-align: left;
}

.mainContent h1 {
	font-size: 24px;
	font-weight: bold;
}

.footer {
	font-size: 10px;
}

.report_select {
	background-color:#CCCCCC;
	border:1px solid #000000;
}

.optoutContent {
	text-align: center;
	padding-top: 0;
	padding-right: 80px;
	padding-bottom: 0;
	padding-left: 80px;
}
.alert {
	color: #FF0000;
	text-align: center;
	font-size: smaller;
	font-weight: bold;
}

.form_explain {
  font-size: smaller;
}