/*
Theme Name: Simplicities
Theme URI: http://www.damienvanholten.com/
Description: Simplicities WordPress theme
Version: 1.0
Author: Damien van Holten
Author URI: http://www.damienvanholten.com/
Tags: custom minimalism white split-lines clean

	This theme was designed and built by Damien van Holten,
	whose blog you will find at http://damienvanholten.com/blog/

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php
	
	
Style Sheet - Screen (Adaptive, Responsive)
version:	2.0
author:		Damien van Holten
email:		damien@reaact.net
website:	http://www.damienvanholten.com

                   _________
              _.--'         '--._
           .-'                   '-.
         .'                         '.
       .'                             '.
     .'          |           |          '.
    /            |___________|            \
   |  /\         |  .  .  .  |         /\  |
   | /  '-.      |___________|      .-'  \ |
   |/  ,.  \     |   |   |   |     /  ..  \|
   |\  \ \  '.   |   |   |   |   .'  / /  /|
   | \  \ '.  \  |   |   |   |  /  .' /  / |
   |  \  |  \  '.|   |   |   |.'  /  |  /  |
   |   | |   '.  \   |   |   /  .'   | |   |
   |   | |     \  '-.|   |.-'  /     | |   |
   |   | |      '-.  '._.'  .-'      | |   |
   |   | |         \       /         | |   |
   |   | |          \_____/          | |   |
   |   | |'.                       .'| |   |
   |   | |  '.                   .'  | |   |
   |   | |'.  '-._           _.-'  .'| |   |
   |   | |  '.    '-._____.-'    .'  | |   |
    \ /   \   '-._           _.-'   /   \ /
     \|    \      '-._____.-'      /    |/
      '.    \          _ _        /    .'
        \   ||      ________     ||   /
         '. ||     /        \    || .'
           \//\       --  -     /\\/
               |               |
               |               |
                '.___________.'


*/

/* Imports
--------------------------------------------------------------------------------------------------*/

@import url("http://www.damienvanholten.com/css/reset.css");

/* Globals & generic classes
--------------------------------------------------------------------------------------------------*/

.group:before,
.group:after {
    content: "";
    display: table;
} 

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}

body
{
	background: #fff;
	font-family: 'Source Sans Pro', helvetica, verdana, sans-serif;
	font-weight: 400;
}

.hidden
{
	display: none;
}

div
{
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	transition: all 300ms;
}

/* Typography & Links (let's start with something simple, now keep up)
--------------------------------------------------------------------------------------------------*/

a:link,
a:visited
{
	text-decoration: none;
	color: #555;
		-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;
	transition: all 0.4s ease-in-out;
}

a:hover,
a:active
{
	text-decoration: none;
	color: #9f0e0e;
}

strong
{
	font-family: 'Source Sans Pro', helvetica, verdana, sans-serif;
	font-weight: 700;
}

p,
.note,
.post ul {
	margin: 0 0 25px 0;
	line-height: 33px;
	font-size: 20px;
	font-family: 'Source Sans Pro', helvetica, verdana, sans-serif;
	font-weight: 300;
}

.post ul {
	list-style: disc;
	margin-left: 50px;
}

.note
{
	color: #888;
}

p.left
{
	float: left;
}

p.right
{
	float: right;
}

h2,
h1.post_title
{
	font-size: 44px;
	line-height: 49px;
	font-weight: normal;
	margin: 0 0 4px 0;
	font-family: proxima-nova, helvetica, verdana, sans-serif;
	font-weight: 900;
	text-align: center;
}

h2 a:link,
h2 a:visited
{
	text-decoration: none;
	color: #222;
	border-bottom: none;
}

h2 a:hover,
h2 a:active
{
	text-decoration: none;
	color: #222;
	border-bottom: 1px dotted #bbb;
}

h3, h4
{
	line-height: 33px;
	font-size: 20px;
	font-family: proxima-nova, helvetica, verdana, sans-serif;
	font-weight: 900;
}

.post img.size-full {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
	margin: 0 auto;
}

.post h5.sub_header
{
	font-weight: normal;
	font-size: 17px;
	border-top: 1px dotted #bbb;
	margin: 25px 0 15px 0;
	padding-top: 25px;
}

.post h5.sub_header span
{
	color: #888;
	font-weight: normal;
}

.post h5.sub_header_alt
{
	font-weight: normal;
	font-size: 17px;
	border-bottom: 1px dotted #bbb;
	margin: 15px 0 25px 0;
	padding-bottom: 25px;
}

pre {
	padding: 20px;
	background: #323232;
	color: #feffea;
	line-height: 21px;
	margin-bottom: 15px;
	font-family: Courier, MonoSpace;
	font-size: 12px;
	border-radius: 2px;
	overflow: hidden;
}

pre:hover
{
	overflow: auto;
}

code
{
	background: #EEE;
	color: #000;
	font-size: 13px;
	border-radius: 2px;
	font-family: Courier, MonoSpace;
	padding: 0px 0 1px 0;
}

pre code
{
	background: transparent;
	color: #feffea;
	font-size: 12px;
}

::-moz-selection
{
	color: #fff;
	color: rgba(255,255,255,.85);
	background: #4ca2ea;
}
::selection
{
	color: #fff;
	color: rgba(255,255,255,.85);
	background: #4ca2ea;
}

blockquote
{
	border-left: 3px solid #ccc;
	margin-left: 20px;
	padding-left: 20px;
}

cite
{
	font-size: 12px;
	color: #888;
	margin: 0 0 0 45px;
}

.content_image_caption
{
	width: 500px;
	margin: 0 auto;
	padding: 5px;
	border: 1px solid #bbb;
	margin-bottom: 8px;
}

.caption
{
	text-align: center;
	font-size: 12px;
	color: #666;
}

ul#word_list li
{
	float: left;
	width: 100px;
}

ul#word_list
{
	overflow: hidden;
}

span.alert
{
	color: #df0000;
}

/* Layout - Header
--------------------------------------------------------------------------------------------------*/

header
{
	overflow: hidden;
	background: #fff;
	padding: 1.875rem;
}

header h1 {
	float: left;
	color: #000;
	text-transform: uppercase; 
	font-size: 1.3125em;
	line-height: 1.5em;
	font-family: proxima-nova, helvetica, verdana, sans-serif;
	font-weight: 900;
}

header ul
{
	float: right;
}

header li {
	float: left;
}

header a:link, header a:visited {
	font-family: proxima-nova, helvetica, verdana, sans-serif;
	color: #babab8;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase; 
	font-size: 15px !important;
	line-height: 22.5px !important;
	margin-left: 2em;
	font-weight: 700;
		-webkit-transition: .3s all;
		-moz-transition: .3s all;
	transition: .3s all;
}

header a:hover, header a:active, header a:focus {
	color: #666;
}

header .active_item a {
	color: #babab8;
	text-decoration: underline;
}

.pod-fixed {
	width: 80%;
	margin: 0 auto;
}

.header--blog {
	background: #15a4fa;
}

/* Layout (make this shit look epic)
--------------------------------------------------------------------------------------------------*/

.container {
	padding-top: 6em;
	background: #fafafa;
}

#logo
{
	padding: 4em 0;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
}

#logo span {
	display: none;
}

#logo img {
	width: 100%;
}

#logo a
{
	text-decoration: none !important;
	background: none !important;
	border-bottom: 0 !important;
}

#wrapper
{
	width: 86%;
	max-width: 1600px;
	margin: 0 auto;
}

footer
{
	background: #fff;
	clear: both;
	padding: 50px 0;
	margin: 25px auto 0 auto;
}

footer p
{
	padding: 0;
}

.a-fadein {
		-webkit-animation: fadein 2s forwards;
		-moz-animation: fadein 2s forwards;
	animation: fadein 2s forwards;
	opacity: 0;
	filter: alpha(opacity=0);
}

.a-fadein-d {
		-webkit-animation: fadein 2s 0.2s forwards;
		-moz-animation: fadein 2s 0.2s forwards;
	animation: fadein 2s 0.2s forwards;
	opacity: 0;
	filter: alpha(opacity=0);
}

#posts_container
{
	width: 60%;
	margin: 0 auto;
}

.post_timedate
{
	font-size: 16px;
	color: #888;
	text-align: center;
}

.post
{
	padding: 0 0 20px 0;
	margin: 0 0 30px 0;
}

.post .post_meta
{
	border-top: 1px dotted #bbb;
	overflow: hidden;
}

.post .post_meta p
{
	padding-top: 25px;
}

#sidebar
{
	width: 60%;
	margin: 0 auto;
}

footer p
{
	text-align: center;
}

/* Comments (this is the part where users get to bitch about shit they don't like)
------------------------------------------------------------------------------------------------*/

.single_comment
{
	border: 1px solid #ddd;
	padding: 15px 20px 5px 20px;
	margin-bottom: 20px;
	border-radius: 2px;
}

.single_comment.author_comment
{
	border: 1px solid #aaa;
}

.single_comment .comment_meta
{
	overflow: hidden;
	border-bottom: 1px dotted #eee;
	margin-bottom: 8px;
}

p.comment_user
{
	float: left;
	margin-bottom: 8px;
}

p.comment_user .author_link
{
	opacity: 0;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.single_comment:hover p.comment_user .author_link
{
	opacity: 1;
}

p.comment_date
{
	float: right;
	color: #888;
	margin-bottom: 8px;
}

/* Comments - Create comments
------------------------------------------------------------------------------------------------*/

.input_collection
{
	overflow: hidden:
	background: red;
}

.input_collection label
{
	float: left:
	width: 30%;
	line-height: 24px;
}

.input_collection input
{
	float: right;
	width: 65%;
	background: url(images/bg-input-normal.png) 0 0 repeat-x #fff;
	border: 1px solid #bbb;
	padding: 6px 5px;
}

.input_collection input:focus,
#create_comment textarea:focus
{
	border: 1px solid #888;
	box-shadow: 0 0 7px #faffa5;
}

#create_comment textarea
{
	border: 1px solid #bbb;
	background: url(images/bg-input-normal.png) 0 0 repeat-x #fff;
	width: 98%;
	height: 120px;
	padding: 6px 5px;
}

/* Advertising (gotta make some money somewhere)
REAACT ADVERTISING MODULE
------------------------------------------------------------------------------------------------*/

.reaact_advertisement_box
{
	margin-bottom: 25px;
	overflow: hidden;
}

.reaact_advertisement_box p {
	font-size: 13px !important;
	line-height: 19px;
}

.reaact_advertisement_box .ads_image_link {
	border: none;
}

.reaact_advertisement_box .ads_image {
	float: left;
	width: 50%;
}

.reaact_advertisement_box .reaact_advertisement_description {
	float: right;
	width: 45%;
}

.reaact_advertisement_box .reaact_advertisement_description p {
	margin-bottom: 8px;
}

.reaact_advertisement_box .reaact_advertisement_description p.ads_by {
	color: #888;
}

/* Animations
------------------------------------------------------------------------------------------------*/

@-webkit-keyframes fadein { 
	from { 
		zoom: 1;
		filter: alpha(opacity=0);
		opacity: 0;
	}
	to 
	{
		zoom: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

@-moz-keyframes fadein { 
	from { 
		zoom: 1;
		filter: alpha(opacity=0);
		opacity: 0;
	}
	to 
	{
		zoom: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

@keyframes fadein { 
	from { 
		zoom: 1;
		filter: alpha(opacity=0);
		opacity: 0;
	}
	to 
	{
		zoom: 1;
		filter: alpha(opacity=100);
		opacity: 1;
	}
}

/* Media Queries
------------------------------------------------------------------------------------------------*/

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

	#sidebar .reaact_advertisement_box .ads_image_link
	{
		float: none;
		width: 148px;
		margin: 0 auto;
		display: block;
	}

	#sidebar .reaact_advertisement_box .ads_image_link .ads_image
	{
		float: none;
		width: 100%;
	}

	#sidebar .reaact_advertisement_box .reaact_advertisement_description
	{
		float: none;
		width: 70%;
		text-align: center;
		margin: 0 auto;
	}

}

@media screen and (max-width: 820px)
{
	#posts_container
	{
		width: 100%;
		float: none;
	}

	#sidebar
	{
		width: 100%;
		float: none;
	}
}

@media screen and (max-width: 560px)
{
	#logo img
	{
		width: 70%;
		margin: 0 auto;
		display: block;
	}
}

@media screen and (max-width: 500px)
{
	header h1 {
		display: block;
		float: none;
		text-align: center;
		margin-bottom: 1em;
	}
	
	header ul {
		float: none;
		text-align: center;
	}
	
	header li {
		float: none;
		display: inline-block;
	}
	
	header li a:link, header li a:visited {
		margin: 0 .7em;
	}
}

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

	#wrapper {
		width: 84%;
	}
	
	p
	{
		font-size: 14px;
		line-height:20px;
	}

	h2,
	h1.post_title
	{
		font-size: 32px;
		line-height: 38px;
	}
}