@charset "UTF-8";

/*this file is referenced by the public site display and maybe not the tiny mce editor in admin*/
/* There is also a duplicate of this as editor.css to work around a rebuild issue found in 2023 */
/* MAKE SURE TO UPDATE BOTH FILES */

/*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.mce-content-body {
	font-family: 'Rubik', sans-serif;
	font-size:16px; font-size: 1rem;
	line-height: 25px;
	background-color: #ffffff;
	margin: 12px 8px !important;
	color: #23201e;
	font-weight:400;
}

a:link, a:visited {	color: #003a5d;	text-decoration: underline;}
a:hover, a:active {	color: #005a90;	text-decoration: none;}

h1, h2, h3, h4, h5, h6 {
	/*this is where all site headings are customized*/
	margin: 20px 0 15px 0;
	line-height: normal;
	font-weight: 500;
	color: #003a5d;

}

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

h1 {
	font-size: 32px;
	font-size: 3.2rem;
	letter-spacing: -1px;
	margin: 2% 0 1%;
	color:#0082ca;
}

h2 {
	font-size: 32px;
	font-size: 2rem;
}

h3 {
	font-size: 28px;
	font-size: 1.75rem;
}

h4 {
	font-size: 24px;
	font-size: 1.5rem;
}

h5 {
	font-size: 19px;
	font-size: 1.2rem;
}

h6 {
	font-size: 16px;
	font-size: 1rem;
}

/* ================ 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 {
	background-color: #0082ca;	
	border: 1px solid #0082ca;
	border-radius: 5px; 
	font-size: inherit;
	font-weight: normal;
	padding: 6px 22px;
	cursor: pointer;
	color: #fff;
	margin: 5px 0;
	text-decoration: none;
	transition: background .4s ease;
	max-width: 100%;
	display: inline-block;
	font-family: inherit;
	line-height: normal;	
}

input[type=button]:hover, input[type=submit]:hover, a.button:hover {
	cursor: pointer;
}

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


a.button1, a.button1:link, a.button1:visited {
	background-color: #0082ca; 
	border: 1px solid #0082ca;
	border-radius: 5px; 
	color: #fff;
}
a.button1:hover { background-color: #fff; color:#005A90; 	font-weight: normal; border: 1px solid #0082ca;	box-shadow: 0 0 5px #dedede;}


a.button2, a.button2:link, a.button2:visited {
	background-color: #9CE044; 
	border: 1px solid #9CE044;
	border-radius: 5px; 
	color: #043B5C;
}
a.button2:hover { background-color: #fff; color:#005A90; 	font-weight: normal; border: 1px solid #9CE044;	box-shadow: 0 0 5px #dedede;}


a.button3, a.button3:link, a.button3:visited {
	background: #8685c6;
	border: 1px solid #8685c6;
	border-radius: 5px; 
	color: #fff;
}
a.button3:hover { background-color: #fff; color:#005A90; 	font-weight: normal; border: 1px solid #8685c6;	box-shadow: 0 0 5px #dedede;}


a.button4, a.button4:link, a.button4:visited {
	background: #ff6c0c;
	border: 1px solid #ff6c0c;
	border-radius: 5px; 
	color: #fff;
}
a.button4:hover { background-color: #fff; color:#005A90; 	font-weight: normal; border: 1px solid #ff6c0c;	box-shadow: 0 0 5px #dedede;}


img.img_onethird { width: 33.333333%; }
img.img_onehalf { width: 50%; }
img.img_twothirds { width: 66.666666%; }
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: 26px; 
	font-size: 1.625rem;
	color: #003a5d;
	line-height:32px;
}

.dark { color: #003a5d; 	font-weight: normal;}

.light { color: #0082ca; 	font-weight: normal;}


.huge	{font-size: 84px;    font-size: 5.25rem; line-height: .9;}
.large	{font-size: 35px; font-size: 2.1875rem;  line-height: .9;}
.medium	{font-size: 24px; font-size: 1.5rem; line-height: 1;}
.normal {font-size: 16px; font-size: 1rem;}
.small	{font-size: 14px; font-size: 0.875rem;}
.tiny	{font-size: 11px; font-size: .7rem; }


/* END SELECTABLE STYLES */
