﻿.foo {}

/* Please refer to FormViewExample.css for comments on these rules. */
.DetailsView div.AspNet-DetailsView-Header
{
    position: relative;
    background: #E9F5DA;
    font-weight: bold;
    text-align: center;
    color: #465239;
    text-transform: uppercase;
    padding: 10px 0;
    font-size: 1.2em;
}

.DetailsView div.AspNet-DetailsView-Data
{
    margin:10px 0;
}

/* 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). */
.DetailsView div.AspNet-DetailsView-Data li
{
    padding: 3px 0 2px 4px;
    color: #333333;
    background-color: White;
    vertical-align: middle;
    border-top: solid 1px #E7E7E7;
    border-right: solid 1px #D2D2D2;
    border-bottom: solid 1px #D2D2D2;
    border-left: solid 1px #E7E7E7;
    margin: 2px 0;
    min-height: 1.4em; /* ADDED for Firefox */
}

/* 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). */
.DetailsView div.AspNet-DetailsView-Data li.AspNet-DetailsView-Alternate
{
    background: url(bg-fade-light-short.png) repeat-x bottom;
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
.DetailsView span.AspNet-DetailsView-Name
{
    position: absolute;
    top: 3px;
    left: 0;
    color: #737373;
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
.DetailsView span.AspNet-DetailsView-Value
{
    margin-left: 8em; 
    font-weight: bold;
}

/* --------------------------------------------------------------------------------------------------- */
/* Please refer to FormViewExample.css for comments on these rules. */
.DetailsView .AspNet-DetailsView-Pagination
{
    color: #F7F6F3;
    background: #E9F5DA;
    font-weight: bold;
    text-align: center;
    color: #465239;
    text-transform: uppercase;
    padding: 10px 0;
    width: 100%;
    position: relative;
    clear: both;
}

.DetailsView .AspNet-DetailsView-ActivePage
{
    padding: 2px;
    color: #999;
    font-family: Verdana, Sans-Serif;
}

.DetailsView .AspNet-DetailsView-OtherPage
{
    padding: 2px;
}

.DetailsView a.AspNet-DetailsView-OtherPage:link
{
}

.DetailsView a.AspNet-DetailsView-OtherPage:visited
{
}

.DetailsView a.AspNet-DetailsView-OtherPage:hover
{
    text-decoration: none;
    background: #FFF;
    color: #000;
}
