* {
	margin: 0;
	padding: 0;
}

::-webkit-scrollbar { width: 11px; height: 7px;	border-width: 2px 4px; border-style: solid;	}
::-webkit-scrollbar-thumb {	height: 12px; border: 4px solid; }

::selection {
	background-color: #bed9fa;
	color:#030303;
	text-shadow: none;
}
::-moz-selection {
	background-color: #bed9fa;
	color:#030303;
	text-shadow: none;
}

div#qTip {
  	padding: 5px 10px;
   	display: none;
   	background: #000000;
   	color: #ffffff;
   	font-family: 'Arial Narrow', sans-serif;
	font-size: 9px;
   	position: absolute;
   	z-index: 1000;
	letter-spacing: 0.05em;
  	opacity:.80;
   	-moz-opacity:.80;
   	filter:alpha(opacity=80);
	line-height: 10px;
	text-align: center;
	border-bottom: 1px solid #000000;
}

/* MAIN */

body {
	font-family: 'Roboto Mono', monospace;
	font-size: 11px;
	line-height: 18px;
}

#wrapper {
	margin: 0 auto;
}

#container {
	margin: 30px auto 0 auto;
	width: 100%;
	max-width: 1150px;
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: space-between;
}

/* SITE TITLE & HEADER */

#sbox {
	margin: 30px auto;
	text-align: center;
	display: block;
}

#site {
	margin: 0 auto;
	padding: 0 2vw;
	font-family: 'Rubik', sans-serif;
	font-size: 30px;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	display: table;
	position: relative;
	z-index: 30;
}

#site span { margin: 0 10px; }
#site::before {
	content: '';
	width: 5vw; height: 4px;
	position: absolute;
	top: 0;	bottom: 0; left: -4vw;
	margin: auto;
	z-index: 20;
}

#site::after {
	content: '';
	width: 5vw; height: 4px;
	position: absolute;
	top: 0;	bottom: 0; right: -4vw;
	margin: auto;
	z-index: 20;
}

#slogan {
	margin: 10px auto 0 auto;
	font-family: 'Roboto Mono', monospace;
	font-size: 10px;
	font-weight: 400;
	font-style: italic;
	letter-spacing: 0.05em;
	text-transform: lowercase;
	display: block;
}

header {
	width: 100%;
	height: 407px;
	background-position: center center;
	background-repeat: no-repeat;
	margin: 30px auto 0 auto;
	position: relative;
}

/* MENU BAR */

.mbox {
	margin: 0 auto;	padding: 0;
	font-family: 'Rubik', sans-serif;
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	position: relative;
	display: block;
}

.menu { display: inline; }

.mbox ul { margin: 0 auto; padding: 12px 6vw; display: table; position: relative; overflow-y: hidden; }
.mbox ul::before {
	content: '';
	width: 4px; height: 110%;
	position: absolute;
	top: 0;	bottom: 0; left: 0;
	margin: auto;
	-ms-transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
	transform: rotate(10deg);
	z-index: 20;
}

.mbox ul::after {
	content: '';
	width: 4px; height: 110%;
	position: absolute;
	top: 0;	bottom: 0; right: 0;
	margin: auto;
	-ms-transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
	transform: rotate(10deg);
	z-index: 20;
}

.mbox li, #cred li {
	text-align: center;
	letter-spacing: 0.05em;
	margin: 0;
	display: inline-block;
	position: relative;
	z-index: 20;
}

.mbox li a {
	color: inherit;
	text-decoration: underline;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.mbox li a:hover {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

.mbox li::after {
	content: '';
	width: 5px; height: 5px;
	float: right;
	margin: 3px 3vw 0 3vw;
	border-radius: 100%;
	display: inline-block;
	z-index: 25;
}

.mbox li:last-child::after, #cred li:last-child::after { display: none; }

.mbox ul ul { margin: 0; padding: 10px 15px 0 15px; display: none; position: absolute; border-width: 1px; border-style: solid; }
.mbox ul ul li { float: none; margin: 0; padding: 10px 0 !important; text-align: left !important; display: block !important; border-bottom: 1px solid; z-index: 30 !important; }
.mbox ul ul li:last-child { border: none; }
.mbox li:hover > ul { display: block; }
.mbox li>a:not(:only-child):after { content: ''; margin: 0 0 2px 10px; border: solid; border-width: 0 2px 2px 0; display: inline-block; padding: 2px; -webkit-transform: rotate(45deg); transform: rotate(45deg); }

.mbox ul ul li ul { margin: 5px 0 0 15px; padding: 0 15px; right: -100%; display: none; position: absolute; border: 1px solid; }
.mbox ul ul li>a:not(:only-child) { padding: 0 8px 0 0; }
.mbox ul ul li>a:not(:only-child):after { content: ''; margin: -8px 0 2px 10px; border: solid; border-width: 0 2px 2px 0; display: inline-block; padding: 2px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); float: right; }
.mbox ul ul::before, .mbox ul ul::after, .mbox ul ul li ul::before, .mbox ul ul li ul::after, .mbox ul ul li::after { display: none; }

.stick {
	position: fixed;
	margin: 0 auto;
	top: 0;	left: 0; right: 0;
	z-index: 99;
	border-width: 4px 0;
	border-style: solid; 
}

.show-menu {
	width: 98%;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: left;
	text-decoration: none;
	padding: 2vw 1%;
	line-height: 100%;
	border: none;
	display: none;
}

.show-menu i { margin: 0 5px 0 0; }

.mbox input[type=checkbox]{
    display: none;
    -webkit-appearance: none;
}

.mbox input[type=checkbox]:checked ~ #navi{
    display: block;
}

/* SEARCH */

#searchsubmit, .screen-reader-text {
	display:none;
}

#searchform {
	margin: 0 auto;	
}

#searchform #s {
	width: 96%;
	margin: 0 auto;
	font-size: 12px;
	padding: 2%;
	text-transform: none;
	letter-spacing: 0.05em;
	border: none;
	display: inline-block;
}

input::-webkit-input-placeholder { color: #000000 !important; }
input::-moz-placeholder { color: #000000 !important; }
input::-ms-input-placeholder { color: #000000 !important; }

.postmetadata {
	font: normal 85%/190% arial;
}

a:link, a:visited {
	color: inherit;
}

a:hover {
	color: inherit;
}

b, strong {
	color: inherit;
}

/* SIDEBAR */

aside {
	min-width: 340px; max-width: 340px;
	background-color: transparent;
	margin: 0; padding: 0;
	position: relative;
} 

.sidebox {
	margin: 0 auto 30px auto;
	padding: 0;
	font-size: 10px;
	font-weight: 300;
	line-height: 24px;
	text-align: justify;
	letter-spacing: 0;
	display: block;
	position: relative;
	z-index: 20;
}

.sidetitle {
	font-family: 'Rubik', sans-serif;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	margin: 0 auto 10px auto;
	padding: 2px 0;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-width: 1px 0;
	border-style: solid;
	display: block;
	position: relative;
	z-index: 20;
}

.sidetitle span {
	display: block;
	padding: 10px 0;
	position: relative;
	z-index: 20;
}
 
.sidebox b, .sidebox strong {
	font-weight: 700;
}

.sidebox img, .sidebox img a, .entry img, .entry img a {
	background-color: transparent;
	padding: 0;	margin: 5px;
	opacity: 1;
	border: none;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.sidebox img:hover, .sidebox img a:hover, .entry img:hover, .entry img a:hover {
	opacity: 0.9;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

.sidebox li, .entry li {
	background-color: transparent;
	list-style: none;
	width: 100%;
	max-width: 100%;
	padding: 5px 0;
	margin: 6px auto;
	border-bottom: 1px solid;
}

.sidebox li:before, .entry li:before {
	content: '';
	width: 5px; height: 5px;
	margin: 0 10px 2px 0;
	border-radius: 100%;
	position: relative;
	display: inline-block;
}

.sidebox a, .entry a {
	font-weight: 700;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.sidebox a:hover, .entry a:hover {
	text-decoration: underline;	
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

/* PROJECTS */

.proj {
	width: 100%;
	margin: 10px auto;
	position: relative;
	z-index: 20;
	display: block;
}

.proj img {
	margin: 0 auto;
	padding: 0;
	opacity: 1;
	width: 100%; height: 180px;
	border: none;
	display: inline-block;
	vertical-align: bottom;
	position: relative;
	z-index: 20;
}

.proj img:hover { opacity: 1; }
.proj::before { content: ''; width: 90%; height: 166px; position: absolute; top: 10px; left: 0; right: 0; margin: auto; border-width: 4px 4px 0 4px; border-style: solid; display: table-cell; z-index: 25; }

.projt {
	margin: 10px auto;
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 700;
	font-style: italic;
	line-height: 100%;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	display: block;
	position: relative;
}

.projt span { padding: 0 10px; display: inline-block; border-left: 4vw solid; position: relative; z-index: 25; }
.projt hr { border: none; width: 100%; height: 100%; display: block; position: absolute; left: 0; top: 0; z-index: 15; }

ul.projl {
	counter-reset: li;
	margin: 10px auto;
	width: 94%; padding: 0 3%;
	border: 1px solid;
	font-size: 9px;
	letter-spacing: 0.05em;
	text-align: center;
	text-transform: uppercase;
	display: block;
}

ul.projl li {
	counter-increment: li;
	list-style: none;
	width: auto;
	padding: 0;
	margin: 0 1vw;
	display: inline-block;
	border: none;
}

ul.projl li::before {
	content: counter(li, decimal-leading-zero)'.';
	background-color: transparent;
	color: inherit;
	margin: 0 10px 0 0;
	padding: 0;
	width: 0; height: 0;
	position: relative;
}

ul.projl li a {
	margin: 0 10px;
	padding: 0;
	text-decoration: none;
	display: inline-block;
	position: relative;
	z-index: 25;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

ul.projl li a:hover {
	text-decoration: none !important;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}

/* POSTS */

article {
	min-width: 780px;
	max-width: 780px;
	padding: 0;
}

section {
	margin: 0 auto 40px auto;
	padding: 0;
	display: block;
}

.featured {
	margin: 0 auto 15px auto;
	background-color: transparent;
	position: relative;
	width: 100%;
	padding: 0;
	display: block;
	vertical-align: top;
}

.featured img {
	margin: 0 auto;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 20;
	vertical-align: bottom;
}

h1.title, h2 {
	background-color: transparent;
	margin: 0 auto;
	padding: 15px 0;
	font-family: 'Rubik', sans-serif;
	font-size: 24px;
	font-weight: 700;
	font-style: italic;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	line-height: 120%;
	border-top: 4px solid;
	display: block;
	position: relative;
	z-index: 15;
}

h1.title a {
	text-decoration: none;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

h1.title a:hover {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

.pinfo {
	width: 100%;
	margin: 0 auto; padding: 0;
	background-color: transparent;
	font-size: 9px;
	font-style: italic;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: block;
	position: relative;
	z-index: 20;
}

.pinfo hr {
	position: absolute;
	width: 100%; height: 1px;
	top: 0; left: 0; bottom: 0;
	border: none;
	margin: auto;
	display: block;
	z-index: 20;
}

.pinfo span {
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	display: inline-block;
	z-index: 25;
}

.entry {
	margin: -5px auto 0 auto;
	padding: 2% 3%; width: 94%;
	font-weight: 300;
	text-align: justify;
	line-height: 24px;
	display: block;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	position: relative;
	z-index: 25;
}

.entry strong, .entry b {
	font-weight: 700;
}

.entry p, .sidebox p {
	margin: 8px 0;
}

.entry p:first-child::before {
	content: "\f30b";
	font-family: 'Font Awesome 5 Free';
	font-size: 22px;
	font-weight: 900;
	margin: 0 10px 0 0;
	display: inline-block;
	position: relative;
	float: left;
}

.post-categories {
	margin: 15px auto;
	padding: 0;
	font-family: 'Rubik', sans-serif;
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	text-align: center;
	text-transform: lowercase;
	display: block;
}

.post-categories li { margin: 0 1vw; display: inline-block; }
.post-categories li a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.post-categories li a:hover, .post-categories li a:hover::before {
	text-decoration: underline;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}

.post-categories li a::before {
	content: '#';
	display: inline;
	position: relative;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

blockquote  {
	width: 100%;
	max-width: 100%;
	margin: 25px auto;
	padding: 1% 0;
	background-color: transparent;
	border-width: 1px 0;
	border-style: solid;
	position: relative;
	z-index: 15;
 	quotes: "\201C" "\201D" "\2018" "\2019";
}

blockquote::before {
	content: '\201C';
	font-family: 'Old Standard TT', serif;
	font-size: 40px;
	font-weight: 700;
	position: absolute;
	top: 0; left: 0;
	height: 1px;
	margin: -1px 0 0 0;
	padding: 0 10px 0 0;
	text-align: center;
	display: inline-block;
	z-index: 25;
}

blockquote::after {
	content: '\201D';
	font-family: 'Old Standard TT', serif;
	font-size: 40px;
	font-weight: 700;
	position: absolute;
	bottom: 0; right: 0;
	height: 1px;
	margin: 0 0 -1px 0;
	padding: 0 0 0 10px;
	text-align: center;
	display: inline-block;
	z-index: 25;
}

.entry blockquote { margin: 20px auto; }
.entry blockquote p:first-child::before { display: none; }	
a.more-link {
	background-color: transparent;
	margin: 0 auto; color: inherit;
	font-family: 'Rubik', sans-serif;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	display: table;
	letter-spacing: 0.05em;
	position: relative;
}

a.more-link span {
	padding: 0 0 4px 0;
	display: inline;
	position: relative;
	z-index: 25;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

a.more-link span::after {
	content: '';
	width: 100%; height: 4px;
	background-position: center top;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	left: 0; bottom: 0; right: 0;
	margin: auto;
	z-index: 15;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

a.more-link:hover {
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
}

a.more-link:hover span::after {
	background-position: left top;
	-webkit-transition: all 0.4s ease-in;
	-moz-transition: all 0.4s ease-in;
	-o-transition: all 0.4s ease-in;
}

a.post-edit-link {
	font-size: 8px;
	font-weight: 400;
	margin: 1% 0;
    padding: 0 5px;
    text-transform: uppercase;
	letter-spacing: 0.1em;
    display: inline-block;
}

iframe, embed, object, video {
	max-width: 100%;
	margin: 12px auto;
	display: block;
}

.clear { clear: both; }

/* RELATED POSTS */

.rel {
	width: 100%;
	padding: 5px 0 0 0;
	margin: 0 auto;
	display: table;
}

.rprv {
	padding: 0; width: 50%;
	text-align: left;
	display: table-cell;
}

.rnxt {
	padding: 0; width: 50%;
	text-align: right;
	display: table-cell;
}

.rel h3 {
	font-size: 8px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	display: block;
	position: relative;
}

.rel span { padding: 0 5px; display: inline-block; position: relative; z-index: 30; }
.rel .rprv span { border-right: 5px solid; }
.rel .rnxt span { border-left: 5px solid; }

.rel a {
	margin: 10px auto 0 auto;
	padding: 0 0 3px 0;
	font-family: 'Rubik', sans-serif;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
	text-decoration: underline;
	display: inline-block;
	letter-spacing: 0.025em;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.rel a:hover {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

/* PAGINATION */

.pagination {
	margin: 0 auto 40px auto;
	padding: 0;
	font-size: 10px;
	text-align: left;
	text-transform: uppercase;
	text-shadow: none;
	border: none;
}

.pagination .current {
}

.pagination .total {
	margin: 0 7px 0 0;
}

.pagination a, .pagination span {
	border: 1px solid;
	padding: 5px 10px;
	margin: 0 1px; 
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

.pagination a:hover {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#respond { 
	background: transparent;
}

#respond input[type=text], textarea {
	outline: none;
	max-width: 70%;
	padding: 3px 0px 3px 3px;
	margin: 5px 1px 3px 0px;
	border: 1px solid #d9cfca;
	font-family: 'Roboto Mono', monospace;
	font-size: 10px;
	line-height: 21px;
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
}
 
#respond input[type=text]:focus, textarea:focus {
  margin: 5px 1px 3px 0px;
  border: 1px solid #859acb;
}

.wpcf7 input { padding: 5px !important; }

/* COMMENTS */

.commentslist li {
	list-style: none;
	background-color: transparent;
	text-indent: 0px;
	border: none;
	box-shadow: none;
	line-height: 18px;
}

.commentslist li:before { content: ''; display: none; }
.commentslist li p { line-height: 24px; }

ol.commentslist {
	clear: both;
	margin: 8px auto;
}

ol, ul {
	list-style: none;
}

.commentslist ul.children { margin: 1% 0 0 1%; background-color: transparent; border-left: 1px solid ; padding: 0 1% 0 2%; width: 94%; }
.commentslist ul.children ul.children li { padding: 0 0 0 1%; }
.comment-body { margin: 0 0 15px 0; }
.commentslist li:last-child { margin: 0; }

.commentslist li .avatar { 
	float: left;
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0 8px 0 0;
	}

.comment-meta a { font-weight: normal; }
.commentslist cite, .commentslist cite a {
	font-weight: 700;
	font-style: normal;
}

.commentslist p {
	margin: 10px 0px;
	font-weight: normal;
	text-transform: none;
	text-align: left;
}

#commentform {
	margin-top: 0;
}

.cancel-comment-reply {
	margin-left: 10px;
}

#submit {
	font-family: 'Roboto Mono', monospace;
	font-size: 8px;
	font-weight: 400;
	margin: 1% 0;
    padding: 5px;
    text-transform: uppercase;
	letter-spacing: 0.1em;
    display: inline-block;
	cursor: pointer;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
} 

#submit:hover {
	text-decoration: none;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

span.screen-reader-text { display: none; }

.alt {
	background-color: transparent !important;
}

.error  { font-size: 12px; padding: 0 0 5px 0; color: #FF0000; }
input.error, textarea.error { background: #FFD2D2; color:#000000; }

/* LATEST PHOTOS */

#latest {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow-x: hidden;
}

#latest table { margin: auto; padding:  0; text-align: center; display: inline-block; border-spacing: 4px 0; }

#latest img {
	background-color: transparent;
	margin: 0;
	padding: 0;
	opacity: 1;
	border: none;
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

#latest img:hover {
	opacity: 0.9;
    filter: grayscale(10%);
    -webkit-filter: grayscale(10%);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
}

/* FOOTER */

#cred {
	text-align: center;
	text-transform: uppercase;
	position: relative;
	margin: 30px auto;
	padding: 0;
	line-height: 100%;
	display: block;
	z-index: 25;
}

#cred ul {
	counter-reset: li;
	font-family: 'Rubik', sans-serif;
	font-size: 11px;
	font-weight: 700;
	font-style: italic;
	display: table;
	border-spacing: 1vw 0;
	position: relative;
	z-index: 25;
	margin: auto;
}

#cred hr {
	width: 100%;
	height: 4px;
	background-position: center top;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 0; left: 0;
	bottom: 0; right: 0;
	margin: auto;
	border: none;
	z-index: 15;
}

#cred li a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

#cred li a:hover {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}

#cred li::after {
	content: '';
	width: 5px; height: 5px;
	float: right;
	margin: 3px 1vw 0 1vw;
	border-radius: 100%;
	display: inline-block;
	z-index: 25;
}

footer {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto 30px auto;
	padding: 0;
	background-color: transparent;
	font-weight: 300;
	line-height: 24px;
	text-align: left;
	position: relative;
	display: block;
}

/* SOCIAL MEDIA LINKS */

#social {
	margin: 30px auto 0 auto;
	text-align: center;
	line-height: 100%;
	display: block;
}

#social a {
	font-size: 10px;
	margin: 0 2px; padding: 5px;
	display: inline-block;
	border: 1px solid ;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
}

#social a:hover {
	text-decoration: none;	
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
}
.mndfs-elite-affiliates,
.mndfs-affiliate-cats {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: -2px;
}

.mndfs-affiliate-text {
	font-size: 9px;
	font-weight: 400;
	line-height: 1.5;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 18.65%;
	margin: 2px;
	padding: 5px 0;
	text-align: center;
	border: 1px solid #ccc;
}

.mndfs-affiliate-text a {
	display: block;
	color: #555;
}

.mndfs-affiliate-text a span {
	font-weight: 700;
	display: block;
}

.mndfs-affiliate-image {
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 18.65%;
	margin: 2px;
}

.mndfs-affiliate-status {
	margin: 5px 0 0 0;
	text-align: center;
}
