﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain OFTEN CHANGED rules used when the FormView control adapter is enabled. */
/* Empty rules are provided merely as a convenience for your future use or experimentation. */
/* See DetailsViewExample.css for comparison of similar rules. */



/* The whole FormView, including the header, footer, pagination and data regions. */
.PrettyFormView .AspNet-FormView
{
    width: 100%; /*300px;*/
    background-color: White;
    border:1px dashed silver;
    border-left: none;
    border-right:none;
    border-bottom:none;
    padding:0px;
    margin:0 0;
}

/* HeaderText or <HeaderTemplate> */
.PrettyFormView .AspNet-FormView-Header
{
    background: #E9F5DA;
    font-weight: bold;
    text-align:center;
    color:#465239;
    text-transform:uppercase;
    padding:10px 0;
    font-size:1.2em;
}

/* FooterText or <FooterTemplate> */
.PrettyFormView .AspNet-FormView-Footer
{
}

/* Controls the appearance of whatever you define in the <ItemTemplate> */
.PrettyFormView .AspNet-FormView-Data
{
    padding:0 0 0 0;
}

.PrettyFormView .AspNet-FormView-Data td
{
border-right: 1px dashed silver;
border-bottom: 1px dashed silver;
padding:4px 4px;
}

.PrettyFormView .AspNet-FormView-Data td p
{
padding: 0;
}

.PrettyFormView .AspNet-FormView-Data table
{
    border-right:1px solid white;
    border-collapse:collapse;
    }





