/* 
Some of the colors seen on spidergaming.org:

#71564B - top brown of banner
#AC9C90 - middle of brown in banner
#C3B6AD - bottom brown in banner

#A5BCFF - top of banner blue
#CBFEFF - mid blue in banner
#004D99 - header blue

#E6E295 - straw (from bg)
 */
 /******************** General *******************************/
#vent_box div {
	min-height: 20px;
}
#vent_box {
	border-top: solid #646464 1px; /* grey */
	border-right: solid #646464 1px; /* grey */
	border-left: solid black 1px;
	border-bottom: solid black 1px;
	width: 200px;
	font-family: verdana;
	font-size: 12px;
	border-radius: 5px 5px 0px 0px;
}
/******************** Header ********************************/
#vent_header {
	background-color: #B2A59A; /* medium brown */
	border-bottom: solid #5C4838 1px; /* dark brown */
	text-align: center;
	height: 30px;
	line-height: 30px;
	border-radius: 4px 4px 0px 0px;
}
#server_name {
	font-weight: bold;
}
#num_users {
	margin-left: 3px;
}
/**************** Channels / Users **************************/
.channel,
.user  {
	padding: 0 4px;
	line-height: 20px;
}
.channel {
	background-color: #DBD4CE;  /* light brown */
	border-bottom: solid #C3B6AD 1px; /* medium-light brown */
	font-weight: bold;
}
#channels {
	background-color: #F6F6F5; /* off-white (brown hint) */
}
.user {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.comment {
	color: grey;
}
/***********************************************************/