@charset "UTF-8";
body {
	font: 100%/1.4 Georgia, Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	background-image: url(/images/background.gif);
	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;
}
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. */
	text-align: left;
}
h2, h3 {
	font-family: "Princess Sofia", cursive;
	font-weight: bold;
}
h2 {
	font-size: 2em;
}
h3 {
	font-size: 1.5em;
}
a {
	outline: 0;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: 0px;
	text-decoration: 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;
	padding: 0 1px;
	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;
	padding: 0 1px;
	text-decoration: underline;
}
#menu a:hover, #menu a:active, #menu a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	background-color: #C00;
	background-image: linear-gradient(#C00, #900);
	color: #fff;
	text-decoration: none;
	text-shadow: 1px 1px 1px #333;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 90%;
	/*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: 1010px;/* 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: #F4F4F4;
	margin: 25px 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%. */
	border-radius: 8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	-o-border-radius:8px;
	moz-box-shadow: 10px 10px 5px #888;
	-webkit-box-shadow: 10px 10px 5px #888;
	box-shadow: 3px 3px 3px #888;
}

/* ~~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 {
	background: #6F7D94;
}

#header {
	border-radius: 8px;
	-moz-border-radius:8px;
    -webkit-border-radius:8px;
    -o-border-radius:8px;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div 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.

*/
.content {
	padding: 0;
	/*font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 1.2em;*/
}

/* ~~ 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: 10px 0;
	background: #6F7D94;
}

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

/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
	display: block;
}

/* Main Nav */
/*
	#banner nav {
		background: #000305;
		font-size: 1.143em;
		height: 40px;
		line-height: 30px;
		margin: 0 auto 2em auto;
		padding: 0;
		text-align: center;
		width: 100%;/*800px;*/
		
		/*border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;*/
/*	}
	
	#banner nav ul {list-style: none; margin: 0 auto; width: 100%;}
	#banner nav li {float: left; display: inline; margin: 0;}
	
	#banner nav a:link, #banner nav a:visited {
		color: #fff;
		display: inline-block;
		height: 30px;
		padding: 5px 1.5em;
		text-decoration: none;
	}
	#banner nav a:hover, #banner nav a:active,
	#banner nav .active a:link, #banner nav .active a:visited {
		background: #C00; /* #C74451;*/
/*		color: #fff;
		text-shadow: none !important;
	}
	
	#banner nav li:first-child a {
		border-top-left-radius: 5px;
		-moz-border-radius-topleft: 5px;
		-webkit-border-top-left-radius: 5px;
		
		border-bottom-left-radius: 5px;
		-moz-border-radius-bottomleft: 5px;
		-webkit-border-bottom-left-radius: 5px;
	}*/
	
#menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu {
	width: 99%;
	margin: 0 auto;
	border: 1px solid #222;
	background-color: #111;
	background-image: linear-gradient(#444, #111);
	/*background-color: #C00;
	background-image: linear-gradient(#444, #111);*/
	border-radius: 6px;
	box-shadow: 0 1px 1px #777;
}

#menu:before,
#menu:after {
	content: "";
	display: table;
}

#menu:after {
	clear: both;
}

#menu {
	zoom:1;
}

#menu li {
	float: left;
	border-right: 1px solid #222;
	box-shadow: 1px 0 0 #444;
	position: relative;
}

#menu a {
	float: left;
	padding: 12px 45px;
	color: #fafafa;/*#999;*/
	/*text-transform: uppercase;*/
	/*font: bold 12px Arial, Helvetica;*/
	font: bold 16px Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	/*text-shadow: 0 1px 0 #000;*/
}

#menu li:hover > a {
	color: #fafafa;
}

*html #menu li a:hover { /* IE6 only */
	color: #fafafa;
}

#menu ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 1;    
	background: #444;	
	background: linear-gradient(#444, #111);
	box-shadow: 0 -1px 0 rgba(255,255,255,.3);	
	border-radius: 3px;
	transition: all .2s ease-in-out;  
}

#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}

#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	box-shadow: -1px 0 0 rgba(255,255,255,.3);		
}

#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	box-shadow: 0 1px 0 #111, 0 2px 0 #666;
}

#menu ul li:last-child {   
	box-shadow: none;    
}

#menu ul a {    
	padding: 10px;
	width: 130px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
	font: bold 14px Georgia, "Times New Roman", Times, serif;
}

#menu ul a:hover {
	background-color: #C00;/*#0186ba;*/
	/*background-image: linear-gradient(#04acec, #0186ba);*/
	background-image: linear-gradient(#C00, #900);
}

#menu ul li:first-child > a {
	border-radius: 3px 3px 0 0;
}

#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 40px;
	top: -6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #444;
}

#menu ul ul a {
	width: 250px;
	font: bold 12px Georgia, "Times New Roman", Times, serif
}

#menu ul ul li:first-child a:after {
	left: -6px;
	top: 50%;
	margin-top: -6px;
	border-left: 0;	
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
	/*border-bottom-color: #04acec; */
	border-bottom-color: #C00;
}

#menu ul ul li:first-child a:hover:after {
	border-right-color: #C00; /*#0299d3; */
	border-bottom-color: transparent; 	
}

#menu ul li:last-child > a {
	border-radius: 0 0 3px 3px;
}

#menu-trigger { /* Hide it initially */
	display: none;
}

.tile_thumbnail{
	width: 77px;
	height: 77px;
	margin: 5px;
	border-radius: 10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	-o-border-radius:10px;
	border: #CCC solid 3px;
	box-shadow: 3px 3px 3px #888;
	-moz-box-shadow: 3px 3px 3px #888;
	-webkit-box-shadow: 3px 3px 3px #888;
	-o-box-shadow: 3px 3px 3px #888;
}

img.tile_thumbnail:hover{
	border: #C00 solid 3px;
}

.copyright {
	padding: 5px;
	text-align:center;
	clear:both;
	font-size: .8em;
	color: #333;
}

.red_letters{
	color: #C00;
}

.white_letters{
	color: #FFF;
}

.red_fill{
	background-color: #C00 !important;
}

.princess_sofia {
	font-family: 'Princess Sofia', cursive !important;
}

.normal_font {
	font-family: Georgia, "Times New Roman", Times, serif !important;
}

#content_header_message_div, #footer_message_div {
	height: 45px;
}

#content_header_message_div p, #footer_message_div p{	
	text-align: center !important;
	font-size: 20px;
}

.header_block {
	text-align:center !important;
	vertical-align: middle !important;
	height: 60px;	
}

/*@media screen and (max-width: 600px) {*/
@media screen and (max-width: 929px) {

	#menu-wrap {
		position: relative;
		margin: 0 0.5%;
	}

	#menu-wrap * {
		box-sizing: border-box;
	}

	#menu-trigger {
		display: block; /* Show it now */
		height: 40px;
		line-height: 40px;
		cursor: pointer;		
		padding: 0 0 0 35px;
		border: 1px solid #222;
		color: #fafafa;
		font-weight: bold;
		background-color: #111;
                /* Multiple backgrounds here, the first is base64 encoded */
		background: url(data:image/png;base64,iVBOR...) no-repeat 10px center, linear-gradient(#444, #111);
		border-radius: 6px;
		box-shadow: 0 1px 1px #777, 0 1px 0 #666 inset;
	}

	#menu {
		margin: 0; padding: 10px;
		position: absolute;
		top: 40px;
		width: 100%;
		z-index: 1;
		display: none;
		box-shadow: none;		
	}

	#menu:after {
		content: '';
		position: absolute;
		left: 25px;
		top: -8px;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #444;
	}	

	#menu ul {
		position: static;
		visibility: visible;
		opacity: 1;
		margin: 0;
		background: none;
		box-shadow: none;				
	}

	#menu ul ul {
		margin: 0 0 0 20px !important;
		box-shadow: none;		
	}

	#menu li {
		position: static;
		display: block;
		float: none;
		border: 0;
		margin: 5px;
		box-shadow: none;			
	}

	#menu ul li{
		margin-left: 20px;
		box-shadow: none;		
	}

	#menu a{
		display: block;
		float: none;
		padding: 0;
		color: #999;
	}

	#menu a:hover{
		color: #fafafa;
	}	

	#menu ul a{
		padding: 0;
		width: auto;		
	}

	#menu ul a:hover{
		background: none;	
	}

	#menu ul li:first-child a:after,
	#menu ul ul li:first-child a:after {
		border: 0;
	}		

}

/*@media screen and (min-width: 600px) {*/
@media screen and (min-width: 930px) {
	#menu {
		display: block !important;
	}
}	

/* iPad */
.no-transition {
	transition: none;
	opacity: 1;
	visibility: visible;
	display: none;  		
}

#menu li:hover > .no-transition {
	display: block;
}

/* Reusable column setup */
.col {
    border:0px solid rgba(0,0,0,0);
    float:left;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -moz-background-clip:padding-box !important;
    -webkit-background-clip:padding-box !important;
    background-clip:padding-box !important;
}

    @media screen and (min-width: 0px) and (max-width: 320px) {
		#content_header_message_div {
			height: 70px !important;	
		}
		
		#footer_message_div {
			height: 130px !important;	
		}
		
		h2{
			font-size: 1.6em;
		}
		h3{
			font-size: 1.2em;
		}
	}

    @media screen and (min-width: 321px) and (max-width: 430px) {
		#content_header_message_div {
			height: 70px !important;	
		}
		
		#footer_message_div {
			height: 100px !important;	
		}
		h2{
			font-size: 1.6em;
		}
		h3{
			font-size: 1.2em;
		}
	}
	
    /* 1. 1 Column Grid 0px - 779px 
    ----------------------------------------------------------------------------- 
    
    Span 1:    100%
    
    ----------------------------------------------------------------------------- */

    @media screen and (min-width: 0px) and (max-width: 779px) {
		.container{
			width: 98%;
			margin: 5px auto;
		}
        
       .col {
            margin:0.5%;
        	padding:0 1%;
        }
        
        .row .col:first-child {
        }
        
        
        
        .span_1, .media_block {
            width: 98.8%;
			min-width:300px;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:center;
        }
		
		h4.red_bar {
			text-transform: uppercase;
			background-color: #C00;	
			color: #FFF;
			font-family: Georgia, "Times New Roman", Times, serif;
			font-size: .7em;
			text-align: center !important;
		}
		
        .span_2, {
            width:66.3333333333%;
			background-color:#C00;
        }
        .span_3, .full_block {
            width:98.8%;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:justify;
			clear:both;
		}
		
		#footer_message_div {
			height: 70px;	
		}
    }

    /* 2. 3 Column Grid 780px - 959px 
    ----------------------------------------------------------------------------- 
    
    Span 1:    32.6666666667%
    Span 2:    66.3333333333%
    Span 3:    100%
    
    ----------------------------------------------------------------------------- */

    @media screen and (min-width: 780px) and (max-width: 929px) {
        
       .col {
            margin:0.5%;
        	padding:0 1%;
        }
        
        .row .col:first-child {
        }
        
        .span_1, .media_block {
            width:48.9%;
			min-width:320px;
			min-height:350px;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:center;
		}
		
		 h4.red_bar {
			text-transform: uppercase;
			background-color: #C00;	
			color: #FFF;
			font-family: Georgia, "Times New Roman", Times, serif;
			font-size: .8em;
			text-align: center !important;
		}
		
        .span_2, {
            width:66.3333333333%;
			background-color:#C00;
        }
        .span_3, .full_block {
            width:98.8%;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:justify;
			clear:both;
        }
		
		#footer_message_div {
			height: 70px;
		}
    }

    /* 3. 3 Column Grid 960px - Infinity 
    ----------------------------------------------------------------------------- 
    
    Span 1:    32.6666666667%
    Span 2:    66.3333333333%
    Span 3:    100%
    
    ----------------------------------------------------------------------------- */

    @media screen and (min-width: 930px) {
		
		.container{
			width: 80%;
			min-width: 960px;	
		}
		
		.content {
			min-width: 960px;	
		}
        
        .col {
            margin:0.5%;
        	padding:0 1%;
        }
        
        .row .col:first-child {
        }
        
        
        
        .span_1, .media_block {
            width:32.25%;
			min-width:300px;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:center;
        }
		
		h4.red_bar {
			text-transform: uppercase;
			background-color: #C00;	
			color: #FFF;
			font-family: Georgia, "Times New Roman", Times, serif;
			font-size: .8em;
			text-align: center !important;
		}
		
        .span_2, {
            width:66.3333333333%;
			background-color:#C00;
        }
        .span_3, .full_block {
            width:98.8%;
			background-color:#FFF;
			border-radius: 8px;
			-moz-border-radius:8px;
			-webkit-border-radius:8px;
			-o-border-radius:8px;
			border:#CCC solid 1px;
			moz-box-shadow: 10px 10px 5px #888;
			-webkit-box-shadow: 10px 10px 5px #888;
			box-shadow: 3px 3px 3px #888;
			padding: 10px;
			text-align:justify;
			clear:both;
        }
    }
