#attachment {
	float:left;
	margin-left: 5px;
}

span.over { 
	position:relative;
}
span.over a span { 
	display:none; 
	left:0px;
}

span.over a:hover span {
	margin-left:159px;
	font-size: 1.0em;
	color:#000000; 
	background:#ABABAB; 
	display:block;
	position:absolute;
	margin-top:-6px;
	padding:5px;
	z-index:100;
	filter:alpha(opacity=90); /* Für IE */
	-moz-opacity:0.9; /* Für Gecko-Browser */
	opacity:0.9; /* Für Konqueror, Opera 9+, Safari */
}


/* ======================================================= */
/* Css rating star script By Will Speak                    */
/* Tested in: (+ - OK, - Not fuly functional)              */
/*    + FireFox: Mac, Linux, PC                            */
/*    + Safari: Mac, PC                                    */
/*    + Opera: Mac, Linux, PC                              */
/*    + Konqueror: Linux                                   */
/*    + Internet Explorer 7 : PC                           */
/*    + Camino: Mac                                        */
/*    - Internet Explorer 5.5 & 6: PC - No hover support   */
/* ======================================================= */

/* First we style the ordered list */
ol.rating {
	list-style-type:none;
	font-size:16px;
	margin:0.5em;
	padding:0;
	width:6.3em;
	padding-bottom:1.2em;
	margin-left:30px;
}
/* generic styles for all rating objects - Defaults to a star*/
ol.rating li {
	float:left;
	height:1em;
	margin:0.1em;
	overflow:hidden;
	background-image:url(./rating/FFrstar.png);
}
/* Styles for each rating object */
ol.med li {
	background-image:url(./rating/FFrmed.png);
}
ol.ast li {
	background-image:url(./rating/FFrast.png);
}
/* Create the hover styles */
ol.rating:hover li {
	background-position:50% -16px;
}
/* style the link to move the text out of the way */
ol li a {
	display:block;
	width:1em;
	height:1em;
	padding-top:1.2em;
	text-decoration:none;
}
/* Style the hover states to move the rest of the images to the greyed out state */
ol.rating li:hover + li, ol.rating li:hover + li + li, ol.rating li:hover + li + li + li , ol.rating li:hover + li + li +li +li{
	background-position:50% -32px;
}
/* Style the items in ratings with preset values */
ol.one li, ol.two li, ol.two li , ol.three li, ol.four li, ol.five li {
	background-position:50% -16px;
}
/* and remove the rating styling from the rest of the items */
ol.one li + li, ol.two li + li + li, ol.three li + li + li + li, ol.four li + li + li + li + li {
	background-position:50% 0;
