/* collored buttons */
.button4 {
    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-size: 11px;
    font-weight: bold;
    text-align: center;
    height: 27px;
    line-height: 27px;
    min-width: 54px;
    padding: 0 8px;
    text-decoration: none;
}
.button_disabled {
    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: #999;

    border: 1px solid #f5f5f5;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor:default;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    height: 27px;
    line-height: 27px;
    min-width: 54px;
    padding: 0 8px;
    text-decoration: none;
}
.button_disabled:hover {
    color:#999;
}
.button4: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: 0px 1px 1px rgba(0,0,0,.1);
    -moz-box-shadow: 0px 1px 1px rgba(0,0,0,.1);
    box-shadow: 0px 1px 1px rgba(0,0,0,.1);
}
/* blue */
.button4.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;
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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);
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.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;
}
.button4.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 */
.button4.default:active {
    -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,.1);
    -moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0px 1px 2px rgba(0,0,0,.1);
    color: black;


    border: 1px solid #29691D;
}
.button4.blue:active, .button4.red:active, .button4.green:active,
.button4.pinkish:active, .button4.maroonish:active,
.button4.golden:active, .button4.brownish:active,
.button4.grayish:active, .button4.skinish:active,
.button4.yellowish:active, .button4.goldenish:active,
.button4.pink:active, .button4.violet:active, .button4.orange:active,
.button4.seagreen:active {
    -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,.3);
    -moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,.3);
    box-shadow: inset 0px 1px 2px rgba(0,0,0,.3);
}

.buttonInSubMenu {
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    padding: 7px;
    cursor: pointer;
    margin-right: 5px
}

.buttonInSubMenu:hover {
    background: #e6efff;
}

.buttonInSubMenu.active {
    background: #158a80;
    color: white;
    border: 1px solid #245757;
}

.buttonInSubMenu.active:hover {
    background: #516e5a;
}

.btn {
    margin: 0.2em 0.1em;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: none;
    border-bottom: 0.15em solid black;
    border-radius: 3px;
    padding: 0.65em 1.3em;
    cursor: pointer;
}

.btn-lg {
    padding: 1em 2em;
}

.btn-sm,
.btn-xs {
    font-size: 0.85em;
    padding: 0.5em 1em;
}

.btn-xs {
    font-size: 0.85em;
    padding: 0.25em 0.75em;
}

.btn-default {
    border-color: #d9d9d9;
    background-image: linear-gradient(#ffffff, #f2f2f2);
}
.btn-default:hover {
    background: linear-gradient(#f2f2f2, #e6e6e6);
}

.btn-primary {
    border-color: #2a6496;
    background-image: linear-gradient(#428bca, #357ebd);
    color: white;
}
.btn-primary:hover {
    background: linear-gradient(#357ebd, #3071a9);
}

.btn-success {
    border-color: #3d8b3d;
    background-image: linear-gradient(#5cb85c, #4cae4c);
}
.btn-success:hover {
    background: linear-gradient(#4cae4c, #449d44);
}

.btn-info {
    border-color: #28a1c5;
    background-image: linear-gradient(#5bc0de, #46b8da);
}
.btn-info:hover {
    background: linear-gradient(#46b8da, #31b0d5);
}

.btn-warning {
    border-color: #df8a13;
    background-image: linear-gradient(#f0ad4e, #eea236);
}
.btn-warning:hover {
    background: linear-gradient(#eea236, #ec971f);
}

.btn-danger {
    border-color: #b52b27;
    background-image: linear-gradient(#d9534f, #d43f3a);
}
.btn-danger:hover {
    background: linear-gradient(#d43f3a, #c9302c);
}

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

.button{
    display: inline-block;
    *display: inline;
    zoom: 1;
    padding: 6px 20px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #bbb;
    overflow: visible;
    font: bold 13px arial, helvetica, sans-serif;
    text-decoration: none;
    white-space: nowrap;
    color: #555;

    background-color: #ddd;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
    background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));

    -webkit-transition: background-color .2s ease-out;
    -moz-transition: background-color .2s ease-out;
    -ms-transition: background-color .2s ease-out;
    -o-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out;
    background-clip: padding-box; /* Fix bleeding */
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
    text-shadow: 0 1px 0 rgba(255,255,255, .9);

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button:hover{
    background-color: #eee;
    color: #555;
}

.button:active{
    background: #e9e9e9;
    position: relative;
    top: 1px;
    text-shadow: none;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

.button[disabled], .button[disabled]:hover, .button[disabled]:active{
    border-color: #eaeaea;
    background: #fafafa;
    cursor: default;
    position: static;
    color: #999;
    /* Usually, !important should be avoided but here it's really needed :) */
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Smaller buttons styles */

.button.small{
    padding: 4px 12px;
}

/* Larger buttons styles */

.button.large{
    padding: 12px 30px;
    text-transform: uppercase;
}

.button.large:active{
    top: 2px;
}

/* Colored buttons styles */

.button.green, .button.red, .button.blue {
    color: #fff;
    text-shadow: 0 1px 0 rgba(0,0,0,.2);

    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
    background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
    background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
    background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
    background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
}

/* */

.button.green{
    background-color: #57a957;
    border-color: #57a957;
}

.button.green:hover{
    background-color: #62c462;
}

.button.green:active{
    background: #57a957;
}

/* */

.button.red{
    background-color: #ca3535;
    border-color: #c43c35;
}

.button.red:hover{
    background-color: #ee5f5b;
}

.button.red:active{
    background: #c43c35;
}

/* */

.button.blue{
    background-color: #269CE9;
    border-color: #269CE9;
}

.button.blue:hover{
    background-color: #70B9E8;
}

.button.blue:active{
    background: #269CE9;
}

/* */

.green[disabled], .green[disabled]:hover, .green[disabled]:active{
    border-color: #57A957;
    background: #57A957;
    color: #D2FFD2;
}

.red[disabled], .red[disabled]:hover, .red[disabled]:active{
    border-color: #C43C35;
    background: #C43C35;
    color: #FFD3D3;
}

.blue[disabled], .blue[disabled]:hover, .blue[disabled]:active{
    border-color: #269CE9;
    background: #269CE9;
    color: #93D5FF;
}

/* Group buttons */

.button-group,
.button-group li{
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.button-group{
    font-size: 0; /* Inline block elements gap - fix */
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
}

.button-group li{
    margin-right: -1px; /* Overlap each right button border */
}

.button-group .button{
    font-size: 13px; /* Set the font size, different from inherited 0 */
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.button-group .button:active{
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}

.button-group li:first-child .button{
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.button-group li:first-child .button:active{
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, -5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}

.button-group li:last-child .button{
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
}

.button-group li:last-child .button:active{
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, .2) inset, 5px 0 5px -3px rgba(0, 0, 0, .2) inset;
}

.btn-filter {
    padding:7px 15px;
    border:1px solid #6c9eab;
    text-decoration:none !important;
    color:#0f323b;
    border-radius:4px;
    margin-right:4px
}

.btn-filter:hover {
    background:#0f323b;
    color:#fff;
    text-decoration:none;
}

.btn-filter-active {
      background:#fff;
        border:1px solid #000;
      color:#000; !important;
      text-decoration:none;
  }

/*Media queries*/
@media only screen and ( max-width: 860px ) {

    .buttonInSubMenu {
        padding-right: 3px;
    }

}