/*
 * mediaboxAdvanced
 */
#mbOverlay {
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #f9e11e;
	cursor: pointer;
}

    #mbOverlay.mbOverlayIE {
	    position: absolute;
    }

#mbCenter {
	position: fixed;
	z-index: 9999;
	left: 50%;
	overflow: hidden;
	background: #002244;
}

    #mbCenter.mbLoading {
	    background: #002244 url(../images/mediabox/loading.gif) no-repeat 50% 50%;
    }

#mbImage {
	position: relative;
	padding: 10px;
}

#mbBottom {
	font: 11px/14px Arial, Helvetica, sans-serif;
	color: #fff;
	height: 18px;
	padding: 0 10px 7px;
}

#mbTitle {
	display: none;
}

#mbNumber {
	display: inline;
}

#mbCaption {
	display: none;
}

#mbPrevLink,
#mbNextLink {
    position: absolute;
    display: block;
    z-index: 9999;
    top: 0;
    bottom: 35px;
    width: 50%;
    _height: expression((this.offsetParent.clientHeight - 35) + 'px');
    outline: none;
}

#mbPrevLink {
    left: 0;
    background: url(../images/mediabox/en/previous.png) no-repeat 0 -100%;
}

    html[lang|=nl] #mbPrevLink { background-image: url(../images/mediabox/nl/previous.png); }
    html[lang|=de] #mbPrevLink { background-image: url(../images/mediabox/de/previous.png); }

    #mbPrevLink:hover {
        background-position: 0 30%;
    }

#mbNextLink {
    right: 0;
    background: url(../images/mediabox/en/next.png) no-repeat 0 -100%;
}

    html[lang|=nl] #mbNextLink { background-image: url(../images/mediabox/nl/next.png); }
    html[lang|=de] #mbNextLink { background-image: url(../images/mediabox/de/next.png); }

    #mbNextLink:hover {
        background-position: 100% 30%;
    }

#mbCloseLink {
	display: block;
	float: right;
	height: 15px;
	margin: 0;
	outline: none;
}

#mbCloseLink {
	width: 75px;
	background: url(../images/mediabox/en/close.png) no-repeat 100% 50%;
}

    html[lang|=nl] #mbCloseLink { background-image: url(../images/mediabox/nl/close.png); }
    html[lang|=de] #mbCloseLink { background-image: url(../images/mediabox/de/close.png); }

#mbError {
	position: relative;
	color: #000;
	text-align: center;
	border: 10px solid #700;
	padding: 10px 10px 10px;
	margin: 20px;
}

#mbError a,
#mbError a:link,
#mbError a:visited,
#mbError a:hover,
#mbError a:active {
	color: #700;
	font-weight: bold;
	text-decoration: underline;
}