﻿.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. */
.CssFormView .AspNet-FormView
{
    background-color: White;
}

/* HeaderText or <HeaderTemplate> */
.CssFormView .AspNet-FormView-Header
{
    color: #F7F6F3;
    background-color: #5D7B9D;
    font-weight: bold;
    padding: 4px 0 4px 4px;
}

/* FooterText or <FooterTemplate> */
.CssFormView .AspNet-FormView-Footer
{
}

#EntryForm .AspNet-FormView-Data
{
	width:100%;
}

#EntryForm .AspNet-FormView-Data p
{
	vertical-align:top;
}

/* Controls the appearance of whatever you define in the <ItemTemplate> */
.CssFormView .AspNet-FormView-Data
{
    padding:7px 0 0 4px;
    color: #005685;
	font-weight:bold;
}

.CssFormView .AspNet-FormView-Data input.fileUpload
{
	margin: 0 0.8em 0 0;
}

/* Controls the appearance of whatever you define in the pagination region. */
.CssFormView .AspNet-FormView-Pagination
{
    background-color: #284775; 
    text-align:center;
    margin: 10px 0 0 0;
    padding: 4px 0 4px 0;
    margin-left: 4px;
}

/* This controls the appearance of the "current page" listed in the pagination region. */
/* This is NOT a link */
.CssFormView .AspNet-FormView-ActivePage
{
    color: White;
    margin-left: 4px;   
}

/* Controls the numbers used to navigate to other pages. */
/* This is a link */
.CssFormView .AspNet-FormView-OtherPage
{
    color: #00FFFF;
    text-decoration:none;
    margin-left: 4px;
}

/* Uncomment and customize these rules to further refine the appearance of the pagination links. */
/*
.CssFormView a.AspNet-FormView-OtherPage:link
{
    color:Lime;
}

.CssFormView a.AspNet-FormView-OtherPage:visited
{
    color:Maroon;
}
*/

.CssFormView a.AspNet-FormView-OtherPage:hover
{
    color:#FFA500;
}

