/* CSS Document */


/* General Rules
----------------------------------------------- */

body {
	margin: 0px;
	padding: 0px;
	background: url('images/bg.png') top left;
	height: 100%;
}
td, body {
	color: #1F1F1F;
	font-family: Trebuchet MS, Palatino Linotype, Georgia, Arial, tahoma;
	font-size: 12px;
}
a:link,a:visited { color: 000000; }
img { border: none; }

h2 { color: #4b5458; font-size: 140%;}


/* Misc
----------------------------------------------- */
	.Content {
		background-color: white;
		padding: 5px;
		height: 100%;
	}
	img { border: 0; }

/* SHORT CSS CODES */
	.big		{ font-size: 18px; font-weight: bold; }
	.hide		{ display: none;}
	.float		{ float: left;}
	.relative	{ position: relative;}
	.pointer	{ cursor: pointer;}
	.drag		{ cursor: move;}
	.grey		{ color: grey;}
	.orange		{ color: #FF9900;}
	.white		{ color: white;}
	.red		{ color: red;}
	.green		{ color: green;}
	.message	{ color: red;}
	.error		{ color: red;}
	.nowrap		{ white-space: nowrap}
	.bold 		{ font-weight: bold}
	.pd3 		{ padding: 3px;}
	.pd5 		{ padding: 5px;}
	.pd10 		{ padding: 10px;}
	.pd15 		{ padding: 15px;}
	td.pd15 	{ padding: 15px;}
	.top		{ vertical-align: top;}
	.bottom		{ vertical-align: bottom;}
	.fright		{ float: right;}
	.fleft		{ float: left;}
	.inline		{ display: inline;}

/* POPUP DIALOG BOXES */
	.dia {
		height: 0px;
		width: 0px;
		overflow: visible;
		position: absolute;
		z-index: 99;
	}
	table.dia_table {
		border-collapse: collapse;
		margin: auto;
		table-layout: fixed;
		width: 800px;
	}
	td.dia_content {
		background-color: white;
		border: 1px solid #4F4F4F;
		padding: 0px;
		vertical-align: top;
	}
	.dia_body {
		padding: 6px;
		border-bottom: 1px solid #ccc;
	}
	.diaiframe{
		border: 1px solid white;
		overflow: auto;
		width: 100%;
		height: 10px;
	}
	.dia_buttons {
		background: #f2f2f2;
		padding: 5px 8px 5px 8px;
	}
	.dia_content h1 {
		background: #303C49;
		margin: 0px;
		padding: 8px;
		font-size: 12px;
		font-weight: bold;
	}
	.dia_submit {
		border-left: 1px solid #D9DFEA;
		border-top: 1px solid #D9DFEA;
		border-right: 1px solid #0e1f5b;
		border-bottom: 1px solid #0e1f5b;
		background-color: #303C49;
		color: #FFFFFF;
		font-size: 11px;
	}