/* -------------------------------------------------------------- 
  
   * 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;
}

.wrapper{
height: 2000px;
}

.fixed{
width:100px;
height: 100px;
background: red;
position: fixed;
}

* html{
background-image: url(image.jpg); /* Use a 1px x 1px image */ 
}

* html .fixed{ 
position: absolute; /* position fixed for IE6 */ 
top: expression(104+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px'); 
left: expression(15+((e=document.documentElement.scrollLeft)?e:document.body.scrollLeft)+'px'); 
} 




