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

/* Common CSS used in  all pages or CSS tags across site */

/* Redefined generic tags */
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10pt;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	background-color: #FFF;
	text-align: left;
	vertical-align: top;
	display: block;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
h1 {
	margin: 0px;
	padding: 0px;
	font-size: 200%;
}
h2 {
	color: #06F;
	font-size: 120%;
	padding-top: 0px;
	margin-top: 0px;
}
h3 {
	color: #06F;
	font-size: 100%;
	padding-top: 0px;
	margin-top: 0px;
}

/* Global classes */
.container {
	max-width: 1200px;
	margin: auto;
}
.noborder {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.leftfloat {
	float: left;
}
.rightfloat {
	float: left;
}
.clrfloat {
	clear: both;
	float: none;
}
.centred {
	text-align: center;
}


/* CSS for header area of page */

/* CSS Document */

.header {
	width: 100%;
	margin-bottom: 1em;
}
.top_header {
	width: 100%;
	height: 12em;
}
.top_contact {
	padding: 30px;
	float: right;
	font-weight: bold;
}
.top_social {
	padding: 20px;
	float: right;
}
.top_logo_dims
{
	width: auto;
	height: 8em;
	padding: 2em;
}
.socialelement {
	padding: 2px;
	height: 3em;
}
.mid_header {
	margin-top: 1em;
	margin-bottom: 1em;
	width: 100%;
	height: 25px;
	background-color: #006;
}
.bottom_header {
	background-color: #00F;
	display: block;
	height: 220px;
	background-image: url(../images/header/background.png);
}
.bottom_header_content {
	padding: 3em;
	color: #FFF;
	width: 400px;
	display: block;
}
.bottom_header_tagline {
	color: #FFF;
	font-size: 120%;
	font-weight: bold;
	margin-top: 1em;
	margin-right: 2em;
	margin-bottom: 1em;
	margin-left: 5em;
	width: 20em;
}
.bottom_header_image {
	float: right;
	display: block;
	max-width: 500px;
	margin: 10px;
}

.bottom_header_image_dims
{
	width: 450;
	height: 200;
}

/* CSS for middle (content) area of page */


.main_container {
	clear: both;
	width: 100%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/* CSS for footer area of page */

/* CSS Document */


.footer {
	clear: both;
	float: none;
	width: 100%;

}
.footer_social {
	vertical-align: middle;
	line-height: 26px;
}

.top_footer {
	color: #00F;
	text-align: center;
	width: 100%;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #00F;
	border-right-color: #00F;
	border-bottom-color: #00F;
	border-left-color: #00F;	
}
.bottom_footer {
	font-size: 80%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	background-color: #666;
	font-size: 80%;
	color: #CCC;
	padding: 0.5em;
}

/* CSS for menu area of page */

	/* Navigation Menu Bare */
	/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
	ul.NavigationMenu 
	{
	margin: 0px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 100%;
	}
	
	/* Menu item containers, position children relative to this container and are a fixed width */
	ul.NavigationMenu li
	{
	margin: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	float: left;
	background-color: #006;
	color: #CCC;
	text-decoration: none;
	border: none;
	}
	
	ul.NavigationMenu li.MenuItem 
	{
	font-size: 80%;
	width: 12%;
	}
	
	ul.NavigationMenu li.TopMenuItem 
	{
	font-size: 80%;
	width: 12%;
	background-image: url(../images/header/MenuBarDownCCC.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	}
	
	/* Blank fill in at ends */
	ul.NavigationMenu li.left 
	{
	font-size: 80%;
	padding: 0.5em 0.0em;
	width: 2%;
	background-image: url(../templates/images/hamburger1.png);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	}
	
	ul.NavigationMenu li.blank 
	{
	font-size: 80%;
	padding: 0.5em 0.0em;
	width: 2%;
	}
	
	/* Menu items are a light gray block with padding and no text decoration */
	ul.NavigationMenu a
	{
	padding: 0.5em 0.0em;
	display: block;
	text-decoration: none;
	font-size: 100%;
	color: #CCC;
	}
	
	
	/* Menu items that have mouse over or focus have a blue background and white text */
	ul.NavigationMenu li.MenuItem a:hover, ul.NavigationMenu li.MenuItem a:focus
	{
	background-color: #33C;
	color: #FF0;
	}
	
	ul.NavigationMenu li.TopMenuItem a:hover, ul.NavigationMenu li.TopMenuItem a:focus
	{
	background-color: #33C;
	color: #FF0;
	background-image: url(../images/header/MenuBarDownFF0.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	}
	
	ul.SubMenu
	{
	position: absolute;
	display: none;
	margin: 0px;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 100%;
	z-index: 100;
	}
	
	ul.SubMenu li.SubMenuItem 
	{
	text-align: center;
	width: 100%;
	}
	
	ul.SubMenu li.SubMenuItem a:hover, ul.SubMenu li.SubMenuItem a:focus
	{
	background-color: #33C;
	color: #FF0;
	background-image: none;
	}
	
	ul.NavigationMenu li.TopMenuItem:hover ul.SubMenu, ul.NavigationMenu li.TopMenuItem:focus ul.SubMenu
	{
	display: block;
	}

.bordered {
	border: 2px solid #009;
	margin: 5px;
}
