/**
 *
 * jQuery plugin: Popup 1.0
 *
 * Copyright (c) 2008 Yves Bresson
 * www.ybresson.com
 *
 * Default styles
 *
 */


#popup {
  display: none;
  position: Absolute;
  width: 698px;
  _position: absolute; /* hack for internet explorer 6 */
  background: #b1b2b3;
  z-index: 10;
  padding: 1px;  /* same as rounding */
  overflow-x: auto;

}

.Disclaimer {
   padding:15px;
}
#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 {
  
}
#popup_close:hover {
  background: url('close.png') no-repeat;
}

#popup_message {
  padding: 8px;
  background: #ffffff;
  
  /*min-height: 120px;*/
}
/*overskrifter i pop up*/
#popup h2 
{
color:#870f0f;
font-size:10px;
}
/*Tekst i popupen*/
#popup p
{
	font-family:Tahoma, Geneva, sans-serif;
	font-size:9x;
}


