/*	File: box.css			
										
FF CC 99 66 33 00	Lynda Weinman's 216 Web-safe Color Combinations
Black		= FFFFFF
White		= 000000
PowderBlue	= B0E0E6
Skyblue		= 87CEEB
Silver		= c0c0c0

Arial		is for Windows
Helvetica	is for Mac
sam-serif	is for all other systems

The id selector is used to specify a style for a single, unique element.
The id selector uses the id attribute of the HTML element, and is defined using the hash symbol "#"
The style rule below will be applied to the element with id="area1"

The class selector can be used by multiple elements.
The class selector uses the class attribute of the HTML element, and is defined using the period symbol "."
The style rule below will be applied to the element with class="pesudo"

*/

 <style type ="text/css" media="all">

/* -------- Blue   ---------------------------------------------*/
.box_center_blue	{
				text-align:			center;
				padding:			18px;
/*				width:				500px;  */
				border:				2px solid blue;
				font-size:			10.0pt;
			`}
/* padding: top right bottom left ; */
.box_left_blue	{
				text-align:			left;
				padding:			1px 1px 1px 10px;
/*				width:				450px;		*/
				border:				2px solid blue;
				font-size:			10.0pt;
			`}
.box_left_blue_img	{
				text-align:			left;
				padding:			1px 1px 1px 10px;
				width:				450px;
				border:				2px solid blue;
				font-size:			10.0pt;
			`}
.box_left_blue_mono	{
				text-align:			left;
				padding:			1px 1px 1px 10px;
/*				width:				450px;		*/
				border:				2px solid blue;
				font-size:			12.0pt;
				font-family:		monospace;
			`}

/* -------- Red  ----------------------------------------------*/
.box_center_red{
				text-align:			center;
				padding:			1px 1px 1px 10px;			
				border:				2px solid red;
				font-size:			10.0pt;
				}
 .box_left_red	{
				text-align:			left;
				padding:			1px 1px 1px 10px;			
				border:				2px solid red;
				font-size:			10.0pt;
				}
/* ------------------------------------------------------------*/
</style>
