@charset "UTF-8";
/* CSS Document */


/* card container */
.container {
	width: 806px; /* the auto value on the sides, coupled with the width, centers the layout */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */
	margin-top: 4px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF;
	background-image: url(dev_images/card_bottom.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.leftBar {
	float: left;
	width: 29px;
	padding-bottom: 32px;
}
.card {
	width: 762px;
	float: left;
}
.rightBar {
	float: left;
	padding-bottom: 32px;
}
/* end card container */

/* nav */

.nav {
	float:left;
	width:212px;
}

ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #CCC; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	width: 160px;
}
ul.nav li {
	border-bottom: 1px solid #CCC; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 140px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your leftBar container. */
	text-decoration: none;
	background-color: #A1B2BD;
	color: #FFF;
	font-size: 12px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #EEE;
	background-color: #40A0FF;
}

.navSelected {
	background-color:#41A1D3;
	list-style: none;
	margin-bottom: 0px;
	width: 140px;
	padding: 5px 5px 5px 15px;
	display: block;
	color: #FFF;
	font-size: 12px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
}
/* end nav */
/* redefined tags */
body {
	COLOR: #333333;
	FONT-SIZE: 9pt;
	FONT-FAMILY: Arial, Helvetica, sans-serif;
	line-height: 18px;
	background-image: url(dev_images/card_bkg.gif);
}
h2 {
	color: #40A0D2;
}
A {
	COLOR: #666666;
	TEXT-DECORATION: underline;
}
A:hover {
	COLOR: #000000;
	TEXT-DECORATION: underline;
}
/* end redefined tags */

/* classes */
.logo {
	padding: 50px 1px 50px 0px;
}
.content {
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	margin-left: 212px;
}
.indexContent {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 20px;
	margin-left: 212px;
	text-align:right;
}
.inset {
	border:1px solid #000;
	background-color: #EEE;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	width: 400px;
	margin-left: 35px;
}
.inset ul {
	margin-left: 25px;
	margin-bottom: 10px;
}
.inset li {
	list-style:circle;	
}
.footer {
	text-align:center;	
}

