/***********************************************************
 Common Elements
************************************************************/
a {
	text-decoration: none;
	color: #fff;
}

/***********************************************************
 Page: List of Animals
************************************************************/
.list-body {
	background-color: white	
}

.list-table {}

.list-item {
	width: 200px;
	text-align: center;
	vertical-align: top;
	padding:10px;
	/*  border: #ddd solid 1px;  */
}

.list-animal-photo-block {
	   width: 98%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
}

.list-animal-photo {
    border-style: none;
    border-width: 0;
    height: auto;
    width: 100%;
}

.list-animal-info-block 
{
	display: table;
	width: 100%;	
	margin-top: -3px;
	margin-left: auto;
	margin-right: auto;
}

.list-animal-id {
	font-family: "Open Sans", "Arial", sans-serif;
	font-style: italic;
	font-size: 70%;
	line-height: 125%;
	color: #fff;
	background-color: #a0cdd1;
	padding: 0px 0px 10px 0px;
}

.list-animal-name {
	font-family: "Open Sans", "Arial", sans-serif;
	color: #fff;
	font-size: 120%;
	font-weight: bold;
	margin: 0px;
	background-color: #a0cdd1;
    padding: 10px 10px 5px 10px;
}

.list-anima-species, .list-animal-sexSN, .list-animal-breed, .list-animal-age, .list-animal-detail, .list-animal-breed, .list-animal-foundtype
{
	font-family: "Open Sans", "Arial", sans-serif;
	font-size: 70%;	
	color: #666666;
	background-color: #f2f2f2;
	text-align: left;
	padding: 3px 30px;
}
.list-anima-species{
	padding-top: 25px;
}
.list-animal-age{
	padding-bottom: 25px;
}

/***********************************************************
 Page: Animal Details
************************************************************/

.detail-body {
	background-color: white;
	font-family: "Verdana", "Helvetica", "Arial", sans-serif;
}

.detail-link {
	font-size: 80%;
}

.detail-photo-links {
	font-size: 80%;
}
	
.detail-table {
    border-style: solid;
    border-color: #BBBBBB;
    border-width: 0px;
    border-bottom-width: 1px;
    border-right-width: 1px;
	font-family: "Verdana", "Helvetica", "Arial", sans-serif;
	font-size: 70%;
	margin-bottom: 6px;
	margin-left: 3px;
	margin-right: 0px;
	margin-top: 0px;    
}

.detail-label {
	height: 18px;
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-color: #BBBBBB;
    padding-right: 3px;
    padding-left: 8px;
    white-space: nowrap;
}

.detail-value {	
    border-style: solid;
    border-top-width: 1px;
    border-left-width: 1px;
    border-bottom-width: 0px;
    border-right-width: 0px;    
    border-color: #BBBBBB;
    padding-right: 8px;
    padding-left: 3px;
    white-space: nowrap;
}

.detail-value-checkbox 
{
	font-family: Consolas, Courier;
	
}

.detail-animal-name {
	font-family: "Open Sans", "Arial", sans-serif;
	font-size: large;
	font-weight: bold;
	color: #666666;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom:3px; 
	margin-left:3px
}

.detail-animal-photo {
	border-width: 0;
}

.detail-animal-desc {
	font-family: "Verdana", "Helvetica", "Arial", sans-serif;
	font-size: 70%;
	line-height: 150%;
	margin-bottom: 8px;
}

.detSize 
{
    visibility:hidden;
    height: 0px;
}

.button{
	border:0px;
	display:block;
	width:104px;
	height:17px;
	padding-top:1px;
	background:#f68428 url(../images/bg-button_104x18.png) no-repeat top left;
	
	font-family:"Open Sans";
	font-size:12px;
	text-align:center;
	text-decoration:none;
	color:white;
}
button.button{
	padding-top:0px;
	height:18px;
}
a.button:hover {
	color:white;
	text-decoration: underline;
}
.button.green{
	background-color:#a9b93c;
}	
.button.orange{
	background-color:#f68428;
}	
.button.blue{
	background-color:#37bcdf;
}	
.button.brown{
	background-color:#663700;
}
.navHeaderText
{
    font-family:arial;
	font-size:12px;
}
.hidden { display: none; }


/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
		
	td { 
		/* Behave  like a "row" */
		position: relative;
		max-width: 300px;
	}
	
	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}

}