@charset "UTF-8";
/*
Theme Name: Theme Name
Theme URI: http://www.domain.com/post_about_theme_if_applicable
Description: Theme, err, description
Version: 1.0
Author: Author Name
Author URI: http://www.author.com/

----> NOTE: Wordpress's default CSS structure is horrible. This seeks to reset, then establish some base rules...then, in Structure, 
define those elements relevent to a given Structure "area" specific CSS declaration needed in only that area...CASCADE down through the elements
needing styling as they apppear both symentically and visually. Simple, right?


----> BRAND FONTS + COLORS:
		FONT: Define Brand Fonts Here
		COLORS: 
			- NAV: #d0e2f0 (Blue Gray)
			- NAV ACTIVE: #22659a (Blue) / BG: #fbd100 (Yellow)
			- LINKS: #adcde6 (Light Blue) 
			- HEADERS: #002d69 (Dark Blue)
			- TEXT: #333
			
----> STRUCTURE OVERVIEW:
		This Template seeks to be 980px wide, centered with auto height / 2 column with Sidebar on right side
			


LEGEND:
1. REST ALL HTML ELEMENTS (meyerweb.com version)
2. BASE TYPOGRAPHY
3. STRUCTURE: Header, Breadcrumbs, Content, Sidebar (Right), Footer


*/



/* ---------- RESET ALL HTML ELEMENTS ---------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1em;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ---------- /RESET ALL HTML ELEMENTS ---------- */





/* ---------- BASE TYPOGRAPHY ---------- */
body {
	font-size: 100%; /* Resets 1em to 12px */
	font-family: Arial, Helvetica, Sans-Serif;
	color: #666;
	line-height: 1.1em;
}
h1, h2, h3 {
	font-weight: bold;
	color: #a0ae3f;
}

	h2 {
		font-size: 1.6em;
		margin: 0px 0 0 0;;
		padding-bottom: 6px;
		margin: 4px 0 0px 0;
	}
	h3 {
		font-size: 1.3em;
		margin: 12px 0 20px 0;
	}
p {
	font-size: 1em;
	line-height: 1.1em;
	margin-bottom: 1.1em;
}

a {
	color: #a0ae3f;
	text-decoration: none;
}
	a:hover {
		text-decoration: underline;
	}
	a img {
		border: none;
	}
	
small {
	font-size: 0.9em;
	line-height: 1.5em;
	color: #777;
}
blockquote, strike {
	color: #777;
}
blockquote {
	margin: 1.1em 0 1.1em 40px;
	border-left: 1px solid #333;
	padding-left: 12px;
}
	blockquote cite {
		margin: 5px 0 0;
		display: block;
	}	
code {
	font: 1.1em 'Courier New', Courier, Fixed;
}
acronym, abbr, span.caps {
	font-size: 0.9em;
	letter-spacing: .07em;
}

	
	/* ---------- BASE CLASSES ---------- */

	
	.hidy {
		display: none;
	}
	.clear {
		clear: both;
	}
	
	.alt {
		background-color: #f8f8f8;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
	}
	.center {
		text-align: center;
		}
	
	.hidden {
		display: none;
	}
	
	/* ---------- /BASE CLASSES ---------- */
	


/* ---------- /BASE TYPOGRAPHY ---------- */




/* ---------- STRUCTURE ---------- */

	/* ---------- BODY ---------- */
	body {
		text-align: center;
	}
	/* ---------- /BODY ---------- */

	/* ---------- CONTAINER ---------- */
	div#container {
		margin-left: auto;
		margin-right: auto;
		width: 802px;
		height: 621px;
	}
	#container {
		display: block;
		position: relative;
		width: 802px;
		height: 621px;
		overflow: hidden;
		background: url('images/ptmmm_bg.jpg') #FFF no-repeat;
		margin-top: 20px;
	}
	/* ---------- /CONTAINER ---------- */

	
	/* ---------- CONTENT ---------- */
	#content {
		position: absolute;
		display: block;
		float: left;
		left: 480px;
		top: 400px;
		width: 200px; /* 760 total with L/R padding */
		height: 100px;
		padding: 10px;
		margin: 0;
		text-align: left;
		border: 1px solid #333;
		font-size: 14px;
		background-color: #FFF;
		filter:alpha(opacity=70);-moz-opacity:.70;opacity:.70;
		color: #000;
	}
		#contact {
			position: absolute;
			display: none;
			width: 200px;
			height: 300px;
			left: 480px;
			top: 50px;
			background-color: #FFF;
			border: 1px solid #333;
			padding: 10px;
			margin: 0;
			text-align: left;
			font-size: 14px;
			background-color: #FFF;
			filter:alpha(opacity=70);-moz-opacity:.70;opacity:.70;
			color: #000;
		}
	
	

	/* ---------- FOOTER ---------- */
	#footer {
		position: absolute;
		display: block;
		width: 802px;
		height: 50px;
		clear: both;
		top: 590px;
		left: 0px;
		text-align: center;
		/*background-color: #CCC;
		background: url('images/titles/footer_tile.jpg') repeat-x #bg_color;*/
	}
		
			
				#footer p {
					margin: 0;
					padding: 0;
					text-align: center;
					font-size: 10px;
					
				}
			
	/* ---------- /FOOTER ---------- */
	
	
/* ---------- /STRUCTURE ---------- */

