/* Copyright 2009-2010 Taco Software. All rights reserved.
 * http://tacosw.com
 *
 * This file is part of the Component Library included in Taco HTML Edit.
 * Licensed users of Taco HTML Edit may modify and use this source code 
 * for their web development (including commercial projects), as long as 
 * this copyright notice is retained.
 *
 * The contents of this file may not be published in a format intended
 * for access by other humans, so you may not put code examples on a
 * web site with all or part of the contents of this file, and you may
 * not publish the contents of this file in a printed format.
 */

.tswModalDialog
{
	position: fixed;
	left: 0px;
	top: 0px;
	width:100%;
	height:100%;
	z-index: 2147483647;
	display: table;
	background-color: transparent;
}

.tswModalDialogBackground
{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.tswModalDialogContentContainer
{
	display:table-cell;
	vertical-align: middle;
	
	/* For IE7 */
	#position: absolute; 
	#top: 50%;
	#width: 100%;
}

.tswModalDialogContentInnerContainer {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	#top: -50%; /* For IE7 */
}

.tswModalDialogContent {
	display: none;
	filter: alpha(opacity=100); /* For IE7, IE8 */
	/* For IE7 */
	#zoom: 1;
}

.tswModalDialogCloseImage
{
	position: absolute;
	left: -15px;
	top: -12px;
	cursor: pointer;
}

/* The checksum below is for internal use by Taco HTML Edit, 
   to detect if a component file has been modified.
   TacoHTMLEditChecksum: 44FE877F */