* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.page-container{
    position: absolute;
    top: 35px;
    bottom: 0px;
    width: 100%;
    overflow-y: auto;
}


/*win base css*/
.win-base{
    top: 0px;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(224, 224, 224, 0.79);
    z-index: 10000;
    padding: 10px;
}

.win-base-container{
    background-color: #006f9c;
    position: relative;
    border: 1px solid rgb(224, 224, 224);

    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);

    border-radius: 6px;
}
/*
.win-base-container {
    position: relative;
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    padding: 10px;
    background: white;
}

.win-base-container::after {
    content: '';
    position: absolute;
    z-index: -1; *//* hide shadow behind image *//*
    -webkit-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
    width: 70%;
    left: 15%; *//* one half of the remaining 30% *//*
    height: 100px;
    bottom: 0;
}*/

.win-buttons {
    height: 100%;
    padding-right: 0px;
    position: absolute;
    right: 0px;
    z-index: 2;
    border: 2px solid gray;
    /*        background-color: rgba(144, 22, 22, 0.33);*/
    margin-right: 2px;
}
.win-bar {
    height: 35px;
    padding: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    background-color: rgba(179, 179, 179, 0.49);

}
.win-button{
    cursor: pointer;
    height: 30px;
    width: 30px;
    padding: 0px;
    float: right;
    margin-right: 1px;
}
.win-div-close {
    background: url("data:image/gif;base64,R0lGODlhFAAUAJEAAE1NTf///////wAAACH5BAEHAAIALAAAAAAUABQAAAIzBISpK+YMm5Enpodw1HlCfnkKOIqU1VXk55goVb2hi7Y0q95lfG70uurNaqLgTviyyUoFADs=") no-repeat center center;
    background-color: rgba(144, 22, 22, 0.33);
}
.win-div-close:hover {
    background-color: rgba(144, 22, 22, 0.8);
}
.win-div-min {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAUCAYAAABiS3YzAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAOwgAADsIBFShKgAAAABh0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC45bDN+TgAAAKxJREFUOE/Vk0sPhCAMhPGxxtP+/9/pIyYeZGe0JXVTL8DFST6hpZ0AhhBjbEKm0OuSJc/IUqRHAywUHb+a9JieacrZIiVXZy8+jTVTcoXe6zprmL1U6Q5qCqYtjWVUGD9xqxGbJC9XR3D+go/Qm/kIBkP3B3erc/ax5uwX65doBNwyGUAvo8JY6RxaA38Sc2EGO+Bz8jgA11cwAdYvEnNkrDmyAdeoFDdZQIg/4iQlMGSdT64AAAAASUVORK5CYII=") no-repeat center center;
    background-color: rgba(77, 77, 77, 0.41);
}
.win-div-min:hover {
    background-color: rgba(77, 77, 77, 0.96);
}
.win-content{
    position: absolute;
    top: 35px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow-y: auto;
}
.win-title{
    float: left;
    height: 100%;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 10px;
    padding-top: 2px;
    color: white;
}

/*//////////////////////////*/

.hiddenElement{
    display: none !important;
}

.fields-list{
    list-style: none;
    margin: 0px;
    padding: 10px;
}
.field-label{
    width: 30%;
}
.field-value{
    width: 70%;
}

.top-bar-title{
    float: left;
    color: white;
    height: 100%;
    padding-top: 4px;
    padding-left: 10px;
}

.tool-bar{
    float: right;
    color: #ffffff;
    height: 100%;
}
.tool-bar ul{
    margin: 0px;
    height: 100%;
}

/*
.tool-bar ul{
    list-style: none;
    margin: 0px;
    padding: 2px;
    padding-right: 5px;
}
.tool-bar li:hover{
    cursor: pointer;
}
*/

.top-bar{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 30px;
    background: #3092c0;
    background-image: -webkit-gradient(linear, to bottom, to top, color-stop(0%, #3298c8), color-stop(100%, #2e8cb8));
    background-image: -webkit-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -moz-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: -o-linear-gradient(to bottom, #3298c8, #2e8cb8);
    background-image: linear-gradient(to bottom, #3298c8, #2e8cb8);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.toolbar-button {
    padding-right: 3px;
    padding-left: 25px;
    background-size: 20px;
    background-position: left 2px top 4px;
}
div.tool-bar li.toolbar-button{
    margin-top: 2px;
    margin-bottom: 2px;
    vertical-align: middle;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
    top: 0px;
    margin-right: 5px;
    list-style: none;
    min-width: 40px;
    color: #444;
    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: linear-gradient(top,#f5f5f5,#f1f1f1);
    border: 1px solid rgba(0,0,0,0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    transition: box-shadow 50ms cubic-bezier(0.4, 0, 0.2, 1);
}
div.tool-bar li.toolbar-button:hover{
    box-shadow: 0 0 1px 0 rgba(205, 205, 205, 0.5);
    cursor: pointer;
    background-color: #EFEFEF;
    background-image: -webkit-linear-gradient(top,#EFEFEF,#F0F0F0);
    background-image: -moz-linear-gradient(top,#EFEFEF,#F0F0F0);
    background-image: -ms-linear-gradient(top,#EFEFEF,#F0F0F0);
    background-image: linear-gradient(top,#EFEFEF,#F0F0F0);

    border: 1px solid lightgray;

    position: relative;
    z-index: 1;
}

/*div.tool-bar li.toolbar-button:before {
    content: "";
    z-index: 1;
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: auto;
    display: inline-block;
    margin-right: auto;
}*/

/*Form new user*/
/*
.signup-content {
    background: #fff;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    padding: 50px 85px;
}
*/

/*.form-input {
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    padding: 2px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}*/
.form-input {
    width: 100%;
/*    border: 1px solid #ebebeb;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    box-sizing: border-box;*/
    padding: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}
.form-input:hover{
    border-bottom: 1px solid #ebebeb;
    box-sizing: border-box;
}
.tile{
    position: relative;
    border: 1px solid rgb(224, 224, 224);
    padding: 2px;
    background-color: white;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 2px;
    float: left;
    display: inline-block;

    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
}

.tile:hover {
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.8);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .8);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .8);
}

.b{
    font-weight: bold;
}
.f-s{
   font-size: 1em;
}
.f-m{
   font-size: 1.2em;
}
.f-b{
   font-size: 1.8em;
}
.form-control{
    border: 0 none white;
    /*overflow: hidden;*/
    padding: 0;
    outline: none;

}
html, body {height: 100%;}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    color: #000;
    background-color:#ffffff;
}

a:link, a:visited {
    color: #000;
    text-decoration: none;
}
a:hover {
    color: #81960B;
    text-decoration: underline;
}

a.current {color: #81960B;}

h1 {
    font-size: 3.8em;
    line-height: 1em;
    font-weight: 700;
    color: #000;
}

h2 {
    font-size: 2em;
    line-height: 1em;
    font-weight: 400;
    color: #000;
}

.text-white {color: #fff}
.text-green {color: #81960B}

.menu {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 60px;
    /*background-color: rgba(0,0,0,1.0);*/
    /*background-color: rgb(129, 150, 11);*/
    background-color: white;
    color: #000000;
    border-bottom: 5px solid #81960B;
    z-index: 100;
}

nav {
    margin: 20px 0 0 0;
}
.navigation {
    list-style: none;
    text-align: center;
    margin: 0;
}
.navigation li{
    display: inline-block;
    padding: 0 25px 0 0;
}

.slide{
    width:100%;
    position: relative;
    padding: 150px 0;
    text-align: center;
}

#slide2, #slide4, #slide6 {
    background-color:#ffffff;
    box-shadow: 0 18px 14px -14px rgba(0,0,0,0.6), 0 -18px 14px -14px rgba(0,0,0,0.6);
    z-index: 10;
}

/*.f-s{
   font-size: 8px;
}
.f-m{
   font-size: 14px;
}
.f-b{
   font-size: 20px;
}*/
/*------------------------------*/
