/* Change the appearance of all h1 tags in the site */
h1
{
  margin: 0;
  padding: 0;
  font-size: 2em;
  font-weight: bold;
  color: black; 
}

/* Set the font of elements with a class of Label to bold. Used in the Management section */
.Label
{
  font-weight: bold; 
}

/* Add some padding to all fieldsets in the site */
fieldset
{
  padding: 10px; 
}

/* Add some margin and fix the problem in Internet Explorer where the right edge of 
the legend is drawn too close to the line of the fieldset box by adding some right padding */
legend
{
  margin: 10px; 
  padding-right: 5px;
}

/* Define the looks of each ItemRow in a GridView */
.GridRowStyle
{
   padding-left: 3px;
}

/* Define the looks of each alternating Row in a GridView */
.GridAlterenatingRowStyle
{
 padding-left: 3px;
 background-color: #ece8dd;
}

/* Define the looks of the header Row in a GridView */
.GridHeaderStyle
{
  background-color: white; 
  padding-left: 60px;
  color: #ffffff;
  font-weight: bold;
}

/* Define the looks of each link in the header of a GridView */
.GridHeaderStyle a 
{
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

