/*	Project:	ACCESSIBILITY CSS - Learning Nuggets Company
	Author:		Paul Castle (paul@mindresin.co.uk)

	Notes:

	Table Of Contents:
		Text Size Settings					01.
		Layout Width Settings					02.
			|_ Width Thin					02.a
			|_ Width Fat					02.b
		Contrast Settings					03.
			|_ Contrast Yellow				03.a
			|_ Contrast Black				03.b
*/

/**
	01.	Text Size Settings
**/
.textSize_small #main									{ font-size: 80% }
.textSize_default #main									{ font-size: 100% }
.textSize_large #main									{ font-size: 180%; }
/**
	02.	Layout Width Settings
**/
.layoutWidth_default #width_container							{ width: 980px; }
.layoutWidth_default #sidebar								{ width: 220px; }
.layoutWidth_default #main								{ width: 720px; }
/**
*		02.a Width Thin
**/
.layoutWidth_thin #width_container							{ width: 780px; }
.layoutWidth_thin #sidebar								{ width: 220px; }
.layoutWidth_thin #main									{ width: 520px; }
.layoutWidth_thin .presentation								{ width: 760px; }
.layoutWidth_thin .presentation_wrapper							{ width: 740px; }

.layoutWidth_thin #footer .triblock.last						{ display: none; }

.layoutWidth_thin .servicemenu_listing .articleblock					{ width: 247px; }

/**
*		02.b Width Fat
**/
.layoutWidth_wide #width_container							{ width: 1080px; }
.layoutWidth_wide #sidebar								{ width: 220px; }
.layoutWidth_wide #main									{ width: 820px; }
.layoutWidth_wide .presentation								{ width: 1060px; }
.layoutWidth_wide .presentation_wrapper							{ width: 1040px; }

.layoutWidth_wide #footer .triblock.last						{  }

.layoutWidth_wide .servicemenu_listing .articleblock					{ width: 397px; }

/**
	03.	Contrast Settings
**/
.textContrast_default 									{  }
/**
*		03.a Contrast Yellow ( Black Text on Yellow Background )
**/
textContrast_yellow									{  }
/**
*		03.b Contrast Black ( Yellow Text on Black Background )
**/
textContrast_black									{  }