/***************************************************************************************
GENERAL DESIGN INFO
***************************************************************************************/

/******** TEXT STYLING *******/

.text-center{
	text-align:center;
}

/* Headers*/

h1, h2, h3, h4, h5, h6{
	margin:0;
}

h2{
	font-size:1.4em;
}

h3{
	font-size:1.1em;
}

/* Paragraphs, blockquotes, lists */

p, li{
	text-align:justify;
	font-size:1em;
}

/* LINKS */

a:link, a:visited{
    /*color:#2d503a;*/
    color:#3182b1;
    text-decoration:none;
}
a:focus{outline:none;}		/*	gets rid of dotted line that appears
								on clicked links */
a:hover, a:active{
    color:#3182b1;
    text-decoration:underline;
}

a img{border:none;}

/*h2 a:link{
    color:black;
}*/

.imglink { 	/* 	This class is used for links where we wish the background image
				to be used as the link image, with no link text visible */ 
	display:block;
	line-height:700px;		/* 	text is out of view, as long as height of div
								is less than 700px */
	overflow:hidden;		/*	hides text	*/
	position:relative;		/* 	This fixes the IE7 overflow hidden bug */
}
