/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup
	{
    display: none;
    position: fixed;
    width: 500px;
    _position: absolute; /* hack for internet explorer 6 */
    background: #434034;
    z-index: 20;
    padding: 5px;  /* same as rounding */
	font-size: 1.3em;
	}

#popup_bg
	{
    display: none;
    position: fixed;
    _position: absolute; /* hack for internet explorer 6 */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #000000;
    border: 1px solid #cecece;
    z-index: 10;
	}

#popup_title
	{
    font-weight: bold;
    color: #ffffff;
	}

#popup_close
	{
    width: 14px;
    height: 14px;
    background: url('close-off.png') no-repeat;
    position: absolute;
    right: 20px;
	top: 20px;
    cursor: pointer;
	border: none;
    }
	
#popup_close:hover
	{
    background: url('close.png') no-repeat;
	}

#popup_message
	{
    padding: 20px;
    background: #e0dcce;
    min-height: 150px;
	}

