/* CSS Document */

body {
	background-color: #F7F5F0;
}
table {
	width: 750px;
	border-collapse: collapse;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	color: #000;
	}

/* Zebra striping */
tr:nth-of-type(odd) {
	background-color: #EBEBEB;
	}

th {
	color: white;
	font-weight: bold;
	background-color: #660000;
	}

td, th {
	padding: 5px;
	border: 1px solid #FFC6C6;
	text-align: left;
	font-size: 1.5 em;
	}


/* 
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)  {

	table { 
	  	width: 100%; 
	}

	/* 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;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	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;
		/* Label the data */
		content: attr(data-column);

		color: #000;
		font-weight: bold;
	}
}
/* End of Table styles */


.floatright{
	float: right;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 2em;
}
.floatleft {
	float: left;
	padding-top: 1em;
	padding-bottom: 1em;
	padding-right: 1em;
}
.floatcentre {
	margin-right: auto;
	margin-left: auto;
	display: block;
}
.bold {font-weight: bolder;}

#content p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: normal;
	color: #666;
}
p.center {
	text-align: center;
}

/* Page links */
#content a {
	color: #990000;
	font-weight: bold;
}
#content a:hover {
	color: #F60;
}
footer a {
	font-weight: bold;
}
footer a:hover {
	color: #FC0;
}
h1.center, h2.center, h3.center {
	text-align: center;
}
p.subtitle {
	font-size: 1em;
	margin-top: 5px;
	text-align: center;
	font-weight: bold;
}
h4 {
	font-size: 1em;
	font-weight: bold;
	margin-top: 3em;
}
.flex-caption {
	color: #4F0000;
	padding-top: 1em;
	padding-bottom: 1em;
}
.backgroundcontrast {
	background-color: #F5EEE0;
}
.imageshad {
	-moz-box-shadow: 3px 3px 15px #000;
	-webkit-box-shadow: 3px 3px 15px #000;
	box-shadow: 3px 3px 15px #000;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
    /* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
	display: block;
	margin-bottom: 2em;
}

.headinglocal {
	font-size: 1em;
	font-weight: bold;
	color: #500;
}
.separator {
	border-top-width: 8px;
	border-top-style: double;
	border-top-color: #EBE3D6;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
