/* Last updated 2/27/18 */

/* Palette color codes */

/* Feel free to copy&paste color codes to your application */



.primary-1 { background-color: #FA9583 }

.primary-2 { background-color: #BB8379 }

.primary-3 { background-color: #A23D2B }

.primary-4 { background-color: #FCB0A2 }

.primary-5 { background-color: #FCC5BA }



.secondary-a-1 { background-color: #558A9C }

.secondary-a-2 { background-color: #4D6B75 }

.secondary-a-3 { background-color: #1B5366 }

.secondary-a-4 { background-color: #87BCCE }

.secondary-a-5 { background-color: #9AC1CE }



.secondary-b-1 { background-color: #B7E578 }

.secondary-b-2 { background-color: #92AC6E }

.secondary-b-3 { background-color: #679527 }

.secondary-b-4 { background-color: #CEF29C }

.secondary-b-5 { background-color: #D7F2B3 }



/* end */



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

body {

	margin:0; padding: 2em;

	background: #111111;  

	color: white;

	font: 75%/1.33 Verdana, sans-serif;

	}

	

	ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */

	padding: 0;

	margin: 0;

}

h1 {

	margin: 0.5em 0;

	font-size: 225%;

	color: white;

	text-align: center;

	}

h2 {

	font-size: 175%;

	padding-left: 0.5em;

	color: white;

}

h3 {

	font-size: 125%;

	padding-left: 1.5em;

	color: white;

}

h4 {  /* footer font */

	padding-left: 1em;

	color: white;

}

a img {

	border: none;

}

a:link {

	color: #1A34D0;

	text-decoration: underline; 

}

a:visited {

	color: #87BCCE;

	text-decoration: underline;

}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	

}

.container {

	width: 79.5em;

	background-color: #A23D2B;

	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */

}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */

.header {

	background-color: #A23D2B;

	height: 13em;

	min-width: 0em;

}



.sidebar1 {

	/*border-right: .3em solid #000000;*/

	float: left;

	width: 13em;

	background-color: #9AC1CE;

	border-bottom: .2em solid #000000;

}

.sidebar2 {

	float: left;

	width: 13em;

	background-color: white;

}

.content {

	padding: 0em 1em 0em 1em;

	width: 64.5em;

	float: right;

}

.content table { 

	border: outset #4D6B75;

	border-color: #D7F2B3;

	background-color:#4d6b75;

	color: #000000;

		

}

	 

/* padding: top, right, bottom, left   */

.content ul, .content ol, .content dl {

	padding: 0em 3em 0em 3.5em;

	font-size:larger;

}



.content dt {

	font-style:italic;

	font-weight:bold;

	font-size:larger;

}



.content dd {

	font-style:normal;

	font-weight:normal;

		font-size:large;

}

.content hr {

	color: #B7E578;

	width: 80%;

	align-content:center;

}

ul.nav {

	list-style:none;

	padding: 0em 0em 0em 0em;

}

ul.nav li {

	border-top: .2em solid #000000;

	border-right: .1em solid #000000;

	color: #1B5366;

	font-weight:bold;

	/*margin-bottom: 15px;*/

}

ul.nav a, ul.nav a:visited  {

	display:block;

	padding: .4em .4em .4em 1em;

	width: 11.5em;

	text-decoration:none;

	font-weight:bold;

	color: #1B5366;

}

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: #1B5366;

	color: #9AC1CE;

}

ul.li {

	font-size:125%;

}





p {

	padding: 0em 2em 0em 2em;

	font-size: 140%;

	}





.color-table {
        height: 20px;	


	margin: 2em 2em 5em;

	border-collapse:collapse;

	border:none;

	border-spacing:0;

	font-size:100%;

	}

.color-table th {

        height: 20px;	

        padding: 0 1em 0 0;

	text-align:right;

	vertical-align: middle;

	font-size:110%;

	border: none;

	}

.color-table td.sample {

	width:10em; height:8em;

	padding: 1em;

	text-align:center;

	vertical-align:middle;

	font-size:90%;

	border: .1em solid white;

	white-space:nowrap;

	}

.color-table.small td.sample {

	width:4em; height:4em;

	padding:0;

	border:none;

	}

.color-table .white { margin-bottom:0.2em; color:white }

.color-table .black { margin-top:0.2em; color:black }

/* ~~ The footer ~~ */

.footer {

	padding: 1em 0;

	background-color: #BB8379;

	position: relative;/* this gives IE6 hasLayout to properly clear */

	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */

}

.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: .8em;

}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */

	float: left;

	margin-right: .8em;

}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */

	clear:both;

	height:0;

	font-size: .4em;

	line-height: 0em;

}



hr {	border:none; 	border-bottom:.5em solid silver;	} #footer { 	padding:1em; 	text-align:center; font-size:80%; 	

}



.emphasis {
	/* This class is used to emphasize certain text with bold, italic, and black font.  The rest of the site is normal and white font. */

	color: #000;
	font-weight: bold;
	font-style: italic;
	font-size: larger;

}

#submit {
	height: 4em;
	background-color: #679527;
	box-shadow: 8px 16px 8px 1px rgba(0,0,0,0.4), 8px 12px 8px 0 rgba(0,0,0,0.4);
	border-radius:12px;
	padding-bottom:1px;
	
}



#submit:hover {
	background-color: #9AC1CE;
	
	
}

#reset {
	height: 4em;
	background-color: #679527;
	box-shadow: 8px 16px 8px 1px rgba(0,0,0,0.4), 8px 12px 8px 0 rgba(0,0,0,0.4);
	border-radius:12px;
	padding-bottom:1px;
	
}

#reset:hover {
	background-color: #9AC1CE;
	
	
}
