﻿/**/
div.AspNet-DetailsView
{
	border: solid 1px #e7d1bc; /*231,209,188*/
	width:100%;
	padding: 2px;
}

/* Each field defined for the DetailsView generates an individual list item (li) in the rendered HTML. */
/* Each li effectively is a row in a table (though no table tag is generated by the adapter). */
div.AspNet-DetailsView-Data li
{
    padding: 3px 0 2px 4px;
    color: #333333;
    background-color: White;
    vertical-align: middle;
    min-height:1.4em; /* ADDED for Firefox */
    text-align:left;
}

/* Every other field is marked as being "Alternate." */
/* This allows you to define an "alternating row" style (though the adapter doesn't actually generate an HTML table). */
div.AspNet-DetailsView-Data li.AspNet-DetailsView-Alternate
{
    background-color: #f4f4f4;
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Name
{
    position:absolute;
    top: 3px;
    left: 0;
    font-weight: bold;
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Value
{
    margin-left:22em;
}




