/***
Phil's Color Chart:
Millennium™ Red (For now)
FF183D

Glenn notes that Millennium™ red is Pantone 185
which equates to  R  232  G   17    B  45      #E8112D

The Safari escape tab hack:
***************************

and Opera).
 (used on wrapper, and the 3 backgrounds for Moz

Puts an escape in front of a valid number in the style name to replace a
letter in that name, e.g. \65 is an e. A tab is then inserted (not a space).
The purpose of this hack is to hide some code from Safari. Unfortunately,
some other browsers (like IE) see it for what it should be (but NOT Safari),
and so we must undo the code for those browsers by other hacks.

The Tan hack:
*************

* html .anyelement {rules read only by IE/Win and IE/Mac}

The MAC hack:
*************

(first the active comment you are reading now must be
closed...) ***/

/* \*/

/* */

/***...Back in comment mode now. Anything between those two comment lines
will be hidden from IE/Mac. Don't use any comments within this hack or it will
close prematurely and IE/Mac will begin reading before it should.

The above two hacks are combined so as to feed rules only to IE/Win.

The Holly Hack:
***************

Proper use of backslash escape characters inside property names used in the
Holly hack can further segregate rules to be read by only IE6 from rules for
IE5.x/Win.

These hiding hacks, along with several other fixes, make possible this formerly
impossible layout. It is highly unlikely that new browsers will have any
problem with these valid hiding hacks, and we will have to wait for Microsoft
to release IE7.

If enabled in the PageMaker, the 100% height in the html and body styles makes
the design full height. It also breaks Moz because you should use min-height,
but that doesn't work! Note
how these 100% heights are hidden from IE Mac with
the MAC Hack, otherwise they break it.

XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXXX ***/
html,body{ 
  margin:0; /*** Do NOT set anything other than a left margin for the page
as this will break the design ***/
  padding:0;
  border:0;
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
}
body{ 
  background:#2A2A2A url(../images/wallpaper.jpg) repeat-x;
  min-width:976px; /*** This is needed for moz. Otherwise, the header and footer will
slide off the left side of the page if the screen width is narrower than the design.
Not seen by IE. Left Col + Right Col + Center Col + Both Inner Borders + Both Outer Borders ***/
  text-align:center; /*** IE/Win (not IE/MAC) alignment of page ***/
}
.clear{ 
  clear:both;
/*** these next attributes are designed to keep the div
height to 0 pixels high, critical for Safari and Netscape 7 ***/
  height:1px;
  overflow:hidden;
  line-height:1%;
  font-size:0px;
  margin-bottom:-1px;
}
.hide { /*provides the utility for hiding unimplemented elements */
display: none;
}
* html .clear{height:auto;margin-bottom:0}  /*** stops IE browsers from displaying
the clear div/br in the page, as these are for Moz/Opera and
Safari only. If IE 5.x Win DID display these, the page is too high ***/
#fullheightcontainer{ 
  margin-left:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  margin-right:auto; /*** Mozilla/Opera/Mac IE 5.x alignment of page ***/
  text-align:left; /*** IE Win re-alignment of page if page is centered ***/
  position:relative; /*** Needed for IE, othewise header and footer aren't contained
directly above and below the body ***/
  width:976px; /*** Needed for Moz/Opera to keep page from sliding to left side of
page when it calculates auto margins above. Can't use min-width. Note that putting
width in #fullheightcontainer shows it to IE and causes problems, so IE needs a hack
to remove this width. Left Col + Right Col + Center Col + Both Inner Border + Both Outer Borders ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for Moz to give full height design if page content is
too small to fill the page ***/
background:#FFFFFF; /*** Set background color for side columns for Safari & IE ***/
}
#wrapper{ /*not causing*/
  min-height:100%; /*** moz uses this to make full height design. As this #wrapper
is inside the #fullheightcontainer which is 100% height, moz will not inherit heights
further into the design inside this container, which you should be able to do with
use of the min-height style. Instead, Mozilla ignores the height:100% or
min-height:100% from this point inwards to the center of the design - a nasty bug.
If you change this to height:100% moz won't expand the design if content grows.
Aaaghhh. I pulled my hair out over this for days. ***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Fixes height for non moz browsers, to full height ***/
  background:#FFFFFF; /*** Set background color for side columns for Safari & IE ***/
}
#wrapp\65	r{ /*** for Opera and Moz (and some others will see it, but NOT Safari) ***/
  height:auto; /*** For moz to stop it fixing height to 100% ***/
}
/* \*/
* html #wrapper{
  height:100%;
}
/* Last style with height declaration hidden from Mac IE 5.x */
/*** Fixes height for IE, back to full height,
from esc tab hack moz min-height solution ***/
#outer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:relative; /*** IE needs this or the contents won't show outside the parent container. ***/
  margin-left:200px; /*** Critical left col dimension value = left col width ***/
  width:775px; /*** Critical left and right col/divider dimension value (moves inversly) = center col width ***/
  border-left:2px dotted #DDDDDD; /*** Sets the internal left side border. ***/
  background:#FFFFFF; /*** Sets background of center col***/
/* \*/
  height:100%;
/* Last height declaration hidden from Mac IE 5.x */
/*** Needed for full height inner borders in Win IE ***/
}
/*** The next style hack for widths are NOT needed if no internal side borders are needed ***/
* html #outer{ /*** IE5.x/win box model fix ***/
  width:776px; /*** Critical left and right col/divider dimension value 
(moves inversly) = Center Col Width + Both Inner Borders ***/
  w\idth:775px; /*** Critical left and right col/divider dimension value (moves inversly) = Center Col Width ***/
}
#left{ /*not causing*/
  width:202px; /*** Critical left col/divider dimension value = Left Col Width + 1px + One Internal Border Width ***/
  float:left;
  display:inline;
  position:relative; /*** IE needs this or the contents won't show
outside the parent container. ***/
  margin-left:-201px; /*** Critical left col/divider dimension value = left col width + one internal border width ***/
}
*>html #left{width:201px;} /*** Fix only for IE/Mac = left col width + one internal border width ***/
#container-left{/*not causing*/
	width:200px; /*** Critical left col dimension value = left col width - 1px ***/
}
/*** Static fixes ***/

/*** a Note on the Holly hack: if IE/Win shows bugs it's a good idea to apply the height:1%
     hack to different elements and see if that fixes the problem. Sometimes it may be
     necessary to use "position: relative;" on certain elements, but it's hard to tell in
     advance which elements will need such fixes. ***/
/*** This is a STATIC fix for IE5/Win at the largest text size setting. ***/
/* \*/
* html #left{margin-right:-3px;} /*not causing*/
/* Above style hidden from Mac IE */
/*** All the IE fixes that are inside seperate "Mac-hacks" may be grouped within
     just one Mac-hack for convenience if desired. However, each fix must come
     later than the rule it is fixing or the fix itself will be overridden. ***/
#center{
  width:775px; /*** Set to = center col width ***/
  float:right;
  display:inline;
/* \*/
  margin-left:-1px;
/* Hidden from IE-mac */
}
#startpage #center {
background: url(../images/startback.gif) no-repeat top right;
}

/*** clearheader heights are made from header height + borders +
any sidebar box height, less any sidebar intrusion.
Similar calcs for footers. ***/

.leftbox ul, .rightbox ul {
list-style-type: none;
}

.leftbox li, .rightbox li {
	margin-top: 10px;
    padding-left:25px;
    background:transparent url(../images/cbullet.gif) no-repeat;
    abackground-position:0 5px;
}

#clearheadercenter{/*not causing*/
  height:120px; /*** needed to make room for header in center column ***/
  overflow:hidden;
}

#clearheaderleft{/*not causing*/
  height:120px; /*** needed to make room for header in left column ***/
  overflow:hidden;
}
#clearfootercenter{/*not causing*/
  height:50px; /*** needed to make room for footer in center column ***/
  overflow:hidden;
}
#clearfooterleft{ /*not causing*/
  height:50px; /*** needed to make room for footer in left column ***/
  overflow:hidden;
}
#footer{
  z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
  position:absolute;
  clear: both;
  width:976px; /*** Set to Left Col + Right Col + Center Col + Both Inner Borders +
Both External Borders ***/
  height:50px; /*** = Bottom Margin + One Outer Border + body to footer divider depth +
subfooter1 height + any other subfooter heights ***/
  overflow:hidden;
  margin-top:-50px; /*** negative height ***/
}
#subfooter1, #subfooter1 a{
  background:#FFFFFF; /*** Background Color of Sub-footer #1 ***/
  text-align:center;
  text-decoration:none;
  font-size: 10px;
  line-height: 140%;
  color: #666666;
  height:50px; /*** sub-footer row height ***/
}
#header{ /*MAYBE not causing, turning off makes header dissapear*/
	z-index:1; /*** Critical value for Moz/Opera Background Column colors fudge to work ***/
	position:absolute;
	top:0px;
	width:976px; /*** Set to Left Col (not if left sidebar fully intrudes into header or left sidebar is off)
+ Right Col (not if right sidebar fully intrudes into header or right sidebar is off) + Center Col + Both Inner
Borders (not if any sidebar intrudes into header or footer, or Inner Borders are off) + Both External Borders
(not if external borders are off) ***/
	height:120px; /*** = Top Margin + One Outer Border + header to body divider depth +
subheader1 height + any other subheader heights ***/
	aoverflow:hidden; /*Hiding the overflow prevents suckerfish from working!  TURN IT OFF!*/
	aleft: -34px;
}
#subheader1{ /*not causing*/
background:#FFFFFF url(../images/header1.jpg) no-repeat left top;
height:70px;
}
#subheader2{
	background:#FFFFFF url(../images/header2.gif) no-repeat left top;
  text-align:left;
  height:50px; /*** sub-header row height ***/
}
#startpage #subheader2{
	background:#00FFFF url(../images/headerStart.gif) no-repeat left top;
}
/*#milnav {
position:absolute;
top: 30px;
This proves that while milnav was inhereting positioning from subheader, it is not inherently flawed.  This entry can be deleted once problem has been fixed.  Positioning flaw is likely in subheader, not sure if 1 or 2...
}*/
#milnav li{
padding-left: 25px;
padding-top: 14px;
abackground: none;
}
#milnav li li{
padding-top: 0px;
padding-left: 0px;
margin: 0;
abackground: none;
}

/* #milnav ul li ul {
abackground:#C53432 url(../images/bunnies.jpg) no-repeat left top;
} */

#milnav li {
font-size:12px;
abackground: none;
}
#milnav  a {
text-decoration:none;
padding:5px 6px 6px 7px;
padding-bottom: 6px;
abackground: none;
}
#milnav a:link {
color:#FF183D;
abackground: none;
}

#milnav a:visited {
color:#FF183D;
abackground: none;
}
#milnav a:hover {
background:#E8112D;
color:#000000;

}
#milnav a:active {
background:#E8112D;
color:#0F0F0F;
}
#gfx_bg_middle{
  top:0px;
  position:absolute;
  height:100%;
  overflow:hidden;
  width:775px; /*** = Center Col Width ***/
  margin-left:200px; /*** = Left Col Width ***/
  abackground:#FFFFFF; /*** Set background color for center column for Mozilla & Opera ***/
  border-left:1px solid #FFFFFF;
  border-left:1px solid #FFFFFF;
}
* html #gfx_bg_middle{
  display:none; /*** Hides the moz fix from IE ***/
}

#hideadbox{
background-color:#333333;
margin:10px;
padding:0;
text-indent: -999ems;
}

#javaadbox {
margin: 10px;
}


.dotbox {
border: 2px dotted #DDDDDD;
margin: 13px;}

.leftbox, .rightbox {
width: 330px; /*would this work if 50% were used instead?  Think about it, in case left column were to be implemented.*/
padding: 15px;
}

.leftbox {
float: left;
margin-left: 13px;
margin-right: 13px;
}
.rightbox {
float: right;
margin-left: 0;
margin-right: 20px;
}
