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

/* COLORS 
		0061FF = Warm Blue 
		000 = Black
		#FF0 = Yellow 
		#0052B0 = Key Matte Blue 
		#0041ED = Hover Blue for Nav
		#0046FF = Modern Blue Tech
		#263F7F = Gray Blue (Monochromatic of M.B.T.)
		#051932 = Dark Matte Blue (Background Color?)
		#0825A6 = Navigation Blue 
*/


/* GENERAL */


body {
	
	margin: 0px;
	overflow:scroll;
	overflow-x:hidden;
	z-index:-10;
	background-color:#FFF; 
	background-image: url(../images/bg_repeating_squares_3_lc.png);
	background-repeat: repeat-x;
	
}
table {
	background-color: #FFFFFF;
}




/* TEXT STYLES */
.txt_page_header {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:24px;
	font-style: normal;
	font-weight: bold;
	text-decoration:none;
	color: 0061FF;
	text-align:center;
}

.txt_content {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:18px;
	font-style: normal;
	font-weight: normal;
	text-decoration:none;
	color: 000;
	text-align:left;
}

.txt_notes {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:16px;
	font-style: italic;
	font-weight: normal;
	text-decoration:none;
	color: 000;
	text-align:center;
}

.txt_highlights {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:18px;
	font-style: normal;
	font-weight: bold;
	text-decoration:none;
	color: #0046FF;
	text-align:center;
}

.txt_footer {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:14px;
	font-style: italic;
	font-weight: normal;
	text-decoration:none;
	color: #0052B0;
	text-align:center;
}


/*	GLOBAL LINK STYLES */

a:link {
	font-family:Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif';
	font-size:20px;
	font-style: normal;
	font-weight: normal;
	text-decoration:none;
	color:#0052B0;
	text-align:left;
}
a:visited {
	font-family:Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'
	font-size:20px;
	font-style: normal;
	font-weight: normal;
	text-decoration:none;
	color: #0052B0;
	text-align:left;
}
a:hover {
	font-family:Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'
	font-size:20px;
	font-style: normal;
	font-weight: normal;
	text-decoration:underline;
	color: #0052B0;
	text-align:left;
}
a:active {
	
}


/*	FOOTER LINK STYLES  */

a.link_footer:link {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:14px;
	font-style: italic;
	font-weight: normal;
	text-decoration:none;
	color:#0052B0;
	text-align:left;
}
a.link_footer:visited {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:14px;
	font-style: italic;
	font-weight: normal;
	text-decoration:none;
	color: #0052B0;
	text-align:left;
}
a.link_footer:hover {
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size:14px;
	font-style: italic;
	font-weight: normal;
	text-decoration:underline;
	color: #0052B0;
	text-align:left;
}
a.link_footer:active {
	
}





/* IMAGES */
.img_border {
	border:2px;
	border-color:#000;
	border-style:solid;
}



	/* FUTURE STYLES 
	
.img_style1 {
	border:5px;
	border-color:#000;
}
	*/





/* code from 241spring2016 for website buttons */

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








/* New CSS Navigation with drop down menus */
/* I Modified it already, font size and color and spacing From Louie's Site */
#primary_nav_wrap
{
	margin-top:6px
}

#primary_nav_wrap ul  /* THIS CONTROLS THE BACKGROUND COLOR OF THE NAV BAR */
{
	list-style:none;
	position:relative;
	float:left;
	margin:0;
	padding:0;
	background:#f5f5f5;
	width:100%;
	/*border-bottom: 6px solid #e2e2e2;*/
	
}

#primary_nav_wrap ul a    /* THIS CONTROLS THE FORMAT OF THE TEXT AT NORMAL STATE */
{
	display:block;
	color:#0825A6;
	text-decoration:none;
	font-size:18px;
	line-height:32px;
	padding:0 50px;
	font-weight:700;
}

#primary_nav_wrap ul li
{
	position:relative;
	float:left;
	margin:0;
	padding:0;
	background:#f5f5f5;
}

#primary_nav_wrap ul li.current-menu-item
{
	background:#ddd;
}

#primary_nav_wrap ul li:hover     /* THIS CONTROLS THE TEXT ROLLOVER STATE */
{
	background:#0052B0;
}
#primary_nav_wrap ul li:hover a {
	color:#fff;
	/*color:#0041ED;*/	
}

#primary_nav_wrap ul ul
{
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#fff;
	padding:0;
	border-bottom: none;
}

#primary_nav_wrap ul ul li
{
	float:none;
	width:138px
}

#primary_nav_wrap ul ul a
{
	line-height:120%;
	padding:10px 15px
}

#primary_nav_wrap ul ul ul
{
	top:0;
	left:100%
}

#primary_nav_wrap ul li:hover > ul
{
	display:block
}


.image-source-link {
	color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
	opacity: 0;
	-webkit-backface-visibility: hidden;
	/* ideally, transition speed should match zoom duration */
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition: all 0.3s ease-out; 
	-o-transition: all 0.3s ease-out; 
	transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
		opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
		opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
	opacity: 0;
}