﻿/*
Description: Styles for a simple DetailsView table.
*/

/* Main selector for the details view table element. */
.DetailsView_Simple
{
    border: 0;
	border-collapse: collapse;	
	background-color: #ffffff;
	caption-side: top;
	table-layout: auto;
	margin-bottom: 1em;	
}

/* The caption row. */
.DetailsView_Simple caption
{
    display: none;  
}

/* Links in the caption. */
.DetailsView_Simple caption a
{
    font-weight: normal;
}

/* Links in the caption row. */
.DetailsView_Simple caption a
{
    font-size: .75em;
}

/* Header cells. */
    .DetailsView_Simple td.HeaderCell
    {
        font-size: 85%;
        font-weight: bold;
        color: #202020;
        text-align: right;  
        padding-left: 16px;  
        padding-right: 4px;  
        border: 0;  
    }

    /* All table cells. */
    .DetailsView_Simple td
    {
        color: #000040;
        padding: 4px 16px 4px 4px;
        border: 0;
        vertical-align: top;
    }

    /* Labels within data cells. */
    .DetailsView_Simple td span
    {
        color: #000040;
    }

    /* Necessary to reset the padding for nested elements. */
    .DetailsView_Simple td td
    {
        padding: 0;
        border: 0;
    }
    
    /* Empty data cell. */
    .DetailsView_Simple .EmptyDataRow td
    {
        padding: 5px 5px 5px 5px;
        font-size: 85%;
        font-style: italic;
        color: #404040;
        background-color: #fcfcfc;
    }    