@charset "utf-8";
/* v1.0 | 20080212 */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing:0;
}
table tr td {
    border-spacing:0px;
    border:1px solid gray;
    text-align:center;
}
html {
	height:100%;
}
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;
	
	color: #000000;
/*	background: #f5f5f5 url(images/bg-main.png) no-repeat left bottom fixed;*/
	height:100%;
}
#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 0;  /* 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:url(images/bg-header.png) repeat-x top center; */
	background: #FFF;
/*	height:130px; changed on 6/27/18 for new logo*/
	height:206px;
	vertical-align:middle;
	}
#header h1 {
	margin: 0 0 0 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: 16px 0 0 0; I changed this when updated to microchip logo from 16 to 0 but increased the size of the logo image in the page.tpl */ /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding: 0 0 0 0;  /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.fixedwidthWide {
	width:960px;
	margin:0 auto;
}
.topbar {
/*	width:500px;
	float:right;
	text-align:right;
	height:75px;  changed on 6/27/18 for new logo*/
	height:173px;
	text-align:left;
}

.topbar span {
	font: 80% calibri, Verdana, Arial, Helvetica, sans-serif;
	text-align:right;
	vertical-align: middle;
/*    display: block;
    margin-left: auto;
    margin-right: auto;*/
	 }
#subheader {
	width:960px;
	margin:5px auto 0 auto;
	padding:5px 0;
	clear:both;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}


.myform{
    margin:0 auto;
    padding:14px;
}

#mainContent h3 {
	padding:3px 3px;
	border:1px solid #cccccc;
	margin-bottom:0px;
	font-size:100%;
	font-weight:bold;
	background:#e1e1e1;
}

#mainContent h3 a.seeAll {
	font-size:88%;
	margin-top:3px;
	margin-left:8px;
    color:#CC3333;	
	text-decoration:underline;
}
.ie7 #mainContent h3 a.seeAll {
	font-size:88%;
	margin-top:-19px;
    margin-right:8px;
	margin-left:8px;
    color:#CC3333;
	text-decoration:underline;	
}
#mainContent th {
	padding:5px 5px 5px 5px;
	text-align:left;
	font-size:85%;	
}

#mainContent td {
	padding:5px 5px 5px 5px;
	border-top:1px solid #d4d4d4 !important;
	font-size:85%;		
}
#mainContent tr:first-child td {
	border-top:none !important;
}
#mainContent td a {
	font-weight:normal;
}
#mainContent .labelPrivate {
	padding:2px 7px;
	background:	#cca527;
	color:#FFFFFF;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	font-size:80%;
	margin-right:3px;

}
#mainContent .labelPublic {
	padding:2px 7px;
	background:#006633;
	color:#FFFFFF;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	font-size:80%;
	margin-right:3px;
}
#mainContent .labelShared {
	padding:2px 7px;
	background:#015da1;
	color:#FFFFFF;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	font-size:80%;
	margin-right:3px;
}
#mainContent .delete {
	color:#990000;
	text-align:right;
	padding:3px 2px 2px 20px;
	background:url(images/ic-delete.png) no-repeat 0px 3px;
	font-size:90%;
}
#mainContent .edit {
	color:#990000;
	text-align:right;
	padding:3px 2px 2px 20px;
	background:url(images/ic-delete.png) no-repeat 0px 3px;
	font-size:90%;
}
#mainContent .rename {
	color:#990000;
	text-align:right;
	padding:3px 2px 2px 20px;
	background:url(images/ic-delete.png) no-repeat 0px 3px;
	font-size:90%;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
#footer p {
	font: 90% calibri, Verdana, Arial, Helvetica, sans-serif;
	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 */
    text-align:center;
	}


a {
	color:#00599f;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
.containerBox {
	width:990px;
	margin:0 auto;
}
.containerBox .head {
	width:990px;
	background:url(images/bi-mainHead.png) no-repeat top center; 
	height:29px;
}
.containerBox .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.containerBox .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center; 
	padding:8px 35px;
	font-size:80%;
}
.ie7 .containerBox .bodycontainer {
	min-height:500px;
	height:auto !important;
	height:500px;
}

.containerBox .foot {
	width:990px;
/*	background:url(images/bi-mainFoot.png) no-repeat top center;*/
	background:url(images/bi-mainFoot.png) no-repeat bottom right;	
	height:29px;
}
.gecko .containerBox .foot, .webkit .containerBox .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat -1px 0px;
	height:29px;
}
.ie7 .containerBox .foot {
	margin-top:-1px; 
}

 /* 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, especially Chrome didn't work well when this wasn't at the end of the containerBox div */
.containerBox .clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.fixedwidth {
	width:480px;
	margin:0 auto;
}
/*
.fixedwidthWide {
	width:960px;
	margin:0 auto;
}
*/
fieldset {
	border:1px solid #ededed;
	padding:10px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-bottom:10px;
	clear:both;
	margin-left:-12px;
}

fieldset DIV{ margin-bottom:5px; clear: both;}

.rightColumn fieldset {
	background: #ffffff;
	border:1px solid #a2a2a2;
	padding:3px 3px 13px 13px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	margin-bottom:10px;
}
.rightColumn {
	width:0%;
	float:right;
}
.leftColumn {
	width:880px;
	float:left;
}


.PL671 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bi-mainBg.png) no-repeat center top;
	position:relative !important;
}


.diagramBoxNoImage {
	width:990px;
	height:840px;
	margin:0 auto;
	background-image: no-repeat center top; 
	position:relative !important;
}
.diagramBoxNoImage .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxNoImage .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxNoImage .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxNoImage .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxFlex2_XIN {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/FLEX2_diagramBoxXIN-XOUT.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxFlex2_XIN .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxFlex2_XIN .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxFlex2_XIN .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxFlex2_XIN .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxFlex2_REF {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/FLEX2_diagramBoxREFIN.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxFlex2_REF .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxFlex2_REF .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxFlex2_REF .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxFlex2_REF .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxSM806_XIN {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/SM806_diagramBoxXIN-XOUT.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxSM806_XIN .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxSM806_XIN .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxSM806_XIN .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxSM806_XIN .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxSM806_REF {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/SM806_diagramBoxREFIN.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxSM806_REF .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxSM806_REF .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxSM806_REF .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxSM806_REF .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxMX87 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/mx87.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxMX87 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxMX87 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxMX87 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxMX87 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxModules {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-modules.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxModules .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxModules .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxModules .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxModules .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxMXT85 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-mxt85.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxMXT85 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxMXT85 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxMXT85 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxMXT85 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxStratus {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-stratus.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxStratus .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxStratus .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxStratus .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxStratus .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

/* MXT57 */
.diagramBoxMXT57 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-mxt.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxMXT57 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxMXT57 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxMXT57 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxMXT57 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

/* PL903 */
.diagramBoxPL903 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-903.png) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL903 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxPL903 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxPL903 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxPL903 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxPL904 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-904.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL904 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxPL904 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxPL904 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxPL904 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxDSC2311 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-dsc2311.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxDSC2311 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxDSC2311 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxDSC2311 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxDSC2311 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxDSC400 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-dsc400.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxDSC400 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxDSC400 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxDSC400 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxDSC400 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxDSC612 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/DSC612_3.jpg) no-repeat center top;
	position:relative !important;
}
.diagramBoxDSC612 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxDSC612 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxDSC612 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxDSC612 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30244 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30244.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30244 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30244 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30244 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30244 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxZL30245 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30245.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30245 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30245 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30245 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30245 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30250 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30250.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30250 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30250 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30250 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30250 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxZL30251 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30251.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30251 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30251 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30251 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30251 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30252 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30252.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30252 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30252 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30252 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30252 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30253 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30253.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30253 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30253 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30253 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30253 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30255 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30255.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30255 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30255 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30255 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30255 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30151 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30151.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30151 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30151 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30151 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30151 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30169 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30169.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30169 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30169 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30169 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30169 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30182 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30182.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30182 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30182 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30182 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30182 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30622 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30622.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30622 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30622 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30622 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30622 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30623 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30623.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30623 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30623 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30623 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30623 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30721 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30721config12.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30721 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30721 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30721 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30721 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30722 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30722.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30722 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30722 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30722 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30722 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30723 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30723.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30723 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30723 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30723 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30723 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30261 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30261.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30261 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30261 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30261 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30261 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30263 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30263.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30263 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30263 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30263 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30263 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30265 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30265.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30265 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30265 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30265 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30265 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30267 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30267.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30267 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30267 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30267 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30267 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL40251 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL40251.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL40251 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL40251 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL40251 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL40251 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}





.diagramBoxZL40253 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL40253.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL40253 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL40253 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL40253 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL40253 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL40255 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL40255.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL40255 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL40255 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL40255 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL40255 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30161 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30161A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30161 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30161 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30161 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30161 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30162 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30162.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30162 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30162 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30162 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30162 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30163 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30163A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30163 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30163 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30163 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30163 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30164 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30164.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30164 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30164 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30164 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30164 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30165 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30165.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30165 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30165 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30165 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30165 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30166 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30166.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30166 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30166 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30166 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30166 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30167 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30167.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30167 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30167 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30167 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30167 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30361 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30361A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30361 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30361 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30361 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30361 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30362 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30362.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30362 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30362 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30362 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30362 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30363 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30363A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30363 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30363 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30363 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30363 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30364 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30364.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30364 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30364 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30364 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30364 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30365 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30365.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30365 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30365 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30365 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30365 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30174 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30174A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30174 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30174 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30174 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30174 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30601 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30601.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30601 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30601 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30601 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30601 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxZL30602 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30602.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30602 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30602 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30602 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30602 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30611 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30611A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30611 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30611 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30611 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30611 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30612 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30612A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30612 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30612 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30612 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30612 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30614 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30614A.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30614 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30614 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30614 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30614 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30701 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30701.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30701 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30701 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30701 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30701 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30702 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30702.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30702 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30702 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30702 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30702 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30703 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30703.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30703 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30703 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30703 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30703 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30704 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30704.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30704 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30704 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30704 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30704 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}





.diagramBoxZL3067x {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30671.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL3067x .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL3067x .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL3067x .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL3067x .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL3077x {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30771.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL3077x .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL3077x .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL3077x .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL3077x .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL3068x {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30681.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL3068x .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL3068x .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL3068x .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL3068x .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxZL30256 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30256.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30256 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30256 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30256 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30256 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30603 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30603.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30603 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30603 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30603 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30603 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxZL30604 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/ZL30604.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxZL30604 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxZL30604 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxZL30604 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxZL30604 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}




.diagramBoxPMIC {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-PMIC.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPMIC .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxPMIC .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxPMIC .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxPMIC .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxPL902 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL902BD.png) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL902 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxPL902 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxPL902 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxPL902 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxPL902PDB {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL902_PDB_OE_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL902PDB .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxPL902PDB .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxPL902PDB .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxPL902PDB .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBoxCSELPL902 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/CSELPL902BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxCSELPL902 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxCSELPL902 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxCSELPL902 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxCSELPL902 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBoxCSELPL902PDB {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/CSELPL902_PDB_OE_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxCSELPL902PDB .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBoxCSELPL902PDB .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBoxCSELPL902PDB .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBoxCSELPL902PDB .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}



.diagramBoxPL67101SOT {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL67101SOTPDB {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_PDB_BD.png) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL67101SOP {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_01SOP_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL67101SOPCSEL {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_01SOP_CSEL_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL67101SOPPDB {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_01SOP_PDB_BD.png) no-repeat center top;
	position:relative !important;
}
.diagramBoxPL67101SOPPDBCSEL {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/PL671_01SOP_PDB_CSEL_BD.png) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL61301 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/BD_PL613.jpg) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL61305 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/BD_PL613_05.jpg) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL61321 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/BD_PL613_21.jpg) no-repeat center top;
	position:relative !important;
}

.diagramBoxPL67101SOP .head, .diagramBoxPL67101SOPCSEL .head, .diagramBoxPL67101SOPPDBCSEL .head, .diagramBoxPL67101SOPPDB .head, .diagramBoxPL67101SOT .head, .diagramBoxPL67101SOTPDB .head, .diagramBoxPL61301 .head, .diagramBoxPL61305 .head , .diagramBoxPL61321 .head {
	width:990px;
	height:29px;
	clear:both;
}

.diagramBox {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram.png) no-repeat center top;
	position:relative !important;
}
.diagramBox .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBox-1 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-1.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-1 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-1 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-1 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-1 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBox-2 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-2.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-2 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-2 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-2 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-2 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBox-3 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-3.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-3 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-3 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-3 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-3 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.diagramBox-4 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-4.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-4 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-4 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-4 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-4 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBox-5 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-5.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-5 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-5 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-5 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-5 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}

.diagramBox-6 {
	width:990px;
	height:840px;
	margin:0 auto;
	background:url(images/bg-diagram-6.png) no-repeat center top;
	position:relative !important;
}
.diagramBox-6 .head {
	width:990px;
	height:29px;
	clear:both;
}
.diagramBox-6 .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.diagramBox-6 .bodycontainer {
	background:url(images/bi-mainBg.png) repeat-y top center;
	padding:8px 35px;
	font-size:80%;
}
.diagramBox-6 .foot {
	width:990px;
	background:url(images/bi-mainFoot.png) no-repeat top center;
	height:29px;
}


.buttonContainerLeft {
	width:450px;
	float:left;
	margin:21px;
    border:0px solid white;
}
.buttonContainerLeftWide {
	width:620px;
	float:left;
	margin:21px;
    border:0px solid white;
	font-size:70%;	
}
.buttonContainerRight {
	width:330px;
	float:right;
	margin:21px;
	text-align:right;
}
.buttonContainerRightNarrow {
	width:280px;
	float:right;
	margin:21px;
	text-align:right;
    border:0px solid red;
}
.spursContainer {
	margin: 750px 0 0 420px;/*top right bottom left*/
}


.navigation ul li {
	width:136px;
	float:left;
	margin:0 1px 0 0;
	text-align:center;
}
.navigation ul li a {
	font: 100% calibri, Verdana, Arial, Helvetica, sans-serif;
	background:url(images/Black_Menu_Item_141.4x32p.png) no-repeat left top;
	font-weight:bold;
	padding:10px;
	display:block;
	color:#fff;
	height:24px;
}

.navigation ul li .active {
	color:#F00;
}

/*added*/
.navigation ul li ul {
	position: absolute;
	width: 115px;
	height: 30px;
	left: -999em;
}
.navigation ul li:hover ul {
	left: auto;
}

.navigation ul li ul li a {
	font: 100% calibri, Verdana, Arial, Helvetica, sans-serif;
	background:url(images/Black_Menu_Item_141.4x32p_2_red_lines.png) no-repeat left top;
	font-weight:bold;
	width: 115px;
	height:28px;
/*	padding-top:10px; */
	padding-top:10px;	
	display:block;
	position:relative !important;
	z-index: 1;
}

.navigation ul li ul li ul {
	margin: -3em 0 0 8.5em;
}

.navigation ul li:hover ul ul, .navigation ul li.sfhover ul ul {
	left: -999em;
}

/*
.navigation ul li:hover ul, .navigation ul li li:hover ul, .navigation ul li.sfhover ul, .navigation ul li li.sfhover ul {
	left: auto;
}

.navigation ul li:hover ul, .navigation ul li li:hover ul, .navigation ul li.sfhover ul, .navigation ul li li.sfhover ul, .navigation ul li li.sfhover ul li li.sfhover, .navigation ul li li.sfhover ul li li.sfhover ul li li.sfhover {
	left: auto;
}


.navigation ul li li:hover ul, .navigation ul li li.sfhover ul, 
.navigation ul li ul li ul li li:hover ul, .navigation ul li ul li ul li li.sfhover ul {
	left: auto;
}

.navigation ul li ul li:hover ul, .navigation ul li ul li.sfhover ul, 
.navigation ul li ul li ul li ul li:hover ul , .navigation ul li ul li ul li ul li.sfhover ul {
	left: auto;
}
*/
.navigation ul li ul li:hover ul, .navigation ul li ul li.sfhover ul {
	left: auto;
}



.GSS_navigation {
	width:700px;
	height:33px;
	margin: -25px 0 0 260px;/*top right bottom left*/
}
.GSS_navigation li {
	float:left;
	width:87px;
	height:33px;
	margin:0 1px 0 0;
	text-align:center;
}
.GSS_navigation li a {
	width:87px;
	height:33px;
	background:url(images/nb-med-OFF-GSS.png) no-repeat left top;
	font-size:70%;
	font-weight:bold;
	padding-top:10px;
	display:block;
}
.GSS_navigation li .active {
	background:url(images/nb-med-ON-GSS.png) no-repeat left top;
	color:#fff;
}
.GSS_navigation li.wide {
	float:left;
	width:143px;
	height:33px;
	margin:0 1px 0 0;
	text-align:center;
}
.GSS_navigation li.wide a {
	width:143px;
	height:33px;
	background:url(images/nb-large-OFF-GSS.png) no-repeat left top;
	font-size:80%;
	font-weight:bold;
	padding-top:7px;
	display:block;
}
.GSS_navigation li.wide .active {
	background:url(images/nb-large-ON-GSS.png) no-repeat left top;
}

.GSS_navigation li ul {
	position: absolute;
	width: 87px;
	left: -999em;
}
.GSS_navigation li:hover ul {
	left: auto;
}

.GSS_navigation li ul li a {
	width:87px;
	height:33px;
	background:url(images/nb-med-OFF-GSS.png) no-repeat left top;
	font-size:60%;
	font-weight:bold;
/*	padding-top:10px; */
	padding-top:5px;	
	display:block;
	position:relative !important;
	z-index: 1;
}

.GSS_navigation li ul ul {
	margin: -3em 0 0 5.5em;
}

.GSS_navigation li:hover ul ul, .GSS_navigation li.sfhover ul ul {
	left: -999em;
}

.GSS_navigation li:hover ul, .GSS_navigation li li:hover ul, .GSS_navigation li.sfhover ul, .GSS_navigation li li.sfhover ul {
	left: auto;
}


.diagramMPS24PQ {
	text-align:left;
}
.diagramMPS24PQ input {
	border:none;
	background:transparent;
	position:absolute;
	font-size:70%;
	text-align:center;
	z-index:10;
}
.diagramMPS24PQ .clock_new_name {
	top:79px;
	left:267px;
	width:175px;
    border:0px solid red;
    z-index:6;
}
.diagramMPS24PQ .refInput {
    border:0px solid black;
	top:179px;
	left:154px;
	width:100px;
}
.diagramMPS24PQ .refOscilliator {
	top:291px;
	left:154px;
	width:100px;
}
.diagramMPS24PQ .refInputDisplay {
	top:307px;
	left:360px;
	width:70px;
}
.diagramMPS24PQ .refInputDisplay2 {
	top:547px;
	left:360px;
	width:70px;
}
.diagramMPS24PQ .refInputSelectionDisplay {
	top:397px;
	left:310px;
	width:70px;
	position:absolute;
	font-size:70%;
	text-align:center;
}
.diagramMPS24PQ .refInputSelectionDisplay2 {
	top:457px;
	left:310px;
	width:100px;
	position:absolute;
	font-size:70%;
	text-align:center;
}
/* PLL Mode related Begin */
.diagramMPS24PQ .pll {
	width:152px;
	height:142px;
	position:absolute;
	left:424px;
	color:#FFF;
	}
.diagramMPS24PQ .pll1 {
	top:264px;
	}
.diagramMPS24PQ .pll2 {
	top:484px;
	}
.diagramMPS24PQ .pll h2 {
	position:absolute;
	top:7px;
	left:5px;
	}
.diagramMPS24PQ .pll .pllMode {
	}
.diagramMPS24PQ .pll .pllMode {
	position:absolute;
	top:-3px;
	left:50px;
	font-size:78%;
	z-index:20;
	}
.diagramMPS24PQ .pll .selectbox {
	width:94px;
	text-align:left;
	color:#FFF;
}
.diagramMPS24PQ .pll .selectbox-wrapper li {
	color:#000;
}
.diagramMPS24PQ .pll .rangeLabel {
	position:absolute;
	top:-1px;
	left:10px;
	width:130px;
	height:18px;
	text-align:center;
	font-size:60%;
	}
.diagramMPS24PQ .pll .mainPLLInput {
	}
.diagramMPS24PQ .pll .mainPLLInput input {
	width:99px;
	left:26px;
	top:15px;
	}
.diagramMPS24PQ .pll .subPLLInput {
	font-size:60%;
}

.diagramMPS24PQ .pll .subPLLInput .P1A {
	position:absolute;
	top:43px;
	left:19px;
	}
.diagramMPS24PQ .pll .subPLLInput .P1B {
	position:absolute;
	top:48px;
	left:71px;
	}
.diagramMPS24PQ .pll .subPLLInput .P1C {
	position:absolute;
	top:70px;
	left:71px;
}
.ie .diagramMPS24PQ .pll .subPLLInput .P1A, .webkit .diagramMPS24PQ .pll .subPLLInput .P1A {
	top:0px;
	left:0px;
	}
.ie .diagramMPS24PQ .pll .subPLLInput .P1B, .webkit .diagramMPS24PQ .pll .subPLLInput .P1B  {
	top:0px;
	left:0px;
	}
.ie .diagramMPS24PQ .pll .subPLLInput .P1C, .webkit .diagramMPS24PQ .pll .subPLLInput .P1C {
	top:0px;
	left:0px;
}
.diagramMPS24PQ .pll .subPLLInput #txtP1A, .diagramMPS24PQ .pll .subPLLInput #txtP2A {
	position:absolute;
	top:57px;
	left:8px;
	font-size:110%;
	width:50px;
	}
.diagramMPS24PQ .pll .subPLLInput #txtP1B, .diagramMPS24PQ .pll .subPLLInput #txtP2B  {
	position:absolute;
	top:45px;
	left:83px;
	font-size:110%;
	width:50px;
	}
.diagramMPS24PQ .pll .subPLLInput #txtP1C, .diagramMPS24PQ .pll .subPLLInput #txtP2C {
	position:absolute;
	top:70px;
	left:83px;
	font-size:110%;
	width:50px;
	}
.diagramMPS24PQ .pll .pllInputContainer{
	width:152px;
	height:100px;
	background:url(images/fields-rational.png) center 10px no-repeat;
	position:absolute;
	top:28px;
	left:0px;
	}
.diagramMPS24PQ .pll .subPLLInput .M {
    position:absolute;
    top:64px;
    left:18px;
}
.diagramMPS24PQ .pll .subPLLInput .M input {
	position:absolute;
	top:0px;
	left:25px;
	font-size:110%;
	width:50px;
	}
.diagramMPS24PQ .pll .floating {
	background:url(images/fields-floating.png) center 10px no-repeat;
    top:40px;
	}
.diagramMPS24PQ .pll .floating .rangeLabel {
    top:-8px;
}
.diagramMPS24PQ .pll .pll1Subfield1 {}
.diagramMPS24PQ .pll .pll1Subfield2 {}
.diagramMPS24PQ .pll .pll1Subfield3 {}
.diagramMPS24PQ .pll .PLLOutput {
	position:absolute;
	top:123px;
	left:10px;
	width:130px;
	height:18px;
	text-align:center;
	font-size:70%;
	}
/* PLL Mode related End */


.diagramMPS24PQ .classB1 {
    top:295px;
    left:347px;
    width:70px;
    position:absolute;
    font-size:59%;
    font-family:Arial,Helvetica,sans-serif;
    text-align:center;
}

.diagramMPS24PQ .classB1_2 {
	top:160px;
	left:450px;
	width:70px;
	position:absolute;
	font-size:65%;
    font-family:Arial,Helvetica,sans-serif;
	text-align:center;
}
.diagramMPS24PQ .classB2 {
    top:537px;
    left:347px;
    width:70px;
    position:absolute;
    font-size:59%;
    font-family:Arial,Helvetica,sans-serif;
    text-align:center;
}

.diagramMPS24PQ .M1 {
    border: 0px solid red;
    top:61px;
    left:36px;
    width:100px !important;
    font-size:120%;
}
.ie .diagramMPS24PQ .M1 {
    border: 0px solid red;
    left:18px !important;
    top:-2px !important;
}

.diagramMPS24PQ .M2 {
    top:61px;
    left:36px;
    width:100px !important;
    font-size:120%;
}
.ie .diagramMPS24PQ .M2 {
    border: 0px solid red;
    left:18px !important;
    top:-2px !important;
}

.diagramMPS24PQ .divM1 {
	top:405px;
	left:375px;
	width:215px;
    color:#fff;
    border:1px solid red;
    padding:3px 3px 3px 25px;
	background:#a81515 url(images/ic-error.png) no-repeat 4px 5px;
    position:absolute;
    font-size:10px;
    display:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
    z-index:30;
}
.diagramMPS24PQ .divM2 {
	top:625px;
	left:375px;
	width:215px;
    color:#fff;
    border:1px solid red;
    padding:3px 3px 3px 25px;
	background:#a81515 url(images/ic-error.png) no-repeat 4px 5px;
    position:absolute;
    font-size:10px;
    display:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
    z-index:30;
}

.diagramMPS24PQ .divB1 {
    top:220px;
    left:290px;
    width:215px;
    color:#fff;
    border:1px solid red;
    padding:3px 3px 3px 25px;
    background:#a81515 url(images/ic-error.png) no-repeat 4px 5px;
    position:absolute;
    font-size:9px;
    display:none;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    z-index:30;

    opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
    filter: alpha(opacity=85); /* IE lt 8 */
    -ms-filter: "alpha(opacity=85)"; /* IE 8 */
    -khtml-opacity: .85; /* Safari 1.x */
    -moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.diagramMPS24PQ .divB2 {
    top:500px;
    left:55px;
    width:215px;
    color:#fff;
    border:1px solid red;
    padding:3px 3px 3px 25px;
    background:#a81515 url(images/ic-error.png) no-repeat 4px 5px;
    position:absolute;
    font-size:9px;
    display:none;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    z-index:1;

    opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
    filter: alpha(opacity=85); /* IE lt 8 */
    -ms-filter: "alpha(opacity=85)"; /* IE 8 */
    -khtml-opacity: .85; /* Safari 1.x */
    -moz-opacity: .85; /* FF lt 1.5, Netscape */
}

/* Rational Boxes Begin */

.diagramMPS24PQ .M1R {
    top:-3px;
    left:22px;
    width:100px;
    font-size:110%;
    color:#FFFFFF;
}
/*
.diagramMPS24PQ .P1A {
	top:365px;
	left:413px;
	width:70px;
}
.diagramMPS24PQ .P1B {
	top:365px;
	left:463px;
	width:70px;
}
.diagramMPS24PQ .P1C {
	top:365px;
	left:513px;
	width:70px;
} */

.diagramMPS24PQ .M2R {
    top:-3px;
    left:22px;
    width:100px;
    font-size:110%;
    color:#FFFFFF;
}
/*
.diagramMPS24PQ .P2A {
	top:584px;
	left:413px;
	width:70px;
}
.diagramMPS24PQ .P2B {
	top:584px;
	left:463px;
	width:70px;
}
.diagramMPS24PQ .P2C {
	top:584px;
	left:513px;
	width:70px;
}*/

/* Rational Boxes End */

.diagramMPS24PQ .n1 {
	top:172px;
	left:378px;
	width:35px;
}
.diagramMPS24PQ .n2 {
	top:302px;
	left:637px;
	width:35px;
}
.diagramMPS24PQ .n3 {
	top:422px;
	left:637px;
	width:35px;
}
.diagramMPS24PQ .n4 {
	top:542px;
	left:637px;
	width:35px;
}
.diagramMPS24PQ .n5 {
	top:662px;
	left:637px;
	width:35px;
}
.diagramMPS24PQ .output1 {
    top:186px;
    left:885px;
    width:85px;
    z-index:10;
    color:#015A9F;
    font-weight:normal;
}
.diagramMPS24PQ .output2 {
    top:316px;
    left:885px;
    width:85px;
    z-index:10;
    color:#015A9F;
    font-weight:normal;
}
.diagramMPS24PQ .output3 {
    top:436px;
    left:885px;
    width:85px;
    z-index:10;
    color:#015A9F;
    font-weight:normal;
}
.diagramMPS24PQ .output4 {
    top:556px;
    left:885px;
    width:85px;
    z-index:10;
    color:#015A9F;
    font-weight:normal;
}
.diagramMPS24PQ .output5 {
    top:676px;
    left:885px;
    width:85px;
    z-index:10;
    color:#015A9F;
    font-weight:normal;
}
.diagramMPS24PQ .refSel1 {
	position:absolute;
	top:375px;
	left:20px;
	font-size:78%;
	z-index:5;
}
.diagramMPS24PQ .refSel1 .selectbox {
	width:65px;
	text-align:left;
	z-index:5;
}
.diagramMPS24PQ .refSel2 {
	position:absolute;
	top:455px;
	left:20px;
	font-size:78%;
	z-index:5;
}
.diagramMPS24PQ .refSel2 .selectbox {
	width:65px;
	text-align:left;
	z-index:5;
}
.diagramMPS24PQ .refSel3 {
	position:absolute;
	top:173px;
	left:624px;
	font-size:78%;
	z-index:5;
}
.diagramMPS24PQ .refSel3 .selectbox {
	width:66px;
	text-align:left;
	z-index:5;
}
.diagramMPS24PQ .refSel4 {
	position:absolute;
	top:130px;
	left:745px;
	font-size:78%;
	z-index:10;
}
.diagramMPS24PQ .refSel4 .selectbox {
	width:88px;
	text-align:left
}
.diagramMPS24PQ .refSel5 {
	position:absolute;
	top:260px;
	left:745px;
	font-size:78%;
	z-index:10;
}
.diagramMPS24PQ .refSel5 .selectbox {
	width:88px;
	text-align:left
}
.diagramMPS24PQ .refSel6 {
	position:absolute;
	top:380px;
	left:745px;
	font-size:78%;
	z-index:10;
}
.diagramMPS24PQ .refSel6 .selectbox {
	width:88px;
	text-align:left
}
.diagramMPS24PQ .refSel7 {
	position:absolute;
	top:500px;
	left:745px;
	font-size:78%;
	z-index:10;
}
.diagramMPS24PQ .refSel7 .selectbox {
	width:88px;
	text-align:left
}
.diagramMPS24PQ .refSel8 {
	position:absolute;
	top:620px;
	left:745px;
	font-size:78%;
	z-index:10;
}
.diagramMPS24PQ .refSel8 .selectbox {
	width:88px;
	text-align:left
}
.diagramMPS24PQ .refSel9 {
	position:absolute;
	top:375px;
	left:140px;
	font-size:78%;
	z-index:1;
}
.diagramMPS24PQ .refSel9 .selectbox {
	width:134px;
        font-size:9px;
	text-align:left;
	z-index:1;
}
.ie .diagramMPS24PQ .refSel9 .selectbox {
        font-size:10px;
}
.ie .diagramMPS24PQ .refSel9 li {
        font-size:9px;
        padding: 0;
}
.diagramMPS24PQ .refSel10 {
	position:absolute;
	top:455px;
	left:140px;
	font-size:78%;
        z-index:1;
}
.diagramMPS24PQ .refSel10 .selectbox {
	width:134px;
	text-align:left;
	z-index:1;
}
.ie .diagramMPS24PQ .refSel10 .selectbox {
        font-size:10px;
}
.ie .diagramMPS24PQ .refSel10 li {
        font-size:9px;
        padding: 0;
}



.diagramMPS24PQ .refOut1 {
	position:absolute;
	top:126px;
	left:878px;
	font-size:78%;
}
.diagramMPS24PQ .refOut1 .selectbox {
	width:85px;
	text-align:left;
}
.diagramMPS24PQ .refOut2 {
	position:absolute;
	top:255px;
	left:878px;
	font-size:78%;
}
.diagramMPS24PQ .refOut2 .selectbox {
	width:85px;
	text-align:left;
}
.diagramMPS24PQ .refOut3 {
	position:absolute;
	top:375px;
	left:878px;
	font-size:78%;
}
.diagramMPS24PQ .refOut3 .selectbox {
	width:85px;
	text-align:left;
}
.diagramMPS24PQ .refOut4 {
	position:absolute;
	top:495px;
	left:878px;
	font-size:78%;
}
.diagramMPS24PQ .refOut4 .selectbox {
	width:85px;
	text-align:left;
}
.diagramMPS24PQ .refOut5 {
	position:absolute;
	top:615px;
	left:878px;
	font-size:78%;
}
.diagramMPS24PQ .refOut5 .selectbox {
	width:85px;
	text-align:left;
}



.diagramMPS24PQ .subOut0 { 
	height:28px;
	width:171px;
	position:absolute;
	top:192px;
	left:782px;
	background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}

.diagramMPS24PQ .subOut1 { 
	height:28px;
	width:171px;
	position:absolute;
	top:323px;
	left:782px;
	background:url(images/bg-subOutputAll.png) no-repeat 0px -131px;
	z-index:1;
}
.diagramMPS24PQ .subOut2 { 
	height:28px;
	width:171px;
	position:absolute;
	top:443px;
	left:782px;
	background:url(images/bg-subOutputAll.png) no-repeat 0px -250px;
	z-index:1;
}
.diagramMPS24PQ .subOut3 { 
	height:28px;
	width:171px;
	position:absolute;
	top:563px;
	left:782px;
	background:url(images/bg-subOutputAll.png) no-repeat 0px -369px;
	z-index:1;
}
.diagramMPS24PQ .subOut4 { 
	height:28px;
	width:171px;
	position:absolute;
	top:683px;
	left:782px;
	background:url(images/bg-subOutputAll.png) no-repeat 0px -488px;
	z-index:1;
}

.diagramMPS24PQ .outputBuffer00 {
	height:11px;
	width:87px;
	position:absolute;
	top:179px;
	left:799px;
	background:url(images/arrow.png) no-repeat top left;
	z-index:1;
}
.diagramMPS24PQ .outputBuffer01 {
	height:11px;
	width:87px;
	position:absolute;
	top:309px;
	left:799px;
	background:url(images/arrow.png) no-repeat top left;
	z-index:1;
}
.diagramMPS24PQ .outputBuffer02 {
	height:11px;
	width:87px;
	position:absolute;
	top:429px;
	left:799px;
	background:url(images/arrow.png) no-repeat top left;
	z-index:1;
}
.diagramMPS24PQ .outputBuffer03 {
	height:11px;
	width:87px;
	position:absolute;
	top:549px;
	left:799px;
	background:url(images/arrow.png) no-repeat top left;
	z-index:1;
}
.diagramMPS24PQ .outputBuffer04 {
	height:11px;
	width:87px;
	position:absolute;
	top:669px;
	left:799px;
	background:url(images/arrow.png) no-repeat top left;
	z-index:1;
}

.diagramMPS24PQ .valueAdd0 {
	position:absolute;
	top:193px;
	left:374px;
	z-index:10;
}
.diagramMPS24PQ .valueAdd1 {
	position:absolute;
	top:323px;
	left:634px;
	z-index:10;
}
.diagramMPS24PQ .valueAdd2 {
	position:absolute;
	top:443px;
	left:634px;
	z-index:10;
}
.diagramMPS24PQ .valueAdd3 {
	position:absolute;
	top:563px;
	left:634px;
	z-index:10;
}
.diagramMPS24PQ .valueAdd4 {
	position:absolute;
	top:683px;
	left:634px;
	z-index:10;
}


.subheaderLeft {
	float:left;
    border:0px solid red;
/*	width:470px; */
	width:900px;
	height:24px;
	background:url(images/ic-procLarge.png) no-repeat left center;
	padding-left:40px;
	padding-top:10px;
}
.OSsubheaderLeft {
	float:left;
    border:0px solid red;
/*	width:470px; */
	width:900px;
	height:24px;
	padding-left:10px;
	padding-top:10px;
}

.subheaderCenter {
/*	float:left;
    border:0px solid red;
	width:600px;
	height:24px;

	padding-left:40px; 
	padding-top:0px;
	padding-top:5px;*/
	padding-left:10px;
	font-size:75%;
}

.subheaderLeftDesign {
	float:left;
    border:0px solid red;
	width:920px;
	height:24px;
	background:url(images/ic-procLarge.png) no-repeat left center;
	padding-left:40px;
	padding-top:10px;
}
.dashboard {
	background:url(images/mydashboard.jpg) no-repeat left center;
}

#subheader .admin {
	background:url(images/user_list.png) no-repeat left center;
}

#subheader .help {
	background:url(images/help.png) no-repeat left center;
}

#subheader .user {
	background:url(images/profile.jpg) no-repeat left center;
}

#subheader .contact {
	background:url(images/techcontact.jpg) no-repeat left center;
}

#subheader .assistant {
	background:url(images/custservice.jpg) no-repeat left center;
}

#subheader .cwchelp {
	background:url(images/help.png) no-repeat left center;
}

#subheader .design_listing_cwcUsers {
	background:url(images/user_list.png) no-repeat left center ;
}

#subheader .feedback {
	background:url(images/feedback.jpg) no-repeat left center;
}

#subheader .search, .dataSheetSearch .design_listing_search {
	background:url(images/search.jpg) no-repeat left center;
}



.subheaderRight {
	float:right;
	width:450px; 
	text-align:right;
}
.subheaderRight .jqTransformButton {
	margin-top:-2px;
}

.jumpMenuTitle { 
	border:none; background:#F5F5F5; font-size:105%; font-family:Verdana, Arial, Helvetica, sans-serif;
	margin-top:-50px;
}
.ie .jumpMenuTitle { 
	margin-top:0px;
}

.switchOff0 {
	width:40px;
	height:13px;
	position:absolute;
	top:385px;
	left:85px;
	background:url(images/switch-off.png) no-repeat top center;
}
.switchOn0 {
	width:40px;
	height:13px;
	position:absolute;
	top:385px;
	left:85px;
	background:url(images/switch-on.png) no-repeat top center;
}
.switchOff1 {
	width:40px;
	height:13px;
	position:absolute;
	top:465px;
	left:85px;
	background:url(images/switch-off.png) no-repeat top center;
}
.switchOn1 {
	width:40px;
	height:13px;
	position:absolute;
	top:465px;
	left:85px;
	background:url(images/switch-on.png) no-repeat top center;
}
.floatLeft{
	float:left;
}
.floatRight{
	float:right;
}
.floatMiddle{
	float:inherit;
}


.infoMessage_old {
	position:absolute;
	width:220px;
	margin:20px 20px;/*top left*/
    visibility:hidden;
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#156aa8 url(images/ic-info.png) no-repeat 4px 5px ;
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.infoMessage2 {
	position:absolute;
	width:480px;
	margin:20px 280px;/*top left*/
    visibility:hidden;
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#156aa8 url(images/ic-info.png) no-repeat 4px 5px ;
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.infoMessage3 {
	position:absolute;
	width:120px;
	margin:4px 280px;/*top left*/
    visibility:hidden;
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#156aa8 url(images/ic-info.png) no-repeat 4px 5px ;
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.warningMessage {
	position:absolute;
	width:500px;
	margin:10px 230px;
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#d4a81c url(images/ic-warning.png) no-repeat 4px 5px ;
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.errorMessage {
	position:absolute;
	width:900px;
	margin:20px 230px;
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#a81515 url(images/ic-error.png) no-repeat 4px 5px;
	bottom: 1px;
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
}
.infoMessage {
	position:absolute;
	width:220px;
	margin:15px 20px;/*top left*/
	color:#FFFFFF;
	padding:5px 5px 5px 25px;
	font-size:80%;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#a10000 url(images/ic-error.png) no-repeat 4px 5px;
}
.ie .infoMessage, .ie .infoMessage, .ie .infoMessage2, .ie .infoMessage3 {
	top:46px;
}

.dropdownAuto1 {
	position:absolute;
	width:115px;
	top:310px;
	left:164px;
	padding:3px;
	background:#FFFFFF;
	border:1px solid #000000;
	font-size:70%;
	height:60px;
	overflow:auto;
        visibility:hidden;
        z-index: 10;
}
.dropdownAuto1 li {
	border-bottom:1px solid #CCCCCC;
	display:block;
	padding:2px;
}
.dropdownAuto1 li:hover {
background:#CCCCCC;
cursor:pointer;

}
.confirmationBox {
	position:absolute;
	width:320px;
	margin:120px 330px;/*top left*/
	padding-top:5px;
	color:#FFFFFF;
	font-size:80%;
	border:7px solid #333333;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#1066a5;
	z-index:25;
    visibility:hidden;
}
.confirmationBox .boxBody{
	padding:15px;
	background:#FFFFFF;
	margin-top:5px;
	text-align:center;
	color:#000000;
}

.confirmationBox .boxBody .buttonMain{
	background:#fafafa;
	padding:5px;
	font-size:100%;
	border:1px #8c8c8c outset;
	position:relative;
	border-radius:2px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
}
.widePopup {
	position:absolute;
	width:700px;
	margin:120px 130px;
	padding-top:5px;
	color:#FFFFFF;
	font-size:80%;
	border:7px solid #333333;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#1066a5;
	z-index:1000;
}
.widePopup .boxBody {
	padding:15px;
	background:#FFFFFF;
	margin-top:5px;
	text-align:center;
	color:#000000;
}
.subheaderLeft h2 {
	font-weight:normal;
}
.tableButtonContainer {
	margin-top:-7px;
}
.saveButtonContainer {
	width:450px;
    display:block;
}
.privacyToggle {
    display:block;
	color:#FFFFFF;
	font-size:70%;
	font-weight:normal;
	width:150px;
	height:20px;
	overflow:hidden;
	float:left;
	margin:0;
	padding:0;
}
.privacyToggle input {
    margin:0;
    padding:0;
    position:relative;
}
.completeToggle {
    display:block;
	color:#FFFFFF;
	font-size:70%;
	font-weight:normal;
	width:150px;
	height:20px;
	overflow:hidden;
	float:left;
	margin:0;
	padding:0;
}
.completeToggle input {
    margin:0;
    padding:0;
    position:relative;
}
.assistToggle {
    display:block;
	color:#5793FA;
    font-weight:bold;
	font-size:75%;
	font-weight:normal;
	width:200px;
	height:20px;
	overflow:hidden;
	float:left;
	margin:0;
	padding:0;
}
.assistToggle input {
    margin:0;
    padding:0;
    position:relative;
}
.loginBox {
	width:520px;
	margin:0 auto;
}
.loginBox .head {
	width:460px;
	margin:0 auto;
	background:url(images/login-top.png) no-repeat top center;
	height:10px;
	padding:30px ;
}
.loginBox .head h1 {
	border-bottom:1px solid #999999;
	font-size:90%;
	padding:0 0 4px 0;
}
.loginBox .bodycontainer {
	background:url(images/login-bgTop.png) repeat-y top center;
    min-height:180px;
	padding:1px 50px ;
	font-size:80%;
}
.loginBox .sep {
	background: url(images/login-sep.png) no-repeat top center;
	height:28px;
}
/*
.loginBox .bodycontainer2 {
	background:url(images/login-bgBot.png) repeat-y top center;
	padding:0 30px ;
	font-size:80%;
    height:20px;
}*/

.loginBox .bodycontainer2 {
	background:url(images/login-bgBot.png) repeat-y top center;
	padding:0 30px ;
	font-size:75%;
    height:100px;
}


.ie .loginBox .bodycontainer2 {
	background:url(images/login-bgBot.png) repeat-y top center;
	padding:0 30px ;
	font-size:75%;
    min-height:20px;
    height:auto !important;
    height:70px;
}
.loginBox .foot {
	background: url(images/login-bot.png) no-repeat top center;
	height:35px;
}
a {
	color:#00599f;
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
.privateTable {
	padding:0px;/* top left*/
	margin-bottom:1px;
	}
.sharedTable {
	padding:5px 10px;
	margin-bottom:12px;
	}
.assistedTable {
	padding:5px 10px;
	margin-bottom:12px;
	}
.print {
	background:none !important;
    position:relative;
	}
.print #header {
	display:none;
	}
.print #subheader {
	display:none;
	}
.print .head {
	display:none;
	}
.print .diagramBox {
	background:none;
}
.print .diagramBoxBackground {
	position:absolute;
    top:0;
    left:0;
    z-index:-10;
}

.print .diagramMPS24PQ .refInput {
	top:181px;
	left:167px;
	width:80px;
	position:absolute;
	font-size:70%;
    z-index:55;
}
.print .diagramMPS24PQ .refOscilliator {
	top:293px;
	left:167px;
	width:80px;
	position:absolute;
    font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refInputDisplay {
	top:299px;
	left:360px;
	width:50px;
	font-size:60%;
	position:absolute;
	font-family:Arial, Helvetica, sans-serif;
}
.print .diagramMPS24PQ .refInputDisplay2 {
	top:539px;
	left:360px;
	width:50px;
	font-size:60%;
	position:absolute;
	font-family:Arial, Helvetica, sans-serif;
}
.print .diagramMPS24PQ .refInputSelectionDisplay {
	top:399px;
	left:300px;
	width:70px;
	position:absolute;
	font-size:70%;
	text-align:center;
}
.print .diagramMPS24PQ .refInputSelectionDisplay2 {
	top:459px;
	left:300px;
	width:70px;
	position:absolute;
	font-size:70%;
	text-align:center;
}
.print .diagramMPS24PQ .pll1 {
	top:324px;
	left:448px;
	width:103px;
    font-size:64%;
}
.print .diagramMPS24PQ .pll2 {
	top:546px;
	left:448px;
	width:103px;
    font-size:64%;
}
.print .diagramMPS24PQ .n1 {
	top:174px;
	left:457px;
	width:35px;
    font-size:64%;
    width:30px;
}
.print .diagramMPS24PQ .n2 {
	top:304px;
	left:638px;
	width:35px;
    font-size:64%;
}
.print .diagramMPS24PQ .n3 {
	top:424px;
	left:638px;
	width:35px;
    font-size:64%;
}
.print .diagramMPS24PQ .n4 {
	top:544px;
	left:638px;
	width:35px;
    font-size:64%;
}
.print .diagramMPS24PQ .n5 {
	top:664px;
	left:638px;
	width:35px;
    font-size:64%;
}
.print .diagramMPS24PQ .output1 {
	top:187px;
	left:888px;
	width:74px;
	z-index:10;
    font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .output2 {
	top:317px;
	left:888px;
	width:74px;
	z-index:10;
    font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .output3 {
	top:437px;
	left:888px;
	width:74px;
	z-index:10;
    font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .output4 {
	top:557px;
	left:888px;
	width:74px;
	z-index:10;
    font-size:64%;
}
.print .diagramMPS24PQ .output5 {
	top:677px;
	left:888px;
	width:74px;
	z-index:10;
    font-size:64%;
}
.print .diagramMPS24PQ .refSel1 {
	position:absolute;
	top:388px;
	left:10px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refSel1 .selectbox {
	width:65px;
	text-align:left;
}
.print .diagramMPS24PQ .refSel2 {
	position:absolute;
	top:468px;
	left:10px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refSel2 .selectbox {
	width:65px;
	text-align:left;
}
.print .diagramMPS24PQ .refSel3 {
	position:absolute;
	top:186px;
	left:625px;
	font-size:64%;
}
.print .diagramMPS24PQ .refSel3 .selectbox {
	width:66px;
	text-align:left
}
.print .diagramMPS24PQ .refSel4 {
	position:absolute;
	top:143px;
	left:743px;
	font-size:64%;
	z-index:10;
}
.print .diagramMPS24PQ .refSel4 .selectbox {
	width:88px;
	text-align:left;
}
.print .diagramMPS24PQ .refSel5 {
	position:absolute;
	top:273px;
	left:743px;
	font-size:64%;
	z-index:10;
}
.print .diagramMPS24PQ .refSel5 .selectbox {
	width:88px;
	text-align:left
}
.print .diagramMPS24PQ .refSel6 {
	position:absolute;
	top:393px;
	left:743px;
	font-size:64%;
	z-index:10;
}
.print .diagramMPS24PQ .refSel6 .selectbox {
	width:88px;
	text-align:left
}
.print .diagramMPS24PQ .refSel7 {
	position:absolute;
	top:513px;
	left:743px;
	font-size:64%;
	z-index:10;
}
.print .diagramMPS24PQ .refSel7 .selectbox {
	width:88px;
	text-align:left
}
.print .diagramMPS24PQ .refSel8 {
	position:absolute;
	top:633px;
	left:743px;
	font-size:64%;
	z-index:10;
}
.print .diagramMPS24PQ .refSel8 .selectbox {
	width:88px;
	text-align:left
}
.print .diagramMPS24PQ .refSel9 {
	position:absolute;
	top:389px;
	left:140px;
	font-size:64%;
    width:100px;
}
.print .diagramMPS24PQ .refSel9 .selectbox {
	width:134px;
	text-align:left;
	z-index:20;
}
.print .diagramMPS24PQ .refSel10 {
	position:absolute;
	top:469px;
	left:140px;
	font-size:64%;
    width:100px;
}
.print .diagramMPS24PQ .refSel10 .selectbox {
	width:134px;
	text-align:left;
	z-index:30;
}



.print .diagramMPS24PQ .refOut1 {
	position:absolute;
	top:139px;
	left:879px;
	font-size:64%;
    border:0px solid red;
    width:70px;
}
.print .diagramMPS24PQ .refOut1 .selectbox {
	width:85px;
	text-align:left;
}
.print .diagramMPS24PQ .refOut2 {
	position:absolute;
	top:269px;
	left:879px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refOut2 .selectbox {
	width:85px;
	text-align:left;
}
.print .diagramMPS24PQ .refOut3 {
	position:absolute;
	top:389px;
	left:879px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refOut3 .selectbox {
	width:85px;
	text-align:left;
}
.print .diagramMPS24PQ .refOut4 {
	position:absolute;
	top:509px;
	left:879px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refOut4 .selectbox {
	width:85px;
	text-align:left;
}
.print .diagramMPS24PQ .refOut5 {
	position:absolute;
	top:629px;
	left:879px;
	font-size:64%;
    width:70px;
}
.print .diagramMPS24PQ .refOut5 .selectbox {
	width:85px;
	text-align:left;
}



.print .diagramMPS24PQ .subOut0 {
	height:28px;
	width:181px;
	position:absolute;
	top:192px;
	left:784px;
    background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}

.print .diagramMPS24PQ .subOut1 {
	height:28px;
	width:181px;
	position:absolute;
	top:322px;
	left:784px;
    background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}
.print .diagramMPS24PQ .subOut2 {
	height:28px;
	width:181px;
	position:absolute;
	top:442px;
	left:784px;;
	background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}
.print .diagramMPS24PQ .subOut3 {
	height:28px;
	width:181px;
	position:absolute;
	top:562px;
	left:784px;
	background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}
.print .diagramMPS24PQ .subOut4 {
	height:28px;
	width:181px;
	position:absolute;
	top:682px;
	left:784px;
	background:url(images/bg-subOutputAll.png) no-repeat top left;
	z-index:1;
}

.print .diagramMPS24PQ .valueAdd0 {
	position:absolute;
	top:193px;
	left:450px;
    width:50px;
}
.print .diagramMPS24PQ .valueAdd1 {
	position:absolute;
	top:323px;
	left:630px;
    width:50px;
}
.print .diagramMPS24PQ .valueAdd2 {
	position:absolute;
	top:443px;
	left:630px;
    width:50px;
}
.print .diagramMPS24PQ .valueAdd3 {
	position:absolute;
	top:563px;
	left:630px;
    width:50px;
}
.print .diagramMPS24PQ .valueAdd4 {
	position:absolute;
	top:683px;
	left:630px;
    width:50px;
}
.print .diagramMPS24PQ div {
	position:absolute;
	text-align:center;
}
.refInput, .refOscilliator, .refInputDisplay, .refInputDisplay2, .pll1, .pll2, .n1, .n2, .n3, .n4, .n5, .output1, .output2, .output3, .output4, .output5, .refInputSelectionDisplay, .refInputSelectionDisplay2, .refSel1, .refSel2, .refSel3, .refSel4, .refSel5, .refSel6, .refSel7, .refSel8, .refSel9, .refSel10, .refOut1, .refOut2, .refOut3, .refOut4, .refOut5, .switchOff0, .switchOn1, .subOut0, .subOut1, .subOut2, .subOut3, .subOut4 {

}
.print .diagramMPS24PQ .clockTitle {
	color:#000000;
	top:24px;
	left:24px;
	font-size:120% !important;
	font-weight:bold;
    width:700px;
    text-align:left;
}
.print #footer {
    width:280px;
    margin-left:685px;
    text-align:right;
}
.print #footer p {
    text-align:right;
}

/*------------- Custom CSS -------------------*/
#edit-mail-wrapper, #edit-pass-pass1-wrapper, #edit-pass-pass2-wrapper, #edit-submit {
    clear:both;
}

form.jqtransformdone label {
    width:125px;
    font-family:arial;
    font-size:11px;
}


.form-item input.error, .form-item textarea.error, .form-item select.error {
    border:0px solid red;
}


div.error, tr.error {
    background-color:#FFFFFF;
    color:#b22709;
    font-size:12px;
    border:3px solid #ededee;
    padding:5px;

   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 5px;
    margin-top:15px;
}
 div.error {
    border:none;
    width:670px;
    background:#F5D3D3;
    color:#A60F0F;
}
 div.error li {
    list-style:disc;
    margin-left:18px;
    margin-bottom:2px;
}
#user-profile-form div.error{
    margin:15px auto 5px auto !important;
}
.loginBox div.error {
    width:410px;
}
.leftColumn button.jqTransformButton {
    margin-left:5px;
    margin-top:5px;
}
.leftColumn #edit-submit {
    margin-left:140px !important;
}

.subheaderRight button.jqTransformButton {
    margin-top:2px;
}

.roles {
    clear:both;
}

.popup {
    padding:4px;
    margin-left:247px;
    margin-top:260px;
    border:1px solid #3e3e3e;
    width:100px;
    height:75px;
    z-index:2;
    background-color:#FFF;
    visibility:hidden;
    font-size:10px;
    overflow:scroll;
}
.popup li {
    border-bottom:1px solid gray;
    cursor:default;
}
#span_new_design {
    margin-left:50px;
    margin-top:5px;
    visibility:hidden;
    border:1px solid red;
    width:100px;
    color:green;
    font-size:15px;
    font-family:arial;
    font-weight:bold;
}
#save_display {
    margin-left:287px;
    margin-top:1px;
    visibility:hidden;
    border:1px solid red;
    width:100px;
    height:25px;
    color:purple;
    font-size:13px;
    font-family:arial;
    font-weight:bold;
}

.Os_hide {
/*    visibility:hidden;*/
	display:none;	
}
.Os_show {
/*    visibility:block;*/
	display:block;		
}


#edit-profile-first-name-wrapper {
    clear:both;
}
#edit-profile-last-name-wrapper {
    clear:both;
}
#edit-profile-company-wrapper {
    clear:both;
}
#edit-profile-title-wrapper {
    clear:both;
}
#edit-profile-department-wrapper {
    clear:both;
}
#edit-profile-country-wrapper {
    padding-top:5px;
    clear:both;
}
#edit-profile-state-wrapper {
    padding-top:5px;
    clear:both;
}
#edit-profile-regions-wrapper {
    padding-top:5px;
    clear:both;
}
#edit-profile-province-wrapper {
    clear:both;
}
#edit-profile-city-wrapper {
    clear:both;
}
#edit-profile-phone-no-wrapper {
    clear:both;
}
#edit-profile-zipcode-wrapper {
    clear:both;
}
#btnCancel {
    margin-left:200px;
    margin-top:532px;
    position:absolute;
}

.wizardResult {
	position:absolute;
	width:700px;
    height:300px;
	margin:120px 150px;/*top left*/
	padding-top:5px;
	color:#000000;
	font-size:80%;
	border:7px solid #333333;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	background:#FFFFFF;
	z-index:25;
    display:none;
    overflow:auto;
}

.divValidate {
    position:absolute;
    width:700px;
    height:300px;
    margin:120px 150px;/*top left*/
    padding-top:5px;
    color:#000000;
    font-size:80%;
    border:7px solid #333333;
    border-radius:3px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px;
    background:#FFFFFF;
    z-index:25;
    display:none;
    overflow:auto;
}

/*------------- Custom CSS END -------------------*/

table {
    width:100%;
}
th  {
  background-color: #E2E2E2;
  padding: 5px;
}
th.active  {
  background-color: #D9D9D9;
}
tr.drag {
  background-color: #ffffff;
}
tr.drag-previous {
  background-color: #ffd;
}
td.active {
  background-color: #ddd;
}
td.checkbox, th.checkbox {
  text-align: center;
}
td {
  border:none !important;
  text-align: left !important;
  padding: 5px;
}
tbody {
  border:none;
}
tbody th {
    border:none;
}
thead th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
}

tr.even, tr.odd {
/*  background-color: #F1F1F1;*/
  padding: 0.1em 0.6em;
}
tr.odd {
	background-color: #FFF !important;
}
tr.even {
	background-color: #f1f1f1 !important;
}

tr.odd .form-item, tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}
tr.merge-down, tr.merge-down td, tr.merge-down th {
}

tr.merge-up, tr.merge-up td, tr.merge-up th {

}

th:first-child {
    width:75px !important;
}
.password-strength {

}
div.password-description {
    font-size:12px;
    padding:5px;
   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
    border-radius: 4px;
    margin: 5px auto 15px auto;
    border:none;
    width:670px;
    background:#F1E399;
    color:#987C00;
}

/***********************Pagination Start****************************************/
div.pagination {
	padding:3px;
	margin:3px;
	text-align:center;
}

div.pagination a {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #8C8C89;

	text-decoration: none;
	color: #333;
}
div.pagination a:hover, div.pagination a:active {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #a0a0a0;
}
div.pagination span.current {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #e0e0e0;
	font-weight: bold;
	background-color: #f0f0f0;
	color: #aaa;
}
div.pagination span.disabled {
	padding: 2px 5px 2px 5px;
	margin-right: 2px;
	border: 1px solid #f3f3f3;
	color: #ccc;
}
/***********************Pagination End*/


.myTableWith th{
	width: 25%;
}


.ie7 .findSimilar, .ie7 .widerButton {
	width:175px;
	}
.webkit input {
	margin-top:0px;
	}
	
.webkit .diagramMPS24PQ .pll #txtM1-wrapper input, .webkit .diagramMPS24PQ .pll #txtM2-wrapper input {
	width:70px;
	left:22px;
	top:-2px;
	}

.rowSelect tr:hover {
	background-color:#efefef !important;
	color:#000;
}
.rowSelect tr:active {
	background-color:#efefef !important;
	color:#000;
}
.rowSelect .selected , .rowSelect .selected td {
	background-color: #1066a5 !important;
	color: #ffffff;
}
.rowSelect .selected th {
	background-color: #efefef !important;
	color: #000000;
	cursor:pointer;
}
.rowSelect .selected th a {
	cursor:pointer;
}
.rowSelect tr {
	cursor: pointer;
}
.rowSelect td {
	text-align:center !important;
    border:1px solid #EDEDED !important;
}
.rowSelect th {
	text-align:center !important;
    background:none;
	background-color:#efefef !important;
}
.closePopup {
    text-align:center;
    float:right;
    margin-right:5px;
}
.closePopup a {
    margin:0;
    padding:0;
    width:14px;
    height:14px;
    display:block;
    padding:2px;
    padding-top:0px;
    background:black;
    color:white;
    border:1px outset black;
}
.closePopup a:hover {
    background:#efefef;
    color:#000000;
    text-decoration:none;
}
.popupHeading {
    float:left;
    width:650px;
    margin-left:5px;
}

#HeaderTable {

}
#HeaderTable th {
	text-align:center !important;
	background-color: #efefef !important;
	color: #000000;
}
#Table1 td {
	text-align:center !important;
	border-left:1px dotted #CCC;
	border-bottom:1px solid #999;
}
.dataTableContainer {
	width:100%;
	height:200px;
	position:relative;
	overflow:auto;
}
.dataTableContainer td {
    width:100px;
}
#HeaderTable th {
    width:375px !important;
}
#thWizard {
    display:none;
}

.wTrColored {
    background-color: #1066a5 !important;
}
.wTrCleared {
    background-color: #ffffff !important;
}

.outputBox {
	width:110px;
	height:90px;
	background:#FFF;
	position:absolute;
	opacity: .75; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=75); /* IE lt 8 */
	-ms-filter: "alpha(opacity=75)"; /* IE 8 */
	-khtml-opacity: .75; /* Safari 1.x */
	-moz-opacity: .75; /* FF lt 1.5, Netscape */
	z-index:1;
}
.outputBox00 {
    display:none;
    top:130px;
    left:730px;
}
.outputBox01 {
    display:none;
    top:260px;
    left:730px;
}
.outputBox02 {
    display:none;
    top:380px;
    left:730px;
}
.outputBox03 {
    display:none;
    top:500px;
    left:730px;
}
.outputBox04 {
    display:none;
    top:620px;
    left:730px;
}
.tooltips div  {
    	width:50px;
	height:15px;
	position:absolute;
	cursor:help;
}
.ie .tooltips div  {
	cursor:default;
}
.tooltips div:hover  {
	background:#FC0;
	opacity: .25; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=25); /* IE lt 8 */
	-ms-filter: "alpha(opacity=25)"; /* IE 8 */
	-khtml-opacity: .25; /* Safari 1.x */
	-moz-opacity: .25; /* FF lt 1.5, Netscape */
}
.tooltips .blocks  {
	position:absolute;
	top:0;
	left:0;
	width:0;
	height:0;
}
.tooltips .blocks div:hover  {
	background:#6aafd0 !important;
	opacity: .45; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=45); /* IE lt 8 */
	-ms-filter: "alpha(opacity=45)"; /* IE 8 */
	-khtml-opacity: .45; /* Safari 1.x */
	-moz-opacity: .45; /* FF lt 1.5, Netscape */
}

.REFIN{
	left:40px;
	top:138px;
}
.REFINDash{
	left:40px;
	top:195px;
}
.XO1{
	left:55px;
	height:70px !important;
	top:246px;
}
.XO2{
	left:55px;
	top:296px;
}
.REFSEL1{
	left:35px;
	top:370px;
	z-index:5;
}
.REFSEL2{
	left:35px;
	top:450px;
	z-index:5;
}
.OUT1{
	left:897px;
	top:300px;
}
.OUT1Dash{
	left:897px;
	top:330px;
	z-index:2;
}
.OE1{
	display:none;
}
.OUT2{
	left:897px;
	top:418px;
}
.OUT2Dash{
	left:897px;
	top:452px;
	z-index:2;
}
.OE2{
	display:none;
}
.OUT3{
	left:897px;
	top:540px;
}
.OUT3Dash{
	left:897px;
	top:572px;
	z-index:2;
}
.OE3{
	display:none;
}
.OUT4{
	left:897px;
	top:660px;
}
.OUT4Dash{
	left:897px;
	top:695px;
	z-index:2;
}
.OE4{
	display:none;
}
.REFOUT{
	left:885px;
	top:168px;
	width:80px !important;
}
.REFOUTDash{
	left:885px;
	top:202px;
	width:80px !important;
	z-index:2;
}
.OEREF{
	display:none;
}
.SCK{
        left:393px;
	top:786px;
	width:160px !important;
	z-index:5;
}
.SDI{
	left:473px;
	top:786px;
	width:40px !important;
	z-index:5;
}
.SDO{
	left:513px;
	top:786px;
	width:40px !important;
	z-index:5;
}
.CSB{
	left:433px;
	top:786px;
	width:40px !important;
	z-index:5;
}
.FILTER1Plus{
	left:42px;
	top:566px;
	z-index:5;
}
.FILTER1Minus{
	left:42px;
	top:606px;
	z-index:5;
}
.FILTER2Plus{
	left:42px;
	top:656px;
	z-index:5;
}
.FILTER2Minus{
	left:42px;
	top:696px;
	z-index:5;
}
.PDI{
	left:40px;
	top:425px;
	z-index:4;
}
.VDD{
	left:700px;
	top:75px;
}
.VSS{
	left:700px;
	top:782px;
}
.VDDA{
	left:610px;
	top:75px;
}
.VDD01{
	left:786px;
	top:75px;
	width:15px !important;
	height:30px !important;
}
.VDD02{
	left:806px;
	top:75px;
	width:15px !important;
	height:30px !important;
}
.VDD03{
	left:826px;
	top:75px;
	width:15px !important;
	height:30px !important;
}
.VDD04{
	left:846px;
	top:75px;
	width:15px !important;
	height:30px !important;
}
.VSS01{
	left:786px;
	top:765px;
	width:15px !important;
	height:30px !important;
}
.VSS02{
	left:806px;
	top:765px;
	width:15px !important;
	height:30px !important;
}
.VSS03{
	left:826px;
	top:765px;
	width:15px !important;
	height:30px !important;
}
.VSS04{
	left:846px;
	top:765px;
	width:15px !important;
	height:30px !important;
}
.REFIN_VCM{
	left:24px;
	top:167px;
	width:60px !important;
}
.ReferenceInput{
	width:170px !important;
	height:107px !important;
	top:120px;
	left:120px;
	z-index:0;

}
.Crystaloscillator{
	width:170px !important;
	height:107px !important;
	top:230px;
	left:120px;
	z-index:0;
}
.ForceCrystal{
	width:170px !important;
	height:47px !important;
	top:370px;
	left:120px;
	z-index:0;
}
.ForceReference{
	width:170px !important;
	height:47px !important;
	top:450px;
	left:120px;
	z-index:0;
}
.REFSEL1Block{
	width:80px !important;
	height:117px !important;
	top:370px;
	left:13px;
	z-index:1;
}
.Filters{
	width:250px !important;
	height:177px !important;
	top:550px;
	left:13px;
	z-index:1;
}
.SPIFuseProgrammableLogicControl{
	width:178px !important;
	height:157px !important;
	top:650px;
	left:380px;
	z-index:1;
}
.NFollowingReferenceInput{
	width:88px !important;
	height:107px !important;
	top:120px;
	left:350px;
	z-index:1;
}
.BlockPLL1{
	width:178px !important;
	height:167px !important;
	top:250px;
	left:410px;
	z-index:1;
}
.BlockPLL2{
	width:178px !important;
	height:167px !important;
	top:470px;
	left:410px;
	z-index:1;
}
.ReferenceCrystal10{
	width:114px !important;
	height:140px !important;
	top:110px;
	left:600px;
	z-index:2;
}
.NFollowingPLL{
	width:87px !important;
	height:470px !important;
	top:250px;
	left:610px;
	z-index:2;
}
.ReferenceOutputBuffer{
	width:127px !important;
	height:110px !important;
	top:120px;
	left:720px;
	z-index:5;
}
.OutputBuffer{
	width:127px !important;
	height:470px !important;
	top:250px;
	left:720px;
	z-index:5;
}

#cboxLoadedContent .form-item , #contact-form  .form-item, #tucson-design-admin-design-form  .form-item, #tucson-design-samplereq-form  .form-item, #search-form .form-item, #AppUploadFile .form-item, #CustAppUploadFile, #CustUploadedFiles .form-item {
	clear: both;
}

div.form-radios span.jqTransformRadioWrapper {	margin: 7px 4px 0;}

.arrow_right {background-image:url('images/arrow_right.png'); background-repeat:no-repeat; width:74px; height:11px; left: 812px;position: absolute;}
.arrow_circle {background-image:url('images/arrow_circle.png'); background-repeat:no-repeat; width:85px; height:13px; left: 802px;position: absolute;}

.line_right {background-image:url('images/line_right_plusfive.png'); background-repeat:no-repeat; width:85px; height:11px; left: 806px;position: absolute;}
.line_circle, .stratus_line_circle {background-image:url('images/line_circle.png'); background-repeat:no-repeat; width:85px; height:13px; left: 802px;position: absolute;}

.line_circle_DSC2XYZ {background-image:url('images/line_circle-plus10.png'); background-repeat:no-repeat; width:95px; height:13px; left: 788px;position: absolute;}

.flex2_line_right {background-image:url('images/line_right_plusfive.png'); background-repeat:no-repeat; width:85px; height:11px; left: 808px;position: absolute;}
.flex2_line_circle {background-image:url('images/line_circle.png'); background-repeat:no-repeat; width:85px; height:13px; left: 802px;position: absolute;}

.SM806_line_right {background-image:url('images/line_right_plusfive.png'); background-repeat:no-repeat; width:85px; height:11px; left: 781px;position: absolute;}
.SM806_line_circle {background-image:url('images/line_circle.png'); background-repeat:no-repeat; width:85px; height:13px; left: 775px;position: absolute;}

.line_right_dsc2311 {background-image:url('images/line_right_plusfive.png'); background-repeat:no-repeat; width:95px; height:11px; left: 808px;position: absolute;}

.line_right_dsc2xyz_diff {background-image:url('images/line_right_plusfiveand20.png'); background-repeat:no-repeat; width:95px; height:11px; left: 785px;position: absolute;}

.line_right_PL613 {background-image:url('images/line_right_plusfiveand20.png'); background-repeat:no-repeat; width:100px; height:11px; left: 767px;position: absolute;}

.output_overlay { left: 768px; width:79px; height:57px; background:none repeat scroll 0 0 #FFFFFF; 
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
	position:absolute; 
}
.flex2_output_overlay { left: 775px; width:68px; height:53px; background:none repeat scroll 0 0 #FFFFFF; 
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
	position:absolute; 
}
.SM806_output_overlay { left: 750px; width:60px; height:50px; background:none repeat scroll 0 0 #FFFFFF; 
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
	position:absolute; 
}

.combo_small, .combo_small2, .combo_small_no_phase, .combo_small_no_phase_stratus {font-family:Arial; font-size:9px; left:769px; position:absolute; top:145px; height: 16px; width:65px; border:0px solid #000; padding:0px; margin:0px; z-Index: 1;}

.lvcmos_left_combo {font-family:Arial; font-size:9px; left:872px; position:absolute; top:152px; height: 20px; width:90px; border:0px solid #000; padding:0px; margin:0px; z-Index: 1; background-color:#FFFFFF; background-image:url('images/bg-box.png');background-repeat:no-repeat; position: absolute; }
.lvcmos_right_combo {font-family:Arial; font-size:9px; left:872px; position:absolute; top:182px; height: 20px; width:90px; border:0px solid #000; padding:0px; margin:0px; z-Index: 1;  background-color:#FFFFFF; background-image:url('images/bg-box.png');background-repeat:no-repeat; position: absolute;/* background-color:#D8D8D8;*/}


.input_overlay {
/*	width: 163px; */
	width: 236px; 	
	height: 104px; 
/*	background: none repeat scroll 0 0 #FFFFFF; */
	background: none repeat scroll 0 0 #4FA4AB; 
	opacity: .85; /* Standard: FF gt 1.5, Opera, Safari */
	filter: alpha(opacity=85); /* IE lt 8 */
	-ms-filter: "alpha(opacity=85)"; /* IE 8 */
	-khtml-opacity: .85; /* Safari 1.x */
	-moz-opacity: .85; /* FF lt 1.5, Netscape */
	position:absolute; 
}

#xin_input_overlay {
/*	left: 125px; 
	top: 464px;*/
	left: 42px; 
	top: 464px;

}

#ref_input_overlay {
/*	left: 53px; */
	left: 53px; 
	top: 264px;
}
#flex2_xin_input_overlay {
	left: 42px; 
	top: 375px;
}

#flex2_ref_input_overlay1 {
	left: 45px; 
	top: 215px;
}
#flex2_ref_input_overlay2 {
	left: 45px; 
	top: 545px;
}

#save-design-loader {
	width: 150px;
	display: none;
	background-image: url('images/ajax-loader.gif'); 
	background-repeat: no-repeat;
	background-position: right center;
}

.popForm { margin-left:20px; line-height:40px;}
.popForm input,textarea, radio { clear:both; float:left;}
.popForm label {float:left !important}


#tucson-design-save-div, #tucson-design-FAE-reject-comment label {
	float: left;
	margin-right: 5px;
}

#tucson-design-save-div, #tucson-design-FAE-reject-comment .popForm input, textarea, radio {
	float: none;
	clear: none;
}

#tucson-design-Info-div, #tucson-design-Info-div2, #tucson-design-samplereqInfo-div, #tucson-design-spurs-div, #sample-ship-date-div, #schedule-ship-date-div, #tracking-number-div label {
	float: left;
	margin-right: 5px;
}

#tucson-design-Info-div, #tucson-design-spurs-div, #sample-ship-date-div, #schedule-ship-date-div, #tracking-number-div {
	float: left;
	display:none;
	font-size:85%;
	background: #CCCCCC;
	position:absolute;
}

#tucson-design-samplereqInfo-div {
	float: left;
	display:none;
	font-size:120%;
	background: #CCCCCC;
	position:absolute;
	line-height: 1.7;
}

#tucson-design-Info-div2 {
	float: left;
	display:none;
	font-size:100%;
	background: #CCCCCC;
	position:absolute;
	line-height: 1.7;
}



#tucson-design-Info-div, #tucson-design-Info-div2, #tucson-design-samplereqInfo-div, #tucson-design-spurs-div, #sample-ship-date-div, #schedule-ship-date-div, #tracking-number-div .popForm input, textarea, radio {
	float: none;
	clear: none;
}

dl.multiselect dd.a, dl.multiselect dd.a .form-item {
	width: auto !important;
}

#mainContent .jqTransformTextarea td {
	padding: 0;
	height: 0;
}
.jqTransformSelectWrapper {
	margin-top: 5px;
}
#io_freq_container {
	clear: both;
}

#output_freq-wrapper.form-item {
	clear: none;
}
#output_freq-wrapper.form-item  label{
	margin-left: 10px;
	width: 140px;
}
#input_freq-wrapper.form-item  label{
	width: 130px;
}
#tucson-design-admin-design-form #edit-submit {
	display: block;
	margin-top: 126px !important;
	margin-left: 126px !important;
}

.Os_radio_options {
display:block;
text-align:left;
}

.Os_radio_options :hover {
-moz-appearance: none !important;
 border: 0 none;
 background: #3CF;
 } 
 
.Os_radio_options label {
  width: 300px;
  border-radius: 3px;
  border: 1px solid #D1D3D4
}

.Os_radio_options:focus label:before {
	box-shadow: 0 0 0 3px #999;
}


/*
.Os_radio_options_IE {
display:block;
text-align:left;
}

.Os_radio_options_IE :hover {
-moz-appearance: none !important;
 border: 0 none;
 background: #3CF;
 } 

.Os_radio_options_IE label {
  width: 300px;
  border-radius: 3px;
  border: 1px solid #D1D3D4
}

.Os_radio_options_IE:focus label:before {
	box-shadow: 0 0 0 3px #999;
}
*/

.Os_radio_options_IE :hover {
-moz-appearance: none !important;
 border: 0 none;
 background: #3CF;
 } 




.CG_radio_options:checked {
	background: #3CF;
}
.CG_radio_options {
display:block;
text-align:left;
}

.CG_radio_options :hover {
-moz-appearance: none !important;
 border: none none;
 background: #3CF;
 } 
 
.CG_radio_options label {
/*  width: 250px;*/
  border-radius: 3px;
  border: 1px solid #D1D3D4
}

.CG_radio_options:focus label:before {
	box-shadow: 0 0 0 3px #999;
}

.CG_radio_options:checked {
	background: #3CF;
}



.PL671_01SOP_Setting_Buttons {
	font-size: 85%;
	text-align:center;
	background: #CCC;
	display:block; 
	cursor:pointer;
	text-decoration: none;

  } 
/*
#Family1-div {
  background-image: url(http://clockworks.micrel.com/micrel/sites/all/themes/mClock/images/home/ByPN.png);
  background-size: 379px;
  width: 379px;
  height: 563px;
  border: 2px solid;
  color: blue;
}

#Family2-div {
  background-image: url(http://clockworks.micrel.com/micrel/sites/all/themes/mClock/images/home/ByFamily.png);
  background-size: 379px;
  width: 379px;
  height: 563px;
  border: 2px solid;
  color: green;
}*/


/* Tooltip container */
.tooltip613 {
    position: relative;
    display: inline-block;
/*    border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip container */
.tooltip612 {
    position: relative;
    display: inline-block;
/*    border-bottom: 1px dotted black;  If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip612 .tooltiptext {
    visibility: hidden;
    width: 520px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: -190%;
    left: 63%;
    margin-left: -15px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip text */
.tooltip613 .tooltiptext {
    visibility: hidden;
    width: 520px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: -70%;
    left: 110%;
    margin-left: -15px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip612 .tooltiptext::after {
    content: "";
    position: absolute;
/*    top: 100%;*/
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Tooltip arrow */
.tooltip613 .tooltiptext::after {
    content: "";
    position: absolute;
/*    top: 100%;*/
    left: 5%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}


/* Show the tooltip text when you mouse over the tooltip container */
/*.tooltip:hover .tooltiptext {*/
.tooltip612:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip613:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


div.highlight, tr.highlight {
/*    background-color: #f2f2f3;*/
    background-color: #87CEFA;
/*    color:#b22709;*/
    font-size:12px;
    border:3px solid #ededee;
    padding:5px;

   -moz-border-radius: 4px;
   -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 5px;
    margin-top:15px;
}
