/* @group Base Styles */

@import url(normalize.css);

* {
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	background: #37474F;
	color: #bdc3c7;
	font-family: /*GF*/ Roboto, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	margin: 0;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
}
a, a:visited {
	color: #27ae60;
	cursor: pointer;
}
a:hover,
a:active {
	color: #c0392b;
	text-decoration: none;
}
ol {
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 30px;
	margin-bottom: 20px;
}
ul {
	list-style-type: square;
	list-style-position: outside;
	margin-left: 10px;
	margin-bottom: 20px;
	color: #27ae60;
}
blockquote {
	margin: 30px 0 30px 0;
	padding-left: 20px;
	border-left: 3px solid #c0392b;
	font-style: italic;
	color: #c0392b;
}
h1,h2,h3,h4,h5,h6 { color: #bdc3c7; }
h1 { font-size: 26px; }
h2 { font-size: 20px; }
h3 { font-size: 16px; }
h4 { font-size: 14px; }
h5 { font-size: 12px; }
h6 { font-size: 10px; }
p { margin-bottom: 20px; }
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
	padding:1px;
        border:1px solid #546E7A;
	background: #263238;
}
.left { float: left; }
.right { float: right; }
iframe { vertical-align: bottom; }
div.video-container {
	position: relative;
	padding-bottom: 53.3%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
div.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hidden { display: none; }
.cf:before,
.cf:after {
	content: ' ';
	display: table;
}
.cf:after { clear: both; }
.center { text-align: center; }

/* @end */

/* @group Wrap */

.wrap {
	max-width: 900px;
	margin: 0 auto;
	width: 90%;
}

/* @end */

/* @group Header */

#header { padding: 10px 0; }
#header .logo {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
	text-decoration: none;
	display: inline-block;
	/*padding-bottom: 20px;*/
}
#menu ul {
	margin: 0;
	padding: 0;
}
#menu li {
	list-style: none;
	margin-right: 20px;
	font-weight: bold;
	float: left;
}
#menu li a {
	text-decoration: none;
	padding-bottom: 2px;
}
#menu li a.active {
	color: #c0392b;
	border-bottom: 2px solid #c0392b;
}

.awsm {
	color: #27ae60;
}

.awsm:hover {
	color: #c0392b;

}
/* @end */

/* @group Content */

#content, #projects, #error {
	/*padding: 10px 0;*/
	background: #263238;
}
#projects { padding: 30px 0; }
#error { padding: 60px 0; }
article h1:first-child { margin-top: 0; }
article p:last-child { margin-bottom: 0; }

/* @end */

/* @group Footer */

footer {
	padding-top: 5px;
	border-top: 3px solid #c0392b;
	font-size: 8px;
	color: #bdc3c7;
	font-weight: bold;
}
footer a { text-decoration: none; }

/* @end */

/* @group Tags */

.tags {
	list-style: none;
	margin: 0;
	padding: 0;
}
.tags li {
	margin: 0px 5px 5px 0;
	float: left;
}
.tags li a {
	color: #bdc3c7;
	font-weight: bold;
	background: #27ae60;
	padding: 5px 10px;
	text-decoration: none;
	color: #263238;
}
.tags li a:hover { background: #c0392b; }

/* @end */

/* @group Projects */

#tagcloud {
	display: none;
	padding: 10px;
	background: #F5F5F5;
}

#items {
	max-width: 900px;
	margin: 0 auto;
	width: 90%;
	position: relative;
}
#items #project {
	position: relative;
	float: left;
	overflow: hidden;
	width: 14%; /* Fallback */
	width: -webkit-calc(100% / 7);
	width: calc(100% / 7);
}
#items #project a,
#items #project a img {
	display: block;
	width: 100%;
	cursor: pointer;

}
#items #project a img {
	max-width: 100%;
	height: auto;

}
#items #project a div {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: rgba(128, 128, 128, 0.5);
	-webkit-box-shadow: inset 0 0 0 3px #222;
	-moz-box-shadow: inset 0 0 0 3px #222;
	-o-box-shadow: inset 0 0 0 3px #222;
	box-shadow: inset 0 0 0 3px #222;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	opacity: 0;
}
#items #project a:hover div { opacity: 1; }
#items #project a div h3 {
	color: #bdc3c7;
	font-weight: bold;
	background: #333;
	letter-spacing: 1px;
	margin: 3px;
	padding: 3px 10px;
	display: inline-block;
}
#pagination {
	max-width: 900px;
	margin: 30px auto 0;
	width: 90%;
	line-height: 0;
}
#pagination a {
	color: #bdc3c7;
	font-weight: bold;
	background: #27ae60;
	display: block;
	padding: 20px 15px;
	text-decoration: none;
	color: #263238;
}
#pagination a:hover { background: #c0392b; }
#pagination a.next {
	float: right;
	text-align: right;
}
#pagination a.prev {
	float: left;
	text-align: left;
}

@media only screen and (max-width: 480px) {

	#items #project {
		width: 50%; /* Fallback */
		width: -webkit-calc(100% / 2);
		width: calc(100% / 2);
	}

}

@media screen and (max-width: 320px) {

	#items #project { width: 100%; }

}

/* @end */

/* @group Page project */

#description { margin-top: 30px; }
#description #text {
	width: 70%;
	float: left;
}
#description #meta {
	width: 25%;
	padding-left: 20px;
	float: right;
	border-left: 1px solid #c0392b;
}
#description #meta h4, #description #meta p { margin: 0; }
#description #meta p { margin-bottom: 10px; }
#description #meta p:last-child { margin-bottom: 0; }

@media only screen and (max-width: 480px) {

	#description #text {
		width: 100%;
		float: none;
	}
	#description #meta {
		width: 100%;
		padding: 20px 0px 0px;
		margin-top: 20px;
		float: none;
		border: none;
		border-top: 1px solid #c0392b;
	}

}

code {
font-style: italic;
color: #f39c12;

}

.search {
	display: inline-block;
	padding-bottom: 15px;
	padding-left: 20px;
}

input[type=search] {
	width: 150px;
	/*box-sizing: border-box;*/
	/*border: 2px solid #ccc;*/
	/*border-radius: 4px;*/
	font-size: 16px;
	background-color: #263238;
	color: #bdc3c7;



}

input[type=text]:focus {
	width: 100%;
}

ul.related {
	list-style: none;
}

a {
	text-decoration: none !important;
}

/* Search*/

input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
input::-webkit-search-decoration, input::-webkit-search-cancel-button {
	display: none;
}

input[type=search] {
	background: #263238;
	border: solid 1px #27ae60;
	padding: 1px 1px 1px 1px;
	width: 100px;
	color: white;


	/*-webkit-border-radius: 10em;*/
	/*-moz-border-radius: 10em;*/
	/*border-radius: 10em;*/

	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}

input[type=search]:focus {
	width: 150px;
	background-color: #fff;
	border-color: #66CC75;
	color: #27ae60;

	-webkit-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
	-moz-box-shadow: 0 0 5px rgba(109, 207, 246, .5);
	box-shadow: 0 0 5px rgba(109, 207, 246, .5);
}

input:-moz-placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
	color: #999;
}

.linfind {
	font-weight: 800;
}

/* @end search */

/* @end */
