﻿.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. */
/* See FormViewExample.css for comparison of similar rules. */

.PrettyFormView {
	width: 100%;
	min-width: 800px;
	}
	
.PrettyFormView input 
{
    width:350px;
	clear: both;
	margin-left:15px;
	}
	
#SampleFormView
{
    width:20em;
    position:relative;
}

.PrettyFormView ul li {
	display: block;
	clear: both;
	padding: 10px 0;
	}

.AspNet-FormView-Data {
	border: 1px solid #9cb762;
	background: #fff;
	}

/* Please refer to FormViewExample.css for comments on these rules. */
.PrettyFormView div.AspNet-FormView-Header
{
    color: #F7F6F3;
    background-color: #5D7B9D;
    font-weight: bold;
    padding: 4px 0 4px 4px;
    position:relative;
}

/* Each field defined for the FormView 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). */
.PrettyFormView div.AspNet-FormView-Data li
{
    padding: 6px 0 6px 4px;
    color: #333333;
    background-color: White;
    vertical-align: middle;
    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). */
.PrettyFormView div.AspNet-FormView-Data li.AspNet-FormView-Alternate
{
    background-color: #ecf1e2;
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
.PrettyFormView span.AspNet-FormView-Name
{
    margin: 0 20px 0 0;
    font-weight: bold;
	float: left;
	position: relative;
	width: 180px;
	text-align: right;
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
.PrettyFormView span.AspNet-FormView-Value
{
    display: block;
	margin-left: 210px;
	padding-right: 20px;
	
}

/* --------------------------------------------------------------------------------------------------- */
/* Please refer to FormViewExample.css for comments on these rules. */
.PrettyFormView .AspNet-FormView-Pagination
{
    background-color: #284775;
    text-align:center;
    padding: 4px 0 4px 0;
    position:relative;
}

.PrettyFormView .AspNet-FormView-ActivePage
{
    color: White;
    margin-left: 4px;
}

.PrettyFormView .AspNet-FormView-OtherPage
{
    color: #00FFFF;
    text-decoration:none;
    margin-left: 4px;
}

