/*
CSS-file for Strictly CSS three column layout 2006
http://www.strictlycss.com
Developed by Eivind Savio
*/
* /*Set's border, padding and margin to 0 for all values*/
{
padding: 0;
margin: 0;
border: 0;
}
body, html {
	color: #000000; 
	font-family: Verdana, Arial, Tahoma, sans-serif;
	background-color: #999999;
	background-image: url(../images/bg_01-02.gif);
	background-repeat: repeat-x;
	background-position: left top;
	text-align: center; /*** Centers the design in old IE versions ***/
}
body {
	font-size: 70%;
}
p {padding: 7px 0 7px 0;}

a {
	color: #000099;
}
a:hover{
	color: #0000FF;
	text-decoration: none;
}

h1, h2, h3 {
	font-weight: bold;
}
h1 {
	font-size: 16px;
	color:#2f2f2f;
	font-weight: bold;
	padding-bottom:10px;
	clear: both;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 13px;
	line-height: 18px;
	color: #b38d09;
	padding-bottom:10px;
}
h4 {
	font-size: 14px;
	line-height: 18px;
	padding-bottom:5px;
	padding-top: 10px;
}
h1 a, #header h2{
	color: #fff;
}
.clear { clear: both; }
#mainContainer {
	width: 868px;
	margin: 0 auto; /*** Centers the design ***/
	min-height: 300px;
	background-color: #df162b;
	text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}
* html #mainContainer {
	height: 300px; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: #FFFFFF;
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.headerBox {
	padding: 0px;
	margin: 0px;
	background-color:#EFEFEF;
}
.headerJumpBg {
	background-image: url(../images/bg_jump.gif);
	background-repeat: no-repeat;
	float: right;
	height: 87px;
	width: 609px;
	margin-right: 5px;
}
.headerLogo {
	margin-left: 15px;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	margin-top: 14px; /*** We need to add some space for our top menu ***/
}
* html .outer {
/*** No need for hacking IE on this layout ***/
}
.inner {
/*** No need to do anything with a one column solution ***/
}
* html .inner {
/***  And therefor no need for hacking IE either ***/
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;

}
* html .float-wrap {
/*** No need for hacking IE on this layout ***/
}
#content {
	float: left;
	width: 868px;
	background: #fff;
}
* html #content {
	position: relative;  /*** IE needs this  ***/
}
.contentWrap {
	padding: 15px;
}
.contentWrap ol, .contentWrap ul {
	margin: 3px 0 5px 35px;
}
.contentWrap li {
	padding-bottom: 2px;
}
.contentWrapHP {
	padding: 5px;
}

/**************************
LEFT COLUMN - this is our top menu
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
#left {
	float: right;
	width: 858px;
	background: #fcc; 
	height: 40px;
	padding: 5px;
	margin: -50px 0 0 -858px; /*** Move the left column so it takes the positon as a top menu ***/
}
* html #left {
	position: relative;  /*** IE needs this  ***/
}
#left ul {
	list-style: none;
}
#left li {
	display: inline;
	padding-right: 15px;
}
/*************************
RIGHT COLUMN - This is our footer menu
**************************/
#right {
	float: left;
	width: 858px;
	background: #cfc;
	padding: 5px;
	height: 40px;
}
* html #right {
	position: relative;  /*** IE needs this  ***/
}
#right ul {
	list-style: none;
}
#right li {
	display: inline;
	padding-right: 15px;
}
/**************************
FOOTER
**************************/
#footer {
	width: 858px;
	padding:5px;
	margin: 0 auto;
	text-align: center;
	background-color: #FFFFFF;
}
.footerBox {
	padding: 4px;
	margin: 0px;
	background-color:#EFEFEF;
}


.mainBg {
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
	height: 700px;
	padding-top: 17px;
}


/* CONTENT STYLES */

.cTitle {
	text-align: right;
	padding-right: 45px;
	padding-bottom:10px;
	padding-top:10px;
}

.cPictureBlock {
	text-align: center;
	padding-bottom: 20px;
}
.cPictureBlockGrey {
	text-align: center;
	padding-bottom: 20px;
	background-image: url(../images/main_title_stockholder_1px.gif);
	background-repeat: repeat-y;
	background-position: center;
}
.cContinued {
	padding-left: 40px;
	padding-bottom: 20px;
	font-size: 14px;
	font-style:italic;
	color:#666666;
}
#cContentContainer {
	padding-left: 45px;
	padding-right: 55px;
	padding-top: 10px;
	padding-bottom:10px;
}
#cContentContainerWide {
	padding-left: 45px;
	padding-right: 42px;
	padding-top: 10px;
	padding-bottom:10px;
}

#cContentContainer p {
	line-height: 18px;
	font-size:12px;
}
.cLeftCol {
	width: 350px;
}
.cRightCol {
	width: 350px;
	float:right;
}
.cRightImage {
	
}
.cLeftImage {
	float: left;
	padding-right: 20px;
	padding-left: 10px;
	padding-bottom:5px;
}
.cNext {
	text-align: right;
	padding-top: 15px;
	clear: both;
}
.cSignature {
	font-weight: bold;
	font-size: 12px;
}
.introMovie {
	margin: 0px;
	padding: 0px;
	left: 0px;
	top: 0px;
	position:relative;
}
#introBlock {
	position:absolute;
	width:857px;
	z-index:1;
	color: #FFFFFF;
	text-align: left;
	padding-left: 0px;
	padding-top: 5px;
	left: -10px;
}
.sectionHIV {
	color: #2C316F;
}
.sectionHep {
	color: #81864A;
	font-weight:bold;
}
.sectionAdditional {
	color: #C66D25;
}
.sectionGeneral {
	color: #666666;
}
.sectionCommunity {
	color: #504777;
}

.pBoldBlue {
	color: #2C316F;
	font-weight: bold;
}
.cHighlight {
	color: #DF162B;
}
#cRespOverText {
	position:absolute;
	width:292px;
	height:115px;
	z-index:1;
	color: #FFFFFF;
	text-align: left;
	padding-left: 70px;
	padding-top: 15px;
	line-height: 16px;
}
.tCol {
	font-size: 10px;
	vertical-align: top;
	padding-right: 10px;
}
#cContentContainer .tCol p {
	font-size: 10px;
}
.tColHeading {
	font-size: 10px;
	font-weight:bold;
	vertical-align: top;
	padding-right: 2px;
}
#subGrey {
	position:relative;
	width:733px;
	height:115px;
	z-index:1;
	font-size: 10px;
	background-color: #D1D8DF;
	text-align: left;
	padding-left: 0px;;
	padding-top: 15px;
	line-height: 16px;
}

.subText {
	width: 733px;
}
.fCharts {
	margin-top: 20px;
	margin-left:45px;
	margin-right:45px;
	padding: 10px;
	background-color: #F4E7AD;
}
.prodHeading {
	font-weight: bold;
	padding:5px;
	background-color:#f1eccc;
}
.prodCol {
	padding:5px;
	vertical-align: top;
}
.prodRowEven {
	background-color: #dfedfb;
}
.prodRowOdd {
	background-color: #9dc2e8;
}
/* Navigation Styles */
#topNav {
	width: 255px;
}
#tMenu {
	width: 260;
	float:right;
	margin-top: 28px;
	margin-right:0px;
}
#Layer1 {
	position:absolute;
	width:255px;
	height:115px;
	z-index:1;
	padding-left: 349px;
	padding-top: 28px;
	display:none;
	
}

/* Main Pic Bg's */
#cAidsOne {
	background-image: url(../images/main_HIV_Ileana.jpg);
	background-repeat: no-repeat;
	height: 268px;
	width: 750px;
}
#mainContainer .cMainPicTableFF {
	text-align: center;
	margin:0px;
	padding-left: 42px;
	padding-right: 0px;
	width:750px;
}
#mainContainer .cMainPicTableIE {

}
.footnotes {
	font-size: 10px;
	font-style: italic;
	color: #666666;
	padding-top: 0px;
	margin-right: 45px;
	margin-bottom: 10px;
	margin-left: 40px;
}
#downloadPDF {
	position: absolute;
	top: 445px;
	left: 0px;
	margin:0px;
	padding:0px;
}
#downloadPDFCorporate {
	text-align: right;
	margin-right: 40px;
	margin-bottom: 15px;
}
