/* Screen.css - For screen media
--------------------------------------------------------------

Author:			James Wakefield
Date: 			05-08-2011
Version: 		v1.01

Email:			dev@jameswakefield.eu
Website:		http://jameswakefield.eu

Responds to:

Width:			960px / 800px / 500px


#####  Color Palette by Color Scheme Designer
#####  Palette URL: http://colorschemedesigner.com/#3L21ThNK-----
#####  Color Space: RGB; 



*** Primary Color:

   var. 1 = #6B8BD5 = rgb(107,139,213)
   var. 2 = #50586A = rgb(80,88,106)
   var. 3 = #001340 = rgb(0,19,64)
   var. 4 = #C0D3FF = rgb(192,211,255)
   var. 5 = #F2F6FF = rgb(242,246,255)

*** Complementary Color:

   var. 1 = #FFD071 = rgb(255,208,113)
   var. 2 = #80745C = rgb(128,116,92)
   var. 3 = #4D3300 = rgb(77,51,0)
   var. 4 = #FFE7B8 = rgb(255,231,184)
   var. 5 = #FFFAF1 = rgb(255,250,241)


#####  Generated by Color Scheme Designer (c) Petr Stanicek 2002-2010

Typesetting
Golden ratio (1:1.618)
width >= 800px
1.3em
2.1em
3.4em
5.5em

with <= 500px
1.2em
1.9em
3.1em
5.1em

-------------------------------------------------------------- */


/* Development Only
-------------------------------------------------------------- */

.dev
{
	/* outline: 1px dotted green; */
}


/* Global Elements
-------------------------------------------------------------- */

body {
	background-color: #50586A;
	background-image: url(../images/css/background.png);
	background-position: 0 0;
	background-repeat: repeat;
}

/* Floats
-------------------------------------------------------------- */

.clear { clear: both; }

.right { float: right; }

.left { float: left; }

.group { overflow: hidden; }


/* Loading
-------------------------------------------------------------- */

img
{
	background: url(../images/css/loading.gif) 50% 50% no-repeat;
}

/* Typography
-------------------------------------------------------------- */

body 
{ 
	font-size: 62.5%;
	color: #FFFAF1;
}

body,
input,
textarea { font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif; }

h1,
h2,
h3,
h4,
h5,
h6,
label
{
	color: #FFFAF1;
	font-family: 'Rokkitt', "Times New Roman", Times, serif;
	text-shadow: 0 1px 0 #001340;
}

h1 em { font-family: 'Rochester', cursive;}

ul 
{
	list-style: square;
	margin: 0 0 18px 1.5em;
}

ol 
{
	list-style: decimal;
	margin: 0 0 18px 1.5em;
}

ul ul { list-style: circle; }
ul ul ul { list-style: disc; }
ul ul ul ul { list-style: square; }


ol ol {	list-style:upper-alpha; }
ol ol ol { list-style:lower-roman; }
ol ol ol ol { list-style:lower-alpha; }

strong { font-weight: bold; }

em,
i {	font-style: italic; }

big { font-size: 131.25%; }

ins 
{ 
	background: #ffc;
	text-decoration: none;
}

blockquote 
{
	font-family: 'Rochester', cursive;
	padding: 0 1em;
	quotes: "\201C" "\201D";
} 

blockquote p:before
{
	content: open-quote;
	font-weight: bold;
}

blockquote p:after
{
	content: close-quote;
	font-weight: bold;
}

blockquote cite,
blockquote em,
blockquote i { font-style: normal; }

abbr,
acronym 
{
	border-bottom: 1px dotted #666;
	cursor: help;
}

sup,
sub 
{
	height: 0;
	line-height: 1;
	vertical-align: baseline;
	position: relative;
}

sup { bottom: 1ex; }

sub { top: .5ex; }

pre { font-family: "Courier 10 Pitch", Courier, monospace; }

code { font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

#menu_main,
.section_title,
.cat_title,
.entry_title,
.author { font-family: 'Rokkitt', "Times New Roman", Times, serif; }

.title { font-family: 'Rokkitt', "Times New Roman", Times, serif; }

.meta
{
	color: #F2F6FF;
}

.framed
{
    background: #FFFAF1;
    -webkit-box-shadow: 0 0 2px rgba(0,0,0.5);
    -moz-box-shadow: 0 0 2px rgba(0,0,0.5);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    margin: 0 0 1em;
	padding: 2%;
    width: 96%;
}

/* Links
--------------------------------------------------------------------------------------------------*/

a
{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:link,
a:visited
{
	color:#C0D3FF;
	text-decoration: none;
}

a:hover,
a:active,
a:focus
{
	color: #FFE7B8;
	text-decoration: underline;
}

a.button:link,
a.button:visited
{
	background-color: #F2F6FF;
	border: 1px solid #6B8BD5;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	color: #001340;
	display: inline-block;
	font-weight: bold;
	padding: 4px 16px;
	text-shadow: 0 1px 1px rgba(255,255,255,1)
}

a.button:hover,
a.button:active,
a.button:focus
{
	background-color: #FFFAF1;
	border-color: #FFD071;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	text-decoration: none;
	color: #4D3300;
}

/* Form elements
-------------------------------------------------------------- */

input,
textarea
{
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

input.text,
textarea 
{
	background-color: #FFFAF1;
	border: 1px solid #596549;
	-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2);	
	box-shadow: 0 1px 0 rgba(0,0,0,0.2);
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	color: #001340;
	display: block;
	line-height: 18px;
	font-size: 1.3em;
}

input.text:hover,
textarea:hover,
input.text:focus,
textarea:focus
{
	border-color: #001340;
	-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.3);	
	box-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

input[type=submit]
{
	background-color:#F2F6FF;
	border: 1px solid #6B8BD5;
	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	color: #001340;
	cursor: pointer;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 18px;
	padding: 4px 16px;
	text-shadow: 0 1px 1px rgba(255,255,255,1)
}

input[type=submit]:hover,
input[type=submit]:focus
{
	background-color: #FFFAF1;
	border-color: #FFD071;
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	box-shadow: 0 1px 2px rgba(0,0,0,0.7);
	color: #4D3300;
}

label sub
{
	color: #634C97;
	font-size: 0.7em;
}


/* Avatar small
--------------------------------------------------------------------------------------------------*/

.avatar { margin: 5px 0 25px; }

.avatar.small {	width: 36px; }

.avatar.medium { width: 72px; }

.avatar.large {	width: 144px; }

.avatar.left { margin: 5px 20px 5px 0; }

.avatar.right {	margin: 5px 0 5px 20px; }

/* Layout - General
--------------------------------------------------------------------------------------------------*/

#page_wrapper
{
	max-width: 960px;
	margin: 0 auto 20px auto;
}

#content_wrapper
{
	padding: 0 4%;
	width: 92%;
}

#header_wrapper
{
	max-width: 960px;
}

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

#header
{
	display: block;
	padding: 27px 30px;
}

#logo 
{
	background: transparent url(../images/css/sp-james-wakefield-logo.png) 0 0 no-repeat;
	display: block;
	float: left;
	height: 96px;
	margin: 0;
	width: 96px;
	opacity: 20%;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
}

#logo:hover
{
	background-position: 0 -116px;
}

#logo img
{
	height: 0;
}

/* Layout - Footer
-------------------------------------------------------------- */

#footer_wrapper
{
	padding: 0 4%;
}

#footer
{
	border-top: 1px dashed #80745C;
	color: #F2F6FF;
	padding: 10px 0;
}

#footer p
{
	font-size: 1.3em;
	line-height: 48px;
}

#footer #ee
{
	background: transparent url(../images/css/powered-by-expressionengine.png) 0 0 no-repeat;
	display: block;
	width: 48px;
	height: 48px;
	text-indent: -999em;
}

/* Layout - Navigation
-------------------------------------------------------------- */

#navigation
{
	float: right;
}

#menu_main
{
	font-size: 2.1em;
	list-style: none;
	margin: 0;
	padding: 0;
}

#menu_main li 
{
	float: left;
	margin: 0 16px 0 0;
}

#menu_main li:last-child
{
	margin: 0;
}

#menu_main a
{
	color: #C0D3FF;
	display:block;
	line-height:1.9em;
	float: left;
	padding: 0 16px;
	border-bottom: 3px solid #FFFAF1;
}

#menu_main a:link,
#menu_main a:visited 
{
	text-decoration:none;
	text-align: center;
}

#menu_main a:hover,
#menu_main a:active,
#menu_main a:focus
{
	color: #FFE7B8;
	border-color: #FFFAF1;
}

#menu_main li.current a:link,
#menu_main li.current a:visited
{
	border-color: #FFD071;
}

/* Layout - Share utilities (Facebook / Twitter / Google +1)
-------------------------------------------------------------- */

#share_utilities
{
	border-top: 1px dashed #80745C;
	border-bottom: 1px dashed #80745C;
	width: 100%;
	padding: 20px 0;
	margin: 0 0 20px;
}

.share
{
	float: right;
	margin: 0 0 0 12px;
	width: 50px;
	height: 60px;
}

/* Layout - Author
--------------------------------------------------------------------------------------------------*/

#author_wrapper
{
	border-top: 1px dashed #80745C;
	padding: 20px 0;
	margin: 0;
}

/* Layout - Comments
--------------------------------------------------------------------------------------------------*/

#comment_wrapper
{
	margin: 0 0 40px;
}

.comment_title
{
	font-size: 2.1em;
	line-height: 1em;
}

.comment_entry
{
	padding: 15px 0 15px 94px;
	margin: 0 0 10px;
	position: relative;
}

.comment_entry .avatar
{
	position: absolute;
	top: 15px;
	left: 15px;
}

.comment_entry p
{
	font-size: 1.3em;
	line-height: 1.4em;
}

.comment_entry cite
{
	font-size: 2.1em;
}

.comment_entry .meta
{
	margin: 0 0 1em;
}

/* Layout - Comment form
--------------------------------------------------------------------------------------------------*/

#standard_form
{
	margin: 0 0 40px;
}

#standard_form p
{
	margin: 0 0 1.5em 0;
}

#standard_form label
{
	font-size: 2.1em;
}

#standard_form input.text
{
	padding: 4px 2%;
	width: 95%;
}

#standard_form textarea
{
	padding: 4px 0;
	height: 152px;
	max-height: 152px;
	max-width: 99%;
	width: 99%;
}

#user_data
{
	float: left;
	padding: 0 4% 0 0;
	width: 46%;
}

#user_message
{
	width: 50%;
	float: right;
}

#standard_form label.error
{
	color: #DF3B3B;
	display: block;
	font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-size: 1.3em;
	line-height: 1.1em;
	padding: 4px 0;
	text-shadow: none;
}

#standard_form input.error,
#standard_form textarea.error
{
	border: 1px solid #DF3B3B;
}

/* Tag Line
--------------------------------------------------------------------------------------------------*/

#tag_line
{
	padding: 0 4%;
	margin: 0 0 30px;
}

#tag_line h1
{
	border-top: 1px dashed #80745C;
	border-bottom: 1px dashed #80745C;
	color: #FFE7B8;
	font-size: 5.5em;
	padding: 25px 0;
}

#tag_line h1 em
{
	color: #FFFAF1;
}

/* Breadcrumb
--------------------------------------------------------------------------------------------------*/

#breadcrumb
{
	color: #FFE7B8;
	padding: 0 4%;
	margin: 0 0 30px;
}

#breadcrumb p
{
	border-top: 1px dashed #80745C;
	border-bottom: 1px dashed #80745C;
	font-size: 1.3em;
	padding: 20px 0;
	margin: 0;
}

/* Layout - Content
-------------------------------------------------------------- */

#content
{
	float: left;
	padding: 0 4% 0 0;
	width: 58%;
}

.portfolio #content
{
	float: none;
	margin: 0;
	padding: 0;
	width: auto;
}

#content .section_title
{
	font-size: 3.4em;
	line-height: 1.1em;
	margin: 0 0 0.5em;
}

#content .cat_title
{
	font-size: 3.4em;
	line-height: 1.1em;
	margin: 0 0 0.5em;
}

/* Articles
-------------------------------------------------------------- */

.article
{
	margin: 0 0 40px;
}

.article p,
.article caption,
.article td,
.article th,
.article dd,
.article dt,
.article pre,
.article address
{
	font-size: 1.3em;
}

.article p,
.article ul,
.article ol,
.article pre,
.article hr 
{
	line-height: 1.6em;
	margin-bottom: 2em;
}

.article blockquote p
{
	font-size: 2.1em;
}

.article p.meta
{
	font-size: 1.3em;
	margin-bottom: 0.75em;
}

.article ul ul,
.article ol ol,
.article ul ol,
.article ol ul 
{
	margin-bottom: 0;
}

.article li 
{
	font-size: 1.3em;
	margin: 0 0 0 1em;
	padding: 0 0 0.5em;
}

.article li li { font-size: 1em; }

.article pre,
.article kbd,
.article tt,
.article var 
{
	font-size: 1.3em;
	line-height: 21px;
}

.article pre
{
	background: #50586A;
	border: 1px solid #80745C;
	-moz-box-shadow: 0 2px 0 rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.1);
	box-shadow: 0 1px 0 rgba(0,0,0,0.2);
	color: #FFFAF1;
	padding: 2%;
	overflow: auto;
	text-shadow: 0 1px 0 #001340;
}

.article h1 
{ 
	font-size: 3.4em;
	line-height: 0.9em;
	padding: 0 0 0.5em;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 
{ 
	font-size: 2.1em;
	line-height: 1.2em;
}

.article img 
{
	margin: 0;
	max-width: 640px;
}

.article .attachment img 
{
	max-width: 900px;
}

.article .alignleft,
.article img.alignleft 
{
	display: inline;
	float: left;
	margin-right: 24px;
	margin-top: 4px;
}

.article .alignright,
.article img.alignright 
{
	display: inline;
	float: right;
	margin-left: 24px;
	margin-top: 4px;
}

.article .aligncenter,
.article img.aligncenter 
{
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.article img.alignleft, 
.article img.alignright, 
.article img.aligncenter 
{
	margin-bottom: 12px;
}

.article .caption 
{
	background: #F6F2FF;
	line-height: 18px;
	text-align: center;
	margin-bottom: 20px;
	padding: 4px;
}

.article .caption img 
{
	margin: 5px 5px 0;
}

.article .caption p 
{
	margin: 5px;
	color: #888;
	font-size: 12px;
}

/* Overview
-------------------------------------------------------------- */

#introduction
{
	margin: 0 0 40px;
}

#introduction p
{
	font-size: 1.3em;
	line-height: 1.6em;
}

#introduction h2,
#introduction h3,
#introduction h4,
#introduction h5,
#introduction h6 
{ 
	font-size: 2.1em;
	line-height: 1.2em;
}


/* Layout - Aside
-------------------------------------------------------------- */

#aside
{
	color: #FFFAF1;
	float: right;
	overflow: hidden;
	width: 34%;
	padding: 0 0 0 4%;
	margin: 0 0 40px;
}

#aside .section
{
	margin: 0 0 2.5em;
}

#aside h6
{ 
	font-size: 2.1em;
	line-height: 1.1em;
	padding: 0 0 0.5em;
}

#aside ul
{
	list-style: none;
	margin: 0;
}

#aside li { line-height: 1.4em; }

#aside p
{
	font-size: 1.3em;
	line-height: 1.6em;
}

#aside .entry-meta { font-size: 11px; }

/* Layout - Recent Work
--------------------------------------------------------------------------------------------------*/

.recent_work { padding: 0 1%; }

.recent_work li { margin: 0 0 30px; }

.recent_work img.framed { margin: 0 0 0.5em; }


/* Layout - Recommended Reading
-------------------------------------------------------------- */

#reading_recco
{
	width:100%;
	overflow: hidden;
}

#reading_recco p
{
	margin: 0 0 0.5em;
}

#reading_recco .preview
{
	float: left;
	margin: 0 5% 0 0;
	padding: 4px;
	width: 30%;
}

#reading_recco img.framed
{
	padding: 4%;
	width: 92%;
	margin: 0;
}

#reading_recco cite
{
	font-size: 1.3em;
	margin: 0 0 1em;
	display: block;
}


/* Layout - Navigate
-------------------------------------------------------------- */

.navigate li { font-size: 1.3em; }

.navigate li li { font-size: 1em; }

/* Sidebar styles
-------------------------------------------------------------- */

.navigate a
{
	background: url(../images/css/sprite-site-icons.png) 0 50% no-repeat;
	display: block;
	padding: 5px 0 5px 22px;
}

.navigate a.category { background-position: 0 50%; }

.navigate a.feed { background-position: -500px 50%; }

.navigate a.post { background-position: -1000px 50%; }

.navigate a.twitter { background-position: -1500px 50%; }

.navigate a.dribbble { background-position: -2000px 50%; }

.navigate a.linkedin { background-position: -2500px 50%; }

.navigate a.google_plus { background-position: -3000px 50%; }


/* Layout - Image Array
--------------------------------------------------------------------------------------------------*/

.image_array
{
    list-style: none;
    overflow: hidden;
    margin: 0 0 30px;
    padding: 0 1%;
}

.image_array li
{
    width: 29%;
    margin: 0 6.5% 0 0;
    padding: 5px 0;
    float: left;
}

.image_array li.last
{
	margin: 0;
}

.image_array .image_title
{
    font-size: 2.1em;
}

.image_array p
{
    font-size: 1.3em;
    line-height: 1.4em;
    padding: 0 0 1em;
}

/* Layout reponsive
--------------------------------------------- */

@media screen and (max-width: 960px) 
{
    #page_wrapper
	{
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		margin: 0;
    }
}

@media screen and (max-width: 800px) 
{
	#content_wrapper
	{
		width: auto;
		padding: 0 2%;
	}
	
	#header,
	#tag_line
	{
		padding: 20px 2%;
	}
	
	#breadcrumb,
	#footer_wrapper
	{
		padding: 0 2%;
	}
	
	#content,
	#aside
    {
    	float: none;
    	width: auto;
    	margin: 0 0 20px;
    	padding: 0;
    }
    
    #content
    {
    	border-bottom: 1px dashed #596549;
    }
    
    .portfolio #content
    {
    	border-bottom: none;
    }

    #aside section
    {
    	width: 31%;
    	float: left;
    	padding: 0 1%;
    }
        
    #tag_line,
    .section_title
    {
    	text-align: center;
    }
        
    #aside h6
    {
    	font-size: 2.1em;
    }
    
    #standard_form label
	{
		font-size: 2.1em;
	}
    
    .image_array
	{
	    margin: 0 0 20px;
	    padding: 0;
	    overflow: visible;
	}
	
	.image_array li
	{
	    width: auto;
	    margin: 0;
	    float: none;
	}
	
	.recent_work li
	{
		width: 29%;
	    margin: 0 6.5% 0 0;
	    float: left;
	}
	
	.recent_work li.last
	{
		margin: 0;
	}
}   
    
    
@media screen and (max-width: 500px)
{
    #content_wrapper 
    #breadcrumb
    {
        padding: 0 4%;
    }
    
    #header,
    #footer,
    #tag_line
    {
    	padding: 15px 4%;
    }

    #user_data,
	#user_message,
	#content
    {
    	width: auto;
    	float: none;
    	padding: 0;
    }
    
    #logo 
    {
        float: none;
        margin: 0 auto 20px auto;
        width: 96px;
        height: 96px;
    }
    
    #aside section
    {
    	width: auto;
    	float: none;
    }
          
    #navigation
    {
    	float: none;
    }
    
    #menu_main 
    {
        text-align: center;
    }
    
    #menu_main li 
    {
        float: none;
        display: inline;
        width: auto;
        margin: 0;
    }
       
    #menu_main a
    {
        float: none;
        display: inline-block;
		padding: 0 2px;
        margin: 0 6px;
        width: auto;
    }
    
    #tag_line h1
    {
    	text-align: center;
    	font-size: 5.1em;
    }
    
	#content .section_title,
	.article h1
    {
    	font-size: 3.1em;
    	text-align: center;
    }
    
    #content h2,
    #content h3,
    #content h4,
    #content h5,
    #standard_form label,
    #menu_main,
    .comment_title,
    .comment_entry cite,
    .article h2,
	.article h3,
	.article h4,
	.article h5,
	.article h6
    {
    	font-size: 1.9em; 
    }
      	
 	#content p,
 	input.text,
	textarea,
	input[type=submit],
	#footer p,
	.comment_entry p,
	#standard_form label.error,
	#breadcrumb p
 	{
 		font-size: 1.2em;
 	}
 	
 	.recent_work li
	{
		width: auto;
	    margin: 0 0 20px;
	    float: none;
	}
	
	#footer p.left,
	#footer p.right
	{
		float: none;
		line-height: 2em;
		text-align: center;
	}
	
	#footer #ee
	{
		margin: 0 auto;
	}
}
