﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* Please refer to FormViewExample.css for comments on these rules. */
div.AspNet-DetailsView-Header
{
    font-weight: bold;
    text-align: center;
    background-color: #4885C1; 
    color:#ffffff; 
/*    border: 1px solid #709BC6; */
    padding: 4px 0 4px 0px;
}

div.AspNet-DetailsView-Data ul, 
div.AspNet-DetailsView-Header
{
	width: 350px;
}

.wide_table div.AspNet-DetailsView-Data ul, 
.wide_table div.AspNet-DetailsView-Header
{
	width: 450px;
}

div.AspNet-DetailsView-Data ul 
{
	/*border-bottom: 1px solid #B9B9B9; 		*/
}

/* 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
{
    background-color: White;
    vertical-align: middle;
    height: 25px;
    line-height: 25px;
    min-height:1.4em; /* ADDED for Firefox */
	border-bottom: 1px solid #B9B9B9;    
}

/* 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: #EEEEEE;    
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Name
{
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
span.AspNet-DetailsView-Value
{
	position: absolute;
}

span.AspNet-DetailsView-Value
{
	margin-left: 150px;
}

.wide_table span.AspNet-DetailsView-Value
{
	margin-left: 220px;
}


/* --------------------------------------------------------------------------------------------------- */
/* Please refer to FormViewExample.css for comments on these rules. */
/*
.AspNet-DetailsView-Pagination
{
    background-color: #284775;
    text-align:center;
    padding: 4px 0 4px 0;
    position:relative;
}

.AspNet-DetailsView-ActivePage
{
    color: White;
    margin-left: 4px;
}

.AspNet-DetailsView-OtherPage
{
    color: #00FFFF;
    text-decoration:none;
    margin-left: 4px;
}
*/