@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  overflow: inherit;
}

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #000;
	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 */
	height: 100%;
}
.oneColFixCtrHdr #container {
	width: 570px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto 0 315px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
    display: block;
}

.oneColFixCtrHdr #container2 {
	width: 700px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto 0 185px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
    display: block;
}

.header {
  width:100%;
  height:65px;
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 0px;
}

.header2 {
  width:100%;
  height:3px;
  background-color:#777;
  filter:alpha(opacity=60);
  opacity:0.6;
  margin-top: 0px;
}
  
.header img {
	position:relative;
  }
  
  p {
	  font-family:Verdana, Geneva, sans-serif;
	  color:#CCC;
	  font-size:11px;
	  line-height:15px;
	  position:relative;
	  text-align:justify;
	  }
	  
	  .copyright {
	  font-family:Verdana, Geneva, sans-serif;
	  color:#666;
	  font-size:10px;
	  line-height:15px;
	  position:relative;
	  text-align:left;
	  }
	  
a {
	  font-family:Verdana, Geneva, sans-serif;
	  color:#d14181;
	  font-size:11px;
	  line-height:15px;
	  text-decoration:none;
	  }
	  
.specialtext {
	  font-family:Verdana, Geneva, sans-serif;
	  font-style:italic;
	  color:#CCC;
	  font-size:12px;
	  line-height:16px;
	  position:relative;
	  margin:15px 0 15px 0;
	  }
	  
.specialtext2 {
	  font-family:Verdana, Geneva, sans-serif;
	  font-style:italic;
	  color:#999;
	  font-size:10px;
	  line-height:13px;
	  position:relative;
	  margin:10px 0 0 0;
	  }
	  
td {
	  font-family:Verdana, Geneva, sans-serif;
	  color:#CCC;
	  font-size:12px;
	  line-height:16px;
	  }
	  


.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#FFF;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 40px 30px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: rgba(0, 0, 0, 0.3);
	height:100%;
}
	
.oneColFixCtrHdr #leftcolumn {
	width: 250px;
	padding: 0 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	text-align:left;
	vertical-align:bottom;

}

.oneColFixCtrHdr #rightcolumn {
	width: 360px;
	float: left;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #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 */
}

.pinkline {
	height:3px;
	width:100%;
	background-color:#a73468;
	
	}

.footer {
  width:100%;
  height:40px;
  position: relative;
  clear: both;
  bottom: 0px;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

.footer2 {
  width:100%;
  height:3px;
  background-color:#777;
  filter:alpha(opacity=60);
  opacity:0.6;
  margin-top: 20px;
}

div.transbox
  {
  width:100%;
  height:80px;
  margin:30px 50px;
  background-color:#000000;
  border:1px solid black;
  /* for IE */
  filter:alpha(opacity=60);
  /* CSS3 standard */
  opacity:0.6;
  }
  
 #headspace {
	  margin: 60px 0 40px 0;
	  }
	  
#headspace2 {
	  margin: 6px 0 10px 252px;
	  }
	  
#headspace3 {
	  margin: 20px 0 6px 0;
	  }
	  
.clear { clear: both;  line-height: 0;  font-size: 0; }