/*
Theme Name: 	coloveration
Theme URI: 		http://www.coloveration.com/
Description: 	Art & Design, Personalized.
Version: 		1.0
Author: 		Ruth Ann Pearce & Michael L'Ecuyer
Author URI: 	http://www.coloveration.com/
Tags: 			
*/

/*
===========================
CONTENTS:

01 Reset
02 Sensible defaults
03 Typography
04 Forms 
05 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Reset ---------------------------------------------------------------------------------------------------- 
---------------------------------------------------------------------------------------------------------- */
/* Included here rather than seperate stylesheet to reduce server calls */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, 
code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, 
figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video  { 
	margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent; 
}        
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section  { display: block; }
audio, canvas, video  { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }
html { 
	font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; 
}
body { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-weight:normal; }          
a { color:blue; }
a:focus { outline: thin dotted; }
li { list-style:none; }
abbr[title] { border-bottom:none; }
b, strong { font-weight: 700; }
i, em, dfn { font-style: italic; }
hr {}
ins  { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.75em; }
sub { bottom: -0.25em; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
label { cursor: pointer; }
input, 
select, 
textarea { font-size: 100%; margin: 0; }
button, input { line-height: normal; *overflow: visible; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }

/* ---------------------------------------------------------------------------------------------------------- 
02 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }
.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; /* For clearing */ }
body 				{ background:#fff; /* Don't forget to style your body to avoid user overrides */ }
::-moz-selection 	{ background:#441F16; color:#FFFFCC; }
::selection 		{ background:#441F16; color:#FFFFCC; }

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

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.75em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/

body,
input,
textarea  {
	font-family: sans-serif;
	font-size: 14px;
	font-size: 1em;
}

p {
	font-family: serif;
	font-size: 1.125em;
	line-height: 1.75em;
}

p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

h1 {
	text-transform: uppercase;
	text-align: center;
	font-size: .75em;
}

h2 {
	text-transform: uppercase;
	text-align: center;
	font-size: 1.75em;
}

a {
	color: inherit;
	outline: 0;
	text-decoration: none;
}

a:active, a:focus, a:hover, button {
	outline: 0;
}

/* ---------------------------------------------------------------------------------------------------------- 
04 Forms -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: none; /* Corrects inability to style clickable 'input' types in iOS */
	font-family: "Gill Sans - Regular";
}
button:hover, 
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
}
input[type=text],
input[type=email],
textarea {
	resize: vertical;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    color: red;
}
input[type=text],
input[type=email] {
}
textarea {
    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
    vertical-align: top; /* Improves readability and alignment in all browsers */
}

/* ---------------------------------------------------------------------------------------------------------- 
05 Media queries (using a mobile-first approach) ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

html {
}

/* http://stackoverflow.com/questions/12845892/ios-overflow-x-or-position-absolute-makes-scrolling-choppy */

body {
	position: relative;
	width: 100%;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	background-color: #996633;
}

#wrapper {}

.outer {
	display: table;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.outer .inner {
	display: table-cell;
	width: 100%;
	margin: 0;
	margin: 0 auto;
	padding: 0;
	vertical-align: middle;
	text-align: center;
}

/* WELCOME */

#message {
	position: absolute;
	width: 100%;
	height: 37.5%;
	left: 0;
	top: 0;
	color: #FFFFCC;
}

#message p, #message h1, #message h2 {
	font-size: 1.75em;
	line-height: normal;
}

#italic {}

#welcome {
	background-image: url("img/co.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 50% 50%;
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}

#container {
	position: relative;
	display: block;
	width: 100vw;
	height: 100vh;
}

#ruth-ann {
	position: absolute;
    width: 50%;
    height: auto;
    min-height: 50%;
	left: 0;
	margin-left: -25%;
	bottom: 0;
	background-image: url("img/ruth-ann.svg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

#michael {
	position: absolute;
    width: 50%;
    height: auto;
    min-height: 50%;
	right: 0;
	margin-right: -25%;
	bottom: 0;
	background-image: url("img/michael.svg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: contain;
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

/* ART, DESIGN & DEVELOPMENT */

ol.art-design-development_out {
	position: relative;
	display: block;
}

li.art-design-development_in {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

/* Full Browser Width Bars
http://css-tricks.com/full-browser-width-bars/ */

li.art-design-development_in:before, li.art-design-development_in:after {
  content: "";
  position: absolute;
  background: inherit;
  top: 0;
  bottom: 0;
  width: 50%;
}

li.art-design-development_in:before {
  right: 100%; 
}

li.art-design-development_in:after {
  left: 100%;
}

.top {
	position: relative;
	z-index: 1;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
	padding: 20px 0px 20px 0px;
}

.info_off, .info_on {
	position: relative;
	z-index: 2;
	display: none /* inline-block; */;
	width: 20px;
	height: 20px;
	margin: 0px 0px 0px 5px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
}

.information {
	position: relative;
	display: block; /* none */
	float: left;
	width: calc(100% - 40px);
	height: auto;
	margin: 10px 20px 10px 20px;
	padding: 20px;
	text-align: left;
}

.information:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: inherit;
	border-width: 10px;
	margin-left: -10px;
}

.information a {
	color: inherit;
	text-decoration: underline;
}

.information a:active, .information a:hover {
	text-decoration: line-through;
}
        
.title {
	position: relative;
	display: block;
	float: left;
	width: 100%;
    height: auto;
	min-height: 40px;
	padding: 0px 20px 0px 20px;
	-webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
    cursor: pointer;
    cursor: hand;
}

.info-box {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.middle {
	position: relative;
	display: block;
	float: left;
	width: 100%;
    height: auto;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
}

/* ART - PERSONAL */

.device {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	margin: 10px 0px 10px 0px;
	padding: 0px 0px 2px 0px;
}

/* DESIGN - PRINT */

.design-print {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	margin: 2.5px 0px 2.5px 0px;
	padding: 0;
	text-align: center;
}

.design-print-d {
	display: none;
}

.design-print-m {
	display: inline-block;
}

.print {
	margin: 5px;
	padding: 0;
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	cursor: zoom-in!important;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
}

/* DESIGN - WEB */

/* IPAD & IPHONE */

.ipad_out, .iphone_out {
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}
	
.ipad_out {
	position: relative;
	display: none;
	width: 460px; /* TO DO - 459px */
	height: 364px; /* TO DO - 362px */
	margin: 0px auto;
	background: black;
	-webkit-border-radius: 20px; 
	-moz-border-radius: 20px; 
	border-radius: 20px;
}

.ipad_in {
	position: relative;
	display: block;
	width: 384px;
	height: 288px;
	margin: 0px auto;
	/* border: 1px solid #555;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; */
}

.ipad_in img {
	width: 100%;
	height: auto;
	cursor: zoom-in!important;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
}

.iphone_out {
	position: relative;
	display: block;
	width: 66px; /* TO DO - 65px */
	height: 128px; /* TO DO - 127.75px */
	margin: 0px auto;
	background: black;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px; 
	border-radius: 10px; 	
}

.iphone_in {
	position: relative;
	display: block;
	width: 60px;
	height: 90px;
	margin: 0px auto;
	/* border: 1px solid #555;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; */
}

.iphone_in img {
	width: 100%;
	height: auto;
	cursor: zoom-in!important;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
}

/* CAPTION */

.caption, .caption-link {
	position: relative;
	display: block;
	width: 100%;
	height: 40px;
}

.caption-link {
	float: left;
}

.caption p, .caption-link p {
    font-family: serif;
	font-size: .875em;
	line-height: normal;
	text-align: center;
}

/* AVAILABILITY */

/* STRIPE */

.price {
    position: relative;
    display: inline-block;
    width: auto; /* 20px; */
    height: 20px;
	margin: 0px 0px 5px 0px;
    border: none;
    font-family: "Gill Sans - Regular";
	line-height: 25px; /* 22.5px; */
	font-size: .75em; /* 0; */
	text-align: center;
}

.sc-checkout-form {
	display: inline-block!important;
}

.sc-payment-btn {
    position: relative;
    display: inline-block;
    width: auto; /* 20px; */
    height: 20px;
	margin: 5px 2.75px 5px 2.75px;
    padding: 0px 7.75px 0px 7.75px;
    border: none;
  	-webkit-border-radius: 10px;
	-moz-border-radius: 10px; 
	border-radius: 10px;
    font-family: "Gill Sans - Regular";
	line-height: 25px; /* 22.5px; */
	font-size: .75em; /* 0; */
	text-align: center;
	text-transform: uppercase;
	/* -webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

/* SOLD */

.sold {
    position: relative;
    display: inline-block;
    width: auto; /* 20px; */
    height: 20px;
	margin: 5px 2.75px 5px 2.75px;
    padding: 0px 7.75px 0px 7.75px;
    border: none;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px; 
	border-radius: 10px;   
    font-family: "Gill Sans - Regular";
	line-height: 25px; /* 22.5px; */
	font-size: .75em; /* 0; */
	text-align: center;
	text-transform: uppercase;
	/* -webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

/* BLOG */

ol.blog_out {
	position: relative;
	display: block;	
	width: 100%;
}

li.blog_in {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	padding: 0px 20px 0px 20px;
	color: inherit;
}

/* Full Browser Width Bars
http://css-tricks.com/full-browser-width-bars/ */

li.blog_in {}

li.blog_in:before, li.blog_in:after {
  content: "";
  position: absolute;
  background: inherit;
  top: 0;
  bottom: 0;
  width: 50%;
}

li.blog_in:before {
  right: 100%; 
}

li.blog_in:after {
  left: 100%;
}

.middle a {
	color: inherit;
	text-decoration: underline;
}

.middle a:active, .middle a:hover {
	text-decoration: line-through;
}

.caption a, .caption-link a {
	color: inherit;
	text-decoration: underline;
}

.caption a:active, .caption a:hover, .caption-link a:active, .caption-link a:hover {
	text-decoration: line-through;
}

hr {
	position: relative;
	display: block;
	height: 2px;
	border: none;
	background: #FFFFCC;
	margin: 0px auto;
}

/* FEATURED IMAGE */

.wp-post-image {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	margin: 20px 0px 20px 0px;
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

/* IMAGE - NO CAPTION */

.size-full {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	margin: 20px 0px 20px 0px;	
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

/* IMAGE - CAPTION */

.wp-caption {
	position: relative;
	display: block;
	float: left;
	width: 100%!important;
	height: auto;
}

p.wp-caption-text {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
}

/* METASLIDER */

.caption-wrap {
	position: relative!important;
	display: block!important;
	float: left!important;
	width: 100%;
	height: auto!important;
	opacity: 1!important;
	background: none!important;
}

.metaslider .caption {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	padding: 0!important;
	font-family: serif;
	font-size: 1.125em;
	line-height: 1.75em;
	text-align: center;
	color: #FFFFCC;

}

.middle .metaslider img {
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}

.middle .metaslider .caption {
	margin: 20px 0px 10px 0px;	
}

/* CATEGORY */

.cats {
	position: relative;
	z-index: -1;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
	padding: 5px 0px 5px 0px;
}

.cat-item {
    position: relative;
    display: inline-block;
    width: auto;
    height: 20px;
    margin: 5px 2.75px 5px 2.75px;
    padding: 0px 7.75px 0px 7.75px;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px; 
	border-radius: 10px;
	font-size: .75em;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	-webkit-filter: drop-shadow(2px 1px 0px rgba(0,0,0,.5));
	filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
}

.children {}

.cat-art, .cat-item-2 { background: #FF6633; /* border: 1px solid #FF6633; */ }
.cat-art a, .cat-item-2 a { color: #441F16; /* color: #FF6633; */ }

.cat-illustration, .cat-item-80 { background: #FF6633; /* border: 1px solid #FF6633; */ }
.cat-illustration a, .cat-item-80 a { color: #441F16; /* color: #FF6633; */ }

.cat-acrylic-paint, .cat-chalk, .cat-coloured-pencil, .cat-commercial, .cat-gouache, .cat-alcohol-ink, .cat-stonehenge-paper, .cat-digital, .cat-pen-ink { -webkit-box-shadow:inset 0px 0px 0px 1px #FF6633; -moz-box-shadow:inset 0px 0px 0px 1px #FF6633; box-shadow:inset 0px 0px 0px 1px #FF6633; }
.cat-acrylic-paint a, .cat-chalk a, .cat-coloured-pencil a, .cat-commercial a, .cat-gouache a, .cat-alcohol-ink a, .cat-stonehenge-paper a, .cat-digital a, .cat-pen-ink a { color: #FF6633; }

.cat-design, .cat-item-3 { background: #6699CC; /* border: 1px solid #6699CC; */ }
.cat-design a, .cat-item-3 a { color: #441F16; /* color: #6699CC; */ }

.cat-web, .cat-business-card, .cat-identity, .cat-letterhead, .cat-print, .cat-stationary { -webkit-box-shadow:inset 0px 0px 0px 1px #6699CC; -moz-box-shadow:inset 0px 0px 0px 1px #6699CC; box-shadow:inset 0px 0px 0px 1px #6699CC; }
.cat-web a, .cat-business-card a, .cat-identity a, .cat-letterhead a, .cat-print a, .cat-stationary a { color: #6699CC; }

.cat-development, .cat-item-4 { background: #996633; /* border: 1px solid #996633; */ }
.cat-development a, .cat-item-4 a { color: #441F16; /* color: #996633; */ }

.cat-cms, .cat-css, .cat-html, .cat-javascript { -webkit-box-shadow:inset 0px 0px 0px 1px #996633; -moz-box-shadow:inset 0px 0px 0px 1px #996633; box-shadow:inset 0px 0px 0px 1px #996633; }
.cat-cms a, .cat-css a, .cat-html a, .cat-javascript a { color: #996633; }

.cat-blog, .cat-item-5 { background: #FFFFCC; }
.cat-blog a, .cat-item-5 a { color: #441F16; }

.cat.filter { background: url("img/menu.svg"); }
.cat.filter a { color: #441F16; }

.bottom {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	text-align: center;
	padding: 20px 0px 20px 0px;
}

/* SOCIAL */

.social {
	position: relative;
	display: block;
	float: left;
	width: 100%;
    height: auto;
    min-height: 20px;
}

/* LOVE */

.love {
    position: relative;
    display: block;
    float: left;
    width: 25px;
    height: 20px;
    background: url("img/heart.svg");
}

.love_count {
    position: relative;
    display: block;
    float: left;
    width: auto;
    min-width: 20px;
    height: 20px;
    margin: 0px 0px 0px 10px;
    padding: 0px 5px 0px 5px;
    background: #FF6633;
	-webkit-border-radius: 10px; 
	-moz-border-radius: 10px; 
	border-radius: 10px;
	font-size: .75em;
	line-height: 20px;
	text-align: center;
	color: #441F16
}

/* SHARE */

.share {
    position: relative;
    display: block;
    width: 110px; /* TO-DO - MAKE DYNAMIC WIDTH */
    height: auto;
    min-height: 20px;
    margin: 0px auto;
    text-align: center;
    padding: 10px 0px 10px 0px;
    
}

.share_text {
	position: relative;
	display: block;
	float: left;
	width: auto;
	height: 20px;
	margin: 0px 5px 0px 0px;
}

.share_text h1 {
	line-height: 20px;
}

.facebook a, .pinterest a, .twitter a {
	position: relative;
	display: block;
	float: left;
	width: 20px;
	height: 20px;
	margin: 0px 5px 0px 5px;
}

.facebook {}
.facebook a {
   	/* -webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')"; */
}

.pinterest {}
.pinterest a {
   	/* -webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')"; */
}

.twitter {}
.twitter a {
   	/* -webkit-filter: drop-shadow(1px 1px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color='#000000')"; */
}

/* AUTHOR */

.byline {
	position: relative;
	display: block;
	float: left;
	width: 120px;
	height: 150px;
	margin: 0px 20px 20px 0px;
}

.author {
	position: relative;
	display: block;
	float: left;
	width: 120px;
	height: 120px;
}

.michael {
	background-color: #996633;
	background-image: url("img/michael.svg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 82.5%;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%;
}

.ruth-ann {
	background-color: #996633;
	background-image: url("img/ruth-ann.svg");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 82.5%;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%;
}

.name {
	position: relative;
	display: block;
	float: left;
	width: 120px;
	height: 60px;
	text-align: center;
	font-size: 1.125em;
	line-height: normal;
}

.pagination {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: auto;
	min-height: 40px;
	background: #996633;
	text-align: center;
}

span.pages {
	display: none!important;
}

.pagination a {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 10px 5px 10px 5px;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%;
	background-color: #FFFFCC;
	font-size: 0;
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}

.current {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 10px 5px 10px 5px;
	-webkit-border-radius: 50%; 
	-moz-border-radius: 50%; 
	border-radius: 50%;
	background-color: #441F16;
	font-size: 0;
}

a.next {
	position: absolute!important;
	width: 20px;
	height: 20px;
	right: 0;
	margin: 10px;
	background-image: url("img/arrow-r.svg");
	background-color: transparent;
}

a.previous {
	position: absolute!important;
	width: 20px;
	height: 20px;
	left: 0;
	margin: 10px;
	background-image: url("img/arrow-l.svg");
	background-color: transparent;
}

/* INFINITE SCROLL */
 
#infscr-loading {
	position: relative;
	width: 20px;
	height: 20px;
	margin: 0px auto;
    /* -webkit-animation-name: rotate; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -o-animation-name: rotate; 
    -o-animation-duration: 2s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
    animation-name: rotate; 
    animation-duration: 2s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear; */
}

@-webkit-keyframes rotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}

@-o-keyframes rotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}

@keyframes rotate {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}

#infscr-loading img {
	margin-top: 10px;
	margin-bottom: 10px;
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}

/* SCROLL DOWN */

.scroll-down {}
.scroll-down a {
	position: absolute;
	z-index: 1;
	width: 40px;
	height: 40px;
	left: 50%;
	bottom: 5px;
	margin-left: -20px;
	background-image: url("img/arrow-d.svg");
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: url(shadow.svg#drop-shadow);
	-ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')";
	filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=2, OffY=2, Color='#000000')"; */
}
 
/* SCROLL BACK TO TOP */

.scroll-back-to-top {
	width: 20px;
	height: 20px;	
}

.scroll-back-to-top-wrapper.show {
	z-index: 1!important;
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}

.scroll-back-to-top-wrapper {
	background: none!important;
	background-image: url("img/arrow-u.svg")!important;
	padding: 0!important;
}

/* ZOOM */

a.fancybox {
	cursor: zoom-in!important;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
}

.fancybox-skin {
    -webkit-box-shadow: none!important;
    -moz-box-shadow: none!important;
    box-shadow: none!important;
}

.fancybox-skin {
	background: none!important;	
}

#fancybox-outer {
	background: none!important;
}

.fancybox-bg {
	background: none!important;
}

#fancybox-content {
	background: none!important;
	border-width: 0px!important;
}

#fancybox-overlay, .fancybox-overlay {
	cursor: zoom-out!important;
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
}

#fancybox-img, .fancybox-image {
	cursor: zoom-out!important;
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
}

#fancybox-wrap, .fancybox-image {
	-webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
	filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5));
}

/* 720px and up */
@media screen and (min-width:720px) {

/* WELCOME */

#container {
	/* -webkit-filter: drop-shadow(4px 4px 0px rgba(0,0,0,.5)); */
}

#ruth-ann {
	width: 25%;
	height: 25%;
	left: 25%;
	margin-left: -12.5%;
	/* -webkit-filter: drop-shadow(4px 4px 0px rgba(0,0,0,.5)); */
}

#michael {
	width: 25%;
	height: 25%;
	left: 75%;
	margin-left: -12.5%;
	/* -webkit-filter: drop-shadow(4px 4px 0px rgba(0,0,0,.5)); */
}

.print {
	margin: 10px;
	/* -webkit-filter: drop-shadow(4px 4px 0px rgba(0,0,0,.5)); */
}

.design-print {
	margin: 5px 0px 5px 0px;
}

.design-print-d {
	display: inline-block;
}

.design-print-m {
	display: none;
}

/* ART, DESIGN, DEVELOPMENT, BLOG */

ol.art-design-development_out {}
li.art-design-development_in {}

.top {
	padding: 40px 0px 40px 0px;
}

.title {
	padding: 0px 40px 0px 40px;
}

.information {
	width: calc(100% - 80px);
	height: auto;
	margin: 30px 40px 30px 40px;
	padding: 40px;
}

.info-box {
	width: 100%;
	height: 100%;
}

/* IPAD & IPHONE */

.ipad_out, .iphone_out {
	/* -webkit-filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.5)); */
}

.ipad_out {
	display: block;
}

.iphone_out {
	display: none;
}
	
/* BLOG */

ol.blog_out {
	width: 100%;
}

li.blog_in {
	padding: 0px 40px 0px 40px;
}

hr {}

.middle {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	column-break-inside: avoid;
}

.device {
	padding: 0px 0px 4px 0px;
}

.category {
	/* -webkit-filter: drop-shadow(2px 2px 0px rgba(0,0,0,.5)); */
}

.bottom {
	padding: 40px 0px 40px 0px;
}

/* SOCIAL */

.social {
    min-height: 40px;
}

/* SHARE */

.share {
    min-height: 40px; 
}

/* FEATURED IMAGE */

.wp-post-image {
	margin: 40px 0px 40px 0px;
}

/* IMAGE - NO CAPTION */

.size-full {
	margin: 40px 0px 40px 0px;	
}

/* AUTHOR */

.byline {
	margin: 0px 40px 40px 0px;
}

.michael {
}

.ruth-ann {
}

}

/* Retina Display */
@media screen and (-webkit-min-device-pixel-ratio:2) {

					{ /* Place your styles here for all 'Retina' screens */ }

}