/*  ----------------------------------------------------------------------------
MANTEC-BGS CSS file

car = tag <car>
.car = class="car", works with all tags
#car = id="car", works with all tags
car.muscle = tag with class <car class="muscle">, only works with tag specified
car#muscle = tag with id <car id="muscle">, only works with tag specified

      Stylesheet ID and class are almost the same thing except where 
      a class is declared by being preceeded by a . (period) an ID 
      is preceeded by a # (pound) - two things to remember...
        1. classes have periods (like school)
        2. When referencing links, always remember to put them in order
            (LoVeHAte - Link, Visited, Hover, Active)
----------------------------------------------------------------------------  */

body
{
font-family: Arial, sans, sans-serif;
font-size: 12px;
}
.sectionheading
{
	font-family: Tahoma, Verdana, Arial, sans, sans-serif;
	font-weight: bold;
	font-size: 23px;
	color: #000000;
}
.subsectionheading
{
	font-family: Tahoma, Verdana, Arial, sans, sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #000000;
}
.noline
{
	text-decoration: none;
color: #000000;
}