/*

This file belongs to a set of files that allow the user to resize the text via a visible button on the Web page (as opposed to using the resize options built
into the browser):

1)      styleswitcher.js:  This file contains the functions used to switch to alternate stylesheets with different text sizes.
                           This file also contains functions to store the user's preferred stylesheet information.						   
						   
2)		includes files:  These are used to build the visible resize bar. The *med version will be used for those portions of the site that default to the "medium" default text size (e.g., AAS)			
			resize_bar_med_visible.asp or resize_bar_small_visible.asp:   these files build the visible resize bars. 
			resize_bar_med_underlying.asp or resize_bar_small_underlying.asp:   these files contain the alternate stylesheets and call styleswitcher.js.			

3)      CSS files:  Depending on whether a given section of the site wishes to have the default font size set to the smaller (80%/roughly 10 point font) or larger (100%/roughly 12 point font) that section will use the following CSS files:

Sections with smaller font:
·         Std_page_percent:  this is the full CSS file
·         Page_percent_100:  used when user selects the medium font option
·         Page_percent_120:  used when user selects the large font option
·         Page_percent_140:  used when user selects the x-large font option
·         Page_percent_80:   allows the user to go back to the small (default) font size after having selected one of the other font sizes 

Sections with larger font: 
·         Med_page_percent:  this is the full CSS file
·         Page_percent_80:   used when user selects the small font option
·         Page_percent_120:  used when user selects the large font option
·         Page_percent_140:  used when user selects the x-large font option
·         Page_percent_100:  allows the user to go back to the medium (default) font size after having selected one of the other font sizes 

*/


BODY     {font-size: 80%;}
@media print {.printall{width:95%; font-size:80%;}}
