@charset "UTF-8";
/* CSS Document
 */

.modalNav {
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	margin: auto;
	text-align: right;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow-y: auto;
}

.modalNav .closeButton {
	width: 24px;
	cursor: pointer;
}

.modalNav ul {
	padding: 0px;
	text-align: left;
}
.modalNav li {
	list-style:none;
	padding: 0px;
	margin-left: 16px;
	margin-right: 16px;
	font-size: 1.4em;
	font-weight: lighter;
	cursor: pointer;
	color: #444;
}
.navItem {
}

.modalNav .grow:hover {
	transform: scale(1.015, 1.015);
	color: #222;
}
.modalNav .grow {
	transition: all 0.2s ease;
}


.modalNav img {
	width: 64px;
	vertical-align:middle;
	margin-right: 16px;
}


.modalNav a, .modalNav a:visited {
	font-size: 1.2em;
	cursor: pointer;
	color: #888;
	margin-top: 16px;
	display: block;
	text-align: center;
}
.modalNav a:hover {
	color: #666;
}



.navSlide {
	margin-top: 16px;
	margin-bottom: 16px;
	opacity: 1.0;
}
.navSlide.ng-hide {
	margin-top: 0px;
	margin-bottom: 0px;
	opacity: 0.1;
}
.navSlide.ng-hide-add, 
.navSlide.ng-hide-remove {
	transition: all 0.5s ease;
}
.navSlide.ng-hide-remove,
.navSlide.ng-hide-add {
  /* remember, the .hg-hide class is added to element
  when the active class is added causing it to appear
  as hidden. Therefore set the styling to display=block
  so that the hide animation is visible */
  display:block!important;
}


