.floatbox,
.floatbox *{
	margin: 0;
	padding: 0;
}
.floatbox{
	display: none;
}
.floatbox img{
	vertical-align: bottom;
}
.floatbox-container{
	width: 200px;
	height: 200px;
}
.floatbox-contents{
	background: #FFFFFF url("loading.gif") no-repeat center center;
	height: 100%;
}
.floatbox .floatbox-container{
	/*transition: all 1s;*/
	opacity: 0;
	position: absolute;
	margin: auto;
	background: #FFFFFF;
	padding: 10px;
}
.floatbox-container img{
	/*transition: all 1s;*/
}
.floatbox-backdrop{
	/*transition: all 1s;*/
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.floatbox-show{
	display: block;
}
.floatbox-show .floatbox-container{
	/*transition: all 1s;*/
	opacity: 1;
}
.floatbox-show .floatbox-backdrop{
	/*transition: all 1s;*/
	opacity: 1;
}
.floatbox-next{
	display: none;
	cursor: pointer;
	position: absolute;
	right: -15px;
	top: 50%;
	margin-top: -19px;
}
.floatbox-next-show{
	display: block;
}
.floatbox-previous{
	display: none;
	cursor: pointer;
	position: absolute;
	left: -15px;
	top: 50%;
	margin-top: -19px;
}
.floatbox-previous-show{
	display: block;
}
.floatbox-close{
	cursor: pointer;
	position: absolute;
	right: -15px;
	top: -15px;
}
.floatbox-fixed{
	position: fixed;
}