/* Copyright © 2005 Code Society. All rights reserved. */

/* Main Styles */

.ChatterBox
{
	display: block;
	width: 175px;
	text-align: center;
	border: 1px solid #B0C4DE;
}

.ChatterBoxTitle
{
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 1.0em;
	font-weight: bold;
	margin: 5px;
}

.ChatterBoxMessageList
{
	font-size: 0.75em;
	font-family: Verdana, Arial, Sans-Serif;
	text-align: left;
	border-top: 1px solid #B0C4DE;
	border-bottom: 1px solid #B0C4DE;
	border-collapse: collapse;
	margin: auto;
	width: 100%;
	overflow: hidden;
}

.ChatterBoxMessage
{
	background-color: #FCFDFE;
	padding: 2px;
	clip: auto;
	overflow: auto;
}

.ChatterBoxMessageAlternate
{
	background-color: #F7FAFC;
	padding: 2px;
	clip: auto;
	overflow: auto;
}

/* Editing Styles */
.ChatterBoxEditBox
{
	display: none; /* Begin as invisible */
}

.ChatterBoxEditLink
{
	display: block;
	text-align: center;
	font-size: 0.5em; /* make font size small for symbol */
	text-decoration: none;
}

.ChatterBoxEditLink:hover
{
	margin: 0;
}

.ChatterBoxEditLink:hover .ChatterBoxEditBox
{
	display: block;
	text-align: center;
	border: 1px dashed #B0C4DE;
	padding: 2px;
	font-size: 2em; /* restore to original font size from small symbol */
}

.ChatterBoxPasswordBox
{
	width: 50px;
	border: 1px solid #DCDCDC;
	background-color: #FFFFFF;
	font-size: 0.8em;
}

.ChatterBoxDeleteButton
{
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	border: 1px solid #778899;
	background-color: #FEFEFE;
}

/* Input Area Styles */

.ChatterBoxAuthor
{
	font-weight: bold;
}

.ChatterBoxNameBox
{
	border: 1px dashed #B0C4DE;
	font-weight: bold;
	font-size: 0.7em;
	font-family: Verdana, Arial, Sans-Serif;
	background-color: #F7FAFC;
	background-image: url(ChatterBoxNameBG.png);
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: auto;
	width: 150px;
	margin-bottom: 5px;
}

.ChatterBoxCommentBox
{
	border: 1px solid #B0C4DE;
	font-size: 0.7em;
	font-family: Verdana, Arial, Sans-Serif;
	background-color: #F7FAFC;
	background-image: url(ChatterBoxCommentBG.png);
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: auto;
	width: 150px;
	margin-bottom: 5px;
}

.ChatterBoxSubmitButton
{
	font-weight: bold;
	font-size: 0.8em;
	font-family: Verdana, Arial, Sans-Serif;
	color: #4682B4;
	display: block;
	margin: auto;
	background-color: #F7FAFC;
	border: 1px solid #B0C4DE;
}

.ChatterBoxButtonUp, .ChatterBoxButtonDown
{
	background-color: #FFFFFF;
	width: 15px;
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	border: 0;
}

.ChatterBoxButtonUp { background-image: url(ChatterBoxArrowUp.png); }
.ChatterBoxButtonDown { background-image: url(ChatterBoxArrowDown.png); }

/* Brading Notice Styles */

p.ChatterBoxBrandingNotice
{
	font-size: 0.7em;
	font-family: Verdana, Arial, Sans-Serif;
	margin: 5px;
}

a.ChatterBoxBrandingNotice
{
	color: #708090;
	text-decoration: none;
}

/* Other */

.Hidden
{
	display: none;
}