/* CSS Document */

body{
font-family: verdana; 
background: white; 
text-align: center; 
}

.logo{
height: 130px; 
width: 120px; 
background: black; 
border: none;
font-size: 32px; 
color: lightblue;
}

.navBar{
position: absolute; 
top: 0px; 
left: 0px; 
width: 120px; 
height: 100%; 
border: none; 
border-width: 1px; 
border-color: black; 
font-size: 12px; 
background-color: lightblue; 
color: darkblue;
overflow: auto;
}
.categoryLabel{
	font-weight: bold; 
	color: black;
	margin-bottom:10px;
}

.frame{
position: absolute; 
top: 0px; 
left: 121px; 
width: 87%; 
height: 99%;
}

.coldLink {
	cursor: pointer;
	background-color: lightblue; 
	color: darkblue;
	padding-top:5px;
	padding-bottom:5px;
	margin-bottom:10px;
	border:1px solid lightblue;
}

.hotLink {
	cursor: pointer;
	color: darkblue; 
	background-color:white;
	padding-top:5px;
	padding-bottom:5px;
	margin-bottom:10px;
	border:1px solid darkblue;
}

