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

* {
	margin: 0px;
	padding: 0px;
}

body {
	background: url(../assets/images/bg_paisley.png) repeat;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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 */
}
#container  {
	width: 85%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
#banner {
	background-color: #4A192B;
	text-align: center;
}
#navBar {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #73384E;
	background-color: #DC9FBC;
	width: 100%;
	margin: 0;
	padding-top: 3px;
	height: 18px;
}
#navlinks li {
	display: inline;
	list-style: none;
	margin-right: .5em;
	padding-right: .5em;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #73384E;
}
#navlinks li.last {
	border-right: 0px;
}
#sidebar1 {
  	background: url(../assets/images/sidebar.png) repeat-y;
	text-align: left;
	float: left;
	width: 144px;
	height: 534px;
}
#sidebar1   h3    {
	margin-left: 10px; 
	margin-right: 10px;
}
#mainContent {
	background: #ECDDA8;
	height: 534px;
	margin: 0;
}
#cardstitle {
	padding: 10px;
}
#mainTableNr {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #73384e;
	float: left;
}
td {
	color: #73384E;
	font-size: 10px;
	text-align: center;
}
td img {
	border: black solid 1px;
}
td p {
	margin: 2px;
}
#footer  {
	text-align: center;
	margin:0;
	padding: 0;
	background:#DC9FBC;
}
#footer  p  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #73384E;
	font-size: 9px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/* Miscellaneous classes for reuse */
.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;
}
a:link {
	color: #73384E;
	text-decoration: none;
}
a:visited {
	color:#663366;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	color:#FF00FF;
}
