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


/*  A class selector is a name preceded by a full stop ( . )   */
/*  An ID selector is a name preceded by a hash character ( # )  */
/* Use a class tag if: 

1.The style is used in various places throughout the document.
2.The style is very general.
Use an id tag if: 

1.The style is only used once ever in the document.
2.The style is specific to a certain area of the document.
Remember that an id can only appear once in any HTML document. Once you've used the id, it should not be used again on that page. */


/*=======Paragraph Styles===========*/

.paragraph1 {
	line-height:1.3em;
	margin-top:10px;
	font-family:Tahoma, Arial, helvetica, sans-serif;
	color:#363636;
	font-size:1em;
}
/*=================================*/

/*=======List Styles===========*/
ul {
	list-style-type: square;
	font-family: Tahoma, Arial, helvetica, sans-serif;
	color: #BA7F05;
	font-size: .9em;
	line-height: 1.75em;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 20px;
}

/*=======List Styles===========*/


/*=======Heading Styles===========*/

.h1 {
	line-height:1.3em;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#ba7f05;
	font-size:1.2em;
	font-weight: bold;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.h2 {
	line-height:1em;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#333;
	font-size:1.15em;
	font-weight: normal;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.h3 {
	line-height:1em;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#36F;
	font-size:1.15em;
	font-weight: normal;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/*=================================*/

/*=======Media Styles===========*/

.medialinks {
	line-height:1.3em;
	margin-top:10px;
	font-family:Tahoma, Arial, helvetica, sans-serif;
	color:#363636;
	font-size:.8em;
}

#table_title1 {
	line-height:1.3em;
	margin-top:10px;
	font-family:Tahoma, Geneva, sans-serif;
	color:#363636;
	font-size:1.1em;
}

#table_text1 {
	line-height:1.3em;
	font-family:Tahoma, Arial, helvetica, sans-serif;
	color:#CF7F3B;
	font-size:1em;
}
/*=================================*/

.newsform {
	line-height:1.3em;
	margin-top:10px;
	font-family:Tahoma, Arial, helvetica, sans-serif;
	color:#C67F3B;
	font-size:0.85em;
	font-weight: bold;
}

