* Make body at least 100% height * You can also use a combination * of height: 100% in <html>and * min-height: 100% in <body>. */ .holy-grail {
    min-height: 100vh;



}

/**
 * Let's do a column distribution
 * (mobile first)
 * flex value is 1 1 auto to make
 * body skrinkable and extensible
 */
.holy-grail,
.holy-grail-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: tow;
}

.holy-grail-body {}

/**
 * Content body item is made
 * extensible too.
 */
.holy-grail-content {
    flex: 1 1 auto;
    margin-left: -2px;
}

/**
 * Put the first sidebar before content.
 * If you need sidebar to be before content
 * only in big screen put those 3 next lines
 * in @media block.
 */
.holy-grail-sidebar-1 {
    order: -1;
    background: #000;
}

/**
 * Let's introduce bigger screen
 */


/**
	 * Sidebars have a basic 260 width
	 * and are not really flexible anymore
	 */
.hg-sidebar {
    flex: 0 0 208px;
}









/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

body {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #b3d4fc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

















/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
        /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

body,
html {
    background: rgb(121, 120, 66) url(home_files/backgroundimage_1.jpg) repeat-x top left;
    margin: 0;
    overflow-x: hidden;
}

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    z-index: -1;
}

.short-page #wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    z-index: -1;
    height: 100%;
}

#right-area {
    margin-left: 208px;
    z-index: 1;
}

header {
    height: 150px;
}

#tag {
    border: none;
    height: 62px;
    width: 247px;
    z-index: 1;
    position: relative;
    top: -53px;
    left: 31px;
    display: block;
}

#sidebar {
    width: 210px;
    float: left;
    background: #000000;
    top: 0;
    bottom: 0;
    position: absolute;
    height: 100%;
}

#logo-area {
    position: relative;
    top: -24px;
    margin-left: 24px;
    height: 156px;
    overflow: hidden
}

nav {
    color: rgb(0, 0, 0);
    font-family: 'Optima-Regular', 'Optima', 'Trebuchet MS', sans-serif;
    font-size: 18px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 26px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

nav {
    position: relative;
    top: -67px;
    left: 331px;
}

nav ul li {
    display: inline;
    padding-right: calc(3rem - 5px);
}

nav a,
nav a:visited {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

nav a:hover,
nav a.current-menu-item {
    color: rgb(250, 250, 250);
    text-decoration: none;
}

div#press-container {
    width: 777px;
    padding: 40px 0 48px;
    margin-left: 65px;
}

p,
ul.press {
    color: #000;
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 36px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 18px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

.press-title-individual {
    color: #000;
    font-family: 'TimesNewRomanPS-ItalicMT', 'Times New Roman', serif;
    font-size: 21px;
    font-stretch: normal;
    font-style: italic;
    font-weight: bold;
    line-height: 25px;
}

.press-title {
    color: #000;
    float: left;
    width: 359px;
    font-family: 'TimesNewRomanPS-BoldItalicMT', 'Times New Roman', serif;
    font-size: 21px;
    font-stretch: normal;
    font-style: italic;
    font-weight: 700;
    line-height: 25px;
    margin: 0;
    letter-spacing: 0;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

ul.press {
    list-style: none;
    margin-left: -40px;
    margin-bottom: 46px;
    clear: left;
}

span.press-bullet {
    margin-right: 4px;
}

span.venue {
    color: #000;
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-size: 21px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

li.press-author-publication {
    margin: 24px 0 18px;
}

li.press-author-publication a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

a.more,
ul.press li a.more {
    color: rgb(255, 255, 255);
    margin-left: 20px;
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
}

a.more:visited,
ul.press li a.more:visited {
    color: rgb(255, 255, 255);
}

li.press-author-publication a:hover,
a.more:hover,
ul.press li a.more:hover {
    color: rgb(148, 17, 0) !important;
}

li.video-item {
    padding: 18px;
}

a.video-link,
a.back:hover {
    color: rgb(148, 17, 0) !important;
}

a.video-link:hover {
    color: rgb(255, 255, 255) !important;
}

a.back {
    color: rgb(255, 255, 255);
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    text-decoration: underline;
}

a.resume {
    padding-left: 100px;
}

p.back {
    padding-top: 36px;
}

.full-review {
    color: rgb(255, 255, 255) !important;
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-weight: 400;
}

.author {
    color: rgb(0, 0, 0);
    font-family: 'TimesNewRomanPS-BoldMT', 'Times New Roman', serif;
    font-size: 16px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 18px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 36px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 38px;
    text-align: left;
    text-decoration: underline;
    text-indent: 0px;
    text-transform: none;
}

.press-full-review .press-title,
span .venue .full-review {
    color: rgb(255, 255, 255) !important;
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-weight: bold;
}


.photo-credit {
    color: rgb(255, 255, 255);
    font-family: 'TimesNewRomanPSMT', 'Times New Roman', serif;
    font-size: 12px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 36px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

.photo-credit-title {
    color: rgb(255, 255, 255);
    font-family: 'TimesNewRomanPS-ItalicMT', 'Times New Roman', serif;
    font-size: 12px;
    font-stretch: normal;
    font-style: italic;
    font-variant: normal;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 15px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 36px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
}

.italic {
    font-style: italic;
}

#full-review-container {
    width: 781px;
    padding-bottom: 48px;
}

.fancybox-skin {
    background-image: url(opera_files/antenna.png) no-repeat top left;
    background: rgb(121, 120, 66) !important;
    color: black !important;
}

.fancybox-opened .fancybox-title {
    display: none;
}