
@keyframes fadein {
  from { opacity: 0}
  to   { opacity: 1}
}

@keyframes fadeout {
  from { opacity: 1}
  to   { opacity: 0}
}

.diventryhide{
  -moz-transition: opacity 0.4s ease-out;
  -o-transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  animation: fadeout 1s;  
  display: none;
}
.diventryshow{
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  animation: fadein 1s;
  display: block;
}

.exp{
  display: none;
}
.expshow {
  display: block;
}




#message {
  position: absolute;
  position: fixed;
  top: 20px;
  left: 40%;
  right: 30%;
    padding: 10px;
    color: #fff;
    width: 400px;
    border-radius: 5px;
    background-color: #e19507;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 10x -1px rgba(0,0,0,0.44);
    animation: fadein 2s;
    
}


#loginmessage {
  position: absolute;
  position: fixed;
  bottom: 10px;
  right: 10px;
    padding: 10px;
    color: #fff;
    width: 400px;
    border-radius: 5px;
    background-color: #e29f04;
    z-index: 9999;
    -webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.44);
    -moz-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.44);
    box-shadow: 0px 0px 10x -1px rgba(0,0,0,0.44);
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif !important;
}
button {
  font-family: 'Roboto', sans-serif !important;
}

a {
  font-family: 'Roboto', sans-serif !important;
}

#topmenu {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1e5799+0,2989d8+95 */
    background: #1255c4; /* Old browsers */
    background: -moz-linear-gradient(left,  #1255c4 0%, #1255c4 95%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #1255c4 0%,#1255c4 95%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #1255c4 0%,#1255c4 95%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#2989d8',GradientType=1 ); /* IE6-9 */
    
    }

    .progress {
        position: relative;
        height: 4px;
        display: block;
        width: 100%;
        background-color: #afdaf6;
        background-clip: padding-box;
        margin: 0 0 0 0;
        overflow: hidden;
        z-index: 999999999;
      }
      
        .progress .indeterminate {
          background-color: #599ff4; }
          .progress .indeterminate:before {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
                    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite; }
          .progress .indeterminate:after {
            content: '';
            position: absolute;
            background-color: inherit;
            top: 0;
            left: 0;
            bottom: 0;
            will-change: left, right;
            -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
                    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
            -webkit-animation-delay: 1.15s;
                    animation-delay: 1.15s; }
      
      @-webkit-keyframes indeterminate {
        0% {
          left: -35%;
          right: 100%; }
        60% {
          left: 100%;
          right: -90%; }
        100% {
          left: 100%;
          right: -90%; } }
      @keyframes indeterminate {
        0% {
          left: -35%;
          right: 100%; }
        60% {
          left: 100%;
          right: -90%; }
        100% {
          left: 100%;
          right: -90%; } }
      @-webkit-keyframes indeterminate-short {
        0% {
          left: -200%;
          right: 100%; }
        60% {
          left: 107%;
          right: -8%; }
        100% {
          left: 107%;
          right: -8%; } }
      @keyframes indeterminate-short {
        0% {
          left: -200%;
          right: 100%; }
        60% {
          left: 107%;
          right: -8%; }
        100% {
          left: 107%;
          right: -8%; } }


