ul#rooms {
	list-style-type: none; 
	margin-left: 0; 
	padding-left:0; 
	white-space: nowrap; 
	}

#rooms li {
	display: inline; 
	}

#rooms a { 
	text-decoration: none; 
	padding: 3px 10px; 
	border: 1px solid green 
	}

#rooms a:link {
	color: green; 
	background-color: white; 
	text-decoration: none;
	}

#rooms a:visited {
	color: maroon; 
	background-color: white; 
	text-decoration: none; 
	border: 1px solid maroon;
	}

#rooms a:hover {
	color: green; 
	background-color: white;
	font-weight: bold;  
	text-decoration: none; 
	border: 1px solid green;
	}
 
#rooms a:active {
	color: red; 
	text-decoration: underline;
	border: 2px solid red;
	}


