/*
Theme Name: Magme Corporate Blog
Version: 1.0
Author: Clayton Misura
*/


/* 01
/* Eric Meyer Resets
****************************************/

/* v1.0 | 20080212 */

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;
	}

blockquote:before, blockquote:after,
q:before, q:after 
	{
	content: 		'';
	content: 		none;
	}

:focus 
	{
	outline: 		0;
	}

ins 
	{
	text-decoration: none;
	}

del 
	{
	text-decoration: line-through;
	}

table 
	{
	border-collapse: collapse;
	border-spacing: 0;
	}

/* 02
/* Universal Type & Color 
****************************************/

body
	{
	font-size: 		62.5%; /* 10px */
	font-family: 	Arial, Helvetica, sans-serif;
	text-align: 	center; /* For IE6 */
	color: 			#878787;
	background: 	#F8F8F8;
	}

#containter { text-align: left; }

a, a:link,a:visited { color: #009DDC; text-decoration: none; }
a:hover 	{ color: #009DDC; text-decoration: underline; }

h1 a:link 		{ color: #555555; text-decoration: none; }
h1 a:hover		{ color: #009DDC !important; }
h1 a:visited	{ color: #555555; text-decoration: none; }


h2.entry-title a:link 		{ color: #555555; text-decoration: none; }
h2.entry-title a:hover		{ color: #009DDC !important; }
h2.entry-title a:visited	{ color: #555555; text-decoration: none; }

a img 		{ border: none; }

h1, h2, h3, 
h4, h5, h6
	{ 
	font-weight: 	normal; 
	}

h1, h2, h3 { color:	#555555; }
h4, h5, h6 { color: #B9B9B9; }

h1 { font-size: 2.2em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.4em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 0.8em; }

p { font-size: 1.1em; }

#sidebar { color: #FFF; }

#sidebar a:link, 
#sidebar a:visited { color: #37EBFF; }
	
/* 03
/* Universal Layout 
****************************************/

html, body, #wrapper
	{
	height: 		100%;
	}

body > #wrapper
	{
	height: 		auto; 
	min-height:  	100%;
	}

#wrapper
	{
	width:			100%;
	}

#container
	{
	position:		relative;
	width:			627px;
	margin: 		0 auto;
	padding: 		0 0 160px 0;
	}

#masthead
	{
	position: 		relative;
	width: 			627px;
	height: 		68px;
	}

#main, .main-masthead,
.main-posts, .main-footer
	{
	width: 			453px;
	}

#logo
	{
	position: 		absolute;
	top:			16px;
	left:           0;
	width: 			256px;
	height: 		36px;
	}

#logo a
	{
	width: 			256px;
	height: 		36px;
	line-height: 	36px;
	display: 		block;
	background: 	url(images/img.magme.logo.gif) no-repeat 0 0;
	}

#logo a:hover
	{
	background-position: 0 -36px;
	}

#small-menu
	{
	position: 		absolute;
	top:			24px;
	left:			466px;
	font-size: 		1.1em;
	text-align: 	left;
	}
	
#main
	{
	position: 		relative;
	margin:         0 14px 0 0;
	float: 			left;
	display: 		inline;        
	}

.main-masthead
	{
	position: 		relative;
	height: 		48px;
	background: 	url(images/img.matte.sprite.gif) no-repeat 0 0;
	}

h5.main-title
	{
	color: 			#000;
	line-height: 	48px; /* To vertically center */
	}

.main-posts
	{
	border-top:		1px solid #FAFAFA;
	background: 	#FFFFFF;
	}

.main-footer
	{
	height: 		48px;
	background: 	url(images/img.matte.sprite.gif) no-repeat 0 -48px;
	}

#sidebar
	{
	position: 		relative;
	width: 			160px;
	float: 			left;
	display: 		inline;
	}

.pod, .pod-masthead, 
.pod-posts, .pod-footer
	{
	width: 			160px;
	}
	
.pod
	{
	position: 		relative;
	margin: 		0 0 16px 0;
	display: 		block;
	}

.pod-masthead
	{
	height: 		48px;
	background: 	url(images/img.matte.sprite.gif) no-repeat -453px 0;
	}

h5.pod-title
	{
	color: 			#FFF;
	line-height: 	48px;
	}

.pod-posts
	{
	border-top:		1px solid #21AAE0;
	background: 	#009DDC;
	}

.pod-footer
	{
	height: 		48px;
	background: 	url(images/img.matte.sprite.gif) no-repeat -453px -48px;
	}

#footer 
	{
	position: 		relative;
	margin-top: 	-160px; /* Negative value of footer height */
	padding-top: 	16px;
	height: 		160px;
	clear:			both;
	text-align: 	left;
	}


#footer p
	{
	width:			 627px;
	margin: 		0 auto;
	line-height: 	16px;
	}

/* 03.A
/* Clear Fix
****************/
.clearfix:after 
	{
	content:	 	".";
	display: 		block;
	height: 		0;
	clear: 			both;
	visibility: 	hidden;
	}
	
.clearfix 
	{ 
	display: 	inline-block; 
	}
	
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix  { display: block; }
/* End hide from IE-mac */


/* 04
/* Main Posts 
****************************************/

.posted, .comment, #commentform
	{
	position: 		relative;
	width: 			425px;
	padding: 		23px 0 24px 0;
	margin: 		0 auto;
	text-align: 	center;
	background: 	url(images/img.post.line.gif) no-repeat center bottom;
	}

h5.post-date
	{
	margin: 		0 0 8px 0;
	}

h1.post-title
	{
	margin: 		0 0 8px 0;
	line-height: 	28px;
	}

.post-content
	{
	line-height: 	16px;
	margin: 		0 0 12px 0;
	}

.post-content h1, 
.post-content h2,
.post-content h3	
	{
	padding: 		0 0 8px 0;
	text-align: 	center;
	}

.post-content hr
	{
	border: 		none;
	border-bottom: 	1px dashed #F2F2F2;
	margin: 		16px;
	}

.post-content p
	{
	padding:  		0px 0px 8px 0;
	}

.post-image
	{
	position: 		relative;
	width: 			425px;
	margin: 		0 0 16px 0;	
	}

.post-image img
	{
	border: 		1px solid #F5F5F5;
	}

.post-meta
	{
	width: 			425px;
	margin: 		0 auto;
	font-size: 		1.1em; 
	}

.pipe { margin: 0 7px; }

/* 04.A
/* Single Post
****************/

body.single .posted
	{
	text-align:  	left;
	background: 	none;
	border-bottom:	1px solid #FAFAFA;
	}

body.single h1.post-title,
body.single h5.post-date
	{
	text-align:  	center;
	}

body.single .postmetadata
	{
	margin: 		8px 0 0 0;
	color: 			#B9B9B9;
	}

/* 05
/* Comments
****************************************/

#comments
	{
	
	padding: 		16px;
	border-bottom:	1px solid #F5F5F5;
	}

.comment
	{
	text-align: 	left;
	border-bottom:	1px solid #FAFAFA;
	background: 	none;
	}

.comment p
	{
	font-size: 		11px !important;
	line-height: 	16px;
	}

.avatar /* Don't want you */
	{
	display: 		none;
	}

.comment-author
	{
	font-size: 		1.1em;
	margin-bottom: 	12px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	}

.comment-author cite.fn
	{
	font-style: 	normal !important;
	font-weight: 	normal;	
	}

span.says
	{
	display: 		none;
	}

.comment-meta
	{
	margin: 		0 0 8px 0;
	}

#commentform
	{
	text-align: 	left;
	background: 	none;
	}

#respond h3
	{
	margin: 		16px 0;
	}

#commentform input
	{
	margin: 		0 0 8px 0;
	}

#commentform textarea
	{
	width: 			409px !important;
	padding: 		8px;
	}

#commentform #submit
	{
	margin: 		8px 0 0 0;
	}
	
/* 06
/* Pod Posts 
****************************************/

.pod-post
	{
	position: 		relative;
	width: 			132px;
	padding: 		15px 0 16px 0;
	margin: 		0 auto;
	text-align: 	center;
	font-size: 		1.1em;
	background: 	url(images/img.pod.line.gif) no-repeat center bottom;
	}

.event-date
	{
	color: 			#FFF;
	margin: 		0 0 4px 0;
	}

.event-info
	{
	line-height: 	16px;
	}

.more-events
	{
	line-height: 	48px;
	font-size: 		1.1em;
	}

.more-events img
	{
	margin-right: 	7px;
	}

ul.pod-categories
	{
	position: 		relative;
	width: 			132px;
	margin: 		0 auto;
	}

ul.pod-categories li
	{
	width: 			132px;
	padding: 		7px 0 8px 0;
	text-align: 	center;
	font-size: 		1.1em;
	background: 	url(images/img.pod.line.gif) no-repeat center bottom;
	}

/* 07
/* Events 
****************************************/

body.category-events h2.entry-title
	{
	font-size: 		16px;
	}
	
.main-masthead-events
	{
	position: 		relative;
	width: 			627px;
	height: 		48px;
	background: 	url(images/img.big.matte.sprite.gif) no-repeat 0 0;
	}

.main-footer-events
	{
	position: 		relative;
	width: 			627px;
	height: 		48px;
	background: 	url(images/img.big.matte.sprite.gif) no-repeat 0 -48px;
	}
























