@charset "utf-8";
/*
Theme Name: Fuschia Tech Custom
Theme URI: http://www.fuschiatech.com/
Description: A custom designed WordPress theme supporting pages and posts
Version: 0.7
Author: Richard Johnson
Tags: custom
*/

/* Use the Yahoo! browser reset CSS - */
/*NOT YET @import url("http://yui.yahooapis.com/2.8.1/build/reset/reset-min.css");
/*NOT YET @import url("http://yui.yahooapis.com/2.8.1/build/fonts/fonts-min.css");

/* This base template layout is designed to be overridden by a customer specific
 * style sheet. The layout is designed with 4 areas: header, menu, content, and footer.
 * Each of these areas is designed to have a graphic backgound image such that the entire
 * background is defined. The default layout defined here is 980 pixels wide with with a 
 * centered container on a grey background.  */
 
body {
	background: #666666;
	margin:0;
	padding: 0;
	text-align: center; /* center the container in IE 5 - see #container */
}

#container {
	width: 980px;
	margin: 0 auto 0 auto; /* center in non-IE5 browsers */
	padding: 0;
	text-align: left; /* override the body's text-align: center */
}

/* The container is divided into areas that each have a background image.
 * Each of these should have 0 margin and padding so they render correctly
 * on both IE and other browsers.
 */

#headerArea {
	background-repeat:no-repeat;
	width: inherit;
  	height: 360px;
	margin: 0;
	padding: 0;
}

#menuArea {
	background-repeat:no-repeat;
 	width: inherit;
 	height: 75px;
	margin: 0;
	padding: 0;
}

#contentArea {
	background-repeat:repeat-y;
 	width: inherit;
	margin: 0;
	padding: 0;
}

#footerArea {
	background-repeat:no-repeat;
	clear: both;
	width: inherit;
	height: 135px;
	margin: 0;
	padding: 0;
}

/*************************************
 * Define the main content styles such as text properties
 */

body { /* The parent of all content that defines the fundamental look */
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}

/*************************************
 * Additional useful styles
 */

.clearfloat { /* place on a final div to ensure floats are contained */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#createdBy { display:none; } /* Override in customer style to display */

