/**************
* crystn.css ~ currystonefoundation.org cascading style sheet © 2007 by galacticagent.com 
**************

/********** COLORS OF NOTE USED IN SITE **********

*	*** CUSTOM CLIENT COLORS (please help maintain client branding by using only specified colors)
*	
*	#8C7460; /*-- cry brn R:140 G:116 B:96  --*
*	#634832; /*-- cry dk brn R:99 G:72 B:50  --*
*
*	#7C955D; /*-- cry dk grn R:166 G:181 B:148  --*
*	#A6B594; /*-- cry grn R:166 G:181 B:148  --*
*	#DBE1D4; /*-- 40% cry grn R:219 G:225 B:212  --*
*	#E4E9DF; /*-- 30% cry grn R:228 G:233 B:223  --*
*	#EDF0EA; /*-- 20% cry grn R:237 G:240 B:234  --*
*
*		*** GENRAL HEX COLORS ***
*
*	#000000; /*-- black R:0 G:0 B:0  --*
*	#1C1C1C; /*-- 90% gray R:28 G:28 B:28 --*
*	#363636; /*-- 80% gray R:54 G:54 B:54 --*
*	#4F4F4F; /*-- 70% gray R:79 G:79 B:79 --*
*	#828282; /*-- 50% gray R:130 G:130 B:130 --*
*	#B5B5B5; /*-- 30% gray R:181 G:181 B:181 --*
*	#CFCFCF; /*-- 20% gray R:207 G:207 B:207 --*
*	#E8E8E8; /*-- 10% gray R:232 G:232 B:232 --*
*	#FFFFFF; /*-- white R:255 G:255 B:255  --*
*	#B1515D; /*-- link red --*

************************************************************
********** FONT REF FOR SITE *******************************
*
*	Verdana, Arial, Helvetica, sans-serif;
*	Georgia, Times New Roman, Times, Courier, serif;
*
************************************************************/

/*-- MAIN CSS CONTROL DOCUMENT--*/

/*
 * Reset everything to zero
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	background: transparent;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background:#fff;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* End Reset */



/*-- STANDARD ELEMENTS --*/
body {
	text-align:center;
	font-family: Verdana, Geneva, sans-serif;
	}

h1, h2, h3, h4, h5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: normal;
	font-weight:bold;
	color:#CFCFCF; /*-- 20% gray R:207 G:207 B:207 --*/
	}
h1 {font-size:18px;}
h2 {font-size:15px;}
h3 {font-size:13px;}
h4 {
	font-size:14px;
	color: #7C955D;
	margin-left: 20px;
}
h5 {font-size:12px;font-weight:italic;}
h6 {
	color: #630;
	font: bold 12px Verdana, Arial, Helvetica, sans-serif;
	margin-left: 20px;
	margin-bottom: 5px;
	margin-top: 5px;
}

p {
	margin:5px 0 5px 0;
	}

a img {
	border: 0;
	}

/***********************************************************
************************************************************
*					NAVIGATION SECTION
*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*/

/****************** START MAIN NAV SETUP *******************/
/*-- HORIZONTAL ROLLOVER NAVIGATION --*/
#nav {
	width:90%;
	min-width:655px;
	height:38px;
	text-align:center;
	background-color:transparent;
	margin:0 auto;
	padding:0;
	padding-top:5px;
	z-index:50;
	}
	#nav ul {
		margin: 0; /*removes indent IE and Opera */
		margin-left:auto;
		margin-right:auto;
		padding: 0; /*removes indent Mozilla and NN7*/
		list-style-type: none; /*turns off display of bullet*/
		white-space: nowrap;
		}

	#nav li {
		float:left;
		margin:2px 0 0 0;
		}
	#nav a {
		display: block;
		padding: 7px 13px 10px 13px;
/*		background-image: url(../images/bg_nav_up.gif); initial "up" image */
		background-repeat:repeat-x; 
		z-index:55;
		width:70px;
		}

	#nav a:active,
	#nav a:hover {
		background-image: url(images/bg_nav_over.gif);/* rollover image */
		background-repeat:no-repeat;
		}

	/*-- main navigation links --*/
	#nav a:link, 
	#nav a:visited,
	#nav a:active,
	#nav a:hover  { 
		font-size: 14px;
		color:#7C955D; /*-- cry dk grn R:166 G:181 B:148  --*/
		font-weight:normal;
		text-decoration: none;
		}
	#nav a:active,
	#nav a:hover {
		color:#634832; /*-- cry dk brn R:99 G:72 B:50  --*/
		font-weight:normal;
		}

/* UBERLINK "OVER" IMAGE */
#nav a.uber  {
	color:#634832; /*-- cry dk brn R:99 G:72 B:50  --*/
	font-weight:normal;
	background-image:url(images/bg_nav_over.gif);
	background-repeat:no-repeat;
	}

/***********************************************************
************************************************************
*					NAVIGATION SECTION
*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*/

	/*-- secondary navigation links --*/
	a.nav2:link,
	a.nav2:visited {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 10px;
		color:#8C7460; /*-- cry brn R:140 G:116 B:96  --*/
		font-weight:bold;
		text-decoration:none;
		padding-bottom:20px;
		}

	a.nav2:hover,
	a.nav2:active {
		font-weight:bold;
		text-decoration:underline;
		}
	
/*-- outside links --*/
	a.outside {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 14px;
		color:#7C955D; /*-- cry dk grn R:166 G:181 B:148  --*/
		font-weight: bold;
		text-decoration: none;
		}

	a.outside:hover,
	a.outside:active {text-decoration:underline;font-weight:bold;color:#7C955D; /*-- cry dk grn R:166 G:181 B:148  --*/}


/*-- in-copy links --*/
	a.text:link,
	a.text:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color:#4F4F4F; /*-- 70% grey --*/
	text-decoration: none;
		}

	a.text:hover,
	a.text:active {
		font-size: 12px;
		color:#4F4F4F; /*-- 70% grey --*/
		font-weight: normal;
		text-decoration: none;
		}


/*	*	*	*	*	*	*	*	*	*	*	*	*	*	*	*
*					END NAVIGATION SECTION
************************************************************/
