@charset "utf-8";
/*
	
	overrides-project.css
	Versions (Current version is at the top of the list below)
		1.0	- Initial version

This file provides a mechanism by which you can override general-n.css styles. Only project teams should modify this file. UIMF UI Toolkit teams should make their changes to overrides-toolkit.css.
	
If you have questions please contact Matt Soltvedt in User Experience: matt.soltvedt@optum.com. 

*/




/************************************************************************************ Demo */

/* This demo shows how you'd override parts of general.css. In this example we will:

	1. Make the background orange.
	2. Change the font-style to a serif font. 
	3. Hide the footer.

 	Uncomment the following to show the demo on any page.

body { background-color: #5d300e; }
body, input, select { 
	font-family: "Times New Roman", Times, serif;
} 

#ux-ftr {
	display: none;
}

*/