html, body, #wrapper {
    min-height: 100%; /*Sets the min height to the
                        height of the viewport.*/
    width: 100%;
    height: 100%; /*Effectively, this is min height
                    for IE5+/Win, since IE wrongly expands
                    an element to enclose its content.
                    This mis-behavior screws up modern  
                    browsers*/
    margin: 0;
    padding: 0;
    }

html>body #wrapper {
    height: auto; /*this undoes the IE hack, hiding it
                    from IE using the child selector*/
    }
    
html {

    }

body {
	position: relative;
	margin: 0 auto;
	margin-top: 0px;
	top: 0px;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #4E3537;
	background-image: url(../images/bg.gif);
	background-repeat: no-repeat;
	background-position: center top;	
    }
	
	

p {
	font-size: 13px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;  /*required for IE's buggy behavior
                      with collapsing margins*/
	font-weight: normal;
	padding: 0px;
	margin-right: 0;
	margin-bottom: 7px;
	margin-top: 7px;
	margin-left: 0;
	width: 100%;
	line-height: 1.5em;
}


#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    }

#main {
	background-color: #EFEFEF;
    height: auto;
    padding: .5em;
    text-align: center;
    padding-bottom: 110px;   /*Keeps content above footer. Originally
                           used margin, but a bug in Opera7 seemed
                           to add spurious margin, pushing the
                           footer beyond the viewport even with
                           short content. */

    }

.kern {
    letter-spacing: -.1em;
    }


td {
	font-size: 13px;
}

/* Table Rows                          */

.row {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #DDDDDD;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}

th {

}

p.form {
	font-size: 9pt;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

p.note {
	font-size: 10px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

p.footer {
	font-size: 10px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
}

h1 {
	font-size: 40pt;
	font-weight: bold;
	color: #43292C;
	text-align: center;
}

h2 {
	font-size: 16pt;
	font-weight: bold;
	color: #43292C;
	padding: 0px;
	margin: 0px;
}

h3 {
	font-size: 14pt;
	font-weight: bold;
	color: #4E3537;
	margin-top: 30px;
	margin-bottom: 0px;
}

h4 {
	font-size: 16pt;
	font-weight: bold;
	color: #000000;
	padding: 0px;
	margin: 0px;
}

h5 {
	font-size: 9pt;
	font-weight: bold;
	color: #000000;
	margin: 0px;
	padding: 0px;
}


ul {
	font-size: 13px;
	color: #000000;
	font-weight: normal;
	margin-left: 20px;
	margin-bottom: 15px;
	margin-top: 0px;
	padding: 0px;
	text-indent: -20px;
	list-style-position: inside;
	list-style-image: url(../images/tick.gif);
	list-style-type: disc;
	line-height: 1.5em;
	}

#footer {
	width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
}

#footer p{
	font-size: 10px;
	color: #ffffff;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
}


/** BACKGROUND STYLES                                           **/



/** FORM STYLES                                                 **/

INPUT.Cat_TextBox {
	FONT-WEIGHT: normal;
	COLOR: #000000;
	BACKGROUND-COLOR: #ffffff !IMPORTANT;
	WIDTH: 178px;
	border: 1px solid #948281;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	margin-top: 5px;
}

SELECT.Cat_DropDown { 
	font-size: 12px;
  FONT-WEIGHT: normal; 
  COLOR: #000000; 
  BACKGROUND-COLOR: #ffffff !IMPORTANT;
  border: 1px solid #948281; 
  WIDTH: 178px; 
}

INPUT.Cat_TextBox_Sm {
	FONT-WEIGHT: normal;
	COLOR: #000000;
	BACKGROUND-COLOR: #ffffff !IMPORTANT;
	WIDTH: 60px;
	border: 1px solid #948281;
	font-size: 12px;
}

TEXTAREA.Cat_ListBox {
	FONT-WEIGHT: normal;
	COLOR: #000000;
	BACKGROUND-COLOR: #ffffff !IMPORTANT;
	WIDTH: 178px;
	HEIGHT: 35px;
	font-size: 12px;
	border: 1px solid #948281;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
}


.button {
	width: 76px;
	height: 24px;
	background: url(../images/button.gif) no-repeat;
	outline: none;
	border: none;
}

.button:hover {
	width: 76px;
	height: 24px;
	background: url(../images/button_d.gif) no-repeat;
	outline: none;
	border: none;
}

/* HYPERLINK COLOURS - Main Document                          */

a:link {
	color: #000000;
	text-decoration: underline;
}
a:visited {
	color: #4E3537;
	text-decoration: none;
}
a:hover {
	color: #4E3537;
	text-decoration: underline;
}

/* HYPERLINK COLOURS - Footers, Miscellaneous Pages           */

a.special:link {
	color: #FFFFFF;
	text-decoration: underline;
}
a.special:visited {
	color: #4E3537;
	text-decoration: none;
}
a.special:hover {
	color: #4E3537;
	text-decoration: underline;
}

/* HYPERLINK COLOURS - Top Header Links           */

a.top:link {
	color: #000000;
	text-decoration: none;
}
a.top:visited {
	color: #000000;
	text-decoration: none;
}
a.top:hover {
	color: #39378C;
	text-decoration: none;
}


