public HoverElement Clone()
        {
            HoverElement n = new HoverElement(TextContent.nodeValue, Manager);

            isClone = true;

            Element.style.padding = "4px";
            Element.style.border  = "1px dotted blue";

            Element.insertPreviousSibling(n.Element);
            Element.appendChild(new IHTMLElement(IHTMLElement.HTMLElementEnum.hr));
            Element.appendChild(ImageStan);

            ImageStan.style.Float = IStyle.FloatEnum.left;

            Element.style.position = IStyle.PositionEnum.absolute;

            Element.parentNode.appendChild(Element);


            return(n);
        }
        public HoverElement Clone()
        {
            HoverElement n = new HoverElement(TextContent.nodeValue, Manager);

            isClone = true;

            Element.style.padding = "4px";
            Element.style.border = "1px dotted blue";

            Element.insertPreviousSibling(n.Element);
            Element.appendChild(new IHTMLElement(IHTMLElement.HTMLElementEnum.hr));
            Element.appendChild(ImageStan);

            ImageStan.style.Float = IStyle.FloatEnum.left;

            Element.style.position = IStyle.PositionEnum.absolute;

            Element.parentNode.appendChild(Element);


            return n;
        }