/* CSS reset */
* {
	margin: 0;
	padding: 0;
}
ol,ul,li {
	list-style: none;
}
table {
	border-spacing: 0;
}
tr, th, td {
	vertical-align: top;
}
img {
	border: 0;
}

/* tools */
.round {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	behavior: url(/PIE.php);
}
.roundTop {
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	behavior: url(/PIE.php);
}
.roundBottom {
	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	behavior: url(/PIE.php);
}
.shadow {
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.30);
	-moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.30);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.30);
	behavior: url(/PIE.php);
}
.bggradient {
	background: #EFEFEF;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EFEFEF), to(#E0E0E0));
	background: -moz-linear-gradient(#EFEFEF, #E0E0E0);
	background: linear-gradient(#EFEFEF, #E0E0E0);
	-pie-background: linear-gradient(#EFEFEF, #E0E0E0);
	behavior: url(/PIE.php);
	/* gradient not working in IE9 yet */
}
.transparent {
	filter: alpha(opacity=50);
	-moz-opacity: .50;
	opacity: .50;
}	
.alignleft {
	float: left;
	margin: 10px 10px 10px 0;
}
.alignright {
	float: right;
	margin: 10px 0 10px 10px;
}

/* clearfix */
#topMenuBalk:after,
#headerImage:after,
#content:after,
.post-bodycopy:after,
.post:after,
#contentWp:after,
#sidebar:after,
#contentWrapper:after,
.socialMedia:after,
#footerTop:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
}
#topMenuBalk,
#headerImage,
#content,
.post-bodycopy,
.post,
#contentWp,
#sidebar,
#contentWrapper,
.socialMedia,
#footerTop {
	display: inline-block;
}
html[xmlns] #headerImage,
html[xmlns] #content,
html[xmlns] .post-bodycopy,
html[xmlns] .post,
html[xmlns] #sidebar,
html[xmlns] #contentWp,
html[xmlns] #topMenuBalk,
html[xmlns] #contentWrapper,
html[xmlns] .socialMedia,
html[xmlns] #footerTop  {
	display: block;
}