/* CSS Document */

/*#wrap {	margin-left: auto;	margin-right: auto;	width: expression( document.body.clientWidth < 799 ? "800px" : 
document.body.clientWidth > 1019 ? "1020px" :"auto" ); /* sets max-width for IE */
/*  max-width: 1020px; /* this sets the max-width value for all standards-compliant browsers */
/*}
/* #wrap { 
   width: expression( document.body.clientWidth < 776 ? "777px" : "auto" ); /* set min-width for IE */
/*   min-width: 777px; /* sets min-width value for all standards-compliant browsers */
/*}*/
/*#wrap { 
   margin-left: auto;	margin-right: auto;
   width: expression( document.body.clientWidth > 1020 ? "1019px" : "auto" ); /* sets max-width for IE */
/*   max-width: 1019px; /* this sets the max-width value for all standards-compliant browsers */
/*}

*css to make Firefox have a fluid width between 740 and 1100 pixels*/
#wrap {

 
/* Width for IE makes website fluid width between 740 and 1100 px */
width:expression(document.body.clientWidth < 750? "740px" : document.body.clientWidth > 1210? "1200px" : "auto"); /* increased initial check value to 750 so it does not freeze Internet Explorer */
 
 }