﻿body 
{
	margin: 0px;
	padding: 0px;
	
	/* This removes the border around the viewport in old versions of IE */
	border: 0px;
	
	width: 100%;
	/* Minimum width of layout - remove line if not required */
	/* The min-width property does not work in old versions of Internet Explorer */
	min-width: 600px;
	
	background-attachment: fixed;
	background-image: url(./images/globe.jpg);
	background-repeat: no-repeat;
	background-position: top right;
	
	font-family: Arial;
	font-size: 1em;
}

#header
{
	clear: both;
	float: left;
	width: 100%;
	
	padding: 0px 0px 25px 0px;
}

/* 'widths' sub menu */
#layoutdims 
{
	clear: both;
	background: #eee;
	border-top: 4px solid #000;
	margin: 0;
	padding: 6px 15px !important;
	text-align: right;
}

/* column container */
.colmask 
{
    clear: both;
    float: left;
    width: 100%; /* width of whole page */
	overflow: hidden;	/* This chops off any overhanging divs */
}
	
/* common column settings */
.colright,
.colmid,
.colleft 
{
	float:left;
	width:100%;
	position:relative;
}
.col1,
.col2,
.col3 
{
	float:left;
	position:relative;
	padding:0 0 1em 0;
	overflow:hidden;
}
/* 2 Column (double page) settings */
.doublepage .colleft 
{
	right:50%;				/* right column width */
}
.doublepage .col1 
{
	width:46%;				/* left column content width (column width minus left and right padding) */
	left:52%;				/* right column width plus left column left padding */
}
.doublepage .col2 
{
	width:46%;				/* right column content width (column width minus left and right padding) */
	left:56%;				/* (right column width) plus (left column left and right padding) plus (right column left padding) */
}

/* Footer styles */
#footer 
{
	clear: both;
	float: left;
	width: 100%;

	color: #000000;
	background-color: #D3D3D3;

	border-top: solid 1px #000000;
	border-bottom: solid 1px #000000;
	
	text-align: center;
} 
#appResults
{
	clear: both;
	width: 100%;
	
	padding: 0px;
}
/* Misc Styles */
.slogan
{
	padding: 0px;
	
	background-color: #000000;
	color: #FFFFFF;
	
	text-align: center;
}
.br
{
	width: 60%;
	
	background: #ad1948 url(./images/br.gif) no-repeat 100% 100%;
	color: White;	
	text-align: center;
}
.tr
{
	padding: 10px;	
	background: url(./images/tr.gif) no-repeat 100% 0;
}
.clear
{
	font-size: 1px; height: 1px
}
.err
{
	color: Red;
}
.button
{
	border: solid thin #000000;
	background-color: #EEEEEE;
	color: #000000;
}
A:Link
{
	color: #ad1948;
	text-decoration: none;
	cursor: pointer;
}
/* Turn off border on all images */
img 
{
    border: 0px;
    border-style: none;
}