@charset "UTF-8";
body {
	font:105%/1.45 Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #F6F6F6;
	margin: 0;
	padding: 0;
	color: #000;
	
	
}

/* ~~ Element/tag selectors ~~ */
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;
}

/*for pages under "programs" only*/
/*defines links*/
.olmargin {margin-left:50px;}

h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	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;
}

/*for lists in side yellow boxs, which have working links only*/
.underline {text-decoration:underline !important;}
.underline:hover {color:#6699ff;}


/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
 	-moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	 box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	width: 80%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 925px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background-color: #FFF !important;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ 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                                     { width:100%; height:145px; background:#fff !important url(images/logo_right.png) no-repeat right;}
.logo_part                                  { height:145px; background:url(/images/nav_shadow.png) repeat-x bottom; padding:0 10px;}
.logo_left                                  { width: 40%; float:left; padding: 1% 0;}
.logo_right                                 { width: 50%; float: right; padding:2% 0;}
.search                                     { width: 230px; float: right; color: #525252; font-size:11px;}
.search input                               { width: 200px; height:20px; border:1px solid #838383; background:#fff; float:left; margin:10px 0;}
.go                                         { width: 20px; height:20px ; float:right; margin-left:5px; text-align: center; color: #0c82d4; font-size:12px; font-weight:bolder; margin-top:15px;}


/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 30%;
	clear:both;
}
.events {
	background-color: #FFF3BA;
}
.events h3 {
	background-color: #D1AF00;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;
}
.events li {
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
}

.eventsblue {
background-color: #EDF2F2;

}
.eventsblue h3 {
background-color: #C9D1D3;
padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;

}

.eventsblue p {
	    		font-size:80%;
;

}
.eventsblue li {
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;

}

.job-board {
	background-color: #FFF3BA;
	color: #000;
	text-decoration: none;
	text-transform:uppercase;
}
.job-board a {
	color: #000;
	text-decoration:none;
}

.job-board li {
	list-style:none;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
}

.job-board h4 {
	background-color: #D1AF00;
	padding-bottom: 10px;
	padding-top: 10px;
	text-align: center;
	
}

.maincontent {
	width: 66%;
		float: left;
		background-color: #fff !important;
		padding-top: 10px;
		
}
.mainsidebar {
	width: 33%;
		float: right;
		background-color: #fff !important;
		padding-top: 10px;
}
.content {
	width: 33%;
		float: left;
		background-color: #fff !important;
		
}
.content2 {
	width: 66%;
		float: right;
		background-color: #fff !important;
}
.contentleft {
	width: 100%;
		float: left;
		background-color: #fff !important;
}
.contentmiddle {
	width: 50%;
		float: left;
		background-color: #fff !important;
}
.contentright {
	width: 50%;
		float: right;
		background-color: #fff !important;
}
.upperbox {
	width: 100%;
		float: left;
		padding-top: 20px;
		font-size: 80%;
		padding-bottom: 20px;
		border-bottom:thin solid #CFCFCF;
		margin-bottom:10px;
		background-color: #FFFFFF !important;
}
.upperboxnextmeeting {
	width: 50%;
		float: left;}
		
.upperboxupcomingevents {
	width: 50%;
		float: right;
}
.upperboxslideshow {
	width: 65%;
		float: left;}
		
.upperboxabout {
	width: 35%;
		float: right;
		background-color:#FFFFFF !important;
}

.passage {
	float:left; width:100%;}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
	padding: 0px 0;
	background-color: #F6F6F6;
	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 */
}

.footer p {
	padding-top: 10px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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: 8px;
}
.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: 8px;
}
.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: 1px;
	line-height: 0px;
}

img {max-width:100%;
max-height:100%;
}

.eventimg {text-align:center; }

.event-textbox {text-align: center;
background-color: #366B82;
color:#FFF !important;
margin-left: 15px;
margin-right: 15px;
padding-top: 15px;
padding-bottom: 5px;
margin-bottom: 20px;
max-width: 100%;
}

.event-textbox a {
color:#FFF !important;
text-decoration:none;
}


a img {max-width:100%;
max-height:100%;
}

#wrap	{
	width: 100%; /* Spans the width of the page */
	height: 50px; 
	margin: 0; /* Ensures there is no space between sides of the screen and the menu */
	z-index: 9000; /* Makes sure that your menu remains on top of other page elements */
	position: relative; 
	background-color: #366b82;
	}
	
	.navbar	{
	height: 50px;
        padding: 0;
	margin: 0;
	position: absolute; /* Ensures that the menu doesn’t affect other elements */
	border-right: 1px solid #54879d; 
	z-index: 30;
	}
	
	.navbar li 	{
			height: auto;
			width: 100px;  /* Each menu item is 100px wide */
			float: left;  /* This lines up the menu items horizontally */
			text-align: center;  /* All text is placed in the center of the box */
			list-style: none;  /* Removes the default styling (bullets) for the list */
			font: normal bold 12px/1.2em Arial, Verdana, Helvetica;  
			padding: 0;
			margin: 0;
			background-color: #366b82;
                        }
	.navbar a	{							
		padding: 18px 0;  /* Adds a padding on the top and bottom so the text appears centered vertically */
		border-left: 1px solid #54879d; /* Creates a border in a slightly lighter shade of blue than the background.  Combined with the right border, this creates a nice effect. */
		border-right: 1px solid #1f5065; /* Creates a border in a slightly darker shade of blue than the background.  Combined with the left border, this creates a nice effect. */
		text-decoration: none;  /* Removes the default hyperlink styling. */
		color: white; /* Text color is white */
		display: block;
		}
		
		.navbar li ul 	{
		display: none;  /* Hides the drop-down menu */
		height: auto;									
		margin: 0; /* Aligns drop-down box underneath the menu item */
		padding: 0; /* Aligns drop-down box underneath the menu item */			
		}				

.navbar li:hover ul 	{
                        display: block; /* Displays the drop-down box when the menu item is hovered over */
                        }
						
		 .navbar li ul li {background-color: #54879d;} 
		 
		 .navbar li ul li a 	{
		border-left: 1px solid #1f5065; 
		border-right: 1px solid #1f5065; 
		border-top: 1px solid #74a3b7; 
		border-bottom: 1px solid #1f5065; 
		}
				
		.navbar li ul li a:hover	{background-color: #366b82;}

  /*Slideshow*/
  #slideshow{
	border:1px solid #FFFFFF;
	height:300px;
	margin:0 auto 0;
	position:relative;
	width:550px;
}

#slideshow ul{
	height:300px;
	left:40px;
	list-style:none outside none;
	overflow:hidden;
	position:absolute;
	top:10px;
	width:470px;
	text-align:center;
	
}

#slideshow li{
	position:absolute;
	display:none;
	z-index:10;
	text-align:center;
	width:470px;
}

#slideshow li:first-child{
	display:block;
	z-index:1000;
}

#slideshow .slideActive{
	z-index:1000;
	width: 100%;
}

#slideshow canvas{
	display:none;
	position:absolute;
	z-index:15;
}

#slideshow .arrow{
	height:86px;
	width:60px;
	position:absolute;
	background:url('img/arrows.png') no-repeat;
	top:50%;
	margin-top:-43px;
	cursor:pointer;
	z-index:20;
}

#slideshow .previous{ background-position:left top;left:0;}
#slideshow .previous:hover{ background-position:left bottom;}

#slideshow .next{ background-position:right top;right:0;}
#slideshow .next:hover{ background-position:right bottom;}

.president {
	background-color: #3E3F7B;
	color: #FFF !important;
	height: 180px;
}

.president h4 {padding-top: 10px;
}

.president p {padding-top: 0px;
}

.president a:link{
	color: #FFF !important;
}

.president_img {
	float:left;
	padding-top:10px;
	padding-left:15px;
	padding-right: 15px;
	margin-bottom: 10px;
}

.yellow {
	float:right;
	
}
.contact  {padding: 15px;}
.contact form  { padding: 2px;}
.contact form input{ width: 400px; height: 25px; border:1px solid #dcdcdc; margin-top:10px;}
.contact form textarea{ width: 400px; border:1px solid #dcdcdc; margin-top:10px;}

#emailvalidation{
	display:none;
	color:#F00;
}
.error
{
	display:none;
	color:#F00;
}
input.onsubmitform
{
	background:url(images/send.png) no-repeat;
	border:0 none !important;
	width:144px !important;
	height:30px !important;
	float:left;
	cursor:pointer;
}
.mandatory{
	color:#F00;
}

/****************Jenny's Edits*********************/
/***************December 2015-Present******************/

/**box on events page**/
.upcomingeventslist {margin-left:20px;}
.like {margin-left:16px;}

/**box on where are they now page**/
.whereheader {
	font-size:81%;
}
.wheremargin {padding-right:1.5% !important;}

/**For Lists within Columns**/
.clist {padding-left:10%;}


/**Misc Formatting for Lists**/
.nobullet {
    list-style-type: none;
}

.sponsersmargin {margin-left:10%;
margin-right:10%;
}

/**For Fixing Gaps in White Background (Make div for entire page content) ***/
.solidbackground {background-color: #fff;}

/**Same as above, and adds thin line below content**/
.solidbackgroundwithline {background-color: #fff;
border-bottom: thin solid #CFCFCF;
}

/**Styles Copied From Old Style Sheet, Used for Past News Page and Event Photos Page **/

.photogallery                               { width: 100%;}

.gallery_thum                               { width: 150px; height: 150px; float:left; margin: 10px 10px;}
.title                                      { line-height: 30px; font-size:25px; font-family:"Bree Serif";}

#gallery
        {
            background-color: #f0f0f0;
            padding: 10px;
            width: 95%;
        }
        #gallery ul
        {
            list-style: none;
        }
        #gallery ul li
        {
            display: inline;
        }
        #gallery ul img
		
        {   width: 150px;
		    height:150px;
            border: 5px solid #f0f0f0;
            border-width: 5px 5px 20px;
        }
        #gallery ul a:hover img
        {
            border: 5px solid #fff;
            border-width: 5px 5px 20px;
            color: #fff;
        }
        #gallery ul a:hover
        {
            color: #fff;
        }
		
		.imagemargin 
		                               {margin-left: 3%;}
									   #picture {width:100px; height: 250px; background-color:#ffffff;}
.picture a.small, #picture a.small:visited { display:block; width:100px; height:100px; text-decoration:none; background:#ffffff; top:0; left:0; border:0;}
.picture a img {border:0;}
.picture a.small:hover {text-decoration:none; background-color:#000000; color:#000000;}
.picture a .large {display:block; position:absolute; width:0; height:0; border:0; top:0; left:0;}
.picture a.small:hover .large {display:block; position:absolute; top: 90px; left:150px; width:200px; height:200px; }

/***For Outlined Boxes**/

.bluebox {border: 7px solid #0E5890;
	color: black;
	margin-top: 2%;
		margin-bottom: 3%;

	margin-right: 13%;

	margin-left: 13%;

	padding: 2%;
	text-align: center;
	font-size: 85%;
}


.bluebox a {text-decoration: none;}
.bluebox h4 {color: #0E5890;
margin-bottom:-0.5%;}
.bluebox h5 {color: black;  text-decoration: underline!important;}
.blueboxclose {color: black!important;  text-decoration: underline!important;
margin: 1%;}
.blueboxclose a:hover { color:black!important; }
.blueboxclose:hover {color: color:#414958;}
.bluebox ul li {margin: 3%;
list-style:none;}

.blueboxunderline {text-decoration: underline; color: black;
}
.blueboxunderline a:hover {color: grey!important;
}



.yellowbox {border: 7px solid #E9AB17;
	color: black;
	margin-top: 2%;
		margin-bottom: 3%;

	margin-right: 13%;

	margin-left: 13%;	padding: 2%;
	text-align: center;
	font-size: 85%;
}


.yellowbox a {text-decoration: none;}
.yellowbox h4 {color: #E9AB17;}

.yellowboxunderline {text-decoration: underline; color:black;}
