@import url("cms.css");
@import url("contactForm.css");
@import url("layout.css");
@import url("textStyles.css");
@import url("vertMenu.css");
@import url("login.css");


/* sets all default margins and padding values to zero */
* {
  padding: 0;
  margin: 0;
  }
  
html {
  font-size: 100%;
  height: 100%;
  
  }  

/* this aligns all elements to center for IE6 which doesn't read auto margin, also sets body margin and padding to zero */
body {
   text-align:center;
   margin: 0 0 2px 0;
   padding: 0 0;
   font-size: 62.5%;
   background-color:#9e0351;
   height: 100%;
   }

/* this class clears float containers and is used with a break */   
.clear { 
    clear:both;
    height:0;
    margin:0;
    font-size: 1px;
    line-height: 0;
    }
	
