.inline-footnote {
    line-height: 1;
    vertical-align: text-top;
    font-size: 12px;
    cursor: pointer;
}

.inline-footnote:hover {
  text-decoration: none;
}

.footnoteContent {
    padding: 12px;
    background-color: #fff;
    font-size: 14px;
	line-height: 1.2em;
	display: none;
	opacity: 0;
	width: 0;
	max-height: 0;
	-webkit-transition: max-height .3s ease-out 0s,width .01s ease-out .3s,opacity .2s ease-out 0s;
	transition: max-height .3s ease-out 0s,width .01s ease-out .3s,opacity .2s ease-out 0s;
}

.footnoteContent.footnote_tooltip_displayed {
	display: block;	
}

.footnoteContent.footnote_tooltip_expanded {
	opacity: 1;
	width: 100%;
	max-height: 1000px;
	-webkit-transition: max-height .5s ease-in .01s,width .01s ease-in 0s,opacity .2s ease-in-out .21s;
	transition: max-height .5s ease-in .01s,width .01s ease-in 0s,opacity .2s ease-in-out .21s;
}

.footnoteContent img {
	max-width: 150px !important;
}