/*
Theme Name: Aperture Mod
Version: 2021.11.1
Description: Designed by <a href="http://www.markforrester.co.za">Mark Forrester</a>.
Author: WooThemes
Author URI: http://www.woothemes.com
*/

/*------------------------------------------------------------------
[ STYLE.CSS ] Main Stylesheet
--------------------------------------------------------------------

[Table of contents]

1.	RESET

2.	MAIN STYLES
2.a  Tags defaults
2.b  Base layout
2.c  Navigations
2.d  Elements, ID's & Classes

3.	FORMS
3.a  Form styles
3.b  Individual forms

4.	PLUGINS

5.	PRINT

6. GRAVITY FORMS


/*------------------------------------------------------------------

1.	RESET
	Global reset for all HTML elements

------------------------------------------------------------------*/

@media handheld,
projection,
screen,
print {

    * {
        font-family: inherit;
        font-size: 100%;
        font-style: inherit;
        font-weight: inherit;
        margin: 0;
        outline: 0;
        padding: 0;
        vertical-align: baseline
    }

    html {
        height: 100%
    }

    body {
        background: #fff;
        color: #000;
        font-size: 100.01%;
        min-height: 101%;
        text-align: left
    }

    body.search #footer,
    body.search #sidebar {
        display: none;
    }

    body.search #contentWrap.container_16 .grid_8 {
        width: 100%;
        margin: 0;
    }

    img,
    fieldset,
    abbr,
    acronym {
        border: 0
    }

    ul,
    ol {
        list-style: none
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
        width: 100%
    }

    address,
    caption,
    cite,
    code,
    dfn,
    em,
    strong,
    th,
    var {
        font-style: normal;
        font-weight: normal;
    }

    caption,
    th {
        text-align: left
    }

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

    input,
    select,
    textarea,
    button {
        font-size: 1em;
        line-height: normal;
        width: auto;
        vertical-align: middle
    }

    textarea {
        height: auto;
        overflow: auto
    }

    option {
        padding-left: 0.6em
    }

    button {
        background: none;
        border: 0;
        cursor: pointer;
        text-align: center
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-weight: normal;
        line-height: normal;
        color: #666666;
    }


}

@media handheld,
projection,
screen {


    /*------------------------------------------------------------------

2.	MAIN STYLES
	General definitions

--------------------------------------------------------------------

/*-------------------------------
2.a Tags defaults
---------------------------------
[?] Tags only. No classes or ID's here.
*/

    body {
        font-family: "Lucida sans", Arial, Helvetica, sans-serif;
        font-size: 75%;
        line-height: 1.5em;
        text-align: center;
        padding: 0 0 30px;
        color: #666666;
    }

    p,
    ul,
    ol,
    table {
        margin: 0 0 1.33em
    }

    strong {
        color: #202325;
        font-weight: bold
    }

    em {
        font-style: italic
    }


    /* Headlines */
    h1 {
        color: #181818;
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1em;
        margin: 0 0 15px;
    }

    h2 {
        color: #181818;
        font-size: 1.5em;
        font-weight: bold;
        line-height: 1em;
        margin: 0 0 20px;
    }

    h3 {
        color: #181818;
        font-size: 1.35em;
        font-weight: bold;
        line-height: 1em;
        margin: 0 0 15px;
    }

    h4 {
        color: #181818;
        font-size: 1.2em;
        font-weight: bold;
        line-height: 1em;
        margin: 0 0 15px;
    }

    h5 {
        color: #181818;
        font-size: 1em;
        margin: 0 0 15px;
    }

    h6 {
        color: #181818;
        font-size: .90em;
        margin: 0 0 15px;
    }

    #footer h5 {
        margin-bottom: 0 !important;
    }


    /* Anchors */
    a,
    a:link,
    a:visited {
        text-decoration: none;
    }

    a:hover,
    a:active,
    a.active {
        text-decoration: underline;
    }



    /*-------------------------------
2.b Base layout
---------------------------------
[?] Mostly ID's. Classes & tags allowed.
*/

    #preloader {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: fixed;
        background-color: #fff;
        z-index: 999999;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    #status {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: auto;
        width: 80px;
        margin-left: -40px;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        text-align: center;
    }

    #status>div {
        width: 20px;
        height: 20px;
        background-color: #181818;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: loading 1.4s infinite ease-in-out both;
        animation: loading 1.4s infinite ease-in-out both;
    }

    #status .circle1 {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    #status .circle2 {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
    }

    @-webkit-keyframes loading {

        0%,
        80%,
        100% {
            -webkit-transform: scale(0);
        }

        40% {
            -webkit-transform: scale(1);
        }
    }

    @keyframes loading {

        0%,
        80%,
        100% {
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        40% {
            -webkit-transform: scale(1);
            transform: scale(1);
        }
    }

    .pswp {
        display: none;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        overflow: hidden;
        -ms-touch-action: none;
        touch-action: none;
        z-index: 999999;
        -webkit-text-size-adjust: 100%;
        -webkit-backface-visibility: hidden;
        outline: none;
    }

    .pswp * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .pswp img {
        max-width: none;
    }

    .pswp--animate_opacity {
        opacity: 0.001;
        will-change: opacity;
        -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
        transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    }

    .pswp--open {
        display: block;
    }

    .pswp--zoom-allowed .pswp__img {
        cursor: -webkit-zoom-in;
        cursor: -moz-zoom-in;
        cursor: zoom-in;
    }

    .pswp--zoomed-in .pswp__img {
        cursor: -webkit-grab;
        cursor: -moz-grab;
        cursor: grab;
    }

    .pswp--dragging .pswp__img {
        cursor: -webkit-grabbing;
        cursor: -moz-grabbing;
        cursor: grabbing;
    }

    .pswp__bg {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        will-change: opacity;
    }

    .pswp__scroll-wrap {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .pswp__container,
    .pswp__zoom-wrap {
        -ms-touch-action: none;
        touch-action: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    /* Prevent selection and tap highlights */
    .pswp__container,
    .pswp__img {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }

    .pswp__zoom-wrap {
        position: absolute;
        width: 100%;
        -webkit-transform-origin: left top;
        -ms-transform-origin: left top;
        transform-origin: left top;
        /* for open/close transition */
        -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
        transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
    }

    .pswp__bg {
        will-change: opacity;
        /* for open/close transition */
        -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
        transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    }

    .pswp--animated-in .pswp__bg,
    .pswp--animated-in .pswp__zoom-wrap {
        -webkit-transition: none;
        transition: none;
    }

    .pswp__container,
    .pswp__zoom-wrap {
        -webkit-backface-visibility: hidden;
    }

    .pswp__item {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        overflow: hidden;
    }

    .pswp__img {
        position: absolute;
        width: auto;
        height: auto;
        top: 0;
        left: 0;
    }

    .pswp__img--placeholder {
        -webkit-backface-visibility: hidden;
    }

    .pswp__img--placeholder--blank {
        background: #222;
    }

    .pswp--ie .pswp__img {
        width: 100% !important;
        height: auto !important;
        left: 0;
        top: 0;
    }

    .pswp__error-msg {
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        text-align: center;
        font-size: 14px;
        line-height: 16px;
        margin-top: -8px;
        color: #CCC;
    }

    .pswp__error-msg a {
        color: #CCC;
        text-decoration: underline;
    }

    .pswp__button {
        width: 44px;
        height: 44px;
        position: relative;
        background: none;
        cursor: pointer;
        overflow: visible;
        -webkit-appearance: none;
        display: block;
        border: 0;
        padding: 0;
        margin: 0;
        float: right;
        opacity: 0.75;
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .pswp__button:focus,
    .pswp__button:hover {
        opacity: 1;
    }

    .pswp__button:active {
        outline: none;
        opacity: 0.9;
    }

    .pswp__button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

    /* pswp__ui--over-close class it added when mouse is over element that should close gallery */
    .pswp__ui--over-close .pswp__button--close {
        opacity: 1;
    }

    .pswp__button,
    .pswp__button--arrow--left:before,
    .pswp__button--arrow--right:before {
        background: url(images/default-skin.png) 0 0 no-repeat;
        background-size: 264px 88px;
        width: 44px;
        height: 44px;
    }

    @media (-webkit-min-device-pixel-ratio: 1.1),
    (-webkit-min-device-pixel-ratio: 1.09375),
    (min-resolution: 105dpi),
    (min-resolution: 1.1dppx) {

        /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
        .pswp--svg .pswp__button,
        .pswp--svg .pswp__button--arrow--left:before,
        .pswp--svg .pswp__button--arrow--right:before {
            background-image: url(images/default-skin.svg);
        }

        .pswp--svg .pswp__button--arrow--left,
        .pswp--svg .pswp__button--arrow--right {
            background: none;
        }
    }

    .pswp__button--close {
        background-position: 0 -44px;
    }

    .pswp__button--share {
        background-position: -44px -44px;
    }

    .pswp__button--fs {
        display: none;
    }

    .pswp--supports-fs .pswp__button--fs {
        display: block;
    }

    .pswp--fs .pswp__button--fs {
        background-position: -44px 0;
    }

    .pswp__button--zoom {
        display: none;
        background-position: -88px 0;
    }

    .pswp--zoom-allowed .pswp__button--zoom {
        display: block;
    }

    .pswp--zoomed-in .pswp__button--zoom {
        background-position: -132px 0;
    }

    /* no arrows on touch screens */
    .pswp--touch .pswp__button--arrow--left,
    .pswp--touch .pswp__button--arrow--right {
        visibility: hidden;
    }

    /*
              Arrow buttons hit area
              (icon is added to :before pseudo-element)
          */
    .pswp__button--arrow--left,
    .pswp__button--arrow--right {
        background: none;
        top: 50%;
        margin-top: -50px;
        width: 70px;
        height: 100px;
        position: absolute;
    }

    .pswp__button--arrow--left {
        left: 0;
    }

    .pswp__button--arrow--right {
        right: 0;
    }

    .pswp__button--arrow--left:before,
    .pswp__button--arrow--right:before {
        content: '';
        top: 35px;
        background-color: rgba(0, 0, 0, 0.3);
        height: 30px;
        width: 32px;
        position: absolute;
    }

    .pswp__button--arrow--left:before {
        left: 6px;
        background-position: -138px -44px;
    }

    .pswp__button--arrow--right:before {
        right: 6px;
        background-position: -94px -44px;
    }

    /*
          
              2. Share modal/popup and links
          
           */
    .pswp__counter,
    .pswp__share-modal {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .pswp__share-modal {
        display: block;
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 10px;
        position: absolute;
        z-index: 1600;
        opacity: 0;
        -webkit-transition: opacity 0.25s ease-out;
        transition: opacity 0.25s ease-out;
        -webkit-backface-visibility: hidden;
        will-change: opacity;
    }

    .pswp__share-modal--hidden {
        display: none;
    }

    .pswp__share-tooltip {
        z-index: 1620;
        position: absolute;
        background: #FFF;
        top: 56px;
        border-radius: 2px;
        display: block;
        width: auto;
        right: 44px;
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
        -webkit-transition: -webkit-transform 0.25s;
        transition: transform 0.25s;
        -webkit-backface-visibility: hidden;
        will-change: transform;
    }

    .pswp__share-tooltip a {
        display: block;
        padding: 8px 12px;
        color: #000;
        text-decoration: none;
        font-size: 14px;
        line-height: 18px;
    }

    .pswp__share-tooltip a:hover {
        text-decoration: none;
        color: #000;
    }

    .pswp__share-tooltip a:first-child {
        /* round corners on the first/last list item */
        border-radius: 2px 2px 0 0;
    }

    .pswp__share-tooltip a:last-child {
        border-radius: 0 0 2px 2px;
    }

    .pswp__share-modal--fade-in {
        opacity: 1;
    }

    .pswp__share-modal--fade-in .pswp__share-tooltip {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    /* increase size of share links on touch devices */
    .pswp--touch .pswp__share-tooltip a {
        padding: 16px 12px;
    }

    a.pswp__share--facebook:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: -12px;
        right: 15px;
        border: 6px solid transparent;
        border-bottom-color: #FFF;
        -webkit-pointer-events: none;
        -moz-pointer-events: none;
        pointer-events: none;
    }

    a.pswp__share--facebook:hover {
        background: #3E5C9A;
        color: #FFF;
    }

    a.pswp__share--facebook:hover:before {
        border-bottom-color: #3E5C9A;
    }

    a.pswp__share--twitter:hover {
        background: #55ACEE;
        color: #FFF;
    }

    a.pswp__share--pinterest:hover {
        background: #CCC;
        color: #CE272D;
    }

    a.pswp__share--download:hover {
        background: #DDD;
    }

    /*
          
              3. Index indicator ("1 of X" counter)
          
           */
    .pswp__counter {
        position: absolute;
        left: 0;
        top: 0;
        height: 44px;
        font-size: 13px;
        line-height: 44px;
        color: #FFF;
        opacity: 0.75;
        padding: 0 10px;
    }

    /*
              
              4. Caption
          
           */
    .pswp__caption {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        min-height: 44px;
    }

    .pswp__caption small {
        font-size: 11px;
        color: #BBB;
    }

    .pswp__caption__center {
        text-align: left;
        max-width: 420px;
        margin: 0 auto;
        font-size: 13px;
        padding: 10px;
        line-height: 20px;
        color: #CCC;
    }

    .pswp__caption--empty {
        display: none;
    }

    .pswp__caption--fake {
        visibility: hidden;
    }


    .pswp__preloader {
        width: 44px;
        height: 44px;
        position: absolute;
        top: 0;
        left: 50%;
        margin-left: -22px;
        opacity: 0;
        -webkit-transition: opacity 0.25s ease-out;
        transition: opacity 0.25s ease-out;
        will-change: opacity;
        direction: ltr;
    }

    .pswp__preloader__icn {
        width: 20px;
        height: 20px;
        margin: 12px;
    }

    .pswp__preloader--active {
        opacity: 1;
    }

    .pswp__preloader--active .pswp__preloader__icn {
        /* We use .gif in browsers that don't support CSS animation */
        background: url(images/preloader.gif) 0 0 no-repeat;
    }

    .pswp--css_animation .pswp__preloader--active {
        opacity: 1;
    }

    .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
        -webkit-animation: clockwise 500ms linear infinite;
        animation: clockwise 500ms linear infinite;
    }

    .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
        -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
        animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
    }

    .pswp--css_animation .pswp__preloader__icn {
        background: none;
        opacity: 0.75;
        width: 14px;
        height: 14px;
        position: absolute;
        left: 15px;
        top: 15px;
        margin: 0;
    }

    .pswp--css_animation .pswp__preloader__cut {
        /* 
                      The idea of animating inner circle is based on Polymer ("material") loading indicator 
                       by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
                  */
        position: relative;
        width: 7px;
        height: 14px;
        overflow: hidden;
    }

    .pswp--css_animation .pswp__preloader__donut {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 14px;
        height: 14px;
        border: 2px solid #FFF;
        border-radius: 50%;
        border-left-color: transparent;
        border-bottom-color: transparent;
        position: absolute;
        top: 0;
        left: 0;
        background: none;
        margin: 0;
    }

    @media screen and (max-width: 1024px) {
        .pswp__preloader {
            position: relative;
            left: auto;
            top: auto;
            margin: 0;
            float: right;
        }
    }

    @-webkit-keyframes clockwise {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes clockwise {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @-webkit-keyframes donut-rotate {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        50% {
            -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
        }

        100% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }
    }

    @keyframes donut-rotate {
        0% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

        50% {
            -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg);
        }

        100% {
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }
    }

    /*
              
              6. Additional styles
          
           */
    /* root element of UI */
    .pswp__ui {
        -webkit-font-smoothing: auto;
        visibility: visible;
        opacity: 1;
        z-index: 1550;
    }

    /* top black bar with buttons and "1 of X" indicator */
    .pswp__top-bar {
        position: absolute;
        left: 0;
        top: 0;
        height: 44px;
        width: 100%;
    }

    .pswp__caption,
    .pswp__top-bar,
    .pswp--has_mouse .pswp__button--arrow--left,
    .pswp--has_mouse .pswp__button--arrow--right {
        -webkit-backface-visibility: hidden;
        will-change: opacity;
        -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
        transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    }

    /* pswp--has_mouse class is added only when two subsequent mousemove events occur */
    .pswp--has_mouse .pswp__button--arrow--left,
    .pswp--has_mouse .pswp__button--arrow--right {
        visibility: visible;
    }

    .pswp__top-bar,
    .pswp__caption {
        background-color: rgba(0, 0, 0, 0.5);
    }

    /* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
    .pswp__ui--fit .pswp__top-bar,
    .pswp__ui--fit .pswp__caption {
        background-color: rgba(0, 0, 0, 0.3);
    }

    /* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
    .pswp__ui--idle .pswp__top-bar {
        opacity: 0;
    }

    .pswp__ui--idle .pswp__button--arrow--left,
    .pswp__ui--idle .pswp__button--arrow--right {
        opacity: 0;
    }

    /*
              pswp__ui--hidden class is added when controls are hidden
              e.g. when user taps to toggle visibility of controls
          */
    .pswp__ui--hidden .pswp__top-bar,
    .pswp__ui--hidden .pswp__caption,
    .pswp__ui--hidden .pswp__button--arrow--left,
    .pswp__ui--hidden .pswp__button--arrow--right {
        /* Force paint & create composition layer for controls. */
        opacity: 0.001;
    }

    /* pswp__ui--one-slide class is added when there is just one item in gallery */
    .pswp__ui--one-slide .pswp__button--arrow--left,
    .pswp__ui--one-slide .pswp__button--arrow--right,
    .pswp__ui--one-slide .pswp__counter {
        display: none;
    }

    .pswp__element--disabled {
        display: none !important;
    }

    .pswp--minimal--dark .pswp__top-bar {
        background: none;
    }

    #wrap {
        margin: auto;
        text-align: left;
        width: 1000px;
        position: relative;
    }

    #header,
    #content,
    #footer,
    #contentWrap,
    #footerWrap {
        float: left;
        display: inline;
        clear: both;
        position: relative;
    }

    #header {
        height: 105px;
        width: 100%;
    }

    #home #header {
        height: 105px;
    }

    #logo {
        margin: 0
    }

    #logo a {
        cursor: pointer;
    }

    #content {
        width: 1000px;
    }

    #contentWrap {
        margin: 10px;
        width: 940px;
        padding: 20px;
        background-color: #FFFFFF;
    }

    #home #contentWrap {
        padding: 0px;
        width: 980px;
    }

    #home #top {
        padding: 20px
    }

    #home #albums {
        padding: 20px 10px 0px 10px;
        float: left;
    }

    #home #albums p.category {
        margin: 0;
    }

    #home #albums p.category a {
        text-align: center;
        color: #ffffff;
        display: block;
        height: 40px;
        font-size: 15px;
        font-weight: bold;
        line-height: 40px;
        padding: 5px;
        margin-bottom: 20px;
    }

    #home #albums p.category a:hover {
        background-color: #363933;
    }

    .post-image-block {
        background: url(images/post_image_block_bg.jpg);
        width: 220px;
        height: 150px;
        margin-bottom: 1px;
    }

    .category-image-block {
        background: url(images/category_image_block_bg.jpg);
        width: 220px;
        height: 150px;
        margin-bottom: 1px;
    }

    #home #footer {
        padding: 0 20px 20px 20px
    }

    #footer {}

    #footerWrap {
        padding-top: 20px;
    }

    #content {
        padding-bottom: 10px !important;
    }

    #contentWrap {
        margin-bottom: 0 !important;
    }

    /*-------------------------------
2.c Navigations
-------------------------------*/

    /* Page Nav */

    #nav_wrapper {
        height: 30px;
        width: 960px;
        margin: 0 auto;
    }

    #nav {
        height: 30px;
        position: relative;
        top: 0px;
        left: auto;
        z-index: 9999;
        margin: 0;
    }

    #nav a {
        display: block;
        line-height: 30px;
        padding: 0 10px;
        z-index: 100;
        font-size: 11px;
        font-weight: bold;
        text-transform: uppercase;
        color: #ffffff;
    }

    #nav li {
        float: left;
    }

    /* Style drop down list */

    #nav li ul {
        position: absolute;
        width: 172px;
        left: -999em;
    }

    #nav li ul li {
        background: url(images/bg-dropdown.png) !important;
        background: #000;
    }

    #nav li ul li a {
        line-height: 30px;
        width: 150px;
    }

    #nav li ul ul {
        margin: -26px 0 0 170px;
    }

    #nav li ul ul li a {
        line-height: 30px;
        text-transform: none;
    }

    #nav li ul li ul li a {}

    #nav li:hover ul,
    #nav li.sfhover ul {
        left: auto;
    }

    #nav li:hover ul ul,
    #nav li.sfhover ul ul {
        left: -999em;
    }

    #nav li:hover ul,
    #nav li li:hover ul,
    #nav li.sfhover ul,
    #nav li li.sfhover ul {
        left: auto;
    }

    #nav li:hover,
    #nav li.hover {
        position: static;
    }

    /* IE7 Fix */

    /* Pagination */

    .more_entries {
        clear: both;
        margin-bottom: 20px;
        text-align: center;
        padding: 0 20px 0 20px;
    }

    .more_entries .wp-pagenavi strong {
        padding: 5px;
        border: 1px solid #E4E4E4;
        margin-right: 5px;
    }

    .wp-pagenavi span.pages {
        border: none !important;
    }

    .more_entries .wp-pagenavi a strong {
        padding: 0;
        border: none;
        margin-right: 0;
    }

    .more_entries .wp-pagenavi a,
    .more_entries .wp-pagenavi .on {
        padding: 5px !important;
        border: 1px solid #E4E4E4 !important;
        margin-right: 5px !important;
    }

    .more_entries .wp-pagenavi .on {
        font-weight: bold;
    }

    .more_entries .wp-pagenavi a:hover {
        background-color: #E4E4E4;
        color: #333333;
    }

    #prevPosts {
        background: #232528;
        width: 460px;
        height: 200px;
        position: relative;
    }

    #prevPosts h3 {
        color: #fff;
        height: 32px;
        padding: 5px 0 0 0;
        position: absolute;
        top: 10px;
        left: 10px;
    }


    /*-------------------------------
2.d Elements, ID's & Classes
-------------------------------*/

    div#about {
        color: #fff;
        padding: 10px;
        margin-bottom: 20px;
    }

    #about h2 {
        color: #fff;
        font-size: 1.35em;
        text-transform: uppercase;
        margin: 0 0 12px;
        color: #FFFFFF !important;
    }

    #about .about_button {
        padding: 5px;
        text-decoration: none;
        text-transform: uppercase;
    }


    #about .about_image {
        width: 100%;
        height: 220px;
        border: none !important;
    }

    #home #header p {
        font-size: 1.17em;
        line-height: 1.43em;
    }

    a.rss_subscribe {
        background-image: url(images/rss_icon.png);
        background-repeat: no-repeat;
        background-position: left center;
        padding-left: 20px;
    }


    /*=== Category Dropdown navigation ===*/


    #button {
        height: 30px;
        width: 184px;
        margin: auto;
        position: absolute;
        top: 35px;
        right: 30px;
        z-index: 1;
        cursor: pointer;
    }

    .menu_class {
        margin-bottom: -5px;
    }

    .the_menu {
        display: none;
        width: 184px;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-left-width: 1px;
        border-top-style: none;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
    }

    .the_menu ul.children {
        margin-bottom: 0;
    }


    .the_menu ul.children li {
        padding-left: 20px;
    }

    .the_menu ul.children li a {
        font-size: 11px;
    }

    .the_menu li a {
        color: #FFFFFF;
        text-decoration: none;
        padding: 10px;
        display: block;
    }

    .the_menu li a:hover {
        padding: 10px;
        font-weight: bold;
    }


    /*=== Slider ===*/

    .stepcarousel {
        position: relative;
        /*leave this value alone*/
        overflow: scroll;
        /*leave this value alone*/
        width: 700px;
        height: 267px;
        /*Height should enough to fit largest content's height*/
    }

    .stepcarousel .belt {
        position: absolute;
        /*leave this value alone*/
        left: 0;
        top: 0;
    }

    .stepcarousel .panel {
        float: left;
        /*leave this value alone*/
        overflow: hidden;
        /*clip content that go outside dimensions of holding panel DIV*/
        width: 700px;
        /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
    }

    #featured {
        float: left;
        width: 700px;
        height: 267px;
    }

    .featured_text {
        padding: 20px 20px 0 0;
    }

    .featured_text h2 {
        text-transform: uppercase;
    }

    /*=== Slider Navigation ===*/

    #slider_nav {
        color: #dddddd;
        padding: 10px 20px 10px 20px;
        line-height: 20px;
        height: 20px;
        font-family: Arial, Helvetica, sans-serif;
        text-transform: uppercase;
        font-weight: bold;
        margin-top: 20px;
    }

    #slider_nav img {
        vertical-align: middle;
    }

    #slider_nav p {
        line-height: 20px;
        margin: 0 !important;
        color: #dddddd;
        text-align: right;
    }

    #slider_nav a {
        color: #ffffff;
        text-decoration: none;
    }

    #slider_nav a img {
        margin: 0 5px;
    }

    /* New Slider */
    #slides {
        position: relative;
    }

    #slides .slides_holder {
        margin: 0;
        padding: 0px;
        width: 700px;
        height: 267px;
    }

    #slides .slides_container .slide {
        display: none;
    }

    /* Make sure the slider doesn't display all slides in a stack on load */
    #slides .slides_container .slide:first-child {
        display: block;
    }

    /* Show first slide while it loads */
    #slides #slider_nav {
        position: relative;
        width: 940px;
    }

    /* Misc */

    #main .thumbnail {
        margin-bottom: 20px;
    }

    h2.single {
        font-size: 2.17em;
        border-bottom: 1px solid #E4E4E4;
        padding-bottom: 20px;
    }

    h2.arh {
        border-bottom: 1px solid #e4e4e4;
        padding-bottom: 20px;
    }

    h2.archive {
        border-bottom: 1px solid #E4E4E4;
        padding-bottom: 20px;
    }

    #sidebar h4,
    #sidebar2 h4 {
        margin: 0 0 3px
    }

    #home #sidebar h4,
    #home #sidebar2 h4 {
        margin: 0 0 18px
    }

    /* Post Entry */

    .entry {
        margin-bottom: 20px;
        border-bottom: 1px solid #E4E4E4;
    }

    .entry blockquote p {
        color: #666;
        font-size: 16px;
        font-style: italic;
        line-height: 22px;
    }

    /* 100811: Morten Ross: Removed because it interfers with plugins like YARPP and Tweet & Like, as they get bullets before icons and thumbs
.entry ul li {
	background:transparent url(images/bullet.gif) no-repeat scroll 4px 4px;
	line-height:140%;
	padding:0 0 1em 18px;
}
 */

    .entry ol li {
        line-height: 140%;
        padding: 0 0 1em 0;
        list-style-position: inside;
        list-style-type: decimal;
    }

    #albums .entry {
        padding: 10px;
        color: #eeeeee;
        border-bottom: none;
    }

    #albums h2 a {
        color: #ffffff;
    }

    p.post_meta {
        font-size: 11px;
        color: #666666;
        margin-bottom: 5px;
    }

    p.post_meta span.details {
        background: url(images/post_meta_bg.jpg) no-repeat;
        padding: 3px 0 3px 21px;
    }

    p.post_meta span.date {
        background: url(images/ico-date.gif) no-repeat;
        padding: 3px 0 3px 21px;
    }

    p.post_meta span.comments {
        background: url(images/ico-comments.gif) no-repeat;
        padding: 3px 0 3px 21px;
    }

    span.read-more a {
        margin-bottom: 1.5em;
        display: block;
    }

    /* Post Image Styling */

    .wp-caption {
        -moz-border-radius-bottomleft: 3px;
        -moz-border-radius-bottomright: 3px;
        -moz-border-radius-topleft: 3px;
        -moz-border-radius-topright: 3px;
        background-color: #EEEEEE;
        border: 1px solid #DDDDDD;
        padding: 4px 0 5px;
        text-align: center;
    }

    .wp-caption-text {
        padding: 3px 0 0;
        font-size: 11px;
    }

    /* Home Page Blog Module */

    #blog .box {
        padding: 10px 10px 0px 10px;
    }

    #blog .box h4 {
        margin-bottom: 5px;
    }

    #blog .box h4 a {
        color: #111111;
    }

    #blog .box a {
        padding: 0px !important;
    }

    #blog .box a:hover {
        text-decoration: underline;
    }

    #line_break {
        margin-top: 2.5em;
        padding-top: 3em;
        border-top: 1px solid #E4E4E4;
    }

    .archive_options {
        float: left;
        padding: 10px 0 10px 0;
        margin-bottom: 20px;
        width: 460px;
    }


    /*=== Comments ===*/

    div#comments {}

    ol.commentlist {
        margin: 20px 0 20px 0;
    }

    ol.commentlist li.odd {
        background-color: #f7f7f7;
    }

    ol.commentlist li h4 {
        margin-bottom: 0;
    }

    ol.commentlist li {
        margin-bottom: 20px;
        position: relative;
    }

    ol.commentlist .comment,
    ol.commentlist .pingback,
    ol.commentlist .trackback {
        background-color: #eeeeee;
        border: 1px solid #cccccc;
        padding: 20px;
    }


    ol.commentlist .avatar {
        float: right;
        display: inline;
        margin: 0 0 20px 20px;
        padding: 4px;
        background-color: #ffffff;
        border: solid 1px #cccccc;
    }

    ol.commentlist li cite {
        font-size: 1.3em;
        font-weight: bold
    }

    ol.commentlist li .comment-meta {
        font-size: .92em;
        margin-bottom: 1em
    }

    ol.commentlist ul.children li {
        position: relative;
        margin-top: 20px;
    }

    ol.commentlist .odd ul.children li {
        background-color: #ffffff;
    }

    ol.commentlist .odd ul li ul.children li {
        background-color: #F4F4F4;
    }

    #respond #author,
    #respond #email,
    #respond #url,
    #respond #comment {
        border: 1px solid #cccccc;
        padding: 5px;
    }

    #respond label {
        padding: 5px;
        margin-left: 5px;
    }

    #respond .cancel-comment-reply {
        margin-bottom: 20px;
    }

    #commentform #submit {
        padding: 10px;
    }

    /*=== Widgetized Footer Section ===*/

    .custom #footerWrap {
        border-top: 1px solid #E4E4E4;
        margin-top: 10px;
        padding-top: 20px;
    }

    #home #footerWrap {
        border-top: none;
        margin-top: 0;
    }

    #footerWrap h4 {
        margin: 0 0 10px
    }

    #footerWrap h2 {
        font-size: 1.33em;
        line-height: 1em;
        padding: 5px 0 5px 0
    }

    #footerWrap h4 {
        color: #2f3032;
        font-size: 1.17em;
        font-weight: bold;
        line-height: 1.43em;
    }

    #footerWrap ul li p {
        color: #333333;
        margin: 0;
    }


    #footerWrap ul li {
        margin: 0;

    }

    #footerWrap ul li ul {
        margin: 5px;
    }

    #footerWrap ul li ul li {
        margin: 0;
        background-color: #f7f7f7;
        padding: 0px;
    }

    #footerWrap ul li ul li a {
        font-weight: normal;
        font-size: 12px;
        color: #333333;
        padding-left: 10px;
    }

    #footerWrap ul li ul li ul li a {
        font-weight: normal;
        font-size: 11px;
        background-color: #f7f7f7;
        padding-left: 10px;
    }

    #footerWrap ul li img {
        text-align: center;
    }

    #footerWrap ul li.clickready {
        cursor: pointer;
    }

    /*=== Widgets ===*/

    .widget {
        margin-bottom: 10px;
    }

    .widget a {
        text-decoration: none;
    }

    .widget a:hover {
        text-decoration: underline;
    }

    .widget ul {
        margin-bottom: 0;
    }

    .widget ul li {
        margin: 0;
        padding: 10px;
        border-width: 1px;
        border-style: dotted;
        border-bottom-style: none !important;
    }

    .widget h3 {
        padding: 5px 0;
        margin-bottom: 20px;
    }

    .widget h4 img {
        float: left;
        margin-right: 10px;
    }

    h3#news {
        padding-left: 35px;
        background-image: url(images/ico-news.gif);
        background-repeat: no-repeat;
        background-position: 0px 5px;
    }

    h3#flickr {
        padding-left: 35px;
        background-image: url(images/ico-flickr.gif);
        background-repeat: no-repeat;
        background-position: 0px 5px;
    }

    h3#photos {
        padding-left: 35px;
        background-image: url(images/ico-photos.gif);
        background-repeat: no-repeat;
        background-position: 0px 5px;
    }

    h3#twitter {
        padding-left: 35px;
        background-image: url(images/ico-twitter.gif);
        background-repeat: no-repeat;
    }


    h3#subscribe {
        padding-left: 35px;
        background-image: url(images/ico-subscribe.gif);
        background-repeat: no-repeat;
    }

    h3#popular {
        padding-left: 35px;
        background-image: url(images/ico-press.gif);
        background-repeat: no-repeat;
        background-position: 0px 5px;
    }

    #recent-comments h3 {
        padding-left: 35px;
        background-image: url(images/ico-comment.gif);
        background-repeat: no-repeat;
    }

    #archives h3 {
        padding-left: 35px;
        background-image: url(images/ico-archives.gif);
        background-repeat: no-repeat;
    }

    .widget_links h3 {
        padding-left: 35px;
        background-image: url(images/ico-blogroll.gif);
        background-repeat: no-repeat;
    }

    ul.news li h4 {
        margin-bottom: 5px !important
    }

    ul.news li img {
        float: left;
        padding: 5px;
        border: 1px solid #cccccc;
        background-color: #FFFFFF;
    }

    ul.news li .content {
        float: left;
        padding: 0 0 0 10px;
        width: 126px;
    }

    #sidebar2 ul.photos {
        width: 240px;
        margin: 0 0 1.5em -20px;
    }

    .flickr .flickr_badge_image {
        float: left;
        display: inline;
        margin: 0 10px 10px 0;
    }

    .flickr_badge_image a {
        padding: 0 !important;
    }

    .flickr .flickr_badge_image a img {
        display: block;
        background-color: #FFFFFF;
        padding: 5px;
        border: 1px solid #cccccc;
    }

    .flickr .flickr_photos {
        padding: 15px 0 10px 16px;
        float: left;
    }

    #twitter_update_list {
        background: #e5edf0;
        border: 1px dotted #b6ccd4;
        color: #434343;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 1.17em;
        font-style: italic;
        line-height: 1.43em;
        text-align: center;
        padding: 10px;
        overflow: hidden;
        margin-bottom: 0;
    }

    #twitter_update_list li {
        margin-bottom: 15px;
        padding: 0 !important;
        border: none !important;
        background-color: transparent !important;
    }

    div.follow {
        color: #e5edf0;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 1.1em;
        font-style: italic;
        padding: 5px;
        text-align: center;
        background-color: #A3B7BD;
        width: 210px;
    }

    div.follow a {
        color: #e5edf0;
    }

    #searchform #s {
        padding: 5px;
        border: 1px solid #cccccc;
        margin-right: 5px;
        width: 146px;
    }

    #searchform #searchsubmit {
        padding: 5px;
        border: 1px solid #cccccc;
        background-color: #000000;
        color: #FFFFFF;
    }

    #wp-calendar {
        width: 99%;
        padding: 0 0 0px 0;
        margin-bottom: 15px;
    }

    #wp-calendar caption {
        font-size: 11px;
        text-align: center;
        padding: 5px;
        text-transform: uppercase;
    }

    #wp-calendar thead tr th {
        color: #000000;
        font-size: 14px;
        font-weight: bold;
        padding-top: 10px;
    }

    #wp-calendar tfoot tr th {
        padding-top: 10px;
    }

    #wp-calendar th {
        color: #fff;
    }

    #wp-calendar th,
    #wp-calendar td {
        padding: 3px;
        text-align: center;
    }

    #wp-calendar td {
        background: transparent;
    }

    #wp-calendar td,
    table#wp-calendar th {
        padding: 3px 0;
    }

    #wp-calendar a {
        text-decoration: underline;
    }

    #wp-calendar a:hover {
        text-decoration: none;
    }

    #footerWrap ul li.recentcomments {
        padding: 5px;
    }

    #footerWrap ul li.recentcomments a {
        background-color: transparent;
    }

    #footerWrap ul li.recentcomments a:hover {
        text-decoration: underline;
        color: #111111;
    }

    #footerWrap .news a {
        padding: 0;
    }

    #footerWrap .widget_tag_cloud a {
        display: inline !important;
    }

    /*=== Adverts ===*/

    .advert {
        float: left;
        text-align: center;
        padding: 20px 10px;
    }

    .home_leaderboard {
        border-bottom: 1px solid #cccccc;
    }

    .content_advert {
        float: left;
        text-align: center;
        background-color: #dddddd;
        padding: 20px 0px;
        margin-bottom: 20px;
    }

    .advert img {
        border: 1px solid #cccccc;
    }

    .header_banner_ad img {
        margin-top: 23px;
    }

    /*=== Credits Footer ===*/

    .credits {
        text-align: center;
        padding-top: 15px;
    }

    .credits a {
        display: inline;
        text-decoration: underline;
    }

    .credits img {
        vertical-align: middle;
    }

    /*------------------------------------------------------------------

3.	FORMS
	Styles for forms only

--------------------------------------------------------------------

/*-------------------------------
3.a Form styles
-------------------------------*/

    input.text,
    select.select,
    textarea.textarea {
        border: 1px solid #B6CCD4;
        color: #000;
        padding: 6px;
    }

    input.text {
        width: 195px
    }

    select.select {
        width: 200px
    }

    textarea.textarea {
        height: 10em;
        width: 446px
    }

    select.select.free {
        width: auto
    }

    button.button {
        color: #000;
        height: auto;
        width: auto;
        line-height: normal;
        white-space: nowrap;
    }

    input.submit {
        color: #000;
        cursor: pointer;
        padding: 0;
    }


    /* General forms */
    form.form {
        /* nothing here */
    }

    form.form ol.fieldset {
        list-style: none
    }

    form.form ol.fieldset li.field {
        margin: 0 0 1em;
        position: relative;
    }

    form.form ol.fieldset li.field label {
        font-weight: bold;
        display: block;
    }

    form.form p.submit {
        /* nothing here */
    }


    /* Search forms where button and text input are next to each other  */
    form.search {
        /* nothing here */
    }

    form.search p.fields {
        margin: 0
    }

    form.search p.fields input,
    form.search p.fields button {
        display: inline;
        vertical-align: middle;
    }


    /*-------------------------------
3.b Individual forms
-------------------------------*/

    form#newsletter {
        position: relative;
        color: #333333;
        padding: 10px;
    }

    form#newsletter p.fields input.text {
        border: 1px solid #b6ccd4;
        padding: 9px 30px 9px 7px;
        width: 158px;
        margin-bottom: 10px;
    }

    form#newsletter p.fields button {
        background: url(images/ico-newsletter.gif) no-repeat;
        width: 17px;
        height: 22px;
        border: none;
        position: absolute;
        top: 16px;
        right: 17px;
        z-index: 9999;
    }

    /*------------------------------------------------------------------

4.	PLUGINS
	Predefined utilities

--------------------------------------------------------------------

/*-------------------------------
Utility classes
-------------------------------*/

    .l {
        text-align: left
    }

    .c {
        text-align: center
    }

    .r {
        text-align: right
    }

    .wrap,
    .col {
        float: left;
        display: inline;
        position: relative;
    }

    .wrap {
        clear: both
    }

    .clear {
        clear: both
    }

    .fl {
        float: left
    }

    .fr {
        float: right
    }

    .hide,
    .hidden,
    .skip {
        display: none
    }

    .nomargin {
        margin-bottom: 0 !important
    }

    .noborder {
        border: 0 !important
    }

    .top {
        margin-top: 0 !important
    }

    .hr {
        background: #ccc;
        height: 1px;
        margin: 1.5em 0;
    }

    .hr hr {
        display: none
    }

    .replace,
    .br {
        display: block;
        font-size: 1%;
        line-height: 0;
        text-align: left;
        text-indent: -10000px;
    }

    .opacity {
        -moz-opacity: 0.95;
        opacity: 0.95;
        filter: alpha(opacity=95);
    }

    .rounded {
        -moz-border-radius: 6px;
        -khtml-border-radius: 6px;
        -webkit-border-radius: 6px;
        border-radius: 6px;
    }

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

    .fix {
        clear: both;
        height: 1px;
        margin: 0 0 -1px;
        overflow: hidden;
    }

    /* Align */

    .aligncenter {
        margin: 10px auto 20px auto;
        display: block;
    }

    .alignleft {
        margin: 10px 20px 8px 0;
        float: left;
    }

    .alignright {
        margin: 10px 0px 8px 20px;
        float: right;
    }

    .thumbnail {
        display: block;
    }

    .box .thumbnail {
        margin: 0 0 5px 0;
    }

}

@media print {

    /*------------------------------------------------------------------

5.	PRINT
	Styles for print

------------------------------------------------------------------*/

    body {
        background: none;
        color: #000;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 10pt
    }

    code,
    pre {
        font-family: "Courier New", Courier, mono
    }

    img {
        float: left;
        clear: left;
        page-break-inside: avoid;
        page-break-after: avoid
    }

    a,
    a:link,
    a:visited {
        color: blue;
        text-decoration: underline
    }

    blockquote,
    table,
    pre {
        page-break-inside: avoid
    }

    ul,
    ol,
    dl {
        page-break-before: avoid
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        display: block;
        font-weight: bold;
        page-break-after: avoid
    }

    #footer,
    .ad,
    #nav,
    .nav,
    form,
    .skip {
        display: none
    }

    h1 {
        font-size: 3em;
        margin: .67em 0;
    }

    h2 {
        font-size: 2em;
        margin: .83em 0;
    }

    h3 {
        font-size: 1.5em;
        margin: 1em 0;
    }

    h4 {
        font-size: 1em;
        margin: 1.33em 0;
    }

    h5 {
        font-size: 0.92em;
        margin: 1.67em 0;
    }

    h6 {
        font-size: 0.83em;
        margin: 2.33em 0;
    }

    /*------------------------------------------------------------------
	END CSS
------------------------------------------------------------------*/

}

/* end @media */