
div.clear
{
	clear:both;
	
	}
/* Please refer to FormViewExample.css for comments on these rules. */
.DetailsView div.AspNet-DetailsView-Header
{
  
}

/* Each field defined for the DetailsView 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). */
.DetailsView div.AspNet-DetailsView-Data li
{
    padding: 5px;
    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). */
.DetailsView div.AspNet-DetailsView-Data li.AspNet-DetailsView-Alternate
{
   
}

/* This corresponds to the HeaderText attribute of an <asp:BoundField>. */
.DetailsView div.AspNet-DetailsView-Name
{
	float:left;
   width:130px;
  
}

/* This corresponds to the DataField attribute of an <asp:BoundField>. */
.DetailsView div.AspNet-DetailsView-Value
{
   float:left;
  
}

/* --------------------------------------------------------------------------------------------------- */
/* Please refer to FormViewExample.css for comments on these rules. */
.DetailsView .AspNet-DetailsView-Pagination
{
   
}

.DetailsView .AspNet-DetailsView-ActivePage
{
    
}

.DetailsView .AspNet-DetailsView-OtherPage
{
   
}


