.inline-footnote {
    padding: 2px;
    text-decoration: none;
    border-radius: 3px;
    margin: 0;
    line-height: 1;
    vertical-align: text-bottom;
    font-size: 0;
    margin: -5px 0 0;
    display: inline-block;
    font-weight: 500;
    border-bottom: 0px;
    cursor: pointer;
}

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

.inline-footnote:before {
	color: #4EADD7;
    display: block;
    font-size: 16px;
    display: inline-block;
    font-family: FontAwesome;
    content: '\f0fe';
}

.inline-footnote.inline-footnote-expanded:before {
	content: '\f146';
}

.footnoteContent {
    padding: 12px;
    background-color: #fff;
    font-size: 13px;
	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;
}