/* Basic CSS (cross-browser safe) */

@light: tan;
@dark: rgb(51,102,51);

@basefont
{
	font-family: verdana;
	font-size: 1.2em;
	color: @light;
}

body
{
	uses @basefont;

	background: @dark;
		
	a
	{
		color: @light;
	}
	a:hover
	{
		text-decoration: rainbow;
	}

}


/* Well, what did you expect? */



