
/*how this file works...
*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. TinyMCE specific styles
2. Custom Button Styling 
3. Styles included within tinymce editor style selector
_____________________________________________________________


/* ================ 1. TinyMCE specific styles ================ */

/*format the body content of the tinymce editable area*/
.mceContentBody {
	background: #FFF;
	font-size: 14px; font-size: 0.875rem;
	line-height: 21px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: normal;
	margin: 12px 8px !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}

h1 {
	font-size: 64px; font-size: 4rem;
   line-height: 70px;
   margin: 0 0 25px 0;
   
   color: rgba(39, 100, 156, 1);
  
   font-weight: 700;
   font-style: normal;
}

h2 { font-size: 34px; font-size: 2.125rem;
   line-height: 38px;
   letter-spacing: 0px;
   text-transform: capitalize;
   
   color: rgba(0, 60, 121, 1);
   margin: 34px 0px 3px 0px;
   font-weight: 600;
   font-style: normal; }

h3 { font-size: 33px; font-size: 2.0625rem;
   
   color: rgba(89, 152, 201, 1);
   font-weight: 600;
   font-style: normal; }

h4 { font-size: 22px; font-size: 1.375rem;
   
   color: rgba(52, 113, 157, 1); }

h5 {  font-size: 18px; font-size: 1.125rem;
   
   color: rgba(46, 81, 107, 1); }

h6 {font-size: 16px; font-size: 1rem;
   
   color: rgba(46, 81, 107, 1); }
   
p {text-indent: 0em;
   margin-bottom: 1em;
   font-size: 18px;
   font-size: 1.125rem;
   line-height: 27px;
   line-height: 1.6875rem;
   font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
   font-weight: 400;
   font-style: normal;}

/* ================ 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:link, a.button:visited, div.button a {
    
    border: solid 1px #003c79;
    background-color: #003c79;
    font-size: 20px; font-size: 1.25rem;
    font-weight: normal;
    padding: 6px 10px 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    max-width: 100%;
    display: inline-block;
    line-height:normal;
    
    
}

input[type=button]:hover, input[type=submit]:hover, a.button:hover, div.button a:hover {
    border: solid 1px #003c79;
    background-color: #003c79;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

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

a.fancy-button:link, a.fancy-button:visited, a.fancybutton:link, a.fancybutton:visited, div.fancybutton a:link, div.fancybutton a:visited, div.fancy-button a:link, div.fancy-button a:visited, input.fancy-button {
    font-weight: 600;
    font-size : 20px !important; font-size : 1.25rem !important;
    background-color: #003c79;
    border: solid 1px #df7c07;
    color: #fff !important;
    padding: 5px 10px;
    text-decoration: none;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    display: inline-block;
}

a.fancy-button:hover, a.fancybutton:hover, div.fancy-button a:hover, div.fancybutton a:hover, input.fancy-button:hover {
    -webkit-box-shadow: 0 1px 2px #8e8e8e;
    -moz-box-shadow: 0 1px 2px #8e8e8e;
    box-shadow: 0 1px 2px #8e8e8e;
    color: #fff;
    background-color: #003c79;
     border: solid 1px #003c79;
}

img.img_onethird { width: 30%; }

img.img_onehalf { width: 47%; }

img.img_twothirds { width: 63%; }

img.img_full { min-width: 100%; }

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

/*must keep the "begin content" comment here or these styles will break*/
/*styles "brandfont" should be updated with the primary web font used for this site*/

/* BEGIN SELECTABLE STYLES */

.dark { color: #333333; letter-spacing:normal;}

.mid { color: #555555; letter-spacing:normal;}

.lite { color: #999999; letter-spacing:normal;}

.red { color: #e00018 !important; letter-spacing:normal;}

.huge { font-size: 2.5em; }

.large { font-size: 2em; }

.med { font-size: 1.5em; }

.small { font-size: 1em; }

.tiny { font-size: 0.8em; }

.font-Muli {font-family: Muli;}
.font-webtest {font-family:"Foundry Sterling W01 Bk";}

/* END SELECTABLE STYLES */

