@charset "utf-8";
/******************** 

Reseting Elements & IE Fixes:

Most major browsers add their own basic styles to elements, like a border around an input form or a margin under a paragraph block. Resetting them helps make sure that we style each element individually and that its cross-browser compatible.

********************/

html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, a, blockquote, pre, fieldset, table, th, td, textarea, input{ 
	margin: 0; padding: 0;}

a img {border:none;}

/* This takes out the fuzzy line around links when you click them, it's an optional addition */

:focus {outline:none;}


#logo{
	border-bottom:1px solid #f1f1f1;
	text-align:center;
	background-color:#FFF;
}

body{
	background-color:#f6f6f6;
	font-family:Georgia, "Times New Roman", Times, serif;
	color:#333;
	font-size:16px;
}


#menu {
	display:block;
	text-align:center;
	padding:12px;
}
#menu li {
	list-style:none;
	display:inline;
	font-size:16px;
	margin-left:14px;
	padding-right:14px;
	border-right:1px solid #333; 
}


#menu li a{
	color:#333;
	text-decoration:none;
}

#menu li a:hover{
	color:#333;
	text-decoration:underline;
}


#menu li a.active{
	color:#BE1D2C;
	text-decoration:none;
}

.clear{
	clear:both;
}

#wrapper {
	/*width:961px;*/
    max-width: 961px;
	margin:auto;
	margin-top:15px;
	background-color:#fff;
	border:1px solid #f1f1f1;
}

#content {
	border-top:1px solid #f1f1f1;
	margin-top:15px;
	background-color:#FFF;	
}

#content_wrapper{
	/*width:961px;*/
    max-width: 961px;
	margin:auto;
}

/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
	margin: 0px;
}

/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	/*margin: 1% 0 1% 1.6%;*/
}
.col:first-child { margin-left: 0; }

/*  GRID OF TWO  */
.span_2_of_2 {
	width: 55.4%;
}
.span_1_of_2 {
	width: 44.5%;
}
.span_2_of_2 img { 
    width: 100%;
}
.span_1_of_2 img{ 
    width: 100%; 
}

#tagline {
    color: #ffffff;
    background-color: #850506;
    box-sizing: border-box;
    display: inline-block;
    font-size: 24px;margin: 0;
    padding: 3px 25px 3px 30px;
    vertical-align: middle;
    height: 259px;
    display: flex;
    align-items: center;
}

#disclaimer {
    width: 100%;
}

#text{
	padding:10px;	
}

#text p{
	line-height:25px;
	margin-bottom:20px;		
}

#text a{
	color:#BE1D2C;	
}

#text a:hover{
	color:#BE1D2C;
	text-decoration:none;
}

#text h1{
	margin-bottom:20px;
	color:#BE1D2C;
	font-size:24px;
	font-weight:normal;	
}


#footer{
	font-size:14px;
	line-height:1.3em;
}


#content ul{
	list-style:none;
}

#content li{
	margin-bottom:10px;
	margin-left:15px;
	line-height:2em;	
}

#content img{
	border:1px solid #f1f1f1;	
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 961px) {
    /*.col { 
        margin: 1% 0 1% 0%;
    }*/
    .span_2_of_2 { 
        width: 100%;
    }
    .span_2_of_2 img { 
        width: 100%;
    }
    .span_1_of_2 { 
        width: 100%; 
    }
    .span_1_of_2 img{ 
        width: 100%; 
    }
    #tagline {
        height: 140px;
        padding: 3px 20px 3px 25px;
    }
}
@media only screen and (max-width: 385px) {
    #logo img{
        width: 95%;
        max-width:100%;
        height: 95%
    }
}