/*
	Theme Name: YNKS
	Theme URI: http://www.yonkis.com
	Description: Verisón móvil/tablet de Yonkis.com
	Version: 1.0
	Author: Sanc Increate
	Author URI: http://increate.es
	Tags: HTML5, CSS3, responsive, mobile, tablet

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
	GOOGLE FONTS: OPEN SANS
\*------------------------------------*/
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular'), url(https://fonts.gstatic.com/s/lato/v11/MDadn8DQ_3oT6kvnUq_2r_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'), local('Lato-Bold'), url(https://fonts.gstatic.com/s/lato/v11/MgNNr5y1C_tIEuLEmicLmwLUuEpTyoUstqEm5AMlJo4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: local('Lato Black'), local('Lato-Black'), url(https://fonts.gstatic.com/s/lato/v11/lEjOv129Q3iN1tuqWOeRBgLUuEpTyoUstqEm5AMlJo4.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* -webkit-font-smoothing: antialiased;
	font-smoothing: antialiased; */
	text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 300 11px/1.4 'Lato', Verdana, Helvetica, sans-serif;
	color: #444;
	background: #000;
}
body.noscroll {
	background: #000;
	overflow: hidden;
}
body.noscroll #main {
	opacity: 0;
}
body.swipe-prev #main {
	margin-right: 100%;
	float: right;
	-webkit-transition: all 750ms ease-in-out;
	-moz-transition: all 750ms ease-in-out;
	-o-transition: all 750ms ease-in-out;
	transition: all 750ms ease-in-out;
}
body.swipe-next #main {
	margin-left: 100%;
	float: left;
	-webkit-transition: all 750ms ease-in-out;
	-moz-transition: all 750ms ease-in-out;
	-o-transition: all 750ms ease-in-out;
	transition: all 750ms ease-in-out;
}
/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}
.clear {
    *zoom: 1;
}
.hide {
	display: none;
	visibility: hidden;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
a {
	color: #444;
	text-decoration: none;
}
a:hover {
	color: #444;
}
a:focus {
	outline: 0;
}
a:hover,
a:active {
	outline: 0;
}
input:focus {
	outline: 0;
	border: 1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.wrapper {
	width: 100%;
	max-width: 100%;
	margin-top: 60px;
	position: relative;
	float: left;
}
header.header {
	width: 100%;
	height: 60px;
	background: #000;
	border-bottom: 1px solid #424242;
	position: fixed;
	z-index: 9999999;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
header.header.kalei {
	background: transparent;
	top: 115px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
.nav {
	position: relative;
	z-index: 1;
	float: left;
}
.nav .showmenu {
	width: 80px;
	height: 78px;
	padding-top: 17px;
	padding-left: 20px;
	float: left;
}
.nav .nav-icon {
  width: 25px;
  height: 45px;
  position: relative;
  margin: 20px 0 0 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}
.nav .nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.nav .nav-icon span:nth-child(1) {
  top: 0px;
}
.nav .nav-icon span:nth-child(2),.nav .nav-icon span:nth-child(3) {
  top: 8px;
}
.nav .nav-icon span:nth-child(4) {
  top: 16px;
}
.nav .nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.nav .nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav .nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav .nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.nav ul.menu {
    padding: 0;
    margin: 0;
	background: #000;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: none;
    overflow: scroll;
}
.nav ul.menu li {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	border-bottom: 1px solid #333;
	float: left;
}
.nav ul.menu li a {
	width: 100%;
	padding: 10px 0;
    font-size: 14pt;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
    float: left;
}
.nav ul.menu li span.icon {
    width: 48px;
    height: 48px;
    padding-top: 7px;
    margin-right: 10px;
    text-align: center;
    float: left;
}
.nav ul.menu li a span.txt {
	margin-top: 11px;
	letter-spacing: 1px;
	float: left;
}
.nav ul.menu li svg {
	position: relative;
	top: 5px;
}
.nav ul.menu li:nth-child(1) a svg {
	top: 0;
}
.nav ul.menu li.search {
	width: 100%;
	padding: 10px 0;
}
.nav ul.menu li.search form {
    height: 48px;
    padding-left: 58px;
    padding-right: 20px;
	float: none;
}
.nav ul.menu li.search form input {
	width: 100%;
    height: 42px;
    padding-top: 3px;
    font-size: 12pt;
    border: 0 none;
    color: #fff;
    background: #000;
    float: none;
}
.nav ul.menu li.search form #searchsubmit {
	display: none;
}
.nav ul.menu li form input::-webkit-input-placeholder {  
   color: #fff;  
}
.nav ul.menu li form input:-moz-placeholder {  
   color: #fff;  
}
.nav ul.menu li form input::-moz-placeholder {  
   color: #fff;  
}
.nav ul.menu li form input:-ms-input-placeholder {  
   color: #fff;  
}
h1.logo {
	width: 100%;
	padding: 0;
	margin: 0;
	font-size: 32pt;
	text-align: center;
	font-weight: 900;
	letter-spacing: 18px;
	position: absolute;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
.kalei h1.logo {
	font-size: 62pt;
	letter-spacing: 34px;
	top: -110px;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
h1.logo span {
	letter-spacing: 0;
}
h1.logo a {
	color: #fff;
}
.login {
	width: 80px;
	height: 78px;
	padding-top: 17px;
	padding-right: 20px;
	text-align: right;
	float: right;
	position: relative;
	z-index: 1;
}
.login .login-panel {
	padding-top: 20px;
    background: #000;
	position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
}
.login .login-panel form {
	width: 300px;
    height: 153px;
    margin: 8px 0 0 -150px;
    color: #fff;
    position: absolute;
    left: 50%;
}
.login .login-panel form h4 {
	width: 100%;
	padding: 0;
	margin: 27px 0 24px;
	font-size: 16pt;
	text-transform: uppercase;
	font-weight: 300;
	text-align: center;
	color: #666;
	float: left;
}
.login .login-panel form label {
	display: none;
}
.login .login-panel form .login-remember label {
	margin-top: 9px;
	font-size: 12pt;
	float: left;
	display: block;
}
.login .login-panel form .login-remember label input {
	position: relative;
	top: 2px;
}
.login .login-panel form input[type="text"],
.login .login-panel form input[type="email"],
.login .login-panel form input[type="password"] {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	font-size: 12pt;
	border: 1px solid #111;
}
.login .login-panel form input[type="submit"] {
    width: 170px;
    height: 40px;
    border: none;
    font-size: 10pt;
	color: #fff;
    background: #666;
}
.login .login-panel form .actions {
    font-size: 12pt;
    text-align: center;
}
.login .login-panel form .actions a {
	color: #fff;
}
.login .login-panel form#lostpasswordform,
.login .login-panel form#registerform {
	display: none;
}
.login .login-panel form#registerform #captcha label {
	display: block;
}
.login .login-panel form#registerform #captcha label span,
.login .login-panel form#registerform #captcha label br {
	display: none;
}
.login .login-panel form#registerform #captcha label img {
	max-width: 30% !important;
    height: 38px;
    margin-top: 1px;
    float: left;
}
.login .login-panel form#registerform #captcha label input[name="crcc_security_code"] {
	width: 70%;
	float: right;
}
.login .login-panel form#registerform .mc4wp-checkbox.mc4wp-checkbox-wp-registration-form {
	float: left;
}
.login .login-panel form#registerform .mc4wp-checkbox.mc4wp-checkbox-wp-registration-form label {
	display: block;
}
.login .login-panel form#registerform .mc4wp-checkbox.mc4wp-checkbox-wp-registration-form input {
	position: relative;
	top: 2px;
}
.login .login-panel form#lostpasswordform input[type="submit"] {
	width: 100%;
}
.login .login-panel form#lostpasswordform p.message,
.login .login-panel form#registerform p#reg_passmail {
	width: 100%;
	font-size: 9pt;
	text-align: center;
	float: left;
}
.footer {
	width: 100%;
	float: left;
}
.footer h1 {
	width: 100%;
	padding: 0;
	margin: 22px 0 -3px;
	border-bottom: 2px solid #fff;
	font-weight: 300;
	line-height: 33px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	float: left;
}
.footer h1 span {
    font-size: 9pt;
	color: #999;
    position: relative;
    top: -14px;
}
.footer ul.links,
.footer ul.network {
	width: 100%;
	padding: 0 20px;
	list-style: none;
	float: left;
}
.footer ul.network {
	padding: 0 3px;
}
.footer ul.links li {
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
	float: left;
}
.footer ul.links li a {
	font-size: 12pt;
	color: #666;
}
.footer ul.network li {
	width: 23%;
	margin: 0 1%;
	float: left;
}
.footer ul.network li a {
	width: 100%;
	background: #666;
	text-align: center;
	float: left;
}
.footer ul.network li:nth-child(1) a {
	background: #fff;
}
.footer ul.network li:nth-child(2) a {
	background: #ccc;
}
.footer ul.network li:nth-child(3) a {
	background: #999;
}
.footer ul.network li:nth-child(4) a {
	background: #666;
}
.footer .rta {
	width: 100%;
	padding: 0 20px;
	font-size: 10pt;
	background: #222;
	float: left;
}
.error404 .not-found {
	width: 100%;
    margin-top: 20px;
    font-size: 100pt;
    line-height: 48px;
    letter-spacing: 10px;
    font-weight: 900;
    text-align: center;
    color: #999;
    float: left;
}
#top-yonkis ul,
#top-yonkis ul  li {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;
}
#top-yonkis ul  li {
	padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #666;
}
#top-yonkis ul li .position {
	width: 30px;
	margin-right: 10px;
	font-weight: 900;
	text-align: center;
	color: #999;
	float: left;
}
#top-yonkis ul li .user-avatar {
	width: 50px;
	height: 50px;
	float: left;
}
#top-yonkis ul li .user-avatar img {
	border: 1px solid #666;
}
#top-yonkis ul li .name {
	padding-top: 3px;
	padding-left: 100px;
	font-size: 14pt;
	color: #999;
	float: none;
}
#top-yonkis ul li .name a {
	color: #ccc;
}
#top-yonkis ul li .posts {
    padding-left: 100px;
    font-size: 10pt;
	color: #666;
    float: none;
}
.error404 .icon {
	width: 100%;
	margin-bottom: 7px;
    text-align: center;
    float: left;
}
.error404 .all-posts {
	margin-top: 13px;
}

/*------------------------------------*\
    LOOPS
\*------------------------------------*/

main#main {
	width: 100%;
	padding: 0 20px;
	float: left;
}
main#main h1,
main#main h4.loop-title {
	width: 100%;
	padding: 0 0 10px 0;
	margin: 16px 0 23px;
	border-bottom: 2px solid #fff;
	font-weight: 400;
	line-height: 33px;
	font-size: 2em;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	float: left;
}
main#main h1 img {
	border: 1px solid #fff;
}
main#main article {
	width: 100%;
	margin-bottom: 5px;
	position: relative;
	float: left;
}
main#main .loop article {
	height: 210px;
	margin-bottom: 20px;
}
main#main article a.thumb {
	width: 100%;
	height: 180px;
	background: #333;
	overflow: hidden;
	float: left;
}
main#main article a.thumb .fir {
	width: 30%;
	height: 200px;
	overflow: hidden;
	box-shadow: 0 10px 10px black;
	float: left;
}
main#main article a.thumb .fir img {
	margin-left: -50px;
}
main#main article a.thumb .fir img,
main#main article a.thumb .sec img,
main#main article a.thumb .thi img {
    -webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
main#main article a.thumb .sec {
	width: 70%;
	height: 130px;
	overflow: hidden;
	float: left;
    filter: invert(100%) grayscale(100%);
    opacity: 0.1;
}
main#main article a.thumb .thi {
	height: 70px;
}
main#main article a.thumb .sec img,
main#main article a.thumb .thi img {
	width: 100%;
	height: 224px;
}
main#main article a.thumb img {
	height: 100%;
	max-width: none;
}
main#main .latest article .fir img {
	-webkit-filter: grayscale(100%) invert(100%);
	filter: grayscale(100%) invert(100%);
	opacity: .9;
}
main#main .latest article .sec img {
	margin-top: 0;
	opacity: 0.5;
}
main#main .latest article .thi img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: .3;
}

main#main .latest article.in-view .fir img {
	-webkit-filter: grayscale(0%) invert(0%);
	filter: grayscale(0%) invert(0%);
}
main#main article h3.entry-title {
	width: 100%;
    padding: 0 10px;
    margin: 0;
    font-size: 12pt;
    font-weight: 400;
    text-transform: uppercase;
    color: #666;
    float: none;
}
main#main article span.date.update {
	width: 100%;
    text-align: right;
    color: #666;
}
main#main article h3.entry-title a {
	width: 70%;
    height: 130px;
    padding: 10px 20px;
    color: #fefefe;
    display: table;
    position: absolute;
    right: 0;
}
main#main article h3.entry-title a span {
	width: 100%;
	text-align: center;
	display: table-cell;
    vertical-align: middle;
}
main#main article footer {
	width: 100%;
	padding: 0;
    font-weight: 400;
    color: #666;
    position: absolute;
    bottom: 12px;
}
main#main article footer a {
	color: #666;
}
main#main article footer svg {
	position: relative;
	top: 3px;
}
main#main article footer .date {
	margin-top: 2px;
	float: right;
}
main#main article .excerpt {
	width: 70%;
    height: 40px;
    padding: 10px 0;
    border-top: 1px solid #444;
    background: #222;
    text-align: center;
	box-shadow: inset 0 2px 5px rgba(0,0,0,.5);
    display: table;
    float: right;
    position: relative;
    bottom: 50px;
}
main#main article .excerpt .corner {
	width: 20px;
    height: 20px;
    background-color: #222;
    box-shadow: 0 2px 3px rgba(0,0,0,0.5);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: -10px;
    top: 16px;
    z-index: 0;
}
main#main article .excerpt .overcorner {
    width: 46px;
	height: 46px;
    background: #222;
    position: absolute;
    bottom: 2px;
    z-index: 1;
}
main#main article .excerpt .views,
main#main article .excerpt .comments {
	width: 50%;
    font-size: 16pt;
    font-weight: 700;
    color: #666;
    float: left;
    position: relative;
    z-index: 1;
}
main#main article .excerpt .comments a {
	color: #666;
}
main#main article .excerpt svg {
	position: relative;
    top: 5px;
}
main#main article p {
    width: 100%;
    height: 70px;
    padding: 10px;
    margin: 0;
    font-size: 9pt;
    font-weight: 400;
    color: #ccc;
    display: table-cell;
    vertical-align: middle;
}
main#main .all-posts {
	width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 3px solid #fff;
    font-size: 14pt;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
    color: #fff;
    background: #666;
    float: left;
}
.single main#main .all-posts {
	margin-bottom: 20px;
}
main#main .pagination {
	width: 100%;
	margin-top: 0;
	margin-bottom: 40px;
	font-size: 12pt;
    text-align: center;
    float: left;
}
main#main .pagination a,
main#main .pagination span.current {
	width: 32%;
    padding: 15px 0;
	border: 3px solid #666;
	font-weight: 400;
	color: #666;
    display: inline-block;
}
main#main .pagination a.page-numbers {
	display: none;
}
main#main .pagination a.page-numbers.prev,
main#main .pagination a.page-numbers.next {
	display: inline-block;
}
main#main .pagination span.current {
	color: #000;
	background: #666;
}
main#main .pagination span.dots {
	display: none;
}
main#main .most-commented {
	margin-bottom: 10px;
	float: left;
}
main#main .most-commented.recent-fotomaton {
	margin-bottom: 23px;
}
main#main .most-commented.recent-fotomaton article.curioso a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #ff8000;}
main#main .most-commented.recent-fotomaton article.animalicos a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #00ff00;}
main#main .most-commented.recent-fotomaton article.parecidos a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #ffff00;}
main#main .most-commented.recent-fotomaton article.carteles a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #8e4600;}
main#main .most-commented.recent-fotomaton article.postales a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #007cff;}
main#main .most-commented.recent-fotomaton article.sexual a.thumb {box-shadow: 0 -5px 10px rgba(0,0,0,0.3),0 0 0 3px #ff00ff;}
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.nav ul.menu li span.icon i {
	width: 10px;
	height: 10px;
	margin: 12px 0 0 30px;
	display: block;
	-webkit-animation: rotating 1s linear infinite;
	-moz-animation: rotating 1s linear infinite;
	-ms-animation: rotating 1s linear infinite;
	-o-animation: rotating 1s linear infinite;
	animation: rotating 1s linear infinite;
}
.nav ul.menu li span.icon span.back {position: relative;top: 4px;}
.nav ul.menu li span.icon i.curioso {background: #ff8000;}
.nav ul.menu li span.icon i.animalicos {background: #00ff00;}
.nav ul.menu li span.icon i.parecidos {background: #ffff00;}
.nav ul.menu li span.icon i.carteles {background: #8e4600;}
.nav ul.menu li span.icon i.postales {background: #007cff;}
.nav ul.menu li span.icon i.sexual {background: #ff00ff;}

.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton {
	margin-bottom: 0;
}
main#main .most-commented article {
    width: 48%;
    height: 180px;
    margin-bottom: 4%;
}
main#main .most-commented article:nth-child(odd) {
	float: left;
}
main#main .most-commented article:nth-child(even) {
    float: right;
}
main#main .most-commented article:nth-child(5),
main#main .most-commented article:nth-child(6) {
	margin-bottom: 0;
}
main#main .most-commented.recent-fotomaton article:nth-child(3),
main#main .most-commented.recent-fotomaton article:nth-child(4) {
	margin-bottom: 26px;
}
main#main .most-commented.recent-fotomaton article:nth-child(5),
main#main .most-commented.recent-fotomaton article:nth-child(6) {
	margin-bottom: 0;
}
.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton article:nth-child(5),
.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton article:nth-child(6),
.tax-fcategory main#main .most-commented.recent-fotomaton article:nth-child(5),
.tax-fcategory main#main .most-commented.recent-fotomaton article:nth-child(6),
.tax-ftag main#main .most-commented.recent-fotomaton article:nth-child(5),
.tax-ftag main#main .most-commented.recent-fotomaton article:nth-child(6) {
	margin-bottom: 26px;
}
main#main .most-commented article a.thumb img {
	opacity: .5;
}
main#main .most-commented article footer {
    display: table;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
}
main#main .most-commented.recent-fotomaton article footer .title,
main#main .most-commented.recent-fotomaton.top article footer a {
	display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 14pt;
    color: #fff;
}
main#main .most-commented.recent-fotomaton.top article footer a {
	font-size: 20pt;
}
.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton article footer .title {
	padding: 10px;
	font-size: 12pt;
	vertical-align: bottom;
}
main#main .most-commented article footer svg {
	top: 9px;
}
main#main .most-commented article footer span.comments {
	display: table-cell;
    vertical-align: middle;
    text-align: center;
}
main#main .most-commented article footer span.comments a {
	color: #fff;
	font-size: 20pt;
}
main#main .top-yonkis .podium {
	width: 100%;
    height: 160px;
    margin-bottom: 20px;
    float: left;
    position: relative;
}
main#main .top-yonkis .podium .user {
	width: 30.333%;
	position: absolute;
	bottom: 0;
	float: left;
}
main#main .top-yonkis .podium .user .user-avatar {
	width: 100%;
	text-align: center;
    position: relative;
    z-index: 999;
    top: -60px;
}
main#main .top-yonkis .podium .user .user-avatar img {
	width: auto;
}
main#main .top-yonkis .podium .user .name {
	width: 100%;
	font-size: 10pt;
	font-weight: 700;
	text-align: center;
	position: absolute;
	top: 3px;
}
main#main .top-yonkis .podium .user.first {
	height: 100px;
	background: #fee119;
	color: #d07a0a;
	box-shadow: 0 0 30px rgba(254,225,25,0.7);
	left: 34.833%;
}
main#main .top-yonkis .podium .boss {
    width: 100px;
    height: 100px;
    margin-left: -50px;
	background: url('img/boss.gif') no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    z-index: -1;
    top: -24px;
    left: 50%;
}
main#main .top-yonkis .podium .user.second {
	height: 50px;
	background: #ededed;
	color: #424242;
	box-shadow: 0 0 30px rgba(237,237,237,0.7);
}
main#main .top-yonkis .podium .user.third {
	height: 25px;
	background: #db9e36;
	color: #ffe200;
	box-shadow: 0 0 30px rgba(219,158,54,0.7);
	right: 0;
}
main#main .top-yonkis .podium .user.first .user-avatar img {
	border: 2px solid #fee119;
}
main#main .top-yonkis .podium .user.second .user-avatar img {
	border: 2px solid #ededed;
}
main#main .top-yonkis .podium .user.third .user-avatar img {
	border: 2px solid #db9e36;
}

.single main#main article {
	width: 100%;
	float: left;
}
.single main#main .most-commented.recent-fotomaton article {
	width: 46%;
}
.single main#main article h1.entry-title {
	padding-bottom: 10px;
	margin-top: 12px;
	margin-bottom: 14px;
	font-weight: 400;
	text-transform: none;
	text-align: left;
	color: #fff;
}
.single main#main article.fotomaton h1.entry-title {
	padding-bottom: 15px;
	margin-bottom: 27px;
	position: relative;
	border-bottom: 0 none;
}
.single main#main article.fotomaton h1.entry-title .line {
	width: 90%;
    margin-left: 5%;
    border-bottom: 3px solid white;
    position: absolute;
    bottom: -3px;
}
.single main#main article .content span[id^=more-] {
	width: 100%;
	height: 12px;
	float: left;
}
.single main#main article .content video,
.single main#main article .content iframe {
	width: 100%;
	max-width: 100%;
	height: 183px;
	margin: 0 0 20px 0;
	border: 3px solid #fff !important;
	clear: both;
	float: left;
	position: relative;
}
.single main#main article .content,
.single main#main article .content p {
	width: 100%;
	height: auto;
	padding: 0;
	font-weight: 400;
	font-size: 11pt;
	line-height: 25px;
	color: #ccc;
	display: block;
	float: left;
}
.single main#main article .content p:empty {
	display: none;
}
.single main#main article .content img {
	width: 100%;
	height: auto;
	margin: 0 auto 20px auto;
}
.single main#main article footer {
	margin-top: -5px;
	float: left;
	position: static;
}
.single main#main .most-commented.recent-fotomaton article footer {
	position: absolute;
	margin-top: 0;
}
.single main#main .most-commented.recent-fotomaton article footer .title {
	padding: 10px;
	font-size: 12pt;
	vertical-align: bottom;
}
.single main#main article footer ul.share,
.single main#main article footer ul.share li {
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;
}
.single main#main article footer ul.share {
	width: 100%;
	margin-top: 20px;
}
.single main#main article footer ul.share li {
	width: 23%;
	margin: 0 1%;
}
.single main#main article footer ul.share li a {
	width: 100%;
	padding: 6px 0;
	text-align: center;
	background: #666;
	float: left;
}
.single main#main article footer ul.share li:nth-child(1) a {
	background: #fff;
	border-bottom: 3px solid #3b5998;
}
.single main#main article footer ul.share li:nth-child(2) a {
	background: #ccc;
	border-bottom: 3px solid #09d461;
}
.single main#main article footer ul.share li:nth-child(3) a {
	background: #999;
	border-bottom: 3px solid #1dcaff;
}
.single main#main article footer ul.share li:nth-child(4) a {
	background: #666;
	border-bottom: 3px solid #dd4b39;
}
.single main#main h3 {
	width: 100%;
    padding: 0 0 10px 0;
    margin: 22px 0 21px;
    border-bottom: 2px solid #fff;
    font-weight: 300;
    font-size: 2em;
    line-height: 33px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    float: left;
}
.single main#main .related article {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #666;
}
.single main#main .related article:last-child {
    margin-bottom: 0;
}
.single main#main .related article .thumb {
	width: 66px;
	height: auto;
	border: 1px solid #666;
	box-shadow: 0 0 0 transparent;
}
.single main#main .related article .thumb img {
	width: 100%;
	height: auto;
	float: left;
}
.single main#main .related article h3.entry-title {
	width: 100%;
    padding: 0 10px;
    margin: 0;
    font-size: 12pt;
    font-weight: 400;
    text-shadow: 1px 1px 1px #000;
    float: none;
    text-transform: none;
    text-align: left;
    float: none;
    padding-left: 76px;
    border-bottom: 0;
    line-height: 20px;
}
.single main#main .related article h3.entry-title a {
	width: 100%;
    height: 65px;
    padding: 0;
    display: inline-block;
    float: left;
    position: static;
}
.single main#main .post-comments {
	width: 100%;
	overflow: hidden;
	float: left;
}
.single main#main .post-comments .show-images a {
	width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
    font-size: 14pt;
    color: #333;
    background: #ffcc00;
    text-align: center;
    float: left;
}
.single main#main .post-comments .show-images a svg {
	position: relative;
	top: 2px;
}
.single main#main .post-comments ul {
	width: 100%;
	padding: 0;
	margin: 0;
	float: left;
}
.single main#main .post-comments ul li {
	width: 100%;
	font-size: 11pt;
	font-weight: 400;
	color: #999;
	list-style: none;
	float: left;
}
.single main#main .post-comments ul li ul.voters {
    width: 152px;
    padding: 10px 0 0;
    background: #2b2b2b;
    position: absolute;
    right: 102px;
    display: none;
}
.single main#main .post-comments ul li.depth-5 ul.voters {
	right: 51px;
}
.single main#main .post-comments ul li ul.voters li {
	width: 100%;
	margin: 0 0 10px 0;
	color: #333;
	float: left;
}
.single main#main .post-comments ul li ul.voters .positive {
	color: #5ebc40;
}
.single main#main .post-comments ul li ul.voters .negative {
	color: #bb5853;
}
.single main#main .post-comments ul li ul.voters li.count {
	border-top: 1px solid #555;
    font-size: 12pt;
	font-weight: 900;
}
.single main#main .post-comments ul li ul.voters li.count span {
	width: 50%;
	margin-top: 4px;
    margin-bottom: -6px;
	text-align: center;
	float: left;
}
.single main#main .post-comments ul li ul.voters li.count span.positive {
	box-shadow: 1px 0 0 #555;
}
.single main#main .post-comments ul li ul.voters li.count span.positive.solo,
.single main#main .post-comments ul li ul.voters li.count span.negative.solo {
	width: 100%;
	box-shadow: 0 0 0;
}
.single main#main .post-comments ul li ul.voters li.pbar {
	width: 100%;
    height: 3px;
    margin: 0;
}
.single main#main .post-comments ul li ul.voters li.pbar span {
	height: 3px;
	float: left;
}
.single main#main .post-comments ul li ul.voters li.pbar span.pp {
	background: #5ebc40;
}
.single main#main .post-comments ul li ul.voters li.pbar span.pn {
	background: #bb5853;
}
.single main#main .post-comments ul li .comment-author.vcard {
    height: 50px;
    padding-top: 10px;
    font-size: 9pt;
    background: #222;
    position: relative;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu {
    width: 50px;
    height: 50px;
    background: #2B2B2B;
    text-align: center;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 99;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu span.open-menu {
	width: 50px;
	height: 50px;
    padding-top: 10px;
    display: block;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu span.open-menu svg {
    -webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu.open span.open-menu svg {
	-ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu div {
	width: 100%;
	padding: 0;
	margin: 0;
	display: none;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu div img {
	margin: 0;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu div.updown-total-count {
	position: absolute;
    left: 0;
    height: 50px;
    font-size: 16pt;
    padding-top: 15px;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu div.updown-vote-box {
    width: 153px;
    background: #222;
	position: relative;
    top: -50px;
    right: 204px;
}
.single:not(.logged-in) main#main .post-comments ul li .comment-author.vcard .comment-menu div.updown-vote-box {
	width: 51px;
	right: 102px;
}
.single main#main .post-comments ul li.depth-5 .comment-author.vcard .comment-menu div.updown-vote-box {
	right: 153px;
}
.single main#main .post-comments ul li .comment-author.vcard .comment-menu div.updown-vote-box div {
	width: 50px;
	margin-right: 1px;
	background: #2B2B2B;
	float: right;
}
.single main#main .post-comments ul li .master .comment-author.vcard .comment-menu div.updown-vote-box div {
	display: none !important;
}
.single main#main .post-comments ul li .master .comment-author.vcard .comment-menu div.updown-vote-box div.updown-total-count {
	width: 152px;
	color: #5ebc40;
	display: block !important;
}
.single main#main .post-comments ul li.comment-author-increate > .master .comment-author.vcard .comment-menu div.updown-vote-box div.updown-total-count {
	color: #666;
	font-family: monospace;
    font-weight: 900;
}
.single main#main .post-comments ul li .comment-author.vcard .reply {
	position: relative;
    top: -8px;
    right: 51px;
}
.single main#main .post-comments ul li .comment-author.vcard .reply a {
    width: 50px;
    height: 50px;
    padding-top: 13px;
    text-align: center;
    background: #2b2b2b;
	position: absolute;
    top: -42px;
    right: 0;
}
.single main#main .post-comments ul li .comment-author.vcard .fn {
	color: #fff;
	font-style: normal;
}
.single main#main .post-comments ul li .comment-body {
	margin-bottom: 30px;
	border-bottom: 1px solid #666;
}
.single main#main .post-comments ul li .comment-body p .comment_image a {
	color: #ffcc00;
}
.single main#main .post-comments ul li .comment-body p .comment_image a svg {
	position: relative;
    top: 3px;
}
.single main#main .post-comments ul li.comment-author-increate > .master .comment-author .fn,
.single main#main .post-comments ul li.comment-author-increate > .comment-body .comment-text p {
	font-family: monospace;
}
.single main#main .post-comments ul li.comment-author-increate > .master .comment-author .fn {
	color: #00c109;
}
.single main#main .post-comments ul li .comment-body .comment-text iframe {
	width: 100%;
	height: 180px;
}
.single main#main .post-comments ul li .comment-body.goodcomment .comment-author.vcard  {
	box-shadow: 0 1px 0 #5ebc40;
}
.single main#main .post-comments ul li .comment-body.goodcomment.bestcomment .comment-author.vcard  {
	box-shadow: 0 3px 0 #5ebc40;
}
.single main#main .post-comments ul li .comment-body .msg {
	color: #444;
}
.single main#main .post-comments ul li .comment-body .msg.never {
	color: #bb5853;
}
.single main#main .post-comments ul li img {
	width: 50px;
	height: 50px;
	margin-top: -10px;
	margin-right: 10px;
	float: left;
}
.single main#main .post-comments ul li .comment_image img {
	width: 100%;
	max-width: 100%;
    margin: 0 0 20px 0;
    height: auto;
    float: left;
}
.single main#main .post-comments ul li ul.children {
	width: 95%;
	margin-left: 5%;
}
.single main#main #respond,
.single main#main #respond form {
	width: 100%;
	float: left;
}
.single main#main #respond label,
.single main#main #respond .logged-in-as {
	display: none;
}
.single main#main #respond p {
	width: 100%;
	margin: 10px 0 0 0;
	clear: both;
	float: left;
}
.single main#main #respond .comment-form-subscriptions label {
	display: block;
}
.single main#main #respond #cancel-comment-reply-link {
	height: 36px;
    padding: 2px 20px 0 20px;
    border-right: 1px solid #000;
    font-size: 10pt;
    background: #333;
    color: #999;
    position: absolute;
    bottom: 46px;
    left: 0;
    z-index: 9;
}
.unsubscribe {
    width: 100%;
    margin: 26px 0 0 0;
	float: left;
}
.single main#main #respond textarea {
	width: 100%;
	font-size: 12pt;
	resize: none;
}
.single main#main #respond input {
    width: 100%;
	padding: 10px;
    font-size: 10pt;
    border: 0 none;
    background: #333;
    color: #999;
    float: none;
}
.single main#main li #respond input {
	padding: 10px 10px 10px 58px;
}
.single main#main li h3#reply-title {
	font-size: 16pt;
	margin-top: -20px;
}
.single main#main li #respond.comment-respond {
	margin-bottom: 30px;
	position: relative;
}

a.tap {
    width: 100%;
	position: absolute;
    top: -365px;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
a.tap #screen {
	height: 499px !important;
}
a.tap canvas {
	height: 730px !important;
	left: -83px !important;
}
.comment-form-subscriptions label {
	position: relative;
}
.comment-form-subscriptions label select {
	width: 100%;
    height: 36px;
    padding: 0 10px;
    border: 0 none;
    border-radius: 0;
	background: #333333;
    color: #999;
}
.comment-form-subscriptions label span {
	position: absolute;
    right: 4px;
    top: 0px;
    display: none;
}


/*------------------------------------*\
    FOTOMATON
\*------------------------------------*/

h1.logo.ftmtn a {
	color: #333;
}
h1.logo.ftmtn a span.txt {
    font-size: 14pt;
    letter-spacing: 6px;
	color: #fff;
    text-align: center;
    position: absolute;
    top: 19px;
}
.ftmtn-nav {
    width: 100%;
    height: 10px;
	position: absolute;
    bottom: 6px;
}
.ftmtn-nav span {
	position: absolute;
}
.ftmtn-nav .next {left: -3px;}
.ftmtn-nav .prev {right: -3px;}
.ftmtn-nav span a {
	color: #fff;
}
.single-fotomaton img {
	height: auto;
	margin-bottom: 20px;
}
.ratings {
	width: 100%;
	margin-top: 10px;
    margin-bottom: -5px;
	float: left;
}
.ratings .PSR_container {
	margin: 0;
}
.ratings .total {
	display: none;
}
.PSR_no_star,
.PSR_half_star,
.PSR_full_star,
.PSR_no_voting_star,
.PSR_half_voting_star,
.PSR_full_voting_star {
	width: 10%;
	height: 50px;
	background-position: center;
    background-size: 100%;
}
.PSR_votes, .PSR_tvotes, .PSR_tvote {
	width: 100%;
	font-size: 16pt;
	text-align: center;
	display: none;
}
.PSR_full_star,
.PSR_full_voting_star {
	background-image: url(img/full_voting_star.png);
}
.PSR_half_star,
.PSR_half_voting_star {
    background-image: url(img/half_voting_star.png);
}
.PSR_no_star,
.PSR_no_voting_star {
    background-image: url(img/no_star.png);
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

#kaleido {
	width: 100%;
	height: 175px;
	margin-bottom: -60px;
	overflow: hidden;
	float: left;
}
#kaleido span {
  position:relative;
  top: -260px;
  z-index: -1;
  width:100%; height: 0;
  padding-bottom: 100%;
  display:block;
}
#kaleido div { position:absolute; top:50%; left:50%; -webkit-animation: top 5000ms linear infinite; }
#kaleido div:before, 
#kaleido div:after {
  content:'';
  width:100%; height:100%;
  position:absolute;
  background:#555;
}
#kaleido div:before { /* Middle of layer */ background:#555; -webkit-animation:middle 5000ms linear infinite; }
#kaleido div:after { /* Top of layer */ -webkit-transform:rotate(30deg); }
#kaleido div:nth-of-type(4):after { -webkit-animation: keepStill 5000ms linear infinite; }

#kaleido div:nth-of-type(4) { /* Topmost level */ width:30%; height:30%; margin-top:-15%; margin-left:-15%; }
#kaleido div:nth-of-type(3) { width:50%; height:50%; margin-top:-25%; margin-left:-25%; }
#kaleido div:nth-of-type(2) { width:70%; height:70%; margin-top:-35%; margin-left:-35%; }
#kaleido div:nth-of-type(1) { width:100%; height:100%; margin-top:-50%; margin-left:-50%; }

/* Animations */
@-webkit-keyframes top { 0% { -webkit-transform:rotate(60deg); } 100% { -webkit-transform:rotate(150deg); } }
@-webkit-keyframes middle { 0% { -webkit-transform:rotate( -30deg); } 100% { -webkit-transform:rotate(-210deg); } }
@-webkit-keyframes keepStill { 0% { -webkit-transform:rotate(30deg); } 100% { -webkit-transform:rotate(-60deg); } }
@keyframes top { 0% { transform:rotate(60deg); } 100% { transform:rotate(150deg); } }
@keyframes middle { 0% { transform:rotate( -30deg); } 100% { transform:rotate(-210deg); } }
@keyframes keepStill { 0% { transform:rotate(30deg); } 100% { transform:rotate(-60deg); } }

/* Coloring */
#kaleido div:nth-of-type(4), 
#kaleido div:nth-of-type(3):before, 
#kaleido div:nth-of-type(2), 
#kaleido div:nth-of-type(1):before { background:#111; }
#kaleido div:nth-of-type(4):after, 
#kaleido div:nth-of-type(1), 
#kaleido div:nth-of-type(3) { background:#222; }
#kaleido div:nth-of-type(2):after { background:#333; }
#kaleido div:nth-of-type(3):after, 
#kaleido div:nth-of-type(1):after { background:#444; }

.bpag {
	width: 100%;
	padding-bottom: 33%;
	margin: 20px 0 10px 0;
	text-align: center;
	float: left;
}
.home.paged .bpag {
	margin-top: 0;
}
.bcontent {
	padding-bottom: 83%;
	margin: -10px 0 20px 0;
	text-align: center;
	float: left;
}
.bcontent.md {
	padding-bottom: 33%;
}
.bcontent.ld {
	width: 46%;
    padding-bottom: 38%;
}
.bcontent.ld.f {
	margin-right: 8%;
}
.bcontent.xd {
	padding-bottom: 15%;
}
.bcontents {
	padding-bottom: 33%;
	margin: -3px 0 23px 0;
	text-align: center;
	float: left;
}
.bsingle {
	padding-bottom: 33%;
    margin: 20px 0 0 0;
    float: left;
}
.spiroox {
	width: 100%;
	height: 0;
	position: relative;
}
.spiroox iframe {
	width: 100%;
	height: 100%;
	margin-bottom: -3px;
	position: absolute;
	top: 0;
	left: 0;
}
.sd {display: block;}
.md {display: none;}
.ld {display: none;}
.xd {display: none;}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
	.nav ul.menu li {
		width: 50%;
	}
	.nav ul.menu li:nth-child(2) span.icon,
	.nav ul.menu li:nth-child(4) span.icon,
	.nav ul.menu li:nth-child(6) span.icon {
		border-left: 1px solid #111;
	}
	main#main article {
		width: 46%;
	}
	main#main article#top-yonkis,
	main#main article#post-404 {
		width: 100%;
	}
	main#main article:nth-child(even) {
	    float: right;
	}
	main#main article h3.entry-title {
		font-size: 13pt;
	}
	main#main .most-commented article,
	.single main#main .most-commented.recent-fotomaton article {
		width: 30%;
		height: 165px;
		margin-bottom: 30px;
	}
	main#main .most-commented article:nth-child(even),
	main#main .most-commented article:nth-child(odd) {
		float: left;
	}
	main#main .most-commented article.hentry:nth-child(2),
	main#main .most-commented article.hentry:nth-child(5),
	main#main .most-commented article.hentry:nth-child(8),
	main#main .most-commented article.hentry:nth-child(11),
	main#main .most-commented article.hentry:nth-child(15),
	main#main .most-commented article.hentry:nth-child(18),
	main#main .most-commented article.hentry:nth-child(22),
	main#main .most-commented article.hentry:nth-child(25),
	main#main .most-commented article.hentry:nth-child(28),
	main#main .most-commented article.hentry:nth-child(31) {
		margin-right: 5%;
		margin-left: 5%;
		margin-bottom: 30px;
	}
	.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton article:nth-child(5),
	.post-type-archive-fotomaton main#main .most-commented.recent-fotomaton article:nth-child(6),
	.tax-fcategory main#main .most-commented.recent-fotomaton article:nth-child(5),
	.tax-fcategory main#main .most-commented.recent-fotomaton article:nth-child(6),
	.tax-ftag main#main .most-commented.recent-fotomaton article:nth-child(5),
	.tax-ftag main#main .most-commented.recent-fotomaton article:nth-child(6) {
		margin-bottom: 30px;
	}
	.single main#main .most-commented.recent-fotomaton {
		margin-bottom: -27px;
	}
	main#main .most-commented article a.thumb,
	main#main .most-commented article footer {
		height: 165px;
	}
	main#main article .excerpt .views,
	main#main article .excerpt .comments {
		font-size: 13pt;
	}
	main#main .most-commented article a.thumb img {
		width: 100%;
		height: auto;
	}
	.single main#main article .content video,
	.single main#main article .content iframe {
		height: 300px;
	}
	.single main#main article .content iframe .box-video {
		width: 100%;
		height: 300px;
	}
	.footer ul.links li {
		width: 50%;
		text-align: center;
	}
	.footer .rta {
		text-align: center;
	}
	main#main .most-commented.recent-fotomaton article:nth-child(3),
	main#main .most-commented.recent-fotomaton article:nth-child(4) {
		margin-bottom: 30px;
	}
	.PSR_no_star,
	.PSR_half_star,
	.PSR_full_star,
	.PSR_no_voting_star,
	.PSR_half_voting_star,
	.PSR_full_voting_star {
		height: 61px;
	}
	#kaleido span {
		top: -550px;
	}
	.sd {display: none;}
	.md {display: block;}
	.ld {display: none;}
	.xd {display: none;}
}
@media only screen and (min-width:768px) {
	.kalei h1.logo {
		font-size: 100pt;
		letter-spacing: 90px;
	}
	main#main .most-commented.recent-fotomaton {
		margin-bottom: 3px;
	}
	.single main#main article .content video,
	.single main#main article .content iframe {
		width: 100%;
		height: 410px;
	}
	.single main#main .related article {
		width: 46%;
		float: left;
	}
	.single main#main .related article:nth-child(odd) {
		margin-left: 8%;
	}
	.single main#main .related {
		width: 100%;
		float: left;
		position: relative;
	}
	.single main#main .related .sep {
		position: absolute;
	    top: 0;
	    bottom: 10px;
	    border-right: 1px solid;
	    left: 50%;
	}
	.PSR_no_star,
	.PSR_half_star,
	.PSR_full_star,
	.PSR_no_voting_star,
	.PSR_half_voting_star,
	.PSR_full_voting_star {
		height: 64px;
	}
	.sd {display: none;}
	.md {display: none;}
	.ld {display: block;}
	.xd {display: none;}
}
@media only screen and (min-width:1024px) {
	#main .latest article {
		width: 30%;
	}
	main#main article:nth-child(odd),
	main#main article:nth-child(even) {
		float: left;
	}
	#main .latest article:nth-child(2),
	#main .latest article:nth-child(5),
	#main .latest article:nth-child(13),
	#main .latest article:nth-child(16),
	#main .latest article:nth-child(19),
	#main .latest article:nth-child(22),
	#main .latest article:nth-child(25),
	#main .latest article:nth-child(28),
	#main .latest article:nth-child(32),
	#main .latest article:nth-child(35) {
		margin-right: 5%;
		margin-left: 5%;
	}
	.single main#main article .content video,
	.single main#main article .content iframe {
		width: 100%;
		height: 550px;
	}
	#kaleido span {
		top: -700px;
	}
	.PSR_no_star,
	.PSR_half_star,
	.PSR_full_star,
	.PSR_no_voting_star,
	.PSR_half_voting_star,
	.PSR_full_voting_star {
		height: 88px;
	}
	.sd {display: none;}
	.md {display: none;}
	.ld {display: none;}
	.xd {display: block;}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
/*------------------------------------*\
    HOF
\*------------------------------------*/
#hof {
	width: 100%;
	float: left;
}
#hof a {
	width: 48%;
	margin-bottom: 4%;
	background-color: #000;
	position: relative;
}
#hof a:before {
	content: "";
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    pointer-events: none;
    mix-blend-mode: exclusion;
    background: -webkit-linear-gradient(to top, rgba(255, 0, 20, 0.5) 30%, rgba(0, 0, 0, 0.04) 100%);
    background: linear-gradient(to top, rgba(255, 0, 20, 0.5) 30%, rgba(0, 0, 0, 0.04) 100%);
    z-index: 99999;
}
#hof a:nth-child(odd) {float: left;}
#hof a:nth-child(even) {float: right;}
#hof a img {
	width: 100%;
	filter: grayscale(100%) !important;
}
/*------------------------------------*\
    DISCLAIMER
\*------------------------------------*/
#disclaimer {
    width: 100%;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    font-size: 9pt;
    background-color: #111;
    color: #aaa;
    float: left;
}
#disclaimer h4 {
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
	color: #fff;
	text-transform: uppercase;
	float: left;
}
#disclaimer p {
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
	float: left;
}
#disclaimer p strong {
	color: #fff;
}
.sce-edit-comment {
	display: none;
}