		/*
		-----------------------------------------------
		Colors:
		
		Orange: F4772E
		Grey: 2C2E2F
		Blue: 0A7FC3
		Off white: F0F0EC
		
		----------------------------------------------- */


/* master styles
--------------------------------------------- */
body {
	font-size:16px;
	line-height:1.333em;
	font-family:'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-style: normal;
	color:#3E4142;
	background:#F0F0EC;
	min-width:280px;
	max-width:100%;
	overflow-x:hidden;
}

p {
	margin-bottom:1.5em;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}

@font-face {
    font-family: 'MenschRegular';
    src: url('font-face/mensch-wf.eot');
    src: url('font-face/mensch-wf.eot?#iefix') format('embedded-opentype'),
         url('font-face/mensch-wf.woff') format('application/x-font-woff'),
         url('font-face/mensch-wf.ttf') format('truetype'),
         url('font-face/mensch-wf.svg#MenschMenschRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

::-moz-selection {
  color: #fff;
  background: #F4772E;
}

::selection {
  color: #fff;
  background: #F4772E;
}

.section_width {
	max-width:800px;
	margin:0 auto;
}

a.orange-link {
	color:#F4772E;
}

a.orange-link:hover {
	color:#dc621b;
}

a {
	color:#0A7FC3;
}

a:hover {
	color:#01598C;
}

h1 {
	font-size:2.250em;
	line-height: 1em;
	font-weight:300;
	display:block;
}


/* header
--------------------------------------------- */
header.main {
	width:100%;
	height:30px;
	background:#2C2E2F;
	position:fixed;
	z-index:9999;
	top:0px;
}

header.main a.returnhome {
	display:block;
	padding: 4px 0px;
	color:#FFF;
	font-size:11px;
	font-weight:600;
	outline:none;
	float:left;
	opacity:0.85;
}

header.main a.returnhome:before {
	content:'';
	display:inline-block;
	width:14px;
	height:6px;
	background:url(images/backarrow.png) no-repeat;
	margin-right:10px;
	opacity:0.85;
}

header.main a.returnhome:hover, header a.returnhome:before:hover {
	opacity:1.0;
}

header.main .top_sm {
	float:right;
	margin-top: 5px;
}

header.main .top_sm img {
	margin-left:4px;
	opacity:0.55;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
}

header.main .top_sm img:hover {
	opacity:0.75;
}

header.main .top_sm img:active {
	opacity:1.0;
}


/* section orange
--------------------------------------------- */

section.orange {
	background:url(images/header_orange.jpg) repeat;
	width:100%;
	height:100px;
	margin-top:30px;
	-moz-box-shadow:inset 0px 1px 1px rgba(253,178,99,0.65);
	-webkit-box-shadow:inset 0px 1px 1px rgba(253,178,99,0.65);
	box-shadow:inset 0px 1px 1px rgba(253,178,99,0.65);
}

section.orange .logo {
	position: relative;
	top: 22px;
	z-index:1;
}

section.orange .logo span.name {
	font:40px/0.94em 'MenschRegular', Helvetica, Helvetica, Arial, sans-serif;
	text-transform:uppercase;
	vertical-align:middle;
	letter-spacing:-1px;
	color:#2C2E2F;
	-moz-transition: color 0.4s, font-size 0.3s, opacity 0.5s;
	-webkit-transition: color 0.4s, font-size 0.3s, opacity 0.5s;
	-o-transition: color 0.4s, font-size 0.3s, opacity 0.5s;
	white-space:nowrap;
}

section.orange .logo img {
	vertical-align:middle;
	margin-right:10px;
	-webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    width:58px;
}

section.orange .logo:hover img {
	 -webkit-transform:rotate(-25deg);
    -moz-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform:rotate(-25deg);
	-webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    -ms-transition-durationn: 1s;
}

/* article
--------------------------------------------- */

article .intro {
	margin-top: -25px;
	margin-bottom: 40px;
	font-size: 1.5em;
	line-height: 1.5em;
}
article {
	padding:50px 0px;
	/*background-position:0px 2px;
	background-image: -webkit-linear-gradient(#EEE .1px, transparent 1px);
	background-size: 100% 1.5em;*/
	position:relative;
}

article header {
	margin-bottom:57px;
}

article aside {
	font-size:0.688em;
	position: absolute;
	margin-bottom: 10px;
	z-index: 2;
}

article aside ul li {
	padding-left:28px;
	position:relative;
	margin-bottom: 4px;
}

article aside ul li.post_date:before {
	position:absolute;
	left:0px;
	top:3px;
	content:'';
	display:inline-block;
	background:url(images/details_date.png) no-repeat;
	width:13px;
	height:13px;
}

article aside ul li.post_comments:before {
	position:absolute;
	left:0px;
	top:3px;
	content:'';
	display:inline-block;
	background:url(images/details_comments.png) no-repeat;
	width:16px;
	height:13px;
}

article aside ul li.post_tags:before {
	position:absolute;
	left:0px;
	top:3px;
	content:'';
	display:inline-block;
	background:url(images/details_tags.png) no-repeat;
	width:16px;
	height:16px;
}
article aside ul li.post_share {
	padding-left:0px;
}
article aside ul li.post_share img:first-child {
	margin-right:13px;
}
article aside ul li.post_share img {
	margin-right:10px;
	position:relative;
	top:2px;
}
article aside ul li.post_share a {
	opacity:0.75;
}
article aside ul li.post_share a:hover {
	opacity:1.0;
}

article aside ul li.post_share a.tweet {
	margin-right:15px;
	color:#00aced;
}

article aside ul li.post_share a.share {
	color:#3b5998;
}

article .blog-entry {
	font-family: 'PT Serif', serif;
	display:inline-block;
	line-height: 1.5em;
	width: 100%;
	padding-left: 236px;
	position: relative;
}
article .blog-entry figure {
	margin:-6px 0px 1.5em;
}

article .blog-entry figure img {
	width:100%;
	border:1px solid #a8a8a8;
}

article .blog-entry figure.faded img {
	opacity:0.70;
	border-color:#8d8d8d;
	-webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

article .blog-entry figure.faded img:hover {
	opacity:1.0;
}

article .blog-entry figure figcaption {
	font-size:0.875em;
	font-style:italic;
	margin-top: -3px;
}

blockquote.left {
	width:175px;
	position:absolute;
	left:0px;
	font-size:0.813em;
	line-height:1.9em;
	font-family:'Open Sans', Helvetica, Arial, sans-serif;
	color:rgba(62, 65, 66, 0.75);
	-moz-transition: 0.35s 0.5s ease-in-out;
	-webkit-transition: 0.35s 0.5s ease-in-out;
	-o-transition: 0.35s 0.5s ease-in-out;
}

blockquote.left:hover {
	color:rgba(62, 65, 66, 1.0);
	-moz-transition-delay:0s;
	-webkit-transition-delay:0s;
	-o-transition-delay:0s;
	transition-delay:0s;
}

blockquote.left.quote:before {
	position:absolute;
	top:-14px;
	left:-30px;
	content:'';
	display:block;
	background: url(images/quote_mark.png) no-repeat;
	width:23px;
	height:21px;
}

blockquote.left .author {
	margin-left:27px;
	font-size:0.846em;
	display:block;
}

blockquote.left .author:before {
	content:'\2014';
	margin-left:-13px;
	margin-right:3px;
}

blockquote:not(.left) {
	border-left:5px solid #f4772e;
	padding-left:15px;
	margin-bottom:1.5em;
}

article h3 {
	font-weight:bold;
	font-size:1.250em;
}

article pre {
	background: #fcfcfc;
	border: 1px solid #dedede;
	max-height: 600px;
	font-size: 0.82em;
}

article p.video {
	height: 0px;
	padding-top: 67%;
	position: relative;
}

.video iframe, .video object, .video embed {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

/* article nav
--------------------------------------------- */
article nav {
	background:#f4772e;
	width:100%;
	display: inline-block;
	margin-top: 20px;
}
article nav h4 {
	float:left;
	font-size:0.813em;
	font-weight:600;
	color:#FFF;
	padding:6px 10px;
}

article nav ul {
	float:right;
}

article nav ul li {
	float:left;
	position:relative;
	width:60px;
	height:33px;
}
article nav ul li:first-child {
	margin-right:1px;
}

article nav a {
	display:block;
	position:relative;
	width:100%;
	height:0px;
	overflow:hidden;
	padding-top: 33px;
	background: #E8712C;
}

article nav a:hover {
	background:#cc6327;	
}

article nav li a::after {
	content:'';
	display:block;
	width:14px;
	height:7px;
	background:url(images/icon_arrow_prev.png) no-repeat;
	position:absolute;
	top: 13px;
	left: 25px;
	pointer-events:none;
}

article nav li.prev a::after {
	-ms-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

article nav li.disabled {
	opacity:0.0;
}

article nav li.disabled a {
	display:none;
}

/* Comments
--------------------------------------------- */
.blog-comments {
	margin-top:30px;
}
.comment-reply {
	margin-top:25px;
}
.comment-reply h3 {
	display:inline-block;
}

#toggle-reply {
	color:#0A7FC3;
	font-size: 0.688em;
	display:inline-block;
	margin-left: 15px;
	color: #0A7FC3;
	cursor: pointer;
}

#toggle-reply:hover {
	color:#01598C;
}

.comment-reply form {
	padding-top:10px;
}

.comment-reply input, .comment-reply textarea {
	padding:5px;
	outline:none;
	border:1px solid #b3b3af;
}

.comment-reply input:focus, .comment-reply textarea:focus {
	border-color:rgba(0,0,0,0);
	-moz-box-shadow:0px 0px 4px rgba(244,119,46,0.85);
	-webkit-box-shadow:0px 0px 4px rgba(244,119,46,0.85);
	box-shadow:0px 0px 4px rgba(244,119,46,0.85);
}

.reply-avatar {
	float:left;
	position: relative;
	top: 25px;
	left:14px;
}

.reply-info {
	padding-left:100px;
	padding-right: 11.25%;
	width: 100%;
}

.comment-reply span.form-label {
	font-family: 'PT Serif', serif;
	font-size: 0.688em;
	display:block;
	margin-bottom: -2px;
}

.comment-reply label:not(.reply-comment) {
	float:left;
	width: 31.33%;
	margin-right: 3%;
}

.comment-reply label.reply-website {
	margin:0px;
}

.comment-reply label.reply-twitter.invalid input {
	border:1px solid red;
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
	-webkit-animation-duration:.7s;
	-moz-animation-duration:.7s;
	-o-animation-duration:.7s;
	animation-duration:.7s;
	-webkit-animation-fill-mode:both;
	-moz-animation-fill-mode:both;
	-o-animation-fill-mode:both;
	animation-fill-mode:both;
}

.reply-comment {
	clear: both;
	display: block;
	width:100%;
}

.comment-reply input, .comment-reply textarea {
	width:100%;
}

.comment-reply label.reply-name, .comment-reply label.reply-website, .comment-reply label.reply-email {
	display: none;
}

#send-button {
	border:1px solid rgba(244,119,46, 0);
	background: rgb(244,119,46);
	color:#FFF;
	padding:8px;
	margin-top:8px;
	font-size: 0.813em;
}

#send-button:hover {
	cursor:pointer;
	background:#e56a22;
	border:1px solid rgb(188,76,12);
}


@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-7px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(7px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-7px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(7px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-7px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(7px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-7px);}
	20%, 40%, 60%, 80% {transform: translateX(7px);}
}


/* Section: Twitter
--------------------------------------------- */
.twitter-container {
	height:auto;
	width:100%;
	position:relative;
	max-height:49px;
	margin-top:57px;
}

section.twitter {
	width:100%;
	background:#00ACEd;
	max-height:57px;
	overflow:hidden;
	position:absolute;
	bottom:0px;
	-moz-transition: 1s ease-in-out;
	-webkit-transition: 1s ease-in-out;
	-o-transition: 1s ease-in-out;
}

section.twitter .section_width {
	position:relative;
	padding-top:6px;
}

section.twitter a.twitter-icon {
	position:absolute;
	top:8px;
	left:-30px;
	opacity:0.70;
	-moz-transition: 0.4s ease-in-out;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
}

section.twitter a.twitter-icon:hover {
	opacity:1.0;
}

section.twitter a.tweet {
	color:#3E4142;
	display:block;
	margin-bottom:8px;
}

section.twitter a.tweet:nth-child(n+3){
	opacity:0;
	-moz-transition: 1s ease-in-out;
	-webkit-transition: 1s ease-in-out;
	-o-transition: 1s ease-in-out;
}

section.twitter a.tweet:hover .post {
	color:#262829;
}

section.twitter a.tweet .post {
	font-size:0.875em;
}

section.twitter a.tweet .info {
	opacity:0.6;
	font-size:0.688em;
	margin-left:10px;
}
section.twitter:hover {
	max-height:700px;
	overflow:visible;
	-moz-transition-delay:.5s;
	-webkit-transition-delay:.5s;
	-o-transition-delay:.5s;
	transition-delay:.5s;
}
section.twitter:hover a.tweet:nth-child(n+3) {
	opacity:1.0;
}

section.twitter:hover a.tweet:nth-child(3) {
	-moz-transition-delay:.6s;
	-webkit-transition-delay:.6s;
	-o-transition-delay:.6s;
	transition-delay:.6s;
}

section.twitter:hover a.tweet:nth-child(4) {
	-moz-transition-delay:.7s;
	-webkit-transition-delay:.7s;
	-o-transition-delay:.7s;
	transition-delay:.7s;
}

section.twitter:hover a.tweet:nth-child(5) {
	-moz-transition-delay:.9s;
	-webkit-transition-delay:.9s;
	-o-transition-delay:.9s;
	transition-delay:.9s;
}

/* Me-footer
--------------------------------------------- */
section.me-footer {
	width:100%;
	background:url(images/me_footer_bg.jpg) repeat;
	display:inline-block;
	padding:20px 0px;
}

section.me-footer h6 {
	font-weight:700;
	font-size:0.688em;
	margin-bottom:4px;
}

section.me-footer .bio {
	display:inline-block;
	width:50%;
	vertical-align: top;
	padding-right:56px;
	font-size:0.875em;
	line-height:1.3em;
	color:rgba(255,255,255,0.60);
}

section.me-footer .bio img {
	border:1px solid rgba(0,0,0,0.80);
	float:left;
	margin-right:14px;
}

section.me-footer .dribbble {
	display:inline-block;
	width:49%;
	vertical-align: top;
}

section.me-footer .dribbble .shots {
	clear: both;
}

section.me-footer .dribbble .shots a {
	display: block;
	float: left;
	width:126px;
}

section.me-footer .dribbble a:nth-child(n+2){
	margin-left:7px;
}

section.me-footer .dribbble img {
	width:100%;
	border:1px solid rgba(0,0,0,0.60);
}

section.me-footer .dribbble a:hover img {
	border-color:#F4772E;
}

section.me-footer nav {
	margin-top:25px;
}

section.me-footer nav ul li {
	float:left;
	font-weight:600;
	font-size:0.813em;
	margin-right:15px;
	-moz-transition: 0.4s opacity;
	-webkit-transition: 0.4s opacity;
	-o-transition: 0.4s opacity;
}

section.me-footer nav ul li a {
	color:rgba(255, 255, 255, 0.40);
}
section.me-footer nav ul li:hover a {
	color:rgba(255, 255, 255, 0.60);
}




/* footer
--------------------------------------------- */
body > footer {
	background:url(images/footer_bg.jpg) repeat;
	height:80px;
}

body > footer .section_width {
	padding:30px 0px;
}

body > footer span.copyright {
	float:left;
	font-size:0.750em;
	font-weight:700;
}

body > footer .sm_like {
	float:right;
}

/* blog list
--------------------------------------------- */
.blog_date {
	font-size:0.688em;
	margin-bottom: 10px;
	display: block;
}

.blog_excerpt {
	font-family: 'PT Serif', serif;
	display: inline-block;
	line-height: 1.5em;
	color: #3E4142;
}

.blog_excerpt:hover {
	color: #dc621b;
}

.excerpt_list li {
	border-bottom:solid 1px rgba(62,65,66,0.25);
	padding:50px 0px;
}

.excerpt_list li:first-child {
	padding-top:0px;
}

.excerpt_list li:last-child {
	padding-bottom:0px;
	border:none;
}

.excerpt_list li p {
	margin:0px;
}