@charset "UTF-8";
body  {
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
	font: 100%;
	background: #242424;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #fff;
}

p {
	font-size:0.875em; /* 16x.875=14 */
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;

}


h1 { 
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
	font-size: 1.125em;
	
}

h2 { 
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
	font-size: 1.25em;

}

h3 { 
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
	font-size: 1.375em;
}

h4 { 
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
	font-size: 1.5em;
}

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;
}

table.content td div.editable img {max-width:20em;
}



/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #D11242;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	font-weight: bold;
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
}
	
	
a:visited {
	color: #D11242;
	text-decoration: none;
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
}
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;
	color: #939598;
	font-family: Myriad Web Pro, Myriad Pro, Arial, Helvetica, Helvetica Neue, sans-serif;
}



/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.morean #container { 
	width: 100%;
	background: #242424;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
	max-width: 78.75em;/* 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: 72em;/* 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. */

}  
.morean #header { 
	background: #242424; 
	padding: 0 0.63em;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.morean #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0.63em 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
.morean #sidebar1 {
	float: left; 
	width: 11em; /* since this element is floated, a width must be given */
	background: #242424; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0.94em 0 0.31em 1.56em; /* top and bottom padding create visual space within this div */
}
.morean #sidebar2 {
	float: right; 
	width: 20em; /* since this element is floated, a width must be given */
	background: #242424; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0.94em 1.88em 0.31em 1.56em; /* top and bottom padding create visual space within this div */
}
.morean #sidebar1 h3, .morean #sidebar1 p, .morean #sidebar2 p, .morean #sidebar2 h3 {
	margin-left: 0.63em; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0.63em;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.morean #mainContent {
  width: 60em;
	margin: 0 12em 0 9em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 0.94em 2em 0 7.5em; /* padding here creates white space "inside the box." */
} 
.morean #footer { 
	padding: 5em 2em 5em 2em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #242424;
} 
.morean #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0.63em 0 0.31em 1.25em; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 0.94em 0.94em 0; /* 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 navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	text-decoration: none;
	border-top: none; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0.94em; /* this creates the space between the navigation on the content below */
	margin-top: 0;
}
ul.nav li {
	border-bottom: none; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 0 0.31em 0.31em 0;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    text-decoration: none;
	background: #242424;
	color: #D11242;
	font-weight: bold;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #242424;
	color:  #939598;
}

/* ~~ Lightbox Gallery ~~ */

#gallery a {
margin: 0;
padding: 0;
color: #fff;
background: none;
text-decoration: none;
}

#gallery {
	padding: 0.63em;
	width: 32.5em;
	}
#gallery ul { list-style: none; 
}

#gallery ul li { display: inline; 
}

#gallery ul img {
	border: 0.31em solid #000;
	border-width: 0.31em;
}

#gallery ul a:hover img {
	border: 0.31em solid #fff;
	border-width: 0.31em;
	color: #000;
}

#gallery ul a:hover { color: #fff; 
}

.caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.56em;
	color: #EEE;
}


/* ~~ 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-left: 0.56em;
	margin: 0;
}
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: 0;
	padding-left: 0; /* 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. */
}

/* Miscellaneous classes for reuse */
.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: 12.5em;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin: 1.25em auto;
	padding-left: 3.13em;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 0.06;
    line-height: 0;
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 5px;
border: 1px #000;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 1px;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}
