/*		This is ais-styles.css
		Last modified Nov 22, 2006
		by Canton Becker for Avantgarde
		
		Fixed-width, centered, three-column
		pure CSS layout.
		
		Note: Make sure that center column content
		is always the 'tallest' so that sidebars
		don't risk overlapping the page border.
*/

/* **************************************
	GLOBAL STYLES 
   ************************************* */

html,body { 	
	margin: 10px; 
	padding: 0px; 
	background-color: #ffffff; 
	text-align: center;
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	line-height: 13pt;
}

h1, h2, h3, h4, h5 {
	font-weight: bold;
}

a:link {
	color: #999999;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #999999;
}
a:hover {
	text-decoration: none;
	color: #000000;
}
a:active {
	text-decoration: none;
	color: #ff3333;
}

/* **************************************
	Border and container for whole page
   ************************************* */


#bigFrame {
	position: relative;
	margin: 0px auto;
	height: auto;
	width: 800px;
	border: 1px solid #999999;
	background-image: url(images/blackbar.gif);
	background-repeat: repeat-y;
	background-position: right top;
}

/* **************************************
	Top header area 
   ************************************* */

#header {
	position: relative;
	width: 100%;
	height: 162px;
	margin: 0px;
	text-align: right;
	background-image: url(images/redbar-top.gif);
	background-repeat: no-repeat;
	background-position: left top;
}


#headerContent {
	padding-right: 65px;
	padding-top: 40px;
}

/* **************************************
	Left hand navigation column 
   ************************************* */

#leftSection {
	position: absolute;
	top: 162px;
	left: 0px;
	height: auto;
	/*
		If columning goes out of whack, try this height setting, 
		though note that it will eclipse the footer section and
		break links found there.
	height: 100%;
	*/	
	width: 180px;
	text-align: left;
	background-image: url(images/redbar-bottom.gif);
	background-repeat: no-repeat;
	background-position: left top;
}


#leftContent {
	margin-left: 20px;
	font-size: 13px;
	line-height: 18pt;
	font-weight: bold;
}

#leftContent .primary {
	margin-left: 15px;
	padding-left: 15px;
}

#leftContent .primaryOn {
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
	color: #FF3333;
	margin-left: 15px;
	padding-left: 15px;
}

#leftContent .primaryOn a {
	color: #FF3333;
}

#leftContent .secondary {
	color: #999999;
	margin-left: 50px;
}

#leftContent .secondaryOn {
	background-image: url(images/arrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
	color: #FF3333;
	margin-left: 15px;
	padding-left: 35px;
}

#leftContent .secondaryOn a {
	color: #FF3333;
}

/* **************************************
	Center (main) area of page 
   ************************************* */
   
#centerSection {
	position: relative;
	height: auto;
	margin: 0px 215px 40px 175px;
	text-align: left;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #999999;
	border-left-color: #999999;
}

#centerContent {
	padding-top: 1px;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 11px;
}

#centerContent h1 {
	color: #FF3333;
	font-size: 14px;
	line-height: 22pt;
	margin-top: -9px;
}

#centerContent h2 {
	color: #FF3333;
	font-size: 11px;
	line-height: 15pt;
}

/*	When putting bullets inside of the main body area, be sure that
	each <li> has a <span> class inside if it, e.g.
		<li><span>Some Bullet</span></li>
	This make it possible to have red bullets with black text.
*/

#centerContent ul {
	list-style-type: disc;
	color: #FF3333;
}

#centerContent ul span {
	color: #999999;
}


/* **************************************
	Right (sidebar) area of page 
   ************************************* */


#rightSection { 
	position: absolute; 
	top: 162px; 
	right: 40px; 
	height: 100%; 
	width: 180px; 
	margin-left: 15px; 
	text-align: left; 
}

#rightContent {
	margin-right: 20px;
	margin-left: 20px;
	font-size: 11px;
	padding-top: 2px;
}

#rightContent h1 {
	color: #FF3333;
	font-size: 11px;
	margin-top: -7px;
}	

#rightContent h2 {
	color: #FF3333;
	font-size: 9px;
	line-height: 100%;
	margin-top: 20px;
}

#rightContent img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* **************************************
	Footer 
   ************************************* */


#footer
{
	text-align: left;
	margin-left: 20px;
	font-size: 9px;
	padding-bottom: 10px;
}

/* **************************************
	Miscellaneous styles 
   ************************************* */


.quote {
	color: #000000;
	padding-top: 5px;
	padding-bottom: 10px;
}

.quoteBy {
	color: #FF3333;
}

