body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background: #F9F9F9;
	color: #333;
}

#page {
	max-width: 1500px;
	background: white;
	margin-left: auto;
	margin-right: auto;
}

/**
 * 	Text styles
 */

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.2em;
}

h3 {
	font-sie: 1em;
}

a {
	text-decoration: none;
	color: rgb( 20, 100, 255 );
}

a:hover {
	color: rgb( 50, 150, 255 );
}

a.building {
	font-weight: bold;
}

a.room {
	/*margin-left: 2em;*/
}

#toc ul.roomsList {
	list-style: none;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	background: #CCC;
	padding: 0 1em 3px;
	box-shadow: 2px 2px 10px #CCC;
	border-radius: 2px;
	-webkit-transition: all 0.3s ease-in-out;
}

#toc div:hover ul.roomsList, ul.roomsList:hover {
	max-height: 500px;
	opacity: 1;
}

#toc table td {
	vertical-align: top;
	padding-left: 0 1em 0;
}
