/* InvestQuest Quick Quote Style Sheet */
/* This must be included on any page using the Quick Quote Application */
/*
 * These classes allow you to custom modify the Quick Quote.  To turn
 * off a particular row, use display:none.  To center the table in
 * it's container, you must use margin-left/right: auto. You *may*
 * need body { text-align: center } for IE to work but that causes
 * other issues as well.  I will continue working on a better solution
 */
 
/* the overall container */
.qquote {
 color:#333333;
 font-family: "arial";
 text-align: center;
}
/* if the change and change % are positive, negative, or even */
.qq_positive {
 color: #6eb927;
}
.qq_negative {
 color: #990000;
}
.qq_nochange {
 color: #000000;
}
/* the actual table of values */
.qq_table {
 font-size: 11px;
 margin-left: auto;
 margin-right: auto;
 width: 200px;
}
/* All left-side table entries (labels) */
.qq_label {
 text-align: left;
}
/* All right-side table entries (values) */
.qq_value {
 text-align: right;
}
/* the Symbol Row */
.qq_symbol_row {
	display:none;
}
/* the Last Value Row, with a label of Last */
.qq_last_row {
 display:none;
}
/* the Last Value Row, with a label of Price */
/* you should only enable one of these two... */
.qq_price_row {
}
/* the Change Row */
.qq_change_row {
}
/* the Change % Row */
.qq_percent_row {
}
/* the Volume Row */
.qq_volume_row {
}
/* the Date as a single column */
.qq_date1_row {
 display:none;
 text-align:center;
}
/* the Date in two columns: Last Trade, and Date */
/* you should only enable one of these two... */
.qq_date2_row {
}
/* the actual Chart */
.qq_chart {
 /* if you don't want the chart, uncomment the following... */
 display:none;
 /* padding: 5px;*/
}

