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

/**
 * 	Header
 */
.header {
	display:flex;
	flex-shrink: 0;
	flex-direction:row;
	align-items: center;
	flex-wrap: wrap;
}
.header .menuicon {
	width: 20px;
	cursor:pointer;
}
.header .producticon {
}
.header .title {
	flex:1;
	min-width: 33%;
}
.header .navbutton {
	margin-left: 2px;
	width: 20px;
	height:20px;
	cursor:pointer;
}
.header a {
	display:flex;
	justify-content: center;
	flex-direction:row;
	align-items:center;
}
@media (max-width: 640px) {	
	.header a  {
		justify-content: flex-start;
	}
}
.header .searchBig {
	margin-right:64px;
	margin-left:16px;
	margin-top:2px;
	margin-bottom:2px;
}


/**
 * 	Footer
 */
.footer {
}

/*
 * Master
 */
.master .tocitem {
  display: flex;
  flex-direction: row;
  cursor:pointer;
}
.master .tocitem div {
	display:block;
	margin-top:2px;
	margin-right: 4px;
	height: 10px;
	width: 10px;
}
.master .tocitem img {
	height: 10px;
}
.master .tocitem span {
	display:block;
	flex: 1;
}
.arrow {
    transition: transform .2s ease-in-out;
}
.expanded {
    transform:rotate(90deg);
}

.slideDown {
	height: auto;
	padding: 4px 0px 4px 0px;
	overflow:hidden;
}
.slideDown.ng-hide {
	height: 0;
   	padding: 0px 0px 0px 0px;
}

.slideDown.ng-hide-add,
.slideDown.ng-hide-remove {
  transition: all linear 0.2s;
}
.slideDown.ng-hide-remove,
.slideDown.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;
}

/*
 * Detail
 */

.previous {
	display: block;
	margin-bottom:16px;
}
.next {
	display: block;
	float: right;
	margin-bottom:16px;
}

/*
 * Character style
 */
.underline {
    text-decoration: underline;
}

/*
 * How-to
 */

.howtolabel {
}
.howtocontent {
	opacity: 0;
	margin: 0;
	padding-top: 0;
	padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}
.howtocontentshown {
	opacity: 1;
}

/*
 * Footnote
 */
.footnotelabel {
}
.footnotecontent {
	margin:0;
	padding-top: 0;
	padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-out;
}
.footnotecontentshown {
	opacity: 1;
}

/**
 * 	Figure
 */
figure {
	display: block;
	text-align: center;
}
.figgroup {
	width: 100%;
}
.figgroup td {
	text-align: center;
}
.figgrouptd {
    text-align: center;
    border: none;
    margin: none;
}
.figgroup figure {
	width: auto;
	margin:0 0 0 0;
}
figure img {
	max-width: 100%;
}
.figgroup img {
	max-width: 100%;
}

/*
 Table
 */
.nobreak {
    display: inline-block;
}
.noborder {
    border: none;
}
.noborder:first-child {
    padding-left:0;
}
.noborder:last-child {
    padding-right:0;
}
.centered { 
    margin-left: auto;
    margin-right: auto;
}

/*
 Search Results 
 */
 .searchresultpath {
	 color: #BBB;
 }