@charset "UTF-8";

/*this file is referenced by the public site display as well as the tiny mce editor in admin*/

/*how to use this file...
*all styles apply to the editable area of tinymce. 
*IF an item starts with a "." then it gets pulled into the style selector dropdown menu in the tiny mce editor.
*If it does not, it only applies to the editable area itself.*/
/*

CONTENTS:
_____________________________________________________________
1. General Global Styles
2. Custom Button Styling 
3. Styles included within tinymce editor style selector
_____________________________________________________________


/* ================ 1. General Global Styles - apply to public site display and tinymce ================ */

/*format the body content of the tinymce editable area (body for public display is formatted in design.css)*/
body.mceContentBody {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px; font-size: 1.125rem;
	line-height: 25px;
	font-weight:400;
	background-color: #ffffff;
	color: #222;
	margin: 12px 8px !important;

}

a:link, a:visited {	color: #222; text-decoration: underline;}
a:hover, a:active {	color: #000; text-decoration: none;}

h1, h2, h3, h4, h5, h6 {
	/*this is where all site headings are customized*/
	 margin: 30px 0 20px 0;
	line-height: normal;
	font-weight: 700;
	color: #2A2929;
}



h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong { font-weight:700; }

h1 {font-size: 42px; font-size: 2.625rem; letter-spacing: -1px; margin: 30px 0 20px 0;}
h2 {font-size: 24px; font-size: 1.5rem;}
h3 {font-size: 20px; font-size: 1.25rem;}
h4 {font-size: 18px; font-size: 1.125rem;}
h5 {font-size: 16px; font-size: 1rem;}
h6 {font-size: 14px; font-size: 0.875rem;}

/* ================ 2. Custom Button Styling ================ */
/*these styles are here so that they are included on every page in the site and in the tinymce editor display*/
input[type=button], input[type=submit], a.button, a.button:link, a.button:visited {
	border: solid 2px #003f5f;
	background-color: #fff;
	font-size: inherit;
	font-weight: 700;
	padding: 6px 12px;
	
	cursor: pointer;
	color: #003f5f;
	margin: 5px 0;
	text-decoration: none;
	opacity: 1;

	max-width: 100%;
	display: inline-block;
	font-family: 'Source Sans Pro', sans-serif;
	line-height: normal;
	
		-moz-border-radius:3px;
	-webkit-border-radius:3px;
	-o-border-radius:3px;
	-ms-border-radius:3px;
	border-radius:3px;
}

input[type=button]:hover, input[type=submit]:hover, a.button:hover {
	border: solid 2px #003f5f;
	background-color: #003f5f;
	-moz-box-shadow: 1px 1px 5px #d1d1d1;
	-webkit-box-shadow: 1px 1px 5px #d1d1d1;
	box-shadow: 1px 1px 5px #d1d1d1;
	cursor: pointer;
	opacity: 1;
	color:#fff;
}

input[type=button]:active, input[type=submit]:active, a.button:active {
	-moz-box-shadow: inset 1px 1px 5px #d1d1d1;
	-webkit-box-shadow: inset 1px 1px 5px #d1d1d1;
	box-shadow: inset 1px 1px 5px #d1d1d1;
}




a.button2, a.button2:link, a.button2:visited {
	border-color: #6b6b6b;
	background-color: #6b6b6b;
	color:#fff;}

a.button2, a.button2:hover {background-color: #6b6b6b;}

a.button2, a.button2:active {}

a.button3, a.button3:link, a.button3:visited {
	border-color: #BAD531;
	background-color: #BAD531;
	color:#fff;
	}

a.button3, a.button3:hover {background-color: #BAD531; color:#fff;}

a.button3, a.button3:active {}

a.button4, a.button4:link, a.button4:visited {
	border-color: #ff4032;
	background-color: #ff4032;
	color:#fff;
	}

a.button4, a.button4:hover {background-color: #ff4032; border-color: #ff4032; color:#fff;}

a.button4, a.button4:active {}






img.img_onethird { width: 30%; }
img.img_onehalf { width: 47%; }
img.img_twothirds { width: 63%; }
img.img_full { min-width: 100%; }


img.alignleft {
	float: left;
	margin: 0 20px 10px 0;
}

img.alignright {
	float: right;
	margin: 0 0 10px 20px;
}

img.alignnone { float: none; }



/* ================ 3. Styles included within tinymce editor style selector ================ */

/*update "brandfont" with appropriate font name and declaration for this site*/

.intro {font-size: 22px; font-size: 1.375rem; color:#6b6b6b;}
.dark { color: #6b6b6b; }
.mid { color: #4d798f; }
.lite { color: #d9e2e7; }

.red { color: #990000; }

.huge { font-size: 2.5rem; }
.large { font-size: 2rem; }
.med { font-size: 1.5rem; }
.small { font-size: 1rem; }
.tiny { font-size: 0.8rem; }
.tinier { font-size: 0.6rem;}

.Libre-Franklin {font-family: 'Libre Franklin', sans-serif;}


/* END SELECTABLE STYLES */
