﻿/* CollectionsSummary.css
 *
 * Contains only CSS definitions for a particular page
 *  Ex: .MyStyle or #MyElementId
 *  NOT: Body, Fieldset, Table, etc.
 *
 * Notes:
 *     - Please use pt for font-sizes instead of px.
 *       For more info, go to http://www.bigbaer.com/css_tutorials/css_font_size.htm
 *
 *
 */

/* Class: #CollectionsSummary
 * Descr: The main div tag that encompases the Deal Summary content
 * Example: /CollectionsSummary.aspx
 */
#CollectionsSummary
{
	width: 100%;
}

/* Class: #CollectionsSummary .CollectionsSummarySection
 * Descr: Wrapping <div> tag for each section
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .CollectionSummarySection
{
	width: 100%;
	background-color: #FFFFFF;
	color: #000000;
	margin-bottom: 5px;
}

/* Class: #CollectionsSummary .SectionHeader .title
 * Descr: Overrides the SectionHeader of the SharedControls to provide
 *        extra padding
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .SectionHeader .title
{
	font-weight: bold;
}

/* Class: #CollectionsSummary .ColumnDivider
 * Descr: Separates two <td> columns with a single pixel line
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .ColumnDivider
{
	width: 1px;
	background-color: Black;
}

/* Class: #CollectionsSummary .RowDivider
 * Descr: Separates two <tr> rows with a single pixel line
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .RowDivider
{
	height: 1px;
	background-color: Black;
}

/* Class: #CollectionsSummary .Label
 * Descr: Format for a field label
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .Label
{
	/* text-decoration: underline; */
	text-align: left;
}

/* Class: #CollectionsSummary .Value
 * Descr: Format for a field value
 * Example: Controls/CollectionsSummary/FinancialInformation.ascx
 */
#CollectionsSummary .Value
{
	text-align: right;
}

/* Class: #CollectionsSummary .RowDividerDashed
 * Descr: Separates two <tr> rows with a single pixel dashed line
 * Example: Controls/CollectionsSummary/HeaderInformation.ascx
 */
#CollectionsSummary .RowDividerDashed
{
    border-top: dashed 1px black;
}

/* Class: #CollectionsSummary .ColumnDividerDashed
 * Descr: Separates two <tr> rows with a single pixel dashed line
 * Example: Controls/CollectionsSummary/HeaderInformation.ascx
 */
#CollectionsSummary .ColumnDividerDashed
{
    width: 1px;
	background-color: Black;
}

div#CollectionsSummary .HeaderPanel
{
	cursor: pointer; 
	vertical-align: middle;
}

div#CollectionsSummary .HeaderPanelWrapper
{
	cursor: pointer; 
	vertical-align: middle;
	width: 100%; 
	padding: 4px; 
	margin-top: 1px;
    background-color:#DFE4E8;
}

div#CollectionsSummary .ContentPanel
{
	padding-left: 2px;
	padding-right: 2px;
}
