div.mainslim {
	width: 620px;
}

div.chat_qa {
	border-bottom-style: dashed;
	border-bottom-color: #98abbe;
	border-bottom-width: 2px;
	margin-top: 6px;
}

.qaimage {
  text-shadow: 0px 0px;
  float: left;
  text-align: left;
  padding-right: 10px;
}

.message {
	padding: 2px;
	font-size: 14px;
	width: 500px;
	border-style: solid;
	border-color: #ff7f70;
	border-width: 1px;
	color: black;
	background-color: #fdffbe;
}

.error-message {
	font-size: 12px;
	color: #ff7632;
}

.breadcrumb {
	margin-left: 0px;
	margin-bottom: 10px;
	margin-right: 0px;
	margin-top: 0px;
	padding: 0px;
}

.disabled {
  color: gray;
}

/* Overrides for adventure journal form to null default form elements below */
#advform textarea, #advform input {
  margin: 0;
  padding: 0;
}

/* Remove borders on images */
img { border: none; }



/*------------------------------------------------*/
/* Form formatting from http://www.websiteoptimization.com/speed/tweak/forms/ */
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  width: 520px; 
}

fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #ccc;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

legend {
  color:#FFDA66; 
  font-size:16px; 
  margin:1em 0 0 0;
	font-weight: bold;
	/* bump up legend font size, not too large or it'll overwrite border on left */
	/* be careful with padding, it'll shift the nice offset on top of border  */
}

label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 120px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
	font-weight: bold;
}

form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;
	/* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form .submit {
	margin-left:100px; 
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 130px; 
	/* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; 
	/* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.error {
	color: #dd0;
	font-family: Courier, monospace;
	}
.form-error {
	background: #ffcccc;
	}
.error-message {
	display: block;
	margin: 0 0 5px 130px; 
	/* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

