/* Ordentlig positionering af images i alle browsere: Fra http://lists.netfielders.de/pipermail/typo3-project-content-rendering/2005-May/000050.html */
	/* this centers images in Gecko/Opera */
	div[class="imageorient-0"] table[class="imgtext-table"],
	div[class="imageorient-8"] table[class="imgtext-table"] {
	  margin: 0 auto;
	}
	
	/* this right-aligns images above the text in Gecko/Opera */
	div[class="imageorient-1"] table[class="imgtext-table"] {
	  float: right;
	  width: auto;
	}
	/* careful, sometimes other tags may follwow the table */
	div[class="imageorient-1"] p {
	  clear: right;
	}
	
	
	/* this right-aligns images below the text in Gecko/Opera */
	div[class="imageorient-9"] table[class="imgtext-table"] {
	  float: right;
	  width: auto;
	}
	// this avoids following content to float besides the images
	div[class="imageorient-9"] div[class="break"] {
	  clear: right;
	}
/* Slut på positionering af img*/