﻿@-webkit-keyframes mymove {
  from {
    max-height: 80px;
  }

  to {
    max-height: 0px;
  }
}

/* Standard syntax */
@keyframes mymove {
  from {
    max-height: 80px;
  }

  to {
    max-height: 0px;
  }
}

@-webkit-keyframes mymoveback {
  from {
    max-height: 0px;
  }

  to {
    max-height: 80px;
  }
}

/* Standard syntax */
@keyframes mymoveback {
  from {
    max-height: 0px;
  }

  to {
    max-height: 80px;
  }
}

.hideTitleBar {
  -webkit-animation: mymove 2s; /* Safari 4.0 - 8.0 */
  animation: mymove 2s;
}


html .RadNavigation .rnvMore,
html .RadNavigation .rnvRootLink {
  padding: 20px 15px;
}


.showFullTitle {
  -webkit-animation: mymoveback 2s; /* Safari 4.0 - 8.0 */
  animation: mymoveback 2s;
}

.headerHiden {
  display: none !important;
}

.headerShow {
  display:inline !important;
}

h2::before {
  display: block;
  content: " ";
  margin-top: 0px;
  height: 0px;
  visibility: hidden;
  pointer-events: none;
}

.jrb-breadcrumb {
  color: darkgray;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 8pt;
  text-align: left;
}

.header-top
{
  padding-top:10px;
}

.RadSiteMap .rsmTwoLevels > .rsmItem > .rsmLink {
  padding-top:15px !important;
}

