﻿/*-----------------------------------------------------------------------------
AAC Global - Typography Stylesheet
-----------------------------------------------------------------------------*/

/* =General Typography
-----------------------------------------------------------------------------*/

/* Remove padding and margin */
*
{
	margin: 0;
	padding: 0;
}

/* Put padding and margin back on certain elements */
h1, h2, h3, h4, h5, h6, p, pre, ul, ol, dl
{
	margin: 1em 0;
}

/* Remove border around (linked) images */
img 
{
	border: 0;
}

.important
{
	color: #ff0000;
}

/* Class for clearing floats */
.clear 
{
	clear: both;
}

body 
{
	/* Set font-size to 62.5% which equals 10px = 1.0em -> 1.2em equals 12px etc.*/
	font: 62.5% Verdana, Helvetica, Arial, sans-serif;
}

/* Change font-size here to scale all text elements inside content. */
#content
{
	font-size: 1.1em;
}

/* =Links
-----------------------------------------------------------------------------*/
a:link, a:visited
{
	font-weight: bold;
	color: #8e1516; /* Deep red */
}

a:hover, a:active
{
	color: #ff0000;
}

/* Remove hover effect from named anchors. */
a[name]:hover { text-decoration: inherit; color: inherit; background: inherit }


/* =Content Typography
-----------------------------------------------------------------------------*/

/* NOTE: All the .<class name> classes are for ContentEditor to display same styles in tool drop down lists. */

#content h1, #content .h1 { font-size: 1.3em; font-weight: bold; }
#content h2, #content .h2 { font-size: 1.1em; font-weight: bold; }
#content h3, #content .h3 { font-size: 1.1em; font-weight: normal; font-style: italic }
#content h4, #content .h4 { font-size: 0.9em; font-weight: bold; }

#content pre, #content .pre			{ font-size: 1.1em; font-family: Serif; }
#content address, #content .address	{ font-size: 1em; }

#content p
{
	font-size: 1em;
}

#content label
{
	font-size: 0.9em;
}

#content select
{
	font-size: 1em;
}

#content textarea, #content input
{
	font: inherit;
}

/* =Table
-----------------------------------------------------------------------------*/

#content table
{
	border: 0;
	border-spacing: 2px;
}

#content td
{
	vertical-align: top;
	padding-right: 1em;
}

/* =Lists
-----------------------------------------------------------------------------*/
#content ul
{
	list-style-image: url(../images/bullet.gif);
	margin-left: 22px;
	/*list-style-position: inside;*/ /* This breaks up in IE. Use margin insted. */
}

/* Add some indentation to nested list items. */
#content ul ul, #content ol ol
{
	margin-left: 1em;
}

#content ol
{
	list-style-type: decimal;
	margin-left: 27px;
	/*list-style-position: inside;*/ /* This breaks up in IE. Use margin insted. */
}

#content dl { }
#content dt { }
#content dd { margin-left: 2em; }

/* =Custom styles
-----------------------------------------------------------------------------*/

/* Text and background style for image and text combination in top content area. */
#content .topAreaTable, #content .topAreaTable table
{
	background: #8e1516;
	color: #fff;
}

#content .topAreaTable table
{
	border-spacing: 0;
	width: 100%;
}

#content .topAreaTable table h1,
#content .topAreaTable table h2,
#content .topAreaTable table h3,
#content .topAreaTable table h4
{
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 1.5em;
	color: #fbc100;
}

#content .topAreaTable table p
{
	margin-left: 10px;
	margin-right: 10px;
}

#content .topAreaTable a
{
	margin-left: 0px;
	margin-right: 10px;
	color: #fff;
}

#content .topAreaTable a:visited { color: #fff; }
#content .topAreaTable a:hover { color: #fbc100; }
/* --------------------------------------------------------------------- */