﻿@charset "utf-8";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
h3, h2, h1, object, applet, span, div, body, html {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #000000;
	font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
	font-size: 76%;
	padding: 0 0 0 0;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	margin: 0 0 0 0;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	background-repeat: no-repeat;
	color: #000;
	line-height: 14px;
}
/* Heading Styles
----------------------------------------------- */
#content h1 {
	color: navy;
	font-size: 1.4em;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 1em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyond summary in a simple comment.*/
}
#content h2 {
	color: black;
	font-size: 1.0em;
	font-weight: bold;
	clear: left;
	margin: 1.2em 0em 1.2em 0em;
}
#content h3 {
	color: black;
	font-size: 8pt;
	font-weight: bold;
	margin: 0.67em 0;
}
#content code {
	color: teal;
	font-size: 110%;
	font-family: monospace;
	font-style: normal;
	font-variant: normal;
	line-height: normal;
}
#content pre {
	color: teal;
	font-size: 110%;
	font-family: monospace;
	font-style: normal;
	font-variant: normal;
	line-height: normal; /* Browser specific (not valid) styles to make preformatted text wrap */;
	white-space: pre-wrap; /* css-3 */;
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */;
	white-space: -pre-wrap; /* Opera 4-6 */;
	white-space: -o-pre-wrap; /* Opera 7 */;
	word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.separator {
	height: 0;
	clear: both;
}
.imgleft {
	float: left;
	border: 0px solid #000000;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.imgright {
	float: right;
	border: 0px solid #000000;
	margin-left: 5px;
	margin-bottom: 5px;
	margin-top: 5px;
}
.imgcentre {
	text-align: center;
	border: 0px solid #000000;
	margin-bottom: 5px;
	margin-top: 5px;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	width: 700px;
	height: auto;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #headerWrapper {
	min-height: 102px;
	height: 102px;
	background-repeat: no-repeat;
}
#outerWrapper #headerWrapper #title h1 {
	font-size: 14pt;
	font-weight: lighter;
	margin-left: 7px;
}
#outerWrapper #headerWrapper #title h2 {
	font-size: 24pt;
	padding-top: 10px;
	margin-left: 5px;
}
#outerWrapper #headerWrapper #title h3 {
	font-size: 12pt;
	padding-top: 20px;
	padding-bottom: 3px;
	color: silver;
	font-weight: lighter;
	margin-left: 7px;
}
#outerWrapper #contentWrapper {
  	z-index: 1;
}
#outerWrapper #contentWrapper #content {
    padding:5px; 
    margin:0; 
  	z-index: 1;
}
#outerWrapper #contentWrapper #content img {
	/*margin: 5px;*/
	border-style: none;
}
#outerWrapper #contentWrapper #content table {
	width:90%;
	margin:0 auto 0 auto;
	border-collapse:collapse;
}
#outerWrapper #contentWrapper #content td {	
	font-size:9pt;
}

/* Links
----------------------------------------------- */
#content a {
	color: navy;
	text-decoration: underline;
}
#content a:link {
}
#content a:visited {
}
#content a:active {
}
#content a:hover {
	color: red;
}
#footer {
	position: relative;
	color: silver;
	text-align: center;
	font-weight: bold;
	font-size: 0.8em;
	left: 0;
	width: auto;
	clear: both;
	border-top: 3px double;
	margin: 0;
	padding: .75em .75em .75em;
	background-color: gray;
}
a:visited {
	color: silver;
	text-decoration: none;
}
#footer a {
	color: silver;
	text-decoration: none;
}
#footer a:hover {
	color: red;
}
/*
---------------------
SPECIAL 
---------------------*/
.separator {
	height: 0;
	clear: both;
}
.red {
	color: #FF0000;
}
.darkred {
	color: #800000;
}
.teal {
	color: #408080;
}
.navy {
	color: navy;
}
.underline {
	text-decoration: underline;
}
/* Specials for Dongle Page */
.bnr {
	background-image: url('../images/bg_redyel.gif');
	background-color: teal;
	clear: both;
}
.bnr h1 {
	padding: 5px 0px 5px 20px;
}
.expandable {
	/*z-index:10;*/
	color: gray;
	display: none;
}
