	
/************************************************
*	Text and Hyperlinks							*
************************************************/

a, a:visited{
	color: #6F566F;
	text-decoration: none;
	}
	
a:hover{
	text-decoration: underline;
	color: #003399;
	}

.style1{
font-family: Myriad Pro;
background-color: #fff;
color: #333333;
text-decoration: none;
word-spacing: normal;
text-align: left;
letter-spacing: 0;
line-height: 1.2em;
font-size: 11px;
}


/*.style1{
	font:11px "Trebuchet MS";
	color: #333333;
}*/

.style7{
	font:11px "Myriad Pro";
	font-weight: bold;
	color: #000000;
}
.style3 {
	font-family: "Myriad Pro";
	font-size: 15px;
	font-style: normal;
	font-weight: bold;
	color: #A8322C;
	font-stretch: normal;
	line-height: normal;
}

.style4{
	font:10px "Myriad Pro";
	color: #6F566F;
}

.style5 {
	font-family: "Myriad Pro";
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #666666;
	font-stretch: normal;
	line-height: normal;

/* Begin Images */
p img {
	margin: 10px;
padding: 5px;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */
	
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
	
img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}
	
.alignleft {
	float: left;
	}
/* End Images */
/* Begin Blockquote */

blockquote {
display: block;
padding: 0 60px;
width: 350px;
}

/*
Next we'll use the CSS :before and :after pseudo-elements to generate the curly quotes.  Since we're setting the quotes to use display: block, we'll need to set widths for them as well.  We'll define the common attributes first...*/


blockquote:before, blockquote:after {
color: #69c;
display: block;
font-size: 700%;
width: 50px;
}

/*Next we'll define the specific attributes for the opening and closing quotes.  We'll control the position of the quotes with the margin attributes, and in the case of the opening quote -- the height.*/

 

blockquote:before{
content: open-quote;
height: 0;
margin-left: -0.55em;
}



blockquote:after{
content: close-quote;
height: 50px;
margin-top: -70px;   
margin-left: 360px;
} 

/* End Blockquote */