@charset "utf-8";

*{
	 -webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
	  box-sizing: border-box;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000000;
	margin: 0 auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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: #ffffff; */
}
.container {
	/*width:100%;   using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	max-width:auto;
	max-height:auto;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 3px solid #ff0;*/
	text-align: center; /* this overrides the text-align: center on the body element. */
}

/*header {
	position:relative;
	top:0px;
	left:0px;
	max-width: 100%;
	border: solid #009 1px;
	padding: 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding.
} */
.mainContent {
	position:relative;
	top:0px;
	left:0px;
	max-width:95%;
	max-height:auto;
    padding:5px;
	color:#FFF;
	font-family:Georgia, "Times New Roman", Times, serif;
	margin: auto; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*border 1px solid #F00;	*/
}

.header {
	position:relative;
    top: 0px;
	left: 0px;
    margin: 0 auto;
    color:#fff;
	max-width: 100%;
	padding: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.header img {
    max-width:100%;
}

.mainContent img {
    max-width:100%;
}

.oneColFixCtrHdr #MainContentAboutPng {
	position:relative;
    float:left;
	top:0px;
	left:310px;
	max-width:100%;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #mainContentCntcFrm {
	position:relative;
	top:0px;
	left:0px;
	width:200;
	height:auto;
	color:#FFF;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border 1px solid #009;	
}
.oneColFixCtrHdr #FrmCustmrDet {
	width:770px;
	height:auto;
	position:relative;
	top:440px;
	left:0px;
	color:#FFF;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border 2px groove #FF0;
	text-align:left;
}
.oneColFixCtrHdr #LogoContent {
	position:relative;
    float:right;
	top:0px;
	left:0px;
	max-width: 100%;
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.oneColFixCtrHdr #FrmErrContent{
	position:relative;
	left:300px;
}

.footer{ 
    clear:both;
	max-width:100%;
	margin:0 auto;
	padding-top: 15px; /*this padding matches the left alignment of the elements in the divs that appear above it. */
 	padding-bottom: 15px; /*this padding matches the left alignment of the elements in the divs that appear above it. */   
	/*background: #eedd82;*/
	background: #000;
	color:white;
	font-family:"Benguiat Bk BT",Georgia, "Times New Roman", Times, serif;
  	font-size:18px;
	text-align:center;
	/*border: thin dashed #000;*/
} 
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.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;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  font-weight:bold;
}

a:visited {
  color: yellow;
  background-color: transparent;
  text-decoration: none;
  font-weight:bold;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
  font-weight:bold;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: none;
  font-weight:bold;
}