/* 'centre direct images' by ohkine */
/* based on 'Center Images - For Reals' by Deemonie */

@-moz-document
	url-prefix(http://),
	url-prefix(https://),
	url-prefix(file://),
	url-prefix("about:blank") {

	html:not([xmlns]):not([dir]):not([lang]) head + body > img:first-child:last-child:only-of-type {
		position: absolute;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		margin: auto;
		padding: 0px;
		border: 2px #FFFFFF solid; /* fake padding so non-transparent images don't look weird when hovered */
		outline: 1px solid #ECECEC;
	}

	html:not([xmlns]):not([dir]):not([lang]) head + body > img:first-child:last-child:only-of-type:hover {
		background: transparent url('data:image/gif;base64,R0lGODlhFAAUAIAAAP////X19SwAAAAAFAAUAAACKIyPoMvowSJ4SS567MVQT+59WMh1WkmCoYey6vlaLTy6NU2ltxxLZQEAOw==');
		outline: 1px solid #DCDCDC; /* fake a border with this */
	}

}