/**
 * ################################################################################
 * ########## SMD Country Index - Inhaltsboxen
 * ##########
 * ########## shadow erzeugt einen Schlagschatten mit zwei abgerundeten Ecken
 * ########## glow   erzeugt einen weichen Schatten nach allen Seiten
 * ########## <div class="xxx shadow"> umgibt den Bereich xxx mit einem Schlagschatten
 * ########## <div class="xxx glow"> umgibt den Bereich xxx mit einem weichen Schatten
 * ##########
 * ########## @author		Trans Ident Line GmbH / vls
 * ########## @update		13.04.2009
 * ################################################################################
*/


div.contentbox_inner {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: white;
}

div.contentbox_content {
	padding: 10px;
}

div.abs_block {
	position: absolute;
	display: block;
}



@media screen {

	div.shadow .ol, div.glow .ol {
		top: -10px;
		left: -10px;
		width: 10px;
		height: 10px;
		background-repeat: no-repeat;
		background-position: 0px 0px;
	}

	div.shadow .om, div.glow .om {
		top: -10px;
		width: 100%;
		height: 10px;
		background-repeat: repeat-x;
		background-position: 0px -20px;
	}

	div.shadow .or, div.glow .or {
		top: -10px;
		right: -10px;
		width: 10px;
		height: 10px;
		background-repeat: no-repeat;
		background-position: -10px 0px;
	}

	div.shadow .rm, div.glow .rm {
		right: -10px;
		height: 100%;
		width: 10px;
		background-repeat: repeat-y;
		background-position: 0px 0px;
	}

	div.shadow .ur, div.glow .ur {
		bottom: -10px;
		right: -10px;
		width: 10px;
		height: 10px;
		background-repeat: no-repeat;
		background-position: -30px 0px;
	}

	div.shadow .um, div.glow .um {
		bottom: -10px;
		width: 100%;
		height: 10px;
		background-repeat: repeat-x;
		background-position: 0px -10px;
	}

	div.shadow .ul, div.glow .ul {
		bottom: -10px;
		left: -10px;
		width: 10px;
		height: 10px;
		background-repeat: no-repeat;
		background-position: -20px 0px;
	}

	div.shadow .lm, div.glow .lm {
		left: -10px;
		height: 100%;
		width: 10px;
		background-repeat: repeat-y;
		background-position: -10px 0px;
	}

	div.shadow .ol,
	div.shadow .om,
	div.shadow .or,
	div.shadow .ur,
	div.shadow .um,
	div.shadow .ul {
		background-image: url(shadow_sprite_horizontale.png);
	}

	div.shadow .lm,
	div.shadow .rm {
		background-image: url(shadow_sprite_vertikale.png);
	}

	div.glow .ol,
	div.glow .om,
	div.glow .or,
	div.glow .ur,
	div.glow .um,
	div.glow .ul {
		background-image: url(shadow_sprite_horizontale_glow.png);
	}

	div.glow .lm,
	div.glow .rm {
		background-image: url(shadow_sprite_vertikale_glow.png);
	}

	div#overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background-color: black;
		cursor: pointer;
	}
}


div.glow div.menuleiste {
	cursor: move;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 23px;
	width: 100%;
	background: url(menuleiste.png) repeat-x;
}

div.glow div.schliessen {
	position: absolute;
	top: 3px;
	right: 3px;
	cursor: pointer;
	width: 16px;
	height: 16px;
	background: url(button_schliessen.png) no-repeat;
}

div.resizehandle {
	position: absolute;
	cursor: se-resize;
	width: 10px;
	height: 10px;
	bottom: 0px;
	right: 0px;
	background: url(resizehandle.png) no-repeat;
}