/*
** View mode CSS
**
** Updated for new embed method (no iframe) 8-18-2010
** Added CAPTCHA styles 8-29-2010
**
** @date 12-6-2010
*/

/*body
{
	margin: 5px;
	padding: 0;
	font-size: 62.5%;
	font-family: Arial, Helvetica, sans-serif;
}*/

table { border-collapse: collapse; }

div#wrapper form h3   /* Form title */
{
	display: block;
	width: 485px;   /* Added 8-26-2010 */
	margin: 6px 12px 8px 6px;
	border-bottom-width: 1px;
	border-bottom-style: solid;   /* Changed 11-17-2010 */
	border-bottom-color: #CCCCCC;
	text-align: left;
}

input, textarea, select, option   /* Element text */
{
	font-family: Tahoma, Helvetica, sans-serif;
	font-size: 11px;
}

/*
** Structure elements
*/
div#wrapper
{
	width: 485px;
}

/*
** Form table
*/
table.tableFireForm
{
	width: 485px;
	margin: 0;
}

td.question-spacer        /* Question spacer row */
{
	/*height: 10px;*/
	height: 5px;   /* Changed 8-26-2010 */
}

tr.question-row           /* Question row */
{
	/*display: table-row-group;*/
	border: 1px solid transparent;
}
tr.question-row-hover     /* Question row hover */
{
	background-color: #F7F7F7;
	border: 1px solid #000;
}

th.question-label         /* Question label cell */
{
	/*width: 131px;*/
	/*width: 134px;*/   /* Changed 8-26-2010 */
	width: 140px;   /* Changed 8-29-2010 */
	/*padding: 4px 2px 1px 6px;*/
	padding: 5px 2px 1px 6px;   /* Changed 8-26-2010 */
	color: #222222;
	/*font-size: 9pt;*/
	font-size: 8pt;   /* Changed 8-26-2010 */
	/*font-family: Tahoma, Verdana, sans-serif;*/
	font-family: Verdana, Tahoma, sans-serif;   /* Changed 8-26-2010 */
	font-weight: bold;
	text-align: left;
}
td.question-element       /* Question element cell */
{
	width: 350px;
	padding: 3px 1px 3px 3px;
}
td.question-instruction   /* Question instructions cell (replaced by tooltip) */
{
	width: 0px;
	font-size: 2px;
}

.tableFireForm tfoot td         /* Submit button cell */
{
	/*padding: 18px 0 8px 3px;*/
	padding: 14px 0 8px 3px;   /* Changed 8-26-2010 */
}
.tableFireForm tfoot td input   /* Submit button */
{
	font-weight: bold;
	padding: 4px 17px 4px 17px;   /* Changed 8-26-2010 */
}

/*
** Misc 
*/
.question-element select        /* Select elements */
{
	/*margin: 2px 0 2px 0;*/
	padding: 1px;   /* Added 8-29-2010 */
}

div.fireFormFieldContainer      /* Checkbox, radio, select container */
{
	font-size: 11px;
	font-family: Tahoma, Helvetica, sans-serif;
	line-height: 18px;
}
.fireFormFieldContainer label   /* Checkbox, radio labels */
{
	vertical-align: top;
}
.fireFormFieldRadio,            /* Checkbox, radio elements */
.fireFormFieldCheckbox
{
	margin-top: 3px;
}

span.field-required             /* Required field asterix */
{
	color: #FF6600;
	font-family: Tahoma, Geneva, sans-serif;   /* Added 8-26-2010 */
}

/*
** Validation errors
*/
.fireFormFieldError               /* Element borders */
{
	border: 1px dotted #FF6600;
}
div.fireFormFieldContainerError   /* Container borders (checkboxes, radios, selects) */
{
	border: 1px dotted #FF6600;
}
p.fireFormErrorMsg                /* Error message text */
{
	margin: 3px 0 0 0;
	color: #FF6600;
	font-size: 10px;
	/*font-family: Arial, Helvetica, sans-serif;*/
	font-family: Tahoma, Verdana, sans-serif;   /* Changed 8-26-2010 */
	font-weight: bold;   /* Added 8-26-2010 */
}

/*
** CAPTCHA
*/
#captcha-img
{
	border: 1px solid #DEDEDE;
}
#captcha-text
{
	display: block;
	width: 75px;
	margin-top: 4px;
	padding: 1px;
}
#captcha-note
{
	display: block;
	margin: 2px 0 0 0;
	font-size: 10px;
	font-family: Tahoma, Geneva, sans-serif;
}

/*
** Tooltips
*/
div.tooltip
{
	background: transparent url(../images/tooltip-bg.png) 0 0 no-repeat;
	padding: 19px 32px;
	width: 166px;
	height: 72px;
	display: none;
	color: #FFF;
	text-align: left;
	/*font-size: 12px;*/
	font-size: 11px;   /* Changed 8-26-2010 */
	font-family: Tahoma, Verdana, sans-serif;
}

/*
** Dialogs (added 12-6-2010)
*/
.ui-dialog *
{
	font-size: 12px;
	text-shadow: none;
}

.dialog p
{
	font-size: 12px;
	/*font-family: Tahoma, Verdana, sans-serif;*/
	color: #333333;
}

/* Processing dialog */
#dialog_processing #processing_msg
{
	padding-left: 29px;
	background: url(../images/processing-ajax.gif) no-repeat 0 50%;
	vertical-align: middle;
}

/* Error dialog */
#dialog_error ul
{
	padding: 0 0 0 22px;
	text-shadow: none;
}
#dialog_error li
{
	list-style-image: url("../images/icons/error.png");
	font-size: 11px;
	margin-bottom: 5px;
	text-shadow: none;
}