Prototip.Styles = {
	// The default style every other style will inherit from.
	// Used when no style is set through the options on a tooltip.
	"default": {
		border: 6,
		borderColor: "#c7c7c7",
		className: "default",
		closeButton: false,
		hideAfter: false,
		hideOn: "mouseleave",
		hook: false,
		//images: "styles/creamy/",		// Example: different images. An absolute url or relative to the images url defined above.
		radius: 6,
		showOn: "mousemove",
		stem: {
			//position: "topLeft",		// Example: optional default stem position, this will also enable the stem
			height: 12,
			width: 15
		}
	},
	
	// Kein hooking und kein Offset, da der Tip sonst nicht innerhalb des Viewports bleibt
	"caraworld": {
		className: "caraworld",
		border: 2,
		radius: 2,
		borderColor: "#3b68af",
		closeButton: false,
		images: "/",
		stem: { height: 12, width: 15 },
		offset: { x: 15, y: 15 }
	}
};