/*--------------------------------------------------------------------------------------------------
  SECTION: BASE STYLES 
----------------------------------------------------------------------------------------------------*/
html {
  box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

html, body {
  margin: 0; 
  padding: 0; 
  border: 0;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  -ms-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 100%;
  line-height: 1em;
  font-weight: normal;
  font-style: normal;
  font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
  position: relative;
  cursor: default;
  overflow-x: hidden;
}

.oldie body {
  overflow: visible;
}


/* HTML5 Elements 
----------------------------------------------------------------------*/
header, footer, aside, nav, section, div, article, blockquote, main { 
  display: block; 
}

img,
object,
embed {
  max-width: 100%;
  border: none;
}

img {
  height: auto; 
}

embed {
  height: 100%; 
}

iframe {
  max-width: 100%;
}

object {
  display: block;
}

img {
  display: inline-block;
  vertical-align: middle;
}

figure {
  margin: 0;
}

hr {
  display: block;
  clear: both;
  color: transparent;
  margin: 0;
}


/* Lists
----------------------------------------------------------------------*/
ul {
  margin: 0;
  padding: 0;
}

ul.no-bullet {
  list-style: none;
}

ul.square,
ol.square {
  list-style-type: square; 
}

ul.circle,
ol.circle {
  list-style-type: circle; 
}

ul.disc,
ol.disc { 
  list-style-type: disc; 
}

ul.inline-block,
ul.inline,
ul.inline-block li,
ul.inline li,
ol.inline-block,
ol.inline-block li,
ol.inline,
ol.inline li {
  display: inline;
  vertical-align: middle;
    *display: inline;
    zoom: 1;
}

ul.inline-block,
ul.inline-block li,
ol.inline-block,
ol.inline-block li {
  display: inline-block;
}

.fortune_ol ol {
  padding: 10px 40px;
  font-weight: bold;
}

.fortune_ol > ol > li {
  margin-bottom: 20px;
}

.fortune_ol ol ol {
  padding: 15px 40px 40px;
  font-weight: normal;
}

.fortune_ol ol ol ol {
  padding-bottom: 15px;
}

.fortune_ol ol ol li {
  padding: 6px 0;
}

/* Typography
----------------------------------------------------------------------*/
div, 
dl, dt, dd, 
ul, ol, li, 
h1, h2, h3, h4, h5, h6,
pre, form, 
p, 
blockquote,
th, td {
  margin: 0;
  padding: 0;
  direction: ltr; 
}

em, i {
  font-style: italic;
  line-height: inherit; 
}

strong, b {
  font-weight: bold;
  line-height: inherit; 
}

small {
  font-size: 60%;
  line-height: inherit; 
}

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: bold;
  color: #7f0a0c; 
}

abbr,
acronym {
  text-transform: uppercase;
  font-size: 90%;
  color: #222222;
  cursor: help; 
}

p {
  margin: 3px 0 10px;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

/* LINKS 
----------------------------------------------------------------------*/
a, 
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  /* line-height: inherit; */
}

a {
  color: inherit;
}

a:hover,
a:active {
  color: inherit;
} 

/* BUTTONS 
----------------------------------------------------------------------*/
button, 
.button {
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  text-align: center;
  border: none;
  font-size: 0.75em !important;
  font-weight: normal;
  line-height: 0.875em;
  color: #ffffff;
  background-color: #e93d2f;
  padding: 6px 14px !important;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-appearance: textearea;
  -moz-appearance: textarea;
  -webkit-transition: background-color 300ms ease-out;
  -moz-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out;
}

button:hover, button:focus, 
.button:hover, .button:focus {
  border: none;
}

button.disabled, button[disabled], 
.button.disabled, .button[disabled] {
  cursor: default;
  -webkit-box-shadow: none;
  box-shadow: none; 
  background-color: #545454;
  color: #AFAFAF;
}

/* FORM ElEMENTS
----------------------------------------------------------------------*/



/* -------------------------------------------------------------------------------------------------
    SECTION: UTILITY CLASSES 
---------------------------------------------------------------------------------------------------- */
.no-mt {
  margin-top: 0;
}

/*  Display property 
----------------------------------------------------------------------*/
.block { 
  display: block; 
}

.inline-block { 
    *display: inline;
    zoom: 1;
  display: inline-block; 
  vertical-align: middle;
}

.inline { 
    *display: inline;
    zoom: 1;
  display: inline; 
}

.hidden {
  display: none !important;
}

.invisible {
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  visibility: hidden;
}

/* Orientation targeting */
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important; 
  }

  .hide-for-landscape,
  .show-for-portrait {
    display: none !important; 
  }

/* Touch-enabled device targeting */
  .show-for-touch {
    display: none !important; 
  }

  .hide-for-touch {
    display: inherit !important; 
  }

  .show-for-desktop,
  .show-for-mq3,
  .show-for-mq2,
  .show-for-mq1 {
    display: none !important;
  }


/* Floating elements 
----------------------------------------------------------------------*/
.left { 
  float: left; 
}

.right { 
  float: right !important; 
}

.none { 
  float: none; 
}

.text-center {
  text-align: center; 
}

.fixed {
  position: fixed;
  /* width: ;
  left: ;
  top: ;
  z-index: ; */
}


/* Commonly used margins & paddings 
----------------------------------------------------------------------*/




/* -------------------------------------------------------------------------------------------------
    SECTION: GRID SYSTEM
---------------------------------------------------------------------------------------------------- */
.row {
  width: 100%;
  margin: 0;
  /*max-width: 62.5em;*/
}

  .row:before, 
  .row:after,
  .row .row:before, 
  .row .row:after {
    content: " ";
    display: table; 
  }

  .row:after,
  .row .row:after,
  .clear:before {
    content: '\0020';
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
  }

  .row:after {
    clear: both;
  }



/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------*/
.alpha {
  padding-left: 0 !important;
}

.omega {
  padding-right: 0 !important;
}

.noPaddings {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.with-paddings {
  padding-left: 0.625em;
  padding-right: 0.625em;
}

.pad-left {
  padding-left: 0.625em;
}

.pad-right {
  padding-right: 0.625em;
}

/* Clearing Styles
-----------------------------------------------------------------------*/
.clear {
  clear: both;
  display: block;
}

.clear:before,
.clear:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clear:after {
  clear: both;
}


/* Containers
-----------------------------------------------------------------------*/
*, *:before, *:after {
  box-sizing: inherit;
    -moz-box-sizing: inherit;
    -webkit-box-sizing: inherit;
}

#fortune_container {
  max-width: 1022px;
  /*border: 1px solid #E3E3E3;*/
  /*background-color: #ffffff;*/
  margin: 0 auto;
  padding: 80px 0 0;
  position: relative;
  z-index: 100;
}

.wrapper {
  max-width: 1022px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
    zoom: 1;
}

.main_section, 
.secondary_section,
.white_wrapper,
#homepage,
#lists_main, 
#gallery_main,
#interview_wrapper, 
#interviews_wrapper,
#conferences_wrapper {
  background-color: #ffffff;
}

.oldie .wrapper {
  width: 1022px;
}

main {
  padding: 25px 0 80px;
}

main#homepage {
  padding-top: 0;
  margin-top: -3px;
}

.sidebar {
  padding-top: 25px;
}

#gallery_main .sidebar {
  padding-top: 20px;
}

.span1, .span2, .span3, .span4,
.span5, .span6, .span7, .span8,
.span9, .span10, .span11, .span12 {
  position: relative;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
  float: left;
}

.span1 { width: 8.333333%; }
.span2 { width: 16.66667%; }
.span3 { width: 25%; }
.span4 { width: 33.333333%; }
.span5 { width: 41.66667%; }
.span6 { width: 50%; }
.span7 { width: 58.33333%; }
.span8 { width: 66.666677%; }
.span9 { width: 75%; }
.span10 { width: 83.333333%; }
.span11 { width: 91.66667%; }
.span12 { width: 100%; }

.fixed.span1 { width: 5.3125em; }
.fixed.span2 { width: 10.625em; }
.fixed.span3 { width: 15.9375em; }
.fixed.span4 { width: 21.25em; }
.fixed.span5 { width: 26.5625em; }
.fixed.span6 { width: 31.875em; }
.fixed.span7 { width: 37.1875em; }
.fixed.span8 { width: 42.5em; }
.fixed.span9 { width: 47.8125em; }
.fixed.span10 { width: 53.125em; }
.fixed.span11 { width: 58.4375em; }
.fixed.span12 { width: 63.75em; }

.push3 { left: 25%; }

.leftColumn {
  margin-left: 0;
  margin-right: -100%;
}

.middleColumn {
  margin-left: 33.333333%;
  margin-right: -100%;
}

.rightColumn {
  margin-left: 66.666677%;
  margin-right: -100%;
}




/* -------------------------------------------------------------------------------------------------
  SITE STYLES
---------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------------
  SECTION: GLOBAL HEADER
---------------------------------------------------------------------------------------------------- */
/*NETWORK*/
#network_elements {
  padding: 6px 7px;
  height: 40px;
  background-color: #efefef;
  max-width: 1020px;
  margin: auto;
  text-align: center;
}

#network_elements .icon,
#network_elements span {
  display: inline-block;
  vertical-align: middle;
}

#network_elements .icon {
  margin-top: -2px;
}

#network_elements .icon-instyle-logo {
  margin-top: -1px;
}

#network_elements span {
  line-height: 17px;
}

#network_elements li {
  margin-right: 20px;
  color: #000000;
  font-size: 14px; 
  padding: 4px 7px;
  border-radius: 14px;
}

#network_elements span {
  font-size: 11px;
}

#network_elements li.current, 
#network_elements li:hover {
  background-color: #ffffff; 
}

@media screen and (max-width: 767px) {
  #network_elements li {
    margin-right: 6px; 
  }

  #network_elements li:first-child {
    font-size: 11px; 
  }

  #network_elements span {
    display: none;
  }
}






#navigation_row,
#sidebar_row {
  background-color: #111113;
  position: fixed;
  /*top: 40px;*/
  top: 0;
  z-index: 1000;
  max-width: 1022px;
}

#navigation_row {
  padding-top: 15px;
  padding-bottom: 15px;
}

#fortune_header .fortune_logo {
  margin-left: 60px;
}

/* Homepage Quick LInks Row */

#header_links_row {
  margin-bottom: 25px;
  background-color: #f9f9f9;
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}

.quick_links {
  font-size: 0.8125em;
  float: right;
  padding-top: 13px;
  color: #939393;
}

.quick_links .label {
  color: #161616;
}

.quick_links li {
  margin: 0 5px;
}

.search_form {
  width: 280px;
  border: 1px solid #e6e6e6;
  border-left-width: 0;
  border-right-width: 0; 
  padding: 8px 8px 4px 15px;
  position: relative;
}

.search_form input {
  height: 28px;
  display: inline-block;
    *display: inline;
    zoom: 1;
  width: 212px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 13px;
  line-height: 1em;
  box-shadow: none;
  margin: 0;
}

.search_form input[type="text"] {
  font-style: italic;
  color: #7a7a7a;
}

.search_form input[type="submit"] {
  width: 35px;
  position: relative;
  z-index: 2;
  color: transparent;
  cursor: pointer;
}

        /* MQ 1+2
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 47.9375em) {
          #fortune_header .fortune_logo {
            width: 105px;
            padding-top: 2px;
          }
          
          /*#navigation_row {*/
            /*top: 0 !important;*/
          /*}*/

          /*#header_links_row {
            margin-top: -32px;
          }*/
        }

        /* MQ
        ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 56.255em) {
            #header_links_row .quick_links {
              clear: both;
              width: 100%
            }
          }


/* -------------------------------------------------------------------------------------------------
  SECTION: GLOBAL FOOTER
---------------------------------------------------------------------------------------------------- */
#fortune_footer {
  background-color: #111113;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  /*margin-top: 40px;*/
}

#network_elements {
  margin-top: 40px;
}

#fortune_footer,
#fortune_footer a {
  color: #ffffff;
}

#fortune_footer ul {
  margin: 0;
}

.footer_list li a {
  display: block;
  padding: 3px 0;
  margin: 2px 0;
  font-size: 0.75em;
}

.footer_list .label {
  font-size: 0.9375em;
}

.magazine-banner {
  border-left: 1px solid #6d6d6e;
}

.magazine-banner p {
  font-size: 0.75em;      
}

#copyright {
  font-size: 0.6875em;
  margin-top: 1.25em;
  color: #777777;
}

#copyright p {
  margin-bottom: 0;
}

          /* MQ  and (min-width: 48em) 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 64.8125em) {
            #fortune_footer .fortune_logo.span4.fixed  {
              width: 100%;
              margin-bottom: 30px;
            }

            .magazine-banner.span2.fixed {
              width: 33.333%;
              border: none;
            }

            .magazine-banner img,
            .magazine-banner p {
              padding-left: 20px;
            }

            .magazine-banner.span2.fixed:before {
              width: 1px;
              height: 100%;
              position: absolute;top: 0;
              bottom: 0;
              left: 0.625em;
              background-color: #6d6d6e;
              display: block;
              content: "";
            }

            .footer_list li a {
              margin: 7px 0;
            }
          }

          /* MQ  and (min-width: 48em) 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 50em) {
            #fortune_footer .span2.fixed.footer_list {
              width: 8em;
            }
          }

          /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 39.9375em) {
            .magazine-banner.span2.fixed {
              width: 100%;
              padding-bottom: 20px;
              margin-bottom: 20px;
            }

            .magazine-banner p {
              display: inline-block;
                *display: inline;
                zoom: 1;
              vertical-align: bottom;
              width: 60%;
              padding-left: 25px;
            }

            .magazine-banner img {
              padding-left: 0;
            }

            .magazine-banner.span2.fixed:before {
              left: 140px;
              height: 90%;
            }
          }

                    /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 22.5em) {
            .magazine-banner.span2.fixed:before { 
              display: none;
            }

            .magazine-banner p {
              width: 100%;
              font-size: 0.625em;
              padding: 3px 0 0;
            }

            #fortune_footer .span2.fixed.footer_list {
              width: 100%;
              margin-bottom: 20px;
            }

            .footer_list .label {
              display: block;
              padding-top: 20px;
              border-top: 1px solid #6d6d6e;
              width: 100%;
            }
          }



/* -------------------------------------------------------------------------------------------------
  SECTION: MAIN NAVIGATION
---------------------------------------------------------------------------------------------------- */
#fortune_nav {
  visibility: hidden;
  display: none;
  /*height: 0;*/
  width: 0;
  z-index: -1;
  background-color: #111113;
  /*overflow: auto;*/
}

#fortune_nav li a {
  display: block;
  width: 100%;
  margin: 4px 0;
  color: #ffffff;
  font-family: 'Ubuntu Condensed',sans-serif;
  font-size: 1em;
  text-align: left;
}

#fortune_nav > ul > li {
  border-bottom: 1px solid #777777;
  padding: 4px 25px 15px;
  margin-bottom: 15px;
}

#fortune_nav > ul {
  border-top: 1px solid #777777;
  padding-top: 25px;
  display: block;
  height: 100%;
  overflow: auto;
}

#fortune_nav.opened {
  display: block;
  width: 260px;
  /*height: 100%;*/
  visibility: visible;
  position: fixed;
  /*top: 0;*/
  top: 40px;
  bottom: 0;
  padding-top: 76px;

  z-index: 900;
}

#fortune_nav ul.sub-menu li a {
  font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
  font-size: 13px;
}

button#open_nav,
button#close_nav {
  /*go live*/
  
  /*width: 39px;*/
  width: 43px;
  color: #ffffff;
  /*font-size: 0px !important;*/
  font-size: 9px !important;
  text-align: left;
  /*end go live*/

  height: 35px;
  padding: 0!important;
  position: absolute;
  left: 25px;
  top: 13px;
  background-color: #111113;
} 

button#open_nav {
  z-index: 2;
}

button#close_nav {
  z-index: 1;
} 


        /* MQ 1+2
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 47.9375em) {
          #navigation_row {
            padding-top: 0.625em;
            padding-bottom: 0.625em;
          }

          button#open_nav,
          button#close_nav {
            /*go live*/
            /*width: 30px;*/
            width: 34px;
            /*ned go live*/
            left: 10px;
            top: 9px;
          } 

          #fortune_header .fortune_logo {
            margin-left: 60px;
          }

          #fortune_container {
            padding-top: 50px;
          }

          #fortune_nav > ul > li {
            padding: 4px 13px 15px; 
          }
        }


        /* MQ 1: SMALL
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 29.9375em) {
          #navigation_row {
            width: 100%;
          }
        }



/* -------------------------------------------------------------------------------------------------
    SIDEBAR
---------------------------------------------------------------------------------------------------- */
.sidebar_inner {
  background-color: #f9f9f9;
  padding: 5px 0;
}

.video-thumb .thumb {
  position: relative;
}

.video-thumb .thumb:before,
.video-thumb .thumb:after {
  content: "";
  display: block;
  position: absolute;
}

.video-thumb .thumb:before {
  z-index: 3;
  background-color: transparent;
  border: 3px solid #ffffff;
  width: 35px;
  height: 35px;
  top: 30%;
  left: 35%;
}

.video-thumb .thumb:after {
  z-index: 4;
  height: 0;
  width: 0;
  border-left: 8px solid #ffffff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  left: 46%;
  top: 40%;
}

.sidebar_post_with_thumb .thumb,
.sidebar_post_with_thumb .text {
  width: 50%;
  float: left;
}

.sidebar_post_with_thumb .text {
  padding-left: 0.9375em;
}

.sidebar_post_set li {
  padding: 1.5625em 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar_post_set li.sidebar_post_simple {
  padding: 1.125em 0;
}

.sidebar_post_set li:last-child {
  border: none;
  padding-bottom: 0.3125em;
}

.sidebar_post_set li:first-child {
  padding-top: 0.3125em;
}

.sidebar_post_simple .article-title {
  margin-bottom: 0 !important;
  margin-top: 0.5em !important;
}

#sidebar_posts .span12 {
  padding-left: 0.9375em;
  padding-right: 0.9375em; 
}

#sidebar_menu {
  margin-top: -10px;
}

#sidebar_menu ul li a {
  display: block;
  padding: 2px 1em; 
  border-left: 1px solid #e5e5e5;
}

#sidebar_menu ul li {
  margin: 8px 0;
}

#sidebar_menu ul li:nth-child(3n+1) a {
  border: none;
  clear: left;
}

#sidebar_menu ul {
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.sidebar .search,
.sidebar_inner .search {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  width: 100%;
}

#sidebar_posts .span12.ad-box {
  padding-left: 0.3125em ;
  padding-right: 0.3125em;
}

.sidebar .search_form,
.sidebar_inner .search_form  {
  width: 100%;
  float: left;
  padding-left: 0.625em;
}

.sidebar .search_form input[type="text"] {
  float: left;
  width: 75%;
}

.sidebar .search_form input[type="submit"] {
  float: right;
}

button#open_sidebar,
button#close_sidebar {
  width: 100%;
  height: 100%;
  padding: 0!important;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 0;
  background-color: #111113;
  font-size: 14px !important;
  line-height: 14px !important;

  visibility: hidden;
} 

button#open_sidebar {
  z-index: 2;
}

button#close_sidebar {
  z-index: 1;
}

.single-company-list button#open_sidebar,
.single-company-list button#close_sidebar,
.single-employee-list button#open_sidebar,
.single-employee-list button#close_sidebar {
  visibility: visible;
}

#sidebar_row {
  right: 0;
  height: 50px;
  width: 50px;
  padding: 0;
  z-index: 1500;
}

#lists_main .sidebar_inner {
  width: 30%;
  max-width: 320px;
  position: fixed;
}


          /* MQ 1+2 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 47.9375em) {
            aside .sidebar,
            aside.sidebar {
              /*width: 0;*/
              width: 100%;
              /*height: 0;*/
              height: auto;
              /*overflow: auto;*/
              /*position: fixed;*/
              position: static;

              /*left: 0;*/
              /*right: 0;*/
              /*top: 50px;*/
              padding: 0;
              z-index: 100;
              /*visibility: hidden;*/
              visibility: visible;

              background-color: #f9f9f9;
            }

            aside .sidebar.opened,
            aside.sidebar.opened {
              visibility: visible;
              /*height: 93%;*/
              height: auto;
              width: 100%;
            }

            #lists_main aside .sidebar,
            #lists_main aside.sidebar {
              width: 0;
              height: 0;
              overflow: auto;
              position: fixed;
              left: 0;
              right: 0;
              top: 50px;
              padding: 0;
              z-index: 100;
              visibility: hidden;
              background-color: #f9f9f9;
            }

            #lists_main aside .sidebar.opened,
            #lists_main aside.sidebar.opened {
              visibility: visible;
              height: 93%;
              width: 100%;
            }

            #lists_main .sidebar_inner {
              position: static;
              width: 100%;
              max-width: 100%;
            }

            /*aside .sidebar .ad-row,*/
            /*aside.sidebar .ad-row {*/
              /*display: none !important;*/
            /*}*/
          }


          /* MQ 3 
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 63.75em) {
            #sidebar_menu ul li a {
              padding: 2px 0.35em;
            }

            .sidebar_post_set li {
              padding: 1em 0;
            }

            #sidebar_menu ul {
              width: 100%;
            }

            #sidebar_menu ul li {
              float: left;
            }

            #sidebar_menu ul li:nth-child(3n+1) {
              clear: left;
            }
          }

                /* MQ 
                ---------------------------------------------------------------------*/
                @media only screen and (min-width: 56.25em) and (max-width: 63.75em) {
                  #sidebar_menu ul li a {
                    padding: 2px 0.875em;
                  }
                }





/* -------------------------------------------------------------------------------------------------
    SECTION: BASE TYPOGRAPHY STYLES
---------------------------------------------------------------------------------------------------- */
article {
  text-align: left;
}

time {
  font-size: 0.75em;
  color: #8e8e8e;
  display: block;
}

#searchResults time {
  font-size: 1em;
}

.lead,
.video-title {
  font-family: Georgia, serif;
  font-size: 0.8125em;
  line-height: 1.3846em;
  margin: 6px 0;
}

.lead {
  font-size: 0.9375em;
}

.article-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  line-height: 1.1em;
  margin-bottom: 0.5em;
  word-wrap: break-word;
}

#newsList .article-title {
  font-size: 1.125em;
}

.theStory .article-title {
  font-size: 1.5em;
}

#lists_main .article-title {
  font-size: 1.875em;
}

.sidebar .article-title {
  font-size: 0.9375em;
  line-height: 1.2em;
}

.sidebar_post_simple .article-title {
  font-size: 1em;
  line-height: 1.25em;
}

.list-title {
  color: #ffffff;
  font-size: 1.125em;
  line-height: 1.222em;
}

.article-content,
article.theStory .lead {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

.article-content {
  color: #3a3a3a;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  padding-left: 15px;
  list-style-position: outside;
}

article.theStory .lead {
  font-weight: bold;
  margin: 10px 0;
}

.module-title,
.label,
.category-title,
.company-name,
.blogger-name,
label,
.label,
.click_for_more,
#taxonomy_pagination,
.image-credits,
.tag,
#sidebar_menu li a,
#searchResults time,
.employee .property,
#lists_main .article-title,
.jobs_table th  {
  font-family: 'Ubuntu Condensed', sans-serif;
  text-transform: uppercase;
}

.article-tags .tag {
  text-transform: none;
}

.employee .property {
  text-transform: none;
}

.module-title,
h1.category-title {
  font-size: 1.4375em;
  line-height: 1em;
  text-align: left;
  display: block;
  padding-bottom: 0.45em;
  margin-bottom: 0.45em;
  color: inherit;
}

#search_main h1.category-title {
  font-size: 2.5em;
  padding-bottom: 0;
  margin-right: 10px;
}

#newsList .category-title {
  font-size: 1em;
}

#search_main h5.module-title {
  font-size: 1.125em;
}

.module-subtitle {
  font-size: 1.125em;
  line-height: 1.3888em;
}

.category-title,
.company-name,
.blogger-name,
.jobs_table th {
  font-size: 1.0625em;
  line-height: 1.4705em;
  color: #e63f24;
}

.company-name {
  font-size: 1.125em;
}

#searchResults .category-title,
#searchResults .company-rank.tag {
  font-size: 0.8125em;
  line-height: 1em;
}

.sidebar .category-title,
.sidebar .company-name,
.sidebar .blogger-name,
#sidebar_menu li a {
  font-size: 1em;
}

.click_for_more {
  font-size: 0.875em;
  line-height: 1.28em;
  color: #e63f24;
  display: block;
}

.company-rank {
  font-size: 0.6875em;
  line-height: 1.8em;
  color: #e93d2f;
  /*color: #ffffff;
  background-color: #000000;
  padding: 0 3px;*/
  margin-right: 6px;
  text-transform: uppercase;
}

.employee-rank {
  font: 0.65em/1em 'Ubuntu Condensed',sans-serif;
  color: #ffffff;
  background-color: #000000;
  padding: 2px 8px;
  position: absolute;
  top: 17px;
  left: 0;
}

.content {
  text-align: left;
}

.image-credits {
  font-style: italic;
  margin-top: -15px;
}

.tag {
  color: #929292;
}

.wrapper .author {
  font-family: Georgia, serif;
  font-size: 0.75em;
  line-height: 2em;
}

.article-content a,
.jobs_table th {
  color: #e63f24;
  font-weight: normal;
}

.article-content a b,
.article-content a strong {
  font-weight: normal;
}

#sidebar_menu ul {
  text-align: justify;
}

#sidebar_menu ul li a {
  color: #939393;
}

#sidebar_menu ul li a.selected {
  color: #e63f24;
}

.list_item_title {
  /*font: normal 3.5em/1.2em 'Ubuntu Condensed',sans-serif;*/
  font: 2.75em/1em Georgia, serif;
  padding: 10px 0;
  position: relative;
}

.list_item_title h4 {
  /*padding-left: 1.6em;*/
  vertical-align: top;
}

#employee-list-menu .content a {
  font: normal 1.125em/1em 'Ubuntu Condensed',sans-serif;
}

#employee-list-menu .list_banner {
  margin-left: -10px;
  float: left;
}

#employee-list-menu .content.active {
  color: #e63f24;
}

.employee .property {
  font-size: 1.25em;
  line-height: 1em;
}    

.rslides_tabs li {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 18px;
  color: #252525;
}     

.slideshow .article-title,
.featured_slideshow_story .article-title {
  font-size: 1.4375em;
}

table {
  line-height: 2em;
  border-collapse: collapse;
  border-spacing: 0;
  font-weight: normal;
  line-height: 2em;
  width: 100%;
  max-width: 100%;
}

table th,
table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 5px 30px 5px 0;
  line-height: 2em;
}

table th {
  font-weight: normal;
  font-size: 0.75em;
  color: #8b8b8b;
  text-align: right;
}

table th.table-title,
table tbody th {
  font-size: 1.5em;
  font-family: 'Ubuntu Condensed', sans-serif;
  color: #000000;
  text-align: left;
}

table tbody th {
  font-size: 1em;
}

table td {
  text-align: right;
}

table tr:last-child th,
table tr:last-child td {
  border: none;
}       

          
        /* MQ 
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 56.255em) {
          .article-title {
            font-size: 1.125em;
          }

          .slideshow .article-title,
          .featured_slideshow_story .article-title {
            font-size: 1.3125em;
          }

          .featured_slideshow_story img {
            width: 100%;
          }

          .lead,
          .video-title {
            font-size: 0.875em;
            line-height: 1.2857em;
          }

          .list-title {
            font-size: 1em;
          }

          .category-title, 
          .blogger-name {
            font-size: 1em;
          }

          .company-name {
            font-size: 1.0625em;
          }

          #employee-list-menu .list_banner {
            display: noe;
          }
        }
              

        /* MQ 
        ---------------------------------------------------------------------*/
        @media only screen and (min-width: 48em) and (max-width: 56.255em) {
          .sidebar .category-title, 
          .sidebar .company-name, 
          .sidebar .blogger-name {
            font-size: 0.875em;
          }

          .sidebar .article-title {
            font-size: 0.75em;
          }

          #lists_main .article-title {
            font-size: 1.75em;
            margin-bottom: 0 !important;
          }
        }


        /* MQ 2  
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 47.9375em) {
          .article-title {
            font-size: 1em;
          }

          #lists_main .article-title {
            font-size: 1.25em;
            right: 70px;
            top: 3px;
            text-align: right;
            margin-bottom: 0 !important;
          }

          .article-content,
          article.theStory .lead {
            font-size: 0.8125em;
            line-height: 1.4285em;
            text-align: justify;
          }

          article.theStory .lead {
            font-size: 0.875em;
            line-height: 1.3571em;
            margin-bottom: 25px;
          }

          .list_item_title {
            font-size: 2em;
            line-height: 1.1em;
          }

          .module-title, 
          h1.category-title,
          .theStory .article-title {
            margin-bottom: 0;
          }

          .article-content p {
            margin-bottom: 17px;
          }

          .theStory .article-title {
            font-size: 1.25em;
          }

          main .category-title,
          #newsList .category-title {
            font-size: 0.875em;
          }

          time,
          .wrapper .author {
            font-size: 0.6875em;
            line-height: 1.5em;
          } 

          #newsList .article-title,
          #newsArticles .article-title {
            font-size: 0.875em;
          }

        }


        /* MQ mobile 
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 40em) {
          .slideshow .article-title,
          .featured_slideshow_story .article-title {
            font-size: 1.125em;
          }
        }

        /* MQ 1 
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 29.9375em) {
          #lists_main .article-title {
            font-size: 1.25em;
          }

          .list_item_title {
            font-size: 1.625em;
            line-height: 1.25em;
          }

          table th,
          table td {
            line-height: 1.25em;
            padding: 5px 7px 5px 0;
          }

          table thead th {
            font-size: 0.6875em;
          }

          table tbody th {
            font-size: 0.8125em;
          }

          table tbody td {
            font-size: 0.9375em;
          }

          table th.table-title {
            font-size: 0.9375em;
          }
        }



/* -------------------------------------------------------------------------------------------------
    SECTION: MODULES
---------------------------------------------------------------------------------------------------- */
.ad-row,
.module {
  margin: 10px 0;
  float: left;
}

.module article {
  margin-bottom: 20px;
}

.module article:last-child {
  margin-bottom: -0;
}

#homepage section,
section.module.row {
  position: relative;
  padding-top: 0.625em;
  padding-bottom: 0.625em;
}

#homepage section:before,
section.module.row:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e5e5;
}

section#above_the_fold:before,
section.above_the_fold.module.row:before {
  display: none;
}

.module.vla img {
  margin-bottom: 15px;
}

#category_main #above_the_fold.module.row {
  padding-top: 0;
  margin-top: 0;
}

#category_main #above_the_fold.module.row .article-title {
  margin-bottom: 20px!important;
}

#category_main #listsArticles {
  padding-top: 30px;
}

#above_the_fold .leftColumn,
#above_the_fold .rightColumn {
  margin-left: 0;
  margin-right: 0;
}

          /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen (max-width: 47.9375em) {
            #category_main #above_the_fold.module.row .article-title {
              margin-bottom: 5px!important;
            }
          }


  /* "Video Gallery" Module (link list of videos)
  -----------------------------------------------------------------------------*/
  #video_gallery_module h2 {
    display: block;
    border-bottom: 1px solid #e5e5e5;
  }

  #video_gallery_module article {
    margin-bottom: 10px;
  }

          /* MQ 3 (768-1020) 1020 = 1005 + 15px scrollbar
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 63.75em) {
            #video_gallery_module {
              width: 100%;
            }

            #video_gallery_module article {
              float: left;
              width: 33.333333%;
              padding: 0 0.3125em;
            }

            #video_gallery_module article:nth-child(2) {
              padding: 0 0.9375em 0 0;
            }

            #video_gallery_module article:last-child {
              padding: 0 0 0 0.9375em;
            }
          }

  /* Editors Picks
  -----------------------------------------------------------------------------*/

  /*
  #editors_picks .lead:after {
    position: relative;
    content: "";
    display: inline-block;
      *display: inline;
      zoom: 1;
    border-left: 5px solid #e93d2f;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    width: 0;
    height: 0;
    vertical-align: baseline;
  }
  */

  #editors_picks article {
    padding: 20px 30px 20px 10px;
    position: relative;
    clear: both;
  }

  #editors_picks article:after {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-family: "fontello";
    font-size: 14px;
    content: '\e805';
    text-align: center;
  }

  #editors_picks article:nth-child(2n+2) {
    border-top: 1px solid #e93d2f;
    margin-top: 20px;
    padding-bottom: 0;
  }

  #editors_picks article:nth-child(2n+2):after {
    background-color: #e93d2f;
    color: #ffffff;
  }

  #editors_picks article:nth-child(2n+1) {
    background-color: #e5e5e5;
  }

  #editors_picks article:nth-child(2n+1):after {
    background-color: #ffffff;
    color: #e93d2f;
  }

  #editors_picks article:nth-child(2n+1):hover:after,
  #editors_picks article:nth-child(2n+2):hover:after {
    background-color: #000000;
    color: #ffffff;
  }

  #editors_picks article:nth-child(2) {
    margin-top: 0;
  }


          /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 40em) {
            #editors_picks {
              margin-top: 20px;
            }

            #editors_picks .span12.show-for-mq3 {
              display: block!important;
            }

            #editors_picks .module-title {
              border-bottom: 1px solid #e5e5e5;
            }
          }

  

  /* Slideshow Module
  -----------------------------------------------------------------------------*/
  .slideshow-nav {
    margin: 15px 0;
  }

  .rslides {
    position: relative;
    float: left;
    width: 100%;
  }

  .rslides li {
    width: 100%;
  }

  .rslides_nav,
  .rslides_tabs li {
    display: inline-block;
      *display: inline;
      zoom: 1;
    vertical-align: middle;
  }

  .rslides_nav {
    position: relative;
    width: 25px;
    height: 27px;
    color: #ffffff !important;
    visibility: hidden;
  }

  .rslides_nav.prev {
    margin-right: 24px;
  }

  .icon-left:before,
  .icon-right:before  {
    font-size: 20px !important;
    color: #252525;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    visibility: visible;
  }

  .icon-left:after {
    position: absolute;
    right: -18px;
    top: 2px;
    visibility: visible;
    content: "/";
    font-size: 25px;
    color: #252525;
    display: block;
  }

  /* Slideshow Stories Module
  -----------------------------------------------------------------------------*/
  .featured_slideshow_story a {
    display: block;
    position: relative;
  }

  .featured_slideshow_story a:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 32px;
    background: url(../img/redesign/list_icon.png) no-repeat scroll center center transparent;
    background-size: auto 100%;
  }

  .featured_slideshow_story .story_content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    background-color: rgba(0,0,0,0.55);
    color: #ffffff;
    padding: 16px 20px 20px;
    text-align: left;
  }

  .featured_slideshow_story .story_content time {
    color: #fa4031;
  }

  .rest_slideshow_stories {
    margin-top: 34px;
  }

  .secondary_section .rest_slideshow_stories {
    margin-top: 0;
  }

  .rest_slideshow_stories .thumb {
    position: relative;
  }

  .rest_slideshow_stories .thumb:after {
    position: absolute;
    z-index: 2;
    content: "";
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: url(../img/redesign/arrow_right.png) no-repeat scroll center center #e93d2f;
    border-radius: 50%;
      -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
          -ms-border-radius: 50%;
            -o-border-radius: 50%;
    background-size: auto 14px;
  }

  .rest_slideshow_stories .thumb:hover:after {
    background-color: #000000; 
  }

  .rest_slideshow_stories article:nth-child(2n+1) {
    padding-left: 0;
    clear: left;
  }

  .rest_slideshow_stories article:nth-child(2n+2) {
    padding-right: 0;
  }

/*.employee-list-main .icon-left:after {
  display: none;
}

.employee-list-main .icon-left:before,
.employee-list-main .icon-right:before {
  left: 0;
  top: 2px;
}

.employee-list-main button {
  background-color: transparent;
  color: #000000;
  float: left;
  width: auto;
  font-size: 23px !important;
  font-family: 'Ubuntu Condensed',sans-serif;
  position: relative;
  padding: 0 30px !important;
}

.employee-list-main button.next {
  float: right;
}

.employee-list-main button,
.employee-list-main .icon-left:before,
.employee-list-main .icon-right:before {
  display: inline-block;
    *display: inline;
    zoom: 1;
  vertical-align: middle;
}

.employee-list-main .icon-right:before {
  right: 0;
  left: auto;
} 

.employee-list-main .icon-left:before,
.employee-list-main .icon-right:before {
  left: 0;
  top: 2px;
}

.employee-list-main button {
  background-color: transparent;
  color: #000000;
  float: left;
  width: auto;
  font-size: 23px !important;
  font-family: 'Ubuntu Condensed',sans-serif;
  position: relative;
  padding: 0 30px !important;
}

.employee-list-main button.next {
  float: right;
}

.employee-list-main button,
.employee-list-main .icon-left:before,
.employee-list-main .icon-right:before {
  display: inline-block;
    *display: inline;
    zoom: 1;
  vertical-align: middle;
}

.employee-list-main .icon-right:before {
  right: 0;
  left: auto;
}*/


/*.company-list-main*/ .above_the_fold button {
  background-color: transparent;
  color: #e93d2f;
  font-family: 'Ubuntu Condensed',sans-serif;
  font-size: 20px !important;
  padding: 0 !important;
}

/*.company-list-main */.paginated button.previous:before,
/*.company-list-main */.paginated button.next:after {
  content: "";
  display: block;
  position: absolute;
  border-top: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  width: 0;
  height: 0;
  top: 0;
  z-index: 1;
}

/*.company-list-main */.paginated button.previous:before {
  border-right: 15px solid #000000;
  left: -10px;
}

/*.company-list-main */.paginated button.next:after {
  border-left: 15px solid #000000;
  right: -10px;
}

/*.company-list-main */.paginated button {
  background-color: #000000;
  color: #ffffff;
  width: auto;
  font-size: 15px !important;
  font-family: 'Ubuntu Condensed',sans-serif;
  position: relative;
  display: inline-block;
    *display: inline;
    zoom: 1;
  vertical-align: middle;
  height: 30px;
  /*width: 40px;*/
  width: 120px;
  z-index: 2;
  padding: 0 2px!important;
}

/*.company-list-main */.paginated button.next {
  margin-right: 7px;
}

#hp_slideshow .slideshow_counter {
  padding: 10px 0; 
  margin: 30px 0 0;
  font-family: Georgia, serif;
  font-size: 16px;
}

#hp_slideshow .slideshow-nav {
  position: absolute;
  left: 6px;
  z-index: 100;
}

#hp_photoGallery .slideshow_counter {
  margin-top: 35px;
  font-family: Georgia, serif;
  font-size: 16px;
}

#hp_photoGallery .slideshow-nav {
  position: absolute;
  z-index: 100;
  right: 0;
  top: 50px;
}
           /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 35em) {
            .featured_slideshow_story .story_content {
              position: static;
              background-color: #e5e5e5;
              color: #000000;
              padding: 10px 10px 12px;
            }

            .featured_slideshow_story .story_content time {
              color: #8e8e8e;
            }  

            .featured_slideshow_story a:after {
              height: 22px;
            }

            .rest_slideshow_stories {
              margin-top: 10px;
            }

            .rest_slideshow_stories article {
              width: 50%;
            }
          }


          /* MQ  mobile
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 22.5625em) and (max-width: 40em) {
            #hp_slideshow .slideshow-nav,
            .slideshow_counter {
              float: right;
              clear: right;
            }

            #hp_slideshow .slide-image {
              max-width: 76%;
              float: left;
              max-height: 200px;
              overflow: hidden;
            }

            #hp_slideshow .slide-caption {
              clear: both;
              margin-top: 5px;
            }

            /*#hp_slideshow .slideshow_counter {
              padding-top: 30px;
            }*/

            #hp_slideshow .slideshow-nav {
              left: auto;
              right: 6px;
              top: 0!important;
            }
          }

          /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 30.0625em) and (max-width: 35em) {
            #hp_photoGallery .slideshow-nav {
              float: left!important;
              margin-top: -25px;
              top: 0!important;
              position: relative;
            }
          }

          /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 22.5625em) and (max-width: 30em) {
            #hp_photoGallery .slide-image {
              padding: 0.625em 0.35em;
              max-width: 70%;
            }

            /*.employee-list-main button {
              font-size: 17px !important;
            }

            .employee-list-main .icon-left:before,
            .employee-list-main .icon-right:before {
              top: -1px;
            }*/
          }

          /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 22.5em) {
            #hp_photoGallery .slide-image {
              padding: 0.625em 0.35em;
              max-width: 97%;
            }            

            #hp_photoGallery .slideshow-nav {
              float: left!important;
              position: relative;
              margin-top: -25px;
              top: 0!important
            }

            /*.employee-list-main button {
              font-size: 17px !important;
            }

            .employee-list-main .icon-left:before,
            .employee-list-main .icon-right:before {
              top: -1px;
            }*/

            #hp_slideshow .slideshow-nav {
              left: 0;
            }
          }


          /* MQ 3 
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 63.75em) {
            #hp_slideshow .lead {
              display: none;
            }

            #hp_photoGallery .slide-image.span8 {
              width: 64%;
            }
          }

              /* MQ 
              ---------------------------------------------------------------------*/
              @media only screen and (min-width: 48em) and (max-width: 56.255em) {
                #hp_slideshow .lead {
                  display: block;
                }

                .slideshow-nav {
                  margin: 10px 0;
                }
              }

          /* MQ  
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 47.9375em) {
            #hp_photoGallery .slide-caption {
              width: 100%;
            }
          }




  /* Fortune Lists' Articles (articles from category="Λίστες")
  -----------------------------------------------------------------------------*/
  #listsArticles .thumb,
  #listsArticles .text {
    width: 37.7%;
    float: left;
    padding: 0 0.625em 0.625em;
  }

  #listsArticles .thumb {
    width: 37.7%;
    padding-left: 0;
  }

  #listsArticles .text {
    width: 62.3%;
    padding-right: 0;
    float: right;
  }

  #fLists li {
    margin-bottom: 30px;
  }

  #fLists li:last-child {
    margin-bottom: 0;
  }

  #fLists .thumb {
    position: relative;
    z-index: 1;
    max-height: 175px;
    overflow: hidden;
  }

  #fLists .thumb img {
    max-height: 100%;
  }

  .list-title {
    display: block;
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 13px;
    right: 50px;
    z-index: 3;
  }

  #fLists .thumb:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(20,20,27);
    background-color: rgba(20,20,27,0.50);
      filter: alpha(opacity=50);
    z-index: 2;
  }

  #fLists .thumb:after {
    display: block;
    position: absolute;
    top: 13px;
    right: 13px;
    font-family: "fontello";
    font-size: 19px;
    line-height: 20px;
    color: #ffffff;
    z-index: 3;
  }

  #fLists .thumb:hover:after,
  #fLists .thumb:hover:before,
  #fLists .thumb:hover h3 {
    display: none;
  }
          
          /* MQ  mobile
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 40em) {
            #listsRow .leftColumn,
            #listsRow .rightColumn {
              width: 100%;
              margin-left: 0 !important;
              margin-right: 0 !important;
            }
          }

            /* MQ  mobile
            ---------------------------------------------------------------------*/
            @media only screen and (max-width: 30em) {
              #listsRow .lead,
              #listsArticles .lead  {
                display: none;
              }

              #listsArticles .text,
              #listsArticles .thumb,
              #listsRow #listsArticles .text,
              #listsRow #listsArticles .thumb {
                width: 50%;
              }
            }

          /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 30.0625em) and (max-width: 40em) {
            #listsArticles .text,
            #listsRow #listsArticles .text {
              width: 60%;
            }

            #listsArticles .thumb,
            #listsRow #listsArticles .thumb {
              width: 40%;
            }
          }


          /* MQ 3
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 63.75em) {
            #homepage #fLists {
              margin-top: 40px;
            }
            
            #listsArticles .text,
            #listsRow #listsArticles .text {
              padding-left: 0;
              width: 59%;
            }

            #listsArticles .thumb,
            #listsRow #listsArticles .thumb {
              width: 41%;
            }
          }

           /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 29.9375em) {
            #listsArticles .text,
            #listsArticles .thumb {
               
              }
          }




  /* Fortune Business Articles (articles from category="Επιχειρήσεις")
  -----------------------------------------------------------------------------*/
  .company-info {
    margin-bottom: 0.25em;
  }

  #businessArticles article {
    min-height: 170px;
  }

  #newsArticles article:nth-child(2n+1),
  #businessArticles article:nth-child(2n) {
    clear: left;
  }

          /* MQ 1+2+3
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 63.75em) {
            #businessRow .leftColumn {
              width: 100%;
            }

            #businessRow .rightColumn {
              width: 100%;
            }
          }

          /* MQ
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 30em) {
            #businessArticles article {
              min-height: 0;
            }
          }


  /* Must Read Articles 
  -----------------------------------------------------------------------------*/
          /* MQ mobile
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 30.0625em) and (max-width: 40em) {
            #mustReadArticles article {
              width: 100%;
            }

            #mustReadArticles article img,
            #mustReadArticles article h3 {
              float: left;
              width: 60%;
            }

            #mustReadArticles article img {
              width: 40%;
            }

            #mustReadArticles article h3 {
              padding-left: 10px;
            }
          }

          /* MQ mobile
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 30em) {
            #mustReadArticles article {
              width: 100%;
              margin-bottom: 0;
            }

            #mustReadArticles article img,
            #mustReadArticles article h3 {
              float: left;
              width: 50%;
            }

            #mustReadArticles article h3 {
              padding-left: 5px;
            }
          }

  /* News List Module
  -----------------------------------------------------------------------------*/
  #newsRow > .span12 {
    margin-top: 0.625em;
  }

  #newsList .content
  /*#blogsModule .content */{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
  }

  #newsArticles article {
    margin-bottom: 30px;
  }

  #newsList .content:last-child,
  /* #blogsModule .content:last-child */{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
              
          /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (min-width: 48em) and (max-width: 56.255em) {
            #newsArticles .lead.hidden {
              display: block !important;
            }

            #newsList .content {
              margin-bottom: 10px;
              padding-bottom: 10px;
            }
          }

          /* MQ 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 47.9375em) {
            #newsList .content {
              margin-bottom: 10px;
              padding-bottom: 10px;
            }

            #newsList.module {
              margin-top: -30px;
              padding-top: 10px;
              border-top: 1px solid #e5e5e5;
            }

            #newsArticles img {
              width: 100%;
            }
          }




  /* Blogs Module ("Απόψεις")
  -----------------------------------------------------------------------------*/
  #fortuneVoicesRow .widget {
  margin-top: 37px;
 }

 @media screen and (max-width:767px) {
  #fortuneVoicesRow .rightColumn { display: none; }
  #fortuneVoicesRow .leftColumn {width: 100%;}
 }

  #blogsModule ul,
  /*#blogsModule li,*/
  #blogsModule .thumb,
  #blogsModule .text {
    float: left;
    width: 100%;
  }
  

  #blogsModule ul {
    background: url(../img/strip.gif) repeat scroll top left #f3f3f3;
    width: 100%;
    padding: 0.625em 5px;
  }

  #blogsModule ul li {
    padding-top: 0.625em;
    padding-bottom: 0.625em;
  }

  /*#blogsModule ul li:nth-child(3n+1)*/
  #blogsModule ul li:nth-child(2n+1) {
    clear: left;
  }

  #blogsModule .thumb {
    float: left;
    width: 46%;
    padding-right: 0.625em;
  }

  #blogsModule .text {
    float: left;
    width: 54%;
  }

  
  #blogsModule ul {
    background: url(../img/strip.gif) repeat scroll top left #f3f3f3;
    padding: 0.625em;
  }

  #blogsModule .thumb {
    padding-right: 0.625em;
    width: 32.43%;
  }

  #blogsModule .text {
    width: 67%;
  }
  

  #blogsModule .blogger-name {
    font-size: 1em;
    line-height: 1em;
    margin-bottom: 4px;
  }

  #blogsModule .article-title {
    font-size: 0.9375em;
    line-height: 1.2em;
  }
            
    /* MQ 
    ---------------------------------------------------------------------*/
    @media only screen and (min-width: 30em) and (max-width: 56.255em) {
      #blogsModule .content {
        width: 50%;
        padding: 0.625em 0;
        margin-bottom: 0;
      }

      #blogsModule .thumb {
        width: 95px;
        height: 95px;
        overflow: hidden;
        padding: 0;
      }

      #blogsModule .text {
        /*width: 72%;*/
        width: 56%;
        padding-left: 0.625em;
      }

      #blogsModule ul li:nth-child(3n+1) {
        clear: none;
      }

      #blogsModule ul li:nth-child(2n+1) {
        clear: left;
      }

      /*#blogsModule ul li:nth-child(2n+3) {
        clear: left;
        border: none;
      }
      */
    }

/* -------------------------------------------------------------------------------------------------
    PAGINATION
---------------------------------------------------------------------------------------------------- 
#taxonomy_pagination,
.article-tags {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
}

#taxonomy_pagination:before {
  display: none;
}

#taxonomy_pagination a {
  font-size: 1.4375em;
}

.prevPage {
  float: left;
}

.nextPage {
  float: right;
}

/* -------------------------------------------------------------------------------------------------
    SECTION: TEMPLATES
---------------------------------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------------------------------
    TEMPLATE: HOMEPAGE
---------------------------------------------------------------------------------------------------- */
#homepage #above_the_fold .middleColumn,
.oldie #above_the_fold .middleColumn {
  margin-left: 25%;
}

#homepage section:before {
  left: 0.625em;  
  right: 0.625em;
}  

        /* MQ 3 and (min-width: 48em)
        ---------------------------------------------------------------------*/
        @media only screen  and (max-width: 63.75em) {
          /*
          #homepage #above_the_fold .leftColumn {
            width: 40%;
          }

          #homepage #above_the_fold .middleColumn {
            width: 60%;
          }

          #homepage #above_the_fold .rightColumn {
            width: 100%;
            clear: both;
          }
          */

          #homepage #above_the_fold .leftColumn,
          #homepage #above_the_fold .rightColumn {
            width: 50%;
          }

          /*
          #homepage #above_the_fold .leftColumn {
            margin-left: 0 !important;
            margin-right: 40% !important;
          }

          #homepage #above_the_fold .middleColumn {
            margin-left: 40% !important;
            margin-right: -100% !important;
          }

          #homepage #above_the_fold .middleColumn img {
            max-width: 90%;
          }
          */

          #homepage #above_the_fold .rightColumn .ad-box {
            margin: 20px 0;
          }
        }

            /* MQ and (min-width: 48em)
            ---------------------------------------------------------------------*/
            @media only screen and (max-width: 56.255em) {
              #above_the_fold .rightColumn div {
                display: none !important;
              }

              #above_the_fold .rightColumn .fixed_container,
              #above_the_fold .rightColumn .fixed_container div {
                position: static !important;
                display: block !important;
              }
              /*
              #homepage #above_the_fold .leftColumn,
              #homepage #above_the_fold .middleColumn {
                width: 50%;
              }

              #homepage #above_the_fold .leftColumn {
                margin-right: 50% !important;
              }

              #homepage #above_the_fold .middleColumn {
                margin-left: 50% !important;
              }

              #homepage #above_the_fold .middleColumn img {
                max-width: 100%;
              }
              */

              #homepage #above_the_fold .leftColumn,
              #homepage #above_the_fold .rightColumn {
                width: 100%;
                clear: both;
              }

              #todaysPhotoRow .rightColumn,
              #todaysPhotoRow .leftColumn {
                width: 100%;
              }

              #todaysPhoto .slide-image {
                float: left;
                width: 66.6667%;
              }

              #todaysPhoto .slide-caption,
              #todaysPhoto .click_for_more {
                float: right;
                width: 33.3333%;
                padding-left: 0.9375em;
              }

              #todaysPhoto .slide-caption .lead.hidden {
                display: block!important;
              }
            }



            /* MQ 1+2
            ---------------------------------------------------------------------*/
            @media only screen and (max-width: 47.9375em) {
              #newsRow .leftColumn,
              #newsRow .rightColumn {
                width: 100%;
                margin-right: 0 !important;
                margin-left: 0 !important;
              }
            }

            /* MQ mobile
            ---------------------------------------------------------------------*/
            @media only screen and  (max-width: 40em) {
              #homepage #above_the_fold .leftColumn,
              #homepage #above_the_fold .middleColumn {
                width: 100%;
                margin-right: 0 !important;
                margin-left: 0 !important;
              }
            }


            /* MQ 
            ---------------------------------------------------------------------*/
            @media only screen and (max-width: 34.9375em) {
              #todaysPhoto .slide-image,
              #todaysPhoto .slide-caption,
              #todaysPhoto .click_for_more {
                width: 100%;
                padding: 0;
              }
            }

/* -------------------------------------------------------------------------------------------------
    TEMPLATE: TAXONOMY
---------------------------------------------------------------------------------------------------- */
#category_main .secondary_section #listsArticles,
#tags_main .secondary_section #listsArticles,
.secondary_section #listsArticles {
  margin-top: 0;
  padding-top: 0;
}

.secondary_section #listsArticles:before {
  display: none;
}

.main_section.fixed_section main {
  padding-bottom: 0;
}


/* -------------------------------------------------------------------------------------------------
    POST TYPE: ARTICLE
---------------------------------------------------------------------------------------------------- */
.article-info {
  margin: 30px 0;
}

.article-info ul {
  display: inline-block; 
    *display: inline;
    zoom: 1;
  vertical-align: middle;
}

.tagList li {
  margin: 4px 30px 4px 0;
}

.tagList li:last-child,
.tagList li:last-child a {
  margin-right: 0;
  padding-right: 0;
}

  /* Social Sharing Buttons
  -----------------------------------------------------------------------------*/
  .social_sharing a {
    position: relative;
    display: block;
    color: transparent;
    width: 30px;
    height: 27px;
    padding: 0 3px;
  }

  .social_sharing iframe {
    max-width: none;
  }
        
        /* MQ 
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 47.9375em) {   
          .article-info {
            margin: 10px 0;
          } 
        }

        @media only screen and (max-width: 47.9375em) and (orientation: portrait) {
          .social_sharing {
            padding: 4px 0;
            position: fixed;
            bottom: 0px;
            left: 0;
            z-index: 3;
            background-color: #000000;
            width: 100%;
          }

          .social_sharing li {
            margin-right: 13px;
          }

          .social_sharing a:before {
            color: #ffffff !important;
          }
        }

        /* MQ 
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 40em) and (orientation: landscape) {   
          .theStory > img {
            width: 60%;
            float: left;
          }

          article.theStory .lead {
            width: 40%;
            float: right;
            margin-top: 0;
            padding-left: 10px;
            text-align: left;
          }

          article.theStory .article-content {
            clear: both;
          }

          article.theStory .image-credits {
            position: relative;
            left: -9%;
            top: 15px;
            background-color: white;
            background-color: rgba(255, 255, 255, 0.5);
            padding: 0 3px;
            float: left;
          }
        }

/* -------------------------------------------------------------------------------------------------
    POST TYPE: PHOTO GALLERY
---------------------------------------------------------------------------------------------------- */
#gallery_main .article-info {
  margin-top: 0 !important;
}

.rg-thumbs {
  padding: 20px 0;
  margin-top: 15px;
}

.es-carousel {
  overflow: auto;
}

.rg-gallery .rslides_nav {
  width: 36px;
}

#rg-gallery {
  margin: 15px 0;
}

#photo-text.article-content p {
  font-size: 0.875em;
  line-height: 1.25em;
}

#photo-text {
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.rg-gallery #photo-credits {
  /*margin-top: -16px;*/
  padding: 0 4px;
  background-color: #ffffff;
  background-color: rgba(255,255,255,0.8);
  display: block;
  float: left;
  position: relative;
  z-index: 2;
}

.rg-image-nav.slideshow-nav {
  margin: 0 0 20px;
  float: right;
}

.rg-image-nav .icon-left:before, 
.rg-image-nav .icon-right:before {
  font-size: 25px !important;
}

.rg-gallery .rslides_nav.icon-left:after {
  right: -6px;
  top: 4px;
  font-size: 27px;
}

#photo-counters {
  font-family: Georgia, serif;
  font-size: 1.125em;
  line-height: 1.5em;
  text-align: center;
}

#photo_social.social_sharing {
  margin: 15px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.rg-image-wrapper.slide-image {
  clear: right;
}

.rg-gallery .slide-caption {
  margin-top: -40px;
}
      
      /* MQ 
      ---------------------------------------------------------------------*/
      @media only screen and (max-width: 47.9375em) {
        #rg-gallery .ad-row {
          display: none;
        }

        .rg-gallery .slide-caption {
          width: 100%;
          clear: both;
        }

        .rg-gallery .rg-image-wrapper {
          /*width: 85%; */
          width: 100%;
          clear: both;
          padding: 0;
        }

        .rg-gallery .slide-caption {
          margin-top: 10px;
          padding-right: 0;
        }

        #photo-counters {
          left: 0;
          right: 0;
          top: -49px;
          position: absolute;
          z-index: -1;
        }

        .rg-thumbs {
          display: none;
        }

        #rg-gallery .ad-row {
          display: block;
        }

        #photo-text {
          height: auto;
          overflow: visible;
        }
      }

      /* MQ 
      ---------------------------------------------------------------------*/
      @media only screen and (max-width: 40em) {
        #gallery_main .article-info {
          width: 100%;
          clear: both;
          padding-top: 10px;
        }
      }

      /* MQ 
      ---------------------------------------------------------------------*/
      @media only screen and (max-width: 40em) and (orientation: landscape) {   
        #gallery_main article.theStory .lead {
          width: 100%;
          padding: 0;
          clear: both;
        }

        #gallery_main .article-info {
          width: 100%;
          clear: both;
          padding-top: 10px;
        }
      }

      /* MQ 
      ---------------------------------------------------------------------*/
      @media only screen and (max-width: 47.9375em) and (orientation: portrait) {
        #gallery_main .article-info .social_sharing {
          position: static;
          padding: 0;
          background-color: transparent;
        }

        .social_sharing a:before {
          color: #000000 !important;
        }
      }



/* -------------------------------------------------------------------------------------------------
    POST TYPE: EMPLOYEE LIST
---------------------------------------------------------------------------------------------------- */
#lists_main main {
  padding-top: 0;
}

#employee-list-menu.span12 {
  list-style-position: inside;
  padding-left: 0.9375em;
  padding-right: 0.9375em;
}

#employee-list-menu .content {
  padding: 1.125em 0;
  border-bottom: 1px solid #e5e5e5;
  width: 100%;
  float: left;
  text-indent: -1.875em;
  padding-left: 1.875em;
}

#employee-list-menu .content:first-child {
  padding-top: 0.3125em;
}

#employee-list-menu .content:last-child {
  padding-top: 0.3125em;
  border: none;
}

article.list_item.module:first-child {
  border: none;
}

#lists_main .sidebar_inner {
  max-height: 700px;
  overflow: auto;
}

/*#lists_main .scrollbar {*/
  /*max-height: 700px;*/
  /*overflow: auto;*/
/*}*/


#lists_main .sidebar {
  padding-top: 0;
}

#lists_main article {
  width: 100%;
}

.employee .property.position {
  padding-top: 5px;
}

.company-properties .property {
  padding: 4px 0;
  font-size: 1.125em
}

.company-properties a {
  color: #e63f24;
}

#lists_main .article-title {
  max-width: 50%;
  position: fixed;
  top: 16px;
  z-index: 2000;
  color: #ffffff;
}

#lists_main .social_sharing {
  width: 100%;
  padding: 10px 0;
  margin: 10px 0 -10px;
  text-align: left;
}


          /* MQ 1+2
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 47.9375em) {
            .list_item_title {
              padding-top: 0;
              margin-top: 0;
            }

            .employee-rank {
              top: 7px;
            }

            #lists_main section.module.row {
              margin-top: 0;
              padding-top: 0;
            }

            #lists_main section.module.row:before {
              display: none;
            }

            #lists_main .social_sharing {
              padding: 4px 0;
              position: fixed;
              bottom: 7px;
              left: 0;
              z-index: 3;
              background-color: #000000;
              width: 100%;
            }

            #lists_main .social_sharing a:before {
              color: #ffffff !important;
            }

          }

          /* MQ 1 
          ---------------------------------------------------------------------*/
          @media only screen and (max-width: 29.9375em) {
            #lists_main .article-title {
              position: static;
              color: #000000;
              width: 100%;
              max-width: 100%;
              margin: 10px 0 20px;
              text-align: left;
            }

            #lists_main .social_sharing {
              margin-top: 0; 
            }
          }



/* -------------------------------------------------------------------------------------------------
    POST TYPE: INTERVIEW
---------------------------------------------------------------------------------------------------- */
.article-content .aligncenter,
.article-content .alignnone {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

.article-content .alignleft {
  float: left;
  clear: left;
  margin-top: 15px;
  margin-right: 20px;
}

.article-content .alignright {
  float: right;
  clear: right;
  margin-top: 15px;
  margin-left: 25px;
}


.interviews_header {
  background-color: #ffffff;
  padding: 0 15px;
  margin-bottom: 12px;
  text-align: center;
}

.interviews_header.red {
  background-color: #e93d2f;
  color: #ffffff;
  padding: 15px;
}

.interview {
  font-family: 'Open Sans', sans-serif;
}

.interview_image:after {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  content: "";
  background: url(../img/interviews/chair_white.png) no-repeat scroll center #e93d2f;
  background: url(../img/interviews/chair_white.svg) no-repeat scroll center #e93d2f;
  width: 40px;
  height: 40px;
}

.interviewee-name {
  font-size: 25px;
  line-height: 1em;
  font-weight: 300;
  color: #e93d2f;
}

.interviewee-occupation {
  font-size: 14px;
  line-height: 22px;
}

#theInterview .interview_content blockquote,
.interview-quote {
  display: block;
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 25px;
  position: relative;
}

.featured_interview .interviewee-name:after,
.interview-quote:after {
  position: absolute;
  content: "";
  top: -10px;
  bottom: -10px;
  left: -70px;
  right: 0;
  z-index: -1;
  background-color: white;
  background-color: rgba(255,255,255,0.8);
}

.featured_interview .interviewee-name:after {
  right: -30px;
}

#theInterview .interview_content blockquote:before,
.interview-quote:before {
  display: block;
  content: "\00ab";
  color: inherit;
  font-size: 43px;
  line-height: 1em;
}

.featured_interview {
  position: relative;
}

.featured_interview_content {
  text-align: center;
  margin-top: 20px;
}

.featured_interview .interviewee-name {
  font-size: 27px;
  line-height: 1em;
  font-weight: 300;
  margin-bottom: 0;
  position: relative;
}

.featured_interview .interview-quote {
  font-size: 20px;
  line-height: 30px;
}

.featured_interview .interviewee-occupation {
  color: inherit;
}

.read_interview {
  margin-top: 30px;
  color: #e93d2f;
}

.more_interviews_row {
  background-color: #efefef;
  margin: 30px 0 15px;
}

.more_interviews_row a {
  display: inline-block;
  margin: 15px auto;
  background-color: #e93d2f;
  color: #ffffff;
  padding: 15px;
}

.more_interviews_row a:hover {
  background-color: #000000;
}

.module article.interview {
  margin-bottom: 30px;
}

.module article.interview:last-child {
  margin-bottom: 20px;
}

.theInterview_header {
  padding: 22px 15% 50px; 
}

.theInterview_header:before {
  content: "";
  display: block;
  width: 30px;
  height: 45px;
  margin: 0 auto 10px;
  background: url(../img/interviews/chair_black.png) no-repeat scroll center center transparent;
  background: url(../img/interviews/chair_black.svg) no-repeat scroll center center transparent;
}

#theInterview .interviewee-name {
  font-size: 30px;
  line-height: 1em;
  color: inherit;
  margin-bottom: 5px;
}

.interview-lead {
  margin-top: 20px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

#theInterview .author {
  font-family: inherit;
  font-size: 14px;
  line-height: 22px;
}

#theInterview .interview_content {
  padding: 0px 15%;
}

.interview_main_image {
  margin-bottom: 10px;
}

.interview_content {
  font-family: inherit !important;
  font-size: 17px;
  line-height: 30px;
}

.interview_content p,
.interview_content span {
  font-size: 1em;
  line-height: inherit;
  text-align: inherit;
}

.interview_content strong,
.interview_content em {
  font-weight: 600;
  font-style: italic;
  text-align: inherit !important;
}

#theInterview .interview_content blockquote strong,
#theInterview .interview_content blockquote em,
#theInterview .interview_content h1,
#theInterview .interview_content h2,
#theInterview .interview_content h3,
#theInterview .interview_content h4 {
  font-style: inherit !important;
  font-weight: inherit !important;
  text-align: inherit !important;
}

#theInterview .interview_content h5 {
  text-align: left;
  font-size: 28px;
  line-height: 36px;
  margin: 10px auto 25px;
  font-weight: 300;
}

#theInterview .interview_content blockquote {
  font-size: 22px;
  line-height: 32px;
  padding: 0 20% 30px;
  text-align: left;
}

.interview_content .aligncenter,
.interview_content .alignnone {
  margin: 90px auto;
}

#interviews_grid:before {
  display: none;
}

#interviews_grid ul {
  margin-left: -15px;
  margin-right: -15px;
}

#interviews_grid .interview_image {
  margin-bottom: 10px;
}

#interviews_grid .interview_image:after {
  width: 34px;
  height: 34px;
  top: 30px;
  left: 25px;
  background-size: 90% auto;
}

#interviews_grid .interviewee-name {
  font-size: 20px;
  line-height: 25px;
}

#interviews_grid li:nth-child(3n+4) {
  clear: left;
}

#interviews_grid .interview {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cat_featured_interview {
  margin-top: 10px;
}

#theInterview .wp-caption {
  padding: 0 5px;  
}

#theInterview .wp-caption img {
  margin:0 auto;
  display: block;
}

#theInterview .wp-caption-text {
  background-color: #f2f2f2;
  padding: 10px 15px;
  margin: 0;
  font-size: 80%;
  font-weight: 300;
}

@media screen and (min-width: 1020px) {
  .featured_interview_content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 49%;
    z-index: 2;
    padding: 7% 0 7% 65px;
    text-align: left;
    margin: 0;
  }

  .featured_interview .interview-quote {
    padding-right: 25%;
  }

  .interview_details {
    position: absolute;
    bottom: 7%;
    left: 65px;
  }

  .featured_interview .interviewee-name,
  .featured_interview .read_interview {
    color: inherit;
  }

  .featured_interview .read_interview {
    display: inline-block;
    padding: 15px;
    background-color: #000000;
    color: #ffffff;
  }

  .featured_interview .read_interview:hover {
    color: #000000;
    background-color: #ffffff;
  }
}

/*@media screen and (max-width: 767px) {*/
  /*.interview_image.span8,*/
  /*.interview_content.span4 {*/
    /*width: 50%;*/
    /*padding: 0 0.35em;*/
  /*}*/
/*}*/

@media screen and (max-width: 768px) {
  .interviews_header.red {
    padding: 8px;
  }

  .interviews_header.red img {
    max-height: 38px;
  }

  .featured_interview_hp_image {
    max-height: 380px;
    overflow: hidden;
  }

  #fortuneTalksRow .interview_image.span8,
  #fortuneTalksRow .interview_content.span4 {
    width: 100%;
    padding: 10px 0;
  }

  #fortuneTalksRow .interview.feed {
    width: 50%;
    float: left;
    clear: none;
  }

  #fortuneTalksRow .interview:nth-child(even) {
    padding-right: 0.35em;
    clear: left;
  }

  #fortuneTalksRow .interview:nth-child(odd) {
    padding-left: 0.35em;
  }

  #fortuneTalksRow .interview.feed .interview-quote,
  #fortuneTalksRow .interview.feed .read_interview {
    display: none;
  }

  #fortuneTalksRow .featured_interview .interview-quote {
    padding: 0 10%;
  }

  .interviewee-name {
    font-size: 23px;
  }

  #interviews_grid ul {
    margin-left: -5px;
    margin-right: -5px;
  }

  .theInterview_header,
  #theInterview .interview_content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .interview_image:after {
    width: 30px;
    height: 30px;
    background-size: 90% auto;
    top: 20px;
    left: 10px;
  }

  #interviews_grid .interview_image:after {
    left: 20px;
  }

  .cat_featured_interview .interview_image:after {
    top: 10px;
  }
}

@media screen and (max-width: 640px) {
  .interviews_header.red {
    margin-bottom: 0;
  }

  .interviews_header.red img {
    max-height: 28px;
  }

  .featured_interview_hp_image {
    max-height: 240px;
    overflow: hidden;
  }

  #interviews_grid .interviewee-name,
  .interviewee-name {
    font-size: 16px;
    line-height: 21px;
  }

  .interview-quote {
    font-size: 15px;
    line-height: 23px;
  }

  .interviewee-occupation {
    font-size: 13px;
    line-height: 18px;
    margin-top: 3px;
  }

  .read_interview {
    margin-top: 8px;
    font-size: 15px;
  }

  .featured_interview .read_interview {
    margin-top: 18px;
  }

  #fortuneTalksRow .featured_interview .interview-quote {
    padding: 0 5%;
  }

  .cat_featured_interview .interview_image.span8,
  .cat_featured_interview .interview_content.span4 {
    width: 100%;
    clear: both;
  }

  .cat_featured_interview .interview_content {
    text-align: center;
  }

  .cat_featured_interview .interviewee-name {
    font-size: 23px;
    margin-top: 10px;
  }

  .theInterview_header {
    padding-bottom: 35px;
  }

  #theInterview .interviewee-name {
    font-size: 24px;
  }

  .interview-lead {
    font-size: 16px;
    line-height: 22px;
  }

  #theInterview .author {
    font-size: 11px;
    line-height: 19px;
  }

  #theInterview .interview_content {
    font-size: 14px;
    line-height: 22px;
  }

  #theInterview .interview_content blockquote {
    padding-right: 6%;
    padding-left: 6%;
    font-size: 19px;
    line-height: 28px;
  }

  #theInterview .interview_content h5 {
    font-size: 22px;
    line-height: 30px;
  }

  .theInterview_header,
  #theInterview .interview_content {
    padding-left: 3%;
    padding-right: 3%;
  }

  #interviews_grid .interview_image:after {
    display: none;
  }

  #theInterview .interview_content {
    text-align: left;
  }

  #theInterview .interview_content p {
    margin-bottom: 30px;
  }

  .interview_content .aligncenter, 
  .interview_content .alignnone {
    margin: 20px auto !important;
  }
}


@media screen and (max-width: 479px) {
  #fortuneTalksRow .interview {
    width: 100%;
    clear: both;
    padding: 0 !important;
  }

  #interviews_grid .interviewee-name,
  .interviewee-name {
    font-size: 18px;
  }

  #fortuneTalksRow .interview.feed .interview-quote,
  #fortuneTalksRow .interview.feed .read_interview {
    display: block;
  }

  .cat_featured_interview .read_interview {
    background-color: #E93D2F;
    color: #ffffff;
    padding: 0 10px;
    display: block;
    margin: 15px auto 3px;
    width: 100%;
    text-align: center;
  }

  .cat_featured_interview .interview_content {
    padding-left: 0;
  }
}



/* -------------------------------------------------------------------------------------------------
    TEMPLATE: SEARCH RESULTS
---------------------------------------------------------------------------------------------------- 
#searchResults article {
  padding-top: 1.875em;
  padding-bottom: 1.75em;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}

#searchResults {
  padding-top: 0;
}

#searchResults .article-title {
  margin: 6px 0 8px !important;
}

#searchResults time {
  margin-bottom: 25px;
}

#search_main h1.category-title,
#search_main h5.module-title,
#search_main .module-title .count {
  display: inline-block;
    *display: inline;
    zoom: 1;
}

#search_main .module-title .count {
  padding-right: 4px;
}

#search_main #taxonomy_pagination a,
#search_main #taxonomy_pagination span {
  font-size: 1em;
  display: inline-block;
    *display: inline;
    zoom: 1;
  padding: 0 3px;
}

#search_main #taxonomy_pagination span {
  color: #8e8e8e;
}


/* -------------------------------------------------------------------------------------------------
    TEMPLATE: ERROR PAGE
---------------------------------------------------------------------------------------------------- */
#error_page_main main {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px; 
}

.error-graph.module {
  margin: 0 auto 40px;
}

#error_page_main p {
  font-size: 0.875em;
}




/* -------------------------------------------------------------------------------------------------
    SECTION: KPMG JOBS
.---------------------------------------------------------------------------------------------------- */
.jobs_table thead tr {
  background-color: #f3f3f3;
}

.jobs_table td,
.jobs_table th {
  text-align: left;
}

.jobs_table td {
  font-size: 0.875em;
  line-height: 1.25em;
  padding: 15px 30px 15px 0;
}

.jobs_table.span12 {
    position: relative;
    width: 98%;
  }

.jobs_table table {
  display: block;
  height: 350px;
  overflow: auto;
}

.jobs_table tr {
  background-color: #ffffff;
}
  

@media screen and (max-width: 799px) {
  /* Force table to not be like tables anymore */
  .jobs_table th, 
  .jobs_table tr, 
  .jobs_table td, 
  .jobs_table thead, 
  .jobs_table tbody,
  .jobs_table table {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .jobs_table table thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  /*tr,*/
  .jobs_table tr { 
    background-color: #ffffff;
    border-bottom: 1px solid #ccc; 
    float: left;
    width: 100%; 
    padding: 5px 0;
  }

  .jobs_table tr:nth-child(2n) {
    background-color: #f1f1f1;
  }
  
  /* td, */
  .jobs_table td { 
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding: 7px 0 7px 30%; 
    font-size: 0.8125em;
  }
  
  .jobs_table td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 8px;
    left: 6px;
    width: 34%; 
    padding-right: 10px; 
    white-space: nowrap;
    color: #7f7f7f;
    clear: both;
    font-size: 11px;
  }
  /*  Label the data  */
  .jobs_table td:nth-of-type(1):before { content: "ΚΩΔΙΚΟΣ"; }
  .jobs_table td:nth-of-type(2):before { content: "ΘΕΣΗ"; }
  .jobs_table td:nth-of-type(3):before { content: "ΕΤΑΙΡΙΑ"; }
  .jobs_table td:nth-of-type(4):before { content: "ΙΣΧΥΕΙ ΕΩΣ"; }
}

/* -------------------------------------------------------------------------------------------------
    SECTION: ADVERTISMENTS
---------------------------------------------------------------------------------------------------- */
.ad-row .ad-box {
  width: 100%;
}

.ad-box {
  padding: 0.625em;
  margin: 10px 0;
  background-color: #e5e5e5;
}

.ad-box {
  position: relative;
  /*background-color: #e93d2f !important;*/
  background-color: #e5e5e5;
  margin-right: auto!important;
  margin-left: auto!important;
  z-index: 1;
  float: none;
}

.lists_ad_box {
  padding: 0.625em 0;
}

.sidebar .ad-row {
  background-color: #e5e5e5;
}

#first_homepage_leaderboard, 
#first_leaderboard, 
#first_homepage_leaderboard .ad-box, 
#first_leaderboard .ad-box {
  padding-left: 0;
  padding-right: 0;
}

#first_homepage_leaderboard .ad-box, 
#first_leaderboard .ad-box {
  background-color: transparent;
}


/*.ad-box:after {
  overflow: visible !important;
  visibility: visible !important;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
  font-family: 'Ubuntu Condensed',sans-serif;
  font-size: 3em;
  z-index: 2;
}

#above_the_fold .rightColumn .ad-box,
#above_the_fold .rightColumn .ad-box:after {
  width: 300px;
  height: 250px;
}

#above_the_fold .rightColumn .ad-box:after  {
  content: '300x250';
}

#first_leaderboard .ad-box,
#first_leaderboard .ad-box:after {
  width: 728px;
  height: 90px;
}

#first_leaderboard .ad-box:after {
  content: '728x90';
}

#businessRow .rightColumn .ad-box,
#businessRow .rightColumn .ad-box:after {
  width: 300px;
  height: 600px;
}

#businessRow .rightColumn .ad-box:after  {
  content: '300x600';
}

.sidebar .ad-box {
  width: 300px;
  height: 250px;
}

.sidebar .ad-box:after  {
  content: '300x250';
}

.text-link {
  width: 630px!important;
  height: 300px;
}

.text-link:after {
  content: '630x300';
}

/*.rg-gallery .ad-box {
  width: 300px;
  height: 250px;
}

.rg-gallery .ad-box:after {
  content: '300x250';
  right: 15px;
}*/
  
        /* MQ 1+2
        ---------------------------------------------------------------------*/
        @media only screen and (max-width: 47.9375em) {
          /*#above_the_fold .rightColumn .ad-box,
          #above_the_fold .rightColumn .ad-box:after,
          #businessRow .rightColumn .ad-box,
          #businessRow .rightColumn .ad-box:after,
          #first_leaderboard .ad-box,
          #first_leaderboard .ad-box:after,
          .sidebar .ad-box,
          .text-link,
          .rg-gallery .ad-box {
            width: 300px!important;
            height: 50px;
          }

          #above_the_fold .rightColumn .ad-box:after,
          #businessRow .rightColumn .ad-box:after,
          #first_leaderboard .ad-box:after,
          .sidebar .ad-box:after,
          .text-link:after,
          .rg-gallery .ad-box:after {
            content: '300x50';
            top: 15px;
          }*/
        }


        /* MQ 3 (768-1020) 1020 = 1005 + 15px scrollbar
        ---------------------------------------------------------------------*/
        @media only screen and (min-width: 48em) and (max-width: 63.75em) {
          /**********************************************************************************************
            #homepage #above_the_fold .rightColumn img { width:728px; height:90px; max-width: none;}
            #businessRow .rightColumn img { width:728px; height:90px; max-width: none;}
            .sidebar .ad-box img { width: 240px; height: 400px; max-width: none;}
          **********************************************************************************************/
          
          /*#above_the_fold .rightColumn .ad-box,
          #above_the_fold .rightColumn .ad-box:after {
            width: 728px;
            height: 90px;
          }

          #above_the_fold .rightColumn .ad-box:after  {
            content: '728x90';
          }

          #businessRow .rightColumn .ad-box,
          #businessRow .rightColumn .ad-box:after {
            width: 728px;
            height: 90px;
          }

          #businessRow .rightColumn .ad-box:after  {
            content: '728x90';
          }

          .sidebar .ad-box {
            width: 240px;
            height: 400px;
          }

          .sidebar .ad-box:after  {
            content: '240x400';
          }

          .text-link {
            width: 468px!important;
            height: 60px;
          }

          .text-link:after {
            content: '468x60';
            top: 20px;
          }

          /*.rg-gallery .ad-box {
            width: 180px;
            height: 150px;
          }

          .rg-gallery .ad-box:after {
            content: '180x150';
          }*/
        }



/* -------------------------------------------------------------------------------------------------
    SECTION: MEDIA QUERIES
---------------------------------------------------------------------------------------------------- */
/* SCREEN STYLES
----------------------------------------------------------------------------------------------------*/

  /* MQ 1: SMALL
  ---------------------------------------------------------------------*/
  @media only screen and (max-width: 29.9375em) {
    html, body {
          -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
          -ms-text-size-adjust: 100%;
    }

    body {
      padding: 0;
    }

    #fortune_container {
      border: 0;
    }

    .span1, .span2, .span3, .span4,
    .span5, .span6, .span7, .span8,
    .span9, .span10, .span11, .span12 {
      width: 100%;
      padding-left: 0.35em;
      padding-right: 0.35em;
    }

    .show-for-mq1 {
      display: block !important;
    }

    .hide-for-mq1 {
      display: none !important;
    }

    .leftColumn,
    .middleColumn,
    .rightColumn {
      margin: 0 !important;
    }

    main {
      padding-top: 0;
    }
  }

  /* MQ 2
  ---------------------------------------------------------------------*/
  @media only screen and (min-width: 30em) and (max-width: 47.9375em) {
    html, body {
      -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
      -ms-text-size-adjust: 100%;
    }

    .span1, .span2, .span3, .span4,
    .span5, .span6, .span7, .span8,
    .span9, .span10, .span11, .span12 {
      padding-left: 0.35em;
      padding-right: 0.35em;
    }


    .leftColumn,
    .middleColumn,
    .rightColumn {
      margin: 0 !important;
    }

    .show-for-mq2 {
      display: block !important;
    }

    .hide-for-mq2 {
      display: none !important;
    }

    main.span8,
    .sidebar {
      width: 100%;
      clear: both;
    }

    main {
      padding-top: 0;
    }
  }

      /* MQ (mobile phones)
      ---------------------------------------------------------------------*/
      @media only screen and (max-width: 40em) {
        .show-for-mobile {
          display: block !important;
        }
      }




  /* MQ 3 (768-1020) 1020 = 1005 + 15px scrollbar
  ---------------------------------------------------------------------*/
  @media only screen and (min-width: 48em) and (max-width: 63.75em) {
    html, body {
          -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
          -ms-text-size-adjust: 100%;
    }

    .span1, .span2, .span3, .span4,
    .span5, .span6, .span7, .span8,
    .span9, .span10, .span11, .span12 {
      padding-left: 0.625em;
      padding-right: 0.625em;
    }

    .leftColumn,
    .middleColumn,
    .rightColumn {
      margin: 0 !important;
    }

    .show-for-mq3 {
      display: block !important;
    }

    .hide-for-mq3 {
      display: none;
    }

    main.span8,
    .leftColumn.span8 {
      width: 65%;
    }

    .sidebar {
      width: 35%;
    }
  }

  /* MQ 4  1021 - 1037
  ---------------------------------------------------------------------*/
  @media only screen and (min-width: 63.8125em) and (max-width: 64.8125em) {
    .span1, .span2, .span3, .span4,
    .span5, .span6, .span7, .span8,
    .span9, .span10, .span11, .span12 {
      padding-left: 0.625em;
      padding-right: 0.625em;
    }

    .show-for-mq4 {
      display: block !important;
    }

    .hide-for-mq4 {
      display: none;
    }
  }


  /* MQ 5  
  ---------------------------------------------------------------------*/
  @media only screen and (min-width: 64.875em) {
    .show-for-desktop {
      display: block !important;
    }
  }



/* -------------------------------------------------------------------------------------------------
    SECTION: HACKS
.---------------------------------------------------------------------------------------------------- */
.oldie .module img {
  width: 100%;
}

.oldie aside.rightColumn.sidebar {
  margin: 0 0 0 66.667%;
}

.oldie #businessArticles article.span6,
.oldie #newsArticles article.span6 {
  float: none;
  display: inline-block;
    *display: inline;
  zoom: 1;
  vertical-align: top;
  width: 49%;
}

.oldie #photoGalleryRow .slide-image,
.oldie #hp_slideshow .slide-caption {
  padding-bottom: 15px;
}

.oldie .search_form input[type="submit"] {
  color: #f9f9f9;
  font-size: 0;
}

.oldie #fLists .thumb:after {
  display: none;
 }

.oldie #fLists .list-title {
  top: 0;
  bottom:0;
  left: 0;
  right: 0;
  background-color: rgb(20,20,27);;
  filter: alpha(opacity=60);
  padding: 10px;
}

.oldie .social_sharing a {
  color: #ffffff;
}

.oldie .error-graph img {
  width: 202px;
  height: 188px;
}


/* Clearing Styles */
[data-clearing] {
  *zoom: 1;
  margin-bottom: 0;
  list-style: none; }
  [data-clearing]:before, [data-clearing]:after {
    content: " ";
    display: table; }
  [data-clearing]:after {
    clear: both; }
  [data-clearing] li {
    float: left;
    margin-right: 10px; }

.clearing-blackout {
  background: #111111;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 200000; }
  .clearing-blackout .clearing-close {
    display: block; }

.clearing-container {
  position: relative;
  z-index: 998;
  height: 100%;
  overflow: hidden;
  margin: 0; }

.visible-img {
  height: 95%;
  position: relative; }
  .visible-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50%;
    max-height: 100%;
    max-width: 100%; }

.clearing-caption {
  color: white;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  bottom: 0;
  background: #111111;
  width: 100%;
  padding: 10px 30px;
  position: absolute;
  left: 0; }

.clearing-close {
  z-index: 999;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 40px;
  line-height: 1;
  color: white;
  display: none; }
  .clearing-close:hover, .clearing-close:focus {
    color: #ccc; }

.clearing-assembled .clearing-container {
  height: 100%; }
  .clearing-assembled .clearing-container .carousel > ul {
    display: none; }

.clearing-feature li {
  display: none; }
  .clearing-feature li.clearing-featured-img {
    display: block; }

@media only screen and (min-width: 768px) {
  .clearing-main-prev,
  .clearing-main-next {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0; }
    .clearing-main-prev > span,
    .clearing-main-next > span {
      position: absolute;
      top: 50%;
      display: block;
      width: 0;
      height: 0;
      border: solid 16px; }

  .clearing-main-prev {
    left: 0; }
    .clearing-main-prev > span {
      left: 5px;
      border-color: transparent;
      border-right-color: white; }

  .clearing-main-next {
    right: 0; }
    .clearing-main-next > span {
      border-color: transparent;
      border-left-color: white; }

  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.5; }

  .clearing-assembled .clearing-container .carousel {
    background: #111111;
    height: 150px;
    margin-top: 5px; }
    .clearing-assembled .clearing-container .carousel > ul {
      display: block;
      z-index: 999;
      width: 200%;
      height: 100%;
      margin-left: 0;
      position: relative;
      left: 0; }
      .clearing-assembled .clearing-container .carousel > ul li {
        display: block;
        width: 175px;
        height: inherit;
        padding: 0;
        float: left;
        overflow: hidden;
        margin-right: 1px;
        position: relative;
        cursor: pointer;
        opacity: 0.4; }
        .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
          min-height: 100%;
          height: 100%;
          max-width: none; }
        .clearing-assembled .clearing-container .carousel > ul li a.th {
          border: none;
          -webkit-box-shadow: none;
          box-shadow: none;
          display: block; }
        .clearing-assembled .clearing-container .carousel > ul li img {
          cursor: pointer !important;
          min-width: 100% !important; }
        .clearing-assembled .clearing-container .carousel > ul li.visible {
          opacity: 1; }
  .clearing-assembled .clearing-container .visible-img {
    background: #111111;
    overflow: hidden;
    height: 75%; }

  .clearing-close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding-left: 0;
    padding-top: 0; } }




#editors_picks .lead {
  display: none;
}

.fixed_container {
  z-index: 10;
}

#newsArticles {
  margin-left: -10px;
  margin-right: -10px;
}

#newsArticles img {
  width: 100%;
}

/*@media screen and (min-width: 901px) and (max-height: 1040px) {*/
  /*#mc_embed_signup,*/
  /*#editors_picks,*/
  /*#newsList {*/
    /*display: none;*/
  /*}*/
/*}*/


/*@media screen and (min-width: 901px) and (max-height: 1290px) {*/
  /*#newsList li:nth-child(4),*/
  /*#newsList li:last-child {*/
    /*display: none;*/
  /*}*/
/*}*/

@media screen and (min-width: 769px) {
  .sidebar_post_set li:nth-child(4),
  .sidebar_post_set li:nth-child(5),
  .sidebar_post_set li:last-child {
    display: none;
  }
}


@media screen and (max-width: 900px) {
  #mc_embed_signup {
    display: none;
  }

  #editors_picks {
    display: block;
  }

  #editors_picks .lead {
    display: block;
  }

  #above_the_fold .fixed_container {
    position: static !important;
  }
}

@media screen and (max-width: 767px) {
  /*.secondary_section .rightColumn {*/
    /*display: none;*/
  /*}*/

  #article_main .main_section .sidebar,
  #category_main .main_section .sidebar {
    display: none;
  }

  .secondary_section .leftColumn.span8 {
    width: 100%;
  }

  .fixed_container {
    position: static !important;
    width: 100% !important;
  }
}

@media screen and (max-width: 560px) {
  #newsArticles {
    margin-left: -5px;
    margin-right: -5px;
  }
}



@media screen and (min-width: 901px) {
  #above_the_fold .rightColumn {
    position: static;
  }

  /*#newsRow .rightColumn {*/
    /*display: none;*/
  /*}*/
}



#mc_embed_signup_scroll {
  padding-top: 20px;
}

#mc_embed_signup form {
  padding: 20px 10px 23px !important;
}

#mc_embed_signup label {
  text-align: center;
  font-size: 
}

#mc_embed_signup_scroll {
  /*border-top: 2px solid black !important;*/
}

#mc_embed_signup {
  width: 100%;
  margin-top: 20px !important;
  background-color: #e5e5e5 !important;
}

#mc_embed_signup input.email {
  /*width: 100% !important;*/
  margin: 12px auto 0 !important;
  height: 35px;
  padding: 0 12px;
  border-width: 0;
}

#mc_embed_signup input.email,
#mc_embed_signup input.button {
  width: 92% !important;
}

#mc_embed_signup input.button {
  background-color: #E93D2F !important;
  color: #fff;
  margin: 10px auto !important;
  padding: 8px 10px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1em !important;
  border-radius: 0 !important; 
}

#mc_embed_signup input.button:hover {
  background-color: #000;
}

.single-employee-list #network_elements,
.single-company-list #network_elements {
  display: none;
}



/* GREY GOOSE COMMERCIAL

.category-life,
.category-life-art,
.category-life-art-test,
.category-life #fortune_container,
.category-life-art #fortune_container,
.category-life-art-test #fortune_container,
.term-life-art,
.term-life-art-test,
.term-art,
.term-beauty-business,
.term-wheels,
.term-life,
.term-life-art #fortune_container,
.term-life-art-test #fortune_container,
.term-art #fortune_container,
.term-beauty-business #fortune_container,
.term-wheels #fortune_container,
.term-life #fortune_container,
.category-life-art,
.category-life-art-test,
.category-art,
.category-beauty-business,
.category-wheels,
.category-life,
.category-life-art #fortune_container,
.category-life-art-test #fortune_container,
.category-art #fortune_container,
.category-beauty-business #fortune_container,
.category-wheels #fortune_container,
.category-life #fortune_container {
  background-color: #16267e;
  color: #fff;
}

.term-life-art #fortune_container,
.term-life-art-test #fortune_container,
.term-art #fortune_container,
.term-beauty-business #fortune_container,
.term-wheels #fortune_container,
.term-life #fortune_container,
.category-life-art #fortune_container,
.category-life-art-test #fortune_container,
.category-art #fortune_container,
.category-beauty-business #fortune_container,
.category-wheels #fortune_container,
.category-life #fortune_container,
.category-life #fortune_container,
.category-life-art #fortune_container,
.category-life-art-test #fortune_container {
  border-color: #040d5e;
}

.category-life .sidebar_inner,
.category-life-art .sidebar_inner,
.category-life-art-test .sidebar_inner,
.category-life #fortune_container .sidebar_inner,
.category-life-art #fortune_container .sidebar_inner,
.category-life-art-test #fortune_container .sidebar_inner,
.term-life-art .sidebar_inner,
.term-life-art-test .sidebar_inner,
.term-art .sidebar_inner,
.term-beauty-business .sidebar_inner,
.term-wheels .sidebar_inner,
.term-life #fortune_container .sidebar_inner,
.term-life-art #fortune_container .sidebar_inner,
.term-life-art-test #fortune_container .sidebar_inner,
.term-art #fortune_container .sidebar_inner,
.term-beauty-business #fortune_container .sidebar_inner,
.term-wheels #fortune_container .sidebar_inner,
.term-life #fortune_container .sidebar_inner,
.category-life-art .sidebar_inner,
.category-life-art-test .sidebar_inner,
.category-art .sidebar_inner,
.category-beauty-business .sidebar_inner,
.category-wheels .sidebar_inner,
.category-life #fortune_container .sidebar_inner,
.category-life-art #fortune_container .sidebar_inner,
.category-life-art-test #fortune_container .sidebar_inner,
.category-art #fortune_container .sidebar_inner,
.category-beauty-business #fortune_container .sidebar_inner,
.category-wheels #fortune_container .sidebar_inner,
.category-life #fortune_container .sidebar_inner {
  background-color: #0C1068;
}

.category-life .search_form,
.category-life-art .search_form,
.category-life-art-test .search_form,
.term-life-art .search_form,
.term-life-art-test .search_form,
.term-art .search_form,
.term-beauty-business .search_form,
.term-wheels .search_form,
.term-life .search_form,
.category-life-art .search_form,
.category-life-art-test .search_form,
.category-art .search_form,
.category-beauty-business .search_form,
.category-wheels .search_form,
.category-life .search_form {
  border-top-color: #0C1068;
}

.category-life .social_sharing a:before,
.category-life-art .social_sharing a:before,
.category-life-art-test .social_sharing a:before,
.term-life-art .social_sharing a:before,
.term-life-art-test .social_sharing a:before,
.term-art .social_sharing a:before,
.term-beauty-business .social_sharing a:before,
.term-wheels .social_sharing a:before,
.term-life .social_sharing a:before,
.category-life-art .social_sharing a:before,
.category-life-art-test .social_sharing a:before,
.category-art .social_sharing a:before,
.category-beauty-business .social_sharing a:before,
.category-wheels .social_sharing a:before,
.category-life .social_sharing a:before,
.category-life #sidebar_menu ul li a.selected,
.category-life-art #sidebar_menu ul li a.selected,
.category-life-art-test #sidebar_menu ul li a.selected,
.term-life-art #sidebar_menu ul li a.selected,
.term-life-art-test #sidebar_menu ul li a.selected,
.term-art #sidebar_menu ul li a.selected,
.term-beauty-business #sidebar_menu ul li a.selected,
.term-wheels #sidebar_menu ul li a.selected,
.term-life #sidebar_menu ul li a.selected,
.category-life-art #sidebar_menu ul li a.selected,
.category-life-art-test #sidebar_menu ul li a.selected,
.category-art #sidebar_menu ul li a.selected,
.category-beauty-business #sidebar_menu ul li a.selected,
.category-wheels #sidebar_menu ul li a.selected,
.category-life #sidebar_menu ul li a.selected  {
  color: #fff;
}

.category-life section.module.row:before,
.category-life-art section.module.row:before,
.category-life-art-test section.module.row:before,
.term-life-art section.module.row:before,
.term-life-art-test section.module.row:before,
.term-art section.module.row:before,
.term-beauty-business section.module.row:before,
.term-wheels section.module.row:before,
.term-life section.module.row:before,
.category-life-art section.module.row:before,
.category-life-art-test section.module.row:before,
.category-art section.module.row:before,
.category-beauty-business section.module.row:before,
.category-wheels section.module.row:before,
.category-life section.module.row:before  {
  background-color: #0C1068;
}

.category-life .sidebar_post_set li,
.category-life-art .sidebar_post_set li,
.category-life-art-test .sidebar_post_set li,
.term-life-art .sidebar_post_set li,
.term-life-art-test .sidebar_post_set li,
.term-art .sidebar_post_set li,
.term-beauty-business .sidebar_post_set li,
.term-wheels .sidebar_post_set li,
.term-life .sidebar_post_set li,
.category-life-art .sidebar_post_set li,
.category-life-art-test .sidebar_post_set li,
.category-art .sidebar_post_set li,
.category-beauty-business .sidebar_post_set li,
.category-wheels .sidebar_post_set li,
.category-life .sidebar_post_set li {
  border-color: #1C267E; 
}

.category-life .sidebar .ad-row,
.category-life-art .sidebar .ad-row,
.category-life-art-test .sidebar .ad-row,
.term-life-art .sidebar .ad-row,
.term-life-art-test .sidebar .ad-row,
.term-art .sidebar .ad-row,
.term-beauty-business .sidebar .ad-row,
.term-wheels .sidebar .ad-row,
.term-life .sidebar .ad-row,
.category-life-art .sidebar .ad-row,
.category-life-art-test .sidebar .ad-row,
.category-art .sidebar .ad-row,
.category-beauty-business .sidebar .ad-row,
.category-wheels .sidebar .ad-row,
.category-life .sidebar .ad-row {
  background-color: transparent;
}

.category-life .ad-box,
.category-life .sidebar .ad-box,
.category-life-art .sidebar .ad-box,
.category-life-art-test .sidebar .ad-box,
.category-life-art .ad-box,
.category-life-art-test .ad-box,
.term-life-art .sidebar .ad-box,
.term-life-art-test .sidebar .ad-box,
.term-art .sidebar .ad-box,
.term-beauty-business .sidebar .ad-box,
.term-wheels .sidebar .ad-box,
.term-life .sidebar .ad-box,
.term-life-art .ad-box,
.term-life-art-test .ad-box,
.term-art .ad-box,
.term-beauty-business .ad-box,
.term-wheels .ad-box,
.term-life .ad-box,
.category-life-art .sidebar .ad-box,
.category-life-art-test .sidebar .ad-box,
.category-art .sidebar .ad-box,
.category-beauty-business .sidebar .ad-box,
.category-wheels .sidebar .ad-box,
.category-life .sidebar .ad-box,
.category-life-art .ad-box,
.category-life-art-test .ad-box,
.category-art .ad-box,
.category-beauty-business .ad-box,
.category-wheels .ad-box,
.category-life .ad-box {
  background-color: transparent;
}

.category-life time,
.category-life-art time,
.category-life .article-content a,
.category-life-art .article-content a,
.category-life .eng_m_widget_sw:hover .eng_m_widget_is,
.category-life-art .eng_m_widget_sw:hover .eng_m_widget_is,
.category-life .tag,
.category-life-art .tag,
.category-life .category-title,
.category-life-art .category-title,
.category-life-art-test time,
.category-life-art-test .article-content a,
.category-life-art-test .eng_m_widget_sw:hover .eng_m_widget_is,
.category-life-art-test .tag,
.category-life-art-test .category-title {
  color: #ABABAB !important;
}

.category-life .article-content,
.category-life-art .article-content,
.category-life #sidebar_menu ul li a,
.category-life-art #sidebar_menu ul li a,
.category-life-art-test .article-content,
.category-life-art-test #sidebar_menu ul li a,
.category-life-art .sidebar .ad-box,
.category-life-art-test .article-content,
.category-art .article-content,
.category-beauty-business .article-content,
.category-wheels .article-content,
.category-life-art #sidebar_menu ul li a,
.category-life-art-test #sidebar_menu ul li a,
.category-art #sidebar_menu ul li a,
.category-beauty-business #sidebar_menu ul li a,
.category-wheels #sidebar_menu ul li a,
.category-life-art .sidebar .ad-box,
.category-life-art-test .sidebar .ad-box,
.category-art .sidebar .ad-box,
.category-beauty-business .sidebar .ad-box,
.category-wheels .sidebar .ad-box {
  color: #fff;
}


.category-life #fortune_nav_ul,
.category-life-art #fortune_nav_ul,
.category-art #fortune_nav_ul,
.category-beauty-busines #fortune_nav_ul,
.category-wheels #fortune_nav_ul,
.term-life #fortune_nav_ul,
.term-life-art #fortune_nav_ul,
.term-art #fortune_nav_ul,
.term-beauty-busines #fortune_nav_ul,
.term-wheels #fortune_nav_ul {
  color: initial;
}
*/






