﻿/*
 * Styles for centering divs
 * See: http://www.sitepoint.com/forums/showpost.php?p=1243542&postcount=9
 */

html, body
{
	/* commented backslash hack for ie5mac \*/
	height: 100%; 
	/* end hack */
}

body {
	/*margin:0;*/
	padding:0;
	/*text-align:center;*//* centre for ie5 and 5.5. */
	min-height:200px;/*for mozilla/opera */
	min-width:200px;/* """ */
}

.externalLinkDialog
{
	visibility: hidden;
	position: absolute;
	left: 50%;
	/*top: 50%;*/
	width: 300px;
	height: 102px;
	margin-top: -51px; /* make this half your image/element height */
	margin-left: -150px; /* make this half your image/element width */
	border: solid 2px #000;
	background-color: #ffffff;
}

.externalLinkDialogTitle
{
	background-color: #92278f;
	color: #fff;
	font-family: Arial, Sans-Serif;
	font-size: 10pt;
	font-weight: bold;
	/*width: 300px;*/
	height: 20px;
	text-align: center;
	padding: 3px;
}

.externalLinkDialogBody
{
	text-align: left;
	background-color: #ffffff;
	color: #000;
	font-family: Arial, Sans-Serif;
	font-size: 10pt;
	font-weight: normal;
	padding: 3px;
	height: 70px;
}

