/* For information about what browsers this CSS was tested on
   and how to interpret the shorthand I use for the browsers' names,
   see: http://albin.net/styles/css-notes.txt */

/* ************************
 * general xhtml elements *
 ************************ */

/* spacers are sometimes needed so that the containing box doesn't end before the end of the floats */
div.spacer {
	margin: 0px; padding: 0px; border: 0px;
	clear: both;
	font-size: 1px; line-height: 1px;
}
.accessibilityItems {
	display: none;
}
.centered {
	text-align: center; /* 1st part of IE5-5.5 centering hack */
}

/* *****************
 * the content box *
 ***************** */
.contentWrapper {
	margin-top: 0px; 
    margin-bottom: 0px;
	margin-left: 0px; 
    margin-right: 0px;
	padding: 0px;
	border: 0px;
	text-align:center;
}


.content, .content1, .content2, .content3, .content4, .content5, .content6, .content7
{
	margin: 0px;
	padding: 0px;
	border: 1px solid #000000;
	background-color: #ffffff;
	color: #000000;
	z-index:1
}
.content p {
	margin-top: 0px;
	margin-bottom: 0px;
}
.content1 h1, .content1 h2, .content1 p,
.content2 h1, .content2 h2, .content2 p, .content3 h1, .content3 h2, .content3 p,
.content4 h1, .content4 h2, .content4 p, .content5 h1, .content5 h2, .content5 p,
.content6 h1, .content6 h2, .content6 p, .content7 h1, .content7 h2, .content7 p
{
	margin-left: 2px; margin-right:2px;
}


/* ************************************
 * classes needed for rounded corners *
 ************************************ */
.roundedCornerSpacer {
	margin: 0px; padding: 0px; border: 0px;
	clear: both;
	font-size: 1px; line-height: 1px;
}
.borderTL, .borderTR, .borderBL, .borderBR {
	width: 14px; height: 14px;
	padding: 0px; border: 0px;
	z-index: 100;
}
.borderTL, .borderBL { float: left;  clear: both; }
.borderTR, .borderBR { float: right; clear: right; }
.borderTL { margin:  -1px  0px  0px -1px; }
.borderTR { margin:  -1px -1px  0px  0px; }
.borderBL { margin: -14px  0px  0px  0px; }
.borderBR { margin: -14px  0px  0px  0px; }
/* IE5-5.5/win needs the border scooted to the left or right by an
   additional 3px!   Why?  */
.borderTL {
	margin-left: -4px;
	margin-left: -1px;
}
html>body .borderTL  {
	margin-left: -1px;
}
.borderTR {
	margin-right: -4px;
	margin-right: -1px;
}
html>body .borderTR  {
	margin-right: -1px;
}
.borderBL {
	margin-left: -3px;
	margin-left: 0px;
}
html>body .borderBL {
	margin-left: 0px;
}
.borderBR {
	margin-right: -3px;
	margin-right: 0px;
}
html>body .borderBR {
	margin-right: 0px;
}


