/* the div that contains the homepage image gallery and welcome msg */
#home_content_container {
	width:100%;
	float:left;
	height:auto;
	display:inline;
	position:relative;
}

#welcome_div {
	margin-left:305px;
	padding-top:10px;
}

/* the div that contains the login/signup/lost forms */
.login_div {
	width:400px;
	margin:15px 0px 15px 50px;
	padding:5px;
	border:1px solid #ccc;
}

/* the div that contains the info sent msg from the lost username/pw and resend confirmation form */
#info_sent {
	margin:4px 0 8px 2px;
	color:green;
	font-weight:bold;
	float:left;
}
#info_sent label {
	float:left;
	padding-left:8px;
	padding-top:2px;
}

#signupForm span {
	font-size:12px;
}

/* the div that contains the error messages from login, signup, lost, resend */
#login_error {
	margin:4px 0 8px 2px;
	float:left;	
	display:none;
}
#login_error label {
	float:left;
	padding-left:8px;
	padding-top:2px;
}
.error_msg {
	color:red;
	font-weight:bold;
}

/* Image Gallery Slider Styles - HOME PAGE */
#gallery {  
     float:left;
     position:relative; 
     height:311px; 
	 border-left:1px solid #ffffff;
	 width:300px;
}  
 
#gallery a {  
	float:left;  
	position:absolute;  
	top:0;
	left:0;
}  

#gallery a img {  
	border:none;  
}  

#gallery a.show {  
	z-index:500  
}  

#gallery .caption {  
	z-index:600;   
	background-color:#000; 
	text-align:left;  
	font-size:9pt;
	color:#ffffff;   
	height:100px;   
	width:298px;   
	position:absolute;
	left:0;  
	bottom:0;  
	opacity:0.8;
	filter: alpha(opacity = 80); /* IE */
}  

#gallery .caption .content {  
	margin:5px  
}  

#gallery .caption .content h3 {  
	margin:0;  
	padding:0;  
	color:#1DCCEF;  
} 



