﻿.fvControls .AspNet-FormView
{
    border-style: solid;
    border-width: 1px;
    border-color:Black;
    color: #000000;
    font-family: Verdana, Arial;
    font-size: 12px;
    text-align: left;
    background-color:#FFFFFF;
    width:98%;

}

.fvControls .AspNet-FormView-Header
{
    color: #ffffff;
    font-family: Verdana, Arial;
    font-size: 14px;
    text-align: left;
    background-color: #000099;
}

div.AspNet-FormView
{
	background-color:#EEEEEE;
}
div.AspNet-FormView-Data
{
	padding:4px;
}
div.AspNet-FormView-Data dt
{
	font-weight:bold;
}
span.AspNet-FormView-ActivePage
{
	font-weight:bold;
	padding:0px 2px;
}
.AspNet-FormView-OtherPage, .AspNet-FormView-FirstPage, .AspNet-FormView-NextPage,
	.AspNet-FormView-PrevPage, .AspNet-FormView-LastPage
{
	padding:0px 2px;
}

/*

Copy to each Formview:

                     CssClass="fvControl"
                    >
                <HeaderStyle CssClass="fvHeaderStyle" />
                <PagerStyle CssClass="fvPagerStyle" />  
                <RowStyle CssClass="fvRowStyle" />
                <FooterStyle CssClass="fvFooterStyle" />

==============================================================

Remove:
                    HeaderStyle-BackColor="#3b7844"
                    HeaderStyle-ForeColor="white"
                    HeaderStyle-Font-Size="16px"
                    HeaderText = "View Selected Admin User"
                    BorderColor="black"
                    BorderStyle="Inset"
                    BorderWidth="1px"
                    Width="100%"
                    AllowPaging="false"
                    InsertRowStyle-BackColor="#cdcdcd"
                    EditRowStyle-BackColor="#cdcdcd"

*/

/* The whole FormView, including the header, footer, pagination and data regions. */
.PrettyFormView .AspNet-FormView
{
    width:250px;
    background-color: White;
}

/* HeaderText or <HeaderTemplate> */
.PrettyFormView .AspNet-FormView-Header
{
    color: #F7F6F3;
    background-color: #5D7B9D;
    font-weight: bold;
    padding: 4px 0 4px 4px;
}

/* FooterText or <FooterTemplate> */
.PrettyFormView .AspNet-FormView-Footer
{
}

/* Controls the appearance of whatever you define in the <ItemTemplate> */
.PrettyFormView .AspNet-FormView-Data
{
    padding:7px 0 0 4px;
}

/* Controls the appearance of whatever you define in the pagination region. */
.PrettyFormView .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 */
.PrettyFormView .AspNet-FormView-ActivePage
{
    color: White;
    margin-left: 4px;   
}

/* Controls the numbers used to navigate to other pages. */
/* This is a link */
.PrettyFormView .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. */
/*
.PrettyFormView a.AspNet-FormView-OtherPage:link
{
    color:Lime;
}

.PrettyFormView a.AspNet-FormView-OtherPage:visited
{
    color:Maroon;
}
*/

.PrettyFormView a.AspNet-FormView-OtherPage:hover
{
    color:#FFA500;
}
