/* CSS Document */
<!--
body {
	background-color: #21123D;
	font-family: "Arial Unicode MS", arial; 
	font-size: 12px; 
	color: #21123D; 
	cursor: default;
	margin-left: 10px;
}

.container {
	background-color: #FFFFFF;
	width: 600px; /* the width of our layout overall */
	padding: 5px 5px 5px 5px;
	margin: 10px 10px 10px 10px ; /* center the layout in mozilla and ie 6+ */
	text-align: left; /* put the text back where it should be */
}

.table, tr, td {
	font-family: "arial unicode ms", arial;
	font-size: 12px;
	padding-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	}

.header {
	width: 100%; /* full width header & footer */
	height: 100%; /* give the header & footer a height */
	padding: 0px;
}

.sidebar {
	float: left; /* put the sidebar on the left */
	width: 100px; /* the width of our sidebar column */
	padding-left: 5px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	text-align: left;
}

.content {
	float: right; /* put the content on the right */
	width: 475px; /* the width of our content column */
	padding-right: 5px;
	padding-top: 5px;
	padding-left: 5px;
	padding-bottom: 0px;
}

.footer {
	padding-top:10px;
	padding-left:30px;
	padding-right:30px;
	padding-bottom:10px;
	width: 600px; /* the width of our layout overall */
	color: #21123D;
	background-color: #FFFFFF;
	text-align:justify;
	}
	
h1 {
	background-color: #21123D;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold; 
	font-style: normal;
	text-align: left; 
	padding: 0px 10px 3px 10px; 
}

h2 {
	color: #21123D;
	font-size: 11px;
	font-weight: normal;
	font-style: italic;
	letter-spacing: 2px;
	text-align: left;
	}
	

hr {
	border: 1px solid #21123D;
	}

a:link, a:visited, a:active       
	{
	color: #4F1F49;
	font-weight: bold;
	font-style: normal;
	padding: 0px; 
	text-decoration: none;}

a:hover       
	{
	color: #C93F85;
	font-weight: bold;
	padding: 0px; 
	text-decoration: underline;
	}

.affiliates img { 
border-width :5px;
border-color: #C93F85;
background-color: #FFFFFF;
margin: 12px;
border-style: solid;
}

-->