@charset "utf-8";
/* CSS Document */


body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #1f1d1d;
	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: #ebebeb;
	height: 100%
}



.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #323131;
	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. */
	
}
.oneColFixCtrHdr #header {
	background: #1f1d1d; 
	/*padding: 0 10px 0 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. */
}
.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 */
}


.oneColFixCtrHdr #mainContent {
	/* padding: 0 20px; remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #323131;
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	
	
}
.oneColFixCtrHdr #mainContent p, h1, h2, h3{
	padding: 0 20px;
}
.oneColFixCtrHdr #mainContent h1 {
	color: #437660;
}	

.oneColFixCtrHdr #mainContentBody,#login a {
	color: #01ffa2;
	
}
.oneColFixCtrHdr #mainContentBody,#login a:hover {
	color: #ebebeb;
	
}
.oneColFixCtrHdr #login {
	border: 1px solid #a2a2a2; 
	width: 25%;
	float: right;
	margin-right: 20px;
	padding:15px;
}

.oneColFixCtrHdr #login input {
	
	color:black;
	border: 1px solid #1f1d1d;
}

.oneColFixCtrHdr #loginTitle {
	font:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color: #01ffa2;
	margin-left: 10px;
	padding: 10px;
	background-color: #323131;
	position:relative;
	bottom:30px;
}

.oneColFixCtrHdr #title {
	font:Georgia, "Times New Roman", Times, serif;
	font-size:24px;
	color: #01ffa2;
	margin-left: 20px;
}
.oneColFixCtrHdr #mainContentBody {
	float:left;
	width: 55%;
	padding-left: 20px;
	padding-right: 10px;
}	
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#1f1d1d;
}
.oneColFixCtrHdr #footer p {
	font: 70% Georgia, "Times New Roman", Times, serif;
	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 */
}

.oneColFixCtrHdr #footer a {
	text-decoration: none;
	color: #ebebeb;
}

.oneColFixCtrHdr #footer a:hover{
	color: #01ffa2;
}
#navcontainer{
	
	width: 40%;
	float: right;
	background:url(../images/menubg.gif) repeat-x #323131;
	vertical-align:middle;
	
}

#navlist li {
	display: inline;
	list-style-type: none;
	padding-right: 20px;
	
}


#navlist li a {
	text-decoration: none;
	color: #e4e4e4;
}
#navlist li a:hover{
	color: #dbed41;
}

/* set background images for corners */
.rbroundbox { background-color: #323131; }
.rbtop div  { background: url(corners/tleft.png) no-repeat top left; }
.rbtop      { background: url(corners/tright.png) no-repeat top right; }
.rbbot div  { background: url(corners/bleft.png) no-repeat bottom left; }
.rbbot      { background: url(corners/bright.png) no-repeat bottom right; }

 /* height and width details */
.rbtop div, .rbtop, .rbbot div, .rbbot {
	width: 100%;
	height: 8px;
	font-size: 1px;
}
.rbcontent  { margin: 0 8px; }
.rbroundbox { width: 20em; margin: auto; }




.signupScreen {
	background-color: rgb(0, 0, 0);
	opacity: 0.7; /* Safari, Opera */
	-moz-opacity:0.70; /* FireFox */
	filter: alpha(opacity=70); /* IE */
	z-index: 20;
	height: 100%;
	width: 100%;
	background-repeat:repeat;
	position:absolute;
	top: 0px;
	left: 0px;
	display: none;
}

.signupForm {
	
	z-index: 21;
	height: 300px;
	width: 300px;
	border: 1px dashed #a2a2a2;
	padding:35px;
	text-align:left;
	font: 80% Georgia, "Times New Roman", Times, serif;
	background-color:#323131;
	position:absolute;
	top: 50%;
	left: 50%;
	margin:-150px auto auto -150px;
	display:none;
		
}

.signupForm #signupTitle {
	font:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color: #01ffa2;
	margin-left: 10px;
	padding: 10px;
	background-color: #323131;
	position:relative;
	bottom:45px;
	border:1px dashed #a2a2a2;
	

}



/**********  Profile  ************************/

.profileMenuContainer{	
	text-align:right;
	padding-right:20px;
	padding-bottom: 0px;
}


#profileNav li {
	display: inline;
	list-style-type: none;
	padding-right: 20px;
	font-size:16px;
	position:relative;
	bottom: 10px;		
}


#profileNav li a {
	text-decoration: none;
	color: #dbed41;
}
#profileNav li a:hover{
	color: #e4e4e4;
	text-decoration: underline;
}

.profileMenuContainer #profileNav .activeLink {
	color: #e4e4e4;
	text-decoration: underline;
} 

#profileName {
	margin-left: 40px;
	font-size:30px;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	color:#dbed41;
}


#profileLeft {
	padding-left: 40px;
	padding-top: 10px;	
	float:left;
	width: 35%;
}

.profileImg {
	border: 1px solid #dbed41;
}

a.edit {
	text-decoration:none;
	color:#666666;
	line-height:24px;
}

a.edit:hover {
	color:#999999;
}


.profileTools {
	
	list-style: none;
	padding:0px;	
	width: 200px;
	margin:0px;
	border-top: 1px solid  #dbed41;
}


.profileTools li a {
	display:block;
	text-decoration: none;
	color:#999999;
	border-bottom: 1px solid #dbed41;
	width: 200px;
	padding: 3px 0 3px 0;
	
	
	
}
.profileTools li a:hover{
	color: #e4e4e4;
	background-color: #1f1d1d;
	
}

#profileRight {
	padding-right: 40px;
	padding-top: 10px;	
	float:right;
	width: 54%;

}

#profileRight td a {
	color: #dbed41;
	text-decoration: none;
}

#profileRight td a:hover {
	color: #ededed;
	text-decoration: underline;
}

.profileHeader {
	width:100%;
	border-top: 1px solid #dbed41;
	height: 24px;
	background-color:#1f1d1d;
	
	
}

.profileHeader img {
	margin-left:5px;
	margin-top: 6px;
	float:left;
}

.profileContact {
	width: 425px;
	font-size:12px;
	border: 0px;
	
}

.labelTD{
	width:135px;
}

.profileP a {
	color: #dbed41;
	text-decoration: none;
}

.profileP a:hover{
	color: #ededed;
	text-decoration: underline;
}


/** contacts **/ 

.headerContainer {
	width:95%;
	border-top: 1px solid #dbed41;
	background-color:#1f1d1d;
	text-align:left;
	padding-left: 10px;
}

.headerContainer #headerName {
	color: #dbed41;
	font-size:26px;
	font-family:Arial, Helvetica, sans-serif;
}

.contactsLeft {
	padding-left: 40px;
	padding-top: 10px;	
	float:left;
	width: 44%;
}

#contactHeader {
	color: #dbed41;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
}

.contactsRight{
	padding-right: 40px;
	padding-top: 10px;	
	float:right;
	width: 43%;
}

a.contact {
	color: #dbed41;
}
a:hover.contact {
	color: white;
}
a.pagenum {
	color: #dbed41;
	text-decoration:none;
}
a:hover.pagenum{
	color:white;
}