@charset "UTF-8";
/* CSS Document */


body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/altair_background_slice.jpg);
	background-repeat:repeat-x;
}
.thrColFixHdr #header {
	background-color: transparent;
	height: 108px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-image: url(../images/altair_subtop_1.jpg);
	background-repeat:no-repeat;
} 
.thrColFixHdr #advert {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: transparent;
}

.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	height: 178px;
	height: 176px;
	height: 176px;
}

/* container for navbar */
.thrColFixHdr #header2 {
	height: 26px;
	padding-top: 0;
	padding-bottom: 0;
	clear: both;
	padding-right: 0px;
	padding-left: 10px;
	padding-top: 2px;
	background-image: none;
	background-color: #2746a0;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}
.thrColFixHdr #header3 {
	height: 180px;
	padding-top: 0;
	padding-bottom: 0;
	clear: both;
	padding-right: 0px;
	padding-left: 0px;
	background-image: none;
}


/* lefthand sidebar with AVG content */
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	background-color: transparent;
}
.thrColFixHdr #sidebar1 p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: .8em;
color:#333333;
}
.thrColFixHdr #sidebar1 h3 {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 1em;
font-weight:bold;
color:#990000;
}

/* righthand sidebar with Apple content */
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 210px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	background-color: transparent;
}
.thrColFixHdr #sidebar2 p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: .8em;
color:#333333;
}

/* lefthand sidebar french box */
.thrColFixHdr #sidebar2fr {
	width: 200px;
	height: 40px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color:#330033;
}
.thrColFixHdr #sidebar2fr h1 {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 1.2em;
font-style:italic;
padding-top: 0 em;
padding-left: .25em;
color:#FFFFFF;
}
.thrColFixHdr #sidebar2fr a {
text-decoration:none;
color:#FFFFFF;
}

/* center content with Altair information */
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 240px;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top:15px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #mainContent h3 {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 1em;
color:#003366;
}
.thrColFixHdr #mainContent p {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: .8em;
color:#003366;
}

/* footer with disclaimer and copyright */
.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 
.thrColFixHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding: 10px 0;
	color: #003399;
	font-size: 0.7em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
