﻿/* DealSummary.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: #DealSummary
 * Descr: The main div tag that encompases the Deal Summary content
 * Example: /DocumentGeneration.aspx
 */
#DealSummary
{
	width: 100%;
}

/* Class: #DealSummary .DealSummarySection
 * Descr: Wrapping <div> tag for each section
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .DealSummarySection
{
	width: 100%;
	background-color: White;
	margin-bottom: 5px;
}

/* Class: #DealSummary .SectionHeader .title
 * Descr: Overrides the SectionHeader of the SharedControls to provide
 *        extra padding
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .SectionHeader .title
{
	padding: 5px;
	font-weight: bold;
}

/* Class: #DealSummary .ColumnDivider
 * Descr: Separates two <td> columns with a single pixel line
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .ColumnDivider
{
	width: 1px;
	background-color: Black;
}

/* Class: #DealSummary .RowDivider
 * Descr: Separates two <tr> rows with a single pixel line
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .RowDivider
{
	height: 1px;
	background-color: Black;
}

/* Class: #DealSummary .Label
 * Descr: Format for a field label
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .Label
{
	/* text-decoration: underline; */
	text-align: left;
}

/* Class: #DealSummary .Value
 * Descr: Format for a field value
 * Example: Controls/DealSummary/FinancialInformation.ascx
 */
#DealSummary .Value
{
	text-align: right;
}

/* Class: #DealSummary .RowDividerDashed
 * Descr: Separates two <tr> rows with a single pixel dashed line
 * Example: Controls/DealSummary/HeaderInformation.ascx
 */
#DealSummary .RowDividerDashed
{
    border-top: dashed 1px black;
}

/* Class: #DealSummary .RowDividerSolid
 * Descr: Separates two <tr> rows with a single pixel dashed line
 * Example: Controls/DealSummary/HeaderInformation.ascx
 */
#DealSummary .RowDividerSolid
{
    /*border-top: solid 1px black;*/
    border-top-style: solid;
    border-top-width: thin;
    border-top-color: Black;
}

/* Class: #DealSummary .ColumnDividerDashed
 * Descr: Separates two <tr> rows with a single pixel dashed line
 * Example: Controls/DealSummary/HeaderInformation.ascx
 */
#DealSummary .ColumnDividerDashed
{
    width: 1px;
	background-color: Black;
}

div#DealSummary .HeaderPanel
{
	cursor: pointer; vertical-align: middle;
}

div#DealSummary .HeaderPanelWrapper
{
	cursor: pointer; vertical-align: middle;
	width: 100%; padding: 4px; margin-top: 1px;
    background-color:#DFE4E8;
	
}

div#DealSummary .ContentPanel
{
	padding-left: 5px;
}
