HTML,BODY {
	height: 100%;
	/*margin: 0px;*/
	/*padding: 0px;*/
}

BODY {
	background-color: #E6ECED;
	color: #0E4049;
	font-family: sans-serif;
}

#add_animal_table {
	width:400px;
	border-collapse: separate; 
	border-spacing: 5px;
	
}

#add_animal_table TD {
	/*border: 1px solid black;*/
}

#add_animal_table TD:first-child {
	min-width:70px;
	text-align:right;
	/*padding-right:10px;*/
}

.animal_card {
	width:300px;
	min-height:180px;
	border:1px solid #bbbbbb;
	border-radius: 5px;
	padding: 0px 2px 5px 8px;
	background-color: #dddddd;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.animal_card_name {
	/*border: 1px solid red;*/
	width:100%;
	display:inline-block;
	font-weight:bold;
	font-size:24px;
	text-overflow: clip;
	overflow: hidden;
	white-space: nowrap;
	text-align:center;
}

.animal_card_profile_image {
	width:150px;
	height:150px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	float:left;
	margin-right:7px;
}

.animal_card_detail {
	padding-top:5px;
	font-size:12px;
}