/*img, embed, object, video {*/

img, object, video {
/*img, object, video  and (-webkit-min-device-pixel-ratio:0) {*/
  max-width: 100%;
  height: auto;
  width: 100%; /*mozilla*/
}

/*fuer safari: */

@media screen and (-webkit-min-device-pixel-ratio:0) {
    img {
        max-width: 100%;
        height: auto;
        width: auto;
    }
}

/*FF: problem with accepting max-with, when with: 100%*/
@-moz-document url-prefix() {
    img{
        width: auto;
    }
}

/*IE 8-10: same fix as for FF */
@media screen\0 {
    img{
        width: auto;
    }

}


/*	TYPO3 speziell	*/
DIV.csc-textpic-center .csc-textpic-center-outer,
DIV.csc-textpic-center .csc-textpic-center-inner {
  float: none;


}

