@charset "UTF-8";
/* KariStyle */


body  {
	background: #61298a;
	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;
}


h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 0px;

	}


p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 0px;
}

p a:link {
	color: #61298a;
	text-decoration: none;
}

p a:hover {
	color: #9d46dc;
	text-decoration: underline;                    
}

p a:visited {
	color: #666666;
	font-style: italic;
	text-decoration: none;
}	


h2 a:link {
	color: #61298a;
	text-decoration: none;
}

h2 a:hover {
	color: #9d46dc;
	text-decoration: none;
}

h2 a:visited {
	color: #61298a;
	font-style: italic;
	text-decoration: none;
}	


#footer p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: none;
}

#footer p a:link {
	color: #c9a5e3;
	text-decoration: none;
}

#footer p a:visited {
	color: #333333;
	font-style: italic;
	text-decoration: none;
}

#footer p a:hover {
	color: #FFFFFF;
	text-decoration: underline;                    
}


/*.MenuItem {	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #999999;
	margin-top: 11px;
	margin-bottom: 0px;
}

/Makes menu item on current page turn white/
body#news .MenuItem a#newslink,
body#get  .MenuItem a#getlink,
body#office .MenuItem a#officelink,
body#rambucks .MenuItem a#rambuckslink,
body#rules .MenuItem a#ruleslink,
body#print .MenuItem a#printlink,
body#report .MenuItem a#reportlink,
body#bank .MenuItem a#banklink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
	margin-top: 11px;
	margin-bottom: 0px;
}


.MenuItem a:link {	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #999999;
	margin-top: 11px;
	margin-bottom: 0px;
}

.MenuItem a:visited {
	font-variant: normal;
	text-decoration: none;
	font-style: normal;
	color: #666666;
}

.MenuItem a:hover {
	font-variant: normal;
	text-decoration: underline;
	color: #FFFFFF;
}*/



/*DIV Container programming*/

#container { 
	width: 1000px; 
	height: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 

#header { 
	height:  150px; 
	background: #61298a;
} 

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 85px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 5px 10px 20px 5px;
	margin-right: 18px;
	color: #000000;
	text-align: center;
	background-color: #FFFFFF;
}


#mainContent {
	height: 600px;
	z-index:100;
	overflow: auto;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-color: #FFFFFF;
}
	 
#footer {
	height: 40px;
	margin-top: 5px;
	padding: 5px 10px 25px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #61298a;
	text-align: center;
}

* html #footer {position:absolute;} /* fixes position in IE6 */ 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 20px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.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;
}

#mainContent ul {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	list-style-type: square;
	margin-left: 10px;
	padding-left: 10px;
}
	
#mainContent li {
	margin-top: 0px;
	margin-bottom: 0px;
}

#mainContent li a:link {
	color: #666600;
	text-decoration: none;
}

#mainContent li a:hover {
	color: #000000;
	text-decoration: underline;                    
}

#mainContent li a:visited {
	color: #666666;
	font-style: italic;
	text-decoration: none;
}

