

/* Search status/rmsg status box */

.searchStatusDiv {
	display:block;
	
	margin: 15px auto 0 auto;
	text-align:center;

	/*
	background-color: yellow;
	border: green thin solid;
	width: 75%;
	*/
	
	padding: 10px;
	
	background: #fffece;
	-moz-border-radius:5px;
    border: 2px solid #e3e2b4;
} 


/* Search form Div */
.searchFormDiv {
	
	margin: 10px auto;
	text-align: center; 
	color: red; 
	padding: 5px; 
	border: medium; 
	border-style: double; 
	border-color: red; 
	width: 75%; 
}


/* The main div holding all search results - should be several of the searchResultsChildDiv below */
.searchResultsMainDiv {
	
	display: block ;
	width: 85% ;
	margin: auto ;
	text-align: center ;

}

/* The div block for each child block showing information from the search results */
.searchResultsChildDiv {

	float: left ;
	padding: 10px;
	margin: 7px;
	/*
	border-top:1px solid #cccccc;
	border-right:2px solid #cccccc;
	border-bottom:2px solid #cccccc;
	border-left:1px solid #cccccc;
	*/
	width: 150px ;		/* Should be same size as ChildImg block below */
	height: 320px ; 
	background-color: white ;

    background: #ffffff;
	-moz-border-radius:5px;
    border: 1px solid #cccccc;
	
}

.searchResultsChildImg {

	align: center ;
	border: 1px solid #cccccc;
	width: 150px ;		/* Should be same size as ChildDiv block above */
	
}

.child_photo {
	height:210px;	
}

