/*
DMMaster.css

THE MASTER STYLE SHEET TO BE USED IN THE HEADER OF EACH PAGE TO RENDER THE DISPLAY OF THE CONTENT

This style sheet imports other style sheets that have been developed for specific types of content

CREATED			WHO			ACTION
--------	 ---------		--------------------------------------------------------------------------
04/01/2006		CML			Original Development



DESIGN NOTES

This style sheet is intended to be placed in the header that is placed in every page
to render how the content displays on the screen.

If a particular set of pages requires special formatting for when it is printed, a seperate
style just for that should be developed and placed in the pages needing it in addition to the header
the code to add the print style sheet is:

<link rel="stylesheet" type="text/css" href="#######.css" media="print"> 

where ####### is replaced with the name of the print style sheet to be used.

All styles have been tested primarily for IE with a seconday emphasis on Firefox

DEFINED STYLES
*/

/* Imports the style sheet for text rendering using classes*/
@import url("text.css");

/* Imports the style sheet for table rendering using classes*/
@import url("tables.css");

/* Imports the style sheet for graphics and image rendering using classes*/
@import url("graphics.css");

/* Imports the style sheet for rendering div tags using classes*/
@import url("div.css");

/* Imports the style sheet for rendering HTML tags*/
@import url("html.css");