﻿/*
	links - verdana
	navigation - calibri, arial
	headings - arial
	body text - arial
*/

*
{
	padding: 0px;
	margin: 0px;
}
body
{
	background-color: #13161A; /* #13161A */
	color: white;
	font-family: Arial, Helvetica;
	font-size: 11px;
	scrollbar-base-color: #1a1a1a;
	scrollbar-track-color: #282828;
	scrollbar-highlight-color: #333;
	scrollbar-3dlight-color: #333;
	scrollbar-darkshadow-color: #333;
	scrollbar-arrow-color: #fff;
}

/*** Headings ***/
		h1, h2, h3, h4, h5, h6
		{
			display: inline;
		}

/*** A link ***/
		a
		{
			cursor: hand; 
			text-decoration: underline;
			color: #3078C0;
			font-family: verdana;
		}
		a:hover
		{
			cursor: hand; 
			text-decoration: none;
			color: #00FFFF;
			font-family: verdana;
		}

/*** Controls ***/
input[type=submit]
{
	padding: 0px 5px 3px 5px;
	font-family: Calibri, Arial, Helvetica;
	font-weight: bold;
	color: blue;
	min-width:50px;
	width: expression(this.clientWidth < this.currentStyle["min-width"]?this.currentStyle["min-width"] :"");
}
input[type=text], select
{
	font-family: Courier New;
	font-weight: bold;
}

/*** Default Table Styles ***/
		table
		{
			/*width: 100%;*/
			border-collapse: collapse;
		}
		table tr
		{
			vertical-align: top;
		}
		table td, table th
		{
			padding: 0.15em 0.25em 0.15em 0.25em;
		}
		
		.list,	.form
		{
			width: 100%;
		}

		table.form, table.form tr, table.form td, table.form th, 
			table.list, table.list tr, table.list td, table.list th
		{
			border: 1px solid white;
		}

		table th
		{
			background-color: gray;
			text-align: center;	
		}

		table.form th
		{
			text-align: right;
		}
		
		table.center
		{
			margin-left: auto;
			margin-right: auto;
		}

/*** Default List Styles ***/
		ul 
		{
			margin-left: 0;
			padding-left: 0;
			border: none;
		} 

		ul li 
		{
			margin-left: 0;
			padding-left: 2px;
			border: none;
			list-style: none;
			display: inline;
		}