 
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: #333;
	background-color: #FFFFFF;
}
.thrColLiqHdr #container {
	width: 900px;
	margin: 0 auto;
	text-align: left;
	height: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #666666;
	border-bottom-color: #5E060B;
	border-left-color: #666666;
} 
.thrColLiqHdr #header {
	height: 100px;
	background-image: url(images/uplink/UPLINK-LOGO_03.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding: 0px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-border-left-color: #999;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	background-color: #FFF;
	margin-bottom: 5px;
	margin-top: 2px;

} 
.thrColLiqHdr #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 */
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#sidebar {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 158px;
	list-style-type: none;
	text-indent: 3;
	color: #333;
	background-color: #FFF;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: thin solid #800000;
	margin: 0px;
	padding: 0px;
	height: auto;
	text-align: left;
}

.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 160px;
	list-style-type: none;
	color: #333;
	background-color: #FFF;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: thin none #800000;
	margin-top: 8px;
	padding: 0px;
}
.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 160px; /* top and bottom padding create visual space within this div */
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	list-style-type: none;
	line-height: 15px;
	list-style-position: inside;
	background-color: #FFF;
	height: 700px;
	margin-right: 3px;
	margin-left: 10px;
	margin-top: 2px;
}
.sidebar2a {
	float: none; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 158px; /* top and bottom padding create visual space within this div */
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	list-style-type: none;
	line-height: 15px;
	list-style-position: inside;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border: thin solid #800000;
}
.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	background-color: #CCC;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.thrColLiqHdr #mainContent {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	height: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 540px;
	border: thin solid #5E060B;
	padding: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

}

.thrColLiqHdr #mainContent1 {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: 0px;
	height: 355px;
	font-size: 14px;
	font-weight: bold;
	color: #5E060B;
	font-family: Arial, Helvetica, sans-serif;
	width: 725px;
	border: thin solid #5E060B;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	background-color: #5E060B;
}

.thrColLiqHdr #mainContent2 {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10;
	margin-left: auto;
	height: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 550px;
	border: thin solid #5E060B;
	padding: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;

}
.thrColLiqHdr #mainContent3 {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: 0px;
	height: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 715px;
	border: thin solid #5E060B;
	padding: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.thrColLiqHdr #mainContent4 {
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: 0px;
	height: auto;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	width: 715px;
	border: thin solid #5E060B;
	padding: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.thrColLiqHdr #footer {
	margin-right: 0%;
	margin-left: 0%;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 25px;
	height: 50px;
	width: 900px;
	margin-bottom: 0%;
	padding-left: 0px;
	margin-top: 40px;
	color: #CCC;
	background-color: #E8E8E8;
	font-size: 14px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
} 
#footersub2 {
	width: auto;
	/*background: #fff;
	border: solid 1px #ccc;*/
	padding: 2px;
	border: thin none #0000CC;
	height: 15px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: Arial;
	font-size: 12px;
	font-weight: normal;
	color: #666666;
	text-align: center;
}
#footersub3 {
	width: auto;
	/*background: #fff;
	border: solid 1px #ccc;*/
	padding: 3px;
	border: thin none #0000CC;
	height: 15px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: Arial;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	text-align: center;
}
#footersub4 {
	width: auto;
	/*background: #fff;
	border: solid 1px #ccc;*/
	padding: 1px;
	border: thin none #0000CC;
	height: 15px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: Arial;
	font-size: 10px;
	font-weight: normal;
	color: #999999;
	text-align: center;
}

.thrColLiqHdr #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 */
}

/* Miscellaneous classes for reuse */
.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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#sidebarleft{
	font-size: 12px;
	color: #000;
	height: 400px;
	width: 150px;
	float: left;
}
#sidebarright{
	font-size: 12px;
	color: #000;
	height: 400px;
	width: 150px;
	float: right;
}
#middlecontent{
	font-size: 12px;
	color: #000;
	position: relative;
	height: 200px;
	width: 200px;
}
/*mainpage font*/
.renovate {
	}
#style0 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #8D1A1A;
	text-align: left;
	text-indent: 18px;
}
#style1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	text-indent: 20px;
	text-align: left;
	list-style-type: none;
}
#style1 a{
	color: #000000;
	text-decoration: none;
}
#style1 a:hover{
	color: #770000;
}
#styleYM1 {
	padding-right: 0px;
	margin-top: 2px;
	margin-bottom: 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	padding-top: 4px;
	padding-left: 0px;
	padding-bottom: 4px;
	line-height: 30px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}
#styleYM2 {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 1px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #5E060B;
	font-weight: bold;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}
#styleYM3a {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 80px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}
#styleYM3b {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 16px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}

#styleYM3c {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 16px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}

#styleYM3d {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 32px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}
#styleYM3e {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 48px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}

#styleYM3f {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	padding-top: 4px;
	padding-bottom: 4px;
	height: 117px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5B060B;
	border-right-color: #5B060B;
	border-bottom-color: #5B060B;
	border-left-color: #5B060B;
}
#ymLeft {
	float: left;
	width: 70px;
	display: block;
	height: 16px;
}
#ymRight {
	display: block;
	float: right;
	width: 70px;
	height: 16px;
	padding-right: 10px;
}
#jedYM {
	padding-right: 10px;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #FFF;
	
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
	
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000;
	line-height: 20px;
	
}
h4 {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #333;
	font-weight: bold;
	
}
h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
	line-height: 10px;
	font-style: normal;
	vertical-align: bottom;
	font-weight: normal;
	
}
h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	
}
p {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	color: #333;
	font-weight: normal;
	font-style: normal;
	text-align: justify;
}
#sytlesidebar1a {
	padding-right: 0px;
	margin-top: 2px;
	margin-bottom: 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	padding-top: 2px;
	padding-left: 7px;
	line-height: 30px;
	padding-bottom: 2px;
	border: thin none #5E060B;
}
#stylesidebar1b {
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 1px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #5E060B;
	font-weight: bold;
	height: 20px;
	line-height: 20px;
	text-indent: 8px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}
#stylesidebar1c{
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	text-indent: 8px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}
#stylesidebar1d{
	padding-right: 0px;
	margin-top: 1px;
	margin-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	text-indent: 8px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}

a img {
	border: none;}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #5E060B;
	text-decoration: underline;
}
#movieclip {
	height: 150px;
	width: auto;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-right: 1%;
	padding-left: 1%;

}
#newsheading {
	margin-top: 5px;
	color: #5E060B;
	text-decoration: blink;
}
#newstitle {
	font-size: 18px;
	color: #000;
}
#newscontent {}
#d800 {
	height: auto;
	width: auto;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
}
/* panda product only */
#producttitle {
	font-size: 24px;
	color: #000;
	font-weight: bold;
	margin-top: 20px;
}
#productsubtitle {
	font-size: 12px;
	color: #000;
}
#productcontent {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	list-style-type: none;
}
#productimage {
	font-size: 12px;
	color: #000;
	padding-left: 10px;
}
#productimage2 {
	font-size: 12px;
	color: #000;
	padding-left: 20px;
	width: 200px;
	float: right;
}
#pandaproducttitle {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	font-weight: bolder;
	margin-top: 40px;
	color: #006;
}
#pandaproducttitle2 {
	font-weight: bold;
	margin-bottom: 10px;
	padding-top: 30px;
	color: #000;
}
#PANDAprductimage {
	padding-top: 20px;
}
#PANDAprducttitle1 {
	font-weight: normal;
}
#PANDAprducttitle2 {
	color: #F60;
	font-weight: normal;
}
#PANDAprducttitle3 {}
#PANDAprductdetail {
	list-style-type: none;
}

#pandaright {
	height: 120px;
	display: block;
	width: 250px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
	padding-left: 30px;
	padding-top: 6px;
	color: #333;
	padding-bottom: 10px;
}
#pandaName2011 {
	width: 130px;
	height: 30px;
	margin-left: 100px;
	text-align: center;
	margin-top: 70px;
}

#pandaleft {
	height: 120px;
	display: block;
	width: 250px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 14px;
	text-align: left;
	padding-left: 25px;
	padding-top: 6px;
	color: #000;
	padding-bottom: 10px;
}
#pandaCloudProtect {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 24px;
	font-weight: bolder;
	color: #03F;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
#pandaCloudLabel {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin-top: 100px;
	height: 30px;
}


#pandadownloadright {
	height: 30px;
	display: block;
	width: 240px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
	padding-left: 15px;
	padding-top: 20px;
	color: #333;
	padding-bottom: 30px;
	text-align: left;
}
#pandadownloadleft {
	height: 30px;
	display: block;
	width: 230px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
	text-align: center;
	padding-left: 25px;
	padding-top: 20px;
	color: #000;
	padding-bottom: 30px;
}
#pandapromo {
	background-image: url(images/pandasecurity/pandapromo.png);
	background-repeat: no-repeat;
	height: 40px;
	margin-top: 5px;
	margin-bottom: 10px;
}
#pandaCloudAV {
	padding-right: 20%;
	padding-left: 20%;
}
#pandaDownloadButton {
	padding-right: 25%;
	padding-left: 25%;
}
#panda3MonthsTrial {
	display: inline;
	float: none;
	height: 0px;
	margin-left: 1%;
	margin-right: 0px;
	text-align: center;

}
#pandaUpgrade {
	display: inline;
	float: left;
	height: 360px;
	width: 200px;
	margin-left: 4%;
	border: thin solid #5E060B;
	margin-right: 0px;

}
#download2012 {
	margin-bottom: 1px;
	margin-top: 5px;
}
#howtoupgrade {
	color: #903;
	margin-top: 50px;
	font-size: 14px;
	text-align: left;
	padding-right: 10px;
	padding-left: 20px;

	
}
#howtoupgradeSteps {
	color: #006;
	font-size: 12px;
	
}

#pandaFreedownload {
	margin-top: 15px;
	margin-bottom: 30px;
	font-family: Tahoma, Geneva, sans-serif;
	color: #003;
	font-weight: normal;
	text-decoration: underline;
}
#panda3MonthsTrial_reseller {

	}
#panda2010AV {
	padding-right: 10%;
	padding-left: 10%;
}
#pandaAV10left {
	height: 500px;
	display: block;
	width: 350px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
}
#panda2010IS {
	padding-right: 10%;
	padding-left: 10%;
}
#mainContentHead_flashMovie {
	margin-top: 5px;
}
#mainContent1 {
	padding-right: 5%;
	padding-left: 5%;
	color: #000;
}
#mainContent2 {
	font-family: Verdana, Geneva, sans-serif;
	height: 700px;
	border: thin solid #5E060B;
	margin-top: 6px;
	width: 733px;
	text-align: center;
	padding-top: 15px;
}
#mainContent2sub {
	border: thin solid #5E060B;
	float: left;
	width: 725px;
	
}

#mainContent3 {
	padding-right: 20%;
	padding-left: 20%;
	text-align: center;
	margin-top: 20px;
}

#mainContent4 {
	font-family: Verdana, Geneva, sans-serif;
	height: 740px;
	border: thin solid #5E060B;
	margin-top: 6px;
	width: 733px;
	text-align: center;
	padding-top: 15px;
}
#mainContent4sub1 {
	width: 600px;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
#mainContent4sub2 {}
#mainContent4sub3 {}
#maincontentDiv {
	height: 400px;
	margin-top: 5px;
	margin-bottom: 5px;
}
#maincontentDivleft {
	display: block;
	float: none;
	height: 168px;
	width: 567px;
	margin-top: 5px;
	margin-bottom: 2px;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333;
	text-align: justify;
	border: thin solid #999;
}
#maincontentDivright {
	display: inline;
	float: left;
	height: 150px;
	width: 567px;
	margin-top: 2px;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	text-align: justify;
	font-style: normal;
	font-weight: normal;
	border: thin solid #999;
}
#maincontentImagebox1 {
	float: right;
	height: 95px;
	width: 71px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #00C;
	text-align: center;
	margin-right: 5px;
	border: thin solid #999;
	margin-top: 100px;
}
#maincontentImagebox2 {
	float: right;
	height: 95px;
	width: 71px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-align: center;
	margin-left: 5px;
	border: thin solid #999;
}
#maincontentImagebox3 {
	border: thin solid #CCC;
}
#maincontentImagebox4 {
	border: thin solid #999;
}
#maincontentImagebox5 {
	border: thin solid #999;
	margin-right: auto;
	margin-left: auto;
}

#maincontentImgBoldText {
	color: #006;
	font-size: 24px;
	height: 30px;
	line-height: 30px;
	width: 565px;
	background-image: url(images/news_4.jpg);
	background-repeat: no-repeat;
	background-position: 490px;
	padding: 1px;
	text-indent: 15px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #999;
	border-left-color: #666;
}
#maincontentImgBoldText1 {
	color: #000;
	font-size: 15px;
	height: 20px;
	line-height: 16px;
	width: 563px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	display: block;
	border-bottom-color: #999;
	text-indent: 10px;
}
#maincontentText {
	text-align: justify;
	width: 550px;
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 0px;
	border: thin none #999;
}
#maincontentText1 {
	text-align: justify;
	width: 556px;
	height: 105px;
	border: thin none #999;
	display: block;
	padding: 5px;
}

/* about us only */
#aboutuscontent {
	margin-top: 3px;
	margin-right: 80px;
	margin-left: 0%;
	margin-right: 0%;
	padding-top: 50px;
	padding-right: 50px;
	padding-left: 50px;
	border: thin solid #5E060B;
	padding-bottom: 50px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	background-color: #FFF;

	}
#aboutstitle {
	font-size: 18px;
	color: #000;
	font-family: "Arial Black", Gadget, sans-serif;
}
/* canon product only */
#canonimage {
	margin-top: 30px;
	margin-bottom: 30px;
}
#canontitle {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}
#canoncontent {
	padding-left: 150px;
	margin: 5px;
}
#canoncontent a {
	font-size: 16px;
	font-weight: bold;
	color: #000;
}
#canoncontent a:hover{
	color: #5E060B;
	text-decoration: underline;
}
.case1 {
	height: 800px;
	width: auto;
}
.case2 {
	height: auto;
	display: block;
	width: 210px;
	visibility: visible;
	position: relative;
	margin: 0px;
	float: left;
	padding-left: 40px;
}
.case3 {
	height: auto;
	display: block;
	width: 220px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: right;
	padding-left: 40px;
}
#case23a {
	height: auto;
	display: block;
	width: 110px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: right;
	padding-left: 20px;
	padding-top: 30px;
	font-size: 14px;
}

#canonthumbnail {
	height: 70px;
	margin-top: 0px;
}
#canonthumbnailtitle {
	height: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
	margin-bottom: 0px;
}
/* dlink product only */
#dlinktitle {
	font-weight: bold;
	color: #000;
	margin-top: 5px;
	margin-bottom: 5px;
}
#dlinkcontent {
	padding: 0px;
	margin: 10px;
	text-align: center;
}
#dlinkcontent a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000;
}
#dlinkcontent a:hover {
	color: #5E060B;
	text-decoration: underline;
}
#dlinkimage {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
#dlinkimage2 {}
#sample1 {
	height: 100px;
	width: auto;
}
#sample2 {
	height: 100px;
	display: block;
	width: 245px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: right;
	padding-left: 15px;
}
#sample3 {
	height: 100px;
	display: block;
	width: 245px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: left;
	padding-left: 15px;
}
#sample2a {
	height: 90px;
	display: block;
	width: 130px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: right;
}
#dlinkproducttitle {
	font-weight:bold
	color:#CA6500;
	font-size:12px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	color: #C30;
}
#dlinkproductcontent {

	color:#000
	font-size:10px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000;
	font-size: 11px;
}
#emailtitle {
	margin-top:60px;
	font-size: 16px;
	color: #5E060B;
	font-family: "Arial Black", Gadget, sans-serif;
	}
#emailsent {
	margin-top: 200px;
	text-align: center;
	font-weight: normal;

}
#DILNKprductimage {
	padding-top: 20px;
}
#DILNKprducttitle1 {
	font-weight: normal;
}
#DILNKprducttitle2 {
	color: #F60;
	font-weight: normal;
}
#DILNKprducttitle3 {
	text-indent: 100px;
}
#DILNKprductdetail {}


/* fingertec product only */
#fingertecimage {
	margin-top: 30px;
	margin-bottom: 20px;

}
#fingertectitle {
	font-weight: bold;
	color: #000;

}
#fingerteccontent {
	padding-left: 160px;
	margin-top: 10px;
	margin-bottom: 10px;

}
#fingersideright {
	height: 10px;
	display: block;
	width: 250px;
	visibility: inherit;
	position: relative;
	float: right;
	margin-top: 40px;
	font-weight: bold;
}
#fingersideleft {
	height: 10px;
	display: block;
	width: 240px;
	visibility: inherit;
	position: relative;
	float: left;
	margin-top: 40px;
	font-weight: bold;
}


#fingertecproductimage {
	height: 75px;
	width: auto;
	margin-top: 20px;
	padding-left: 40px;
}
#fingertecproductright {
	height: 60px;
	display: block;
	width: 350px;
	visibility: inherit;
	position: relative;
	float: right;
	font-family: Arial, Gadget, sans-serif;
	font-size: 12px;
	font-weight: bold;
}
#fingertecmodel {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;
}

/* force10 product only */
#force10sideright {
	height: 25px;
	display: block;
	width: 250px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 5px;
	font-size: 14px;
	margin-bottom: 5px;
}
#force10sideleft {
	height: 25px;
	display: block;
	width: 220px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	font-size: 14px;
	padding-left: 30px;
	text-align: right;
}
#force10title {}
#force10content {}
#force10link {}
#force10image {
	margin-top: 30px;
	margin-bottom: 20px;
}
#force10productimage {
	height: 200px;
	display: block;
	width: auto;
	visibility: inherit;
	position: relative;
	float: left;
	margin-top: 10px;
	margin-bottom: 10px;
}
#force10productdetail {
	height: 20px;
	display: block;
	width: 120px;
	visibility: inherit;
	position: relative;
	margin: 0px;
	float: right;
	padding-top: 70px;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	padding-left: 5px;
}

/* contacts only */

#contacttitle {
	margin-top: 100px;
	margin-bottom: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #5E060B;
	width: 400px;
	margin-right: auto;
	margin-left: auto;

}
#contactsupport {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #333;
	margin-top: 80px;
	margin-bottom: 30px;
	width: 490px;
	margin-right: auto;
	margin-left: auto;
	font-weight: normal;
	text-align: justify;
}
#contactright {
	height: 20px;
	display: block;
	width: 330px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
}
#contactleft {
	height: 20px;
	display: block;
	width: 160px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 14px;
	text-align: right;
}
#contactmap {
	margin: 10px;
	height: auto;
	width: auto;
}

/* sales team only */
#salesright {
	height: 50px;
	display: block;
	width: 350px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
}
#salesleft {
	height: 50px;
	display: block;
	width: 140px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 14px;
	text-align: left;
	padding-left: 20px;
}
#salestitle {
	height: auto;
	width: 400px;
	position: relative;
	float: left;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
}

/* sitemap only */
#sitemapright {
	height: 24px;
	display: block;
	width: 180px;
	visibility: inherit;
	position: relative;
	float: right;
	font-weight: normal;
	margin-top: 10px;
	font-size: 14px;
	padding-left: 70px;
	padding-top: 6px;
	color: #333;
}
#sitemapleft {
	height: 24px;
	display: block;
	width: 250px;
	visibility: inherit;
	position: relative;
	float: left;
	font-weight: normal;
	margin-top: 10px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 14px;
	text-align: center;
	padding-top: 6px;
	color: #000;
}
#sitemaptitle {
	height: auto;
	width: 400px;
	position: relative;
	float: left;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	
}
.colorleft {
	background-color:#DFDFDF
}
.colorright {
	background-color:#E9E9E9
}
#locationAddress {
	text-align: center;
	margin: 20px;
	font-size: 12px;
}

#uisiDownload {
	width: 340px;
	margin-right: auto;
	margin-left: auto;
	text-indent: 100px;
	font-family: Verdana, Geneva, sans-serif;
	color: #333;
	}
#uisiDownloadTItle {
	width: 550px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	font-size: 18px;
	color: #006;
	font-weight: bolder;
	margin-top: 40px;
}
#productLogo {
	width: 730px;
	height: 602px;
	margin-top: 10px;
	border: thin solid #5E060B;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}


#downloadUISIftpsite {
	}
#clockHead {
	height: 30px;
	margin-top: 60px;
	}
#downloadAV {
	margin-bottom: 5px;
}

#productDlink {
	float: left;
	height: 230px;
	width: 725px;
	color: #5E060B;
	background-image: url(newImages2012/dlink-banner.jpg);
	background-repeat: no-repeat;
	background-position: 355px 45px;
	margin-left: 0px;
	
}
#productFingertec {
	float: left;
	height: 250px;
	width: 725px;
	margin-left: 0px;
	background-image: none;
	margin-right: 0px;
	color: #5E060B;
	margin-top: 10px;
}
#prodName {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border: thin solid #5E060B;
	text-align: center;
	height: 39px;
	padding-top: 5px;
	width: auto;
	}
#prodDetail {
	height: 170px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: left;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #5E060B;
	border-right-color: #5E060B;
	border-bottom-color: #5E060B;
	border-left-color: #5E060B;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: normal;
	padding-top: 0px;
	width: auto;
	padding-bottom: 0px;
	padding-left: 2px;

	}
#prodDetail ul {
	text-align: left;
	margin-left: -10px;
	}
#prodArticle {
	width: 730px;
	height: 250px;
	margin-left: 1px;
	margin-top: 15px;
}
#pandaArticle {
	height: 200px;
	background-color: #F4F4F4;
	width: 695px;
	}
header, section, footer, aside, nav, article, figure {
	display: block;
}

#iframedge {
	margin-left: -40px;
}
#apDiv1 {
	text-align: left;
}
#apDiv2 {
	text-align: left;
}

