
/*
   Author: Christopher Young
	 Edited: 3-7-09
*/


/* This p style is so that the text is kept from the sides of the window, and it is also
for centering the text and indenting the first line of each paragraph.*/

p {
   margin-left: 15%;
	 margin-right: 15%;
	 text-align: left;
	 text-indent: 4em;
	 }
	 
	 
/* This p.add style is for the paragraphs in the ongoing report, making them indented farther
from the edge of the window to signify a difference in origin.*/
	 
p.add {
   margin-left: 20%;
	 margin-right: 20%;
	 }
	 
	 
/*This is for those really small, one-liner paragrahps that you don't want indented. It is also
centering them.*/
	 
p.exception {
   margin-left: 15%;
	 margin-right: 15%;
	 text-align: center;
	 text-indent: 0px;
	 }
	 
	 
/*This is for the little note at the end of each post telling when that post was posted. 
It gives them a different look for clarification to the reader.*/
	 
div.posted {
   margin-left: 20%;
	 margin-right: 20%;
   font-family: "courier new";
	 color: #aaaaaa;
	 font-size: 12px;
	 }

	 
/*This is for differentiating the titles of articles of a bill from the rest of the text.*/	 
	 
span.article {
   font-weight: bold;
	 font-style: italic;
	 padding-right: 2em;
	 }


/*This is for the "back to top" links to make them look different.*/
	 
.backtotop {
   font-family: "courier new";
	 font-size: 14px;
	 color: #777777;
	 }


/*This simply positions the navigation links slightly differently than the rest of the text.*/
	 
div.nav {
   text-align: center;
	 }


/*This bolds the link signifying which place in the sight you are at.*/
	 
#active {
   font-weight: bold;
	 }


/*Plain hr styles*/	 
	 
hr {
   width: 75%;
	 }
	 
	 
/*This is for the thiner hr's between the newly posted stuff, as a distinguishing look.*/
	 
hr.thinhr {
   width: 50%
	 }

#tabular_data {
   margin-top: 40px;
	 margin-left: 5%;
	 margin-right: 5%;
	 border-collapse: collapse;
	 }	 

#tabular_data td {
   border-width: 1px;
	 border-style: solid;
	 padding: 10px;
	 }
	 
.table_heading td {
   font-family: arial;
	 text-align: center;
	 font-weight: bold;
	 }
	 
.td_centered {
   text-align: center;
	 }