@charset "utf-8";
@import url("base.css");

/* >>>>>>>>>>>>>>>>>>>>>>>> */
/* >   BEGIN GLOBAL CSS   > */
/* >>>>>>>>>>>>>>>>>>>>>>>> */
/* The elements and classes common to multiple sites. */

/* [----------------- Shared -----------------] */

/* Bottom margin. */
h1,
h2,
h3,
ol,
ul,
dl,
p,
.table,
.list-table,
fieldset,
ul.pagination,
ul.buttons,
.error-box,
.success-box,
.attention-box,
.info-box,
.box-body {
    margin-bottom:16px;
}

/* [-------------- HTML Elements -------------] */

html {

}

body {
    font-family:'Arial', 'Helvetica', sans-serif;
    background:#000;
    color:#CCC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color:#FFF;
    letter-spacing:0.01em;
    font-weight:normal;
}

h1 {
    font-size:2.1em;
}

h2 {
    font-size:1.6em;
}

h3 {
    font-size:1.4em;
}

h4 {
    font-size:1.3em;
}

h5 {
    font-size:1.2em;
}

h6 {
    font-size:1.1em;
}

/* [----------------- Links ------------------] */

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

a:active,
a:hover {
    color:#FFFFFF;
    text-decoration:underline;
}

/* [----------------- Tables -----------------] */

.table {
    clear:both;
    border:1px solid #333;
    border-bottom:0;
}

.table caption {
    background-color:#111;
    color:#AAA;
    font-weight:bold;
    padding:8px;
}

.table td {
    background-color:#000;
}

.table th,
.table td {
    padding:8px;
    text-align:center;
}

.table thead th {
    border-bottom:1px solid #333;
    font-weight:bold;
    background:#333 none;
    color:#FFFFFF;
    padding:5px 2px 5px 10px;
}

.table thead th a:link,
.table thead th a:visited {
    color:#FFF;
}

.table thead th a:hover {
    color:#FFF;
}

.table tbody th {
    background-color:#111;
    border-bottom:1px solid #333;
    border-right:1px solid #333;
    color:#CCC;
    font-weight:bold;
}

.table tbody th a:link,
.table tbody th a:visited {
    color:#FFF;
}

.table tbody th a:hover {
    color:#FFF;
}

.table tbody tr:nth-child(even) th {
    background-color:#222;
}

.table tbody td {
    border-bottom:1px solid #333;
}

.table tbody tr:nth-child(even) td {
    background-color:#111;
}

.table tfoot td {
    background-color:#222;
    border-bottom:1px solid #333;
    color:#FFF;
    font-weight:bold;
}

.table tr th:first-child,
.table tr td:first-child {
    text-align:left;
}

/* List Tables. */
.list-table tbody th {
    font-weight:bold;
}

.list-table tbody th,
.list-table tbody td {
    padding:0 0 6px 0;
}

.list-table tbody tr:last-child th,
.list-table tbody tr:last-child td {
    padding-bottom:0;
}
/* ---------- */

/* [----------------- Forms ------------------] */

form {
    clear:both;
}

input,
textarea,
select {
    background-color:#000;
    border:2px solid #333;
    color:#AAA;
    padding:5px;
    -webkit-border-radius:4px;
       -moz-border-radius:4px;
            border-radius:4px;
}

input:focus,
textarea:focus,
select:focus {
    border:2px solid #FD0;
}

fieldset {
    border-bottom:1px solid #333;
    padding:0;
}

fieldset:last-child {
    border:0;
}

legend {
    color:#CCC;
    font-weight:bold;
    font-size:1.5em;
}

.form-item {
    clear:both;
    padding-bottom:16px;
}

label {
    display:block;
    font-weight:bold;
    margin-bottom:2px;
    text-align:left;
}

label.required::before {
    color:red;
    content:"* ";
    font-size:1.2em;
}

label small,
legend small {
    display:block;
    font-size:0.8em;
    font-weight:normal;
}

/* Nested fieldsets for radio buttons & checkboxes. */
.form-item ul {
    list-style:none;
}

.form-item ul,
.form-item ul li {
    margin:0;
    padding:0;
    width:auto;
}

.form-item ul li label {
    font-weight:normal;
    margin:0;
    text-align:left;
    width:auto;
}

.form-item ul li input {
    border:0;
    width:auto;
}
/* ---------- */

/* Form item columns. */
.left-half,
.right-half {
    width:50%;
}

.left-half {
    clear:right;
    float:left;
    padding-right:15px;
}

.right-half {
    clear:none;
    float:right;
    padding-left:15px;
}

/* Multi-column lists. */
fieldset ul.dual-col li,
fieldset ul.tri-col li,
fieldset ul.quad-col li {
    box-sizing:border-box;
    clear:none;
    float:left;
}

fieldset ul.dual-col li {
    width:50%;
}

fieldset ul.tri-col li {
    width:33%;
}

fieldset ul.quad-col li {
    width:25%;
}

/* Responsive multi-column. */
@media only screen and (max-width: 640px) {
    .left-half,
    .right-half {
        clear:both;
        float:none;
        padding-left:0;
        padding-right:0;
        width:100%;
    }

    fieldset ul.dual-col li,
    fieldset ul.tri-col li,
    fieldset ul.quad-col li {
        clear:both;
        float:none;
        width:100%;
    }
}
/* ---------- */

/* Toolbar (search/view/filter). */
form.form-inline fieldset {
    border:0;
    background:#111 none;
    margin-bottom:0;
    padding:8px 8px 0 8px;
}

form.form-inline .form-item {
    display:inline-block;
    margin:0 8px 8px 0;
    padding:0;
}

form.form-inline input {
    width:auto;
}
/* ---------- */

#plupload ul {
    list-style:square;
    margin-bottom:10px;
    margin-left:20px;
}

#plupload ul li {
    padding:0;
}

.bars_complete {
    color:#090;
    font-weight:bold;
}

.bars-incomplete {
    color:#BBB;
    font-weight:bold;
}

/* [----------------- TinyMCE ----------------] */

.mce-content-body {
    background:#000 none;
    padding:10px;
    min-height:100%;
}

.mce-container button:hover {
    background:none;
}

/* [--------------- Pagination ---------------] */

ul.pagination {
    float:left;
    font-size:0.9em;
    list-style:none;
    margin-left:0;
    padding:0;
}

ul.pagination li {
    float:left;
    margin:0 3px 0 0;
}

ul.pagination li.ellipsis {
    border:none;
    font-weight:bold;
    padding-top:3px;
}

ul.pagination li.disabled,
ul.pagination li.current,
ul.pagination li a {
    background-color:#111;
    border:1px solid #333;
    padding:2px 5px 2px 5px;
    text-decoration:none;
}

ul.pagination li a {
    color:#FFF;
    display:block;
}

ul.pagination li.current,
ul.pagination li a:active,
ul.pagination li a:hover {
    border:1px solid #2A2A2A;
    background:#2A2A2A none;
    color:#FFF;
}

ul.pagination li.current {
    font-weight:bold;
}

ul.pagination li.disabled {
    background:#111 none;
    border:1px solid #111;
    color:#333;
}

/* [------------------ Tabs ------------------] */

ul.tabs {
    font-size:0.9em;
    list-style:none;
    margin:0;
    padding:0;
}

ul.tabs li {
    display:inline-block;
}

ul.tabs li a {
    background-color:#222;
    background-image:linear-gradient(to bottom, #AAA 0px, #555 1px, #222 101%);
    border:1px solid #222;
    color:#FFF;
    display:inline-block;
    font-weight:bold;
    text-decoration:none;
    padding:6px 10px 6px 10px;
    -webkit-border-radius:6px 6px 0 0;
            border-radius:6px 6px 0 0;
}

ul.tab li a:link,
ul.tab li a:visited {
    text-decoration:none;
}

ul.tabs li a:hover,
ul.tabs li.current a {
    background-color:#000;
    background-image:linear-gradient(to bottom, #555 0px, #333 1px, #000 101%);
    color:#DDD;
}

ul.tabs li.current a {
    cursor:default;
}

/* [----------------- Buttons ----------------] */

ul.buttons {
    list-style:none;
    margin-left:0;
    padding:0;
}

ul.buttons li {
    display:inline-block;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"],
a.btn,
ul.buttons li a {
    background-color:#222;
    background-image:linear-gradient(to bottom, #AAA 0px, #555 1px, #222 101%);
    border:1px solid #222;
    color:#FD0;
    cursor:pointer;
    display:inline-block;
    font-family:inherit;
    font-size:0.9em;
    font-weight:bold;
    padding:5px 12px;
    text-decoration:none;
    width:auto;
    -webkit-border-radius:5px;
            border-radius:5px;
}

button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
a.btn:hover,
a.btn.current,
ul.buttons li a:hover,
ul.buttons li.current a {
    color:#FFF;
}

a.btn.current,
ul.buttons li.current a {
    cursor:default;
}

button.btn-aux,
input.btn-aux,
a.btn-aux,
ul.buttons li a.btn-aux {
    color:#999;
}

button.btn-aux:hover,
input.btn-aux:hover,
a.btn-aux:hover,
a.btn-aux.current,
ul.buttons li a.btn-aux:hover,
ul.buttons li.current a.btn-aux {
    color:#FFF;
}

button:focus,
button:active,
a.btn:focus,
a.btn:active,
ul.buttons li a:focus,
ul.buttons li a:active,
ul.tabs li a:focus,
ul.tabs li a:active {
    outline:thin dotted;
    outline:5px auto -webkit-focus-ring-color;
    outline-offset:-2px;
}

ul.btn-lg li a,
a.btn-lg,
button.btn-lg,
fieldset.submit button {
    font-size:1.2em;
    font-weight:normal;
    padding:7px 18px;
}

ul.btn-sm li a,
a.btn-sm,
button.btn-sm {
    font-size:0.85em;
    padding:4px 10px;
}

/* [------------------ Boxes -----------------] */

.error-box,
.success-box,
.attention-box,
.info-box {
    background-position:10px 10px;
    background-repeat:no-repeat;
    padding:10px 10px 10px 36px;
}

.error-box {
    background-color:#FFCECE;
    background-image:url('../images/ui/notify_error.png');
    border:1px solid #DF8F8F;
    color:#665252;
}

.success-box {
    background-color:#D5FFCE;
    background-image:url('../images/ui/notify_success.png');
    border:1px solid #9ADF8F;
    color:#556652;
}

.attention-box {
    background-color:#FFFBCC;
    background-image:url('../images/ui/notify_attention.png');
    border:1px solid #E6DB55;
    color:#666452;
}

.info-box {
    background-color:#DBE3FF;
    background-image:url('../images/ui/notify_info.png');
    border:1px solid #A2B4EE;
    color:#585b66;
}

.error-box ul,
.success-box ul,
.attention-box ul,
.info-box ul {
    margin-bottom:0;
    margin-left:16px;
}

.box-head {
    background-color:#222;
    background-image:linear-gradient(to bottom, #AAA 0px, #555 1px, #222 101%);
    border-top:1px solid #444;
    color:#FFF;
    line-height:100%;
    margin:0;
    padding:12px 16px;
}

.box-body {
    background-color:#000;
    border:1px solid #333;
    padding:10px;
}

/* [------------- Generic Classes ------------] */

.bmargin {
    margin-bottom:16px !important;
}

.lmargin {
    margin-left:16px !important;
}

.rmargin {
    margin-right:16px !important;
}

.tmargin {
    margin-top:16px !important;
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* >   BEGIN MAIN SITE CSS   > */
/* >>>>>>>>>>>>>>>>>>>>>>>>>>> */
/* Classes and styles specific to this site. */

/* [------------ Layout Divisions ------------] */

#banner {
    height:144px;
    border-bottom:1px solid #FC0;
    background:#000 url('../images/banner_bg.jpg') repeat-x;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    overflow:hidden;
}

    #banner #logo {
        margin:20px 0 0 20px;
    }

    #navigation {
        list-style:none;
        padding:0;
        margin:0;
        position:absolute;
        bottom:0;
        left:0;
    }

        #navigation li {
            float:left;
        }

            #navigation li a {
                color:#F8F8F8;
                display:block;
                padding:6px 20px;
                text-decoration:none;
                font-family:Arial, Helvetica, sans-serif;
                font-size:1.3em;
            }

            #navigation a:hover,
            #navigation li.current a {
                background-color:#FC0;
                color:#000;
            }

            #navigation li.current a{
                cursor:default;
                font-weight:bold;
            }

    #social_links {
        display:block;
        position:absolute;
        bottom:0;
        right:0;
        list-style:none;
        margin:10px;
        height:32px;
    }

        #social_links li {
            float:left;
            margin:0 0 0 10px;
            padding:0;
        }

        #social_links li a img {
            display:block;
        }

#gallery_main {
    background-image:url('../images/loading.gif');
    background-position:center center;
    background-repeat:no-repeat;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    overflow:hidden;
    z-index:0;
}

    #image {
        text-align:center;
        margin-top:164px;
        margin-bottom:164px;
    }

        #image img {
            height:100%;
            cursor:pointer;
        }

        #enlarge,
        #photo_reference {
            display:none;
            height:20px;
            padding:8px 20px 0 20px;
            text-align:right;
            position:absolute;
            bottom:164px;
        }

        #enlarge {
            text-align:right;
        }

        #photo_reference {
            text-align:left;
            font-weight:bold;
            color:#ef52a7;
        }


#gallery_footer {
    background-color:#000;
    border-top:1px solid #FC0;
    height:144px;
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    z-index:1;

}

    #gallery_selector {
        list-style:none;
        margin:0 40px 0 40px;
    }

        #gallery_selector li {
            float:left;
        }

        #gallery_selector li a {
            padding:8px 16px;
            color:#CCC;
            display:block;
        }

        #gallery_selector li a:hover,
        #gallery_selector li.current a {
            background-color:#ecc116;
            color:#000;
            text-decoration:none;
        }

        #gallery_selector li.current a {
            font-weight:bold;
        }

    #thumbnail_reel {
        overflow:hidden;
        white-space:nowrap;
        margin-left:40px;
        margin-right:40px;
        clear:both;
    }

        #thumbnail_reel img {
            border:1px solid #FD0;
            margin-right:1px;
            cursor:pointer;
        }

        #thumbnail_reel img.selected {
            border:1px solid #FFF;
        }

    #thumbnail_reel_prev,
    #thumbnail_reel_next {
        background:#151515 url('../images/thumb_left.png') center no-repeat;
        position:absolute;
        width:40px;
        cursor:pointer;
        height:143px;
        color:#FD0;
        font-size:6.6em;
        font-weight:bold;
    }

    #thumbnail_reel_prev {
        left:0;
    }

    #thumbnail_reel_next {
        right:0;
        background-image:url('../images/thumb_right.png');
    }

    #thumbnail_reel_next:hover,
    #thumbnail_reel_prev:hover {
        background-color:#333;
    }

#page_main_wrapper {
    position:absolute;
    top:164px;
    width:100%;
}

    #page_main {
        background-color:#040404;
        border:1px solid #222;
        margin:0 auto 16px auto;
        padding:16px 16px 0 16px;
        width:754px;
    }

    #page_footer {
        margin-bottom:16px;
        text-align:center;
    }

/* [------------ Site-Wide Classes -----------] */

/* [---------- Page Specific Classes ---------] */

/* Admin. */


ul.cp_icons {
    list-style:none;
    margin:0;
    padding:0;
}

    ul.cp_icons li {
        float:left;
        height:168px;
        text-align:center;
        padding:10px;
        margin:12px;
        width:148px;
    }

        ul.cp_icons li a {
            text-decoration:none;
        }

/* admin/photos */

.photo_upload_thumb {
    border:1px solid #333;
    position:absolute;
    right:20px;
    top:20px;
}

.photo_admin_thumb {
    border:1px solid #333;
}

@media only screen and (max-width: 965px) {

    #social_links {
        position:absolute;
        top:0;
        right:0;
    }

}

@media only screen and (max-width: 846px) {

    #navigation li a {
        padding:6px 20px;
    }

    #page_main {
        width:92%;
    }

}

@media only screen and (max-width: 750px) {

    #banner #logo {
        width:500px;
        height:auto;
    }

    #navigation li a {
        font-size:1.2em;
    }

}

@media only screen and (max-width: 640px) {

    #banner #logo {
        width:350px;
        height:auto;
    }

    #navigation li a {
        font-size:1.1em;
    }

}