/* -------------------------------------------------------------- 
  
   * Filename	:   style.css
   * Version	:   1.0.0 (2008-12-03) YYYY-MM-DD
   * Website	:  	http://www.productivedreams.com
   * Email		:	productivedreams@gmail.com
   * Author		:  	Gopal Raju
   * Description: 	CSS Tutorial
  
  == STRUCTURE: ==================================
   * Page width:            100%
   * Number of columns:     1
  ================================================ 
  
*/

body{
font-size: 13px;
font-family: Arial, verdana, Trebuchet MS;
}

.min_width, .max_width{
height: 100px;
background: red;
}

.min_width{
width: expression(document.body.clientWidth < 1000? "1000px" : "auto");
}  

.max_width{
width: expression(document.body.clientWidth > 500? "500px" : "auto");
}



