/* @less partials */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
/* @group GN Additions */
/* @end */
/* @group Corporate colours taken from logo */
/* @end */
/* @group Site Defaults */
/* @end */
/* @group Greys */
/* @end */
*,
*:after,
*::before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.st-container,
.st-pusher,
.st-content {
  height: 100%;
}
.st-content {
  overflow-y: scroll;
  background: white;
}
.st-content,
.st-content-inner {
  position: relative;
}
.st-container {
  position: relative;
  overflow: hidden;
}
.st-pusher {
  position: relative;
  left: 0;
  z-index: 1;
  height: 100%;
  perspective: 1000px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}
.st-pusher::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: transparent;
  content: '';
  opacity: 0;
}
.st-menu-open .st-pusher::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.st-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999!important;
  visibility: hidden;
  width: 600px;
  height: 100%;
  background: white;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width: 320px) and (max-width: 667px) {
  .st-menu {
    width: 262px!important;
  }
}
.st-menu:before {
  left: 100%;
  top: 22%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: fixed!important;
  z-index: 1!important;
  pointer-events: none;
  background: url(images/Read-more.png) #111111;
  -webkit-background-size: 40px 150px;
  -moz-background-size: 40px 150px;
  -o-background-size: 40px 150px;
  background-size: 40px 150px;
  width: 40px;
  height: 155px;
  -webkit-border-top-right-radius: 2px;
  -webkit-border-bottom-right-radius: 2px;
  -moz-border-radius-topright: 2px;
  -moz-border-radius-bottomright: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
/*.st-menu:after {
	border-color: white;
	border-width: 50px;
	margin-top: 0px;
}
.st-menu:before {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: white;
	border-width: 50px;
	margin-top: 0px;
	
}*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width: 320px) and (max-width: 667px) {
  .st-menu:before {
    border-width: 16px;
  }
  .st-menu:after,
  .st-menu:before {
    top: 18%;
    border: solid transparent;
    background-image: url(images/Read-more-xs.png);
    -webkit-background-size: 30px 113px!important;
    -moz-background-size: 30px 113px!important;
    -o-background-size: 30px 113px!important;
    background-size: 30px 113px!important;
    width: 30px!important;
    height: 119px!important;
  }
}
.st-menu::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 60, 63, 0.9);
  content: '';
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.st-menu-open .st-menu::after {
  width: 0;
  height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
  transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}
/* content style */
/*.st-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.st-menu h2 {
	margin: 0;
	padding: 1em;
	color: rgba(0,0,0,0.4);
	text-shadow: 0 0 1px rgba(0,0,0,0.1);
	font-weight: @Reg;
	font-size: 2em;
}

.st-menu ul li a {
	display: block;
	padding: 1em 1em 1em 1.2em;
	outline: none;
	box-shadow: inset 0 -1px rgba(0,0,0,0.2);
	color: #f3efe0;
	text-transform: uppercase;
	text-shadow: 0 0 1px rgba(255,255,255,0.1);
	letter-spacing: 1px;
	font-weight: @Reg;
	-webkit-transition: background 0.3s, box-shadow 0.3s;
	transition: background 0.3s, box-shadow 0.3s;
}

.st-menu ul li:first-child a {
	box-shadow: inset 0 -1px rgba(0,0,0,0.2), inset 0 1px rgba(0,0,0,0.2);
}

.st-menu ul li a:hover {
	background: rgba(0,0,0,0.2);
	box-shadow: inset 0 -1px rgba(0,0,0,0);
	color: #fff;
}
*/
/* Individual effects */
/* Effect 1: Slide in on top */
.st-effect-1.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.st-effect-1.st-menu-open .st-effect-1.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.st-effect-1.st-menu::after {
  display: none;
}
/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
  padding-left: 300px;
}
/* @group GN additions */
#st-trigger-effects {
  position: fixed!important;
  z-index: 99;
  top: 20%;
}
.nospace {
  padding: 0px!important;
  margin: 0px!important;
}
.launch {
  background-color: transparent;
  position: absolute;
  z-index: 99;
  top: 21px;
  border: none;
  width: 40px;
  height: 155px;
}
.launch:focus {
  outline: none!important;
}
.closeinfo {
  float: right;
  margin-right: -15px;
  font-size: 26px;
  color: #0c0c0c !important;
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  -webkit-opacity: 0.8;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=80);
  filter: alpha(opacity=80);
}
a.closeinfo:hover,
a.closeinfo:active {
  color: #0c0c0c !important;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-width: 320px) and (max-width: 667px) {
  .closeinfo {
    margin-right: -5px;
  }
}
/* @end */
/*# sourceMappingURL=sidebars.css.map */