﻿@import url('layout.css');
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	color: #000;
}
#container {
	width: 100%;
	height: 100%;
	background-color: #4472c4;
}
#masthead {
	width: 100%;
	overflow: auto;
	text-align: right;
	background-color: #4472c4;	
}
#page_content {
	position: relative;
}
#content {
	margin-left: 0px;
	padding: 10px;
	background-color: #fff;
}
#footer {
	clear: both;
	width: 99%;
	overflow: hidden;
	padding-top: 1%;
	padding-right: 0;
	padding-bottom: 1%;
	padding-left: 1%;
	background-color: #b6ccf3;
}
#masthead img {
	float: left;
	width: 100%;
	height: 50%;
}
#masthead #ec_logo {
	background-image: url('../images/dbc_lighthouse_logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	height: 185px;
}
#masthead p {
	font-size: 80%;
	margin: 0;
	margin-right: 1%;
	color: white;
}
#masthead a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	color: black;
}
#masthead a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	color: black;
}
#masthead h1, h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: white;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Arial, Helvetica, sans-serif;
	color: black;
}

/* Styles for Navigation */
#sidebar ul {
	list-style-type: none;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}
#sidebar li {
	display: block;
	border: 1px solid #cb8;
}
#sidebar a {
	font-weight: bold;
	text-decoration: none;
	color: #ffffff;
	padding: 5%;
	display: block;
	border-bottom: 1px solid #f5f5f5;
}
#sidebar a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #393939;
	border-bottom: 1px solid #4472c4;
	background-color: #4472c4;
}
/* Styles for Footer */
#footer p {
	font-size: medium;
	color: black;
}
#footer a {
	color: black;
	text-decoration: underline;
}
#footer a:hover {
	color: #4472c4;
	text-decoration: none;
}
a {
	color: #4472c4;
	text-decoration: underline;
}
a:hover {
	color: #78a;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}
img {
  width: auto ;
  max-width: 100% ;
  height: auto ;
} 
blockquote
{
	color: rgb(68,114,196);
	font-style: italic;
}
/***********  Responsive CSS ***************/
@media screen and (max-width:800px){
	body {
		line-height: 1.2;
		font-size: 1.05em;
	}
	h1 {
		font-size: 1.3em;
	}
	h2 {
		font-size: 1.15em;
	}
	
}
@media (max-width: 640px) {
  img {
    width: 95%; 
    height: 95%;
  }
}

@media screen and (max-width:530px){
	body {
		line-height: 1.3;
	}
	h1 {
		font-size: 1.2em;
	}
	h2 {
		font-size: 1.1em;
	}	
}
/* 
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: 568px),
(min-device-width: 320px) and (max-device-width: 568px)  {

	/* 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;
	}
