/* structure.css for page template positioning */

/**
 * Default Page Styles
 */
*
{ /* remove all default margin padding and borders from all elements */
	margin:0;
	padding:0;
	border:0;
}

img
{
	display:block;
	border:0;
}

body
{
	font-family:'Arial','Helvetica',sans-serif;
	font-size:13px;
	color:#301A1A;
}

p
{
	margin:7px 0;
	line-height:120%;
}

a
{
	text-decoration:none;
}
a:hover
{
	text-decoration:underline;
}

/**
 * Page Dimensions and Structuring
 */

#pageWrapper
{
	width:780px;
}

html, body
{ /* push the footer to the bottom */
	height: 100%;
}
#pageWrapper
{ /* push the footer to the bottom */
	min-height: 100%;
	height: auto !important;
	height: 100%;
}

#page
{ /* make sure any elements in the page dont run under the footer with bottom padding, and add some top padding */
	padding:30px 0 60px 0;
}

#footer
{ /* set the footer height and drag it up from the bottom of the screen */
	height:50px;
	margin-top:-50px;
	overflow:hidden;
}
#footerMenu
{
	height:50px;
	line-height:50px;
}

#footerMenu li
{
	padding:0 18px;
}

/**
 * Page Header
 */
#header
{
	height:82px;
	margin-bottom:30px;
}

#header .primary-logo
{
	float:left;
}

#header .secondary-logo
{
	float:left;
	margin-left:10px;
}

#header .tagline
{
	float:right;
	margin-top:32px;
}