/* InvestQuest Detail Style Sheet */
/* This must be included on any page using the IDS Detail Application */
/*
 * These classes allow you to custom modify the Detail 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 */
.iq_detail {
 background-color: #FFFFFF;
 color: #666666;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 text-align: center;
}
/* if the change and change % are positive, negative, or even */
.iq_positive {
 color: #6eb927;
}
.iq_negative {
 color: #990000;
}
.iq_nochange {
 color: #000000;
}
/* the actual table of values */
.iq_table {
 margin-left: auto;
 margin-right: auto;
 width: 400px;
}
/* All left-side table entries (labels) */
.iq_label {
 background-color: #6eb927;
 color: white;
 text-align: left;
 font-size:11px;
 padding:5px 3px 5px 3px;
}
/* The middle (spacer) row in table */
.iq_middle {
	padding:0px 2px 0px 2px;
}
/* All right-side table entries (values) */
.iq_value {
 text-align: right;
 font-size:11px; 
 background-color:#f7f7f7;
 padding:5px 3px 5px 3px;
}
/* the Last Value Row, with a label of Last Trade */
.iq_last_row {
 font-weight:bold;
 /*display:none;*/
}
/* the Date/time row */
.iq_timedate_row {
}
/* the EPS row */
.iq_eps_row {
}
/* the Change Row */
.iq_change_row {
}
/* the Volume Row */
.iq_volume_row {
}
/* the Open Row */
.iq_open_row {
}
/* the Close Row */
.iq_close_row {
}
/* the actual Chart */
.iq_chart {
 /* if you don't want the chart, uncomment the following... */
 /* display:none; */
 padding: 5px;
}


