/*------------------------------------------------------------
# Responsive Stylesheet
Filename:		responsive.css
Site:			www.sean-powers.com
Version:		1.1.1
Last Change:	24/05/16 [Changed several divs from id to class for SEO]
Author:			Sean Powers
Description:	Responsive Style Sheet for multiple devices.

### Table of Contents ###

* CSS Reset
* HTML Selectors (Defaults)
	** Body
	** Headers
	** Horizontal Rules
	** Forms
	** Tables
	** Navigation
	** Wrappers
* Content
	** Article
		*** Blog
		*** Portfolio
		*** Testimonials
	** Section
		*** Blog
		*** Portfolio
		*** Testimonials
	** Graphics
		*** Wide Strip
		*** Ribbons
		*** Navigation
	** Social Icons
* Footer
	** Widgets
		*** Twitter
		*** Photostream
		*** Recent News
	** Content Info
* Media Queries
	** Small Viewports (old monitors, netbooks, tablets, etc.)
	** Smaller Viewports (more tablets, old monitors)
	** Even Smaller Viewports (more tablets etc.)
	** Mobile Phones (Landscape) and Tablets (Portrait)
	** Mobile Phones
------------------------------------------------------------*/

/*-------------------- CSS Reset --------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; }
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block; }
body {
	line-height: 1; }
ol, ul {
	list-style: none; }
blockquote, q {
	quotes: none; }
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none; }
table {
	border-collapse: collapse;
	border-spacing: 0; }

/*-------------------- HTML Selectors --------------------*/
/* ### Body ### */
html {
	height: 100%;
	overflow: auto;
	overflow-y: scroll; }
body {
	height: 100%;
	font: 100%/1.5 Arial, Arial, Helvetica, sans-serif;
	background: url("../img/layout/body_bg.png"); }
a {
	font: 14px 'Cinzel';
	text-decoration: none;
	color: #2b89c9;
	transition: 0.3s; }
a:hover {
	color: #6B6868; }
b {
	font-weight: bold; }
	
/* ### Headers ### */
header {
	background: url("../img/layout/header_bg.png");
	border-left: 1px solid #bfbfbf;
	border-right: 1px solid #bfbfbf;
	height: 100px; }
header img {
	float: left; }
#header-gap {
	background: url("../img/layout/gap_bg.png");
	height: 40px; }
	
div #mobile_nav {
	display: none; }
div #mobile_nav h2 {
	font: 30px 'Gotham Nights';
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	margin-top: 10px;
	color: #fff; }	
#menu_icon {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	padding: 10px; }
	
nav#mobile_menu {
	display: none; }
nav#mobile_menu h3 {
	position: relative;
	padding: 12px 10px;
	font: 20px 'Gotham Nights';
	text-decoration: none;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	text-transform: uppercase;
	color: #fff;
	border-bottom: 4px solid rgba(0,0,0,0.4); }
nav#mobile_menu .menu_toggle {
	position: absolute;
	top: 12px;
	right: 10px;
	display: inline-block;
	padding: 6px 9px 5px;
	font: 10px 'Cinzel';
	text-decoration: none;
	color: #fff;
	background: rgba(0,0,0,0.4);
	vertical-align: top; }
nav#mobile_menu .menu_toggle:hover {
	background: rgba(0,0,0,0.15); }
nav#mobile_menu ul {
	border-bottom: 1px solid rgba(255,255,255,0.6);
	border-top: 1px solid rgba(0,0,0,0.4); }
nav#mobile_menu ul li {
	border-top: 1px solid rgba(255,255,255,0.6);
	border-bottom: 1px solid rgba(0,0,0,0.4); }
nav#mobile_menu ul li a {
	font: 20px 'Gotham Nights';
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	color: #fff;
	padding: 15px 10px 10px;
	display: block; }
nav#mobile_menu ul li a:hover {
	color: #dcdcdc;
	background: rgba(0,0,0,0.25); }
	
/* ### Horizontal Rules ### */
hr {
	height: 1px;
	border: none;
	background-image: -moz-linear-gradient(left, rgba(138,133,133,0), rgba(138,133,133,1), rgba(138,133,133,0));
	margin: 20px 0; }
section#portfolio hr {
	width: 200px;
	height: 1px;
	margin: 20px auto;
	border: none;
	background: #8a8585; }
	
/* ### Forms ### */
article input[type=submit]{
	float: right;
	margin-right: 10px; }
div#portfolio_text input[type=submit], div#comment_form input[type=submit]{
	float: none;
	margin: 20px auto 30px; }
div#message {
	background: #e6e6e6;
	border: 1px solid #bfbfbf;
	margin-bottom: 20px;
	padding: 20px; }
div#message.child {
	margin-left: 30px; }
div#comment_form input[type=text] {
	width: 98.5%; }
div#comment_form select {
	width: 99.5%; }
div#comment_form textarea{
	width: 98.5%;
	height: 200px;
	resize: none; }
div#comment_form input[type=text], select, textarea {
	border: 1px solid #bfbfbf;
	padding: 5px;
	font: 14px 'LiberationSerif';
	color: #6b6868;
	transition: 0.3s; }
div#comment_form input[type=text]#test_email {
	position: absolute;
	left: -9999em; }
div#comment_form option {
	color: #6b6868; }
div#comment_form input[type=text]:focus, select:focus, textarea:focus {
	border: 1px solid #2b89c9;
	box-shadow: 0px 0px 5px rgba(43,137,201,0.6); }
input[type=submit]{
	background: #2b89c9;
	border: 1px solid #000;
	border-radius: 5px;
	box-shadow: 0 -3px 0 rgba(0,0,0,0.4) inset;
	font: 18px 'BlackJack';
	color: #fff;
	cursor: pointer;
	text-shadow: 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000, 2px 2px 0px rgba(43, 39, 40, 0.75);
	width: 150px;
	padding: 3px;
	display: block;
	margin: 20px auto 30px;
	transition: 0.3s; }
input[type=submit]:hover{
	background: #6babd6;
	box-shadow: 0 -3px 0 rgba(0,0,0,0.2) inset, 0px 0px 5px rgba(0,0,0,0.6); }
.error {
	color: #ff0000; }
div#comment_form input[type=text].error, select.error, textarea.error {
	border: 1px solid #ff0000; }
	
/* ### Tables ### */
div#table_border {
	border: 1px solid #6b6868;
	margin-bottom: 20px; }
article table {
	width: 100%; }
article table th {
	font: 16px 'Cinzel';
	background: #2b89c9;
	color: #fff;
	text-shadow: 1px 1px rgba(43, 39, 40, 0.75); }
article table td {
	font: 14px 'LiberationSerif';
	color: #6b6868; }
article table td, th {
	border: 1px solid #bcbcbc;
	padding: 5px; }
article table td img {
	max-width: 200px;
	max-height: 200px; }
	
/* ### Navigation ### */
header nav {
	float: right; }
nav#menu ul li {
	display: inline-block;
	margin: 0 30px;
	line-height: 95px; }
nav#menu ul li a {
	font: 30px 'Gotham Nights';
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	color: #fff; }
nav#menu ul li a:hover {
	color: #dcdcdc; }
nav ol li {
	display: inline-block; }
nav#pagination {
	margin: 30px 0;
	text-align: center; }
nav#pagination li a {
	padding: 3px 10px;
	font: 14px 'LiberationSerif';
	font-style: italic; }
nav#pagination li a.active {
	background: #2b89c9;
	color: #ffffff;
	border-radius: 20px; }

/* ### Wrappers ### */
#body_wrapper {
	width: 1200px;
	margin: 0 auto 50px;
	background: #fff;
	-moz-box-shadow: 0 5px 5px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.15);
	box-shadow: 0 5px 10px rgba(0,0,0,0.75), 0 0px 10px rgba(0,0,0,0.75); }
#portfolio_wrapper {
	margin: 0 auto;
	overflow: hidden; }
div#footer_wrapper {
	width: 1200px;
	margin: 0 auto; }

/*-------------------- Content --------------------*/
/* ### Article ### */
article {
	padding: 0 15px;
	background: #f1f1f1;
	border-bottom: 1px solid #bfbfbf; }
article div#intro_text {
	overflow: hidden;
	width: 851px;
	float: left; }
article div#mascot img {
	display: block; }
article div#portfolio_text {
	width: 70%;
	margin: 0 auto;
	padding: 0 10px;
	overflow: hidden; }
article div#portfolio_text h3.article_title {
	font: 36px 'BlackJack';
	font-weight: bold;
	line-height: 46px;
	text-shadow: 2px 1px 1px rgba(43,39,40,0.2); }
article div#portfolio_text h2 {
	font: 24px 'BlackJack';
	font-weight: bold;
	line-height: 46px;
	text-shadow: 2px 1px 1px rgba(43,39,40,0.2);
	color: #6b6868;
	margin-bottom: 10px; }
article p, article ul li {
	font: 16px 'LiberationSerif';
	color: #6b6868;
	margin-bottom: 10px; }
article ul li {
	margin-left: 20px;
	list-style: disc; }
article ul#admin-cat {
	font-size: 0; } 
article ul#admin-cat li {
	margin: 0 13px;
	list-style: none;
	display: inline-block;
	text-align: center; }
article ul#admin-cat li img {
	width: 240px; }
article strong {
	font-weight: bold; }
label {
	display: block;
	font: 16px 'LiberationSerif';
	font-weight: bold;
	color: #6b6868;
	margin-bottom: 10px; }
.profile {
	float: left;
	margin: 0 20px 20px 0; }
.mascot {
	float: right;
	margin: 0 0 20px 20px; }
span.important {
	color: #ff0000;
	font-weight: normal; }
span.note {
	font-size: 12px;
	font-weight: normal;
	font-style: italic; }
article h3 {
	font: 24px 'Cinzel';
	color: #6b6868;
	font-weight: bold;
	margin-bottom: 10px; }

/* ~~~ Blog ~~~ */
div.blog_entry_2 {
	position: relative;
	padding: 0 0 0 265px; }
div.blog_entry_2 img {
	margin: 0;
	width: 240px;
	position: absolute;
	left: 5px;
	top: 5px; }
div.blog_entry_2 h3 {
	font-size: 20px;
	margin-bottom: 0; }
div.blog_entry_2 p {
	font-size: 14px; }
div.blog_entry_2 p img {
	display: none; }
	
/* ~~~ Portfolio ~~~ */
div#portfolio figure {
	position: relative;
	display: block;
	margin: 30px 28px;
	border-radius: 5px;
	box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6), 0px 0px 5px rgba(0, 0, 0, 0.6);
	float: left; }
div#portfolio figure figcaption {
	text-align: center;
	background: rgba(43,137,201,0.8);
	position: absolute;
	opacity: 0;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 5px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-moz-transition: 0.4s;
	-ms-transition: 0.4s;
	-o-transition: 0.4s; }
div#portfolio figure:hover figcaption {
	opacity: 1; }
div#portfolio figure figcaption div {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%); }
div#portfolio figure figcaption h4 {
	font: 18px 'Cinzel';
	text-shadow: 1px 1px 0px rgba(43,39,40,0.6);
	color: #fff;
	font-weight: bold; }
div#portfolio figure figcaption hr {
	height: 1px;
	border: none;
	width: 75%;
	background-image: -moz-linear-gradient(left, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0));
	box-shadow: 1px 1px 2px rgba(43,39,40,0.6);
	margin: 10px auto; }
div#portfolio figure figcaption p {
	font-size: 14px;
	color: #fff;
	text-shadow: 1px 1px 0px rgba(43,39,40,0.6); }
div#portfolio img {
	margin-bottom: 0 !important;
	width: 326px; }
div#portfolio_gallery img {
	margin: 20px auto;
	border: 10px solid #e6e6e6;
	box-shadow: 1px 1px 0 #bcbcbc, 1px -1px 0 #bcbcbc, -1px 1px 0 #bcbcbc, -1px -1px 0 #bcbcbc;
	border-radius: 2px;
	position: relative; }
div#folio_features {
	margin-bottom: 20px; }
div#folio_features h3 {
	font-size: 20px;
	padding: 5px 0;
	font-weight: normal;
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf; }
div#folio_features ul li.no {
	color: #bfbfbf;
	text-decoration: line-through; }
div#folio_features ul {
	font: 14px 'LiberationSerif';
	color: #6b6868; }

/* --- Testimonials --- */
p.review {
	font-size: 20px;
	font-style: italic;
	text-shadow: 2px 2px 6px rgba(0,0,0,0.25); }
p.review:before {
	content: "\201C"; }
p.review:after {
	content: "\201D"; }
p.review_author {
	margin-top: 10px;
	text-align: right; }
	
/* ### Section ### */
section {
	padding: 15px; }
section p {
	font: 16px 'LiberationSerif';
	color: #6b6868; }
	
/* ~~~ Portfolio ~~~ */
section#portfolio {
	background: #e6e6e6;
	border-bottom: 1px solid #bfbfbf; }
section#portfolio div.portfolio_entry {
	display: table-cell;
	width: 390px; }
section#portfolio h3, section#blog h3 {
	font: 24px 'Cinzel';
	color: #6b6868;
	text-align: center;
	letter-spacing: 2px;
	text-shadow: 1px 1px 0 rgba(43,39,40,0.4);
	transition: 0.3s; }
section#portfolio h3:hover, section#blog h3:hover {
	color: #2b89c9; }
section#portfolio p, section#blog p {
	text-align: center;
	margin-bottom: 30px; }
section#blog, section#reviews {
	background: #f1f1f1;
	border-bottom: 1px solid #bfbfbf;
	z-index: 8; }
section#portfolio img, div#portfolio img, div.blog_entry_2 img, section#blog img, article ul#admin-cat li img {
	display: block;
	margin: 0 auto 20px;
	border: 3px solid #e6e6e6;
	box-shadow: 1px 1px 0 #bcbcbc, 1px -1px 0 #bcbcbc, -1px 1px 0 #bcbcbc, -1px -1px 0 #bcbcbc;
	border-radius: 5px; }
section#portfolio img {
	width: 360px; }
section#blog img {
	width: 240px; }

/* ~~~ Recent Posts ~~~ */
section#blog {
	width: 770px;
	display: table-cell;
	border-right: 1px solid #bfbfbf; }
section#blog h3 {
	margin-bottom: 10px; }
section#blog div.blog_entry{
	width: 385px;
	display: table-cell; }
section#blog p.blog_date {
	font-style: italic;
	font-size: 14px;
	margin-bottom: 15px; }

/* ~~~ Testimonials ~~~ */
section#reviews {
	width: 370px;
	display: table-cell; }
section#reviews p {
	margin-bottom: 20px; }

/* ### Graphics ### */
/* ~~~ Wide Strip ~~~ */	
#wide_strip {
	position: relative;
	width: 100%;
	top: -15px; }
#wide_strip_start {
	height: 88px;
	width: 19px;
	position: relative;
	left: -34px;
	background: url("../img/layout/wide_strip_start.png");
	float: left; }
#wide_strip_middle {
	height: 88px;
	position: relative;
	margin: 0 -15px;
	padding: 0 15px;
	background: url("../img/layout/wide_strip_middle.png") repeat-x;}
#wide_strip_middle h1 {
	font: 30px 'Cinzel';
	color: #fff;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	line-height: 95px; }
#wide_strip_end {
	height: 88px;
	width: 19px;
	position: relative;
	right: -34px;
	top: -88px;
	background: url("../img/layout/wide_strip_end.png");
	float: right; }

/* ~~~ Ribbons ~~~ */	
.ribbon {
	display: inline-block;
	position: relative;
	left: -34px;
	top: -15px; }
.ribbon_start {
	height: 75px;
	width: 19px;
	background: url("../img/layout/ribbon_start.png");
	float: left; }
.ribbon_middle {
	height: 75px;
	width: 150px;
	background: url("../img/layout/ribbon_middle.png") repeat-x;
	float: left; }
.ribbon_middle h2 {
	font: 24px 'BlackJack';
	color: #fff;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	text-align: center;
	line-height: 80px; }
.ribbon_end {
	height: 75px;
	width: 38px;
	background: url("../img/layout/ribbon_end.png") no-repeat;
	float: left; }
	
/* ~~~ Navigation ~~~ */
.ribbon_nav {
	display: inline-block;
	position: relative;
	float: right;
	right: -21px;
	bottom: -20px; }
.ribbon_nav_start {
	height: 75px;
	width: 38px;
	background: url("../img/layout/ribbon_nav_start.png");
	float: left; }
.ribbon_nav_middle {
	height: 75px;
	background: url("../img/layout/ribbon_nav_middle.png") repeat-x;
	float: left; }
.ribbon_nav_end {
	height: 75px;
	width: 20px;
	background: url("../img/layout/ribbon_nav_end.png") no-repeat;
	float: left; }
	
/* ### Social Icons ### */
section#social {
	margin-top: -18px;
	margin-bottom: -12px;
	padding: 0; }
section#social ul {
	float: right;
	margin-top: 33px; }
section#social ul li {
	display: inline-block;
	margin-left: 15px; }
section#social ul li a {
	text-decoration: none;
	text-align: center;
	display: block;
	width: 24px;
	height: 24px;
	font-size: 16px;
	line-height: 24px;
	background: #206797;
	border-radius: 32px;
	border: 2px solid #9cc4e4;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5); }
section#social ul li a.facebook:hover {
	background: #3B5999;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.twitter:hover {
	background: #4099FF;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.linkedin:hover {
	background: #007bb5;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.tumblr:hover {
	background: #32506d;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.deviantart:hover {
	background: #4e6252;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.skype:hover {
	background: #12A5F4;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.RSS:hover {
	background: #ff6600;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social ul li a.email:hover {
	background: #8a8585;
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.5), 0px 0px 5px rgba(0,0,0,0.6); }
section#social h2 {
	font: 24px 'BlackJack';
	color: #fff;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	margin: 35px 0 0 0;
	padding: 0;
	border: none;
	box-shadow: none;
	float: left; }
#social_strip {
	position: relative;
	width: 100%; }
#social_strip_start {
	height: 88px;
	width: 19px;
	position: absolute;
	left: -19px;
	background: url("../img/layout/wide_strip_start.png");
	float: left;
	z-index: 10; }
#social_strip_middle {
	height: 88px;
	width: 100%;
	position: relative;
	background: url("../img/layout/wide_strip_middle.png") repeat-x;
	z-index: 10; }
#social_strip_end {
	height: 88px;
	width: 19px;
	position: absolute;
	right: -19px;
	top: 0;
	background: url("../img/layout/wide_strip_end.png");
	float: right;
	z-index: 10; }
.symbol, a.symbol:before {
	font-family: 'MonoSocialIcons';
	font-size: 1.6em;
	color: #fff;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased; }
a.symbol:before {
    content: attr(title);
    margin-right: 0.3em;
    font-size: 130%; }
	
/*-------------------- Footer --------------------*/
footer a {
	color: #9cc4e4;
	font-size: 12px; }
footer a:hover {
	color: #fff; }
	
/* ### Widgets ### */
footer#widgets {
	background: url("../img/layout/footer_bg1.png");
	z-index: 8;
	overflow: hidden; }
footer#widgets section {
	padding: 0;
	width: 400px;
	display: table-cell;
	border-right: 1px solid #2c2b2b;
	border-bottom: 1px solid #2c2b2b; }
footer#widgets section div.widget_body {
	padding: 0 30px 30px; }
footer#widgets section:last-child {
	border-right: none; }
	
/* ~~~ Twitter ~~~ */
footer#widgets section#twitter div.widget_body div, footer#widgets section#minifolio div.widget_body div, footer#widgets section#recentnews div.widget_body div {
	margin-bottom: 20px; }
footer#widgets section p {
	color: #fff;
	font-size: 14px; }
footer#widgets section#twitter p {
	margin-bottom: 5px; }
footer#widgets section div.twitter_icon {
	float: left;
	margin-right: 15px;
	font-size: 16px; }
footer#widgets section div span.symbol {
	color: #787878;
	line-height: 30px; }
footer#widgets section#twitter a {
	font: 14px 'LiberationSerif'; }
footer#widgets section#twitter a.timestamp {
	color: #fff;
	font-weight: bold; }
footer#widgets section#twitter a.timestamp:hover {
	color: #9cc4e4; }
footer#widgets section h2 {
	width: 100%;
	font: 24px 'BlackJack';
	color: #fff;
	text-shadow: 2px 2px rgba(43, 39, 40, 0.75);
	text-align: center;
	background: #6b6868;
	margin-bottom: 30px;
	padding: 15px 0;
	box-shadow: 0px 3px 5px rgba(43, 39, 40, 0.75), inset 1px 0 0 rgba(255, 255, 255, 0.5), inset -1px 0 0 rgba(0,0,0,0.5), inset 0 -5px 0 #8a8585; }
	
/* ~~~ Mini Portfolio ~~~ */
footer#widgets section#minifolio h3 {
	font: 18px 'Cinzel';
	color: #fff;
	font-weight: bold;
	transition: 0.3s; }
footer#widgets section#minifolio h3:hover {
	color: #9cc4e4; }
footer#widgets section#minifolio a {
	font-weight: bold; }
	
/* ~~~ Instagram ~~~ */
footer#widgets section#instagram {
	text-align: center; }
footer#widgets section#instagram li {
	float: left;
	margin: 0 12px 20px; }
footer#widgets section#instagram a {
	display: block; }
footer#widgets section#instagram a:hover {
	box-shadow: 0px 0px 10px #9CC4E4; }
footer#widgets section#instagram img {
	display: block;
	border: 3px solid #4d4848;
	box-shadow: 1px 1px 0 #6b6868, 1px -1px 0 #6b6868, -1px 1px 0 #6b6868, -1px -1px 0 #6b6868;
	border-radius: 5px; }
	
/* ~~~ Recent News ~~~ */
footer#widgets section#recentnews h3 {
	font: 18px 'Cinzel';
	color: #fff;
	font-weight: bold;
	transition: 0.3s; }
footer#widgets section#recentnews h3:hover {
	color: #9cc4e4; }
footer#widgets section#recentnews a {
	font-weight: bold; }
	
/* ### Content Info ### */
footer#contentinfo {
	padding: 15px;
	background: url("../img/layout/footer_bg2.png");
	color: #fff;
	font-size: 0; }
footer#contentinfo_mobile {
	display: none; }
footer#contentinfo_mobile div#logo {
	margin-top: 10px;
	text-align: center;
	position: relative; }
footer#contentinfo_mobile div#logo p {
	font: 16px 'BlackJack';
	text-shadow: 1px 1px 0px rgba(0,0,0,0.75);
	position: absolute;
	width: 100%;
	display: none; }
footer#contentinfo div {
	display: inline-block;
	font: 16px 'LiberationSerif'; }
footer#contentinfo div#footer-left {
	width: 545px;
	text-align: right;
	vertical-align: middle;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.75); }
footer#contentinfo div#footer-middle {
	width: 80px;
	text-align: center;
	vertical-align: middle;
	position: relative; }
footer#contentinfo div#footer-middle p {
	font: 16px 'BlackJack';
	text-shadow: 1px 1px 0px rgba(0,0,0,0.75);
	position: absolute;
	width: 100%;
	display: none; }
footer#contentinfo div#footer-right {
	width: 545px;
	text-align: left;
	vertical-align: middle;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.75); }
footer#contentinfo a {
	font-size: 14px; }

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

/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - desktop (default grid)
   1024-768    - tablet landscape
   768-480     - tablet 
   480-less    - phone landscape & smaller
--------------------------------------------*/
@media all
and (min-width: 1024px)
and (max-width: 1280px) {
/* ### Navigation ### */
nav#menu ul li {
	margin: 0 15px;
	line-height: 90px; }
nav#menu ul li a {
	font: 24px 'Gotham Nights'; }
	
/* ### Article ### */
article div#intro_text {
	width: 600px; }
article div#portfolio_text {
	width: 85%; }

section#portfolio img {
	width: 280px; }

/* ~~~ Portfolio ~~~ */
div#portfolio figure {
	margin: 30px 29px; }
div#portfolio img {
	width: 400px; }
div#portfolio_gallery img {
	width: 910px;
	border: 5px solid #e6e6e6;}

section#portfolio div.portfolio_entry {
	width: 310px; }

/* ~~~ Recent Posts ~~~ */
section#blog {
	width: 610px;}
section#blog div.blog_entry{
	width: 305px; }
	
/* ~~~ Testimonials ~~~ */
section#reviews {
	width: 290px; }

/* ### Wrappers ### */
#body_wrapper {
	width: 960px; }
div#footer_wrapper {
	width: 960px; }
	
/* ### Content Info ### */
footer#contentinfo div#footer-left {
	width: 425px; }
footer#contentinfo div#footer-right {
	width: 425px; }
}

@media all
and (min-width: 768px)
and (max-width: 1024px) {
/* ### Headers ### */
header img {
	float: none;
	display: block;
	margin: 0 auto; }
	
/* ### Forms ### */
article input[type=submit]{
	float: none;
	margin: 20px auto 30px; }
	
div #mobile_nav {
	display: block;
	background: #2b89c9;
	text-align: center;
	height: 50px;
	position: relative;
	overflow: hidden; }
	
nav#mobile_menu {
	display: block;
	position: fixed;
	top: 0;
	left: -251px;
	width: 250px;
	height: 100%;
	background: #2b89c9;
	border-right: 1px solid rgba(0,0,0,0.4);
	z-index: 100; }
	
/* ### Navigation ### */
header nav {
	display: none; }

/* ### Article ### */
article div#portfolio_text {
	width: 85%; }

/* ### Wrappers ### */
#body_wrapper {
	width: 720px; }
div#footer_wrapper {
	width: 720px; }
	
/* ### Article ### */
article div#intro_text {
	float: none;
	padding-right: 0;
	width: auto; }
article div#mascot img {
	display: block;
	margin: 0 auto; }
	
/* ~~~ Portfolio ~~~ */	
section#portfolio div.portfolio_entry {
	display: block;
	width: auto; }
	
/* ~~~ Recent Posts ~~~ */
section#blog {
	width: auto;
	display: block; }
	
/* ~~~ Testimonials ~~~ */
section#reviews {
	width: auto;
	display: block; }
	
/* ~~~ Portfolio ~~~ */
div#portfolio img {
	width: 282px; }
div#portfolio_gallery img {
	width: 670px;
	border: 5px solid #e6e6e6; }
	
/* ### Content Info ### */
footer#contentinfo div {
	font: 13px 'LiberationSerif'; }
footer#contentinfo div#footer-left {
	width: 305px; }
footer#contentinfo div#footer-right {
	width: 305px; }
footer#contentinfo a {
	font-size: 12px; }
}

@media all
and (min-width: 480px)
and (max-width: 768px) {
/* ### Headers ### */
header img {
	float: none;
	display: block;
	margin: 0 auto; }
	
/* ### Forms ### */
article input[type=submit]{
	float: none;
	margin: 20px auto 30px; }
	
div #mobile_nav {
	display: block;
	background: #2b89c9;
	text-align: center;
	height: 50px;
	position: relative;
	overflow: hidden; }
	
nav#mobile_menu {
	display: block;
	position: fixed;
	top: 0;
	left: -251px;
	width: 250px;
	height: 100%;
	background: #2b89c9;
	border-right: 1px solid rgba(0,0,0,0.4);
	z-index: 100; }
	
/* ### Navigation ### */
header nav {
	display: none; }
	
/* ### Article ### */
article div#portfolio_text {
	width: auto;
	margin: 0 auto;
	padding: 5px 10px 0;
	overflow: hidden; }

/* ### Wrappers ### */
#body_wrapper {
	width: 80%; }
div#footer_wrapper {
	width: auto; }
	
/* ### Article ### */
article div#intro_text {
	float: none;
	padding-right: 0;
	width: auto; }
article div#mascot img {
	display: block;
	margin: 0 auto; }
.profile, .mascot {
	float: none;
	display: block;
	margin: 0 auto 20px; }
	
/* ~~~ Blog ~~~ */
div.blog_entry_2 {
	position: static;
	padding: 0; }
div.blog_entry_2 img {
	margin-top: 5px;
	width: 95%;
	position: static; }
	
/* ~~~ Portfolio ~~~ */
div#portfolio figure {
	margin: 30px auto;
	width: 95%;
	float: none; }
div#portfolio img {
	margin-bottom: 0 !important;
	width: 98%; }
div#portfolio_gallery img {
	width: 95%;
	margin: 20px auto;
	border: 5px solid #e6e6e6; }
	
/* ### Section ### */	
/* ~~~ Portfolio ~~~ */	
section#portfolio div.portfolio_entry {
	display: block;
	width: auto; }
section#portfolio img {
	width: 95%; }
	
/* ~~~ Recent Posts ~~~ */
section#blog {
	width: auto;
	display: block; }
section#blog div.blog_entry{
	width: auto;
	display: block; }
	
/* ~~~ Testimonials ~~~ */
section#reviews {
	width: auto;
	display: block; }
	
/* ### Graphics ### */
/* ~~~ Wide Strip ~~~ */	
#wide_strip {
	position: relative;
	width: 100%;
	padding: 10px 0; }
#wide_strip_start {
	display: none; }
#wide_strip_middle {
	height: auto;
	position: relative;
	margin: 0 -15px;
	padding: 0 15px;
	background: none; }
#wide_strip_middle h1 {
	font: 26px 'Cinzel';
	color: #6B6868;
	text-shadow: 1px 1px rgba(43, 39, 40, 0.4); }
#wide_strip_end {
	display: none; }
	
/* ### Social Icons ### */
section#social {
	background: #e6e6e6;
	border-bottom: 1px solid #2c2b2b;
	margin: 0;
	padding: 15px; }
section#social ul {
	float: none;
	margin: 0;
	width: 100%;
	text-align: center; }
section#social ul li {
	display: inline-block;
	margin: 15px 5px 0; }
section#social h2 {
	color: #6b6868;
	text-shadow: 2px 1px 1px rgba(43, 39, 40, 0.25);
	margin: 0;
	float: none;
	width: 100%;
	text-align: center; }
#social_strip {
	position: relative;
	width: 100%; }
#social_strip_start {
	display: none; }
#social_strip_middle {
	height: auto;
	background: none; }
#social_strip_end {
	display: none; }
	
/*-------------------- Footer --------------------*/
/* ### Widgets ### */
footer#widgets section {
	width: auto;
	display: block; }
	
/* ### Content Info ### */
footer#contentinfo {
	display: none; }
footer#contentinfo_mobile {
	display: block;
	padding: 15px;
	background: url("../img/layout/footer_bg2.png");
	color: #fff;
	font: 14px 'LiberationSerif';
	text-shadow: 2px 2px 1px rgba(0,0,0,0.75); }
}

@media all
and (max-width: 480px) {
/* ### Headers ### */
header {
	height: auto; }
header img {
	float: none;
	display: block;
	margin: 0 auto;
	max-width: 100%; }
	
/* ### Forms ### */
article input[type=submit]{
	float: none;
	margin: 20px auto 30px; }
	
div #mobile_nav {
	display: block;
	background: #2b89c9;
	text-align: center;
	height: 50px;
	position: relative;
	overflow: hidden; }
	
nav#mobile_menu {
	display: block;
	position: fixed;
	top: 0;
	left: -251px;
	width: 250px;
	height: 100%;
	background: #2b89c9;
	border-right: 1px solid rgba(0,0,0,0.4);
	z-index: 100; }
	
/* ### Navigation ### */
header nav {
	display: none; }
	
/* ### Horizontal Rules ### */
section#portfolio hr {
	width: 200px;
	height: 1px;
	margin: 15px auto;
	border: none;
	background: #8a8585; }
	
/* ### Article ### */
article div#portfolio_text {
	width: auto;
	margin: 0 auto;
	padding: 5px 10px 0;
	overflow: hidden; }

/* ### Wrappers ### */
#body_wrapper {
	width: 90%; }
div#footer_wrapper {
	width: auto; }
	
/* ### Article ### */
article div#intro_text {
	float: none;
	padding-right: 0;
	width: auto; }
article div#mascot img {
	display: block;
	margin: 0 auto;
	max-width: 100%; }
article div#portfolio_text h3.article_title {
	font: 24px 'BlackJack';
	font-weight: bold;
	line-height: 46px;
	text-shadow: 2px 1px 1px rgba(43,39,40,0.2); }
.profile, .mascot {
	float: none;
	display: block;
	margin: 0 auto 20px;
	max-width: 100%; }
	
/* ~~~ Blog ~~~ */
div.blog_entry_2 {
	position: static;
	padding: 0; }
div.blog_entry_2 img {
	margin-top: 5px;
	width: 95%;
	position: static; }
	
/* ~~~ Portfolio ~~~ */
div#portfolio figure {
	margin: 30px auto;
	width: 95%;
	float: none; }
div#portfolio img {
	margin-bottom: 0 !important;
	width: 98%; }
div#portfolio_gallery img {
	width: 95%;
	margin: 20px auto;
	border: 5px solid #e6e6e6; }
	
/* ### Section ### */	
/* ~~~ Portfolio ~~~ */	
section#portfolio div.portfolio_entry {
	display: block;
	width: auto; }
section#portfolio h3, section#blog h3 {
	font: 20px 'Cinzel';
	color: #6b6868;
	text-align: left;
	letter-spacing: 2px;
	text-shadow: 1px 1px 0 rgba(43,39,40,0.4);
	transition: 0.3s; }
section#portfolio p, section#blog p {
	text-align: left;
	margin-bottom: 30px; }
section#portfolio img {
	width: 95%; }
	
/* ~~~ Recent Posts ~~~ */
section#blog {
	width: auto;
	display: block; }
section#blog div.blog_entry{
	width: auto;
	display: block; }
	
/* ~~~ Testimonials ~~~ */
section#reviews {
	width: auto;
	display: block; }
	
/* ### Graphics ### */
/* ~~~ Wide Strip ~~~ */	
#wide_strip {
	position: relative;
	width: 100%;
	padding: 10px 0; }
#wide_strip_start {
	display: none; }
#wide_strip_middle {
	height: auto;
	position: relative;
	margin: 0 -15px;
	padding: 0 15px;
	background: none; }
#wide_strip_middle h1 {
	font: 26px 'Cinzel';
	color: #6B6868;
	text-shadow: 1px 1px rgba(43, 39, 40, 0.4); }
#wide_strip_end {
	display: none; }
	
/* ### Social Icons ### */
section#social {
	background: #e6e6e6;
	border-bottom: 1px solid #2c2b2b;
	margin: 0;
	padding: 15px; }
section#social ul {
	float: none;
	margin: 0;
	width: 100%;
	text-align: center; }
section#social ul li {
	display: inline-block;
	margin: 15px 5px 0; }
section#social h2 {
	color: #6b6868;
	text-shadow: 2px 1px 1px rgba(43, 39, 40, 0.25);
	margin: 0;
	float: none;
	width: 100%;
	text-align: center; }
#social_strip {
	position: relative;
	width: 100%; }
#social_strip_start {
	display: none; }
#social_strip_middle {
	height: auto;
	background: none; }
#social_strip_end {
	display: none; }
	
/*-------------------- Footer --------------------*/
/* ### Widgets ### */
footer#widgets section {
	width: auto;
	display: block; }
	
/* ### Content Info ### */
footer#contentinfo {
	display: none; }
footer#contentinfo_mobile {
	display: block;
	padding: 15px;
	background: url("../img/layout/footer_bg2.png");
	color: #fff;
	font: 14px 'LiberationSerif';
	text-shadow: 2px 2px 1px rgba(0,0,0,0.75); }
}