/**
@COMPANY: Raven Developers 2010
@FILE INFO: Fixes IE7 bugs (IE itself is a bug which needs pest control)
@WEBSITE: http://www.ravendevelopers.com
@AUTHOR: Anirudh K. Mahant
@COPYRIGHTS:
The original author(s) of this file partially hold the copyrights.
Portions created by Anirudh K. Mahant are Copyright of Raven Developers (C) 2010.
Contains portions derived from YAML. YAML is licensed under
1) CC (Creative Commons)-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
2) YAML-C (http://www.yaml.de/en/license/license-conditions.html)
YAML is Copyright of Mr. Dirk Jesse (http://www.yaml.de)
**/

/*---------------------- DERIVED FROM YAML FRAMEWORK ----------------------*/
/*Forcing vertical scrollbars is not needed in IE (only for Firefox/Netscape/Safari)*/
html { height: auto; margin-bottom:0; }
/*Fixes IE5.x and IE6 overflow behavior of textarea and input elements elements*/
* html textarea { overflow: scroll; overflow-x: hidden; }
* html input { overflow: hidden; }
/* Essential in IE7 for correct layout scaling ... */
body { position: relative; }
/* ... but not for IE5.x and IE6 */
* html body { position: static; }
/* Disappearing List-Background Bug */
* html ul { position: relative; }* html ol { position: relative; }* html dl { position: relative; }
/* List numbering bug */
body ol li { display: list-item; }
/* triggers hasLayout */
.encap { zoom: 1; }
/*---------------------- END OF YAML FRAMEWORK MARKUP ----------------------*/
/* { Fix IE Whitespace bug in IE when anchors are inside Paragraphs } */
* html p a{ display: inline; }
/* { IE only clearfix or better call it encapsulate fix } */
.ie-encap:after{clear:both;display:block;font-size:0;content:" ";visibility:hidden;height:0;}.ie-encap{display:inline-block;}
/* start commented backslash hack \*/
* html .ie-encap{height:1%;}
.ie-encap{display:block;}
/* close commented backslash hack */
.ie-inlineblk{display:inline-block;}.ie-inline{display:inline;}