/*

RB_PATH

Piece of css to show a path
Author: Remy Blom (remy@kmt.hku.nl)
Date: 29 Sept 2009

Advice: Keep this file as it is and add your designy things in your own css files

*/

ul.rb_path									/* get rid of all the bullets, and the ul's padding */
	{ list-style: none; padding: 0px; }
ul.rb_path li								/* display li's horizontally */
	{ display: inline; }
ul.rb_path li:after							/* add a > to content of all li's */
	{ content: " > "; } 
ul.rb_path li:last-child::after				/* add nothing to the last li */
	{ content: ""; } 
