/*===============
COLORS
=================
Dark Turquoise
    color:#099;
Dark Orange
    color:#c63;
Light Gray
    color:#bbb;
Dark Gray
    color:#666;
page background
    color: #1a1a1a;
=================
TABLE OF CONTENTS
=================
Prefix your search term with "@" to jump to that section. Eg: to jump to the footer styles, search for "@footer"
layout
-----------------
header
navigation
lightbox
footer
pages
-----------------
home
gallery
- carousels
links audit
- editmode
contact
blog
===============*/
/* @layout resets and global defaults */
*
{
    padding: 0;
    border: 0;
}
html,
body
{
    height: 100%;
    /* ios */
    -webkit-overflow-scrolling: auto;
}
html.touch-true
{
    -webkit-text-size-adjust: none;
}
html
{
    background-color: #000;
}
body
{
    margin: 0;
    overflow-x: hidden;
    color: #bbb; /* default font color: Light gray */
}
#page
{
    min-height: 100%;
    background-color: #1a1a1a;
    position: relative;
}
.hide /* also hides from search engines */
{
    display: block;
    position: absolute;
    visibility: hidden;
}
.error
{
    color: red;
    text-transform: uppercase;
}
body,
input,
select,
textarea,
#footer code
{
    font-family: "Gill Sans", "Gill Sans MT", "Calibri", "Trebuchet MS", sans-serif;
}
body,
input,
select,
textarea
{
    line-height: 1.4em;
    letter-spacing: 0.04em;
}
textarea
{
    vertical-align: top;
}
input,
select,
textarea
{
    font-size: 1em;
    vertical-align: middle;
}
h1, h2, h3, h4, h5, h6
{
    font-weight: normal;
}
ul
{
    list-style-type: none;
}
a,
a:visited
{
    color: #ccc;
}
a:hover
{
    text-decoration: none;
    color: #099;
    cursor: pointer;
}
a:focus
{
    outline: none;
}
/* @fluid width images and objects */
#page img,
.ie8 #page object,
html>/**/body #page object,
.ie8 #page iframe,
html>/**/body #page iframe,
#lightbox img,
.ie8 #lightbox object,
html>/**/body #lightbox object,
.ie8 #lightbox iframe,
html>/**/body #lightbox iframe
{
    max-width:100%;
}
html>/**/body #page img,
html>/**/body #lightbox img
{
    height:auto;
}
.ie8 img
{
    height:auto !important;
    width:auto !important;
}
a,
img
{
    /* prevent image or anchor shift on :hover */
    backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
/* @image loading */
.js img
{
    min-height:33px;
    opacity:0;
    -webkit-transition: opacity 600ms ease-out;
    -moz-transition: opacity 600ms ease-out;
    -ms-transition: opacity 600ms ease-out;
    -o-transition: opacity 600ms ease-out;
    transition: opacity 600ms ease-out;
}
.js img.img-loaded,
.js img.swiper-lazy-loaded
{
    opacity: 1;
    min-height:0;
}
/* @fonts */
/* embed font icons */
/* @fonts */
@font-face
{
    font-family: 'damico-icons';
    src: url('fonts/stainedglass-icons.eot?93278350');
    src: url('fonts/stainedglass-icons.eot?93278350#iefix') format('embedded-opentype'),
    url('fonts/stainedglass-icons.woff2?93278350') format('woff2'),
    url('fonts/stainedglass-icons.woff?93278350') format('woff'),
    url('fonts/stainedglass-icons.ttf?93278350') format('truetype'),
    url('fonts/stainedglass-icons.svg?93278350#stainedglass-icons') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* @glyph codes */
/*
.icon-menu:before { content: '\e800'; }
.icon-cancel:before { content: '\e801'; }
.icon-right-open:before { content: '\f006'; }
.icon-facebook:before { content: '\e803'; }
.icon-instagram:before { content: '\e804'; }
.icon-linkedin:before { content: '\e805'; }
.icon-twitter:before { content: '\e806'; }
.icon-mail:before { content: '\e80c'; }
.icon-tags:before { content: '\e80d'; }
.icon-pinterest:before { content: '\f231'; }
*/
/* @load spin */
@-webkit-keyframes rotation
{
    from {-webkit-transform: rotate(0deg);}
    to   {-webkit-transform: rotate(359deg);}
}
@-khtml-keyframes rotation
{
    from {-khtml-transform: rotate(0deg);}
    to   {-khtml-transform: rotate(359deg);}
}
@-moz-keyframes rotation
{
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(359deg);}
}
@-ms-keyframes rotation
{
    from {-moz-transform: rotate(0deg);}
    to   {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation
{
    from {-o-transform: rotate(0deg);}
    to   {-o-transform: rotate(359deg);}
}
@keyframes rotation
{
    from {transform: rotate(0deg);}
    to   {transform: rotate(359deg);}
}
.loading
{
    position: relative;
}
.dcl-edit .loading
{
    display: none;
}
.loading:before,
.loading:after,
.swiper-lazy-preloader:before,
.swiper-lazy-preloader:after
{
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top:-28px;
    margin-left:-28px;
    border-radius: 110%;
    -webkit-transition: opacity 250ms linear, visibility 250ms linear;
    -khtml-transition: opacity 250ms linear, visibility 250ms linear;
    -moz-transition: opacity 250ms linear, visibility 250ms linear;
    -ms-transition: opacity 250ms linear, visibility 250ms linear;
    transition: opacity 250ms linear, visibility 250ms linear;
}
.loading:before
{
    border:3px solid rgba(200,200,200,0.2);
}
.swiper-lazy-preloader:before
{
    border:3px solid rgba(255,255,255,0.25);
}
.loading:after,
.swiper-lazy-preloader:after,
.rotate
{
    -webkit-animation: rotation 0.75s infinite linear;
    -khtml-animation: rotation 0.75s infinite linear;
    -moz-animation: rotation 0.75s infinite linear;
    -o-animation: rotation 0.75s infinite linear;
    animation: rotation 0.75s infinite linear;
}
.loading:after,
.swiper-lazy-preloader:after
{
    border: 3px solid transparent;
}
.loading:after
{
    border-top-color:#fff;
}
.swiper-lazy-preloader:after
{
    border-top-color: #fff;
}
.loading-done:before,
.loading-done:after
{
    visibility:hidden;
    opacity:0;
}
/* @header */
#header
{
    position: fixed;
    width: 100%;
    background: #000;
    border-bottom: 2px solid #777;
    padding-bottom: 10px;
    z-index: 5;
}
#header .wrapper
{
    text-align: center;
}
#header h1
{
    font-size: 3.4em;
    font-family: "Georgia", "Palatino", "Palatino Linotype", "Times", "Times New Roman", serif;
    margin: 0 auto;
    padding-top: 12px;
    letter-spacing: 0.05em;
    color: #ddd;
    position: relative;
}
#header h1 img
{
    width: 1em;
    height: auto;
}
#header h1 span.wrapTitle
{
    white-space: nowrap;
    font-size: 0.7em;
}
#header h1 span.wrapTitleText
{
    display: none;
}
#header h1 span.wrapSubtitle
{
    font-family: "Gill Sans", "Gill Sans MT", "Calibri", "Trebuchet MS", sans-serif;
    color: #444;
    font-weight: normal;
    letter-spacing: 0.21em;
    bottom: 0;
    white-space: nowrap;
    font-size: 0.35em;
    line-height: 1.2em;
    display: none;
    position: relative;
}
#header h1 span.color1,
#header h1 span.color3,
#header h1 span.color5,
#header h1 span.color7,
#header h1 span.color9,
#header h1 span.color11
{
    color: #099;
}
#header h1 span.color2,
#header h1 span.color4,
#header h1 span.color6,
#header h1 span.color8,
#header h1 span.color10
{
    color: #c63;
}
#header h1 em
{
    font-family: "Gill Sans", "Gill Sans MT", "Calibri", "Trebuchet MS", sans-serif;
    color: #666;
    display: none;
    letter-spacing: 0.24em;
    position: absolute;
    right: 0;
    bottom: -1.2em;
}
#content
{
    padding-top: 6em;
    padding-bottom: 4em;
}
#content .wrapper
{
    text-align: left;
}
#content img
{
    max-width: 100%;
    height: auto;
}
/* @burger */
.burger
{
    display: block;
    position: absolute;
    -webkit-box-sizing: border-box;
    -khtml-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    top: 50%;
    padding: 2.5em;
    margin-top: -2.5em;
    z-index: 5;
    -webkit-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out, color 250ms ease-in-out;
    -khtml-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out, color 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out, color 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out, color 250ms ease-in-out;
    transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out, color 250ms ease-in-out;
    opacity: 1;
    visibility: visible;
}
/* ^ set burger visible on breakpoint */
.burger
{
    /*top: 0;*/
    /*margin-top: 0;*/
}
.burger:hover,
.burger:focus
{
    cursor: pointer;
    color: #fff;
}
.burger:before
{
    font-family: 'damico-icons';
    content: "\e800";
    font-size: 1.5em;
    line-height:0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
}
.burger-close
{
    width: 100%;
    border-bottom: 1px solid #777;
    background: #585858 url(../img/aside_bg.jpg) repeat scroll 0 0;
}
#burger-1,
#burger-1-close
{
    right: 0;
    text-align: right;
}
#burger-1-close:before
{
    content: "\f006";
}
#burger-gate
{
    position: fixed;
    z-index: 15;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    -khtml-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    -moz-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    -ms-transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    transition: opacity 250ms ease-in-out, visibility 250ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
/* @navigation */
/* TODO: fix me properly */
#lightbox-content #nav-1:nth-of-type(2)
{
    display: none;
}
#navigation
{
    display: none;
}
#nav-1
{
    text-align: left;
    line-height: 20px;
    margin: 0 auto;
    width: 100%;
    vertical-align: top;
}
#nav-1 li
{
    background-color: #000;
    position: relative;
    width: 9em;
}
#nav-1 ul
{
    width: 63em;
    position: absolute;
    left: 0;
    /*    bottom:-34px;*/
    top: 34px;
    display: none;
    background-color: #1a1a1a;
    opacity: 0.9;
    padding-left: 60em;
    margin-left: -60em;
    /* */
    min-height: 60px;
}
#nav-1 li:last-child ul,
#nav-1 li.last-child ul /* lte IE8 */
{
    text-align: right;
    left: auto;
    right: 0;
    padding-left: 0;
}
#nav-1 ul li
{
    background-color: transparent;
}
#nav-1 li:hover ul
{
    display: block !important;
}
#nav-1 li.current ul
{
    display: block;
}
#nav-1 li:hover ul
{
    z-index: 2;
}
#nav-1 li a,
#nav-1 li a:visited,
#nav-1 li.current li a,
#nav-1 li.current li a:visited
{
    font-family: "Georgia", "Palatino", "Palatino Linotype", "Times", "Times New Roman", serif;
    font-weight: bold;
    display: block;
    font-size: 1.1em;
    text-decoration: none;
    color: #666;
    padding: 6px 0;
    padding-right: 10px;
    padding-left: 4px;
    text-align: left;
    border-bottom: 2px solid #666;
    border-bottom: 2px solid #777;
    word-spacing: normal;
}
#nav-1 li li a,
#nav-1 li li a:visited,
#nav-1 li.current li a,
#nav-1 li.current li a:visited
{
    font-weight: normal !important;
    color: #777;
}
#nav-1 li a:hover,
#nav-1 li.current a,
#nav-1 li.current a:hover,
#nav-1 li.current li.current a:hover
{
    color: #099;
    border-bottom: 2px solid #099;
}
#nav-1 li a:hover
{
    color: #066;
    border-bottom: 2px solid #666;
    border-bottom: 2px solid #777;
}
#nav-1 li:hover a,
#nav-1 li.hover a /* IE6 */
{
    color: #066;
}
#nav-1 li.current:hover a
{
    color: #099;
}
#nav-1 li.current:hover li a,
#nav-1 li:hover li a,
#nav-1 li.hover li a /* IE6 */
{
    color: #777;
}
#nav-1 li li a:hover,
#nav-1 li.current li a:hover,
#nav-1 li.current:hover li a:hover
{
    color: #630;
    border-bottom: 2px solid #666;
    border-bottom: 2px solid #777;
}
#nav-1 li.current li.current a,
#nav-1 li.current li.current a:hover
{
    color: #c63;
    border-bottom: 2px solid #c63;
}
/* @nav in lightbox */
#lightbox-content #nav-1
{
    padding-top: 3em;
    padding-bottom: 3em;
}
#lightbox-content #nav-1 li
{
    width: 100%;
    background: transparent;
}
#lightbox-content #nav-1 li a
{
    padding-top: 1em;
    padding-bottom: 0.5em;
}
#lightbox-content #nav-1 > li
{
    margin-bottom: 1.5em;
}
#lightbox-content #nav-1 li ul
{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    position: static;
    background: transparent;
}
#lightbox-content #nav-1 li ul li
{
    margin-top: 0.5em;
    padding-left: 1.5em;
}
/* @lightbox */
#lightbox
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    text-align: center;
    -webkit-transition: opacity 400ms ease-in-out, visibility 400ms ease-in;
    -khtml-transition: opacity 400ms ease-in-out, visibility 400ms ease-in;
    -moz-transition: opacity 400ms ease-in-out, visibility 400ms ease-in;
    -ms-transition: opacity 400ms ease-in-out, visibility 400ms ease-in;
    transition: opacity 400ms ease-in-out, visibility 400ms ease-in;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.9);
}
html.lb-visible #lightbox
{
    visibility: visible;
    opacity: 1;
}
html.lb-visible-complete,
html.lb-visible-complete body.dcl-view
{
    overflow-y: hidden;
}
#lightbox-content
{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
#lightbox-close
{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}
#lightbox-close-link
{
    display: block;
    padding: 2.5em;
    text-align: center;
    text-decoration: none;
    color: #565656;
    -webkit-transition: color 200ms ease-in-out;
    -moz-transition: color 200ms ease-in-out;
    -ms-transition: color 200ms ease-in-out;
    -o-transition: color 200ms ease-in-out;
    transition: color 200ms ease-in-out;
}
#lightbox-close-link:hover,
#lightbox-close-link:focus
{
    color: #fff;
}
#lightbox-close-link:after
{
    font-family: 'damico-icons';
    content: '\e801';
    display: block;
    line-height: 0;
    position: absolute;
    font-size: 1.5em;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
}
/* @footer */
#footer
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5em;
    background-color: #000;
    border-top: 2px solid #666;
}
#footer-list
{
    text-align: center;
    padding-top: 5px;
    margin: 0 auto;
    color: #444;
    font-size: 0.9em;
    /* CSS3 */
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
}
#footer a,
#footer a:visited
{
    color: #444;
}
#footer li
{
    display: inline;
    padding: 0 10px;
    border-right: 1px solid #333;
}
#footer li.last
{
    border: 0;
}
#footer code
{
    vertical-align: baseline;
}
/* @pages */
/* ----------------- */
/* @gallery */
.dcl-view #gallery-carousel
{
    visibility: hidden;
    width: 100%;
}
.dcl-view #lightbox-content #gallery-carousel
{
    visibility: visible;
    width: 100%;
    vertical-align: top;
}
.lb-type-gallery-image #lightbox-content
{
    max-width: 80em;
    padding:0;
    overflow: hidden;
}
.dcl-edit #gallery-thumbnails
{
    display: none;
}
#gallery-thumbnails li
{
    position: relative;
    border: 1px solid #1a1a1a;
    overflow: hidden;
}
#gallery-thumbnails li:after
{
    content: '';
    display: block;
    padding-top:100%;
}
#gallery-thumbnails li a
{
    background-color: #222;
    box-sizing: border-box;
    display: block;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    padding:0.5em;
    text-align: center;
}
#gallery-thumbnails li a:hover,
#gallery-thumbnails li a:focus
{
    background-color: #333;
}
#gallery-thumbnails li a img
{
    max-height: 100%;
    width: auto;
    color: transparent; /* hide alt text */
}
.richsetGalleryItem
{
    background-color: #333;
    padding: 1.5em;
    overflow: auto;
}
.dcl-view .richsetGalleryItem
{
    height:100vh !important;
}
.dcl-edit .richsetGalleryItem
{
    margin-bottom: 2em;
}
.touch-true .richsetGalleryItem
{
    padding-bottom: 6em;
}
.dcl-view .richsetGalleryItemImage
{
    margin-bottom: 1em;
    position: relative;
    max-height: 94vh;
}
.dcl-view .richsetGalleryItemImage p
{
    /*overwrite decal styles*/
    margin: 0 !important;
    float: none !important;
    /*/*/
    width:100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
}
.dcl-view .richsetGalleryItemImage img
{
    height: 100% !important;
    width: auto;
}
.richsetGalleryItemDescription
{
    text-align: left;
}
.richsetGalleryItemDescription *:first-child
{
    margin-top: 0;
}
/* prevent adding more that one image */
.decalEdit .richsetGalleryItemImage p.rr-add-content:last-of-type
{
    display: none;
}
.dcl-edit .richsetGalleryItemImage,
.dcl-edit .richsetGalleryItemDescription
{
    width: 50%;
}
/* @carousels */
.carousel
{
    position: relative;
/*    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}
.dcl-view .carousel .swiper-container,
.dcl-view .carousel .swiper-wrapper,
.dcl-view .carousel .swiper-slide
{
    height:100%;
}
.dcl-view .swiper-container
{
    overflow: hidden;
}
.dcl-view .carousel .swiper-wrapper
{
    white-space: nowrap;
}
.dcl-view .carousel .swiper-wrapper .swiper-slide
{
    position: relative;
    white-space: normal;
}
dcl-view .carousel .swiper-wrapper .swiper-slide img
{
    color: transparent; /* hide alt text */
    /*max-height:100%;*/
    max-height: calc(100vh - 40px);
    width:auto;
    opacity:0;
    visibility: hidden;
    -webkit-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
    -khtml-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
    transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}
.carousel .swiper-wrapper .swiper-slide-active img.swiper-lazy-loaded,
.touch-true .carousel .swiper-wrapper .swiper-slide img.swiper-lazy-loaded
{
    opacity:1;
    visibility: visible;
}
.carousel .swiper-button
{
    position:absolute;
    top:0;
    bottom:0;
    left:-0.5em;
    width:3.8em;
    z-index: 10;
    -webkit-transition: opacity 300ms ease-in-out;
    -khtml-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    -ms-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
    text-align:center;
    visibility: hidden;
    opacity:0;
}
.touch-false .carousel:hover .swiper-button
{
    opacity: 0.4;
    visibility: visible;
}
.carousel .swiper-button:before,
.carousel .swiper-button:after
{
    content: '';
    display: block;
    position: absolute;
    top:50%;
    left:50%;
}
.carousel .swiper-button:before
{
    width: 22px;
    height: 36px;
    margin-top: -18px;
    margin-left: -11px;
    background-color: #444;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    border-radius:5px;
}
.carousel .swiper-button:after
{
    width: 0;
    height: 0;
    border: 6px solid transparent;
    margin-top: -6px;
}
.carousel .swiper-button-prev:after
{
    border-right-color: #aaa;
    margin-right: -2px;
    left: auto;
    right: 50%;
}
.carousel .swiper-button-next:after
{
    border-left-color: #aaa;
    margin-left: -2px;
}
.carousel .swiper-button:hover,
.carousel .swiper-button:focus
{
    cursor: pointer !important;
    opacity: 1 !important;
}
.carousel .swiper-button-next
{
    text-indent: 0.1em;
    left:auto;
    right:-0.5em;
}
.swiper-button-disabled
{
    opacity: 0 !important;
    visibility: hidden !important;
}
/* @links audit */
.links-audit.wrapper {
    max-width: none;
}
#links-audit #template-tabs {
    padding-left: 0;
    display: flex;
}
#links-audit #template-tabs:before,
#links-audit #template-tabs:after {
    content: "";
    display: block;
    border-bottom: 1px solid #444;
}
#links-audit #template-tabs:before {
    width: 2rem;
    margin-left: -2rem;
}
#links-audit #template-tabs:after {
    flex: auto;
    margin-right: -2rem;
}
#links-audit #template-tabs li {
    list-style: none;
    margin-left: -1px;
    margin-bottom: 0;
}
#links-audit #template-tabs li a {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    border: 1px solid #444;
}
#links-audit #template-tabs li a:hover {
    background-color: #222;
    border-bottom-color: #444 !important;
}
#links-audit #template-tabs li.active a {
    border-bottom-color: transparent;
    pointer-events: none;
    color: #099;
}
#links-audit h1 {
    margin-top: -2rem;
}
#links-audit [data-dcl-page="template"] {
    font-weight: bold;
}
#links-audit table {
    width: 100%;
    table-layout: fixed;
    text-align: left;
    border-collapse: collapse;
}
#links-audit th,
#links-audit td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    vertical-align: top;
}
#links-audit th:first-child,
#links-audit td[data-dcl-page="date"] {
    padding-left: 0;
    width: 5rem;
}
#links-audit th:last-child,
#links-audit td:last-child {
    padding-right: 0;
}
#links-audit table thead th {
    padding-bottom: 0.5rem;
}
#links-audit table .page-group-first td {
    padding-top: 0.5rem;
    border-top: 1px solid #444;
}
#links-audit table .page-group-last td {
    padding-bottom: 0.5rem;
}
#links-audit table .link-count,
#links-audit table .link-code {
    width: min-content;
    text-align: center;
}
#links-audit table .link-status {
    text-align: center;
}
#links-audit table thead .link-status {
    width: 4rem;
}
#links-audit table tbody .link-status {
    text-transform: uppercase;
}
#links-audit table tbody .link-status.active {
    color: green;
}
#links-audit table tbody .link-status.unclear {
    color: orange;
}
#links-audit table tbody .link-status.dead {
    color: red;
}
#links-audit table a {
    display: block;
}
#links-audit table [data-dcl-page="url"],
#links-audit table [data-dcl-link="href"],
#links-audit table [data-dcl-link="text"],
#links-audit table [data-dcl-link="title"] {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
#links-audit #pagination {
    padding-left: 0;
    margin-top: 2rem;
    display: flex;
}
#links-audit #pagination li {
    list-style: none;
}
#links-audit #pagination li a {
    display: block;
    border: 1px solid #444;
    width: 2rem;
    text-align: center;
    margin-left: -1px;
}
#links-audit #pagination li a:hover {
    background-color: #222;
    border-bottom-color: #444 !important;
}
#links-audit #pagination li.active a {
    border-color: transparent;
    pointer-events: none;
    padding-left: 1px;
    padding-right: 1px;
    color: #099;
}
/* @editmode info text */
/* Local dev view/editmode layouts */
.dcl-local .dcl-view [editmode-only=true],
.dcl-local .dcl-edit [viewmode-only=true] {
    display: none;
}
/* Decal editmode helper text */
.dcl-edit [data-dcl-editmode-info] {
    outline: 4px dotted yellow;
    outline-offset: -8px;
    padding-top: 4px;
    padding-bottom: 4px;
}
.dcl-edit [data-dcl-editmode-info]:before {
    content: attr(data-dcl-editmode-info);
    font-family: monospace;
    font-style: italic;
    display: inline-table;
    flex: -moz-available;
    padding: 0.5rem;
    margin: 1rem auto;
    background: yellow;
    color: #000;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
/* @contact */
#contactForm
{
    width: 670px;
    display: none; /* replaced with wufoo form */
}
#contactForm input.text,
#contactForm select,
#contactForm textarea
{
    clear: both;
    padding: 3px 5px;
    background-color: #333;
    color: #bbb;
    text-align: left;
}
#contactForm input.text,
#contactForm textarea
{
    margin-bottom: 5px;
    width: 392px;
}
#contactForm textarea
{
    height: 7.4em;
}
#contactForm p.formError
{
    color: #c63;
}
#contactForm .req
{
    color: #099;
    display: block;
    float: left;
    margin-left: -1em;
    width: 1em;
}
#contactForm label
{
    float: left;
    width: 134px;
    clear: both;
    line-height: 1.2em;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-bottom: 5px;
}
#contactForm input.submit
{
    padding: 2px 5px;
    background-color: #366;
    color: #000;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 134px;
    /* CSS3 */
    /*
        box-shadow:0 0 8px #000;
        -moz-box-shadow:0 0 8px #000;
        -webkit-box-shadow:0 0 8px #000;
        border-radius:10px;
        -moz-border-radius:10px;
        -webkit-border-radius:10px;
    */
}
#contactForm input.submit:hover
{
    background-color: #099;
    cursor: pointer;
}
/* @blog */
.blog {
    color: #eee;
}
.blog #content .blogItem,
.blog #content .blogItem,
.blog #content .blogNav
{
    text-align: left;
}
.blog #content .blogItem
{
    clear: both;
    position: relative;
    margin-bottom: 2em;
    padding-left: 90px;
}
.blog #content .blogItemTitle
{
    margin-top: 0;
}
.blog #content .blogItemDate
{
    text-align: center;
    width: 60px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5em;
    background-color: #333;
}
.blog #content .blogItemDate strong
{
    font-weight: normal;
    display: block;
    padding: 10px;
    color: #c63;
    text-shadow: 0 1px 2px #000;
}
.blog #content .blogItemDate span
{
    display: block;
    line-height: 1.1em;
}
.blog #content .blogItemDateDay
{
    font-size: 1.6em;
}
.blog #content .blogItemDateMonth
{
}
.blog #content .blogItemDateYear
{
    font-size: 0.8em;
}
.blog #content .blogItemDetails
{
    background-color: #333;
    padding: 4px 0;
    margin-bottom: 2em;
}
.blog #content .blogItemDetails p
{
    margin-bottom: 0;
    padding: 6px 12px;
}
.blog #content #disqus_thread
{
}
.blog #content #disqus_thread select
{
    padding: 2px;
    border: 2px solid #ddd;
}
.blog #content #disqus_thread *,
.blog #content #disqus_thread textarea
{
    font-size: 16px;
}
.blog #content #disqus_thread button
{
    font-size: 14px;
}
.blog #content .blogNav
{
    padding: 0;
    margin-bottom: 1em;
}
.blog #content .blogNav a
{
    max-width: 40%;
}
.blog #content .blog-aside
{
    text-align: left;
}
.blog #content .blog-aside .richset li
{
    margin-bottom: 0;
}
.blog #content .blogNav a,
.blog #content .blog-aside .richset a
{
    border-bottom: 0;
    text-decoration: underline;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    display: inline-block;
}
.blog #content .blogNav a:hover,
.blog #content .blogNav a:focus,
.blog #content .blog-aside .richset a:hover,
.blog #content .blog-aside .richset a:focus
{
    text-decoration: none;
}
.blog #content .blogNav .anchorPrevious
{
    float: left;
}
.blog #content .blogNav .anchorNext
{
    float: right;
    text-align: right;
}
.blog #content .blog-aside .richset
{
    padding: 20px;
    padding-bottom: 1px;
    margin-bottom: 20px;
    background-color: #333;
}
.blog #content .blog-main .richset h4
{
    font-weight: bold;
}
.blog #content .blog-aside .richset h4
{
    margin-top: 0;
    color: #c63;
}
.blog #content .blog-aside .richset ul
{
    padding: 0;
    list-style-type: none;
}
.blog #content .blog-aside .richset p
{
    color: #999;
}
.blog #content .blog-aside .richset #twitter,
.blog #content .blog-aside .richset #facebook
{
    float: left;
    position: relative;
    width: 40%;
}
.blog #content .blog-aside .richset #twitter
{
    left: 5px;
}
.blog #content .blog-aside .richset #facebook
{
    left: 15px;
}
.blog .blog-aside a:focus,
.blog .blog-aside a:hover
{
    color: #c63;
}
.blog a.anchorPrevious,
.blog a.anchorNext,
.blog a.anchorSearch,
.blog a.anchorPermalink,
.blog a.anchorComment,
.blog a.anchorRss
{
    padding-top: 0.2em;
}
.blog a.anchorPrevious,
.blog a.anchorPrevious:visited
{
    padding-left: 20px;
    background: transparent url(../images/icon-previous.gif) scroll no-repeat left center;
}
.blog a.anchorPrevious:hover,
.blog a.anchorPrevious:focus
{
    background-image: url(../images/icon-previous_009999.gif);
}
.blog a.anchorNext,
.blog a.anchorNext:visited
{
    padding-right: 20px;
    background: transparent url(../images/icon-next.gif) scroll no-repeat right center;
}
.blog a.anchorNext:hover,
.blog a.anchorNext:focus
{
    background-image: url(../images/icon-next_009999.gif);
}
.blog a.anchorComment,
.blog a.anchorComment:visited
{
    padding-right: 20px;
    background: transparent url(../images/icon-comment.png) scroll no-repeat right center;
}
.blog a.anchorComment:hover,
.blog a.anchorComment:focus
{
    background-image: url(../images/icon-comment_009999.png);
}
.blog a.anchorRecent,
.blog a.anchorRecent:visited
{
    padding-left: 20px;
    background: transparent url(../images/icon-recent.png) scroll no-repeat left center;
}
.blog a.anchorRecent:hover,
.blog a.anchorRecent:focus
{
    background-image: url(../images/icon-recent_cc6633.png);
}
.blog a.anchorSearch,
.blog a.anchorSearch:visited
{
    padding-right: 20px;
    background: transparent url(../images/icon-search.png) scroll no-repeat right center;
}
.blog a.anchorSearch:hover,
.blog a.anchorSearch:focus
{
    background-image: url(../images/icon-search_009999.png);
}
.blog a.anchorPermalink,
.blog a.anchorPermalink:visited
{
    padding-right: 20px;
    background: transparent url(../images/icon-link.png) scroll no-repeat right center;
}
.blog a.anchorPermalink:hover,
.blog a.anchorPermalink:focus
{
    background-image: url(../images/icon-link_009999.png);
}
.blog a.anchorRss,
.blog a.anchorRss:visited
{
    padding-left: 20px;
    background: transparent url(../images/icon-rss-16.png) scroll no-repeat left center;
}
.blog a.anchorRss:hover,
.blog a.anchorRss:focus
{
    background-image: url(../images/icon-rss-16_cc6633.png);
}
.blog #dsq-global-toolbar a,
.blog #dsq-pagination a,
.blog .dsq-avatar a,
.blog .dsq-comment-header a,
.blog .dsq-comment-meta a
{
    border: 0;
}
/* reposition wufoo form on contact page */
#wufoo-z7x3x5
{
    margin-left: -10px;
}
/* @debug */
*
{
    /*outline: 1px solid yellow;*/
}
