@charset "utf-8";
body {
	background-color: #e7e7e7;
	margin: 0;
	padding: 0;
	color: #494949;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.4;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl {
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}
img {
	max-width: 100% !important;
	height: auto;
	display: block;
}
a img {
	border: none;
}
a:link {
	color: #d40000;
	text-decoration: underline;
}
a:visited {
	color: #d40000;
	text-decoration: underline;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	color: #000;
}
.alignright {
	margin-bottom: 10px;
	margin-left: 10px;
	float: right;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 76%;
	background-color: #FFFFFF; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	margin-top: 20px;
	border: thin solid #ccc;
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #d40000;
	height: auto;
	margin-bottom: 10px;
	color: #FFF;
	padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
}
.sidebar {
	float: right;
	width: 20%;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.sidebar img {
	margin-right: auto;
	margin-left: auto;
	border: 5px solid #e7e7e7;
}
.content {
	padding: 10px 0;
	width: 76%;
	float: left;
}
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px;
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	border-top-width: 5px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #d40000;
	border-right-color: #e7e7e7;
	border-bottom-color: #e7e7e7;
	border-left-color: #e7e7e7;
}
ul.nav li {
	border-bottom: 1px solid #e7e7e7; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block;
	width: auto;
	text-decoration: none;
	background-color: #fff;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #e7e7e7;
	text-decoration: underline;
}
/* ~~ Tables ~~ */
table {
	border: 1px solid #e1e1e1;
	width: 96.6%;
	padding: 0;
	border-collapse: collapse;
	border-spacing: 0;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
}
table tr {
	border: 1px solid #ddd;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	background-color: #F1F1F1;
}
table img {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
table th, table td {
	text-align: center;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}
table th {
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	background-color: #222;
	color: #FFF;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #d40000;
}
/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background-color: #fff;
	position: relative;
	clear: both;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e7e7e7;
	margin-top: 10px;
	padding-top: 20px;
	text-align: center;
}
/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
 @media (max-width:990px) {
.container {
	width: 80%;
}
.content {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	font-size: 14px;
	margin-top: 20px;
	border: none;
}
.sidebar {
	float: right;
	width: 100%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
header {
	background-color: #d40000;
	height: auto;
	margin-bottom: 10px;
	color: #FFF;
	padding: 10px;
}
footer  {
	font-size: 12px;
}
}
 @media screen and (max-width: 740px) {
table {
	border: 0;
}
table thead {
	display: none;
}
table tr {
	margin-bottom: 10px;
	display: block;
	border-bottom: 2px solid #ddd;
}
table td {
	display: block;
	text-align: right;
	font-size: 13px;
	border-bottom: 1px dotted #ccc;
}
table td:last-child {
	border-bottom: 0;
}
table td:before {
	content: attr(data-label);
	float: left;
	text-transform: uppercase;
	font-weight: bold;
}
table img {
	padding-left: 30px;
}
}
