/*======================================================================================*\
* Copyright (c) 2008 BLUEWING - All Rights Reserved.
* ======================================================================================
* No part of this file may be reproduced or transmitted in any form or by any means, 
* electronic or mechanical, including photocopying and recording, for any purpose 
* without the express written permission of the owner of copyright.
* ======================================================================================
* @filesource       root/view/stylesheets/dialogues.css
* @copyright        Copyright 2007, Bluewing, Florian Tschoerner
* @link             http://www.bluewing.biz
* @package          bluewing
* @since            Bluewing v 3.0.1
* @version          
* @modifiedby       
* @lastmodified     03.06.2009
* @license          http://www.opensource.org/licenses/mit-license.php The MIT License
\*======================================================================================*/

/*======================================================================================*\
 * ALL MEDIA
\*======================================================================================*/

@media all {
}

/*======================================================================================*\
 * SCREEN
\*======================================================================================*/

@media screen {
	div#dialogues {
		display:block;
		position:absolute;
		z-index:7;
		left:0px;
		top:0px;
		width:100%;
		height:100%;
		margin:0px 0px 0px 0px;
		padding:0px 0px 0px 0px;
	}
	
	div#dlgShaddow {
		display:block;
		position:absolute;
		z-index:8;
		left:0px;
		top:0px;
		width:100%;
		height:100%;
		margin:0px 0px 0px 0px;
		padding:0px 0px 0px 0px;
		background-color:rgb(0,0,0);
	}
	table.dlgTable {
		position:absolute;
		z-index:9;
		background-color:rgb(239,239,239);
		margin:0px auto 0px auto;
		border:outset 2px silver;
	}
		table.dlgTable td.dlgTitle {
			height:20px;
			font-size:1.2em;
			font-weight:bold;
			font-variant:small-caps;
			color:rgb(255,255,255);
			background-image:url('../../../core/view/images/bgDialogueTitle.png');
			background-repeat:repeat-x;
			padding:0px 5px 0px 5px;
		}
			table.dlgTable img#btnClose {
				float:right;
			}
		table.dlgTable td.dlgBody {
			padding:5px 5px 5px 5px;
		}

	#dlgProcessingTime {
		font-size:0.8em;
		color:rgb(0,0,0);
	}
}

/*======================================================================================*\
 * PRINT
\*======================================================================================*/
@media print {
	div#dialogues {
		display:none;
	}
}

/*======================================================================================*/
