﻿/*
    Floating Window
*/

.floating_window {
	position: fixed;
	z-index: 1001;
	top:50%;
	left:50%;
	display: none;
}

* html .floating_window { /* ie6 hack */
    position: absolute;
    margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop));
}

.floating_window .window_inner
{
    font-size: 80%;
    background-color: #fff;
    padding: 10px;
}

.floating_window .window_bottom
{
    height: 5px;
    background-color: #fff;
}

.floating_window .close
{
    cursor: hand; cursor: pointer;
    position: absolute; top: 8px; right: 8px;  
    z-index: 2000;
}

.floating_window .bottom
{
    height: 5px;
    background-color: #fff;
}

.floating_window .top
{
    height: 5px;
    background-color: #fff;
}
