@import url("cms.css");
@import url("textStyles.css");
@import url("listStyles.css");
@import url("menuStyle.css");
@import url("layout.css");
@import url("forms.css");

/* sets all default margins and padding values to zero */
* {
  padding: 0;
  margin: 0;
  }
  

 /*scrollbar styling has been applied to 
 the html tag as we are using a fully
 CSS compliant Doc Type. Using classes 
 doesn't work unless IE is in quirks mode*/  
 html {
     scrollbar-base-color: #fff;
     scrollbar-arrow-color: #0093aa;
     scrollbar-track-color: #ecf1f2;

     scrollbar-shadow-color: #ebebeb;
     scrollbar-lightshadow-color:#ebebeb; 
     scrollbar-darkshadow-color: #b2b2b2;

     scrollbar-highlight-color:#ebebeb;
     scrollbar-3dlight-color:#ebebeb;
	 
	 font-size: 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;
   padding: 0 0;
   font-size: 62.5%;
   background-color:#ebebeb;
   min-width:770px;
   }

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