﻿/****************************************************************************************/
/*                                                                                      */
/* Snadna-cesta.cz website - STYLES FOR JAVASCRIPT MESSAGE BOX                          */
/*                                                                                      */
/* Version:         2008-10-29 02:00                                                    */
/* Last changed by: Josef Vondracek, Soft Evolution s.r.o.                              */
/*                                                                                      */
/****************************************************************************************/

/*======================================================================================*/
/* GLOBAL SETTINGS                                                                      */
/*======================================================================================*/

#messageBoxObject
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999999;
	
	background: black;
	opacity: 0.5;  
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;  
    -khtml-opacity: 0.5;
}

#messageBoxObjectWindow
{
	width: 500px;
	padding: 15px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99999999999999999;
	background: #eeeeee;
	border: 1px solid black;
    
	color: Black;
	font-size: 100%;
	font-family: "Verdana", "Tahoma", "Arial";
	font-family: Verdana, Tahoma, Arial;
}

#messageBoxObjectCloseButtonHTML
{
	position: absolute;
	right: 15px;
	top: 15px;
}

.messageBoxObjectInputButton
{
	width: 165px;
	height: 22px;
	border: none;
	cursor: pointer;
	background: url(Images/JS-MessageBox/btn.png) no-repeat 0px 0px;
	color: White;
	font-weight: bold;
	font-size: 90%;
}

#messageBoxObjectMessageHTML
{
	width: 100%;
	padding: 15px 0;
}

#messageBoxObjectButtonsHTML
{
	width: 100%;
}