/* @group Reset */

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, article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; }
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display:block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
ins { text-decoration: none; }
del { text-decoration: line-through; }
table { border-collapse: collapse; border-spacing: 0; }

/* @end */

/* @group 960.gs Grid */

.container_12 { margin-left: auto; margin-right: auto; width: 960px; overflow: hidden; }

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 { display:inline; float: left; position: relative; margin-left: 10px; margin-right: 10px; }

.alpha { margin-left: 0; }
.omega { margin-right: 0; }

.container_12 .grid_1 { width:60px; }
.container_12 .grid_2 { width:140px; }
.container_12 .grid_3 { width:220px; }
.container_12 .grid_4 { width:300px; }
.container_12 .grid_5 { width:380px; }
.container_12 .grid_6 { width:460px; }
.container_12 .grid_7 { width:540px; }
.container_12 .grid_8 { width:620px; }
.container_12 .grid_9 { width:700px; }
.container_12 .grid_10 { width:780px; }
.container_12 .grid_11 { width:860px; }
.container_12 .grid_12 { width:940px; }

.container_12 .prefix_1 { padding-left:80px; }
.container_12 .prefix_2 { padding-left:160px; }
.container_12 .prefix_3 { padding-left:240px; }
.container_12 .prefix_4 { padding-left:320px; }
.container_12 .prefix_5 { padding-left:400px; }
.container_12 .prefix_6 { padding-left:480px; }
.container_12 .prefix_7 { padding-left:560px; }
.container_12 .prefix_8 { padding-left:640px; }
.container_12 .prefix_9 { padding-left:720px; }
.container_12 .prefix_10 { padding-left:800px; }
.container_12 .prefix_11 { padding-left:880px; }

.container_12 .suffix_1{ padding-right:80px; }
.container_12 .suffix_2 { padding-right:160px; }
.container_12 .suffix_3 { padding-right:240px; }
.container_12 .suffix_4 { padding-right:320px; }
.container_12 .suffix_5 { padding-right:400px; }
.container_12 .suffix_6 { padding-right:480px; }
.container_12 .suffix_7 { padding-right:560px; }
.container_12 .suffix_8 { padding-right:640px; }
.container_12 .suffix_9 { padding-right:720px; }
.container_12 .suffix_10 { padding-right:800px; }
.container_12 .suffix_11 { padding-right:880px; }

.container_12 .push_1 { left:80px; }
.container_12 .push_2 { left:160px; }
.container_12 .push_3 { left:240px; }
.container_12 .push_4 { left:320px; }
.container_12 .push_5 { left:400px; }
.container_12 .push_6 { left:480px; }
.container_12 .push_7 { left:560px; }
.container_12 .push_8 { left:640px; }
.container_12 .push_9 { left:720px; }
.container_12 .push_10 { left:800px; }
.container_12 .push_11 { left:880px; }

.container_12 .pull_1 { left:-80px; }
.container_12 .pull_2 { left:-160px; }
.container_12 .pull_3 { left:-240px; }
.container_12 .pull_4 { left:-320px; }
.container_12 .pull_5 { left:-400px; }
.container_12 .pull_6 { left:-480px; }
.container_12 .pull_7 { left:-560px; }
.container_12 .pull_8 { left:-640px; }
.container_12 .pull_9 { left:-720px; }
.container_12 .pull_10 { left:-800px; }
.container_12 .pull_11 { left:-880px; }

.clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.clearfix:after { clear: both; content: ' '; display: block; font-size: 0; line-height: 0; visibility: hidden; width: 0; height: 0; }
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }

/* @end */


/* @group Animations */

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	50% {
		opacity: 0;
		-webkit-animation-timing-function: linear;
	}
	to {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
	}
}

@-webkit-keyframes moveInFromLeft {
	from {
		opacity: 0;
		-webkit-transform: rotate(-2deg) translateX(-300px);
		-webkit-animation-timing-function: ease-in;
	}

	65% {
		opacity: 0;
		-webkit-transform: rotate(-2deg) translateX(-299px);

	}

	100% {
		opacity:1;
        -webkit-transform: rotate(-2deg) translateX(0);
		-webkit-animation-timing-function: ease-out;
	}
}

@-webkit-keyframes moveInFromRight {
	from {
		opacity: 0;
		-webkit-transform: rotate(2deg) translateX(500px);
		-webkit-animation-timing-function: ease-in;
	}

	65% {
		opacity: 0;
        -webkit-transform: rotate(2deg) translateX(499px);

	}

	100% {
		opacity:1;
  		-webkit-transform: rotate(2deg) translateX(0);
		-webkit-animation-timing-function: ease-out;
	}
}

/* @end */

/* @group Reset */

html * {
	-webkit-font-smoothing: antialiased;
}

body {
	background: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #333;
	line-height: 1.5;
}

a {
	color: #1C4FAD;
	-webkit-transition: color 0.16s ease-out;
	-moz-transition: color 0.16s ease-out;
}

a:hover, h2.post-title a:hover {
	color: #f00000;
}

a:active, #nav li a:active {
	color: #000;
	position: relative;
	top: 1px;
	-webkit-transition: none;
	-moz-transition: none;
}

#wrapper {
	margin-bottom: 36px;
	overflow: hidden;
}

#wpstats {
	display: none;
}

/* @end */

/* @group Header */

#header {
	width: 940px;
	border-bottom: 2px #eee solid;
	margin: 8px auto 18px;
	padding-bottom: 12px;
}

#logo {
	width: 244px;
	height: 52px;
	background: url(images/logo.png) no-repeat;
	display: block;
	position: relative;
	text-indent: -9999px;
	float: left;
}

#nav li {
	display: inline-block;
	position: relative;
	top: 14px;
	margin-right: 20px;
}

#nav li a {
	color: #333;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	padding: 10px;
	-webkit-transition: all 0.16s ease-out;
	-moz-transition: all 0.16s ease-out;
}

#nav li a:hover {
	color: #f00000;
}

#nav li #subscribe:hover:after {
	content: " »";
}

.search {
	width: 170px;
	height: 21px;
	float: right;
	border: 1px #ccc solid;
	background-color: #fff;
	padding: 2px 5px;
	padding-left: 10px;
	margin-top: 13px;
	-webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;

}

.search input {
	width: 160px;
 	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #777;
	background: url(images/magnifying-glass-inactive.png) 0 center no-repeat;
	border: none;
	padding: 2px 0 0 17px;
}

.search.focused {
	border: 2px #2DAEBF solid;
	padding: 1px 5px;
	padding-left: 8px;
	-webkit-transition-property: border-color, color;
	-webkit-transition-duration: 0.2s;
	-moz-transition-property: border-color, color;
	-moz-transition-duration: 0.2s;
	-o-transition-property: border-color, color;
	-o-transition-duration: 0.2s;
}

.search.focused input {
	color: #333;
	background: url(images/magnifying-glass-active.png) 1px center no-repeat;
}

/* @end */

/* @group Posts */

#posts .grid_4 {
	border-bottom: 2px #eee solid;
	margin-bottom: 24px;
	-webkit-transition: border-bottom-color, 0.2s;
	-moz-transition: border-bottom-color, 0.2s;
}

.active {
	border-bottom: 2px #000 solid !important;
}

#posts .grid_4 img {
	position: relative;
	z-index: 98;
	margin-top: 8px;
}

a[rel=bookmark]:active {
	position: relative;
	top: 0;
}

#posts .grid_4 {
	height: 300px;
	overflow: hidden;
}

.single p {
	margin-bottom: 12px;
}

.single h2.post-title {
	margin-bottom: 18px;
}

.single h2.post-title, h2.post-title {
	font-size: 18px;
	color: #ccc;
}

.single .post li {
	list-style: disc !important;
	margin-left: 18px;
}

.single ul {
	margin-bottom: 18px;
}

h2.post-title a {
	color: #333;
	text-decoration: none;
}

div.post-meta {
	width: 130px;
	height: 220px;
	text-align: right;
	background: rgba(0,0,0,0.7);
	position: relative;
	top: -255px;
	z-index: 99;
	float: right;
	padding: 15px;
	left: 170px;
}

div.post-meta a {
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	text-shadow: #000 0 1px 0;
}

div.post-meta a:last-child {
	position: absolute;
	bottom: 15px;
	right: 18px;
}

div.post-meta a:last-child:active {
	top: auto;
	bottom: 14px;
}

div.post-meta a[rel=tag] {
	padding: 2px 8px;
	background: -webkit-gradient(linear, 0 top, 0 bottom, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,1)), color-stop(50%, rgba(0,0,0,0.5)));
	background: -moz-linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,1));
	line-height: 2;
	position: relative;
	top: -3px;
	margin-left: 3px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), 0 1px 5px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), 0 1px 5px rgba(0,0,0,0.8);
	box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), 0 1px 5px rgba(0,0,0,0.8);
}

div.post-meta a[rel=tag]:active {
	top: -2px;
	background: -webkit-gradient(linear, 0 top, 0 bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0.3)), color-stop(50%, rgba(0,0,0,0.5)));
	-webkit-box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), inset 0 0 6px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,0.8);
	-moz-box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), inset 0 0 6px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,0.8);
	box-shadow: 0 1px 0 rgba(255,255,255,0.3), 0 -1px 0 rgba(255,255,255,0.3), -1px 0 0 rgba(255,255,255,0.3), 1px 0 rgba(255,255,255,0.3), inset 0 0 6px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,0.8);
}

.tags {
	padding-bottom: 12px;
	padding-top: 12px;
	line-height: 25px;
}

.tags a {
	background: #DEE7F8;
	border: 1px #A4BDEC solid;
	color: #000;
	text-decoration: none;
	padding: 2px 8px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

/* @end */

/* @group Comments */

#comments {
	font-size: 18px;
	border-top: 2px #eee solid;
	padding-top: 24px;
}

#commentlist {
	padding-top: 24px;
	color: #666;
}

#commentlist li {
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px #eee solid;
}

#postcomment {
	font-size: 18px;
	margin-bottom: 24px;
}

#commentform input[type=text], #commentform textarea, .wpcf7-form input[type=text], .wpcf7-form textarea {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #666;
	background: url(images/input-bg.png) no-repeat;
	border: 1px #ccc solid;
	padding: 5px 7px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition-property: border-color, color;
	-webkit-transition-duration: 0.2s;
	-moz-transition-property: border-color, color;
	-moz-transition-duration: 0.2s;
	-o-transition-property: border-color, color;
	-o-transition-duration: 0.2s;
}

#commentform input[type=text], .wpcf7-form input[type=text] {
	width: 204px;
	margin-right: 9px;
}

#commentform textarea, .wpcf7-form textarea {
	width: 524px;
}

#commentform input[type=text]:focus, #commentform textarea:focus, .wpcf7-form input[type=text]:focus, .wpcf7-form textarea:focus {
	border: 2px #2DAEBF solid;
	padding: 4px 6px;
}

.spch-bub-inside {
	position: relative;
	text-shadow: none;
}

a.spch-bub-inside {
	color: #00F;
	text-decoration: none;
}

.spch-bub-inside em {
	font-style: normal;
}

.spch-bub-inside em {
	background: #fff;
	color: #000;
	padding: 0 0.4em;
	-moz-border-radius: 0.25em;
	-webkit-border-radius: 0.25em;
	border-radius: 0.25em;
	position: relative;
}

.spch-bub-inside .point {
	width: 0;
	height: 0;
	position: absolute;
	top: 1.1em;
	left: 0.4em;
	display: block;
	border-left: 0.45em solid #fff; 
	border-bottom: 0.45em solid #FFF; /* IE fix */
	border-bottom: 0.45em solid rgba(0,0,0,0); 
	overflow: hidden; /* IE fix */
}

/* @end */

/* @group Sidebar */

#sidebar {
	float: right;
}

#sidebar h2 {
	font-size: 18px;
	margin-bottom: 12px;
}

.sidebar-box {
	border-bottom: 2px #eee solid;
	padding-bottom: 24px;
	margin-bottom: 22px;
}

.pointed-list, #twitter_update_list {
	list-style: disc;
	margin-left: 18px;
}

#twitter_update_list {
	margin-bottom: 24px;
}

/* @end */

/* @group Footer */

#footer {
	margin-top: 24px;
	padding-top: 36px;
	border-top: 2px #eee solid;
}

#pagination {
	width: 940px;
	height: 27px;
	margin: 0 auto;
}

#pagination li {
	display: inline-block;
}

/* @end */

/* @group Icons */

.chevron {
	width: 27px;
	height: 27px;
	position: relative;
	float: left;
	margin-right: 5px;
	text-indent: -9999px;
	-webkit-mask-image: -webkit-gradient(linear, 0 top, 0 bottom, from(rgba(0,0,0,0.7)), to(rgba(0,0,0,1)));
}

.chevron:active {
	top: 1px;
	-webkit-mask-image: none;
}

.chevron a {
	display: block;
	width: 27px;
	height: 27px;
}

.chevron.left {
	background: url(images/chevron-left.png) no-repeat;
}

.chevron.right {
	background: url(images/chevron-right.png) no-repeat;
}

.icon {
	padding-left: 21px !important;
}

.rss {
	background: url(images/icon-rss.png) left center no-repeat;
}

/* @end */

/* @group Fancy Button Base */

.button, .wpcf7-form input[type=submit], #networkedblogs_nwidget_follow a {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	text-shadow: rgba(0, 0, 0, 0.2) 0 -1px 1px;
	line-height: 1;
	padding: 4px 14px 6px;
	display: inline-block;
	position: relative;
	cursor: pointer;
	-webkit-text-stroke: 1px transparent;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

.button:active, .wpcf7-form input[type=submit]:active, #networkedblogs_nwidget_follow a:active {
	top: 1px;
	-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 9px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 9px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 9px rgba(0,0,0,0.3);
}

.small.button, #networkedblogs_nwidget_follow a {
	font-size: 11px;
}

.medium.button, .wpcf7-form input[type=submit] {
	font-size: 13px;
}

.large.button {
	font-size: 14px;
	padding: 8px 14px 9px;
}

.blue.button, .wpcf7-form input[type=submit], #networkedblogs_nwidget_follow a {
	color: #fff;
	border: 1px #4081AF solid;
	border-bottom-color: #20559A;
	background: #72B9EB;
	background: -webkit-gradient(linear, 0 top, 0 bottom, from(#72B9EB), to(#377AD0), color-stop(6%, #52A8E8));
	background: -moz-linear-gradient(-90deg, #72B9EB, #52A8E8 6%, #377AD0);
}

.blue.button:active, .wpcf7-form input[type=submit]:active, #networkedblogs_nwidget_follow a:active {
	background: #3484D3;
	border: 1px #20559A solid;
}
/* @end */

/* @group Others */

.left {
	float: left;
}

.right {
	float: right;
}

.align-right {
	text-align: right;
}

.single img.size-full {
	border: 13px #fff solid;
	position: relative;
	margin-bottom: 24px;
	z-index: 99;
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	-webkit-transform: rotate(-2deg);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	-moz-transform: rotate(-2deg);
	-webkit-animation: moveInFromLeft 0.7s;
}

.power {
	width: 500px;
	height: 250px;
	background: #eee url(images/icon-power.png) center center no-repeat;
	border: 13px #fff solid;
	position: absolute;
	z-index: 98;
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	-webkit-transform: rotate(2deg);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	-moz-transform: rotate(2deg);
	-webkit-animation: moveInFromRight 0.4s;
}

/* @end */
