@charset "utf-8";
body  {
	font: 100% "Times New Roman", Times, serif;
	background: #fff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
  background-image: url(assets/body-bg.jpg);
  background-repeat: repeat-x;
}
.red {
	color: #ff0000;
}
.large {
	font-size: 120%;
}
.center {
	width: 90%;
	margin: 20px auto;
	text-align: center;
}
.left {
	float: left;
	text-align: left;
}
.right {
	text-align: right;
}
.bold {
	font-weight: 600;
}
.small {
	font-size: 80%;
}
.divider {
	clear: both;
}
h2,h3,h4,h5,h6 {
	margin: 2em 0 1em 0;
}
#container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
} 

#header {
	margin: 0;
	padding: 0;
	padding-top: 10px;
	background: #fff;
}
#header img:first-child {
	width: 96%;
	margin: 0 auto;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #f5f5f5; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	margin-right: 20px;
	text-align: center;
}

#mainContent {
	margin: 0 0 0 230px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #262925;
	font-size: 18px;
	text-align: left;
	font-family: "Times New Roman", Times, serif;
	padding: 10px 20px 40px 20px;
}
#mainContent h1 {
	text-align: center;
}
#mainContent a {
	font-size: 110%;
	color: #A60303;
	text-decoration: underline;
}
#mainContent a:hover {
	color: #f00;
}
#mainContent ol.list li {
	margin: 10px auto;
}
#mainContent ul.default {
	min-height: 60px;
	width: 100%;
	margin-bottom: 2em;
}
#mainContent ul.default li {
	float: left;
	list-style-type: none;
	margin: 5px 8px;
	margin-right: 1px solid #ddd;
}
#mainContent ul.default li a {
	font-size: 1.1em;
	line-height: 1.6em;
}
#mainContent ul.list {
	font-size: 1em;
	line-height: 1.4em;
	text-transform: capitalize;
	letter-spacing: none
}
#mainContent ul.list span{
	font-size: 1.1em;
	color: #A60303;
	text-transform: capitalize;
}
#mainContent .button {
	font-size: 1.2em;
	line-height: 1.3em;
	padding: 0.5em 1em;
	margin: 1em auto;
	border-radius: 6px;
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#D6D6D6; 
	margin-top: 40px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	color: #000000;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
	text-align: center;
}.heading1 {
	text-align: center;
	color: #262925;
	
	font-size: 22px;
	font-weight: bold;
}
.footer {
	text-align: center;
	color: #A60303;
	background-color: #D6D6D6;
	
}
.headerred {
	
	font-size: 22px;
	font-weight: bold;
	color: #590202;
	text-align: center;
}
.heading3 {
	color: #A60303;
	font-weight: bold;
	text-align: center;
}
.heading4 {
	color: #a60303;
	font-size: 24px;
	text-align: center;
}
#container #mainContent .heading3 .heading4 .headerred .heading3 {
	text-align: center;
	font-weight: bold;
}
#container #mainContent .heading3 .heading4 {
	text-align: center;
}
#container #mainContent .hoflinks {
	font-size: 18px;
}
#container #mainContent table tbody tr td p {
	text-align: left;
}

#mainContent table{
	width: 100%;
}

.pic {
	margin-right: 15px;
	width: 143px;
	border-radius: 4px;
}
.centerparagraphitalic {
	font-size: 18px;
	font-style: italic;
	text-align: center;
	
}

#container p .footer {
	text-align: center;
}
#container #mainContent div center table tbody tr td .MsoNormal {
	font-family: "Times New Roman", Times, serif;
}
p {
  text-align: left;
  font-size: 1.1em;
}
.framed {
  padding: 1em;
  border: medium solid #434343;
  margin: 1em;
}

.full {
  width: 96%;
  height: auto;
}
.half {
  width: 46%;
  height: auto;
  float: left;
  margin: 0;
  padding: 0;
}
.entry {
  margin: 2em 0;
  border-top: 1px solid #dedede;
}
.content_image {
  margin: 1%;
  margin-right: 15px;
  text-align: center;
  padding: 2px 0;
  border-radius: 6px;
}
.content_image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.content_image p {
  text-align: center;
  font-size: 0.9em;
  margin-top: 0;
  margin-bottom: 1.5em;
}
table td {
  vertical-align: top;
  padding: 1%;
}
table.pic_gallery td {
  width: 48%;
  padding: 2%;
  vertical-align: top;
}

#footer {
  clear: both;
}
/* ================== MOBILE STYLES =================== */


@media screen and (max-width: 960px) {
body {
	margin: 0;
	background: none;
}
#container {
	width: 98%;
	padding: 0;
	margin: 0 5px;
}
#sidebar1 {
	margin: 0;
	padding: 20px 0;
	width: 100%;
}
#sidebar1 table {
	width: 100%;
	border-collapse: collapse;
        table-layout: auto;
}
#sidebar1 table tr {
	width: 25%;
	float: left;
}
#sidebar1 table tr td {
	width: 25%;
	margin: 0 auto;
	padding: 2px 0;
}
#sidebar1 .sidebar_pic {
	display: none;
}
#mainContent {
	clear: both;
	margin: 0;
	width: 92%;
}
#mainContent h2 {
	margin-top: 2em;
	clear: both;
}
#mainContent h2:first-child {
	margin-top: 2em;
	clear: none;
}
#mainContent table{
	width: 100%;
	border-collapse: collapse;
        table-layout: auto;
}
#mainContent img {
	width: 100%;
	height: auto;
}
.pic {
	margin-bottom: 15px;
	width: 143px;
	border-radius: 4px;
}
.half {
  margin: 2% 1%;
  width: 48%;
}

}

@media screen and (max-width: 800px) {

#sidebar1 table tr {
	width: 33%;
}
#sidebar1 table tr td {
	width: 33%;
}
#sidebar1 table tr td img {
	width: 90%;
	margin: 0 auto;
}
}

@media screen and (max-width: 620px) {

#sidebar1 table tr {
	width: 50%;
}
#sidebar1 table tr td {
	width: 50%;
}
#sidebar1 table tr td img {
	width: 90%;
	margin: 0 auto;
}
.full {
  width: 100%;
}
.half {
  width: 100%;
}
}


@media screen and (max-width: 420px) {

.founder_pic {

}

#sidebar1 table tr {
	width: 50%;
}
#sidebar1 table tr td {
	width: 50%;
	margin: 0 auto;
}
#sidebar1 table tr td img {
	width: 90%;
	margin: 0 auto;
}
}