@charset "utf-8";
body  {
	font: 100% Arial, Verdana, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* p pre code blockqute must not exceed the 480px main content maximum */
p {
	display: inline;
	clear:none;
	float: left; 
	margin: 0;
	padding: 0;
	border: 0;
	margin-bottom: 10px;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
	color: #000000; 
	background: #ffffff;
}
pre {
	display: inline;
	clear:none;
	float: left; 
	margin: 0;
	margin: 10px 0 10px 10px;
	border: 0;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	width: 460px;	/* to large and it doesnt fit in the maincontent column */
	background: #eeeeee;
	font-size : 11px; 
}
code {
	display: inline;
	clear:none;
	float: left; 
	margin: 0;
	padding: 0;
	border: 0;
	width: 460px;	/* to large and it doesnt fit in the maincontent column */
}
blockquote {
	display: inline;
	clear:none;
	float: left; 
	margin: 0;
	padding: 0;
	border: 0;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
}
.thrColFixHdr #container { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header { 
	background: #ffffff; 
	padding: 0 10px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	
	background: #000000; 
	background-image : url(../img/logo/thbbgfull.jpg);
	background-repeat : no-repeat;
	height: 103px;
	width: 970px;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar1 p{
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
.thrColFixHdr #sidebar2 p{
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}

.thrColFixHdr #mainContent { 
	margin: 0 230px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.thrColFixHdr #mainContent ul { 
	float: left;
}
.thrColFixHdr #mainContent object { 
	float: left;
}
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #ffffff;
	background: #000000;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/* all our headlines */
h1 {
	display: inline;
	float: left;
	text-align: center;
	font-family : Arial;
	font-size : 20px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
	border: 0;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
	margin-top: 0px;
	margin-bottom: 20px;
}
h2 {
	display: inline;
	float: left;
	font-family : Arial;
	font-size : 16px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
	border: 0;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
	margin-top: 20px;
	margin-bottom: 10px;
}

/* all our anchors have this color */
a
{color:#c00030; font-weight:bold; text-decoration:none;}
a:hover
{color:#ff0000; text-decoration:underline;}


/* website header and footer */
.header
{
	float: left; 
	margin: 0;
	padding: 0;
	border: 0;
	width: 990px;
}

.thrColFixHdr #header img
{
	float: left; 
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
}
.thrColFixHdr #footer
{
	padding: 10px 30px 30px 30px;
	text-align: center;
	font-family: Arial;
	font-size: 10px;
	width: 920px;	/* to large and it doesnt fit in the maincontent column */
	background: #000000;
	color: #ffffff;
}
.thrColFixHdr #footer p
{
	text-align: center;
	font-family: Arial;
	font-size: 12px;
	width: 920px;	/* to large and it doesnt fit in the maincontent column */
}

/* Each page has a headerline and a nice picture on the right side */
.headpic
{
	background: #000000; 
	background-image : url(../img/logo/thbbg.jpg);
	background-repeat : no-repeat;
	width: 480px;
	height: 50px;
	font-family : Arial;
	font-size : 20px;
	font-weight: bold;
	color : #ffffff;
	padding: 0;
	margin: 0;
	border: 2px #000000 solid;
	margin-top: 10px;
	margin-bottom: 10px;
}
.headpic img
{
	border: 0;
}
.headpicleft
{
	float: left;
	padding: 10px;
}
.headpicright
{
	float: right;
	padding: 0;
	margin: 0;
	border: 0;
}
.headpicright img
{
	padding: 0;
	margin: 0;
	border: 0;
}

/* general boxes to get 1 2 3 or 4 columns */
.block4 {
	float: left; /* since this element is floated, a width must be given */
	width: 480px; 	/* to large and it doesnt fit in the maincontent column */
	border: 1px #000000 solid;
}
.block3 {
	float: left; /* since this element is floated, a width must be given */
	width: 360px;
}
.block2 {
	float: left; /* since this element is floated, a width must be given */
	width: 240px;
}
.block1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px;
	border: 1px #000000 solid;
}

/* to separate the maincontent into 2 columns use a table with this class */
.tableblock2
{
	width: 480px;
	font-family : Arial;
	font-size : 10px;
	color : #000000;
}
.tableblock2 td
{
	border: 1px #000000 solid;
	width: 240px;
	font-family : Arial;
	font-size : 10px;
	padding: 0;
	margin: 0;
	vertical-align: top;
}
.tableblock2 td h3
{
	border: 1px #000000 solid;
	width: 240px;
	font-family : Arial;
	font-size : 12px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
}
.tableblock2 td a
{color:#000000; font-size: 12px; font-weight:bold; text-decoration:none;}
.tableblock2 td a:hover
{color:#c00030; text-decoration:underline;}

/* news box, each news entry has a header content footer category */
.newstitle
{
	text-align: center;
	border: 1px #000000 solid;
	font-family : Arial;
	font-size : 14px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
}
.newstitle a
{color:#ffffff; font-weight:bold; text-decoration:none;}
.newstitle a:hover
{color:#ffffff; text-decoration:underline;}
.newsfooter
{
	text-align: center;
	font-family : Arial;
	font-size : 12px;
	color : #000000; 
	padding-bottom: 30px;
	margin: 0;
}
.newsfooter a
{color:#000000; font-weight:bold; text-decoration:none;}
.newsfooter a:hover
{color:#c00030; text-decoration:underline;}
.newscontainer
{
	font-size : 12px;
	width: 460px;
	padding: 0;
	margin: 0;
}
.newscont
{
	float: left;
	width: 350px;
}
.newscont p
{
	float: left;
	width: 350px; 
}
.newscat { float: right; }
.newscat img { border: 1px #c00030 solid; }



/* tutorial box, each tutorial entry has a header content footer category */
.tuttitle
{
	text-align: center;
	border: 1px #000000 solid;
	font-family : Arial;
	font-size : 14px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
}
.tuttitle a
{color:#ffffff; font-weight:bold; text-decoration:none;}
.tuttitle a:hover
{color:#ffffff; text-decoration:underline;}
.tutfooter
{
	text-align: center;
	font-family : Arial;
	font-size : 12px;
	color : #000000; 
	padding-bottom: 30px;
	margin: 0;
}
.tutfooter a
{color:#000000; font-weight:bold; text-decoration:none;}
.tutfooter a:hover
{color:#c00030; text-decoration:underline;}
.tutcontainer
{
	font-size : 12px;
	width: 460px;
	padding: 0;
	margin: 0;
}
.tutcont
{
	float: left;
	width: 350px;
}
.tutcont p
{
	float: left;
	width: 350px; 
}
.tutcat { float: right; }
.tutcat img { border: 1px #c00030 solid; }


/* pressrelease box, each pressrelease entry has a header content footer category */
.presstitle
{
	text-align: center;
	border: 1px #000000 solid;
	font-family : Arial;
	font-size : 14px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
}
.presstitle a
{color:#ffffff; font-weight:bold; text-decoration:none;}
.presstitle a:hover
{color:#ffffff; text-decoration:underline;}
.pressfooter
{
	text-align: center;
	font-family : Arial;
	font-size : 12px;
	color : #000000; 
	padding-bottom: 30px;
	margin: 0;
}
.pressfooter a
{color:#000000; font-weight:bold; text-decoration:none;}
.pressfooter a:hover
{color:#c00030; text-decoration:underline;}
.presscontainer
{
	font-size : 12px;
	width: 460px;
	padding: 0;
	margin: 0;
}
.presscont
{
	float: left;
	width: 350px;
}
.presscont p
{
	float: left;
	width: 350px; 
}
.presscat { float: right; }
.presscat img { border: 1px #c00030 solid; }


/* each product has a product header  */
.productheadpic
{
	float: left;
	background-image : url(../img/logo/thbbg.jpg);
	background-repeat : no-repeat;
	width: 460px;
	height: 100px;
	padding: 0;
	margin: 0;
}
.productheadpic img
{
	border: 0;
	padding: 0;
	margin: 0;
}
.productindexcontent
{
	float: left;
	width: 460px;
	padding: 0;
	margin-bottom: 20px;
}

/* faqa page */
.faq
{
	width: 480px;
}
.faq h1
{
	margin-top: 0px;
	margin-bottom: 20px;
}
.faq h2
{
	margin-top: 20px;
	margin-bottom: 10px;
}
.faq p
{
	font-family : Arial;
	font-size : 12px;
}

/* linkpage separates linkitems using this distanceholder */
.linkitem
{
	width: 480px;
	margin-bottom: 10px;
	display: inline;
	float: left;
}
.linkitem a
{
	display: inline;
	float: left;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
}

/* downloadpage */
.downloadtable
{
}

.downloadtable th
{
	text-align: center;
	border: 0;
	font-family : Arial;
	font-size : 16px;
	color : #ffffff;
	background: #000000;
	padding: 0;
	margin: 0;
	width: 150px;
}

.downloadtable td
{
	padding: 0;
	margin: 0;
	font-size : 11px;
}

.downloadtext h2
{
	padding: 0;
	margin: 0;
	color : #000000;
	background: #ffffff;
	font-size : 12px;
	width: 300px;
}

.downloadtext p
{
	width: 300px;
}

.downloadzip
{
	width: 150px;
}
.downloadzip p
{
	width: 150px;
}
.downloadzip img
{
	float: left;
}


/* info text blocks */

blockquote.warning, blockquote.error, blockquote.information, blockquote.important {

	display: inline;
	clear:none;
	float: left; 
	margin: 10px 0px 10px 10px;
	padding: 5px 0 0 50px;
	min-height: 40px;
	width: 410px;	/* to large and it doesnt fit in the maincontent column */
	
	border: 1px solid #dddddd;
	background-color: #f2e0e0;
	background-image: url(../img/textblock/quote.gif);
	background-repeat: no-repeat;
	background-position: 9px 5px;
}
blockquote.warning p, blockquote.error p, blockquote.information p, blockquote.important p {
	width: 410px;	/* to large and it doesnt fit in the maincontent column */
	background-color: #f2e0e0;
}

blockquote.warning {
  background-image: url(../img/textblock/warning.png);
}

blockquote.warning:before {
  content: 'Caution';
}

blockquote.error {
  background-image: url(../img/textblock/error.png);
}

blockquote.error:before {
  content: 'Warning';
}

blockquote.information {
  background-image: url(../img/textblock/information.png);
}

blockquote.information:before {
  content: 'Information';
}

blockquote.important {
  background-image: url(../img/textblock/important.png);
}

blockquote.important:before {
  content: 'Important';
}

blockquote pre {
  border: none;
}


/* the box to attract visitors to download things */
.getitnow
{
	padding: 0;
	margin: 0;
	border: 0;
	background-color: #ffffff;
	width: 180px;
	height: 100px;
}
.getitnow img
{
	padding: 0;
	margin: 0;
	border: 0;
	width: 180px;
}

/* rss feed button plus link */
.rssfeed
{
	padding: 0;
	margin: 0;
	border: 0;
	background-color: #ffffff;
	width: 180px;
	height: 100px;
}
.rssfeed img
{
	padding: 0;
	margin: 5;
	border: 0;
	width: 20px;
}

.rssfeedfooter
{
	padding: 0;
	margin: 0;
	border: 0;
	background-color: #000000;
	width: 920px;
	height: 40px;
	text-align: left;
}
.rssfeedfooter img
{
	padding: 0;
	margin: 5;
	border: 0;
	width: 20px;
}

/* comparing versions */
.comparisontable
{
	border: 2px solid #000000;
	background: #ffffff;
	display: inline;
	float: left;
	width: 480px;	/* to large and it doesnt fit in the maincontent column */
}
.comparisontable th
{
	background: #000000;
	color: #ffffff;
	font-size : 14px;
	text-align: center;
	border-bottom: 1px solid #000000;
}
.comparisontable td
{
	font-size : 12px;
	text-align: center;
	border-bottom: 1px solid #000000;
}
.comparisontable td img
{
	border: 0;
}

/* pictures placed within the content text */
.articlethumbnail
{
	font-size : 9px;
	text-align: center;
	border: 1px solid #ff0000;
	background-color: #f2e0e0;
	float: right; 
	width: 150px;
	padding: 2px;
}
.articlethumbnail img
{
	padding: 0;
	margin: 0;
	border: 0;
}
.articlethumbnail p
{
	padding: 0;
	margin: 0;
	border: 0;
	width: 150px;
	background-color: #f2e0e0;
}

/* list of keyword tags in the footer */
.tags
{
	text-align: center;
	font-family : Arial;
	font-size : 10px;
	color : #ffffff;
	background: #000000; 
	padding: 0;
	margin: 0;
	border: 0;
	width: 920px;	/* to large and it doesnt fit in the maincontent column */
	margin-top: 20px;
	margin-bottom: 20px;
}
.tagstable
{
	border: 0;
	margin: auto auto;
}
.tagstable td
{
	font-family : Arial;
	font-size : 10px;
}


.tablefileformat
{
	border: 0px #000000 solid;
	width: 460px;
	padding: 0;
	margin: 0;
}
.tablefileformat td
{
	font-family : Arial;
	font-size : 12px;
	padding: 0;
	margin: 0;
	vertical-align: top;
}
