/* CSS menymall */

h1 {
	font-size: 40px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
	color: #000;
}
/* Listan <UL> med knapparna */
ul {
	margin: 30px;
	padding: 0;
}
/* Listelementen <LI> med knapparna */
#meny li {
	list-style: none;
	margin: 5px 0 10px 0;
}
#meny a {
	margin: 0;
	padding: 5px 10px 5px 25px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, sans-serif;
	font-size: 20px;
	color: rgba(66,48,1,1);
	background: transparent url("symbol.gif") left center no-repeat;
}
#meny a:hover {
	cursor: pointer;
	background: transparent url("symbol-over.gif") left center no-repeat;
}
#meny a:link, #meny a:visited {
	color: rgba(0,0,0,1);
	text-decoration: none;
}
#meny a#current {
	background: transparent url("symbol-active.gif") left center no-repeat;
}
