﻿/* DEFAULTS
----------------------------------------------------------*/

body {
    background: #D8D2C0;
    font-size: .80em;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    margin: 0;
    padding: 0; /*color: #696969;*/
    color: #5C5857;
    cursor: default;
}

*:focus {
    outline-style: none;
}

a:link, a:visited {
    color: #034af3;
}

a:hover {
    color: #1d60ff;
    text-decoration: none;
}

a:active {
    color: #034af3;
}

p {
    margin-bottom: 10px;
    line-height: 1.6em;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-size: 1.5em; /*color: #666666;*/
    font-variant: small-caps;
    text-transform: none;
    font-weight: 200;
    margin-bottom: 0;
}

h1 {
    font-size: 1.6em;
    padding-bottom: 0;
    margin-bottom: 0;
}

h2 {
    font-size: 1.5em;
    font-weight: 600;
}

h3 {
    font-size: 1.2em;
    font-weight: bold;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2 {
    margin-top: 0;
}


/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page {
    width: 960px; /*background-color: #fff;*/
    background-color: #F8F2E0;
    margin: 20px auto 0 auto;
    border: 1px solid #496077;
    z-index:1000000;
}

.header {
    position: relative;
    margin: 0;
    padding: 0;
    background: #D8D2C0;
    width: 100%;
}

    .header h1 {
        font-weight: 700;
        margin: 0;
        padding: 0 0 0 20px; /*color: #f9f9f9;*/
        border: none;
        line-height: 2em;
        font-size: 2em;
    }

.main {
    background: #F8F2E0;
    padding: 0 12px;
    margin: 12px 8px 8px 8px;
    min-height: 420px;
}

.leftCol {
    padding: 6px 0;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.footer {
    /*color: #4e5766;*/
    padding: 8px 0 0 0;
    margin: 0 auto;
    text-align: center;
    line-height: normal;
}


/* TAB MENU   
----------------------------------------------------------*/

div.hideSkiplink {
    background-color: #D8D2C0;
    width: 100%;
    z-index: 100000;
}

    div.hideSkiplink a[href='#NavigationMenu_SkipLink'] img {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
        z-index: 100000;
    }

div.menu > ul > li {
    display: inline-block;
    list-style: none;
    z-index:100000;
}

div.menu ul li ul {
    display: none;
    z-index: 100000;
}

div.menu {
    padding: 4px 0 4px 8px;
    z-index: 100000;
}

    div.menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        width: auto;
        z-index: 100000;
    }

        div.menu ul li a, div.menu ul li a:visited {
            background-color: #F8F2E0;
            border: 1px #000000 solid; /*color: #dde4ec;*/
            color: #5C5857;
            display: block;
            line-height: 1.35em;
            padding: 4px 20px;
            text-decoration: none;
            white-space: nowrap;
            z-index: 100000;
        }

            div.menu ul li a:hover {
                background-color: #bfcbd6; /*color: #465c71;*/
                color: #5C5857;
                text-decoration: none;
                cursor: pointer;
                z-index: 100000;
            }

            div.menu ul li a:active {
                background-color: #465c71; /*color: #cfdbe6;*/
                color: #5C5857;
                text-decoration: none;
                z-index: 100000;
            }

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #ccc;
}

    fieldset p {
        margin: 2px 12px 10px 10px;
    }

    fieldset.login label, fieldset.register label, fieldset.changePassword label {
        display: block;
    }

    fieldset label.inline {
        display: inline;
    }

legend {
    font-size: 1.1em;
    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry {
    width: 320px;
    border: 1px solid #ccc;
}

input.passwordEntry {
    width: 320px;
    border: 1px solid #ccc;
}

div.accountInfo {
    width: 42%;
}

div.stwFilter {
    width: 700px;
}

div.ptkFilter {
    width: 700px;
}

.options {
    position: relative;
}

    .options div.box {
        position: absolute;
        right: 0;
        top: 21px;
        background: #fff;
        border: 1px solid #d9d9d9; /*-moz-border-radius: 5px;   -webkit-border-radius: 5px;   -moz-box-shadow: 0 0 30px #d9d9d9;   -webkit-box-shadow: 0 0 30px #d9d9d9;*/
        border-radius: 5px;
        box-shadow: 0 0 30px #d9d9d9;
        padding: 4px;
        z-index: 99999;
        padding-left: 10px;
        display: none;
        text-align: right;
        font-size: 0.9em;
    }

        .options div.box a {
            color: inherit;
            display: block;
            width: 100%;
            height: 100%;
        }

    .options .boxtitle {
        font-variant: small-caps;
        font-size: 1.1em;
        font-weight: bold;
    }

    .options .boxlink:hover {
        background-color: #F8F2E0;
        cursor: pointer;
    }

/* MISC  
----------------------------------------------------------*/

.clear {
    clear: both;
}

.title {
    display: block;
    float: left;
    text-align: left;
    width: auto;
}

a img {
    border: 0;
}

.loginDisplay {
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px; /*color: White;*/
}

    .loginDisplay a:link {
        color: white;
    }

    .loginDisplay a:visited {
        color: white;
    }

    .loginDisplay a:hover {
        color: white;
    }

.failureNotification {
    font-size: 1.2em;
    color: Red;
}

.bold {
    font-weight: bold;
}

.submitButton {
    /*text-align: right;   padding-right: 10px;*/
    text-align: center;
}

.pagerPage {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
}

.pagerCur {
    font-weight: bold;
    font-size: 15px;
}

table.stwProps {
    table-layout: fixed;
}

td.stwPropsCol1 {
    width: 240px;
    text-align: right;
    padding-right: 5px;
}

td.stwInfo {
    width: 16px;
    vertical-align: middle;
}

table.tabWynikiSzukaniaGMaps, table.tabWynikiSzukaniaGMaps td {
    font-weight: normal;
    font-size: 10pt;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    border: 1px dotted black;
    border-collapse: collapse;
}

    table.tabWynikiSzukaniaGMaps td a:link, table.tabWynikiSzukaniaGMaps td a:visited {
        text-decoration: none;
        color: inherit;
    }

    table.tabWynikiSzukaniaGMaps td a:hover {
        text-decoration: underline;
        color: #034af3;
    }

.StwDana {
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-align: right;
    width: 120px
}

.Thumbnail {
    margin: 5px;
    padding: 1px;
    border: 1px solid #021a40;
}

.ImportDetails {
    margin: 20px;
    border: 1px solid Black;
}

    .ImportDetails > h3 {
        text-align: center;
    }

.ImportDetailsH {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    font-variant: small-caps;
    background: #F0F0F0;
    border-bottom: 1px solid black;
}

.stwWymagane {
    border: none;
}

.gwiazdkaWymagane {
    color: Red;
    font-weight: bolder;
}

/*.stwDivMain fieldset {*/
    /*display: inline;*/
    /*border: none;*/
/*}*/

td.accCol1 {
    width: 150px;
}

.accChanged {
    background-image: url('/Img/check16.png');
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.Wersja {
    font-size: 0.75em;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000000;
    background-color: Black;
    opacity: 0.5;
}

#overlay_indicator {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    vertical-align: middle;
    z-index: 10000001;
}

.gatunek_lac {
    font-style: italic;
    padding-left: 20px;
}

.kraj {
    font-style: italic;
    padding-left: 20px;
}

.zapis_ok {
    color: Green;
}

.headerLink {
    float: right;
    font-size: 0.9em;
    position: relative;
    top: -2em;
}

.help_pytanie {
    font-weight: bold;
}

/*a.morelink
{
  text-decoration: none;
  outline: none;
}
.morecontent span
{
  display: none;
}
.comment
{
  width: 400px;
  background-color: #f0f0f0;
  margin: 10px;
}*/

/* INFRAGISTICS 
----------------------------------------------------------*/
.igte_Edit {
    /*background-color: transparent;*/
    font-weight: normal;
    font-size: 10pt;
    font-family: Verdana, Arial, Helvetica, sans-serif; /*border-width: 0;*/ /*width: 100%;*/ /*height: 20px;*/ /*font-size: 10px;   font-family: Verdana, Arial, Sans-Serif;*/
}

.igte_EditInContainer {
    font-weight: normal;
    font-size: 10pt;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    width: 100%; /*height: 24px;*/
}

.igte_EditWithButtons {
    font-weight: normal;
    font-size: 10pt;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    width: 100%; /*height: 24px;*/
}

.igte_TextArea {
    font-size: 12px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.igdd_DropDownButton {
    line-height: 1px;
}

.igdd_ValueDisplay {
    padding: 0;
}

tbody.igg_Item > tr > td > a {
    color: inherit;
}

tbody.igg_Item > tr > td.TabelaRightJustify, .TabelaRightJustify {
    text-align: right;
}

tbody.igg_Item > tr > td.TabelaCenterJustify, .TabelaCenterJustify {
    text-align: center;
}

tbody.igg_Item > tr > td.TabelaLeftJustify, .TabelaLeftJustify {
    text-align: left;
}

.ig_AjaxIndicatorBlock {
    z-index: 999 !important;
}


/* SWFUPLOAD 
----------------------------------------------------------*/

.swfupload {
    cursor: pointer;
    background-image: url('../Scripts/SWFUpload/button_en.png');
    background-repeat: no-repeat;
}

    .swfupload:hover {
        background-image: url('../Scripts/SWFUpload/button_en_h.png');
    }

    .swfupload:active {
        background-image: url('../Scripts/SWFUpload/button_en_a.png');
    }

.progressUploading {
    background-color: Blue;
    border: 1px solid black;
}

.progressCompleted {
    background-color: Green;
    border: 1px solid black;
}

.progressError {
    background-color: Red;
    border: 1px solid black;
}

/* FILEUPLOAD
----------------------------------------------------------*/
.fileinput-progresslabel {
    position: absolute;
    /* left: 40%; */
    /*top: 4px;*/
    color: white;
    font-weight: bold;
    /*width: 100%;*/
    text-align: center;
}

.fileinput-wrapper {
    display: inline-block;
}
/* GOOGLE MAPS
----------------------------------------------------------*/

.gm-style-iw h2 {
    font-size: 1.2em;
    line-height: 1em;
}

/****************************************************************************************************/
/*           Alert from Bootstrap                                                                   */
/****************************************************************************************************/

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: 700;
    }

    .alert > p, .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable, .alert-dismissible {
    padding-right: 35px;
}

    .alert-dismissable .close, .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #FFF;
    opacity: 0.2;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0px, 0, 0, 0);
    border: 0 none;
}
/****************************************************************************************************/
/*           END - Alert from Bootstrap                                                             */
/****************************************************************************************************/

.alert {
    font-size: 1.2em;
}

    .alert span.message {
        display: block;
    }

/****************************************************************************************************/
/*           G-Buttons                                                                              */
/****************************************************************************************************/

/*body {
  font-family: 'Lucida Grande', 'Helvetica Neue', sans-serif;
  font-size: 13px;
}

div {
  width: 200px;
  margin: 20px auto;
}*/

/*div .button {
  margin: 0 15px 15px 0;
}*/

.button {
    display: inline-block;
    background-color: #f5f5f5;
    background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -moz-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -ms-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: -o-linear-gradient(top,#f5f5f5,#f1f1f1);
    background-image: linear-gradient(top,#f5f5f5,#f1f1f1);
    color: #444;
    border: 1px solid #dcdcdc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    font-family: arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    height: 29px;
    line-height: 27px;
    min-width: 54px;
    padding: 0 8px;
    text-decoration: none;
}

    .button:hover {
        background-color: #F8F8F8;
        background-image: -webkit-linear-gradient(top,#f8f8f8,#f1f1f1);
        background-image: -moz-linear-gradient(top,#f8f8f8,#f1f1f1);
        background-image: -ms-linear-gradient(top,#f8f8f8,#f1f1f1);
        background-image: -o-linear-gradient(top,#f8f8f8,#f1f1f1);
        background-image: linear-gradient(top,#f8f8f8,#f1f1f1);
        border: 1px solid #C6C6C6;
        color: #333;
        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
        -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
        box-shadow: 0 1px 1px rgba(0,0,0,.1);
    }

    /* blue */

    .button.blue {
        background-color: #4D90FE;
        background-image: -webkit-linear-gradient(top,#4d90fe,#4787ed);
        background-image: -moz-linear-gradient(top,#4d90fe,#4787ed);
        background-image: -ms-linear-gradient(top,#4d90fe,#4787ed);
        background-image: -o-linear-gradient(top,#4d90fe,#4787ed);
        background-image: linear-gradient(top,#4d90fe,#4787ed);
        border: 1px solid #3079ED;
        color: white;
    }

        .button.blue:hover {
            border: 1px solid #2F5BB7;
            background-color: #357AE8;
            background-image: -webkit-linear-gradient(top,#4d90fe,#357ae8);
            background-image: -moz-linear-gradient(top,#4d90fe,#357ae8);
            background-image: -ms-linear-gradient(top,#4d90fe,#357ae8);
            background-image: -o-linear-gradient(top,#4d90fe,#357ae8);
            background-image: linear-gradient(top,#4d90fe,#357ae8);
            -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
        }

    /* red */

    .button.red {
        background-color: #D14836;
        background-image: -webkit-linear-gradient(top,#dd4b39,#d14836);
        background-image: -moz-linear-gradient(top,#dd4b39,#d14836);
        background-image: -ms-linear-gradient(top,#dd4b39,#d14836);
        background-image: -o-linear-gradient(top,#dd4b39,#d14836);
        background-image: linear-gradient(top,#dd4b39,#d14836);
        border: 1px solid transparent;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.red:hover {
            background-color: #C53727;
            background-image: -webkit-linear-gradient(top,#dd4b39,#c53727);
            background-image: -moz-linear-gradient(top,#dd4b39,#c53727);
            background-image: -ms-linear-gradient(top,#dd4b39,#c53727);
            background-image: -o-linear-gradient(top,#dd4b39,#c53727);
            background-image: linear-gradient(top,#dd4b39,#c53727);
        }

    /* green */

    .button.green {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#3d9400,#398a00);
        background-image: -moz-linear-gradient(top,#3d9400,#398a00);
        background-image: -ms-linear-gradient(top,#3d9400,#398a00);
        background-image: -o-linear-gradient(top,#3d9400,#398a00);
        background-image: linear-gradient(top,#3d9400,#398a00);
        border: 1px solid #29691D;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.green:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#3d9400,#368200);
            background-image: -moz-linear-gradient(top,#3d9400,#368200);
            background-image: -ms-linear-gradient(top,#3d9400,#368200);
            background-image: -o-linear-gradient(top,#3d9400,#368200);
            background-image: linear-gradient(top,#3d9400,#368200);
            border: 1px solid #2D6200;
            text-shadow: 0 1px rgba(0, 0, 0, 0.3);
        }

    /* brownish */

    .button.brownish {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#674850,#50393f);
        background-image: -moz-linear-gradient(top,#674850,#50393f);
        background-image: -ms-linear-gradient(top,#674850,#50393f);
        background-image: -o-linear-gradient(top,#674850,#50393f);
        background-image: linear-gradient(top,#674850,#50393f);
        border: 1px solid #463237;
        color: white;
    }

        .button.brownish:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#674850,#463237);
            background-image: -moz-linear-gradient(top,#674850,#463237);
            background-image: -ms-linear-gradient(top,#674850,#463237);
            background-image: -o-linear-gradient(top,#674850,#463237);
            background-image: linear-gradient(top,#674850,#463237);
            border: 1px solid #412e33;
        }

    /* maroonish */

    .button.maroonish {
        background-color: #a55474;
        background-image: -webkit-linear-gradient(top,#a55474,#8e4964);
        background-image: -moz-linear-gradient(top,#a55474,#8e4964);
        background-image: -ms-linear-gradient(top,#a55474,#8e4964);
        background-image: -o-linear-gradient(top,#a55474,#8e4964);
        background-image: linear-gradient(top,#a55474,#8e4964);
        border: 1px solid #83445d;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.maroonish:hover {
            background-color: #a55474;
            background-image: -webkit-linear-gradient(top,#a55474,#83445d);
            background-image: -moz-linear-gradient(top,#a55474,#83445d);
            background-image: -ms-linear-gradient(top,#a55474,#83445d);
            background-image: -o-linear-gradient(top,#a55474,#83445d);
            background-image: linear-gradient(top,#a55474,#83445d);
            border: 1px solid #793e55;
        }

    /* pinkish */

    .button.pinkish {
        background-color: #7c7461;
        background-image: -webkit-linear-gradient(top,#dfa7ca,#cd97b9);
        background-image: -moz-linear-gradient(top,#dfa7ca,#cd97b9);
        background-image: -ms-linear-gradient(top,#dfa7ca,#cd97b9);
        background-image: -o-linear-gradient(top,#dfa7ca,#cd97b9);
        background-image: linear-gradient(top,#dfa7ca,#cd97b9);
        border: 1px solid #c38fb0;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.pinkish:hover {
            background-color: #7c7461;
            background-image: -webkit-linear-gradient(top,#dfa7ca,#c38fb0);
            background-image: -moz-linear-gradient(top,#dfa7ca,#c38fb0);
            background-image: -ms-linear-gradient(top,#dfa7ca,#c38fb0);
            background-image: -o-linear-gradient(top,#dfa7ca,#c38fb0);
            background-image: linear-gradient(top,#dfa7ca,#c38fb0);
            border: 1px solid #ba88a7;
        }

    /* golden */

    .button.golden {
        background-color: #dee362;
        background-image: -webkit-linear-gradient(top,#c1b758,#aea54e);
        background-image: -moz-linear-gradient(top,#c1b758,#aea54e);
        background-image: -ms-linear-gradient(top,#c1b758,#aea54e);
        background-image: -o-linear-gradient(top,#c1b758,#aea54e);
        background-image: linear-gradient(top,#c1b758,#aea54e);
        color: white;
        border: 1px solid #a29948;
    }

        .button.golden:hover {
            background-color: #c0c455;
            background-image: -webkit-linear-gradient(top,#c1b758,#a29948);
            background-image: -moz-linear-gradient(top,#c1b758,#a29948);
            background-image: -ms-linear-gradient(top,#c1b758,#a29948);
            background-image: -o-linear-gradient(top,#c1b758,#a29948);
            background-image: linear-gradient(top,#c1b758,#a29948);
            border: 1px solid #989043;
        }

    /* goldenish */

    .button.goldenish {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#777726,#62621e);
        background-image: -moz-linear-gradient(top,#777726,#62621e);
        background-image: -ms-linear-gradient(top,#777726,#62621e);
        background-image: -o-linear-gradient(top,#777726,#62621e);
        background-image: linear-gradient(top,#777726,#62621e);
        border: 1px solid #2b6700;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.goldenish:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#777726,#525219);
            background-image: -moz-linear-gradient(top,#777726,#525219);
            background-image: -ms-linear-gradient(top,#777726,#525219);
            background-image: -o-linear-gradient(top,#777726,#525219);
            background-image: linear-gradient(top,#777726,#525219);
            border: 1px solid #245600;
        }

    /* skinish */

    .button.skinish {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#eab447,#cfa03f);
        background-image: -moz-linear-gradient(top,#eab447,#cfa03f);
        background-image: -ms-linear-gradient(top,#eab447,#cfa03f);
        background-image: -o-linear-gradient(top,#eab447,#cfa03f);
        background-image: linear-gradient(top,#eab447,#cfa03f);
        border: 1px solid #b68d37;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.skinish:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#eab447,#c0943a);
            background-image: -moz-linear-gradient(top,#eab447,#c0943a);
            background-image: -ms-linear-gradient(top,#eab447,#c0943a);
            background-image: -o-linear-gradient(top,#eab447,#c0943a);
            background-image: linear-gradient(top,#eab447,#c0943a);
            border: 1px solid #a17c31;
        }

    /* graysish */

    .button.grayish {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#7c7461,#615b4c);
        background-image: -moz-linear-gradient(top,#7c7461,#615b4c);
        background-image: -ms-linear-gradient(top,#7c7461,#615b4c);
        background-image: -o-linear-gradient(top,#7c7461,#615b4c);
        background-image: linear-gradient(top,#7c7461,#615b4c);
        border: 1px solid #504b3e;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.1);
    }

        .button.grayish:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#7c7461,#504b3e);
            background-image: -moz-linear-gradient(top,#7c7461,#504b3e);
            background-image: -ms-linear-gradient(top,#7c7461,#504b3e);
            background-image: -o-linear-gradient(top,#7c7461,#504b3e);
            background-image: linear-gradient(top,#7c7461,#504b3e);
            border: 1px solid #474337;
        }

    /* yellowish */

    .button.yellowish {
        background-color: #3D9400;
        background-image: -webkit-linear-gradient(top,#dee362,#c0c455);
        background-image: -moz-linear-gradient(top,#dee362,#c0c455);
        background-image: -ms-linear-gradient(top,#dee362,#c0c455);
        background-image: -o-linear-gradient(top,#dee362,#c0c455);
        background-image: linear-gradient(top,#dee362,#c0c455);
        border: 1px solid #b3b74e;
    }

        .button.yellowish:hover {
            background-color: #368200;
            background-image: -webkit-linear-gradient(top,#dee362,#b3b74e);
            background-image: -moz-linear-gradient(top,#dee362,#b3b74e);
            background-image: -ms-linear-gradient(top,#dee362,#b3b74e);
            background-image: -o-linear-gradient(top,#dee362,#b3b74e);
            background-image: linear-gradient(top,#dee362,#b3b74e);
            border: 1px solid #abaf4b;
        }

    /* Pink */
    .button.pink {
        background-color: #ed47e6;
        background-image: -webkit-linear-gradient(top,#fe4dee,#ed47e6);
        background-image: -moz-linear-gradient(top,#fe4dee,#ed47e6);
        background-image: -ms-linear-gradient(top,#fe4dee,#ed47e6);
        background-image: -o-linear-gradient(top,#fe4dee,#ed47e6);
        background-image: linear-gradient(top,#fe4dee,#ed47e6);
        border: 1px solid #ed30e6;
        color: white;
    }

        .button.pink:hover {
            background-color: #e835de;
            background-image: -webkit-linear-gradient(top,#fe4df6,#e835de);
            background-image: -moz-linear-gradient(top,#fe4df6,#e835de);
            background-image: -ms-linear-gradient(top,#fe4df6,#e835de);
            background-image: -o-linear-gradient(top,#fe4df6,#e835de);
            background-image: linear-gradient(top,#fe4df6,#e835de);
            -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
        }

    /* Violet */

    .button.violet {
        background-color: #aC47eD;
        background-image: -webkit-linear-gradient(top,#bA4dfe,#ac47ed);
        background-image: -moz-linear-gradient(top,#bA4dfe,#ac47ed);
        background-image: -ms-linear-gradient(top,#bA4dfe,#ac47ed);
        background-image: -o-linear-gradient(top,#bA4dfe,#ac47ed);
        background-image: linear-gradient(top,#bA4dfe,#ac47ed);
        border: 1px solid #a030ed;
        color: white;
    }

        .button.violet:hover {
            background-color: #a435e8;
            background-image: -webkit-linear-gradient(top,#c14Dfe,#a435e8);
            background-image: -moz-linear-gradient(top,#c14Dfe,#a435e8);
            background-image: -ms-linear-gradient(top,#c14Dfe,#a435e8);
            background-image: -o-linear-gradient(top,#c14Dfe,#a435e8);
            background-image: linear-gradient(top,#c14Dfe,#a435e8);
            -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
        }

    /* Orange */

    .button.orange {
        background-color: #fe7d4d;
        background-image: -webkit-linear-gradient(top,#fe7d4d,#ed7247);
        background-image: -moz-linear-gradient(top,#fe7d4d,#ed7247);
        background-image: -ms-linear-gradient(top,#fe7d4d,#ed7247);
        background-image: -o-linear-gradient(top,#fe7d4d,#ed7247);
        background-image: linear-gradient(top,#fe7d4d,#ed7247);
        border: 1px solid #ed5f30;
        color: white;
    }

        .button.orange:hover {
            border: 1px solid #b7492f;
            background-color: #e85a35;
            background-image: -webkit-linear-gradient(top,#fe754d,#e85a35);
            background-image: -moz-linear-gradient(top,#fe754d,#e85a35);
            background-image: -ms-linear-gradient(top,#fe754d,#e85a35);
            background-image: -o-linear-gradient(top,#fe754d,#e85a35);
            background-image: linear-gradient(top,#fe754d,#e85a35);
            -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
        }

    /* Sea Green */
    .button.seagreen {
        background-color: #4dfedf;
        background-image: -webkit-linear-gradient(top,#4dfedf,#47edd3);
        background-image: -moz-linear-gradient(top,#4dfedf,#47edd3);
        background-image: -ms-linear-gradient(top,#4dfedf,#47edd3);
        background-image: -o-linear-gradient(top,#4dfedf,#47edd3);
        background-image: linear-gradient(top,#4dfedf,#47edd3);
        border: 1px solid #30edd0;
    }

        .button.seagreen:hover {
            border: 1px solid #2fb7a2;
            background-color: #35e8d0;
            background-image: -webkit-linear-gradient(top,#4dfee5,#35e8d0);
            background-image: -moz-linear-gradient(top,#4dfee5,#35e8d0);
            background-image: -ms-linear-gradient(top,#4dfee5,#35e8d0);
            background-image: -o-linear-gradient(top,#4dfee5,#35e8d0);
            background-image: linear-gradient(top,#4dfee5,#35e8d0);
            -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            -moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
            box-shadow: 0 1px 1px rgba(0,0,0,.1);
        }

    /* defaults */

    .button.default:active {
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
        color: black;
    }

    .button.blue:active, .button.red:active, .button.green:active,
    .button.pinkish:active, .button.maroonish:active,
    .button.golden:active, .button.brownish:active,
    .button.grayish:active, .button.skinish:active,
    .button.yellowish:active, .button.goldenish:active,
    .button.pink:active, .button.violet:active, .button.orange:active,
    .button.seagreen:active {
        -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
        box-shadow: inset 0 1px 2px rgba(0,0,0,.3);
    }
/****************************************************************************************************/
/*          END G-Buttons                                                                           */
/****************************************************************************************************/

