/* ===============================
   Author: {Louis Hemmi}
   Date:   {Sunday 11/22/2015}
   
   Notes:
   Hand coded for Build a Website
   from Scratch with HTML & CSS
   by Brad Hussey
   
   Colour Palette:
   ---------------
   Light Cream:		#f2f3ee
   Orange:			#d17f38
   Yellow:			#e8c04f
   Brown:			#4b2707
   Vanilla			#df9450
   Mocha			#84371b
   Blue				#0000FF
   Warm Brown		#a0522d
   Brown			#A52A2A
   Gold				#FFD700
   ===============================
   
   
   
   
   ================================ */

/* General */

/* setting the background to the beige grid file works 
body {
	background-image: url(bkgd_beigegrid.jpg)
	
} */

.botMainMenu {
	display: inline-block;
	position:relative;
	margin: 10px;
	padding:0 20px
	text-align: center;
	text-decoration: none;
	font: bold 29px/32px Lateef, serif;
}

.green {
	color: #3e5706;
	background: #a5cd4e;
}

.blue {
	color: #19667d;
	background: #70c9e3;
}

.gray{
	color: #1515151;
	background: #d3d3d3;
}
/* like the header over the table on index.htm */
.warmBrown{
	color: #a0522d;
	background: #df9450;
}

.lightBrown{
	color: #DEB887;
}


/* Typography */


H2 {
text-align: center;
text-decoration:none;
Font-size: 19px;
line-height: 24px;
font-family: 'Josefin Sans', sans-serif;
}

/* the text above the main graphic on the index.htm page */

H1 {
text-align: center;
Font-size: 44px;
line-height: 52px;
font-family: 'Josefin Sans', sans-serif;
Color: #00FF00;
}

a:link {
	color: #DCDCDC;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFF;
}
a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #FFD700;
}
a:active {
	text-decoration: none;
	color: #FFD700;
}
</style>


/* Header */



/* Hero */



/* The Whole Story */



/* News & Events */



/* Footer */



/* Force Elements to Self Clear its Children: http://css-tricks.com/snippets/css/clear-fix/ */

.clearfix:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
	}
* html .group             { zoom: 1; } /* IE6 */
*:first-child+html .group { zoom: 1; } /* IE7 */





