/*----------------------------------------------
CSS styled IMGTEXT with alt and title attributes
(sl_css_imgtext)
----------------------------------------------*/

/* default styles for extension "tx_slcssimgtext" */
/*
   Licensed under the GPL, see http://www.gnu.org/copyleft/gpl.html
	(c) the TYPO3 content rendering group
*/

/* COMMON */

/*Standard-Inhalt*/
.csi-textpic {
	/*background: green;*/
}
.csi-textpic img {
	border: 1px solid #aaa;
	margin: 0px 0px 1em 0px;
}
.csi-textpic .csi-caption {
	/* will have to be an inline style?  - controlled by TS [left - right - center]*/
	font-style: italic;
	text-align: left;
}


.csi-textpic .csi-image {
	/*border: 1px solid red;*/
	margin: 0px 1em 1em 10px;
	background: #FFF;
	/*width: 210px; will have to be an inline style - controlled by TS*/
}
.csi-textpic .csi-imagewrap {
}
.csi-textpic .csi-text {
	/*border: 1px solid silver;*/
	text-align: left;
	/*will have to be an inline style - controlled by TS*/
}
.csi-text p {
	margin-top: 0;
}

/* CENTER */
.csi-center .csi-image {
	margin: 0px auto;
}

/* RIGHT */
.csi-right div.csi-image {
	float: right;
	clear: both;
}
.csi-right div.csi-text {
	clear: right;
}

/* LEFT */
.csi-left div.csi-image {
	float: left;
	clear: both;
	/*padding-left: 42px;*/
	padding-left: 22px;
}
.csi-left div.csi-image img{
	border: none;
}
.csi-left div.csi-text {
	clear: left;
}

/* INTEXT LEFT */
.csi-intext-left .csi-image {
	float: left;
	clear: both;
	margin-right: 10px;
	padding-left: 42px;
}

/* INTEXT RIGHT */
.csi-intext-right .csi-image {
	float: right;
	clear: both;
	margin: 0px 2em 1em 1em;
	/*margin: 0px 42px 0px 10px;
	background: #ccc;*/
}

/* INTEXT RIGHT NOWRAP */
.csi-intext-right-nowrap .csi-text {
	/*margin-right: 215px; will have to be an inline style - controlled by TS*/
}

/* Hide from IE5-mac. Only IE-win sees this. \*/
*html .csi-intext-right-nowrap .csi-text {
	height: 1%;
}
/* End hide from IE5/mac */
.csi-intext-right-nowrap .csi-image {
	float: right;
	clear: both;
}

/* INTEXT LEFT NOWRAP*/
.csi-intext-left-nowrap .csi-text {
/*margin-left: 215px;will have to be an inline style - controlled by TS*/
}

/* Hide from IE5-mac. Only IE-win sees this. \*/
*html .csi-intext-left-nowrap .csi-text {
	height: 1%;
}
/* End hide from IE5/mac */

.csi-intext-left-nowrap .csi-image {
	float: left;
	clear: both;
}
