/* American Association of Nurse Anesthetists Website
 * 
 * Stylesheet: ContentStyles.css
 * 
 * This stylesheet contains those styles used within page content.
 *
 * FONT TRANSLATION FORMULAS
 * The default font size for the AANA Website is 12 pixels. We are 
 * using em's to set the font styles so that the site fonts can be 
 * dynamically resized in IE. The percentage in the body tag 
 * essentially causes the default font to be 12 pixels. The em values 
 * then act as a multiplier against the default font size. Font sizes
 * can be determined with these formulas:
 *
 * <size in pixels> / 12 = <size in ems>
 * <size in ems> X 12 = <size in pixels>
 *
 * FONT TRANSLATION TABLE
 * 8px  = 0.66em
 * 9px  = 0.75em
 * 10px = 0.83em
 * 11px = 0.92em
 * 12px	= 1.0em
 * 13px = 1.08em 
 * 14px = 1.17em
 * 15px = 1.25em
 * 16px = 1.3em
 *
 */

body
{
	font-size: 75%;
	margin: 0px;
	color: black;
	font-family: Arial;
}

table
{
	font-size: 1.0em; /*12px*/
}

.bodytext
{
	font-size: 1.0em; /*12px*/
	color: #000000;
	font-family: Arial;
}

h1, h2, h3, h4, .header3, .header4
{
	font-family: Arial;
	font-weight:bold;
}
h1
{
	font-size:1.3em; /*16px*/
}
h2
{
	font-size:1.25em; /*15px*/
}
h3, .header3
{
	font-size:1.17em; /*14px*/
}
h4, .header4
{
	font-size:1.08em; /*13px*/
}

.deadline
{
	font-weight:bold;
	color: #FF0000;
}

.smallcaps
{
	font-variant:small-caps;
}