﻿.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. */
.BGFormView .AspNet-FormView
{
    width: 100%;
    background-color: White;
}

/* HeaderText or <HeaderTemplate> */
.BGFormView .AspNet-FormView-Header
{
    color: #F7F6F3;
    font-weight: bold;
    padding: 4px 0 4px 4px;
}

/* FooterText or <FooterTemplate> */
.BGFormView .AspNet-FormView-Footer
{
}

/* Controls the appearance of whatever you define in the <ItemTemplate> */
.BGFormView .AspNet-FormView-Data
{
    padding:7px 0 0 4px;
    /*border: 1px solid #777; */
}

/* Controls the appearance of whatever you define in the pagination region. */
.BGFormView .AspNet-FormView-Pagination
{
    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 */
.BGFormView .AspNet-FormView-ActivePage
{
    color: White;
    margin-left: 4px;   
}

/* Controls the numbers used to navigate to other pages. */
/* This is a link */
.BGFormView .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. */
/*
.BGFormView a.AspNet-FormView-OtherPage:link
{
    color:Lime;
}

.BGFormView a.AspNet-FormView-OtherPage:visited
{
    color:Maroon;
}
*/

.BGFormView a.AspNet-FormView-OtherPage:hover
{
    color:#FFA500;
}

/* ------------------------------------------------------------------- */
/* Specific to this web site. */


/* ############## FORM CLASSES ############ */
/* ######################################## */
.input
{
	position: relative;
	padding: 4px;
}

.label
{
	float: left;
	width: 25%;
}

.input
{
	float: left;
	width: 70%;
}
/* ############# end form classes ######### */
