/* CSS Document */
/*<![CDATA[*/
@media screen {
/*\*//*/
}
/**/

.int03 {margin-top: 15px;}
.int04 {margin-top: -15px; position: relative; }
.int05 {position: absolute!important; margin-top: -50px; right: -25px;}
.int07 {margin-top: 20px;}


/* demo 1: 'position: fixed' to top */

* html div#fixme, * html div#fixme-bottom, * html div#fixme-middle {left: 73%; top: 100px; /* fallback */; }

div#fixme {
position: fixed; 
top: 0;
left: 83%;
width: 0;
height: 0;
z-index: 2;
}

/* Wrap the following in a 'conditional comment' if you like.
  It won't make it more valid. */ 
* html div#fixme {
position: absolute;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop : document.body.scrollTop);
left: expression("80%");
}

/* slight adjustment */
div#fixme img,div#fixme-bottom img  {
float: left;
margin: 4px -100px -100px 0;
position: relative;
}

/* not necessary, but... */
* html body {
position: relative;
}

/* demo 2: 'position: fixed' to bottom */

div#fixme-bottom {
text-align: right;
font-size:16px;
position: fixed; 
bottom:90px; 
left: 84%;
width: 13%;
height: 0;
z-index: 2;
}
#fixme-bottom a{ font-size:14px;color: #666666; text-decoration: none; }
* html div#fixme-bottom {

text-align:right; position: absolute;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop
+((documentElement.clientHeight-this.clientHeight)/1.05)
: document.body.scrollTop
+((document.body.clientHeight-this.clientHeight)/1.2));
left: expression("84%");
}

/* slight adjustment */
div#fixme-bottom img {
float: left;
margin: -48px -100px -100px 0;
position: relative;
}

/* demo 3: 'position: fixed' to middle */

div#fixme-middle {
position: fixed; 
top: 60%;
left:2%;
width: 100px;
height: 0;
z-index: 2;
text-align:left;
}
 
* html div#fixme-middle {position: absolute;
top:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollTop
+((documentElement.clientHeight-this.clientHeight)/1.8)
: document.body.scrollTop
+((document.body.clientHeight-this.clientHeight)/1.8));

left:expression(eval(document.compatMode &&
document.compatMode=='CSS1Compat') ?
documentElement.scrollLeft 
+ (document.body.clientWidth/45 ) 
: document.body.scrollLeft 
+ (document.body.offsetWidth/45 ));
}

/* slight adjustment */
div#fixme-middle img {
float: left;
margin: -22px -100px -100px 0;
position: relative;
}

}

/*]]>*/

