﻿.foo {}

/* The whole FormView, including the header, footer, pagination and data regions. */
.FormView .AspNet-FormView
{
    width: 22em; /*300px;*/
    background-color: White;
    border: 3px solid #959595;
    padding: 0px;
}

/* HeaderText or <HeaderTemplate> */
.FormView .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> */
.FormView .AspNet-FormView-Footer
{
}

/* Controls the appearance of whatever you define in the <ItemTemplate> */
.FormView .AspNet-FormView-Data
{
    padding: 0 4px;
}

/* Controls the appearance of whatever you define in the pagination region. */
.FormView .AspNet-FormView-Pagination
{
    color: #F7F6F3;
    background: #E9F5DA;
    font-weight: bold;
    text-align: center;
    color: #465239;
    text-transform: uppercase;
    padding: 10px 0;
    width: 100%;
}

/* This controls the appearance of the "current page" listed in the pagination region. */
/* This is NOT a link */
.FormView .AspNet-FormView-ActivePage
{
    padding: 2px;
    color: #999;
    font-family: Verdana, Sans-Serif;
}

/* Controls the numbers used to navigate to other pages. */
.FormView .AspNet-FormView-OtherPage
{
    padding: 2px; 
}

/* This is a link. */
.FormView a.AspNet-FormView-OtherPage
{
    padding: 2px;
}

.FormView a.AspNet-FormView-OtherPage:link
{
}

.FormView a.AspNet-FormView-OtherPage:visited
{
}

.FormView a.AspNet-FormView-OtherPage:hover
{
    text-decoration: none;
    background: #FFF;
    color: #000;
}
