﻿/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */

#popup {
  display: none;
  position: fixed;
  width: 540px;
  _position: absolute; /* hack for internet explorer 6 */
  background: #005CA9;
  z-index: 20;
  padding: 5px;  /* same as rounding */
  height:370px;
}

#popup_bg {
  display: none;
  position: fixed;
  _position: absolute; /* hack for internet explorer 6 */
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #005CA9;
  border: 1px solid #cecece;
  z-index: 10;
}

#popup_title {
  font-weight: bold;
  color: #ffffff;
}

#popup_close {
  width: 112px;
  height: 37px;
  background: url('../images/kapat.gif') no-repeat;
  position: absolute;
  right: 0px;
  bottom:2px;
  cursor: pointer;
}
#popup_close:hover {
  background: url('../images/kapat.gif') no-repeat;
}

#popup_message {
  padding:100px 75px 0  80px;
  color:#fff;
  font-size:24px;
  font-family:Calibri,Verdana,Arial;
  text-align:center;
  /*min-height: 120px;*/
}

