@red: #d7212d;
@gray: #e9e9e9;
@font: 'Alegreya Sans';
@headerHeight: 60px;


body { 
	background: #f3f4f4;
	-webkit-font-smoothing: antialiased;
	font-family: 'Alegreya Sans', sans-serif;
}

a, a:hover, a:visited {
	color: @red;
	text-decoration: none;
}

#content {
	padding-top: @headerHeight;
	padding-bottom: @headerHeight;
}

#masthead {
	height: @headerHeight;
	position: fixed;
	background-color: rgba(255, 255, 255, 1);
	overflow: hidden;
	display: block;
	width: 100%;

	-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);

	.site-branding {
		float: left;

		img {
			max-height: @headerHeight;
		}
	}

	.main-navigation {
		float: right;
		

		li {
			float: left;
			list-style: none;
			margin: 0;
			padding: 0;
			border-left: 1px solid #f1f1f1;

			&:hover {
				background: @red;

				a {
					color: #fff;
				}
			}

			a {
				display: inline-block;
				padding: 0 20px;
				font-weight: 600;
				font-size: 12px;
				line-height: 65px;
				text-transform: uppercase;
				font-family: 'PT Sans', sans-serif;

				outline: none;
				color: @red;
				text-decoration: none;
			}
		}
		
	}
} 

.blog article {
	background: #fff;
	margin: 40px 0;
	
	border-radius: 4px;
	-webkit-border-radius: 4px;
	
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);

	img {
		border-top-right-radius: 4px;
		border-top-left-radius: 4px;
		width: 100%;
	}

	h2 {
		margin: 0;
		font-family: @font;
		font-weight: 300;
		font-size: 52px;
		line-height: 62px;
		padding-top: 20px;
		text-align: center;
		color: @red;
		margin-top: 20px;

		a {
			text-decoration: none;
			font-weight: 100;
			color: @red;
		}
	}

	.entry-title {
		padding: 0 130px;
	}
	.entry-meta {
		padding: 0 130px;
		text-align: center;
		font-size: 16px;
		color: #c1c0c0;

		a {
			font-size: 20px;
			color: #c1c0c0;
			text-decoration: none;
			text-transform: lowercase;
			font-family: @font;
		}
	}
	.entry-footer {
		padding: 0 130px;
	}

	.entry-content {
		padding: 0 130px 50px 130px;
		text-align: justify;
		font-weight: 300;
		color: #444;
		font-size: 20px;
		font-family: @font;

		p {
			font-size: 24px;
			color: #444;
			font-weight: 300;
		}

		.more-link {
			display: block;
			border-top: 1px solid #e5e5e5;
			margin-top: 20px;
			padding-top: 20px;

			outline: none;
			color: @red;
			text-decoration: none;
			font-weight: 500;
			text-transform: lowercase;
		}
	}

}


.single article {
	
	background: #fff;
	margin: 40px 0;
	
	border-radius: 4px;
	-webkit-border-radius: 4px;
	
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);

	&.comment-body {	 
		margin: 20px 0;
	}

	img {
		border-top-right-radius: 4px;
		border-top-left-radius: 4px;
		width: 100%;
	}	

	h2 {
		margin: 0;
		font-family: @font;
		font-weight: 300;
		font-size: 52px;
		line-height: 62px;
		padding-top: 20px;
		text-align: center;
		color: @red;
		font-weight: 100;
		margin-top: 20px;

		a {
			text-decoration: none;
			font-weight: 100;
			color: @red;
		}
	}

	.entry-title {
		padding: 0 130px;
	}
	.entry-meta {
		padding: 0 130px;
		text-align: center;
		font-size: 16px;
		color: #c1c0c0;

		a {
			font-size: 20px;
			color: #c1c0c0;
			text-decoration: none;
			text-transform: lowercase;
			font-family: @font;
		}
	}
	.entry-footer {
		padding: 0 130px;
	}

	.entry-content {
		padding: 0 130px;
		text-align: justify;
		font-weight: 300;
		color: #444;
		font-size: 20px;
		font-family: @font;

		p {
			font-size: 24px;
			color: #444;
			font-weight: 300;
		}

		.more-link {
			display: block;
			border-top: 1px solid #e5e5e5;
			margin-top: 20px;
			padding-top: 20px;
			padding-bottom: 15px;

			outline: none;
			color: @red;
			text-decoration: none;
			font-weight: 500;
			text-transform: lowercase;
		}
	}

}

.paging-navigation {

	text-align: center;

	.page-numbers {
		margin: 1px 2px;
		padding: 15px 20px;
		display: inline-block;
		text-decoration: none;
		color: @red;
		font-size: 16px;
		background: @gray;

		&.current {
			background: @red;
			color: #fff;
			display: inline-block;
		}
	}
}


.site-footer {
	background: #212121;
	color: #fff;
	padding: 20px 0;

	.site-info {
		margin: 0 auto;
		width: 960px;
	}

	a {
		color: #fff;
		text-decoration: none;
	}
}

.single h3 {
	margin-top: 50px;
	margin-bottom: 10px;
	font-size: 30px;
	font-weight: 600;
}

blockquote {
	border-left: solid 4px #d7212d;
	padding: 10px 30px 10px 20px;
	font-style: italic;
	margin-left: 60px;
	font-family: @font;

	p {
		margin: 0;
		text-align: justify;
		font-size: 24px;
		font-weight: 500;
	}
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
	background: @red;
	color: #fff;
	border-radius: 0;
	border: none;
	box-shadow: none;
	text-shadow: none;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	font-family: @font;
	padding: 20px 30px 17px 30px;

	&:hover {
		box-shadow: none;
	}
}

.form-submit {
	padding-top: 30px;
}


footer {
	aside { 
		h3.widget-title {
			color: #eaeaea;
			text-transform: uppercase;
			font-size: 15px;
			font-weight: normal;
		}
		.textwidget, a {
			color: #939393 !important;
			font-weight: 300;
			font-size: 14px;
			line-height: 16px;
		}
	}
}

.comments-area {

	textarea {
		width: 100%;
		display: inline-block;
	}

	img {
		width: 32px !important; 
	}

	.comment-list {
		.children {
			padding-left: 50px;
		}
	}

	.comment-metadata, .comment-content, .reply {
		padding: 5px 36px;
	}
}