/* 
CSS used for membership related things.
	- members login
	- member admin

*/

/* GEM MEMBER LOGIN */

	.login_box{
		border-style: solid;
		border-width: 1px;
		border-color: #CCCCCC;
		border-bottom-style:solid; 
		border-bottom-width: 5px; 
		border-bottom-color: #333333; 
	}
	
	/* The message that says if you were logged in or not. */
	.login_message{
	
	}
	/* The place holder for when there is a message. */
	.no_login_message{
	
	}
	
	/* The form element */
	.gem_member_login{
		
	}
	.gem_member_username_text{
		
	}
	
	.gem_member_password_text{
		
	}
	.gem_member_username{
	
	}
	
	.gem_member_password{
	
	}
	
	.gem_member_submit{
	
	}
	
/* END GEM MEMBER LOGIN */

/* GEM MEMBER ADMIN */

	/*
		This box just has the "create new member 
		card" option in it.
	*/

	.member_command_box{
		padding: 5px; 
		width: 140px; 
		border-style:solid; 
		border-color:#666666; 
		border-width:1px; 
		float: left; clear:both;
	}


	/*
		This box contains the list of members 
		currently in the database for this website.
	*/ 
	.member_list{
		padding: 5px; 
		width: 140px;
		height: 173px; 
		margin-top: 3px; 
		border-style:solid; 
		border-color:#666666; 
		border-width:1px; 
		float: left; 
		clear: both;
		overflow: auto;
	}
	
		/*
			This box contains the actual 
			member card for either the selected member, 
			or a blank card for a new entry.
		*/
	.member_details{
		background-color: #FFFFCC;
		padding: 5px; 
		width: auto; 
		margin-left: 155px; 
		border-style:solid; 
		border-color:#666666; 
		border-width:1px;
	}
	
	.member_admin_message{
		color: red;
		font-size: small;
		font-weight: bold;
	}
	
		/* This is here so that the page doesn't appear to 
	       move around when the system displays a message.
		*/
	.no_member_admin_message{
				
	}

/* END GEM MEMBER ADMIN */