/**************************************************\
             McLIB Default Styles CSS

 Written by: Fritz Madden (fritz@maddencomputing.com)

\**************************************************/

/*
  Note: Don't quote the values for these attributes...
  if you "quote" them, mozilla ignors them.  So don't
  use quotes for numerical values in CSS
*/

/**************************************************************
         Body tag should be specified like the following...
***************************************************************
BODY {
	color: "#d1c308";
	background-image: url(images/telaviv.jpg);
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-color: "#000023";
}
***************************************************************
	But for some reason Mozzila doesn't support
	background-color so you have to do it the following
	way... which is lame...
***************************************************************
BODY {
	// color image repeat top-to-bottom-position left-to-right-position attachment
	background: #083a03 url(images/golden_gateway.jpg) no-repeat 50% 0;
}
***************************************************************
	Whatever dude...
***************************************************************
Suggested values for variables
---------------------------------
color: red|orange|yellow|green|blue|indigo|violet| #000000 | ... | #ffffff
font-family: Arial, Helvetica, Verdana, Baskerville, Heisi Mincho W3, (serif, sans-serif, cursive, fantasy, monospace)
font-style: normal | italic | oblique
font-weight: normal | bold | bolder | lighter | 100 | 200 | 300 | ... | 900
font-stretch: normal | wider | narrower | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded
font-size: 8pt | 10pt | 12pt | ... | 64pt
text-decoration: none | underline | overline | line-through
text-shadow is specified as (offset1 offset2 blur color) so...
text-shadow: 3px 3px 2px red
text-indent: 3em | 4em | 5em | ... | 30em
text-align: left | right | center | justify
text-transform: capitalize | uppercase | lowercase | none
***************************************************************/
BODY {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	12pt;
	text-decoration: none;
	text-shadow: 	0px 0px;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#CCCCFF;
	background: 	#1D3963;
}

A:link { color: #FFFFFF; text-decoration: underline;}
A:visited { color: #FFFFCC; text-decoration: underline;}
A:active { color: #FFFFAA; text-decoration: none;}
A:hover { color: #FFFF88; text-decoration: underline;}


.title {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	20pt;
	text-decoration: none;
	text-shadow: 	3px 3px 2px black;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#CCCCFF;
	background: 	#1D3963;
}

.subtitle1 {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	16pt;
	text-decoration: none;
	text-shadow: 	0px 0px;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#CCCCFF;
	background: 	#1D3963;
}

.subtitle2 {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	14pt;
	text-decoration: none;
	text-shadow: 	0px 0px;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#CCCCFF;
	background: 	#1D3963;
}

.tablerow0 {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	12pt;
	text-decoration: none;
	text-shadow: 	0px 0px;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#FFFFFF;
	background: 	#3D5983;
}

.tablerow1 {
	font-family: 	Arial, Helvetica, sans-serif, serif
	font-style: 	normal;
	font-weight: 	normal;
	font-stretch: 	normal;
	font-size: 	12pt;
	text-decoration: none;
	text-shadow: 	0px 0px;
	text-indent: 	0em;
	text-align: 	left;
	text-transform: capitalize;
	color:		#FFFFFF;
	background: 	#3D7983;
}

.hilit1 {
	text-transform: inherit;
	font-weight:	bold;
	color:		#000000;
	background: 	#EEEECC;
	word-spacing:	0cm;
}

.hilit2 {
	text-transform: inherit;
	font-weight:	bold;
	color:		#FF0000;
	background: 	#FFFFCC;
	word-spacing:	0cm;
}

.copyright {
	margin-top: 10cm;
}
