/* file: buttons.css
 *  author: Laura Carlson <lcarlson@d.umn.edu>
 *  version: 1
 */
 
 /*
 **********************************************
 * Body Rules
 **********************************************
 */ 
 
	body {
	font-family : Arial, Helvetica, sans-serif;
}

/*
 **********************************************
 * List Rules
 **********************************************
 */ 
 
	#localnav ul {
	list-style: none;
	font-family : Arial, Helvetica, sans-serif;
}
	#localnav ul li {
	margin-bottom : 1em;
	margin-top : 1em;
}


/*
 **********************************************
 * Button Rules
 **********************************************
 */ 
 
	.button1 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button1 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #ffff99; /* set to a pastel yellow */
	border-top : 2px solid #ffffcc; /* highlight color */
	border-left : 2px solid #ffffcc; /* highlight color */
	border-bottom : 2px solid #666633; /* shadow color */
	border-right : 2px solid #666633; /* shadow color */
}

	.button1 a:hover {
	color : #000000; /* black text color */
	background-color : #cccc99; /* desaturated color */
	border-top : 2px solid #666633; /* shadow color */
	border-left : 2px solid #666633; /* shadow color */
	border-bottom : 2px solid #ffffcc; /* highlight color */
	border-right : 2px solid #ffffcc; /* highlight color */
}

	.button2 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button2 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #99FF99; /* set to a pastel green */
	border-top : 2px solid #ccffcc; /* highlight color */
	border-left : 2px solid #ccffcc; /* highlight color */
	border-bottom : 2px solid #003300; /* shadow color */
	border-right : 2px solid #003300; /* shadow color */
}

	.button2 a:hover {
	color : #000000; /* black text color */
	background-color : #99cc99; /* desaturated color */
	border-top : 2px solid #003300; /* shadow color */
	border-left : 2px solid #003300; /* shadow color */
	border-bottom : 2px solid #ccffcc; /* highlight color */
	border-right : 2px solid #ccffcc; /* highlight color */
}

	.button3 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button3 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #66ffff; /* set to a cyan pastel  */
	border-top : 2px solid #ccffff; /* highlight color */
	border-left : 2px solid #ccffff; /* highlight color */
	border-bottom : 2px solid #669999; /* shadow color */
	border-right : 2px solid #669999; /* shadow color */
}

	.button3 a:hover {
	color : #000000; /* black text color */
	background-color : #99cccc; /* desaturated color */
	border-top : 2px solid #669999; /* shadow color */
	border-left : 2px solid #669999; /* shadow color */
	border-bottom : 2px solid #ccffff; /* highlight color */
	border-right : 2px solid #ccffff; /* highlight color */
}

	.button4 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button4 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #FF9999; /* set to a light salmon color  */
	border-top : 2px solid #ffcccc; /* highlight color */
	border-left : 2px solid #ffcccc; /* highlight color */
	border-bottom : 2px solid #663333; /* shadow color */
	border-right : 2px solid #663333; /* shadow color */
}

	.button4 a:hover {
	color : #000000; /* black text color */
	background-color : #cc9999; /* desaturated color */
	border-top : 2px solid #663333; /* shadow color */
	border-left : 2px solid #663333; /* shadow color */
	border-bottom : 2px solid #ffcccc; /* highlight color */
	border-right : 2px solid #ffcccc; /* highlight color */
}

	.button5 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button5 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #ff99ff; /* set to a pink */
	border-top : 2px solid #ffccff; /* highlight color */
	border-left : 2px solid #ffccff; /* highlight color */
	border-bottom : 2px solid #663366; /* shadow color */
	border-right : 2px solid #663366; /* shadow color */
}

	.button5 a:hover {
	color : #000000; /* black text color */
	background-color : #cc99cc; /* desaturated color */
	border-top : 2px solid #663366; /* shadow color */
	border-left : 2px solid #663366; /* shadow color */
	border-bottom : 2px solid #ffccff; /* highlight color */
	border-right : 2px solid #ffccff; /* highlight color */
}

	.button6 {
	font-size : 0.9em;
	font-weight : bold;
}

	.button6 a {
	padding : 4px;
	text-decoration : none;


	color : #000000; /* black text color */
	background-color : #9999ff; /* set to a lavender  */
	border-top : 2px solid #ccccff; /* highlight color */
	border-left : 2px solid #ccccff; /* highlight color */
	border-bottom : 2px solid #333366; /* shadow color */
	border-right : 2px solid #333366; /* shadow color */
}

	.button6 a:hover {
	color : #000000; /* black text color */
	background-color : #9999cc; /* desaturated color */
	border-top : 2px solid #333366; /* shadow color */
	border-left : 2px solid #333366; /* shadow color */
	border-bottom : 2px solid #ccccff; /* highlight color */
	border-right : 2px solid #ccccff; /* highlight color */
	
}	

	#localnav ul.inline li {
	display :inline;
}

	
	