// create content node
var kdeWidgetContent = document.createElement("div");
kdeWidgetContent.setAttribute("id", "kdeWidgetContent");
document.getElementById("kdeWidget").appendChild(kdeWidgetContent);


// insert content
kdeWidgetContent.innerHTML = '<div><strong>Anzahl Sterne:</strong> 4.5 von 5<br/><strong>Anzahl Bewertungen:</strong> 73</div><h4>Die letzten 5 Bewertungen</h4><ul><li ><strong>K&uuml;che inkl. Montage</strong>Eine neue K&uuml;che wurde von der Firma M&ouml;bel Dietz montiert. Die Be... <a href="http://www.kennstdueinen.de/moebelhaus-willingshausen-moebel-dietz-e-k-inh-armin-dietz-d47772.html#id99580" target="_blank" title="Lesen Sie die vollst&auml;ndige Bewertung von &quot;M&ouml;bel Dietz e.K., Inh. Armin Dietz&quot; auf KennstDuEinen.de">[mehr]</a><i>(28.01.12)</i></li><li ><strong>Sehr starkes Mitarbeit...</strong>Die Monteure waren sehr p&uuml;nktlich da. Mit gro&szlig;er Sorgfalt bauten... <a href="http://www.kennstdueinen.de/moebelhaus-willingshausen-moebel-dietz-e-k-inh-armin-dietz-d47772.html#id98168" target="_blank" title="Lesen Sie die vollst&auml;ndige Bewertung von &quot;M&ouml;bel Dietz e.K., Inh. Armin Dietz&quot; auf KennstDuEinen.de">[mehr]</a><i>(14.01.12)</i></li><li ><strong>Sehr guter Service!</strong>Kauf einer Couch und 8 Esszimmerst&uuml;hlen: S&auml;mtliche Zusatzw&uuml;nsche... <a href="http://www.kennstdueinen.de/moebelhaus-willingshausen-moebel-dietz-e-k-inh-armin-dietz-d47772.html#id93526" target="_blank" title="Lesen Sie die vollst&auml;ndige Bewertung von &quot;M&ouml;bel Dietz e.K., Inh. Armin Dietz&quot; auf KennstDuEinen.de">[mehr]</a><i>(16.12.11)</i></li><li ><strong>Super Service</strong>Wir kennen Moebel-Dietz seit ca. 12 Jahren und sind sehr zufried... <a href="http://www.kennstdueinen.de/moebelhaus-willingshausen-moebel-dietz-e-k-inh-armin-dietz-d47772.html#id94047" target="_blank" title="Lesen Sie die vollst&auml;ndige Bewertung von &quot;M&ouml;bel Dietz e.K., Inh. Armin Dietz&quot; auf KennstDuEinen.de">[mehr]</a><i>(15.12.11)</i></li><li class="last"><strong>Polsterm&ouml;bel und Esszi...</strong>Wir suchten Landhauspolsterm&ouml;bel und wurden bei M&ouml;bel Dietz f&uuml;nd... <a href="http://www.kennstdueinen.de/moebelhaus-willingshausen-moebel-dietz-e-k-inh-armin-dietz-d47772.html#id93259" target="_blank" title="Lesen Sie die vollst&auml;ndige Bewertung von &quot;M&ouml;bel Dietz e.K., Inh. Armin Dietz&quot; auf KennstDuEinen.de">[mehr]</a><i>(13.12.11)</i></li></ul>';


// insert styles
var styleDefinitions = '/* basic styles */  #kdeWidgetLogo, #kdeWidgetLogo *, #kdeWidget, #kdeWidget * { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif !important; font-size: 11px !important; font-style: normal !important; font-weight: normal !important; color: black !important; line-height: 15px !important; white-space: normal !important; background-image: none !important; margin: 0px !important; padding: 0px !important; border: 0px !important; overflow: hidden !important; background-color: white !important; text-indent: 0px; text-align: left; }   #kdeWidgetLogo, #kdeWidgetLogo * { background-color: transparent !important; }  #kdeWidgetLogo { display: block !important; width: 163px !important; }  #kdeWidgetLogo img { margin-bottom: 8px !important; }   #kdeWidget { border: 1px solid #ccf2d7 !important; }  #kdeWidgetHeader { background-color: #eaf8e6 !important; padding: 8px !important; color: #3abc01 !important; height: auto !important; }  #kdeWidget a { color: #3abc01 !important; text-decoration: underline; background-color: #eaf8e6 !important; }  #kdeWidget a:hover { text-decoration: none; }  #kdeWidgetContent div { padding: 8px !important; border-top: 1px solid #ccf2d7 !important; border-bottom: 1px solid #ccf2d7 !important; }  #kdeWidgetContent div.nodata { border-bottom: none !important; }  #kdeWidgetContent div strong { font-weight: bold !important; }  #kdeWidgetContent h4 { color: #3abc01 !important; padding: 8px !important; background-color: #eaf8e6 !important; border-bottom: 1px solid #ccf2d7 !important; }  #kdeWidgetContent ul { list-style-type: none; }  #kdeWidgetContent ul li { display: block; }  #kdeWidgetContent ul li.last { border: none !important; }  #kdeWidgetContent ul li strong { display: block; font-weight: bold !important; }  #kdeWidgetContent ul li a { background-color: white !important; }  #kdeWidgetContent ul li i { display: block; padding-top: 4px !important; font-style: italic !important; } /* vertical styles */  #kdeWidgetContent ul li { border-bottom: 1px dotted #ccf2d7 !important; padding: 8px !important; }  #kdeWidgetContent ul li strong { padding-bottom: 2px !important; } /* red styles */  #kdeWidget { border-color: #f2cccc !important; }  #kdeWidgetHeader { background-color: #f8e6e6 !important; color: #bc0101 !important; }  #kdeWidget a { color: #bc0101 !important; background-color: #f8e6e6 !important; }  #kdeWidgetContent div { border-color: #f2cccc !important; }  #kdeWidgetContent h4 { color: #bc0101 !important; background-color: #f8e6e6 !important; border-color: #f2cccc !important; }  #kdeWidgetContent ul li { border-color: #f2cccc !important; }';

var styleElement = document.createElement('style');
styleElement.setAttribute("type", "text/css");

// is it IE?
if (styleElement.styleSheet) {

	// yes
	styleElement.styleSheet.cssText = styleDefinitions;
}
else {

	// no
	var tt1 = document.createTextNode(styleDefinitions);
	styleElement.appendChild(tt1);
}

document.getElementById("kdeWidget").parentNode.insertBefore(styleElement, document.getElementById("kdeWidget").nextSibling);
