/* Page dafults */

/*
  It seems that <img> elements inside <a> elements have borders 
  by default. This make sure none are shown on any image object
 */
img {
  border: none;
}

.ContentDIV > div {
  /* Can use to debug */
  /* border: 1px solid red; */
}


/* Put before spacer class so these can be combined */
.ClearFloats {
  /* Overflow hidden to make IE6 behave properly */
  clear: both;
  height: 0px;
  overflow: hidden;
  /*border: solid yellow 1px;*/
}

/* General page spacers and such */
.Spacer5 {
  /* Overflow hidden to make IE6 behave properly */
  height: 5px;
  overflow: hidden;
}

.Spacer10 {
  height: 10px;
  overflow: hidden;
  /*border: solid 1px magenta;*/
}

.Spacer25 {
  height: 25px;
  overflow: hidden;
}

.Empty {
  /* Height needs to be 1px or the browsers will */
  /* think the div should take up no space at    */
  /* all and width value will get ignored        */
   height: 1px;
  /* Overflow hidden to make IE6 behave properly */
  /* Could probably have made sure there was a   */
  /* html comment in every div as well.          */ 
   overflow: hidden;
   /*border: solid 1px grey;*/
}

.DisabledContent {
  background-color: #EEEEEE;
  background-image: url(/images/disabled.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: absolute;  
  /* display: inline-block; forces layout in IE  */
  /* but changes div widths and layout.          */
  /* zoom: 1; forces layout in IE but seems to   */
  /* change font size                            */
  /* filter:opacity only works on objects that   */
  /* have layout.                                */
  /* IE will ignore the opacity: attribute       */
  /* Non IE browsers will ignore filter:opacity  */
  /* display: inline-block;*/
  zoom: 1;
  filter: alpha(opacity=30);
  /* For firefox, opera, chrome but not IE */
  /* IE will ignore this                   */
  opacity: 0.35;
}

.PostDatedContent {
  background-color: #EEEEEE;
  background-image: url(/images/postDated.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: absolute;  
  /* For IE */
  zoom: 1;
  filter: alpha(opacity=30);
  /* For firefox, opera, chrome but not IE */
  /* IE will ignore this                   */
  opacity: 0.35;
}
  
  
  
/* Not currently used */
.MaskedContent {
  position: absolute;
  /* Eidt box will need to have a higher z-index */
  z-index: 1000000;
  width: 100%;
  height: 100%;
  background-color: #444444;
  /* display: inline-block; forces layout in IE  */
  /* but changes div widths and layout.          */
  /* zoom: 1; forces layout in IE but seems to   */
  /* change font size                            */
  /* filter:opacity only works on objects that   */
  /* have layout.                                */
  /* IE will igmore the opacity: attribute       */
  /* Non IE browsers will ignore filter:opacity  */
  /*display: inline-block;*/
  zoom: 1;
  filter: alpha(opacity=30);
  /* For firefox, opera, chrome but not IE */
  /* IE will ignore this                   */
  opacity: 0.35;
}




