@charset "UTF-8";
/* CSS Document */

/* Thank you to - W3 schools, css snippets for navigation and Graham Clark for the 3_column responsive layout base*/


@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400i,500,600,700,800,900);


/* TYPE STYLES */

body { 
  font-family: 'Lato', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
  background-image: url(../images/body_gradient_respect.jpg);
  background-repeat: repeat-x;
}

p { 
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #333333;
}

p.reduced_leading {
  margin: 5px 0px 5px 0px;
  font-size: 14px;
  line-height: 18px;
}

p.caption { 
  margin: 5px 0px 5px 0px;
  font-size: 12px;
  line-height: 16px;
}

p.footnote { 
  margin: 0px 0px 5px 0px;
  font-size: 10px;
  line-height: 12px;
}

h1 { 
  font-size: 28px;
  font-weight: 800;
  line-height: 30px;
  color: #da3132;
}

h2 { 
  font-size: 21px;
  font-weight: 800;
  line-height: 21px;
  color: #da3132;
}

h2.multiple-lines { 
   line-height: 23px;
}

h2.full-width { 
   column-span: all;
}/* Use this when inserting multiple columns in a div */


h3 { 
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  color: #666666;
}

/* H4 - be careful - little line height - made this only for forum contacts */
h4 { 
  font-size: 14px;
  font-weight: 800;
  line-height: 14px;
}



/* SUPER & SUBSCRIPT - review pages in browser after using - div shifting may occur  - had to insert empty tags to get divs to realign */

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}

sub { 
  top: 0.4em; 
}



/* LINKS */
a:link, a:visited {
    color: #da3132;
	text-decoration: none;
}
a:hover {
    color: #c98a2d;
}

a:active {
	text-decoration: none;
}

ul.red_bullet {
  list-style-position: outside;
  font-size: 14px;
  line-height: 18px;
  padding-left: 15px;
}

ul.reg_paragraph {
  list-style-position: outside;
  font-size: 14px;
  line-height: 20px;
  padding-left: 15px;
}


ol {
  font-size: 14px;
  line-height: 18px;
  padding: 0px 0px 0px 15px;
}

ol li {
  padding: 0px 0px 5px 5px;
}

/* Social media */

.fa {
  padding: 5px;
  margin: 0px 0px 0px 5px;
  font-size: 30px;
  width: 20px;
  text-align: center;
  text-decoration: none;
}

.fa:link {
  color: white;
}

.fa:visited {
  color: white;
}
/* Hover effect */
.fa:hover {
  opacity: 0.6;
}

/* Button*/
button {
  background-color: #da3132;
  border: none;
  color: white;
  text-align: center;
  font-size: 14px;
}

/* Brand colors */

/* Facebook */
.fa-facebook {
  background: #3B5998;
  color: white;
}

/* Twitter */
.fa-twitter {
  background: #55ACEE;
  color: white;
}
/* Instagram */
.fa-instagram {
  background: #e95950;
  color: white;
}
/* Linked in */
.fa-linkedin {
  background: #4875b4;
  color: white;
}


/* UNIVERSAL STYLES */

#full, .half_page, .two_columns, .two_columns_right, .right_sidebar, #left, #middle, #right {
	margin-bottom: 10px;
}

#full, .half_page_left, .half_page_right, .two_columns, .two_columns_right, .right_sidebar, #left, #middle, #right {
	background: #f8f8f8;
}



/* STRUCTURE */

#wrapper {
	padding: 5px;
	width: 960px;
	margin: auto;
}
#full {
	width: 925px;
	float: left;
	margin: 10px 0px 5px 0px;
	padding: 5px 15px;
}

#fullcentered {
	text-align: center;
	}

#social {
	float: right;
	margin: -15px 5px 5px 0px;
}

/* This is for the policies page text  - to display only part of text - js in head of page*/
#more {display: none;}

    
.half_page_left {
	width: 445px;
	display: block;
	float: left;
	margin: 0px 5px 5px 0px;
	padding: 5px 15px;
}

.half_page_right {
	width: 445px;
	display: block;
	float: left;
	margin: 0px 0px 5px 0px;
	padding: 5px 15px;
}

.two_columns {
	width: 620px;
	display: block;
	float: left;
	margin: 0px 5px 5px 0px;
	padding: 5px 15px;
}

.two_columns_right {
	width: 600px;
	display: block;
    float: right;
    margin: 0px 5px 0px 5px;
	padding: 5px 15px;
}
	/* Class created for policies page */

.right_sidebar {
	width: 270px;
	padding: 5px 15px;
	float: left;
	margin: 0px 0px 5px 0px;
}

.left_sidebar {
	width: 270px;
	padding: 5px 15px;
	float: left;
	margin: 0px 5px 0px 0px;
}

.full_width_column {
	width: 925px;
	float: left;
	/* Class created to balance lower columns on home page */
}


img {
    max-width: 100%;
    height: auto;
}

img.border { 
   border:2px solid #bbbbbd;
}

#left {
	width: 290px;
	float: left;
	padding: 5px 15px;
}

#middle {
	width: 294px; /* Account for margins + border values */
	float: left;
	padding: 5px 15px;
	margin: 0px 5px 5px 5px;
}

#right {
	width: 270px;
	padding: 5px 15px;
	float: left;
}

#main_logo {
	float: left;
	margin-top: 10px;
}

/* FORM STYLING adapted from W3 */
input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #666666;
  border-radius: 4px;
}
input[type=subject] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #666666;
  border-radius: 4px;
}

input[type=submit] {
  background-color: #da3132;
  color: white;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #da3132;
  border-radius: 4px;
  cursor: pointer;
}

/* FORM STYLING adapted from AGM */
form {
	font-size: 14px;
	padding: 6px 10px 0px 10px;
    line-height: 20px;
}
form input {
	font-size: 14px;
	padding-top: 6px;
	line-height: 14px;
	margin-right: 12px;
}
form textarea {
	font-size: 14px;
	padding-left: 20px;
	padding-top: 6px;
	line-height: 28px;
}


footer {
	clear: both;
	padding: 0 15px;
}


/* Horizontal Rules */

hr.gradient-style {
    height: 12px;
    border: 0;
    box-shadow: inset 0 12px 12px -12px #fdd958;
}

hr.red {
    height: 2px;
    border: 0;
    color: #fdd958;
}
/* Special frame made for COVID-19 announcement */
h2 {outline-color:#ffe600;}
h2.dashed {outline-style: dashed; outline-offset: 4px;}

/* CLASSES */

/* Alignment */
.float-left  { float: left; }
.float-right { float: right; }
.float-left_padding { float: left; padding-right: 10px; }
.float-left_extra_padding { float: left; padding-right: 25px; }
.float-right_padding { float: right; padding-left: 10px; }
 
.align-left  { text-align: left; }
.align-right { text-align: right; }
.align-center {	text-align: center; }

/* Background colors */
.white { background-color: #ffffff; }
.red { background-color: #da3132; }
.yelo-gradient { background: linear-gradient(#fdd958, white); background-repeat: repeat-x; }

/*Stroke on pic boxes*/
.stroke { color: #666666; weight:400; }

/* Text weight and sizes */
.extra-bold { font-weight: 900; }
.regular_weight { font-weight: 400; }
.footnote { font-size: 10px; }

/* Text colors */
.light_grey_text { color: #666666; }
.grey_text { color: #333333; }
.red_text { color: #da3132; }
.white_text { color: #ffffff; }

/* Display and additional classes */
.clear { clear: both; }
.no-padding { padding: 0px; }
.padding-right { padding-right: 10px; }
.padding-left { padding-left: 10px; }
.padding-bottom { padding-bottom: 10px; }
.margin-right { margin-right: 5px; }
.margin-left { margin-left: 5px; }


/* NAVIGATION */
	
.nav ul {
  color: #f02706;
  text-align: right;
  }

.nav li {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-align: left;
  letter-spacing: .6px; 
}

.nav a {
  text-decoration: none;
  color: #da3132;
}

.nav a:hover {
  color: #333333;
}


/* Sub Menus */
.nav li li {
  font-size: 1.5em;
  font-weight: 700;
}

.nav li li a:hover{
  color: #333333;
}


/*******************************************
   Navigation style menu for larger screens

   Using 650px (130px each * 5 items), but ems
   or other values could be used depending on other factors
********************************************/

@media screen and (min-width: 650px) {
  .nav li {
    height: 40px;
    line-height: 36px;
    padding-left: 25px;
    font-size: .9em;
	font-weight: 700;
    display: inline-block;
    margin-right: 10px;
  }

  .nav > ul > li {
    text-align: left;
  }

  /* Sub Menus */
  .nav li ul {
	position: absolute;
    display: none;
  }

  .nav li:hover ul {
    display: block;
	margin-left: -40px;  /* Find out why I had to do this to align the dropdown */
	color: #333333;
	font-size: .65em;
	font-weight: 700;
  }

  .nav li ul li {
    display: block;
	background-color: #f1f1f1;
	padding-left: 12px;
    padding-right: 12px;
	box-shadow: 0px 1px 2px #ccc inset;
 }
}


/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/* for 980px or less */
@media screen and (max-width: 980px) {
	
	#wrapper {
		width: 94%;
	}
	
	#full {
		width: 92%;
		padding: 1% 4%;
		margin: 0px 0px 5px 0px;
	}	
	
	.half_page_left {
	    width: auto;
		padding: 1% 4%;
		margin: 0px 0px 5px 0px;
		float: none;
	}		
	
	.half_page_right {
	    width: auto;
		padding: 1% 4%;
		margin: 0px 0px 5px 0px;
		float: none;
	}	
	
	.two_columns {
	    width: auto;
		padding: 1% 4%;
		margin: 0px 0px 5px 0px;
		float: none;
	}	
    
    .two_columns_right {
	    width: auto;
		padding: 1% 4%;
		margin: 0px 0px 5px 0px;
		float: none;
	}	
		
	.right_sidebar {
	    clear: both;
		padding: 1% 4%;
		width: auto;
		float: none;
	}	
	
	#left {
		width: 41%;
		padding: 1% 4%;
	}


	#middle {
		width: 41%;
		padding: 1% 4%;
		margin: 0px 0px 5px 5px;
		float: right;
	}
	
	#right {
		clear: both;
		padding: 1% 4%;
		width: auto;
		float: none;
	}

	header, footer {
		padding: 1% 4%;
	}
}

/* for 700px or less */
@media screen and (max-width: 600px) {

	#full {
		width: auto;
		float: none;
	}	
	
	.half_page_left {
		width: auto;
		float: none;
	}	
	
	.half_page_right {
		width: auto;
		float: none;
	}
	
	.two_columns {
		width: auto;
		float: none;
	}	
    
    .two_columns_right {
		width: auto;
		float: none;
	}	
	
	.right_sidebar {
		width: auto;
		float: none;
	}	
		
	#left {
		width: auto;
		float: none;
	}
	
	
	#middle {
		width: auto;
		float: none;
		margin-left: 0px;
	}
	
	#right {
		width: auto;
		float: none;
	}
/* Sub Menus */
	
  .nav {
    padding-top: 60px;
    position: relative;
  }
	
  .nav li ul {
    position: relative;
    display: none;
  }

  .nav li:hover ul {
    display: block;
	color: #333333;
	font-size: .65em;
	font-weight: 700;
  }
}


.strong {
}

.img.border {
}

.redtext {
}

.gray_text {
}
