/*******************************************************************************

  CSS on Sails Framework
  Title: Marco Costanzi
  Author: XHTMLized.com
  Date: April 2014

********************************************************************************

  1. BASE
    1.1 Reset
    1.2 Accessibility Navigation & Hide
    1.3 Clearfix
    1.4 Fonts
    1.5 Normalized Styles
    1.6 Image Replacement

  2. COMMON
    2.1 Container
    2.2 Header
    2.3 Navigation
    2.4 Content
    2.5 Sidebar
    2.6 Footer

  3. PAGES
    3.1 Landing Page
    3.2 Menu Page
    3.3 Yesterday Page
    3.4 Yesterday Page - Project Detail
    3.5 Today Page
    3.6 Tomorrow Page

  4. RESPONSIVE
  5. PRINT

*******************************************************************************/


/* 1. BASE
--------------------------------------------------------------------------------
==============================================================================*/


/* 1.1 Reset
------------------------------------------------------------------------------*/

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

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a[href], label[for], select,
input[type=checkbox], input[type=radio] {
    cursor: pointer;
}

button, input[type=button], input[type=image],
input[type=reset], input[type=submit] {
    padding: 0;
    overflow: visible;
    cursor: pointer;
}

button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=image]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
    border: 0;
}


/* 1.2 Accessibility Navigation & Hide
------------------------------------------------------------------------------*/

.accessibility-nav {
    position: absolute;
    top: 0;
    left: -9999em;
    z-index: 1000;
}

.accessibility-nav a {
    position: absolute;
    top: 0;
    white-space: nowrap;
}

.accessibility-nav a:active,
.accessibility-nav a:focus {
    left: 9999em;
}

.hide {
    position: absolute !important;
    left: -9999em !important;
}


/* 1.3 Clearfix
------------------------------------------------------------------------------*/

.clearfix:after {
    content: ".";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
}

/* 1.4 Fonts
------------------------------------------------------------------------------*/

@font-face {
    font-family: 'SimonciniGaramondStdRoman';

    src: url('../fonts/simoncinigaramondstd.eot');
    src: url('../fonts/simoncinigaramondstd.eot') format('embedded-opentype'),
        url('../fonts/simoncinigaramondstd.woff') format('woff'),
        url('../fonts/simoncinigaramondstd.ttf') format('truetype'),
        url('../fonts/simoncinigaramondstd.svg#SimonciniGaramondStdRoman') format('svg');
}

@font-face {
    font-family: 'SimonciniGaramondStdBold';

    src: url('../fonts/simoncinigaramondstd-bold.eot');
    src: url('../fonts/simoncinigaramondstd-bold.eot') format('embedded-opentype'),
        url('../fonts/simoncinigaramondstd-bold.woff') format('woff'),
        url('../fonts/simoncinigaramondstd-bold.ttf') format('truetype'),
        url('../fonts/simoncinigaramondstd-bold.svg#SimonciniGaramondStdBold') format('svg');
}


/* 1.5 Normalized Styles
------------------------------------------------------------------------------*/
body {
    /*  font: 15px 'Gentium Basic', Georgia, serif;*/
    color: #000;
    background: #fff;
    -webkit-text-stroke: 0.3px;
}

hr {
    display: none;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

del {
    text-decoration: line-through;
}

th, td {
    vertical-align: top;
}

th {
    font-weight: normal;
    text-align: left;
}

address, cite, dfn {
    font-style: normal;
}

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

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

input, textarea, select {
    font-family: Arial, Helvetica, sans-serif;
}

textarea {
    overflow: auto;
}

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

a:hover, a:active, a:focus {
    text-decoration: none;
    color: #333;
}

/* Content area */
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 15px 0 6px 0;
    font-weight: bold;
}

.entry-content h2 {
    font-size: 2em;
}

.entry-content h3 {
    font-size: 1.67em;
}

.entry-content h4 {
    font-size: 1.5em;
}

.entry-content h5 {
    font-size: 1.25em;
}

.entry-content p {
    margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 15px 0;
    padding-left: 25px;
    list-style: disc;
}

.entry-content ul ul {
    margin-top: 5px;
    list-style: circle;
}

.entry-content ul ul ul {
    list-style: square;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content li {
    margin-bottom: 5px;
}

.entry-content dl {
    margin-bottom: 15px;
}

.entry-content dt {
    font-weight: bold;
}

.entry-content dd {
    margin-bottom: 10px;
}

.entry-content blockquote {
    margin: 0 15px 15px 15px;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

.entry-content th,
.entry-content td {
    padding: 5px 10px 5px 0;
}

.entry-content th {
    font-weight: bold;
}


/* 1.6 Image replacement
------------------------------------------------------------------------------*/

.ir {
    display: block;
    position: relative;
    overflow: hidden;
}

.ir span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}


/* 2. COMMON
--------------------------------------------------------------------------------
==============================================================================*/


/* 2.1 Container
------------------------------------------------------------------------------*/

.container {
    position: absolute;
    height: 100%;
    width: 100%;
    min-width: 768px;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

/* 2.2 Header
------------------------------------------------------------------------------*/


/* 2.3 Navigation
------------------------------------------------------------------------------*/


/* 2.4 Content
------------------------------------------------------------------------------*/


/* 2.5 Sidebar
------------------------------------------------------------------------------*/


/* 2.6 Footer
------------------------------------------------------------------------------*/


/* 3. PAGES
--------------------------------------------------------------------------------
==============================================================================*/


/* 3.1 Landing Page
------------------------------------------------------------------------------*/

.lp-container {
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.logo-bianco{
    height:30px;
    /*margin-left: -30px;*/
}



.logo-nero{
    position: absolute;
    right:10px;
    height:20px;
    bottom: 13px;
}


.lp-content {
    display: table;
    /*position: absolute;*/
    height: 100%;
    width: 100%;
    text-align: center;
}

.lp-content p {
    display: table-cell;
    vertical-align: middle;
}

.lp-content p a {
    color: #fff;
    font-size: 18px;
}

.lp-content p a:hover,
.lp-content p a:focus,
.lp-content p a:active {
    color: #333;
    text-decoration: none;
}

.lp-footer {
    background-color: transparent !important;
    
/*    position: absolute;
    bottom: 18px;
    width: 100%;*/
    text-align: center;
    font-size: 14px;
    color: #fff !important;
    margin-left: -15px;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .lp-container {
        background-attachment: scroll;
        height:100%;
    }

    .logo-bianco{
        margin:0px;
    }

    .lp-footer{
        width: auto;
    }
}

/* 3.2 Menu Page
------------------------------------------------------------------------------*/

.menu-col-1, .menu-col-3 {
    position: absolute;
    width: 25%;
    left: 0;
    height: 100%;
}

.menu-col-3 {
    left: 75%;
}

.menu-col-2 {
    position: absolute;
    width: 50%;
    left: 25%;
    height: 100%;
}

.menu-col-1 p span,
.menu-col-2 p span {
    width: 2px;
    display: none;
    background: #999;
    position: absolute;
    right: 0;
    height: 22px;
    margin: -4px 0 0 0;
}

.menu-col {
    display: table;
    height: 100%;
    text-align: center;
}

.menu-col p {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.menu-col p a {
    font-size: 14px;
}

.menu-footer {
    display: none;
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #000;
    z-index: 10;
}


.menu-footer a{
    font-size: 14px;
}

.menu-footer a:hover{
    text-decoration: none;

}

/* 3.3 Yesterday Page
------------------------------------------------------------------------------*/

.yd-col-1 {
    position: absolute;
    width: 25%;
    height: 100%;
    left: 0;
}

.yd-col-2 {
    position: absolute;
    width: 75%;
    height: 100%;
    left: 25%;
}

.yd-col-years {
    width: 20%;
    position: absolute;
    height: 100%;
}

.yd-years-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
}

.yd-years-wrapper a {
    display: block;
    line-height: 26px;
    height: 26px;
    text-align: left;
    padding: 0 5px 0 10px;
}

a.active-year {
    color: #000;
}

.yd-col-projects {
    width: 80%;
    position: absolute;
    height: 100%;
    left: 20%;
    background: red;
}

.yd-projects-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
}

.yd-col-projects a {
    display: block;
    padding: 10px 5px 10px 9px;
    line-height: 1.2em;
}

.yd-single-project-wrapper {
    display: table;
    height: 100%;
    position: absolute;
    width: 100%;
}

.yd-single-project-wrapper > div {
    display: none;
    vertical-align: middle;
    padding: 0 0 0 126px;
}

.back-button {
    position: absolute;
    right: 17px;
    height: 22px;
    border-right: 2px solid #999;
    border-left: 2px solid #999;
    width: 8px;
    top: 50%;
    margin: -11px 0 0 0;
    z-index: 1001;
}

.tm-proj-col-2 .back-button {
    right: auto;
    left: 17px;
}

/*.PJProgetto_thumb{
    max-width: 318px;
}*/

a.noncliccabile{
    color:black;
    text-decoration: none;
}


/* 3.4 Yesterday Page - Project Detail
------------------------------------------------------------------------------*/

.yd-proj-col-1 {
    position: absolute;
    width: 25%;
    height: 100%;
    left: 0;
}

.yd-proj-col-2 {
    position: absolute;
    width: 75%;
    height: 100%;
    left: 25%;
}

.tm-proj-col-1 {
    position: absolute;
    width: 25%;
    left: 75%;
    height: 100%;
    text-align: right;
}

.tm-proj-col-2 {
    position: absolute;
    width: 75%;
    left: 0;
    height: 100%;
    text-align: right;
}

.yd-proj-content {
    padding: 20px;
}

.yd-proj-content h1 {
    /*font-size: 15px;*/
    font-family: 'Gentium Basic', Georgia, serif; /*SimonciniGaramondStdBold*/
    font-weight: bold;
    /*line-height: 8px;*/
}

.yd-proj-content strong {
    font-family: 'Gentium Basic', Georgia, serif;/*SimonciniGaramondStdBold*/
    font-weight: bold;
    /*font-weight: normal;*/
}

.project-images, .slides {
    position: absolute;
    height: 100%;
    width: 100%;
}

.project-images .slides li {
    height: 100%;
    position: absolute !important;
    display: table !important;
    opacity: 0;
}

.project-images .slides li div {
    display: table-cell;
    /*position: absolute;*/
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.project-images .slides li div img {
    vertical-align: middle;
}

.project-images .flex-control-nav {
    position: absolute;
    bottom: 18px;
    z-index: 1001;
}

.tm-proj-col-2 .project-images .flex-control-nav {
    right: 0;
}

.project-images .flex-control-nav li {
    display: inline-block;
    margin: 0 6px 0 0;
}

.project-images .flex-control-nav li a {
    cursor: pointer;
}

.project-images .flex-control-nav li a.flex-active {
    color: #000;
}

/*.PJProgettoFoto{
    max-height: 386px;
}*/

/* 3.5 Today Page
------------------------------------------------------------------------------*/

.today-col {
    position: absolute;
    height: 100%;
}

.today-col-1 {
    width: 40%;
}

.marco-col-1 {
    width: 50%;
}

.today-col-2 {
    left: 40%;
    width: 60%;
}

.marco-col-2 {
    left: 50%;
    width: 50%;
}

.content.today-content{
    height: 100%;   
}

.today-col-1 img {
    max-width: 100%;
}

.today-blog {
    position: absolute;
    height: 100%;
    width: 70%;
    margin: 0 0 0 30%;
}

.today-blog-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
}

.today-blog-wrapper-center {
    height: 100%;
    width: 100%;

}

.today-blog-wrapper-top {
    position: absolute;
    height: 30%;
    width: 100%;
    top: 10%;
}

.blog-post {
    padding: 25px 5px;
}

.blog-post h2 {
    font-family: 'Gentium Basic', Georgia, serif;
    font-size: 14px;
    margin: 6px 0 0 0;
    /*max-width:400px;*/
}

.blog-post strong {
    font-family: 'Gentium Basic', Georgia, serif;
    font-weight: normal;
}

.today-footer {
    position: absolute;
    bottom: 18px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #000;
    z-index: 10;
}

.today-col-2 > div {
    position: absolute;
    height: 100%;
    padding: 0 0 0 50px;
    display: table;
}

.marco-col-1 > div {
    position: absolute;
    height: 100%;
    display: table;
    text-align: right;
    direction: rtl;
}

.marco-col-2 > div {
    padding: 0;
}

.marco-col-1 .mc-desc {
    width: 100%;
}

.today-col-2 p {
    display: table-cell;
    vertical-align: middle;
}

.today-col-2 p a {
    margin: 0 50px 0 0;
}

.small-back-button {
    position: absolute;
    width: 2px;
    height: 22px;
    background: #999;
    top: 50%;
    margin: -11px 0 0 0;
    left: 19px;
}







.mc-image {
    position: absolute;
    height: 100%;
    width: 100%;
    vertical-align: bottom;
    text-align: center;
}

.mc-image img {
    vertical-align: bottom;
    position: absolute;
    bottom: 0;
    left: 20%;
}

a.active-link {
    color: #000;
}

.today-links {
    position: absolute;
    top: 50%;
    margin: -7px 0 0 0;
    right: 50px;
}

.today-links.left {
    right: auto;
    left: 50px;
}

.today-links a {
    margin: 0 0 0 50px;
}

.today-links a {
    margin: 0 50px 0 0;
}

.mc-desc-content > div {
    display: none;
}

.mc-desc-content {
    display: table-cell;
    vertical-align: middle;
}

.mc-desc-content > a, .mc-desc-content > div {
    max-width: 260px;
}

.mc-desc-content a {
    display: block;
    margin: 8px 0;
}

.mc-desc-content p {
    display: block;
}

.mc-desc {
    width: auto;
}

.studio-footer {
    position: absolute;
    width: 50%;
    text-align: right;
    bottom: 18px;
}

.studio-footer a {
    display: block;
}

.studio-footer > div {
    margin: 8px 0 0 0;
}

.address-container > div {
    display: none;
}

.address-container > div.main-address {
    display: block;
}

.main-address b{
    color:white;
}

.person-wrapper {
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.person-wrapper > div {
    display: none;
    vertical-align: middle;
    padding: 0 0 0 30px;
}

.person-wrapper > div img {
    position: absolute;
    bottom: 0;
    right: 10%;
    z-index: -1;
}
/*
img.Blogpost_Foto{
    max-width: 450px;
}*/

/* 3.6 Tomorrow Page
------------------------------------------------------------------------------*/

.tm-col-1 {
    position: absolute;
    width: 75%;
    height: 100%;
    left: 0;
}

.tm-col-2 {
    position: absolute;
    width: 25%;
    height: 100%;
    left: 75%;
}

.tm-col-years {
    width: 20%;
    position: absolute;
    height: 100%;
    left: 80%;
}

.tm-years-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
}

.tm-years-wrapper a {
    display: block;
    line-height: 26px;
    height: 26px;
    text-align: right;
    padding: 0 10px 0 5px;
}

.tm-col-projects {
    width: 80%;
    position: absolute;
    height: 100%;
}

.tm-projects-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: right;
}

.tm-col-projects a {
    display: block;
    padding: 10px 9px 10px 5px;
    line-height: 1.2em;
}

.tm-single-project-wrapper {
    display: table;
    height: 100%;
    position: absolute;
    width: 100%;
}

.tm-single-project-wrapper > div {
    display: none;
    vertical-align: middle;
    padding: 0 126px 0 0;
    text-align: right;
}

.tm-single-project-wrapper .project-images .slides li div img {
    margin: 0 126px 0 0;
}

.tm-single-project-wrapper .project-images .flex-control-nav {
    right: 0;
}

.back-button-left {
    position: absolute;
    left: 17px;
    height: 22px;
    border-right: 2px solid #999;
    border-left: 2px solid #999;
    width: 8px;
    top: 50%;
    margin: -11px 0 0 0;
    z-index: 1001;
}


/* 4. RESPONSIVE
--------------------------------------------------------------------------------
==============================================================================*/


@media screen and (max-device-width: 480px) {

}




/* 5. PRINT
--------------------------------------------------------------------------------
==============================================================================*/


@media print {

    body {
        /*    font: normal normal 12pt/1.5em "Times New Roman", Times, serif;*/
    }

    a[href]:after {
        content: " (" attr(href) ") ";
        font-size: 90%;
    }

    a[href^="/"]:after {
        content: " (http://domain.com" attr(href) ") ";
    }

    .accessibility-nav,
    .hide {
        display: none !important;
    }
}


/* Plugins */
/* basic scrollbar styling */
/* vertical scrollbar */
.mCSB_container{
    width:auto;
    overflow:hidden;
}

.mCSB_container.mCS_no_scrollbar{
    margin-right:0;
}
.mCS_disabled>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar,
.mCS_destroyed>.mCustomScrollBox>.mCSB_container.mCS_no_scrollbar{
    margin-right:0;
}
.mCustomScrollBox>.mCSB_scrollTools{
    width:2px;
    height:100%;
    top:0;
    right:0;
}
.yd-col .mCustomScrollBox>.mCSB_scrollTools {
    right: auto;
    left: 1px;
}
.tm-col .mCustomScrollBox>.mCSB_scrollTools {
    left: auto;
    right: 1px;
}
.mCSB_scrollTools .mCSB_draggerContainer{
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    height:auto;
}
.mCSB_scrollTools a+.mCSB_draggerContainer{
    margin:20px 0;
}
.mCSB_scrollTools .mCSB_draggerRail{
    width:2px;
    height:100%;
    margin:0 auto;
}
.mCSB_scrollTools .mCSB_dragger{
    cursor:pointer;
    width:100%;
    height:30px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:2px;
    height:100%;
    margin:0 auto;
    text-align:center;
}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown{
    display:block;
    position:relative;
    height:20px;
    overflow:hidden;
    margin:0 auto;
    cursor:pointer;
}
.mCSB_scrollTools .mCSB_buttonDown{
    top:100%;
    margin-top:-40px;
}
/* horizontal scrollbar */
.mCSB_horizontal>.mCSB_container{
    height:auto;
    margin-right:0;
    margin-bottom:30px;
    overflow:hidden;
}
.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{
    margin-bottom:0;
}
.mCS_disabled>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar,
.mCS_destroyed>.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar{
    margin-right:0;
    margin-bottom:30px;
}
.mCSB_horizontal.mCustomScrollBox>.mCSB_scrollTools{
    width:100%;
    height:16px;
    top:auto;
    right:auto;
    bottom:0;
    left:0;
    overflow:hidden;
}
.mCSB_horizontal>.mCSB_scrollTools a+.mCSB_draggerContainer{
    margin:0 20px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
    height:2px;
    margin:7px 0;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger{
    width:30px;
    height:100%;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:4px;
    margin:6px auto;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{
    display:block;
    position:relative;
    width:20px;
    height:100%;
    overflow:hidden;
    margin:0 auto;
    cursor:pointer;
    float:left;
}
.mCSB_horizontal>.mCSB_scrollTools .mCSB_buttonRight{
    margin-left:-40px;
    float:right;
}
.mCustomScrollBox{
    -ms-touch-action:none; /*MSPointer events - direct all pointer events to js*/
}

/* default scrollbar colors and backgrounds (default theme) */
.mCustomScrollBox>.mCSB_scrollTools{
    opacity:0.75;
    filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */
}
.mCustomScrollBox:hover>.mCSB_scrollTools{
    opacity:1;
    filter:"alpha(opacity=100)"; -ms-filter:"alpha(opacity=100)"; /* old ie */
}
.mCSB_scrollTools .mCSB_draggerRail{
    background: #fff;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background: #f7f7f7;
}
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{

}
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{

}
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight{
    background-image:url(mCSB_buttons.png);
    background-repeat:no-repeat;
    opacity:0.4;
    filter:"alpha(opacity=40)"; -ms-filter:"alpha(opacity=40)"; /* old ie */
}
.mCSB_scrollTools .mCSB_buttonUp{
    background-position:0 0;
    /*
    sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark)
    */
}
.mCSB_scrollTools .mCSB_buttonDown{
    background-position:0 -20px;
    /*
    sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark)
    */
}
.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:0 -40px;
    /*
    sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark)
    */
}
.mCSB_scrollTools .mCSB_buttonRight{
    background-position:0 -56px;
    /*
    sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark)
    */
}
.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover{
    opacity:0.75;
    filter:"alpha(opacity=75)"; -ms-filter:"alpha(opacity=75)"; /* old ie */
}
.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active{
    opacity:0.9;
    filter:"alpha(opacity=90)"; -ms-filter:"alpha(opacity=90)"; /* old ie */
}

/*scrollbar themes*/
/*dark (dark colored scrollbar)*/
.mCS-dark>.mCSB_scrollTools .mCSB_draggerRail{
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.15);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.75);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(0,0,0,0.85);
}
.mCS-dark>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(0,0,0,0.9);
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-80px 0;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-80px -20px;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-80px -40px;
}
.mCS-dark>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-80px -56px;
}
/*light-2*/
.mCS-light-2>.mCSB_scrollTools .mCSB_draggerRail{
    width:4px;
    background:#fff; /* rgba fallback */
    background:rgba(255,255,255,0.1);
    -webkit-border-radius:1px;
    -moz-border-radius:1px;
    border-radius:1px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:4px;
    background:#fff; /* rgba fallback */
    background:rgba(255,255,255,0.75);
    -webkit-border-radius:1px;
    -moz-border-radius:1px;
    border-radius:1px;
}
.mCS-light-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
    height:4px;
    margin:6px 0;
}
.mCS-light-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:4px;
    margin:6px auto;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(255,255,255,0.85);
}
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(255,255,255,0.9);
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-32px 0;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-32px -20px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-40px -40px;
}
.mCS-light-2>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-40px -56px;
}
/*dark-2*/
.mCS-dark-2>.mCSB_scrollTools .mCSB_draggerRail{
    width:4px;
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.1);
    -webkit-border-radius:1px;
    -moz-border-radius:1px;
    border-radius:1px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:4px;
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.75);
    -webkit-border-radius:1px;
    -moz-border-radius:1px;
    border-radius:1px;
}
.mCS-dark-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
    height:4px;
    margin:6px 0;
}
.mCS-dark-2.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:4px;
    margin:6px auto;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(0,0,0,0.85);
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(0,0,0,0.9);
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-112px 0;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-112px -20px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-120px -40px;
}
.mCS-dark-2>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-120px -56px;
}
/*light-thick*/
.mCS-light-thick>.mCSB_scrollTools .mCSB_draggerRail{
    width:4px;
    background:#fff; /* rgba fallback */
    background:rgba(255,255,255,0.1);
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:6px;
    background:#fff; /* rgba fallback */
    background:rgba(255,255,255,0.75);
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
}
.mCS-light-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
    height:4px;
    margin:6px 0;
}
.mCS-light-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:6px;
    margin:5px auto;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(255,255,255,0.85);
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(255,255,255,0.9);
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-16px 0;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-16px -20px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-20px -40px;
}
.mCS-light-thick>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-20px -56px;
}
/*dark-thick*/
.mCS-dark-thick>.mCSB_scrollTools .mCSB_draggerRail{
    width:4px;
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.1);
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:6px;
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.75);
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
}
.mCS-dark-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
    height:4px;
    margin:6px 0;
}
.mCS-dark-thick.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:6px;
    margin:5px auto;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(0,0,0,0.85);
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(0,0,0,0.9);
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-96px 0;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-96px -20px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-100px -40px;
}
.mCS-dark-thick>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-100px -56px;
}
/*light-thin*/
.mCS-light-thin>.mCSB_scrollTools .mCSB_draggerRail{
    background:#fff; /* rgba fallback */
    background:rgba(255,255,255,0.1);
}
.mCS-light-thin>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:2px;
}
.mCS-light-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
}
.mCS-light-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:2px;
    margin:7px auto;
}
/*dark-thin*/
.mCS-dark-thin>.mCSB_scrollTools .mCSB_draggerRail{
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.15);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:2px;
    background:#000; /* rgba fallback */
    background:rgba(0,0,0,0.75);
}
.mCS-dark-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_draggerRail{
    width:100%;
}
.mCS-dark-thin.mCSB_horizontal>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    width:100%;
    height:2px;
    margin:7px auto;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
    background:rgba(0,0,0,0.85);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin>.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
    background:rgba(0,0,0,0.9);
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonUp{
    background-position:-80px 0;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonDown{
    background-position:-80px -20px;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonLeft{
    background-position:-80px -40px;
}
.mCS-dark-thin>.mCSB_scrollTools .mCSB_buttonRight{
    background-position:-80px -56px;
}
/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */


/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {margin: 0; padding: 0;}
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

@media (orientation:landscape) {
    html.ipad.ios7 > body {
        position: fixed;
        bottom: 0;
        width:100%;
        height: 672px !important;
    }
}

.arrow-back {
    position: absolute;
    bottom: 15px;
    left: 20px;
}

.tm-proj-col-1 .arrow-back {
    left: auto;
    right: 20px;
}

.yd-col-projects .filtered a.show-all-projects,
.tm-col-projects .filtered a.show-all-projects {
    display: block;
}

.yd-col-projects a.show-all-projects,
.tm-col-projects a.show-all-projects {
    display: none;
}


*{
    font-family: "Barlow", "Comic Sans MS", cursive, sans-serif !important; /*SimonciniGaramondStdBold*/
    font-size: 14px !important;
    font-weight: 400;
    /*font-weight: 600 !important;*/
    /*font-size: 16px !important;*/
}


.menu-footer {
    display: none;
    position: fixed;
    bottom: 0px;
    padding-bottom: 18px;
    padding-top: 18px;


    background-color: white;
    min-height: 50px;

    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #000;
    z-index: 10;
}


.menu-footer a{
    font-size: 18px;
}

.menu-footer a:hover{
    text-decoration: none;

}

.menu-footer .menu{
    display: none;
    background-color: white;
    color: black;
}

.menu-footer .menu,.hamburger{
    -webkit-transition: display 2s ease-in;
    -moz-transition: display 2s ease-in;
    -o-transition: display 2s ease-in;
    transition: display 2s ease-in;
}

.hamburger{
    text-align: center;
    /*    position: absolute;*/
    bottom: 5px;
    left: 49.5%;

}

.menu-footer .menu > a{
    display: block;
    line-height: 18px;
    font-size: 14px !important;
}

.menu-footer .menu > .social img{
    margin-top: 5px;
    height: 20px;
}


.social_icon{
    margin-top: 5px;
    height: 20px;
}


/* PROJECTS */


.menu_top{
    width: 200px;
    text-align: center;
    margin: auto;
    padding: 10px;
}

.menu_top a{
    font-size: 18px;
    margin: 4px;
    text-decoration: none;
}

.img_big{
    width: 100%;
}


.cliccabile{
    font-weight: 500 !important;
    color: #505050;
}

.cliccabile:visited , .cliccabile:hover{
    font-weight: 500 !important;
    color: black;
}

.non_cliccabile{
    font-weight: 500;
    color: #909090;
}

.descrizione{
    font-weight: lighter;
    color: #000;
}

.today-blog-wrapper-center{
    display: table;
}

.today-blog-wrapper-center div{
    display: table-cell;
    vertical-align: middle;
}

.old_font{
    font-size: 18px !important;
    font-family: "Gentium Basic", Georgia, serif !important;
}

.ce-banner{
    background-color: #909090 !important;
}
a.ce-accept:hover {
    background: #ffffff;
    color: #909090 !important;
}