/* container for entire shoutbox (shouts + form) */
#shoutboxContainer {
	background: transparent;
	color: #666;
	font-family: Verdana, Arial, sans-serif;
	margin: 0 auto;
	padding: 2px;
	width: 246px;
}

/* Container for the shouts */
#shoutboxShouts {
	background: transparent;
	font-size: 12px;
	line-height: 1.5em;
	overflow: auto;
	min-height: 100px;
	max-height: 200px;
	padding-bottom: 0px;
	padding-left: 1%;
	padding-right: 0px;
	padding-top: 5px;
	text-align: left;
	width: 99%;
}

/* CSS for each individual shout username/message */
.shoutboxShout {
	padding-bottom: 5px;
	padding-top: 5px;
}

/* CSS for displaying the Usernames */
.shoutboxUsername {
	font-weight: bold;
}

/* CSS for the messages
.shoutboxMessage {
} */

/* CSS for shoutbox history div and link */
#shoutboxHistory {
	font-size: 10px;
	padding: 5px;
	padding-bottom: 5px;
	padding-top: 10px;
	text-align: center;
	width: 100%;
}

#shoutboxHistory a {
	color: #333;
	text-decoration: none;
}

/* CSS for form */
#shoutboxForm {	
	font-size: 12px;
	margin: 0 auto;
	padding-top: 5px;
	text-align: center;
	width: 90%;
}

#shoutboxForm .shoutboxField {
	background: #FFF;
	border: 1px solid #E8E8E8;
	color: #666;
	font-family: Verdana, Arial, sans-serif;
	padding-bottom: 4px;
	padding-left: 3px;
	padding-right: 3px;
	padding-top: 4px;
	width: 100%;
}

#shoutboxForm .button {
	background: #FFF;
	border: 1px solid #E8E8E8;
	color: #666;
	cursor: pointer;
	padding: 3px;
}
