/*

        VSWframework...
                ...very simple web framework
                
        Stylesheet revision 1.0

        - . - Do not redistribute! - . -
        
*/

/* MAIN STYLESHEET */
* {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

li.dropdown {
    display: inline-block;
}

.flag {
    height: 18px;
    margin: 8px;
}

.no_antialias {
    image-rendering: -moz-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}


.dropdown-content {
    display: none;
    position: fixed;
    background-color: #282828;;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99;
    color: black;
}

.pp {
    display: block;
    font-weight: 700;
    height: 20px;
    text-decoration: none;
    color: #EBEBEB;
    text-align: center;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    font-size: 13px;
}
.textbox2 {
    background: #1A1A1A;
    height: 25px;
    width: 150px;
    border-radius: 1px;
    border: 1px solid teal;
    color: #A2A2A2;
    padding-left: 5px;
    outline: none;
    box-shadow: 0 4px 6px -5px hsl(0, 0%, 40%), inset 0px 4px 6px -5px hsl(0, 0%, 2%);
    margin: 5px;
    padding: 2px;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 1px;
    margin-right: 1px;
}
.warn {
    text-align: center;
    width: calc(100% - 50px);
    margin: 10px;
    margin-top: 44px;
    border: 1px solid teal;
    padding: 20px;
    background-color: #000;
    color: #00eaea;
}
.warn img {
    max-width: 100%;
    margin-top: 22px;
    margin-bottom: -24px;
}
.warn .btn {
    padding: 10px;
    line-height: 4;
    margin: 3px;
}
.warn h1 {
    width: calc(100% + 36px);
    background-color: #005a00;
    padding: 10px;
    margin: -18px;
    margin-bottom: 10px;
}
.btn {
    background: #697075;
    background-color: teal;
    -webkit-border-radius: 3;
    -moz-border-radius: 3;
    border-radius: 2px;
    text-shadow: 1px 1px 3px #666666;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    color: #ffffff;
    padding: 11px 21px 11px 21px;
    text-decoration: none;
    margin-top: 4px;
    line-height: 10px;

    -webkit-transition: background-color 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in;
    -o-transition: background-color 0.2s ease-in;
    -ms-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;

    border: 4px solid #004e4e;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-radius: 2px;
}

.btn:hover {
    background: #0f4a71;
    border-color: #0f4a71;
    background-color: #0f4a71;
    text-decoration: none;
    border-style: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: #008282}

.dropdown:hover .dropdown-content {
    display: block;
}

a:link {
    text-decoration: none;
    color: #fff;
}
a:visited {
    text-decoration: none;
    color: #eee;
}
a:hover,
a:active {
    text-decoration: none;
    color: #aff;
}
html,
body {
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    height: 100%;
    background-color: #282828;
    min-width: 800px;
    background: url("/res/bg.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
}

#navigation  {
    list-style-type: none;
    margin: 0;
    margin-left: calc((100% - 800px) / 2 - 6px);
    margin-right: calc((100% - 800px) / 2 - 6px);
    padding: 0;
    font-size: 12px;
}

.title {
    float: left;
    color: #00ffff;
    background-color: #444;
    margin: -10px -10px 10px -10px;
    width: 100%;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 100%;
}
li a {
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

.selected {
    background-color: #005555;
}

/* scroll bar */
*::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #38383842;
}

*::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #555;
}

*::-webkit-scrollbar-thumb:horizontal:hover
{
    background-color: teal;
}

*::-webkit-scrollbar-thumb:vertical:hover
{
    background-color: teal;
}

.selected:hover {
    background-color: #00ffff;
}
/* Change the link color on hover */

.container {
    position: relative;
}

li a:hover {
    background-color: #555;
    color: white;
}
.column-left {
    float: left;
    width: 195px;
    height: calc(100% - 1px);
    position: absolute;
    z-index: 999;
    left: 0;
}

.column-right {
    float: right;
    width: 195px;
    height: calc(100% - 1px);
    position: absolute;
    z-index: 999;
    right: 0;
}

#content {
    background-color: #666;
}

#adcnt {
    background-color: #000;
}

#host {
    -webkit-box-shadow: 0px 0px 65px 14px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 65px 14px rgba(0,0,0,1);
    box-shadow: 0px 0px 65px 14px rgba(0,0,0,1);
}

.column-middle {
    float: left;
    width: 800px;
    margin-left: calc((100% - 800px) / 2);
    max-width: 800px;
}

#nav_bar {
    width:100%; 
    background: #008282; 
    overflow: hidden; 
    box-shadow: 0px 5px 25px #222; 
    z-index: 100;
    position: relative;
    height: 42px;
}

#logobar {
    width:100%;
    height: 56px;
    overflow: hidden;
    background: #111;
    z-index: 100;
}

.styled {
    display: inline-block;
    max-height: 21px;
}


.styled select {
    background: #333;
    color: #00ffff;
    width: 150px;
    font-size: 12px;
    border: 1px solid #00ffff;
    margin: 0px 28px 5px 10px;
    height: 20px; 
} 

div[id^="content_d_"] {
    color:black; 
}

.cke_wysiwyg_frame, .cke_wysiwyg_div, .cke_source {
    background-color: #222 !important;
}

body {
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    font-size:1.0em;
    margin:0 auto;
    padding:0;
}
p {
    font-size:0.9em;
    color:#fff;
    line-height:1.6em;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
}
h1 {
    font-size:1.2em;
    font-weight:normal;
    color:#fff;
    background-repeat:no-repeat;
    padding-left:20px;
    background-position:left 2px;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
}
h1.add { background-image:url('/pages/miniblog/images/wand.png'); }
h1.edit { background-image:url('/pages/miniblog/images/wrench.png'); }
h1.login { background-image:url('/pages/miniblog/images/lock.png'); }
h2 {
    font-size:1.0em;
    margin:0;
    padding:0;
}
a img {
    border:none;
}
a:focus {
    outline:none;
    border:none;
}
a {
    color:#fff;
}


.page-header {
    background-color: #285665;
    padding: 14px;
    text-align: center;
}

form p {
    margin:20px 0;
}

label {
    font-size:0.8em;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    color:#fff;
}
input, textarea, select {
    border:1px solid #dddddd;
    padding:4px;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
    font-size:0.9em;
    color:#fff;
    background-image:url('../images/input-bg.png');
    background-repeat:repeat-x;
    background-position:bottom left;
}
input.button {
    border:4px solid #800002;
    border-left-color:#B20002;
    border-top-color:#B20002;
    background-image:none;
    background-color:#CC0003;
    color:#ffffff;
}
span.form-text {
    font-size:0.8em;
    padding-top:5px;
    display:block;
    color:#999999;
}
.clear {
    clear:both;
}

#navigation ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

#navigation li {
    float: left;
}

#navigation li a {
    display: block;
    color: white;
    text-align: center;
    padding: 13px 12px;
    text-decoration: none;
    line-height: 16px;
}

#navigation li a:hover:not(.active) {
    background-color: #222;
}

#navigation .active {
    background-color: #4CAF50;
}

div.page {
    padding:10px;
    margin:0 auto;
}
form.login { 
    width:50%;
    margin:0 auto;
    padding:0;
    text-align:left;
}
div.footer {
    border-top:1px solid #dddddd;
    padding:5px;
    margin:0 auto;
    width:50%;
}
div.footer p a {
    color:#999999;
}
div.footer p {
    font-size:0.8em;
    text-align:center;
    color:#999999;
    margin:0;
    padding:0;
}
span.error-text {
    color:#ff0000;
    font-weight:bold;
    font-size:0.9em;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
}

.sticky {
    position: fixed !important;
    top: 0;
    width: 100%;
}

.sticky + .container {
    padding-top: 44px;
}

#wndn1 {
    width: 100%;
    height: 300px;
}

#wndn2 {
    width: 100%;
    height: 450px;
}

#wndn3 {
    width: 100%;
    height: 300px;
}

#wndn4 {
    width: 100%;
    height: 300px;
}

#wndn5 {
    width: 100%;
    height: 450px;
}

#wndn6 {
    width: 100%;
    height: 300px;
}

#find_player {
    color: #000;
}

select {
    color: black;
}

.styled select {
    height: 25px;
    color: #00ffff;
}

input {
    color: #000;
}

#chart_container {
    width: 100%;
    height: 100%;
}

#mySelect {
    background: #333;
    color: #00ffff;
    width: 150px;
    font-size: 12px;
    border: 1px solid #00ffff;
    margin: 0px 28px 5px 10px;
    height: 25px;
} 

#compareSelect, #compareSelect2 {
    background: #333;
    color: #00ffff;
    width: 150px;
    font-size: 12px;
    margin: 0px 23px 4px 2px;
    min-height: 23px;
} 

#compareSelect {
    color: #2969d1;
    border: 1px solid #2969d1;
}

#compareSelect2 {
    color: #36d129;
    border: 1px solid #36d129;
}

.nav {
    margin: 0px;
    font: 16px Segoe UI;
}

.rnav {
    float: right; 
}

.lnav {
    float: left;
}


/* END MAIN STYLESHEET */

.parallax {
    /* The image used */
    background-image: url("/res/parallax.png");

    /* Set a specific height */
    min-height: 300px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;

    -webkit-box-shadow: inset 0px 0px 126px 60px rgba(0,0,0,0.92);
    -moz-box-shadow: inset 0px 0px 126px 60px rgba(0,0,0,0.92);
    box-shadow: inset 0px 0px 126px 60px rgba(0,0,0,0.92);
}

.mbar {
    -webkit-box-shadow: inset -1px 50px 52px -31px rgba(0,0,0,0.63);
    -moz-box-shadow: inset -1px 50px 52px -31px rgba(0,0,0,0.63);
    box-shadow: inset -1px 50px 52px -31px rgba(0,0,0,0.63);
    min-height: 150px; 
    width: 100%;
    background-color: #1d1d1d;
    padding: left;
}

.mbar2 {
    min-height: 1px; 
    width: 100%;
    background-color: #008282;
    padding: right;
}

.mbar3 {
    min-height: 35px; 
    width: 100%;
    text-align: center;
    background-color: #111;
    padding: right;
}

.mbar3 p {
    font-size: 15px;
    padding-top: 5px;
    font-family: "Segoe UI", "Open Sans", "Droid Sans", "Arial";
}

.btnd {
    display: inline-block;
    margin: 0;
    padding: 12px 48px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    width: 300px;
    background-color: #008282;
    margin-left: calc(100% / 2 - 150px);
    margin-top: 27px;
    border-radius: 2px;
    border-bottom: 4px solid #005858;
    
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btnd:hover {
    border-bottom: 4px solid #095050;
    background-color: #0d5f5f;
    color: white;
}

.btnd a:hover, .btnd a:active {
    color: white !important;
}

.bntd:active {
    border-bottom: 1px solid #005858 !important;
}

.parallax_text {
    font-weight: normal;
    width: 800px;
    text-align: center;
    text-shadow: black 1px 1px 9px;
    margin-left: calc(100% / 2 - 400px);
    margin-top: 85px;
    float: left;
}

