2012-09-27 04:56:41 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- Created by pdf2htmlEX (http://github.com/coolwanglu/pdf2htmlEX) -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-05-04 13:38:05 +00:00
|
|
|
<meta name="generator" content="pdf2htmlEX">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
2012-09-27 04:56:41 +00:00
|
|
|
<style type="text/css">
|
2013-05-04 13:38:05 +00:00
|
|
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
|
2013-02-28 14:56:45 +00:00
|
|
|
/* Demo CSS for pdf2htmlEX */
|
2013-02-12 09:43:37 +00:00
|
|
|
/* Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> */
|
2013-02-28 14:56:45 +00:00
|
|
|
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
|
2013-05-04 13:38:05 +00:00
|
|
|
#sidebar { /* Sidebar */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
bottom:0;
|
2013-05-04 13:38:05 +00:00
|
|
|
width:250px;
|
|
|
|
padding:0;
|
2013-02-12 09:43:37 +00:00
|
|
|
margin:0px;
|
2013-05-04 13:38:05 +00:00
|
|
|
overflow:auto;
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
#page-container { /* PDF container */
|
2013-02-12 09:43:37 +00:00
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0px;
|
2013-02-28 14:56:45 +00:00
|
|
|
margin:0;
|
|
|
|
padding:0;
|
2013-05-04 13:38:05 +00:00
|
|
|
border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-12 09:43:37 +00:00
|
|
|
@media screen {
|
2013-02-28 14:56:45 +00:00
|
|
|
/* for sidebar */
|
2013-05-04 13:38:05 +00:00
|
|
|
#sidebar.opened + #page-container { left:250px; }
|
|
|
|
#page-container {
|
2013-02-28 14:56:45 +00:00
|
|
|
/* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
|
|
|
|
* alternatively you may set width and height
|
|
|
|
*/
|
2013-02-12 09:43:37 +00:00
|
|
|
bottom:0;
|
|
|
|
right:0;
|
|
|
|
overflow:auto;
|
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
.loading-indicator {
|
|
|
|
display:none;
|
|
|
|
position:absolute;
|
|
|
|
width:64px;
|
|
|
|
height:64px;
|
|
|
|
top:50%;
|
|
|
|
left:50%;
|
|
|
|
margin-top:-32px;
|
|
|
|
margin-left:-32px;
|
|
|
|
}
|
|
|
|
.loading-indicator img {
|
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
bottom:0;
|
|
|
|
right:0;
|
|
|
|
}
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
@media print {
|
2013-02-12 09:43:37 +00:00
|
|
|
@page { margin:0; }
|
|
|
|
html { margin:0; }
|
|
|
|
body {
|
|
|
|
margin:0;
|
2013-02-28 14:56:45 +00:00
|
|
|
-webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
#sidebar { display:none; }
|
|
|
|
#page-container {
|
2013-02-12 09:43:37 +00:00
|
|
|
width:auto;
|
|
|
|
height:auto;
|
|
|
|
overflow:visible;
|
|
|
|
background-color:transparent;
|
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
.d { display:none; }
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
/* Part 2: Page Elements: Modify with caution
|
2013-05-04 13:38:05 +00:00
|
|
|
* The followings are base classes, some of which are meant to be override by PDF specific classes
|
|
|
|
* So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
|
2013-02-12 09:43:37 +00:00
|
|
|
*/
|
2013-02-28 14:56:45 +00:00
|
|
|
.pd { /* page decoration */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:relative;
|
2013-05-04 13:38:05 +00:00
|
|
|
border: 0;
|
2012-09-27 04:56:41 +00:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
.pf { /* page */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:absolute;
|
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
background-color:white;
|
|
|
|
overflow: hidden;
|
2013-02-28 14:56:45 +00:00
|
|
|
margin:0;
|
2013-05-04 13:38:05 +00:00
|
|
|
border:0; /* required by pdf2htmlEX.js for page visibility test */
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
.pc { /* content of a page */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:absolute;
|
2013-05-04 13:38:05 +00:00
|
|
|
border:0;
|
|
|
|
padding:0;
|
|
|
|
margin:0;
|
2012-09-27 04:56:41 +00:00
|
|
|
top:0;
|
|
|
|
left:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
overflow:hidden;
|
|
|
|
display:block;
|
2013-05-04 13:38:05 +00:00
|
|
|
/* set transform-origin for scaling */
|
2012-09-27 04:56:41 +00:00
|
|
|
transform-origin:0% 0%;
|
|
|
|
-ms-transform-origin:0% 0%;
|
|
|
|
-webkit-transform-origin:0% 0%;
|
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
|
2013-02-12 09:43:37 +00:00
|
|
|
display:block;
|
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
.Bi {
|
2013-03-04 07:35:30 +00:00
|
|
|
position:absolute;
|
2013-09-28 05:30:57 +00:00
|
|
|
border:0;
|
|
|
|
margin:0;
|
2013-03-04 07:35:30 +00:00
|
|
|
top:0;
|
2013-09-28 05:30:57 +00:00
|
|
|
bottom:0;
|
2013-03-04 07:35:30 +00:00
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
-ms-user-select:none;
|
|
|
|
-moz-user-select:none;
|
|
|
|
-webkit-user-select:none;
|
|
|
|
user-select:none;
|
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
.bi {
|
|
|
|
position:absolute;
|
|
|
|
border:0;
|
|
|
|
margin:0;
|
|
|
|
-ms-user-select:none;
|
|
|
|
-moz-user-select:none;
|
|
|
|
-webkit-user-select:none;
|
|
|
|
user-select:none;
|
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
@media print {
|
|
|
|
.pd {
|
|
|
|
margin:0;
|
|
|
|
box-shadow:none;
|
|
|
|
page-break-after:always;
|
|
|
|
page-break-inside:avoid;
|
|
|
|
}
|
|
|
|
@-moz-document url-prefix() {
|
|
|
|
/* fix page truncation for FireFox */
|
|
|
|
.pd {
|
|
|
|
overflow:visible;
|
|
|
|
border:1px solid #FFFFFF;
|
|
|
|
}
|
|
|
|
.pf {overflow:visible;}
|
|
|
|
.pc {overflow:visible;}
|
|
|
|
}
|
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
.c { /* clip box */
|
|
|
|
position:absolute;
|
|
|
|
border:0;
|
|
|
|
padding:0;
|
|
|
|
margin:0;
|
|
|
|
overflow:hidden;
|
|
|
|
display:block;
|
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
.t { /* text line */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:absolute;
|
|
|
|
white-space:pre;
|
|
|
|
font-size:1px;
|
|
|
|
transform-origin:0% 100%;
|
|
|
|
-ms-transform-origin:0% 100%;
|
|
|
|
-webkit-transform-origin:0% 100%;
|
2013-09-28 05:30:57 +00:00
|
|
|
unicode-bidi:bidi-override;/* For rtl lanauges, e.g. Hebrew, we don't want the default Unicode behaviour */
|
|
|
|
-moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
span { /* text blocks within a line */
|
2012-09-27 04:56:41 +00:00
|
|
|
position:relative;
|
|
|
|
vertical-align: baseline;
|
2013-02-12 09:43:37 +00:00
|
|
|
/* _<id> for spaces may need display:inline, which will override this */
|
|
|
|
display:inline-block;
|
2013-09-28 05:30:57 +00:00
|
|
|
unicode-bidi:bidi-override; /* For rtl lanauges, e.g. Hebrew, we don't want the default Unicode behaviour */
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-12 09:43:37 +00:00
|
|
|
._ { /* text shift */
|
2012-09-27 04:56:41 +00:00
|
|
|
color:transparent;
|
2013-02-12 09:43:37 +00:00
|
|
|
z-index:-1;
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-03-10 11:23:07 +00:00
|
|
|
/* selection background should not be opaque, for fallback mode */
|
2012-09-27 04:56:41 +00:00
|
|
|
::selection{
|
2013-03-10 11:23:07 +00:00
|
|
|
background: rgba(127,255,255,0.4);
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
|
|
|
::-moz-selection{
|
2013-03-10 11:23:07 +00:00
|
|
|
background: rgba(127,255,255,0.4);
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-28 14:56:45 +00:00
|
|
|
.pi { /* info for Javascript */
|
2012-09-27 04:56:41 +00:00
|
|
|
display:none;
|
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
.l { /* annotation links */
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-02-12 09:43:37 +00:00
|
|
|
/* transparent color - WebKit */
|
2013-02-28 14:56:45 +00:00
|
|
|
.d { /* css drawing */
|
2013-02-12 09:43:37 +00:00
|
|
|
position:absolute;
|
|
|
|
transform-origin:0% 100%;
|
|
|
|
-ms-transform-origin:0% 100%;
|
|
|
|
-webkit-transform-origin:0% 100%;
|
|
|
|
}
|
2012-09-27 04:56:41 +00:00
|
|
|
/* Base CSS END */
|
|
|
|
</style>
|
|
|
|
<style type="text/css">
|
2013-05-04 13:38:05 +00:00
|
|
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
|
|
|
|
/* Fancy styles */
|
|
|
|
/* Copyright 2013 Lu Wang <coolwanglu@gmail.com> */
|
2013-09-28 05:30:57 +00:00
|
|
|
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
|
|
|
|
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
|
|
|
|
@keyframes swing {
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
10% { transform: rotate(0deg); }
|
|
|
|
90% { transform: rotate(720deg); }
|
|
|
|
100%{ transform: rotate(720deg); }
|
|
|
|
}
|
|
|
|
@-webkit-keyframes swing {
|
|
|
|
0% { -webkit-transform: rotate(0deg); }
|
|
|
|
10% { -webkit-transform: rotate(0deg); }
|
|
|
|
90% { -webkit-transform: rotate(720deg); }
|
|
|
|
100%{ -webkit-transform: rotate(720deg); }
|
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
@media screen {
|
|
|
|
#sidebar {
|
|
|
|
background-color:#2f3236;
|
|
|
|
/* modified from http://philbit.com/svgpatterns/#crossstripes */
|
|
|
|
background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
|
|
|
|
}
|
|
|
|
#outline {
|
|
|
|
font-family:Georgia,Times,"Times New Roman",serif;
|
|
|
|
font-size:13px;
|
|
|
|
margin:2em 1em;
|
|
|
|
}
|
|
|
|
#outline ul {
|
|
|
|
padding:0;
|
|
|
|
}
|
|
|
|
#outline li {
|
|
|
|
list-style-type:none;
|
|
|
|
margin:1em 0;
|
|
|
|
}
|
|
|
|
#outline li > ul {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
#outline a,
|
|
|
|
#outline a:visited,
|
|
|
|
#outline a:hover,
|
|
|
|
#outline a:active {
|
|
|
|
line-height:1.2;
|
|
|
|
color:#e8e8e8;
|
|
|
|
text-overflow:ellipsis;
|
|
|
|
white-space:nowrap;
|
|
|
|
text-decoration:none;
|
|
|
|
display:block;
|
|
|
|
overflow:hidden;
|
|
|
|
outline:0;
|
|
|
|
}
|
|
|
|
#outline a:hover {
|
|
|
|
color:rgb(0,204,255);
|
|
|
|
}
|
|
|
|
#page-container {
|
|
|
|
background-color:#9e9e9e;
|
|
|
|
/* http://philbit.com/svgpatterns/#thinstripes */
|
|
|
|
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
|
|
|
|
-webkit-transition:left 500ms;
|
2013-09-28 05:30:57 +00:00
|
|
|
transition:left 500ms;
|
2013-05-04 13:38:05 +00:00
|
|
|
}
|
|
|
|
.pd {
|
|
|
|
margin: 13px auto;
|
|
|
|
box-shadow: 1px 1px 3px 1px #333;
|
|
|
|
}
|
|
|
|
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
|
|
|
|
-webkit-animation: fadein 100ms;
|
|
|
|
animation: fadein 100ms;
|
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
.loading-indicator {
|
|
|
|
animation: swing 1.5s ease-in-out 0s infinite alternate none;
|
|
|
|
-webkit-animation: swing 1.5s ease-in-out 0s infinite alternate none;
|
|
|
|
}
|
2013-05-04 13:38:05 +00:00
|
|
|
}
|
|
|
|
/* Fancy CSS END */
|
|
|
|
</style>
|
|
|
|
<style type="text/css">
|
2013-02-28 14:56:45 +00:00
|
|
|
.ff0{font-family:sans-serif;visibility:hidden;}
|
2013-09-28 05:30:57 +00:00
|
|
|
@font-face{font-family:ff1;src:url('data:application/x-font-ttf;base64,AAEAAAASAQAABAAgRkZUTWUVDbUAA4jQAAAAHEdERUYk8x/wAANarAAAAFBHUE9TGiUkggADh+wAAADkR1NVQkndgSIAA1r8AAAs7k9TLzKJ0PnPAAABqAAAAGBjbWFwjbflIQAAFYAAAASuY3Z0IBNlAcMAACRgAAAAOGZwZ20x/KCVAAAaMAAACZZnYXNwAAAAEAADWqQAAAAIZ2x5ZoVlEDkAADgUAALptGhlYWQAXSeRAAABLAAAADZoaGVhCBcIkQAAAWQAAAAkaG10eILTxnoAAAIIAAATdmxvY2EH9HNUAAAkmAAAE3xtYXhwBiADWwAAAYgAAAAgbmFtZSzmPu8AAyHIAAAHqXBvc3RNUh3sAAMpdAAAMTBwcmVwssXFcgAAI8gAAACVAAEAAAAAsKS6IQDyXw889QAfA+gAAAAAzmwZgQAAAADObBmB/1v/QwT3A8IAAAAIAAIAAQAAAAAAAQAAA8L/QwAABRH/W/9fBPcAAQAAAAAAAAAAAAAAAAAABN0AAQAABN4AcAAHAHMABwACACIAMABsAAAAoQJFAAQAAQADAmYBkAAFAAACvAKKAAAAjAK8AooAAAHdAE8A+gAAAgsFBAMGAgMCBOAAAv9QACBbAAAAAAAAAABEQU1BAEAAIPsEA8L/QwAAA8IAvSAAAJ9WAQAAAggCtQAAACAAAwFsACEAAAAAAU0AAAABAAABGABJAaUASQKfADMCNwA/A10ANAKeADAA9ABKAUgAUAFIAAkB4wAnAjcANwD6ACgBLgAcAPoAOgGE/+oCNwA0AjcAXwI3ADoCNwA5AjcAKgI3AEMCNwBBAjcAPgI3ADkCNwA1APoAOgD6ACgCNwA3AjcANwGXABUDuQBDApsACgKHAFgCbwA8AswAWAI+AFgCHQBYAqQAPALEAFgBEQBYAfgACgJ5AFgCCwBYA2sARQLbAFgDDgA8AmMAWAMOADwCeQBYAhgAIwI4ABICswBTApQADAOlAB4CewAZAlkACAJAACMBTQBiAYT/6gFNAAoB7//+Ag4ALQJQAFIB1AA1AlAANQIyADUBhgBSAkUANQI+AFIBAQBEAQH/vgIOAFIBFQBQA2AAUgJBAFICUQA1AlAAUgJQADUBhgBSAcIAKgGWAEwCQQBMAfoAEgMNABQCAwASAfUABAHaACYCPgA2At8AFQI/AAgBEf/lAQH/3QER//sBAf/zAREABAEB//wBEQATAQEACwERAE0BAQBSAwQAWAICAEQB+AAKAQH/vgJ5AFgCDgBSAh0AUgILAE0BFQA8AgsAWAEVACkCCwBYASAAUAILAFgBdQBQAh0AAAEjAAUC2wBYAkEAUgLbAFgCQQBSAtsAWAJBAFICQQAJAtwAWAJCAFIDDgA8AlEANQMOADwCUQA1Aw4APAJRADUCeQBYAYYAUgJ5AFgBhgAUAnkAWAGGAFICGAAjAcIAKgIYACMBwgAqAhgAIwHCACoCOQASAZYATAI4ABIBlgBMAjkAEgGWAEwCswBTAkEATAKzAFMCQQBMArMAUwJBAEwCswBTAkEATAKzAFMCQQBMArQAUwJCAEwDpQAeAw0AFAJZAAgB9QAEAkAAIwHaACYCQAAjAdoAJgJAACMB2gAmARUAUgJRAAgC7AARAm8AWAJRAFICUQAMAnAAFgJwABsCmwA8AgAANQLaABUDMgAQAnUAMAJRADUCSgA1Aj8AJwLFADoCQAA1Ah3/5gKkADwCjgAKA38AUgF8AFgBSQAQApwAWAIOAFIBIwAQAgIAEgPTAFgC3P/mAkIAUgMOADwDDgA8AlIANQQEADsDOQA1AsoAEQJRAFICeQBYAhgAIQHCACkCNwAjASL/pgGWAEwCVAARAZYATAI5ABICygBTAlkATAMUADYCugBTAqT/9wI+AAUCQQAjAdsAJgI7ABsCOwA0AdsAKgHeAAoCJQAqAh4AHAH0AB4B0wAxAj8AUgEbAGIB5wBiAj0ALgEYAEkFDgBYBKgAWAQsADUD/gBYAwwAWAIWAFAEzwBYA90AWANDAFICmwAKAg4ALQERAAEBAf/6Aw4APAJRADUCswBTAkEATAKzAFMCQQBMArMAUwJBAEwCswBTAkEATAKzAFMCQQBMAjMANQKbAAoCDgAtApsACgIOAC0DqwAIA18ALgLCADwCUgA1AqQAPAJFADUCeQBYAg4ANgMOADwCUgA1Aw4APAJSADUCOwAbAdv//wEB/74FDgBYBKgAWAQsADUCpAA8AkUANQQlAFgChwBYAtsAWAJBAFICmwAKAg4ALQOrAAgDXwAuAw4APAJSADUCmwAKAg4ALQKbAAoCDgAtAj4AWAIyADUCPgBYAjIANQER/7cBAf+vAREABQEB//0DDgA8AlEANQMOADwCUQA1AnkAVgGGABYCeQBYAYYAUgKzAFMCQQBMArMAUwJBAEwCGAAjAcIAKgI4ABIBlgBMAhsAEgG4AA4CxABYAj4ANgKoAFgC2wA1AqIAMwJTADYCQQAjAdsAJgKbAAoCDgAtAj8AWAIzADUDDgA8AlEANQMOADwCUQA1Aw4APAJRADUDDgA8AlEANQJZAAgB9QAEAZ7//gLSAFIBnv/+AQH/vgOhADUDoQA1ApsADAKFADwB4QA1AhgAFQJwABIBwgAlAdkAKAHhABABpQAMApQAFQLOABUCkAAKAlcAWAJCADUCBwAHASf/2AMVADwCUQA1AoYAFQGSABACbgASAgkAEAHb//8BfAB2AXwANgF8ADABfAA8AXwAggF8AFcBfABJAXwAJgF8ADkBfACQAXz/+AKbAAoCfv/kAwn/5AFV/+QDJ//kAtj/5AMq/+QBFf+6ApsACgKHAFgCAQBYAo8ACgI+AFgCQAAjAsQAWAMOADwBEQBYAnkAWAKQAAoDawBFAtsAWAIsACcDDgA8Ar8AWAJjAFgCNwAjAjgAEgJZAAgDZAA6AnsAGQMzAEMDFAA2ARH/8QJZAAgCYgA1AfsAOQJCAFIBFQA6AkQATAJiADUCZwBSAfsAFAJRADUB+wA5Ab8ANgJCAFICXgA5ARUAUAIdAFICAQASAkgAUgH6ABIB2gA0AlEANQJGAFICVwBMAcQANQJpADUBwQASAkQATAMGADUCAwASAwwATANKADsBFf/nAkQATAJRADUCRABMA0oAOwI+AFgCPgBYAvMAEgIBAFgCcAA8AhgAIwERAFgBEf/wAfgACgQXAA8EBgBYAvEAEgJ5AFgC3ABYAk8AFgK/AFgCmwAKAm8AWAKHAFgCAQBYAtcAEgI+AFgDjQAaAkAAHwLcAFgC3ABYAnkAWALHAA8DawBFAsQAWAMOADwCvwBYAmMAWAJvADwCOAASAk8AFgNkADoCewAZAtIAWAJ7ADwD2wBYA+4AWALaABIDXABYAmwAWAJwABsECgBYAn8AJgIOAC0CVwBAAigAUgGmAFICXwASAjIANQL/ABEB7QAuAlkAUgJZAFICHQBSAloADwLfAEUCTgBSAlEANQJGAFICUABSAdQANQHTABIB9QAEAwIANAIDABICTgBSAhkAMAM7AFIDRgBSAloAEgL6AFICFABSAfYAJAMvAFICKAAhAjIANQIyADUCPwAIAaYAUgH2ADUBwgAqAQEARAEB/+gBAf++A2MADwNXAFICPwAIAh0AUgJZAFIB9QAEAkMAUgLaABICWgASAw4APAJSADUC9QAMAjgAEgLtAFgCZABSAnkAFQIQABACZABYAlEAUgIBAFgBsABSAg4AFQGuABACdABYAiQAUgOdABoDCwARAkAAHwHtAC4ClABYAiYAUgLHAFgCbwBSAoUAFQIwABAC5wASAmMAEgLYAFgCWQBSAzMAWAKUAFIEDABYA2AAUgMWADwCZQA1AnAAPAHVADUCOQASAdMAEgJZAAgB+gASAloACAH6ABICkQAZAhEAEgNSABICmQASAo4APAIkADACggA8AhkAKQKDAFgCPgBSA0cAEQKiAA4DRwARAqIADgERAFgDjQAaAv8AEQJ7
|
|
|
|
@font-face{font-family:ff2;src:url('data:application/x-font-ttf;base64,AAEAAAASAQAABAAgRkZUTWUVDbsAAyZYAAAAHEdERUYklx+UAAL4NAAAAFBHUE9THm8sqwADJXQAAADkR1NVQvIfLCwAAviEAAAs7k9TLzKLUP0aAAABqAAAAGBjbWFwMX6TRAAAFYAAAASuY3Z0IBPvAjAAACRgAAAAOGZwZ20x/KCVAAAaMAAACZZnYXNwAAAAEAAC+CwAAAAIZ2x5Zp19GY0AADgUAAKEVGhlYWQBDienAAABLAAAADZoaGVhCPsJFgAAAWQAAAAkaG10eDmgsFUAAAIIAAATdmxvY2EGwSmMAAAkmAAAE3xtYXhwBiIETQAAAYgAAAAgbmFtZYJ163oAArxoAAAJ83Bvc3RK6U//AALGXAAAMc5wcmVwssXFcgAAI8gAAACVAAEAAAAAsKTRRDumXw889QAfA+gAAAAAzmwZggAAAADObBmC/1b/IwWsA/YAAQAIAAIAAQAAAAAAAQAAA/b/IwAABcD/Vv9VBawAAQAAAAAAAAAAAAAAAAAABN0AAQAABN4AcAAHAGoABwACACIAMABsAAAAowNAAAQAAQADAo4CvAAFAAACvAKKAAAAjAK8AooAAAHdAHgA+gAAAgsIBAMGAgMCBOAAAv9QACBbAAAAAAAAAABEQU1BACAAIPsEA/b/IwAAA/YA3SAAAJ9WAQAAAg4CtQAAACAAAwFsACEAAAAAAU0AAAABAAABHQAyAdEAMgK6ADcDlgAjAsAAIwD2ADIBYwBGAWMABQD1ABEBVAAZAPUAHgG0/+cCNwAiAjcARgI3ACMCNwAaAjcAFAI3ACYCNwAlAjcAKwI3ACcCNwAcAPUAHgHHABQC0AAKAqAAUAKIADIC4ABQAl0AUAI9AFACvQAyAt0AUAE8AFACEQAKAqwAUAIyAFADgQA8AvQAUAMWADIChABQAxYAMgKbAFACRQAlAmUAFALCAEYC0QAKA7MAFAKjAAoClQAFAmEAIwIpACMCWwBGAfQALQJbAC0CRwAtAaUARgJRAC0CTABGASAANwEg/7gCQgBGATwARgNdAEYCTABGAl4ALQJbAEYCWwAtAaUARgHkACcBvABBAkwAQQImAAoDEAAKAioACgIjAAUB9AAjAikAIwJeAC0CTABGAvQACgJXABIBPP/mASH/2AE8//4BIf/wATwABwEh/+8BPAAgASEADwE8AE4BIQBGA0kAUAJAADcCEQAKASH/uAKsAFACQgBGAkYARgIyADUBPAAoAjIAUAE8ADACMgBQAb4ARgIyAFACBgBGAlIAAAFs//YC9ABQAkwARgL0AFACTABGAvQAUAJMAEYCa//sAvQAUAJNAEYDFgAyAl4ALQMWADICXgAtAxYAMgJeAC0CmwBQAaUARgKbAFABpQAOApsAUAGlAEYCRQAlAeQAJwJFACUB5AAnAkYAJQHlACcCZgAUAbwAQQJlABQBvABBAmYAFAG8AEECwgBGAkwAQQLCAEYCTABBAsIARgJMAEECwgBGAkwAQQLCAEYCTABBAsMARgJNAEEDswAUAxAACgKVAAUCIwAFAmEAIwH0ACMCYQAjAfQAIwJhACMB9AAjAUkARgJcAAgDKwAPAooAUAJcAEYCXP/xAoP/+wKIABQC0AAyAiQALQLsAAoDbAAPAooALQJcAC0CUQAqAl4AIwLaADICZwAtAj7/0ALZADIC0QAKA3EARgGzAFABagACArcAUAJDAEYBWAAKAiMACwPWAEYC9P/QAmYARgMWADIDFgAyAl8ALQQyADIDZQAtAw8ADwJcAEYCmwBQAkYAKAHlACgCUwAfAaH/2AG8AEECjgAPAbwAQQJmABQC6wBGAnIAQQMFACMC1ABGAsv/9wJfAAUCYgAjAfQAIwJmABQCZgA3AgMAKAIGAAoCNQAUAiwACgIAAAoB6QAnAkwARgFCAFoCMQBaAjoAHgEdADIFFABQBL8AUARHAC0EQgBQA1AAUAJbAEYFAQBQBBMAUANuAEYC0AAKAikAIwE8AAMBIf/1AxYAMgJeAC0CwgBGAkwAQQLCAEYCTABBAsIARgJMAEECwgBGAkwAQQLCAEYCTABBAkgALQLQAAoCKQAjAtAACgIpACMD4gAKA2oAIwLYADICWgAtAr0AMgJRAC0CrABQAkIAMwMWADICXwAtAxYAMgJfAC0CZgAUAgMABQEh/7gFFABQBL8AUARHAC0CvQAyAlEALQQlAFACnwBQAvQAUAJMAEYC0QAKAikAIwPiAAoDagAjAxYAMgJfAC0C0AAKAikAIwLQAAoCKQAjAl0AUAJHAC0CXQBQAkcALQE8/7kBIf+sATz//QEh/+8DFgAyAl4ALQMWADICXgAtApsAUAGlAAACmwBQAaUARgLCAEYCTAA0AsIARgJMAEECRQAlAeQAJwJlABQBvABBAjgADwHdAAoC3QBQAkwARgLAAFADDgAtAsgAMgJWACgCYgAjAfQAIwLQAAoCKQAjAl4AUAJIAC0DFgAyAl4ALQMWADICXgAtAxYAMgJeAC0DFgAyAl4ALQKVAAUCIwAFAf3/+wMEAEYB/f/7ASH/uAOXAC0DlwAtAucACgKVADICAgAtAj4ACgJgABEB5QAoAfQAIwH7AAIBwgAHAqAACgLtAAoC0gAKAl4AUAJVAC0CJgAKASv/ugMsADICXAAtAqYACgGsAAoCqQAKAjMACgIDAAUBEABAAYQALQF4ABsBmgArAhgALAFEACwBOAAzAbIAJwGGACEBwAB/AmcARwLQAAUC6//8A2v//AHJ//wDef/8A13//ANn//wBNf+8AtAACgKgAFACUQBQArUACgJdAFACYQAjAt0AUAMWADIBPABQAqwAUALSAAoDgQA8AvQAUAIuACMDFgAyAtoAUAKEAFACUwAfAmUAFAKVAAUDZgAuAqMACgNNAEEDDwAoATz/4wKVAAUCagAtAgMAJQJNAEYBNQBEAlEAQQJqAC0CfQBGAi0ACAJfAC0CAwAlAfQAPAJNAEYCZwAwATUARAJGAEYCIwALAlIARgImAAoCLAAxAl4ALQJRAEYCZABGAfQALQJ3AC0B4wAKAlEAQQMWAC0CKgAKAy4AQQNKADABNf/ZAlEAQQJeAC0CUQBBA0oAMAJdAFACXQBQAy4AFAJRAFACrgAyAkUAJQE8AFABPP/jAhEACgRqABQEMwBQAwMAFAKsAFAC9ABQAowAFALaAFAC0AAKAooAUAKgAFACUQBQAzYAFAJdAFAD1wAKAmIAGQL0AFAC9ABQAqwAUAMVABQDgQA8At0AUAMWADIC2gBQAoQAUAKIADICZQAUAowAFANmAC4CowAKAxYAUAKoACgD/ABQBDgAUAMFABQDnwBQApMAUAKpACgEOQBQArEAKAIpACMCWQAtAlYARgHFAEYCpgAUAkcALQNRAAoB7wAeAmsARgJrAEYCSgBGAnMACgL5ADwCUQBGAl4ALQJRAEYCWwBGAfQALQINABQCIwAFAxoALQIqAAoCeABGAjgALQNcAEYDgwBGAn8AFAM4AEYCNABGAgkAHQNoAEYCSAAeAkcALQJHAC0CVwASAcUARgIJACMB5AAnASAANwEh/88BIP+4A4YACgNkAEYCVwASAkoARgJrAEYCIwAFAlEARgLrAA8CfAAKAxYAMgJfAC0DFwAKAlUACgM7AFACdgAyApQACgI2AAoCjgBQAmYARgI9AFABzwBGAnoAPAINADICpABQAjkARgP+AAoDaQAKAmIAGQHvAB4C4QBQAl4ARgMQAFACqgBGAsQACQJeAAIDHQAUApEAFAMnAFACewBGA0UAUAKNAEYEVQBQA2kARgMgADICeQAtAogAMgH0AC0CZgAUAfkACgKVAAUCJQAKApUABQIlAAoCzAAKAksACgOrABQCuQAKAtQAMgJNAB4CqAAyAjIAHgK8AFACTABGA3AACgLEAAoDcAAKAsQACgE8AFAD1wAKA1EACgK/AFACPgBGAz4ACgKjAAoC3gBQAlgARgMSAFACcwBGAqgAKAI4
|
|
|
|
@font-face{font-family:ff3;src:url('data:application/x-font-ttf;base64,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
|
|
|
|
@font-face{font-family:ff4;src:url('data:application/x-font-ttf;base64,AAEAAAASAQAABAAgRkZUTWUVDeAAAmNoAAAAHEdERUYguhu4AAJDTAAAAFBHUE9TH/IxZgACYoQAAADkR1NVQk1ilY4AAkOcAAAe6E9TLzKLUP0rAAABqAAAAGBjbWFwREYPHQAAFXwAAARmY3Z0IBNlC5MAACEcAAABaGZwZ212vUTEAAAZ5AAABiZnYXNwABIACQACQzwAAAAQZ2x5ZpAxCGoAACxAAAHX+GhlYWQBDifwAAABLAAAADZoaGVhCPsJFgAAAWQAAAAkaG10eDyrsFMAAAIIAAATdGxvY2FMer4cAAAihAAACbxtYXhwBmsClQAAAYgAAAAgbmFtZQoSiJ4AAgQ4AAAJV3Bvc3R6MaBWAAINkAAANatwcmVwH0+R4wAAIAwAAAEOAAEAAAAAsKSy9oneXw889QAfA+gAAAAAzmwZpwAAAADObBmn/1b/IwWsA/YAAQAIAAIAAAAAAAAAAQAAA/b/IwAABcD/Vv9VBawAAQAAAAAAAAAAAAAAAAAABN0AAQAABN0AcAAHAGkABgACABAALwBZAAABFAGKAAMAAQADAp8CvAAFAAACvAKKAAAAjAK8AooAAAHdAHgA+gAAAgsIBAMGAgMCBOAAAv9QACBbAAAAAAAAAABEQU1BACAAIPsEA/b/IwAAA/YA3SAAAJ9WAQAAAg4CtQAAACAAAwFsACEAAAAAAU0AAAIpAAACTQBFAk0AQALDAEYCTQBBAsMARgJNAEECwwBGAk0AQQLDAEYCTQBBAsMARgJNAEEDtAAUAxAACgKVAAUCIwAFAmIAIwH0ACMCYgAjAfQAIwJiACMB9AAjAUkARgJcAAgDKwAPAooAUAJcAEYCXP/xAoP/+wKIABQC0AAyAiQALQLsAAoDbAAPAooALQJcAC0CUQAqAl4AIwLaADICZwAtAj7/0ALZADIC0QAKA3EARgGzAFABagACArcAUAJDAEYBWAAKAiMACwPWAEYC9P/QAmYARgMWADIDFgAyAl8ALQQyADIDZQAtAw8ADwJcAEYCmwBQAkYAKAHlACgCUwAfAaH/2AG8AEECjgAPAbwAQQJmABQC6wBGAnIAQQMFACMC1ABGAsv/9wJfAAUCYgAjAfQAIwJmABQCZgA3AgMAKAIGAAoCNQAUAiwACgIAAAoB6QAnAkwARgFCAFoCMQBaAjoAHgEeADIFFABQBL8AUARHAC0EQgBQA1AAUAJbAEYFAQBQBBMAUANuAEYC0QAKAikAIwE8AAMBIf/1AxYAMgJfAC0CwwBGAk0AQQLDAEYCTQBBAsMARgJNAEECwwBGAk0AQQLDAEYCTQBBAkgALQLRAAoCKQAjAtEACgIpACMD4gAKA2oAIwLYADICWgAtAr4AMgJSAC0CrABQAkMAMwMWADICXwAtAxYAMgJfAC0CZgAUAgMABQEh/7gFFABQBL8AUARHAC0CvgAyAlIALQQlAFACnwBQAvQAUAJNAEYC0QAKAikAIwPiAAoDagAjAxYAMgJfAC0C0QAKAikAIwLRAAoCKQAjAl4AUAJIAC0CXgBQAkgALQE8/7kBIf+sATz//QEh/+8DFgAyAl8ALQMWADICXwAtApsAUAGmAAACmwBQAaYARgLDAEYCTQA0AsMARgJNAEECRgAlAeUAJwJmABQBvABBAjgADwHdAAoC3gBQAk0ARgLAAFADDgAtAsgAMgJWACgCYgAjAfQAIwLRAAoCKQAjAl4AUAJIAC0DFgAyAl8ALQMWADICXwAtAxYAMgJfAC0DFgAyAl8ALQKVAAUCIwAFAf3/+wMEAEYB/f/7ASH/uAOXAC0DlwAtAucACgKVADICAgAtAj4ACgJgABEB5QAoAfQAIwH7AAIBwgAHAqAACgLtAAoC0gAKAl4AUAJVAC0CJgAKASv/ugMsADICXAAtAqYACgGsAAoCqQAKAjMACgIDAAUBEABAAYQALQF4ABsBmgArAhgALAFEACwBOAAzAbIAJwGGACEBwAB/AmcARwLRAAUC6//8A2v//AHJ//wDef/8A13//ANn//wBNf+8AtEACgKgAFACUQBQArUACgJeAFACYgAjAt4AUAMWADIBPABQAqwAUALSAAoDgQA8AvQAUAIuACMDFgAyAtoAUAKEAFACUwAfAmYAFAKVAAUDZgAuAqMACgNNAEEDDwAoATz/4wKVAAUCagAtAgMAJQJNAEYBNQBEAlEAQQJqAC0CfQBGAi0ACAJfAC0CAwAlAfQAPAJNAEYCZwAwATUARAJGAEYCIwALAlIARgImAAoCLAAxAl8ALQJRAEYCZABGAfQALQJ3AC0B4wAKAlEAQQMWAC0CKgAKAy4AQQNKADABNf/ZAlEAQQJfAC0CUQBBA0oAMAJeAFACXgBQAy4AFAJRAFACrgAyAkYAJQE8AFABPP/jAhEACgRqABQEMwBQAwMAFAKsAFAC9ABQAowAFALaAFAC0QAKAooAUAKgAFACUQBQAzYAFAJeAFAD1wAKAmIAGQL0AFAC9ABQAqwAUAMVABQDgQA8At4AUAMWADIC2gBQAoQAUAKIADICZgAUAowAFANmAC4CowAKAxYAUAKoACgD/ABQBDgAUAMFABQDnwBQApMAUAKpACgEOQBQArEAKAIpACMCWQAtAlYARgHFAEYCpgAUAkgALQNRAAoB7wAeAmsARgJrAEYCSgBGAnMACgL5ADwCUQBGAl8ALQJRAEYCXABGAfQALQINABQCIwAFAxoALQIqAAoCeABGAjgALQNcAEYDgwBGAn8AFAM4AEYCNABGAgkAHQNoAEYCSAAeAkgALQJIAC0CVwASAcUARgIJACMB5QAnASEANwEh/88BIf+4A4YACgNkAEYCVwASAkoARgJrAEYCIwAFAlEARgLrAA8CfAAKAxYAMgJfAC0DFwAKAlUACgM7AFACdgAyApQACgI2AAoCjgBQAmYARgI9AFABzwBGAnoAPAINADICpABQAjkARgP+AAoDaQAKAmIAGQHvAB4C4QBQAl4ARgMQAFACqgBGAsQACQJeAAIDHQAUApEAFAMnAFACewBGA0UAUAKNAEYEVQBQA2kARgMgADICeQAtAogAMgH0AC0CZgAUAfkACgKVAAUCJQAKApUABQIlAAoCzAAKAksACgOrABQCuQAKAtQAMgJNAB4CqAAyAjIAHgK8AFACTQBGA3AACgLEAAoDcAAKAsQACgE8AFAD1wAKA1EACgK/AFACPgBGAz4ACgKjAAoC3gBQAlgARgMSAFACcwBGAqgAKAI4AC0DuAA8AxoAMgEhAEYC0QAKAikAIwLRAAoCKQAjA+IACgNqACMCXgBQAkgALQLaADICSAAtAtoAMgJIAC0D1wAKA1EACgJiABkB7wAeAmYAFAIDAAUC9ABQAmsARgL0AFACawBGAxYAMgJfAC0DFgAyAl8ALQMWADICXwAtAqkAKAIJAB0CjAAUAiMABQKMABQCIwAFAowAFAIjAAUCqAAoAjgALQJRAFABxQBGA58AUAM4AEYDtAAUAxAACgO0ABQDEAAKA7QAFAMQAAoClQAFAiMABQJqAC0CagAtAmoALQJqAC0CagAtAmoALQJqAC0CagAtAu4ADQLuAAoDyv/9A6z//gN6//gDmAAIAzL/9wMy//cCAwAlAgMAJQIDACUCAwAlAgMAJQIDACUC/wADAusAAAPjAAcDxAAHA7wAAgPOAAICTQBGAk0ARgJNAEYCTQBGAk0ARgJNAEYCTQBGAk0ARgN/AAMDbgAABGMABwREAAcEPAACBE4AAgPj//cD4f/3ATUANgE1AEQBNf++ATX/ygE1/+ABNf/XATX/+AE1//gB2QADAdsAAALBAAcCogAHApoAAgKsAAICQf/3Aj//9wJfAC0CXwAtAl8ALQJfAC0CXwAtAl8ALQODAAMDoQAABIcABwRpAAgERgACBG4AEgJRAEECUQBBAlEAQQJRAEECUQBBAlEAQQJRAEECUQBBAzT/9gP8//4ELv/+A9L/7QNKADADSgAwA0oAMANK
|
|
|
|
@font-face{font-family:ff5;src:url('data:application/x-font-ttf;base64,AAEAAAASAQAABAAgRkZUTWUVDhEAAypoAAAAHEdERUYi7h3mAAMIEAAAAFBHUE9T2G/ooAADKYgAAADeR1NVQlWx8sAAAwhgAAAhJk9TLzKLK/z6AAABqAAAAGBjbWFwU58ewwAAFZQAAASmY3Z0IBQCAiwAACRsAAAAOGZwZ20x/KCVAAAaPAAACZZnYXNwAAAAEAADCAgAAAAIZ2x5Zm6PJSsAADg0AAKOdGhlYWQBByg0AAABLAAAADZoaGVhCOQJFgAAAWQAAAAkaG10eBcJkCkAAAIIAAATimxvY2EG+zPIAAAkpAAAE5BtYXhwBhwDbwAAAYgAAAAgbmFtZUvzgQMAAsaoAAAMZnBvc3QaaU0aAALTEAAANPdwcmVwssXFcgAAI9QAAACVAAEAAAAAsKTGNL9uXw889QAfA+gAAAAAzmwZ2wAAAADObBnb/wP/IwX2A9EAAwAIAAIAAQAAAAAAAQAAA9H/IwAABeL/A/7LBfYAZAAXAAAAAAAAAAAAAAAABOIAAQAABOMAcAAHAG0ABwACACgANgBsAAAAkgJZAAQAAQADAosCvAAFAAACvAKKAAAAjAK8AooAAAHdAHgA+gAAAgsIBAMGAgoCBOAAAv9QACBbAAAAAAAAAABEQU1BACEAIPsEA9H/IwAAA9EA3SAAAJ9WAQAAAg4CtQAAACAAAwFsACEAAAAAAU0AAAABAAAC9QB7ApAASwJNAGQCEgBkAbb/3AE7AGUCPQBkAakARgIU/+cCNQBGAsoASwI1AEYBOABLARsARgE4AEsBGwBGATgASwEbAEYBOP/9ARv/8gE4AEsBGwBGA0kASwJMAEYCBAAUASL/pgKWAEsCMQBGAj4ARgI0AEsBOwBlAjQASwE7ACwCNABLATsAUgI0AEsB9QBSAjQAJgE7ADAC5gBLAjcARgLmAEsCNwBGAuYASwI3AEYCWwBSAuYASwI3AEYC9QB7Aj0AZAL1AHsCPQBkAvUAewI9AGQCkABLAakARgKQAEsBqf/iApAASwGpAEYCLwAoAeMAMgIvACgB4wAyAi8AKAHjADICUgB9AaAAYAJSAJEBoABlAlIAiQGgAGUCqwB4AkUAZAKrAHgCRQBkAqsAeAJFAGQCqwB4AkUAZAKrAHgCRQBkAqsAeQJFAGQDqACgAzAAggKMAKoCFP/nAn4ALQIOADwCfgAtAg4APAJ+AC0CDgA8AbP/2gI/AEYDKgCHAn0ASwI/AEYCPwBGAooAWgJ6ADICugB7AiUAZALOAEEDaACIAo0AXwJOAGQCKwAeAlAAKALdAHgCUgBkAjD/tQLMAHsCwgCXA2YARgGcAHIBZwBVArgASwIxAEYBbQBeAiIAHgPMAG4C5v+1AjAARgL1AHsC9QB7AkUAZAQVAIMDNQBkAxsAhwJCABkClQBLAiUAPAHjAE8CRAAeAboAbgGgAGUChgCHAaAAZAJSAJEC6gB4AmMAZAMnAIwCzAByArYAjAJT/90CfgAtAg4APAJdACMCZwBkAgQAKAH0//UCJwAoAj4APAH8ADwB6AA4AkEAGQEwAB4CHwAeAjwAPAEnAFAE+gBLBJcASwQkAGQEQgBLA0cASwJhAFIE4wBLBAkASwNxAEYCygAPAkwAZAE4AEsBGwBGAvUAewI9AGQCqwB4AkUAZAKrAHgCRQBkAqsAeAJFAGQCqwB4AkUAZAKrAHgCRQBkAhIAVQLKAA8CTABkAsoADwJMAGQD0QAAA0UAWgKwAHsCTQAhArAAewI3ACEClgBLAjEARgL1AHsCPgBkAvUAewI+AGQCXQAjAen/9gEi/6YFBABLBJcASwQkAGQCsAB7AjcAIQP6AEsCtgAoAuYASwI3AEYC0AAOAkwAZAPRAAADRQBaAvUAZQI+AEgCygAPAkwAZALKAA8CTABkAlIASwISAGQCUgBLAhIAZAE4AEsBGwAgATgASwEbAEYC9QB7Aj0AZAL1AHsCPQBkApAASwGpAEYCkABLAakARgKrAHgCRQBkAqsAeAJFAGQCLwAoAeMAMgJSAHcBoABVAlIAAAHh//YCygBLAjUARgK5AEsC6gBkAtIAXwJWAGwCfgAtAg4APALKAA8CTABkAlIASwISAGQC9QB7Aj0AZAL1AHsCPQBkAvUAewI9AGQC9QB7Aj0AZAKMAKoCFP/nAeX/2ALrAEYB8v/OASL/pgNqAGQDagBkAsAACgJ2AHMB9ABkAjQASgKsAAoB4wAyAesAKAH6AG4BqgBaApwAPAL1AG4CvAAPAmYASwIlAGMCCwAUAW7/xAMVAHsCTABkAp4AQQHBAFACjACBAiP/5wHp//YBEAA2AYQARwF4AIYBmgA/AhgALAFEACwBOAAvAbIAEgGGACsBwABiAmcARgLjACgC6AB4A2AAeAHOAHgDcwB4Anj/nAOSAHgBSQBpAsoADwKSAEsCKgBLAsEACgJSAEsCfgAtAsoASwL1AHsBOABLApYASwK8AA8DbgA3AuYASwJfADIC9QB7AsIASwJ/AEsCRAAeAlIAkQKMAKoDPgBzAp0ADwMzAJYDJwA8ATgASwKMAKoCYABkAfgAWgIwAEYBSQBpAjAAbgJgAGQCfQAeAhMAiAI/AGQB+ABaAf0AZAIwAEYCUgB4AUkAaQI+AEYCIgAeAngAIwIiAH0B6ABaAj0AZAJRAFACTgAeAd8AZAJiAGQB2QBkAjAAbgMKAG4CJQAUAwwAbgNCAGQBSQBpAjAAbgI9AGQCMABuA0IAZAJSAEsCUgBLAxEAkQIqAEsCpQB7Ai8AKAE4AEsBOABLAgQAFAQUACgEEABLAvcAkQKWAEsC3ABLAmwAPALCAEsCygAPAn0ASwKSAEsCKgBLA0n//gJSAEsD8wAeAlwAKALcAEsC3ABLApYASwLNACgDbgA3AsoASwL1AHsCwgBLAn8ASwJ+AHsCUgCRAmwAPAM+AHMCnQAPAw4ASwKZAJYD5ABLBCYASwLgAJEDmQBLAnoASwKMAEEELQBLAqEAKAJMAGQCQwBuAigAQQHjAE8CNwBkAhIAZAOlABQB2AAoAkUAZAJFAGQCPgBGAmIAMgLEADICUwBGAj0AZAI3AEYCQgAZAeAAZANOAEYCFP/nAwoAZAIlABQCTwBkAiYAdwNdAGQDZwBkAlgAbgM1AEYCGgBGAe4AMgNbAEYCMAAUAhIAZAISAGQCMQBGAeMATwHpAGQB4wAyARsARgEbAEYBIv+mA1QAKANLAEYCNQBGAj4ARgJFAGQCFP/nAkUAZALaAIIDOQBGAvUAewI+AGQDAgCgAk0AbgMIAEsCYwBkAoUAVQIVAEsCkwBLAk4AGQI7AEsBywBGAlMAVQHiAFACngBLAioARgQHAB4DuQAUAlwAKAHYACgCwwBLAlcARgMYAEsCnQBGAtQAVQJNAEYC8QCRAnEAbgL1AEsCfwBGAzYASwKKAEYEJQBLA1QARgMHAHMCbgBkAn4AewHgAGQCUgCRA5AARgKMAKoCBgCCAngAmAIGAEwC0gAPAksACgN9AJECrgBuAtoAlgJVAHcCowCWAjAAdwKMAEsCNQBGA3MAegKUAFoDcwB6ApQAWgE4AEsD8wAeA6UAFAKlAEsCQwBGAvkAKAKBADICygBLAkoARgLwAEsCZwBGApkAlgIhAHcDoQA3AvsAMgEiAEYCygAPAkwAZALKAA8CTABkA9EAAANFAFoCUgBLAhIAZALYAHMCGwBYAtgAcwIbAFgD8wAeA6UAFAJcACgB2AAoAl0AIwHp//YC3ABLAkUAZALcAEsCRQBkAvUAewI9AGQC9QB7Aj4AZAL1AHsCPgBkAowAQQHuADICbAA8AhT/5wJsADwCFP/nAmwAPAIU/+cCmQCWAiYAdwIqAEsB4wBQA5kASwM1AEYDqACgAzAAggOoAKADMACCA6gAoAMwAIICjACqAhT/5wJgAGQCYABkAmAAZAJgAGQCYABkAmAAZAJgAGQCYABkAtkAHgLtADIDyQCAA7UAlAOXAH0DoQCRAzgAfQM4
|
|
|
|
.m1{transform:matrix(0.000000,-0.304078,0.304078,0.000000,0,0);-ms-transform:matrix(0.000000,-0.304078,0.304078,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.304078,0.304078,0.000000,0,0);}
|
|
|
|
.m3{transform:matrix(0.267588,0.000000,0.000000,0.304078,0,0);-ms-transform:matrix(0.267588,0.000000,0.000000,0.304078,0,0);-webkit-transform:matrix(0.267588,0.000000,0.000000,0.304078,0,0);}
|
|
|
|
.m4{transform:matrix(0.273670,0.000000,0.000000,0.304078,0,0);-ms-transform:matrix(0.273670,0.000000,0.000000,0.304078,0,0);-webkit-transform:matrix(0.273670,0.000000,0.000000,0.304078,0,0);}
|
|
|
|
.m5{transform:matrix(0.299929,-0.050057,0.050057,0.299929,0,0);-ms-transform:matrix(0.299929,-0.050057,0.050057,0.299929,0,0);-webkit-transform:matrix(0.299929,-0.050057,0.050057,0.299929,0,0);}
|
|
|
|
.m6{transform:matrix(0.302272,0.000000,0.000000,0.304078,0,0);-ms-transform:matrix(0.302272,0.000000,0.000000,0.304078,0,0);-webkit-transform:matrix(0.302272,0.000000,0.000000,0.304078,0,0);}
|
|
|
|
.m0{transform:matrix(0.304078,0.000000,0.000000,0.304078,0,0);-ms-transform:matrix(0.304078,0.000000,0.000000,0.304078,0,0);-webkit-transform:matrix(0.304078,0.000000,0.000000,0.304078,0,0);}
|
|
|
|
.m2{transform:matrix(1.216311,0.000000,0.000000,1.216311,0,0);-ms-transform:matrix(1.216311,0.000000,0.000000,1.216311,0,0);-webkit-transform:matrix(1.216311,0.000000,0.000000,1.216311,0,0);}
|
2013-05-04 13:38:05 +00:00
|
|
|
.v0{vertical-align:0.000000px;}
|
2013-02-28 14:56:45 +00:00
|
|
|
.ls0{letter-spacing:0.000000px;}
|
|
|
|
.sc_{text-shadow:none;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.sc1{text-shadow:-0.015em 0 rgb(22,20,18),0 0.015em rgb(22,20,18),0.015em 0 rgb(22,20,18),0 -0.015em rgb(22,20,18);}
|
|
|
|
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em transparent;}
|
2013-02-12 09:43:37 +00:00
|
|
|
@media screen and (-webkit-min-device-pixel-ratio:0){
|
2013-02-28 14:56:45 +00:00
|
|
|
.sc_{-webkit-text-stroke:0px transparent;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.sc1{-webkit-text-stroke:0.015em rgb(22,20,18);text-shadow:none;}
|
|
|
|
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-05-06 03:04:48 +00:00
|
|
|
.ws0{word-spacing:0.000000px;}
|
|
|
|
._c{display:inline;margin-left:-16.756000px;}
|
2013-05-04 13:38:05 +00:00
|
|
|
._1{display:inline;margin-left:-14.112000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._4{display:inline;margin-left:-11.520000px;}
|
|
|
|
._e{display:inline;margin-left:-10.400000px;}
|
2013-05-04 13:38:05 +00:00
|
|
|
._2{display:inline;margin-left:-8.352000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._29{display:inline;margin-left:-6.960000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._a{display:inline;margin-left:-4.160000px;}
|
|
|
|
._b{display:inline;margin-left:-1.456000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._8{display:inline-block;width:2.040000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._5{display:inline-block;width:7.616000px;}
|
|
|
|
._6{display:inline-block;width:8.784000px;}
|
|
|
|
._0{display:inline-block;width:11.328000px;}
|
|
|
|
._1f{display:inline-block;width:13.816000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._7{display:inline-block;width:16.320000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._24{display:inline-block;width:17.700000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._28{display:inline-block;width:22.608000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._9{display:inline-block;width:24.856000px;}
|
|
|
|
._20{display:inline-block;width:26.664000px;}
|
|
|
|
._25{display:inline-block;width:33.740000px;}
|
|
|
|
._d{display:inline-block;width:46.044040px;}
|
|
|
|
._3{display:inline-block;width:51.552000px;}
|
|
|
|
._22{display:inline-block;width:53.064040px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2b{display:inline-block;width:61.124000px;}
|
|
|
|
._26{display:inline-block;width:79.904000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._21{display:inline-block;width:95.980000px;}
|
|
|
|
._16{display:inline-block;width:112.096000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._27{display:inline-block;width:126.288000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._10{display:inline-block;width:132.000000px;}
|
|
|
|
._23{display:inline-block;width:137.352000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2a{display:inline-block;width:167.560000px;}
|
|
|
|
._30{display:inline-block;width:183.798760px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._1d{display:inline-block;width:197.616000px;}
|
|
|
|
._1e{display:inline-block;width:202.704000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2c{display:inline-block;width:205.344000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._12{display:inline-block;width:218.608000px;}
|
|
|
|
._11{display:inline-block;width:223.728000px;}
|
|
|
|
._15{display:inline-block;width:231.120000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2f{display:inline-block;width:232.237480px;}
|
|
|
|
._f{display:inline-block;width:244.008000px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._14{display:inline-block;width:252.768000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2e{display:inline-block;width:301.879120px;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._1a{display:inline-block;width:324.144000px;}
|
|
|
|
._1c{display:inline-block;width:344.064000px;}
|
|
|
|
._17{display:inline-block;width:346.752000px;}
|
|
|
|
._19{display:inline-block;width:380.320000px;}
|
|
|
|
._1b{display:inline-block;width:382.176000px;}
|
|
|
|
._18{display:inline-block;width:419.008000px;}
|
|
|
|
._13{display:inline-block;width:474.288000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2d{display:inline-block;width:559.816000px;}
|
2013-02-28 14:56:45 +00:00
|
|
|
.fc9{color:rgb(237,23,0);}
|
2013-09-28 05:30:57 +00:00
|
|
|
.fc7{color:rgb(205,85,29);}
|
2013-02-28 14:56:45 +00:00
|
|
|
.fc6{color:rgb(54,113,179);}
|
2013-09-28 05:30:57 +00:00
|
|
|
.fc4{color:rgb(255,240,197);}
|
2013-02-28 14:56:45 +00:00
|
|
|
.fc3{color:rgb(255,255,255);}
|
|
|
|
.fc2{color:rgb(234,234,244);}
|
2013-09-28 05:30:57 +00:00
|
|
|
.fc8{color:rgb(0,0,0);}
|
|
|
|
.fc1{color:rgb(22,20,18);}
|
|
|
|
.fc5{color:rgb(181,57,15);}
|
|
|
|
.fc0{color:rgb(119,121,128);}
|
2013-05-04 13:38:05 +00:00
|
|
|
.fsd{font-size:28.000000px;}
|
|
|
|
.fs2{font-size:32.000000px;}
|
|
|
|
.fs3{font-size:36.000000px;}
|
|
|
|
.fs7{font-size:40.000000px;}
|
|
|
|
.fsc{font-size:44.000000px;}
|
|
|
|
.fs0{font-size:48.000000px;}
|
|
|
|
.fs9{font-size:60.000000px;}
|
|
|
|
.fse{font-size:60.000174px;}
|
|
|
|
.fs5{font-size:68.000000px;}
|
|
|
|
.fs6{font-size:104.000000px;}
|
|
|
|
.fsa{font-size:124.000000px;}
|
|
|
|
.fs4{font-size:168.000000px;}
|
|
|
|
.fs11{font-size:251.382720px;}
|
|
|
|
.fs8{font-size:284.000000px;}
|
|
|
|
.fs1{font-size:288.000000px;}
|
|
|
|
.fs12{font-size:310.408800px;}
|
|
|
|
.fs10{font-size:318.323040px;}
|
|
|
|
.fsf{font-size:321.051360px;}
|
|
|
|
.fsb{font-size:324.294240px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.y0{bottom:0.000000px;}
|
|
|
|
.y24{bottom:4.865244px;}
|
|
|
|
.y1{bottom:17.410639px;}
|
|
|
|
.y3b9{bottom:36.962302px;}
|
|
|
|
.y245{bottom:38.330980px;}
|
|
|
|
.y2b4{bottom:38.514923px;}
|
|
|
|
.y3a7{bottom:38.634851px;}
|
|
|
|
.yb0{bottom:39.660360px;}
|
|
|
|
.y311{bottom:39.672523px;}
|
|
|
|
.y134{bottom:40.675955px;}
|
|
|
|
.y2c6{bottom:40.779694px;}
|
|
|
|
.y406{bottom:40.928923px;}
|
|
|
|
.y123{bottom:41.989571px;}
|
|
|
|
.y1a9{bottom:42.600329px;}
|
|
|
|
.y1b9{bottom:42.938464px;}
|
|
|
|
.y69{bottom:44.059039px;}
|
|
|
|
.y146{bottom:44.739638px;}
|
|
|
|
.y276{bottom:44.939660px;}
|
|
|
|
.y382{bottom:45.178470px;}
|
|
|
|
.y85{bottom:46.323810px;}
|
|
|
|
.yfa{bottom:46.506256px;}
|
|
|
|
.y249{bottom:47.433864px;}
|
|
|
|
.y274{bottom:47.540120px;}
|
|
|
|
.y30b{bottom:48.809779px;}
|
|
|
|
.y321{bottom:48.940958px;}
|
|
|
|
.y8f{bottom:50.123273px;}
|
|
|
|
.y29c{bottom:50.615563px;}
|
|
|
|
.y2dd{bottom:50.688541px;}
|
|
|
|
.y3cf{bottom:51.527796px;}
|
|
|
|
.y9{bottom:52.725290px;}
|
|
|
|
.y1ca{bottom:53.723845px;}
|
|
|
|
.y26f{bottom:53.752331px;}
|
|
|
|
.y2cc{bottom:53.928234px;}
|
|
|
|
.y1bd{bottom:55.140251px;}
|
|
|
|
.y2e8{bottom:55.305658px;}
|
|
|
|
.y2b3{bottom:56.759587px;}
|
|
|
|
.y3a6{bottom:56.879515px;}
|
|
|
|
.yaf{bottom:57.905023px;}
|
|
|
|
.y157{bottom:58.857735px;}
|
|
|
|
.y190{bottom:58.918356px;}
|
|
|
|
.y2c5{bottom:59.024358px;}
|
|
|
|
.y405{bottom:59.173587px;}
|
|
|
|
.y14e{bottom:60.234234px;}
|
|
|
|
.y1a8{bottom:60.844993px;}
|
|
|
|
.y1b8{bottom:61.183127px;}
|
|
|
|
.y68{bottom:62.303702px;}
|
|
|
|
.y213{bottom:63.211678px;}
|
|
|
|
.y381{bottom:63.423134px;}
|
|
|
|
.y84{bottom:64.568473px;}
|
|
|
|
.y8e{bottom:64.719004px;}
|
|
|
|
.yf9{bottom:64.750920px;}
|
|
|
|
.y248{bottom:65.678527px;}
|
|
|
|
.y273{bottom:65.784784px;}
|
|
|
|
.y2f3{bottom:66.737545px;}
|
|
|
|
.y36a{bottom:66.962781px;}
|
|
|
|
.y27a{bottom:68.049555px;}
|
|
|
|
.y27f{bottom:68.800408px;}
|
|
|
|
.y29b{bottom:68.860226px;}
|
|
|
|
.y133{bottom:69.867417px;}
|
|
|
|
.y175{bottom:70.446953px;}
|
|
|
|
.y385{bottom:70.472726px;}
|
|
|
|
.y40e{bottom:70.577049px;}
|
|
|
|
.y1c1{bottom:71.617275px;}
|
|
|
|
.y26e{bottom:71.996995px;}
|
|
|
|
.y156{bottom:73.453466px;}
|
|
|
|
.y2e7{bottom:73.550321px;}
|
|
|
|
.y122{bottom:74.829966px;}
|
|
|
|
.y2b2{bottom:75.004251px;}
|
|
|
|
.y3a5{bottom:75.124179px;}
|
|
|
|
.yae{bottom:76.149687px;}
|
|
|
|
.y18f{bottom:77.163020px;}
|
|
|
|
.y2c4{bottom:77.269022px;}
|
|
|
|
.y3e2{bottom:77.728945px;}
|
|
|
|
.y411{bottom:78.117277px;}
|
|
|
|
.y8d{bottom:79.314735px;}
|
|
|
|
.y1b7{bottom:79.427791px;}
|
|
|
|
.y67{bottom:80.548366px;}
|
|
|
|
.y145{bottom:81.228965px;}
|
|
|
|
.y212{bottom:81.456342px;}
|
|
|
|
.y380{bottom:81.667798px;}
|
|
|
|
.y83{bottom:82.813137px;}
|
|
|
|
.yf8{bottom:82.995584px;}
|
|
|
|
.y2fe{bottom:83.034335px;}
|
|
|
|
.y5{bottom:84.097951px;}
|
|
|
|
.y346{bottom:84.907126px;}
|
|
|
|
.y369{bottom:85.207445px;}
|
|
|
|
.y1c0{bottom:86.213006px;}
|
|
|
|
.y279{bottom:86.294219px;}
|
|
|
|
.y29a{bottom:87.104890px;}
|
|
|
|
.y2dc{bottom:87.177869px;}
|
|
|
|
.y6{bottom:88.184755px;}
|
|
|
|
.y174{bottom:88.691616px;}
|
|
|
|
.y23c{bottom:88.788423px;}
|
|
|
|
.y40d{bottom:88.821713px;}
|
|
|
|
.y1c9{bottom:90.213173px;}
|
|
|
|
.y1bc{bottom:91.629579px;}
|
|
|
|
.y1bf{bottom:91.641730px;}
|
|
|
|
.y2e6{bottom:91.794985px;}
|
|
|
|
.y35b{bottom:92.907983px;}
|
|
|
|
.y8c{bottom:93.910466px;}
|
|
|
|
.yad{bottom:94.394351px;}
|
|
|
|
.y110{bottom:95.148342px;}
|
|
|
|
.y18e{bottom:95.407684px;}
|
|
|
|
.y2c3{bottom:95.513685px;}
|
|
|
|
.y404{bottom:95.662915px;}
|
|
|
|
.y14d{bottom:96.723562px;}
|
|
|
|
.y1a7{bottom:97.334320px;}
|
|
|
|
.y1b6{bottom:97.672455px;}
|
|
|
|
.y2cb{bottom:97.715427px;}
|
|
|
|
.y66{bottom:98.793030px;}
|
|
|
|
.y132{bottom:99.058879px;}
|
|
|
|
.y144{bottom:99.473629px;}
|
|
|
|
.y211{bottom:99.701006px;}
|
|
|
|
.y37f{bottom:99.912462px;}
|
|
|
|
.y82{bottom:101.057801px;}
|
|
|
|
.yf7{bottom:101.240248px;}
|
|
|
|
.y2fd{bottom:101.278999px;}
|
|
|
|
.y155{bottom:102.644929px;}
|
|
|
|
.y23b{bottom:103.384154px;}
|
|
|
|
.y368{bottom:103.452109px;}
|
|
|
|
.y278{bottom:104.538883px;}
|
|
|
|
.y3bb{bottom:104.575980px;}
|
|
|
|
.y261{bottom:105.691921px;}
|
|
|
|
.y173{bottom:106.936280px;}
|
|
|
|
.y21f{bottom:107.101042px;}
|
|
|
|
.y4b{bottom:108.513227px;}
|
|
|
|
.y10f{bottom:109.744073px;}
|
|
|
|
.y1bb{bottom:109.874243px;}
|
|
|
|
.y1be{bottom:109.886394px;}
|
|
|
|
.y2e5{bottom:110.039649px;}
|
|
|
|
.y244{bottom:111.309636px;}
|
|
|
|
.y2b1{bottom:111.493578px;}
|
|
|
|
.y3a4{bottom:111.613507px;}
|
|
|
|
.yac{bottom:112.639015px;}
|
|
|
|
.y310{bottom:112.651178px;}
|
|
|
|
.y18d{bottom:113.652348px;}
|
|
|
|
.y403{bottom:113.907578px;}
|
|
|
|
.y14c{bottom:114.968226px;}
|
|
|
|
.y1a6{bottom:115.578984px;}
|
|
|
|
.y1b5{bottom:115.917119px;}
|
|
|
|
.y65{bottom:117.037694px;}
|
|
|
|
.y143{bottom:117.718293px;}
|
|
|
|
.y275{bottom:117.918315px;}
|
|
|
|
.y2f2{bottom:117.950535px;}
|
|
|
|
.y37e{bottom:118.157126px;}
|
|
|
|
.y81{bottom:119.302465px;}
|
|
|
|
.yf6{bottom:119.484911px;}
|
|
|
|
.y247{bottom:120.412519px;}
|
|
|
|
.y272{bottom:120.518776px;}
|
|
|
|
.y345{bottom:121.396453px;}
|
|
|
|
.y367{bottom:121.696773px;}
|
|
|
|
.y27d{bottom:122.783547px;}
|
|
|
|
.y299{bottom:123.594218px;}
|
|
|
|
.y2db{bottom:123.667196px;}
|
|
|
|
.y39{bottom:125.080015px;}
|
|
|
|
.y172{bottom:125.180944px;}
|
|
|
|
.y21e{bottom:125.345705px;}
|
|
|
|
.y1c8{bottom:126.702500px;}
|
|
|
|
.y27e{bottom:127.183332px;}
|
|
|
|
.y33a{bottom:127.234746px;}
|
|
|
|
.y131{bottom:128.250341px;}
|
|
|
|
.y2e4{bottom:128.284313px;}
|
|
|
|
.y121{bottom:129.563957px;}
|
|
|
|
.y2b0{bottom:129.738242px;}
|
|
|
|
.y3a3{bottom:129.858170px;}
|
|
|
|
.y418{bottom:129.873909px;}
|
|
|
|
.yab{bottom:130.883679px;}
|
|
|
|
.y154{bottom:131.836391px;}
|
|
|
|
.y18c{bottom:131.897012px;}
|
|
|
|
.y2c2{bottom:132.003013px;}
|
|
|
|
.y402{bottom:132.152242px;}
|
|
|
|
.y14b{bottom:133.212890px;}
|
|
|
|
.y1a5{bottom:133.823648px;}
|
|
|
|
.y64{bottom:135.282358px;}
|
|
|
|
.y142{bottom:135.962956px;}
|
|
|
|
.y210{bottom:136.190334px;}
|
|
|
|
.y23a{bottom:136.224548px;}
|
|
|
|
.y37d{bottom:136.401789px;}
|
|
|
|
.y21{bottom:137.579750px;}
|
|
|
|
.y22{bottom:138.508829px;}
|
|
|
|
.y10e{bottom:138.935535px;}
|
|
|
|
.y344{bottom:139.641117px;}
|
|
|
|
.y366{bottom:139.941437px;}
|
|
|
|
.y27c{bottom:141.028210px;}
|
|
|
|
.y298{bottom:141.838882px;}
|
|
|
|
.y130{bottom:142.846072px;}
|
|
|
|
.y21d{bottom:143.590369px;}
|
|
|
|
.y1c7{bottom:144.947164px;}
|
|
|
|
.y153{bottom:146.432122px;}
|
|
|
|
.y2e3{bottom:146.528976px;}
|
|
|
|
.y120{bottom:147.808621px;}
|
|
|
|
.y2af{bottom:147.982906px;}
|
|
|
|
.y3a2{bottom:148.102834px;}
|
|
|
|
.y417{bottom:148.118573px;}
|
|
|
|
.yaa{bottom:149.128342px;}
|
|
|
|
.y30f{bottom:149.140505px;}
|
|
|
|
.y18b{bottom:150.141675px;}
|
|
|
|
.y2c1{bottom:150.247677px;}
|
|
|
|
.y3c4{bottom:150.554966px;}
|
|
|
|
.y3e1{bottom:150.707600px;}
|
|
|
|
.y4a{bottom:152.300420px;}
|
|
|
|
.y1b4{bottom:152.406446px;}
|
|
|
|
.y63{bottom:153.527021px;}
|
|
|
|
.y10d{bottom:153.531266px;}
|
|
|
|
.y141{bottom:154.207620px;}
|
|
|
|
.y20f{bottom:154.434997px;}
|
|
|
|
.y239{bottom:154.469212px;}
|
|
|
|
.y37c{bottom:154.646453px;}
|
|
|
|
.y80{bottom:155.791792px;}
|
|
|
|
.yf5{bottom:155.974239px;}
|
|
|
|
.y246{bottom:156.901846px;}
|
|
|
|
.y271{bottom:157.008103px;}
|
|
|
|
.y355{bottom:157.796273px;}
|
|
|
|
.y365{bottom:158.186100px;}
|
|
|
|
.y27b{bottom:159.272874px;}
|
|
|
|
.y297{bottom:160.083545px;}
|
|
|
|
.y2da{bottom:160.156524px;}
|
|
|
|
.y350{bottom:160.324241px;}
|
|
|
|
.y38{bottom:161.569342px;}
|
|
|
|
.y171{bottom:161.670272px;}
|
|
|
|
.y21c{bottom:161.835033px;}
|
|
|
|
.yeb{bottom:162.880452px;}
|
|
|
|
.y1c6{bottom:163.191828px;}
|
|
|
|
.y14{bottom:164.529162px;}
|
|
|
|
.y1a{bottom:165.079360px;}
|
|
|
|
.y35a{bottom:165.886638px;}
|
|
|
|
.y49{bottom:166.896151px;}
|
|
|
|
.ya9{bottom:167.373006px;}
|
|
|
|
.y10c{bottom:168.126997px;}
|
|
|
|
.y389{bottom:168.276287px;}
|
|
|
|
.y1f{bottom:169.382242px;}
|
|
|
|
.y16{bottom:170.647206px;}
|
|
|
|
.y1b3{bottom:170.651110px;}
|
|
|
|
.y62{bottom:171.771685px;}
|
|
|
|
.y140{bottom:172.452284px;}
|
|
|
|
.y20e{bottom:172.679661px;}
|
|
|
|
.y238{bottom:172.713876px;}
|
|
|
|
.y37b{bottom:172.891117px;}
|
|
|
|
.y7f{bottom:174.036456px;}
|
|
|
|
.yf4{bottom:174.218903px;}
|
|
|
|
.y2fc{bottom:174.257654px;}
|
|
|
|
.y33c{bottom:174.580865px;}
|
|
|
|
.y12f{bottom:175.686467px;}
|
|
|
|
.y30a{bottom:176.522425px;}
|
|
|
|
.y31f{bottom:176.653604px;}
|
|
|
|
.y3fe{bottom:176.657059px;}
|
|
|
|
.y16b{bottom:178.306985px;}
|
|
|
|
.y296{bottom:178.328209px;}
|
|
|
|
.y2d9{bottom:178.401188px;}
|
|
|
|
.y170{bottom:179.914935px;}
|
|
|
|
.y21b{bottom:180.079697px;}
|
|
|
|
.y48{bottom:181.491883px;}
|
|
|
|
.y10b{bottom:182.722728px;}
|
|
|
|
.y2e2{bottom:183.018304px;}
|
|
|
|
.y11f{bottom:184.297948px;}
|
|
|
|
.y3a1{bottom:184.592162px;}
|
|
|
|
.yb8{bottom:185.617670px;}
|
|
|
|
.y161{bottom:185.996490px;}
|
|
|
|
.y18a{bottom:186.631003px;}
|
|
|
|
.y2c0{bottom:186.737004px;}
|
|
|
|
.y401{bottom:186.886234px;}
|
|
|
|
.y14a{bottom:187.946881px;}
|
|
|
|
.y1a4{bottom:188.557639px;}
|
|
|
|
.y1b2{bottom:188.895774px;}
|
|
|
|
.y61{bottom:190.016349px;}
|
|
|
|
.y13f{bottom:190.696948px;}
|
|
|
|
.y20d{bottom:190.924325px;}
|
|
|
|
.y37a{bottom:191.135781px;}
|
|
|
|
.y7e{bottom:192.281120px;}
|
|
|
|
.yf3{bottom:192.463566px;}
|
|
|
|
.y2fb{bottom:192.502318px;}
|
|
|
|
.y12e{bottom:193.931131px;}
|
|
|
|
.y309{bottom:194.767089px;}
|
|
|
|
.y320{bottom:194.898268px;}
|
|
|
|
.y47{bottom:196.087614px;}
|
|
|
|
.y393{bottom:196.268747px;}
|
|
|
|
.y10a{bottom:197.318459px;}
|
|
|
|
.y16f{bottom:198.159599px;}
|
|
|
|
.y328{bottom:198.419476px;}
|
|
|
|
.y1c5{bottom:199.681155px;}
|
|
|
|
.y1ed{bottom:200.052130px;}
|
|
|
|
.y339{bottom:200.213401px;}
|
|
|
|
.y2e1{bottom:201.262968px;}
|
|
|
|
.y11e{bottom:202.542612px;}
|
|
|
|
.y26c{bottom:202.543853px;}
|
|
|
|
.y2ae{bottom:202.716897px;}
|
|
|
|
.y3a0{bottom:202.836826px;}
|
|
|
|
.y416{bottom:202.852565px;}
|
|
|
|
.ya8{bottom:203.862334px;}
|
|
|
|
.y160{bottom:204.241154px;}
|
|
|
|
.y189{bottom:204.875667px;}
|
|
|
|
.y2bf{bottom:204.981668px;}
|
|
|
|
.y3c3{bottom:205.288957px;}
|
|
|
|
.y3e0{bottom:205.441592px;}
|
|
|
|
.y20{bottom:206.528901px;}
|
|
|
|
.y1a3{bottom:206.802303px;}
|
|
|
|
.y1b1{bottom:207.140438px;}
|
|
|
|
.y60{bottom:208.261013px;}
|
|
|
|
.y13e{bottom:208.941612px;}
|
|
|
|
.y237{bottom:209.203204px;}
|
|
|
|
.y379{bottom:209.380444px;}
|
|
|
|
.y7d{bottom:210.525784px;}
|
|
|
|
.yf2{bottom:210.708230px;}
|
|
|
|
.y3ee{bottom:210.881615px;}
|
|
|
|
.y109{bottom:211.914190px;}
|
|
|
|
.y354{bottom:212.530264px;}
|
|
|
|
.y364{bottom:212.920092px;}
|
|
|
|
.yea{bottom:213.965511px;}
|
|
|
|
.y295{bottom:214.817537px;}
|
|
|
|
.y2d8{bottom:214.890515px;}
|
|
|
|
.y37{bottom:216.303333px;}
|
|
|
|
.y21a{bottom:216.569024px;}
|
|
|
|
.y327{bottom:216.664140px;}
|
|
|
|
.y177{bottom:218.457396px;}
|
|
|
|
.y338{bottom:218.458065px;}
|
|
|
|
.y2e0{bottom:219.507632px;}
|
|
|
|
.y3fd{bottom:219.714465px;}
|
|
|
|
.y11d{bottom:220.787276px;}
|
|
|
|
.y26b{bottom:220.788517px;}
|
|
|
|
.y2ad{bottom:220.961561px;}
|
|
|
|
.y39f{bottom:221.081489px;}
|
|
|
|
.y415{bottom:221.097228px;}
|
|
|
|
.ya7{bottom:222.106998px;}
|
|
|
|
.y15f{bottom:222.485818px;}
|
|
|
|
.y188{bottom:223.120330px;}
|
|
|
|
.y236{bottom:223.798935px;}
|
|
|
|
.y46{bottom:225.279076px;}
|
|
|
|
.y1b0{bottom:225.385101px;}
|
|
|
|
.y5f{bottom:226.505677px;}
|
|
|
|
.y108{bottom:226.509921px;}
|
|
|
|
.y20c{bottom:227.413653px;}
|
|
|
|
.y378{bottom:227.625108px;}
|
|
|
|
.y7c{bottom:228.770447px;}
|
|
|
|
.yf1{bottom:228.952894px;}
|
|
|
|
.y16a{bottom:229.392043px;}
|
|
|
|
.y12d{bottom:230.420458px;}
|
|
|
|
.y353{bottom:230.774928px;}
|
|
|
|
.y363{bottom:231.164755px;}
|
|
|
|
.ye9{bottom:232.210175px;}
|
|
|
|
.y1ec{bottom:232.892525px;}
|
|
|
|
.y294{bottom:233.062201px;}
|
|
|
|
.y2d7{bottom:233.135179px;}
|
|
|
|
.y34f{bottom:233.302896px;}
|
|
|
|
.y36{bottom:234.547997px;}
|
|
|
|
.y16e{bottom:234.648927px;}
|
|
|
|
.y326{bottom:234.908804px;}
|
|
|
|
.y1c4{bottom:236.170483px;}
|
|
|
|
.y337{bottom:236.702729px;}
|
|
|
|
.y343{bottom:237.432515px;}
|
|
|
|
.y359{bottom:238.865293px;}
|
|
|
|
.y45{bottom:239.874807px;}
|
|
|
|
.ya6{bottom:240.351661px;}
|
|
|
|
.y107{bottom:241.105652px;}
|
|
|
|
.y2be{bottom:241.470996px;}
|
|
|
|
.y400{bottom:241.620225px;}
|
|
|
|
.y149{bottom:242.680872px;}
|
|
|
|
.y1a2{bottom:243.291631px;}
|
|
|
|
.y1af{bottom:243.629765px;}
|
|
|
|
.y2ca{bottom:243.659139px;}
|
|
|
|
.y5e{bottom:244.750340px;}
|
|
|
|
.y13d{bottom:245.430939px;}
|
|
|
|
.y20b{bottom:245.658316px;}
|
|
|
|
.y377{bottom:245.869772px;}
|
|
|
|
.y7b{bottom:247.015111px;}
|
|
|
|
.yf0{bottom:247.197558px;}
|
|
|
|
.y169{bottom:247.636707px;}
|
|
|
|
.y12c{bottom:248.665122px;}
|
|
|
|
.y352{bottom:249.019592px;}
|
|
|
|
.y362{bottom:249.409419px;}
|
|
|
|
.ye8{bottom:250.454839px;}
|
|
|
|
.y1eb{bottom:251.137189px;}
|
|
|
|
.y293{bottom:251.306864px;}
|
|
|
|
.y348{bottom:251.310623px;}
|
|
|
|
.y35{bottom:252.792661px;}
|
|
|
|
.y16d{bottom:252.893591px;}
|
|
|
|
.y40c{bottom:253.023687px;}
|
|
|
|
.y44{bottom:254.470538px;}
|
|
|
|
.y106{bottom:255.701384px;}
|
|
|
|
.y2df{bottom:255.996959px;}
|
|
|
|
.y3fc{bottom:256.203793px;}
|
|
|
|
.y1e1{bottom:257.313616px;}
|
|
|
|
.y2ac{bottom:257.450889px;}
|
|
|
|
.y39e{bottom:257.570817px;}
|
|
|
|
.y414{bottom:257.586556px;}
|
|
|
|
.ya5{bottom:258.596325px;}
|
|
|
|
.y30e{bottom:258.608488px;}
|
|
|
|
.y312{bottom:258.909525px;}
|
|
|
|
.y3b8{bottom:259.007523px;}
|
|
|
|
.y13c{bottom:260.026670px;}
|
|
|
|
.y243{bottom:260.186092px;}
|
|
|
|
.y1a1{bottom:261.536295px;}
|
|
|
|
.y1ae{bottom:261.874429px;}
|
|
|
|
.y2c9{bottom:261.903803px;}
|
|
|
|
.y5d{bottom:262.995004px;}
|
|
|
|
.y20a{bottom:263.902980px;}
|
|
|
|
.y376{bottom:264.114436px;}
|
|
|
|
.y7a{bottom:265.259775px;}
|
|
|
|
.yef{bottom:265.442222px;}
|
|
|
|
.y2fa{bottom:265.480973px;}
|
|
|
|
.y33b{bottom:265.804184px;}
|
|
|
|
.y12b{bottom:266.909786px;}
|
|
|
|
.y308{bottom:267.745744px;}
|
|
|
|
.y3d4{bottom:267.865113px;}
|
|
|
|
.y43{bottom:269.066269px;}
|
|
|
|
.y1ea{bottom:269.381853px;}
|
|
|
|
.y292{bottom:269.551528px;}
|
|
|
|
.y2d6{bottom:269.624507px;}
|
|
|
|
.y18{bottom:270.737431px;}
|
|
|
|
.y34{bottom:271.037325px;}
|
|
|
|
.y16c{bottom:271.138254px;}
|
|
|
|
.y3ed{bottom:272.183686px;}
|
|
|
|
.y10{bottom:273.352500px;}
|
|
|
|
.y342{bottom:273.921843px;}
|
|
|
|
.y3fb{bottom:274.448457px;}
|
|
|
|
.y11c{bottom:275.521267px;}
|
|
|
|
.y26a{bottom:275.522508px;}
|
|
|
|
.y2ab{bottom:275.695552px;}
|
|
|
|
.y39d{bottom:275.815481px;}
|
|
|
|
.y413{bottom:275.831220px;}
|
|
|
|
.ya4{bottom:276.840989px;}
|
|
|
|
.y15e{bottom:277.219809px;}
|
|
|
|
.y1d8{bottom:277.379097px;}
|
|
|
|
.y219{bottom:277.871095px;}
|
|
|
|
.y2bd{bottom:277.960323px;}
|
|
|
|
.y3ff{bottom:278.109553px;}
|
|
|
|
.y1a0{bottom:279.780958px;}
|
|
|
|
.y1ad{bottom:280.119093px;}
|
|
|
|
.y2c8{bottom:280.148467px;}
|
|
|
|
.y5c{bottom:281.239668px;}
|
|
|
|
.y209{bottom:282.147644px;}
|
|
|
|
.y375{bottom:282.359100px;}
|
|
|
|
.y1d{bottom:283.505424px;}
|
|
|
|
.y42{bottom:283.662000px;}
|
|
|
|
.yee{bottom:283.686885px;}
|
|
|
|
.y168{bottom:284.126035px;}
|
|
|
|
.y12a{bottom:285.154450px;}
|
|
|
|
.y361{bottom:285.898747px;}
|
|
|
|
.ye7{bottom:286.944166px;}
|
|
|
|
.y1e9{bottom:287.626517px;}
|
|
|
|
.y291{bottom:287.796192px;}
|
|
|
|
.y2d5{bottom:287.869171px;}
|
|
|
|
.y33{bottom:289.281989px;}
|
|
|
|
.y1e0{bottom:290.154011px;}
|
|
|
|
.y3ec{bottom:290.428350px;}
|
|
|
|
.y176{bottom:291.436051px;}
|
|
|
|
.y336{bottom:291.436720px;}
|
|
|
|
.y341{bottom:292.166507px;}
|
|
|
|
.y3fa{bottom:292.693120px;}
|
|
|
|
.y11b{bottom:293.765931px;}
|
|
|
|
.y269{bottom:293.767172px;}
|
|
|
|
.y2aa{bottom:293.940216px;}
|
|
|
|
.y39c{bottom:294.060144px;}
|
|
|
|
.y412{bottom:294.075884px;}
|
|
|
|
.ya3{bottom:295.085653px;}
|
|
|
|
.y15d{bottom:295.464473px;}
|
|
|
|
.y1d7{bottom:295.623761px;}
|
|
|
|
.y218{bottom:296.115759px;}
|
|
|
|
.y2bc{bottom:296.204987px;}
|
|
|
|
.y3c2{bottom:296.512276px;}
|
|
|
|
.y3df{bottom:296.664911px;}
|
|
|
|
.y41{bottom:298.257731px;}
|
|
|
|
.y1ac{bottom:298.363757px;}
|
|
|
|
.y2c7{bottom:298.393131px;}
|
|
|
|
.y5b{bottom:299.484332px;}
|
|
|
|
.y208{bottom:300.392308px;}
|
|
|
|
.y374{bottom:300.603763px;}
|
|
|
|
.y79{bottom:301.749103px;}
|
|
|
|
.yed{bottom:301.931549px;}
|
|
|
|
.y167{bottom:302.370698px;}
|
|
|
|
.y129{bottom:303.399114px;}
|
|
|
|
.y351{bottom:303.753583px;}
|
|
|
|
.y360{bottom:304.143411px;}
|
|
|
|
.y26d{bottom:305.207792px;}
|
|
|
|
.y277{bottom:305.230184px;}
|
|
|
|
.y290{bottom:306.040856px;}
|
|
|
|
.y2d4{bottom:306.113834px;}
|
|
|
|
.y34e{bottom:306.281551px;}
|
|
|
|
.y32{bottom:307.526652px;}
|
|
|
|
.y1df{bottom:308.398674px;}
|
|
|
|
.y3eb{bottom:308.673013px;}
|
|
|
|
.y3c8{bottom:309.896561px;}
|
|
|
|
.y3d8{bottom:310.212194px;}
|
|
|
|
.y235{bottom:311.373321px;}
|
|
|
|
.y358{bottom:311.843948px;}
|
|
|
|
.y40{bottom:312.853462px;}
|
|
|
|
.ya2{bottom:313.330317px;}
|
|
|
|
.y15c{bottom:313.709137px;}
|
|
|
|
.y1d6{bottom:313.868425px;}
|
|
|
|
.y2bb{bottom:314.449651px;}
|
|
|
|
.y3de{bottom:314.909575px;}
|
|
|
|
.ye6{bottom:316.135628px;}
|
|
|
|
.y19f{bottom:316.270286px;}
|
|
|
|
.y1ab{bottom:316.608420px;}
|
|
|
|
.y260{bottom:316.698172px;}
|
|
|
|
.y5a{bottom:317.728995px;}
|
|
|
|
.y13b{bottom:318.409594px;}
|
|
|
|
.y251{bottom:318.739154px;}
|
|
|
|
.y373{bottom:318.848427px;}
|
|
|
|
.y78{bottom:319.993766px;}
|
|
|
|
.yec{bottom:320.176213px;}
|
|
|
|
.y166{bottom:320.615362px;}
|
|
|
|
.y128{bottom:321.643777px;}
|
|
|
|
.y307{bottom:322.479736px;}
|
|
|
|
.y1e8{bottom:324.115844px;}
|
|
|
|
.y28f{bottom:324.285519px;}
|
|
|
|
.y2d3{bottom:324.358498px;}
|
|
|
|
.y3cd{bottom:325.197753px;}
|
|
|
|
.y40b{bottom:326.002342px;}
|
|
|
|
.y3f{bottom:327.449193px;}
|
|
|
|
.y335{bottom:327.926048px;}
|
|
|
|
.y3ad{bottom:328.635047px;}
|
|
|
|
.y3f9{bottom:329.182448px;}
|
|
|
|
.y148{bottom:330.255259px;}
|
|
|
|
.y268{bottom:330.256499px;}
|
|
|
|
.y2a9{bottom:330.429544px;}
|
|
|
|
.y39b{bottom:330.549472px;}
|
|
|
|
.ya1{bottom:331.574980px;}
|
|
|
|
.y15b{bottom:331.953800px;}
|
|
|
|
.y3b7{bottom:331.986179px;}
|
|
|
|
.y13a{bottom:333.005325px;}
|
|
|
|
.y3dd{bottom:333.154238px;}
|
|
|
|
.y19e{bottom:334.514950px;}
|
|
|
|
.y25f{bottom:334.942836px;}
|
|
|
|
.y59{bottom:335.973659px;}
|
|
|
|
.y207{bottom:336.881635px;}
|
|
|
|
.y250{bottom:336.983818px;}
|
|
|
|
.y372{bottom:337.093091px;}
|
|
|
|
.y77{bottom:338.238430px;}
|
|
|
|
.y165{bottom:338.860026px;}
|
|
|
|
.ycd{bottom:339.956202px;}
|
|
|
|
.y306{bottom:340.724399px;}
|
|
|
|
.y3e{bottom:342.044924px;}
|
|
|
|
.yda{bottom:342.220973px;}
|
|
|
|
.y1e7{bottom:342.360508px;}
|
|
|
|
.y28e{bottom:342.530183px;}
|
|
|
|
.y347{bottom:342.533942px;}
|
|
|
|
.y31{bottom:344.015980px;}
|
|
|
|
.y1de{bottom:344.888002px;}
|
|
|
|
.y31a{bottom:345.223692px;}
|
|
|
|
.y334{bottom:346.170711px;}
|
|
|
|
.y340{bottom:346.900498px;}
|
|
|
|
.y3f8{bottom:347.427112px;}
|
|
|
|
.y11a{bottom:348.499922px;}
|
|
|
|
.y1fa{bottom:348.587412px;}
|
|
|
|
.y2a8{bottom:348.674208px;}
|
|
|
|
.y39a{bottom:348.794136px;}
|
|
|
|
.ya0{bottom:349.819644px;}
|
|
|
|
.y15a{bottom:350.198464px;}
|
|
|
|
.y1d5{bottom:350.357752px;}
|
|
|
|
.y217{bottom:350.849750px;}
|
|
|
|
.y2ba{bottom:350.938979px;}
|
|
|
|
.y3dc{bottom:351.398902px;}
|
|
|
|
.y19d{bottom:352.759614px;}
|
|
|
|
.y1aa{bottom:353.097748px;}
|
|
|
|
.y25e{bottom:353.187500px;}
|
|
|
|
.y58{bottom:354.218323px;}
|
|
|
|
.y206{bottom:355.126299px;}
|
|
|
|
.y24f{bottom:355.228481px;}
|
|
|
|
.y371{bottom:355.337755px;}
|
|
|
|
.y3d{bottom:356.640655px;}
|
|
|
|
.y164{bottom:357.104690px;}
|
|
|
|
.ycc{bottom:358.200866px;}
|
|
|
|
.ye0{bottom:359.249313px;}
|
|
|
|
.yd9{bottom:360.465637px;}
|
|
|
|
.y2d2{bottom:360.847826px;}
|
|
|
|
.y30{bottom:362.260644px;}
|
|
|
|
.y228{bottom:363.000696px;}
|
|
|
|
.y31b{bottom:363.366185px;}
|
|
|
|
.y3ea{bottom:363.407005px;}
|
|
|
|
.y333{bottom:364.415375px;}
|
|
|
|
.y33f{bottom:365.145162px;}
|
|
|
|
.y3f7{bottom:365.671776px;}
|
|
|
|
.y119{bottom:366.744586px;}
|
|
|
|
.y1f9{bottom:366.832075px;}
|
|
|
|
.y399{bottom:367.038800px;}
|
|
|
|
.y9f{bottom:368.064308px;}
|
|
|
|
.y159{bottom:368.443128px;}
|
|
|
|
.y1d4{bottom:368.602416px;}
|
|
|
|
.y216{bottom:369.094414px;}
|
|
|
|
.y2b9{bottom:369.183642px;}
|
|
|
|
.y3c1{bottom:369.490931px;}
|
|
|
|
.ya{bottom:370.575649px;}
|
|
|
|
.y3c{bottom:371.236386px;}
|
|
|
|
.y25d{bottom:371.432163px;}
|
|
|
|
.y57{bottom:372.462987px;}
|
|
|
|
.y205{bottom:373.370963px;}
|
|
|
|
.y370{bottom:373.582419px;}
|
|
|
|
.y76{bottom:374.727758px;}
|
|
|
|
.y163{bottom:375.349353px;}
|
|
|
|
.ycb{bottom:376.445529px;}
|
|
|
|
.ydf{bottom:377.493977px;}
|
|
|
|
.ydc{bottom:378.710300px;}
|
|
|
|
.y1e6{bottom:378.849835px;}
|
|
|
|
.y28d{bottom:379.019511px;}
|
|
|
|
.y2d1{bottom:379.092490px;}
|
|
|
|
.y34d{bottom:379.260207px;}
|
|
|
|
.y3ce{bottom:379.931744px;}
|
|
|
|
.yd{bottom:381.352395px;}
|
|
|
|
.y13{bottom:382.063937px;}
|
|
|
|
.y332{bottom:382.660039px;}
|
|
|
|
.y1e{bottom:383.843534px;}
|
|
|
|
.y357{bottom:384.822603px;}
|
|
|
|
.y3b{bottom:385.832117px;}
|
|
|
|
.y9e{bottom:386.308972px;}
|
|
|
|
.y30d{bottom:386.321135px;}
|
|
|
|
.y3cc{bottom:386.499823px;}
|
|
|
|
.y19{bottom:387.616773px;}
|
|
|
|
.y3c0{bottom:387.735595px;}
|
|
|
|
.y3db{bottom:387.888230px;}
|
|
|
|
.y19c{bottom:389.248941px;}
|
|
|
|
.y25c{bottom:389.676827px;}
|
|
|
|
.y56{bottom:390.707651px;}
|
|
|
|
.y105{bottom:390.834804px;}
|
|
|
|
.y127{bottom:390.973500px;}
|
|
|
|
.y139{bottom:391.388250px;}
|
|
|
|
.y204{bottom:391.615627px;}
|
|
|
|
.y24e{bottom:391.717809px;}
|
|
|
|
.y36f{bottom:391.827082px;}
|
|
|
|
.y86{bottom:392.972422px;}
|
|
|
|
.y2f9{bottom:393.193620px;}
|
|
|
|
.yca{bottom:394.690193px;}
|
|
|
|
.yde{bottom:395.738641px;}
|
|
|
|
.y227{bottom:395.841091px;}
|
|
|
|
.yd8{bottom:396.954964px;}
|
|
|
|
.y1e5{bottom:397.094499px;}
|
|
|
|
.y28c{bottom:397.264175px;}
|
|
|
|
.y2d0{bottom:397.337153px;}
|
|
|
|
.y2f1{bottom:397.749483px;}
|
|
|
|
.y2f{bottom:398.749971px;}
|
|
|
|
.y319{bottom:399.957683px;}
|
|
|
|
.y331{bottom:400.904703px;}
|
|
|
|
.y33e{bottom:401.634489px;}
|
|
|
|
.y3f6{bottom:402.161103px;}
|
|
|
|
.y118{bottom:403.233914px;}
|
|
|
|
.y1f8{bottom:403.321403px;}
|
|
|
|
.y2a7{bottom:403.408199px;}
|
|
|
|
.y398{bottom:403.528127px;}
|
|
|
|
.y9d{bottom:404.553635px;}
|
|
|
|
.y3cb{bottom:404.744487px;}
|
|
|
|
.y3a{bottom:405.805815px;}
|
|
|
|
.y3bf{bottom:405.980259px;}
|
|
|
|
.y3da{bottom:406.132894px;}
|
|
|
|
.y25b{bottom:407.921491px;}
|
|
|
|
.y55{bottom:408.952314px;}
|
|
|
|
.y203{bottom:409.860291px;}
|
|
|
|
.y234{bottom:409.894505px;}
|
|
|
|
.y24d{bottom:409.962473px;}
|
|
|
|
.y36e{bottom:410.071746px;}
|
|
|
|
.y75{bottom:411.217085px;}
|
|
|
|
.yb5{bottom:411.761494px;}
|
|
|
|
.y162{bottom:411.838681px;}
|
|
|
|
.yc9{bottom:412.934857px;}
|
|
|
|
.ydd{bottom:413.983305px;}
|
|
|
|
.yd7{bottom:415.199628px;}
|
|
|
|
.y28b{bottom:415.508838px;}
|
|
|
|
.y2f0{bottom:415.994147px;}
|
|
|
|
.y2e{bottom:416.994635px;}
|
|
|
|
.y32b{bottom:417.017307px;}
|
|
|
|
.y318{bottom:418.202347px;}
|
|
|
|
.y3d2{bottom:418.506972px;}
|
|
|
|
.y104{bottom:420.026266px;}
|
|
|
|
.y126{bottom:420.164962px;}
|
|
|
|
.y138{bottom:420.579712px;}
|
|
|
|
.y147{bottom:421.478578px;}
|
|
|
|
.y1f7{bottom:421.566067px;}
|
|
|
|
.y2a6{bottom:421.652863px;}
|
|
|
|
.y397{bottom:421.772791px;}
|
|
|
|
.y9c{bottom:422.798299px;}
|
|
|
|
.y1d3{bottom:423.336407px;}
|
|
|
|
.y215{bottom:423.828405px;}
|
|
|
|
.y2b8{bottom:423.917634px;}
|
|
|
|
.y3be{bottom:424.224922px;}
|
|
|
|
.y19b{bottom:425.738269px;}
|
|
|
|
.y25a{bottom:426.166155px;}
|
|
|
|
.y54{bottom:427.196978px;}
|
|
|
|
.y202{bottom:428.104954px;}
|
|
|
|
.y233{bottom:428.139169px;}
|
|
|
|
.y24c{bottom:428.207137px;}
|
|
|
|
.y36d{bottom:428.316410px;}
|
|
|
|
.y74{bottom:429.461749px;}
|
|
|
|
.yb4{bottom:430.006158px;}
|
|
|
|
.yc8{bottom:431.179521px;}
|
|
|
|
.y305{bottom:431.947718px;}
|
|
|
|
.y41d{bottom:432.071624px;}
|
|
|
|
.ydb{bottom:433.444292px;}
|
|
|
|
.y1e4{bottom:433.583827px;}
|
|
|
|
.y28a{bottom:433.753502px;}
|
|
|
|
.y2cf{bottom:433.826481px;}
|
|
|
|
.y2ef{bottom:434.238810px;}
|
|
|
|
.y2d{bottom:435.239299px;}
|
|
|
|
.y32a{bottom:435.261971px;}
|
|
|
|
.y317{bottom:436.447011px;}
|
|
|
|
.y330{bottom:437.394030px;}
|
|
|
|
.y3c7{bottom:437.609208px;}
|
|
|
|
.y3f5{bottom:438.650431px;}
|
|
|
|
.y117{bottom:439.723241px;}
|
|
|
|
.y267{bottom:439.724482px;}
|
|
|
|
.y2a5{bottom:439.897527px;}
|
|
|
|
.y3a9{bottom:439.927448px;}
|
|
|
|
.yb6{bottom:440.940793px;}
|
|
|
|
.yb7{bottom:441.042963px;}
|
|
|
|
.y1d2{bottom:441.581071px;}
|
|
|
|
.y2b7{bottom:442.162297px;}
|
|
|
|
.y3bd{bottom:442.469586px;}
|
|
|
|
.y19a{bottom:443.982932px;}
|
|
|
|
.y316{bottom:444.136540px;}
|
|
|
|
.y3b0{bottom:444.244962px;}
|
|
|
|
.y53{bottom:445.441642px;}
|
|
|
|
.y201{bottom:446.349618px;}
|
|
|
|
.y232{bottom:446.383833px;}
|
|
|
|
.y24b{bottom:446.451800px;}
|
|
|
|
.y36c{bottom:446.561074px;}
|
|
|
|
.y73{bottom:447.706413px;}
|
|
|
|
.yb3{bottom:448.250822px;}
|
|
|
|
.yc7{bottom:449.424185px;}
|
|
|
|
.y242{bottom:449.930596px;}
|
|
|
|
.y304{bottom:450.192382px;}
|
|
|
|
.yd6{bottom:451.688955px;}
|
|
|
|
.y1e3{bottom:451.828491px;}
|
|
|
|
.y289{bottom:451.998166px;}
|
|
|
|
.y2ee{bottom:452.483474px;}
|
|
|
|
.y325{bottom:453.844769px;}
|
|
|
|
.y3e9{bottom:454.630324px;}
|
|
|
|
.y32f{bottom:455.638694px;}
|
|
|
|
.y33d{bottom:456.368481px;}
|
|
|
|
.y3f4{bottom:456.895095px;}
|
|
|
|
.y116{bottom:457.967905px;}
|
|
|
|
.y1f6{bottom:458.055394px;}
|
|
|
|
.y2a4{bottom:458.142190px;}
|
|
|
|
.y396{bottom:458.262119px;}
|
|
|
|
.y9b{bottom:459.287627px;}
|
|
|
|
.y1d1{bottom:459.825735px;}
|
|
|
|
.y384{bottom:460.178745px;}
|
|
|
|
.y388{bottom:460.190908px;}
|
|
|
|
.y181{bottom:461.223155px;}
|
|
|
|
.y199{bottom:462.227596px;}
|
|
|
|
.y259{bottom:462.655482px;}
|
|
|
|
.y52{bottom:463.686306px;}
|
|
|
|
.y103{bottom:463.813459px;}
|
|
|
|
.y200{bottom:464.594282px;}
|
|
|
|
.y231{bottom:464.628497px;}
|
|
|
|
.y36b{bottom:464.805738px;}
|
|
|
|
.y72{bottom:465.951077px;}
|
|
|
|
.yb2{bottom:466.495485px;}
|
|
|
|
.yc6{bottom:467.668848px;}
|
|
|
|
.y137{bottom:468.015838px;}
|
|
|
|
.y226{bottom:468.819746px;}
|
|
|
|
.yd5{bottom:469.933619px;}
|
|
|
|
.ye5{bottom:470.022994px;}
|
|
|
|
.y288{bottom:470.242830px;}
|
|
|
|
.y2ed{bottom:470.728138px;}
|
|
|
|
.y2c{bottom:471.728627px;}
|
|
|
|
.y324{bottom:472.089433px;}
|
|
|
|
.y3d3{bottom:472.575641px;}
|
|
|
|
.y3e8{bottom:472.874987px;}
|
|
|
|
.y32e{bottom:473.883358px;}
|
|
|
|
.y214{bottom:474.913464px;}
|
|
|
|
.y3f3{bottom:475.139758px;}
|
|
|
|
.y115{bottom:476.212569px;}
|
|
|
|
.y1f5{bottom:476.300058px;}
|
|
|
|
.y2a3{bottom:476.386854px;}
|
|
|
|
.y395{bottom:476.506782px;}
|
|
|
|
.y9a{bottom:477.532291px;}
|
|
|
|
.y102{bottom:478.409190px;}
|
|
|
|
.y2b6{bottom:478.651625px;}
|
|
|
|
.y3bc{bottom:478.958914px;}
|
|
|
|
.y198{bottom:480.472260px;}
|
|
|
|
.y1dd{bottom:481.282676px;}
|
|
|
|
.y2de{bottom:481.501004px;}
|
|
|
|
.y3ca{bottom:481.645696px;}
|
|
|
|
.y1ff{bottom:482.838946px;}
|
|
|
|
.y230{bottom:482.873161px;}
|
|
|
|
.y3b6{bottom:482.999061px;}
|
|
|
|
.y71{bottom:484.195741px;}
|
|
|
|
.ye4{bottom:484.618725px;}
|
|
|
|
.y187{bottom:485.113703px;}
|
|
|
|
.y24a{bottom:485.541589px;}
|
|
|
|
.y303{bottom:486.681710px;}
|
|
|
|
.y15{bottom:488.242152px;}
|
|
|
|
.y1e2{bottom:488.317818px;}
|
|
|
|
.y287{bottom:488.487494px;}
|
|
|
|
.y2ec{bottom:488.972802px;}
|
|
|
|
.y28{bottom:489.973290px;}
|
|
|
|
.y329{bottom:489.995962px;}
|
|
|
|
.y40a{bottom:490.204316px;}
|
|
|
|
.ye{bottom:491.327580px;}
|
|
|
|
.y32d{bottom:492.128022px;}
|
|
|
|
.y1b{bottom:493.357603px;}
|
|
|
|
.y3f2{bottom:493.384422px;}
|
|
|
|
.y114{bottom:494.457233px;}
|
|
|
|
.y1f4{bottom:494.544722px;}
|
|
|
|
.y2a2{bottom:494.631518px;}
|
|
|
|
.y394{bottom:494.751446px;}
|
|
|
|
.y99{bottom:495.776954px;}
|
|
|
|
.y1d9{bottom:496.315063px;}
|
|
|
|
.y241{bottom:497.366721px;}
|
|
|
|
.y197{bottom:498.716924px;}
|
|
|
|
.y258{bottom:499.144810px;}
|
|
|
|
.y51{bottom:500.175633px;}
|
|
|
|
.y1fe{bottom:501.083609px;}
|
|
|
|
.y22f{bottom:501.117824px;}
|
|
|
|
.y3b5{bottom:501.243725px;}
|
|
|
|
.y70{bottom:502.440404px;}
|
|
|
|
.yb1{bottom:502.984813px;}
|
|
|
|
.yc5{bottom:504.158176px;}
|
|
|
|
.y136{bottom:504.505165px;}
|
|
|
|
.y180{bottom:505.010348px;}
|
|
|
|
.yd4{bottom:506.422947px;}
|
|
|
|
.y286{bottom:506.732157px;}
|
|
|
|
.y2eb{bottom:507.217465px;}
|
|
|
|
.y2b{bottom:508.217954px;}
|
|
|
|
.y323{bottom:508.578761px;}
|
|
|
|
.y3e7{bottom:509.364315px;}
|
|
|
|
.y34c{bottom:510.621786px;}
|
|
|
|
.y3c9{bottom:510.958789px;}
|
|
|
|
.y3f1{bottom:511.629086px;}
|
|
|
|
.y113{bottom:512.701897px;}
|
|
|
|
.y1f3{bottom:512.789386px;}
|
|
|
|
.y3a8{bottom:512.906103px;}
|
|
|
|
.y98{bottom:514.021618px;}
|
|
|
|
.y1d0{bottom:514.559726px;}
|
|
|
|
.y240{bottom:515.611385px;}
|
|
|
|
.y196{bottom:516.961588px;}
|
|
|
|
.y257{bottom:517.389474px;}
|
|
|
|
.y50{bottom:518.420297px;}
|
|
|
|
.y125{bottom:518.686146px;}
|
|
|
|
.y17f{bottom:519.606079px;}
|
|
|
|
.y6f{bottom:520.685068px;}
|
|
|
|
.y2f8{bottom:520.906266px;}
|
|
|
|
.yc4{bottom:522.402840px;}
|
|
|
|
.y302{bottom:523.171037px;}
|
|
|
|
.yd3{bottom:524.667611px;}
|
|
|
|
.y285{bottom:524.976821px;}
|
|
|
|
.y34b{bottom:525.217517px;}
|
|
|
|
.y2a{bottom:526.462618px;}
|
|
|
|
.y225{bottom:527.202670px;}
|
|
|
|
.y3e6{bottom:527.608979px;}
|
|
|
|
.y23{bottom:529.395326px;}
|
|
|
|
.y3f0{bottom:529.873750px;}
|
|
|
|
.y112{bottom:530.946560px;}
|
|
|
|
.y1f2{bottom:531.034050px;}
|
|
|
|
.y2a1{bottom:531.120846px;}
|
|
|
|
.y392{bottom:531.240774px;}
|
|
|
|
.y97{bottom:532.266282px;}
|
|
|
|
.y30c{bottom:532.278445px;}
|
|
|
|
.y124{bottom:533.281877px;}
|
|
|
|
.y135{bottom:533.696627px;}
|
|
|
|
.y17e{bottom:534.201810px;}
|
|
|
|
.y195{bottom:535.206251px;}
|
|
|
|
.y256{bottom:535.634137px;}
|
|
|
|
.y4f{bottom:536.664961px;}
|
|
|
|
.y101{bottom:536.792114px;}
|
|
|
|
.y1fd{bottom:537.572937px;}
|
|
|
|
.y22e{bottom:537.607152px;}
|
|
|
|
.y3b4{bottom:537.733052px;}
|
|
|
|
.y6e{bottom:538.929732px;}
|
|
|
|
.y2f7{bottom:539.150930px;}
|
|
|
|
.yc3{bottom:540.647503px;}
|
|
|
|
.y224{bottom:541.798401px;}
|
|
|
|
.yd2{bottom:542.912274px;}
|
|
|
|
.ye3{bottom:543.001649px;}
|
|
|
|
.y284{bottom:543.221485px;}
|
|
|
|
.y2ea{bottom:543.706793px;}
|
|
|
|
.y29{bottom:544.707282px;}
|
|
|
|
.y31e{bottom:544.881591px;}
|
|
|
|
.y3d9{bottom:545.566459px;}
|
|
|
|
.y3e5{bottom:545.853643px;}
|
|
|
|
.y3ac{bottom:547.571013px;}
|
|
|
|
.y17d{bottom:548.797541px;}
|
|
|
|
.y186{bottom:549.056469px;}
|
|
|
|
.y266{bottom:549.192465px;}
|
|
|
|
.y29d{bottom:549.365509px;}
|
|
|
|
.y391{bottom:549.485438px;}
|
|
|
|
.y96{bottom:550.510946px;}
|
|
|
|
.y100{bottom:551.387845px;}
|
|
|
|
.y22d{bottom:552.202883px;}
|
|
|
|
.y194{bottom:553.450915px;}
|
|
|
|
.y255{bottom:553.878801px;}
|
|
|
|
.y4c{bottom:554.909625px;}
|
|
|
|
.y3d1{bottom:554.964359px;}
|
|
|
|
.y3b3{bottom:555.977716px;}
|
|
|
|
.y6d{bottom:557.174396px;}
|
|
|
|
.ye2{bottom:557.597380px;}
|
|
|
|
.y32c{bottom:557.808811px;}
|
|
|
|
.ybf{bottom:558.892167px;}
|
|
|
|
.y301{bottom:559.660365px;}
|
|
|
|
.yd1{bottom:561.156938px;}
|
|
|
|
.y283{bottom:561.466149px;}
|
|
|
|
.y2e9{bottom:561.951457px;}
|
|
|
|
.y3ab{bottom:562.166744px;}
|
|
|
|
.y17c{bottom:563.393272px;}
|
|
|
|
.y185{bottom:563.652200px;}
|
|
|
|
.y3e3{bottom:564.098306px;}
|
|
|
|
.yff{bottom:565.983576px;}
|
|
|
|
.y3ef{bottom:566.363077px;}
|
|
|
|
.y1f1{bottom:567.523377px;}
|
|
|
|
.y2a0{bottom:567.610173px;}
|
|
|
|
.y390{bottom:567.730101px;}
|
|
|
|
.y95{bottom:568.755610px;}
|
|
|
|
.y1cf{bottom:569.293718px;}
|
|
|
|
.y23f{bottom:570.345377px;}
|
|
|
|
.y193{bottom:571.695579px;}
|
|
|
|
.y254{bottom:572.123465px;}
|
|
|
|
.y4e{bottom:573.154289px;}
|
|
|
|
.y1fc{bottom:574.062265px;}
|
|
|
|
.y3b2{bottom:574.222380px;}
|
|
|
|
.y6c{bottom:575.419059px;}
|
|
|
|
.y2f6{bottom:575.640258px;}
|
|
|
|
.yc2{bottom:577.136831px;}
|
|
|
|
.y17b{bottom:577.989003px;}
|
|
|
|
.y27{bottom:579.007250px;}
|
|
|
|
.yd0{bottom:579.401602px;}
|
|
|
|
.yfe{bottom:580.579307px;}
|
|
|
|
.y31d{bottom:581.370919px;}
|
|
|
|
.y409{bottom:581.427635px;}
|
|
|
|
.y17{bottom:582.530671px;}
|
|
|
|
.y34a{bottom:583.600441px;}
|
|
|
|
.y3d7{bottom:583.882151px;}
|
|
|
|
.y8{bottom:585.171416px;}
|
|
|
|
.y265{bottom:585.681792px;}
|
|
|
|
.y29f{bottom:585.854837px;}
|
|
|
|
.y38f{bottom:585.974765px;}
|
|
|
|
.y94{bottom:587.000273px;}
|
|
|
|
.y1ce{bottom:587.538381px;}
|
|
|
|
.y23e{bottom:588.590040px;}
|
|
|
|
.y192{bottom:589.940243px;}
|
|
|
|
.y253{bottom:590.368129px;}
|
|
|
|
.y4d{bottom:591.398952px;}
|
|
|
|
.y152{bottom:591.549471px;}
|
|
|
|
.y4{bottom:592.692864px;}
|
|
|
|
.yf{bottom:593.391878px;}
|
|
|
|
.y6b{bottom:593.663723px;}
|
|
|
|
.y2f5{bottom:593.884922px;}
|
|
|
|
.y1c{bottom:595.282025px;}
|
|
|
|
.yc1{bottom:595.381495px;}
|
|
|
|
.y300{bottom:596.149693px;}
|
|
|
|
.ycf{bottom:597.646266px;}
|
|
|
|
.y356{bottom:597.830804px;}
|
|
|
|
.y1fb{bottom:598.875007px;}
|
|
|
|
.y31c{bottom:599.615583px;}
|
|
|
|
.y408{bottom:599.672299px;}
|
|
|
|
.y41c{bottom:600.192041px;}
|
|
|
|
.ye1{bottom:601.384573px;}
|
|
|
|
.y3c6{bottom:601.811182px;}
|
|
|
|
.y410{bottom:602.104021px;}
|
|
|
|
.y223{bottom:603.830258px;}
|
|
|
|
.y29e{bottom:604.099501px;}
|
|
|
|
.y38e{bottom:604.219429px;}
|
|
|
|
.y93{bottom:605.244937px;}
|
|
|
|
.y1cd{bottom:605.783045px;}
|
|
|
|
.y2b5{bottom:606.364272px;}
|
|
|
|
.y322{bottom:606.370159px;}
|
|
|
|
.yc{bottom:607.569198px;}
|
|
|
|
.y191{bottom:608.184907px;}
|
|
|
|
.y252{bottom:608.612793px;}
|
|
|
|
.y7{bottom:609.984159px;}
|
|
|
|
.y1f0{bottom:610.580784px;}
|
|
|
|
.y3b1{bottom:610.711707px;}
|
|
|
|
.y6a{bottom:611.908387px;}
|
|
|
|
.y2f4{bottom:612.129585px;}
|
|
|
|
.yc0{bottom:613.626159px;}
|
|
|
|
.y2ff{bottom:614.394356px;}
|
|
|
|
.yce{bottom:615.890930px;}
|
|
|
|
.y3{bottom:616.995972px;}
|
|
|
|
.y222{bottom:618.425989px;}
|
|
|
|
.y3e4{bottom:618.832298px;}
|
|
|
|
.y3c5{bottom:620.055846px;}
|
|
|
|
.y3d6{bottom:620.371478px;}
|
|
|
|
.y17a{bottom:621.776196px;}
|
|
|
|
.y184{bottom:622.035124px;}
|
|
|
|
.y264{bottom:622.171120px;}
|
|
|
|
.y38d{bottom:622.464093px;}
|
|
|
|
.y92{bottom:623.489601px;}
|
|
|
|
.yfd{bottom:624.366500px;}
|
|
|
|
.y23d{bottom:625.079368px;}
|
|
|
|
.yb{bottom:626.147131px;}
|
|
|
|
.y151{bottom:628.038798px;}
|
|
|
|
.y315{bottom:629.402745px;}
|
|
|
|
.y221{bottom:633.021720px;}
|
|
|
|
.y2{bottom:634.796683px;}
|
|
|
|
.y179{bottom:636.371927px;}
|
|
|
|
.y183{bottom:636.630855px;}
|
|
|
|
.y41b{bottom:636.681369px;}
|
|
|
|
.yfc{bottom:638.962231px;}
|
|
|
|
.y22c{bottom:639.777269px;}
|
|
|
|
.y263{bottom:640.415784px;}
|
|
|
|
.y38c{bottom:640.708757px;}
|
|
|
|
.y91{bottom:641.734265px;}
|
|
|
|
.y1cc{bottom:642.272373px;}
|
|
|
|
.y387{bottom:642.637546px;}
|
|
|
|
.y150{bottom:646.283462px;}
|
|
|
|
.y1ef{bottom:647.070111px;}
|
|
|
|
.y35f{bottom:648.179387px;}
|
|
|
|
.y313{bottom:649.392085px;}
|
|
|
|
.y3d0{bottom:649.643825px;}
|
|
|
|
.y178{bottom:650.967658px;}
|
|
|
|
.y182{bottom:651.226586px;}
|
|
|
|
.y314{bottom:651.277367px;}
|
|
|
|
.ybc{bottom:652.436475px;}
|
|
|
|
.y1dc{bottom:652.441340px;}
|
|
|
|
.yfb{bottom:653.557962px;}
|
|
|
|
.y89{bottom:654.582048px;}
|
|
|
|
.y270{bottom:655.683235px;}
|
|
|
|
.y349{bottom:656.579096px;}
|
|
|
|
.ybd{bottom:657.587199px;}
|
|
|
|
.y22b{bottom:658.021933px;}
|
|
|
|
.y35c{bottom:658.378227px;}
|
|
|
|
.ybe{bottom:659.472481px;}
|
|
|
|
.y281{bottom:659.607844px;}
|
|
|
|
.y3ae{bottom:659.611651px;}
|
|
|
|
.y3af{bottom:659.623814px;}
|
|
|
|
.y8a{bottom:660.641891px;}
|
|
|
|
.y386{bottom:660.882210px;}
|
|
|
|
.y419{bottom:661.236485px;}
|
|
|
|
.y8b{bottom:662.527173px;}
|
|
|
|
.y35d{bottom:662.812824px;}
|
|
|
|
.y41a{bottom:663.121767px;}
|
|
|
|
.y25{bottom:664.350241px;}
|
|
|
|
.y14f{bottom:664.528126px;}
|
|
|
|
.y35e{bottom:664.698105px;}
|
|
|
|
.y26{bottom:666.235522px;}
|
|
|
|
.yba{bottom:667.045586px;}
|
|
|
|
.y1da{bottom:667.074777px;}
|
|
|
|
.y2cd{bottom:667.678067px;}
|
|
|
|
.y3aa{bottom:667.926195px;}
|
|
|
|
.ybb{bottom:668.930867px;}
|
|
|
|
.y1db{bottom:668.960059px;}
|
|
|
|
.y2ce{bottom:669.563349px;}
|
|
|
|
.y87{bottom:670.687220px;}
|
|
|
|
.y282{bottom:670.934132px;}
|
|
|
|
.y88{bottom:672.572502px;}
|
|
|
|
.y407{bottom:672.650954px;}
|
|
|
|
.y1c3{bottom:674.042414px;}
|
|
|
|
.y3d5{bottom:675.105470px;}
|
|
|
|
.y22a{bottom:676.266597px;}
|
|
|
|
.y262{bottom:676.905111px;}
|
|
|
|
.y38b{bottom:677.198084px;}
|
|
|
|
.y90{bottom:678.223592px;}
|
|
|
|
.y1cb{bottom:678.761700px;}
|
|
|
|
.y1ee{bottom:679.910506px;}
|
|
|
|
.y220{bottom:680.457846px;}
|
|
|
|
.y11{bottom:684.305037px;}
|
|
|
|
.y12{bottom:685.848536px;}
|
|
|
|
.y3ba{bottom:688.200881px;}
|
|
|
|
.y40f{bottom:700.184658px;}
|
|
|
|
.y158{bottom:701.635692px;}
|
|
|
|
.y229{bottom:702.124151px;}
|
|
|
|
.y280{bottom:702.213209px;}
|
|
|
|
.yb9{bottom:703.406933px;}
|
|
|
|
.y111{bottom:703.977723px;}
|
|
|
|
.y1ba{bottom:704.113877px;}
|
|
|
|
.y1c2{bottom:704.984148px;}
|
|
|
|
.y383{bottom:705.654177px;}
|
|
|
|
.y38a{bottom:706.069547px;}
|
|
|
|
.h15{height:24.500000px;}
|
|
|
|
.h5{height:30.784000px;}
|
|
|
|
.h6{height:36.504000px;}
|
|
|
|
.he{height:38.480000px;}
|
|
|
|
.h14{height:38.500000px;}
|
|
|
|
.hb{height:40.560000px;}
|
|
|
|
.h2{height:46.176000px;}
|
|
|
|
.h1b{height:46.896000px;}
|
|
|
|
.h3{height:48.672000px;}
|
|
|
|
.hf{height:60.840000px;}
|
|
|
|
.h17{height:60.840176px;}
|
|
|
|
.h9{height:65.416000px;}
|
|
|
|
.h8{height:68.952000px;}
|
|
|
|
.ha{height:100.048000px;}
|
|
|
|
.h11{height:125.736000px;}
|
|
|
|
.h7{height:161.616000px;}
|
|
|
|
.h1a{height:241.830177px;}
|
|
|
|
.hd{height:287.976000px;}
|
|
|
|
.h4{height:292.032000px;}
|
|
|
|
.h1c{height:298.613266px;}
|
|
|
|
.h19{height:306.226764px;}
|
|
|
|
.h18{height:308.851408px;}
|
|
|
|
.h12{height:311.971059px;}
|
|
|
|
.h13{height:696.338001px;}
|
|
|
|
.hc{height:712.150043px;}
|
|
|
|
.h16{height:717.623442px;}
|
|
|
|
.h10{height:719.447909px;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.h0{height:724.045564px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.h1{height:724.313153px;}
|
|
|
|
.w7{width:998.591265px;}
|
|
|
|
.w2{width:1000.415731px;}
|
|
|
|
.w9{width:1001.023887px;}
|
|
|
|
.w8{width:1004.064664px;}
|
|
|
|
.w3{width:1006.497286px;}
|
|
|
|
.w4{width:1007.105441px;}
|
|
|
|
.wa{width:1008.321752px;}
|
|
|
|
.w6{width:1010.146219px;}
|
|
|
|
.w5{width:1012.578840px;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.w0{width:1024.000000px;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.w1{width:1024.133794px;}
|
|
|
|
.x0{left:0.000000px;}
|
|
|
|
.xd5{left:16.052190px;}
|
|
|
|
.x2a{left:18.578651px;}
|
|
|
|
.x112{left:30.507304px;}
|
|
|
|
.x2e{left:33.240561px;}
|
|
|
|
.x2f{left:35.483438px;}
|
|
|
|
.x2d{left:37.715369px;}
|
|
|
|
.x8c{left:39.185013px;}
|
|
|
|
.x105{left:48.611739px;}
|
|
|
|
.x12a{left:52.041979px;}
|
|
|
|
.x13d{left:55.164967px;}
|
|
|
|
.x85{left:61.025725px;}
|
|
|
|
.xc0{left:73.264659px;}
|
|
|
|
.x48{left:76.795828px;}
|
|
|
|
.x11a{left:77.800744px;}
|
|
|
|
.x12e{left:81.466973px;}
|
|
|
|
.x45{left:83.608191px;}
|
|
|
|
.x12d{left:84.896970px;}
|
|
|
|
.x12f{left:87.464359px;}
|
|
|
|
.xf6{left:90.601821px;}
|
|
|
|
.x30{left:93.061165px;}
|
|
|
|
.x135{left:94.497798px;}
|
|
|
|
.x47{left:104.295085px;}
|
|
|
|
.xec{left:109.928138px;}
|
|
|
|
.x9c{left:112.690367px;}
|
|
|
|
.x8d{left:116.250534px;}
|
|
|
|
.x90{left:123.883700px;}
|
|
|
|
.x5a{left:125.964808px;}
|
|
|
|
.x4d{left:128.725834px;}
|
|
|
|
.x3{left:130.966278px;}
|
|
|
|
.x4{left:135.420409px;}
|
|
|
|
.x3c{left:136.678074px;}
|
|
|
|
.xee{left:138.863359px;}
|
|
|
|
.x46{left:143.165488px;}
|
|
|
|
.x142{left:145.079693px;}
|
|
|
|
.x4e{left:149.867385px;}
|
|
|
|
.x68{left:152.708566px;}
|
|
|
|
.xa5{left:154.674124px;}
|
|
|
|
.x3d{left:157.242730px;}
|
|
|
|
.x106{left:159.906292px;}
|
|
|
|
.xef{left:163.975315px;}
|
|
|
|
.xfa{left:166.460785px;}
|
|
|
|
.x128{left:169.150049px;}
|
|
|
|
.x125{left:171.248671px;}
|
|
|
|
.x136{left:173.947641px;}
|
|
|
|
.x4f{left:176.676094px;}
|
|
|
|
.x69{left:179.177924px;}
|
|
|
|
.x3e{left:182.252880px;}
|
|
|
|
.xf0{left:183.725528px;}
|
|
|
|
.x117{left:186.276436px;}
|
|
|
|
.x113{left:188.563101px;}
|
|
|
|
.x3f{left:191.091081px;}
|
|
|
|
.x6{left:193.944425px;}
|
|
|
|
.x5{left:195.987827px;}
|
|
|
|
.x137{left:199.825021px;}
|
|
|
|
.x107{left:203.256465px;}
|
|
|
|
.x11d{left:204.478651px;}
|
|
|
|
.x50{left:207.115856px;}
|
|
|
|
.x6a{left:209.463093px;}
|
|
|
|
.x40{left:213.031992px;}
|
|
|
|
.xa6{left:215.199215px;}
|
|
|
|
.x91{left:218.988632px;}
|
|
|
|
.x6b{left:221.019871px;}
|
|
|
|
.xa7{left:222.985429px;}
|
|
|
|
.x29{left:225.431066px;}
|
|
|
|
.x114{left:227.690242px;}
|
|
|
|
.x8{left:230.163732px;}
|
|
|
|
.x7{left:232.207134px;}
|
|
|
|
.xf1{left:234.032391px;}
|
|
|
|
.x13b{left:235.208260px;}
|
|
|
|
.x51{left:237.555618px;}
|
|
|
|
.x41{left:239.840701px;}
|
|
|
|
.x6c{left:241.075500px;}
|
|
|
|
.xa8{left:244.926340px;}
|
|
|
|
.xfb{left:247.158393px;}
|
|
|
|
.x115{left:254.498951px;}
|
|
|
|
.x11e{left:256.584073px;}
|
|
|
|
.x52{left:260.137525px;}
|
|
|
|
.x42{left:262.475396px;}
|
|
|
|
.xfc{left:265.430545px;}
|
|
|
|
.xa{left:269.294887px;}
|
|
|
|
.x9{left:271.338289px;}
|
|
|
|
.x43{left:273.198880px;}
|
|
|
|
.x116{left:276.013788px;}
|
|
|
|
.x11f{left:277.522014px;}
|
|
|
|
.xc1{left:279.533257px;}
|
|
|
|
.x118{left:282.041217px;}
|
|
|
|
.x33{left:284.129014px;}
|
|
|
|
.x35{left:285.345325px;}
|
|
|
|
.x49{left:288.753854px;}
|
|
|
|
.x86{left:290.523866px;}
|
|
|
|
.xfd{left:291.783016px;}
|
|
|
|
.x108{left:293.237201px;}
|
|
|
|
.x44{left:297.666068px;}
|
|
|
|
.x12b{left:299.189242px;}
|
|
|
|
.x39{left:302.233973px;}
|
|
|
|
.x120{left:303.908419px;}
|
|
|
|
.x119{left:308.849926px;}
|
|
|
|
.x121{left:312.746621px;}
|
|
|
|
.xf2{left:315.190007px;}
|
|
|
|
.x53{left:320.832291px;}
|
|
|
|
.x87{left:322.741510px;}
|
|
|
|
.x109{left:325.407651px;}
|
|
|
|
.x138{left:326.742200px;}
|
|
|
|
.xb{left:328.962235px;}
|
|
|
|
.x1{left:332.189108px;}
|
|
|
|
.x122{left:333.311276px;}
|
|
|
|
.xf3{left:335.754662px;}
|
|
|
|
.x131{left:338.041619px;}
|
|
|
|
.x130{left:341.471616px;}
|
|
|
|
.x54{left:352.900937px;}
|
|
|
|
.xd{left:356.650337px;}
|
|
|
|
.xc{left:358.693739px;}
|
|
|
|
.x10a{left:361.786051px;}
|
|
|
|
.x2b{left:373.616658px;}
|
|
|
|
.xf4{left:376.069531px;}
|
|
|
|
.x2c{left:378.070788px;}
|
|
|
|
.x88{left:379.122386px;}
|
|
|
|
.x10b{left:386.796201px;}
|
|
|
|
.xeb{left:391.611790px;}
|
|
|
|
.x13e{left:395.349336px;}
|
|
|
|
.xf5{left:398.006672px;}
|
|
|
|
.x55{left:400.851197px;}
|
|
|
|
.x13f{left:406.072820px;}
|
|
|
|
.xf{left:408.603841px;}
|
|
|
|
.xe{left:410.647244px;}
|
|
|
|
.x10c{left:413.265560px;}
|
|
|
|
.x89{left:419.394441px;}
|
|
|
|
.xa9{left:423.736257px;}
|
|
|
|
.x56{left:426.506114px;}
|
|
|
|
.x140{left:430.762472px;}
|
|
|
|
.x11{left:443.954702px;}
|
|
|
|
.x10{left:445.998104px;}
|
|
|
|
.xaa{left:450.122663px;}
|
|
|
|
.x57{left:453.314823px;}
|
|
|
|
.x141{left:454.754570px;}
|
|
|
|
.xab{left:459.929900px;}
|
|
|
|
.x6d{left:468.198613px;}
|
|
|
|
.x13{left:471.336293px;}
|
|
|
|
.x12{left:473.379696px;}
|
|
|
|
.x58{left:477.306920px;}
|
|
|
|
.x34{left:480.088867px;}
|
|
|
|
.x6e{left:491.938083px;}
|
|
|
|
.x59{left:497.871576px;}
|
|
|
|
.xac{left:500.244769px;}
|
|
|
|
.x129{left:502.891048px;}
|
|
|
|
.x6f{left:505.919333px;}
|
|
|
|
.x15{left:512.715191px;}
|
|
|
|
.x14{left:514.758593px;}
|
|
|
|
.xdc{left:516.326771px;}
|
|
|
|
.x4a{left:518.895388px;}
|
|
|
|
.x70{left:524.632642px;}
|
|
|
|
.x2{left:527.926375px;}
|
|
|
|
.xad{left:528.987777px;}
|
|
|
|
.x11b{left:531.130381px;}
|
|
|
|
.x38{left:535.203563px;}
|
|
|
|
.x32{left:537.620373px;}
|
|
|
|
.x4b{left:539.582283px;}
|
|
|
|
.x17{left:542.089100px;}
|
|
|
|
.x16{left:544.132502px;}
|
|
|
|
.x71{left:546.675358px;}
|
|
|
|
.xdd{left:547.988195px;}
|
|
|
|
.x3b{left:550.308856px;}
|
|
|
|
.x13c{left:551.649680px;}
|
|
|
|
.xed{left:556.556644px;}
|
|
|
|
.x72{left:560.656609px;}
|
|
|
|
.xde{left:562.308797px;}
|
|
|
|
.x12c{left:566.056506px;}
|
|
|
|
.xae{left:569.641996px;}
|
|
|
|
.xcc{left:573.648622px;}
|
|
|
|
.x19{left:579.483362px;}
|
|
|
|
.x18{left:581.526765px;}
|
|
|
|
.x134{left:582.621493px;}
|
|
|
|
.xdf{left:586.504505px;}
|
|
|
|
.x133{left:588.618879px;}
|
|
|
|
.x132{left:592.048876px;}
|
|
|
|
.xaf{left:594.516406px;}
|
|
|
|
.x8e{left:601.089277px;}
|
|
|
|
.xb0{left:602.438361px;}
|
|
|
|
.x8a{left:605.237530px;}
|
|
|
|
.x73{left:608.674739px;}
|
|
|
|
.x1b{left:611.360439px;}
|
|
|
|
.x1a{left:613.403841px;}
|
|
|
|
.xe0{left:614.467007px;}
|
|
|
|
.xfe{left:620.389456px;}
|
|
|
|
.xb1{left:624.311401px;}
|
|
|
|
.xe1{left:633.606389px;}
|
|
|
|
.x28{left:636.802452px;}
|
|
|
|
.x74{left:637.926774px;}
|
|
|
|
.xc2{left:639.886287px;}
|
|
|
|
.x1d{left:642.726665px;}
|
|
|
|
.x1c{left:644.770067px;}
|
|
|
|
.x75{left:647.734010px;}
|
|
|
|
.x8f{left:649.415743px;}
|
|
|
|
.xb2{left:652.613254px;}
|
|
|
|
.xe2{left:654.204979px;}
|
|
|
|
.xc3{left:659.161409px;}
|
|
|
|
.x5b{left:661.604321px;}
|
|
|
|
.x10d{left:663.953541px;}
|
|
|
|
.x76{left:667.721769px;}
|
|
|
|
.x8b{left:669.672817px;}
|
|
|
|
.x1f{left:673.479870px;}
|
|
|
|
.x1e{left:675.523273px;}
|
|
|
|
.xc4{left:678.436532px;}
|
|
|
|
.x11c{left:679.520314px;}
|
|
|
|
.xb3{left:682.898423px;}
|
|
|
|
.x5c{left:685.426744px;}
|
|
|
|
.xff{left:687.071877px;}
|
|
|
|
.x139{left:688.643655px;}
|
|
|
|
.xb4{left:692.705659px;}
|
|
|
|
.x10e{left:693.748536px;}
|
|
|
|
.x77{left:696.023622px;}
|
|
|
|
.xc5{left:697.236563px;}
|
|
|
|
.xf7{left:700.248088px;}
|
|
|
|
.x100{left:701.392479px;}
|
|
|
|
.x21{left:704.743926px;}
|
|
|
|
.x20{left:706.787329px;}
|
|
|
|
.xb5{left:709.658114px;}
|
|
|
|
.x5d{left:715.221739px;}
|
|
|
|
.xc6{left:716.511686px;}
|
|
|
|
.x13a{left:719.863924px;}
|
|
|
|
.x10f{left:722.050389px;}
|
|
|
|
.x5e{left:725.945223px;}
|
|
|
|
.xf8{left:727.056797px;}
|
|
|
|
.x123{left:728.217267px;}
|
|
|
|
.xcd{left:730.742000px;}
|
|
|
|
.x23{left:733.811325px;}
|
|
|
|
.x22{left:735.854727px;}
|
|
|
|
.xb6{left:737.790291px;}
|
|
|
|
.xce{left:739.580202px;}
|
|
|
|
.xc7{left:742.045944px;}
|
|
|
|
.x92{left:745.030929px;}
|
|
|
|
.x25{left:747.757546px;}
|
|
|
|
.x24{left:749.800948px;}
|
|
|
|
.xf9{left:752.066947px;}
|
|
|
|
.x5f{left:754.586426px;}
|
|
|
|
.x78{left:756.495925px;}
|
|
|
|
.x9d{left:758.984156px;}
|
|
|
|
.xcf{left:761.453243px;}
|
|
|
|
.xc8{left:763.681439px;}
|
|
|
|
.xe3{left:767.039102px;}
|
|
|
|
.x4c{left:769.723817px;}
|
|
|
|
.xd6{left:772.352094px;}
|
|
|
|
.x79{left:775.058410px;}
|
|
|
|
.xe4{left:776.846339px;}
|
|
|
|
.x83{left:778.927094px;}
|
|
|
|
.x36{left:781.589197px;}
|
|
|
|
.x37{left:783.063403px;}
|
|
|
|
.x27{left:787.706061px;}
|
|
|
|
.x26{left:789.749464px;}
|
|
|
|
.xe5{left:790.827590px;}
|
|
|
|
.xd7{left:794.055460px;}
|
|
|
|
.xd0{left:797.560162px;}
|
|
|
|
.xb7{left:799.959348px;}
|
|
|
|
.x60{left:804.572791px;}
|
|
|
|
.x93{left:807.249003px;}
|
|
|
|
.x7a{left:810.113343px;}
|
|
|
|
.xc9{left:812.683687px;}
|
|
|
|
.xe6{left:816.633329px;}
|
|
|
|
.x61{left:818.893392px;}
|
|
|
|
.xb8{left:819.947107px;}
|
|
|
|
.x84{left:822.714287px;}
|
|
|
|
.x126{left:825.168426px;}
|
|
|
|
.x9e{left:828.686799px;}
|
|
|
|
.x7b{left:830.711933px;}
|
|
|
|
.xd1{left:832.445419px;}
|
|
|
|
.x94{left:835.942994px;}
|
|
|
|
.xca{left:837.607114px;}
|
|
|
|
.xb9{left:839.934866px;}
|
|
|
|
.x31{left:842.559251px;}
|
|
|
|
.xe7{left:844.595830px;}
|
|
|
|
.x9f{left:846.789277px;}
|
|
|
|
.x95{left:850.263596px;}
|
|
|
|
.xd2{left:852.942204px;}
|
|
|
|
.xba{left:856.238784px;}
|
|
|
|
.x7c{left:858.844110px;}
|
|
|
|
.x110{left:860.452705px;}
|
|
|
|
.xcb{left:862.703987px;}
|
|
|
|
.x96{left:864.991418px;}
|
|
|
|
.x3a{left:867.342450px;}
|
|
|
|
.x62{left:870.915862px;}
|
|
|
|
.x97{left:874.798655px;}
|
|
|
|
.x7d{left:878.526453px;}
|
|
|
|
.x63{left:880.723098px;}
|
|
|
|
.x127{left:883.910040px;}
|
|
|
|
.xbb{left:886.086567px;}
|
|
|
|
.x98{left:890.917815px;}
|
|
|
|
.x101{left:891.953005px;}
|
|
|
|
.xd8{left:893.960320px;}
|
|
|
|
.xe8{left:895.686970px;}
|
|
|
|
.xa0{left:897.691888px;}
|
|
|
|
.x7e{left:899.701940px;}
|
|
|
|
.x111{left:902.566133px;}
|
|
|
|
.xbc{left:905.768911px;}
|
|
|
|
.x64{left:908.855275px;}
|
|
|
|
.x102{left:910.296798px;}
|
|
|
|
.xd9{left:913.642663px;}
|
|
|
|
.xe9{left:915.844405px;}
|
|
|
|
.x7f{left:918.468036px;}
|
|
|
|
.xa1{left:920.073956px;}
|
|
|
|
.xd3{left:921.762536px;}
|
|
|
|
.xbd{left:926.944397px;}
|
|
|
|
.x103{left:928.908301px;}
|
|
|
|
.x80{left:932.788637px;}
|
|
|
|
.xa2{left:935.141129px;}
|
|
|
|
.x99{left:938.849223px;}
|
|
|
|
.x65{left:941.025726px;}
|
|
|
|
.xa3{left:944.948365px;}
|
|
|
|
.x104{left:947.674398px;}
|
|
|
|
.x66{left:950.832963px;}
|
|
|
|
.x9a{left:953.916396px;}
|
|
|
|
.x81{left:956.000228px;}
|
|
|
|
.xda{left:957.995805px;}
|
|
|
|
.xbe{left:960.031095px;}
|
|
|
|
.xea{left:961.385275px;}
|
|
|
|
.x124{left:962.554040px;}
|
|
|
|
.xa4{left:965.546956px;}
|
|
|
|
.x67{left:970.820722px;}
|
|
|
|
.x9b{left:973.191518px;}
|
|
|
|
.x82{left:975.275351px;}
|
|
|
|
.xd4{left:978.060824px;}
|
|
|
|
.xdb{left:980.102621px;}
|
|
|
|
.xbf{left:983.242686px;}
|
2013-02-12 09:43:37 +00:00
|
|
|
@media print{
|
2013-05-04 13:38:05 +00:00
|
|
|
.v0{vertical-align:0.000000pt;}
|
2013-02-28 14:56:45 +00:00
|
|
|
.ls0{letter-spacing:0.000000pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
.ws0{word-spacing:0.000000pt;}
|
|
|
|
._c{display:inline;margin-left:-18.368110pt;}
|
2013-05-04 13:38:05 +00:00
|
|
|
._1{display:inline;margin-left:-15.469729pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._4{display:inline;margin-left:-12.628350pt;}
|
|
|
|
._e{display:inline;margin-left:-11.400594pt;}
|
2013-05-04 13:38:05 +00:00
|
|
|
._2{display:inline;margin-left:-9.155554pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._29{display:inline;margin-left:-7.629628pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._a{display:inline;margin-left:-4.560238pt;}
|
|
|
|
._b{display:inline;margin-left:-1.596083pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._8{display:inline-block;width:2.236270pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._5{display:inline-block;width:8.348743pt;}
|
|
|
|
._6{display:inline-block;width:9.629117pt;}
|
|
|
|
._0{display:inline-block;width:12.417878pt;}
|
|
|
|
._1f{display:inline-block;width:15.145250pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._7{display:inline-block;width:17.890162pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._24{display:inline-block;width:19.402934pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._28{display:inline-block;width:24.783137pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._9{display:inline-block;width:27.247419pt;}
|
|
|
|
._20{display:inline-block;width:29.229368pt;}
|
|
|
|
._25{display:inline-block;width:36.986157pt;}
|
|
|
|
._d{display:inline-block;width:50.473980pt;}
|
|
|
|
._3{display:inline-block;width:56.511866pt;}
|
|
|
|
._22{display:inline-block;width:58.169381pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2b{display:inline-block;width:67.004797pt;}
|
|
|
|
._26{display:inline-block;width:87.591639pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._21{display:inline-block;width:105.214326pt;}
|
|
|
|
._16{display:inline-block;width:122.880861pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._27{display:inline-block;width:138.438287pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._10{display:inline-block;width:144.699844pt;}
|
|
|
|
._23{display:inline-block;width:150.566765pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2a{display:inline-block;width:183.681105pt;}
|
|
|
|
._30{display:inline-block;width:201.482211pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._1d{display:inline-block;width:216.628821pt;}
|
|
|
|
._1e{display:inline-block;width:222.206342pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2c{display:inline-block;width:225.100339pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._12{display:inline-block;width:239.640481pt;}
|
|
|
|
._11{display:inline-block;width:245.253081pt;}
|
|
|
|
._15{display:inline-block;width:253.356272pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2f{display:inline-block;width:254.581266pt;}
|
|
|
|
._f{display:inline-block;width:267.484238pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._14{display:inline-block;width:277.087046pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2e{display:inline-block;width:330.923193pt;}
|
2013-05-06 03:04:48 +00:00
|
|
|
._1a{display:inline-block;width:355.330198pt;}
|
|
|
|
._1c{display:inline-block;width:377.166720pt;}
|
|
|
|
._17{display:inline-block;width:380.113335pt;}
|
|
|
|
._19{display:inline-block;width:416.910944pt;}
|
|
|
|
._1b{display:inline-block;width:418.945511pt;}
|
|
|
|
._18{display:inline-block;width:459.321153pt;}
|
|
|
|
._13{display:inline-block;width:519.919693pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
._2d{display:inline-block;width:613.676422pt;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.fsd{font-size:30.693906pt;}
|
|
|
|
.fs2{font-size:35.078750pt;}
|
|
|
|
.fs3{font-size:39.463594pt;}
|
|
|
|
.fs7{font-size:43.848438pt;}
|
|
|
|
.fsc{font-size:48.233281pt;}
|
|
|
|
.fs0{font-size:52.618125pt;}
|
|
|
|
.fs9{font-size:65.772656pt;}
|
|
|
|
.fse{font-size:65.772847pt;}
|
|
|
|
.fs5{font-size:74.542344pt;}
|
|
|
|
.fs6{font-size:114.005938pt;}
|
|
|
|
.fsa{font-size:135.930156pt;}
|
|
|
|
.fs4{font-size:184.163437pt;}
|
|
|
|
.fs11{font-size:275.568487pt;}
|
|
|
|
.fs8{font-size:311.323906pt;}
|
|
|
|
.fs1{font-size:315.708750pt;}
|
|
|
|
.fs12{font-size:340.273522pt;}
|
|
|
|
.fs10{font-size:348.949198pt;}
|
|
|
|
.fsf{font-size:351.940012pt;}
|
|
|
|
.fsb{font-size:355.494893pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.y0{bottom:0.000000pt;}
|
|
|
|
.y24{bottom:5.333333pt;}
|
|
|
|
.y1{bottom:19.085733pt;}
|
|
|
|
.y3b9{bottom:40.518480pt;}
|
|
|
|
.y245{bottom:42.018840pt;}
|
|
|
|
.y2b4{bottom:42.220480pt;}
|
|
|
|
.y3a7{bottom:42.351947pt;}
|
|
|
|
.yb0{bottom:43.476120pt;}
|
|
|
|
.y311{bottom:43.489453pt;}
|
|
|
|
.y134{bottom:44.589427pt;}
|
|
|
|
.y2c6{bottom:44.703147pt;}
|
|
|
|
.y406{bottom:44.866733pt;}
|
|
|
|
.y123{bottom:46.029427pt;}
|
|
|
|
.y1a9{bottom:46.698947pt;}
|
|
|
|
.y1b9{bottom:47.069613pt;}
|
|
|
|
.y69{bottom:48.298000pt;}
|
|
|
|
.y146{bottom:49.044080pt;}
|
|
|
|
.y276{bottom:49.263347pt;}
|
|
|
|
.y382{bottom:49.525133pt;}
|
|
|
|
.y85{bottom:50.780667pt;}
|
|
|
|
.yfa{bottom:50.980667pt;}
|
|
|
|
.y249{bottom:51.997520pt;}
|
|
|
|
.y274{bottom:52.114000pt;}
|
|
|
|
.y30b{bottom:53.505813pt;}
|
|
|
|
.y321{bottom:53.649613pt;}
|
|
|
|
.y8f{bottom:54.945680pt;}
|
|
|
|
.y29c{bottom:55.485333pt;}
|
|
|
|
.y2dd{bottom:55.565333pt;}
|
|
|
|
.y3cf{bottom:56.485333pt;}
|
|
|
|
.y9{bottom:57.798040pt;}
|
|
|
|
.y1ca{bottom:58.892667pt;}
|
|
|
|
.y26f{bottom:58.923893pt;}
|
|
|
|
.y2cc{bottom:59.116720pt;}
|
|
|
|
.y1bd{bottom:60.445347pt;}
|
|
|
|
.y2e8{bottom:60.626667pt;}
|
|
|
|
.y2b3{bottom:62.220480pt;}
|
|
|
|
.y3a6{bottom:62.351947pt;}
|
|
|
|
.yaf{bottom:63.476120pt;}
|
|
|
|
.y157{bottom:64.520493pt;}
|
|
|
|
.y190{bottom:64.586947pt;}
|
|
|
|
.y2c5{bottom:64.703147pt;}
|
|
|
|
.y405{bottom:64.866733pt;}
|
|
|
|
.y14e{bottom:66.029427pt;}
|
|
|
|
.y1a8{bottom:66.698947pt;}
|
|
|
|
.y1b8{bottom:67.069613pt;}
|
|
|
|
.y68{bottom:68.298000pt;}
|
|
|
|
.y213{bottom:69.293333pt;}
|
|
|
|
.y381{bottom:69.525133pt;}
|
|
|
|
.y84{bottom:70.780667pt;}
|
|
|
|
.y8e{bottom:70.945680pt;}
|
|
|
|
.yf9{bottom:70.980667pt;}
|
|
|
|
.y248{bottom:71.997520pt;}
|
|
|
|
.y273{bottom:72.114000pt;}
|
|
|
|
.y2f3{bottom:73.158427pt;}
|
|
|
|
.y36a{bottom:73.405333pt;}
|
|
|
|
.y27a{bottom:74.596667pt;}
|
|
|
|
.y27f{bottom:75.419760pt;}
|
|
|
|
.y29b{bottom:75.485333pt;}
|
|
|
|
.y133{bottom:76.589427pt;}
|
|
|
|
.y175{bottom:77.224720pt;}
|
|
|
|
.y385{bottom:77.252973pt;}
|
|
|
|
.y40e{bottom:77.367333pt;}
|
|
|
|
.y1c1{bottom:78.507640pt;}
|
|
|
|
.y26e{bottom:78.923893pt;}
|
|
|
|
.y156{bottom:80.520493pt;}
|
|
|
|
.y2e7{bottom:80.626667pt;}
|
|
|
|
.y122{bottom:82.029427pt;}
|
|
|
|
.y2b2{bottom:82.220480pt;}
|
|
|
|
.y3a5{bottom:82.351947pt;}
|
|
|
|
.yae{bottom:83.476120pt;}
|
|
|
|
.y18f{bottom:84.586947pt;}
|
|
|
|
.y2c4{bottom:84.703147pt;}
|
|
|
|
.y3e2{bottom:85.207320pt;}
|
|
|
|
.y411{bottom:85.633013pt;}
|
|
|
|
.y8d{bottom:86.945680pt;}
|
|
|
|
.y1b7{bottom:87.069613pt;}
|
|
|
|
.y67{bottom:88.298000pt;}
|
|
|
|
.y145{bottom:89.044080pt;}
|
|
|
|
.y212{bottom:89.293333pt;}
|
|
|
|
.y380{bottom:89.525133pt;}
|
|
|
|
.y83{bottom:90.780667pt;}
|
|
|
|
.yf8{bottom:90.980667pt;}
|
|
|
|
.y2fe{bottom:91.023147pt;}
|
|
|
|
.y5{bottom:92.189093pt;}
|
|
|
|
.y346{bottom:93.076120pt;}
|
|
|
|
.y369{bottom:93.405333pt;}
|
|
|
|
.y1c0{bottom:94.507640pt;}
|
|
|
|
.y279{bottom:94.596667pt;}
|
|
|
|
.y29a{bottom:95.485333pt;}
|
|
|
|
.y2dc{bottom:95.565333pt;}
|
|
|
|
.y6{bottom:96.669093pt;}
|
|
|
|
.y174{bottom:97.224720pt;}
|
|
|
|
.y23c{bottom:97.330840pt;}
|
|
|
|
.y40d{bottom:97.367333pt;}
|
|
|
|
.y1c9{bottom:98.892667pt;}
|
|
|
|
.y1bc{bottom:100.445347pt;}
|
|
|
|
.y1bf{bottom:100.458667pt;}
|
|
|
|
.y2e6{bottom:100.626667pt;}
|
|
|
|
.y35b{bottom:101.846747pt;}
|
|
|
|
.y8c{bottom:102.945680pt;}
|
|
|
|
.yad{bottom:103.476120pt;}
|
|
|
|
.y110{bottom:104.302653pt;}
|
|
|
|
.y18e{bottom:104.586947pt;}
|
|
|
|
.y2c3{bottom:104.703147pt;}
|
|
|
|
.y404{bottom:104.866733pt;}
|
|
|
|
.y14d{bottom:106.029427pt;}
|
|
|
|
.y1a7{bottom:106.698947pt;}
|
|
|
|
.y1b6{bottom:107.069613pt;}
|
|
|
|
.y2cb{bottom:107.116720pt;}
|
|
|
|
.y66{bottom:108.298000pt;}
|
|
|
|
.y132{bottom:108.589427pt;}
|
|
|
|
.y144{bottom:109.044080pt;}
|
|
|
|
.y211{bottom:109.293333pt;}
|
|
|
|
.y37f{bottom:109.525133pt;}
|
|
|
|
.y82{bottom:110.780667pt;}
|
|
|
|
.yf7{bottom:110.980667pt;}
|
|
|
|
.y2fd{bottom:111.023147pt;}
|
|
|
|
.y155{bottom:112.520493pt;}
|
|
|
|
.y23b{bottom:113.330840pt;}
|
|
|
|
.y368{bottom:113.405333pt;}
|
|
|
|
.y278{bottom:114.596667pt;}
|
|
|
|
.y3bb{bottom:114.637333pt;}
|
|
|
|
.y261{bottom:115.860640pt;}
|
|
|
|
.y173{bottom:117.224720pt;}
|
|
|
|
.y21f{bottom:117.405333pt;}
|
|
|
|
.y4b{bottom:118.953387pt;}
|
|
|
|
.y10f{bottom:120.302653pt;}
|
|
|
|
.y1bb{bottom:120.445347pt;}
|
|
|
|
.y1be{bottom:120.458667pt;}
|
|
|
|
.y2e5{bottom:120.626667pt;}
|
|
|
|
.y244{bottom:122.018840pt;}
|
|
|
|
.y2b1{bottom:122.220480pt;}
|
|
|
|
.y3a4{bottom:122.351947pt;}
|
|
|
|
.yac{bottom:123.476120pt;}
|
|
|
|
.y310{bottom:123.489453pt;}
|
|
|
|
.y18d{bottom:124.586947pt;}
|
|
|
|
.y403{bottom:124.866733pt;}
|
|
|
|
.y14c{bottom:126.029427pt;}
|
|
|
|
.y1a6{bottom:126.698947pt;}
|
|
|
|
.y1b5{bottom:127.069613pt;}
|
|
|
|
.y65{bottom:128.298000pt;}
|
|
|
|
.y143{bottom:129.044080pt;}
|
|
|
|
.y275{bottom:129.263347pt;}
|
|
|
|
.y2f2{bottom:129.298667pt;}
|
|
|
|
.y37e{bottom:129.525133pt;}
|
|
|
|
.y81{bottom:130.780667pt;}
|
|
|
|
.yf6{bottom:130.980667pt;}
|
|
|
|
.y247{bottom:131.997520pt;}
|
|
|
|
.y272{bottom:132.114000pt;}
|
|
|
|
.y345{bottom:133.076120pt;}
|
|
|
|
.y367{bottom:133.405333pt;}
|
|
|
|
.y27d{bottom:134.596667pt;}
|
|
|
|
.y299{bottom:135.485333pt;}
|
|
|
|
.y2db{bottom:135.565333pt;}
|
|
|
|
.y39{bottom:137.114080pt;}
|
|
|
|
.y172{bottom:137.224720pt;}
|
|
|
|
.y21e{bottom:137.405333pt;}
|
|
|
|
.y1c8{bottom:138.892667pt;}
|
|
|
|
.y27e{bottom:139.419760pt;}
|
|
|
|
.y33a{bottom:139.476120pt;}
|
|
|
|
.y131{bottom:140.589427pt;}
|
|
|
|
.y2e4{bottom:140.626667pt;}
|
|
|
|
.y121{bottom:142.029427pt;}
|
|
|
|
.y2b0{bottom:142.220480pt;}
|
|
|
|
.y3a3{bottom:142.351947pt;}
|
|
|
|
.y418{bottom:142.369200pt;}
|
|
|
|
.yab{bottom:143.476120pt;}
|
|
|
|
.y154{bottom:144.520493pt;}
|
|
|
|
.y18c{bottom:144.586947pt;}
|
|
|
|
.y2c2{bottom:144.703147pt;}
|
|
|
|
.y402{bottom:144.866733pt;}
|
|
|
|
.y14b{bottom:146.029427pt;}
|
|
|
|
.y1a5{bottom:146.698947pt;}
|
|
|
|
.y64{bottom:148.298000pt;}
|
|
|
|
.y142{bottom:149.044080pt;}
|
|
|
|
.y210{bottom:149.293333pt;}
|
|
|
|
.y23a{bottom:149.330840pt;}
|
|
|
|
.y37d{bottom:149.525133pt;}
|
|
|
|
.y21{bottom:150.816427pt;}
|
|
|
|
.y22{bottom:151.834893pt;}
|
|
|
|
.y10e{bottom:152.302653pt;}
|
|
|
|
.y344{bottom:153.076120pt;}
|
|
|
|
.y366{bottom:153.405333pt;}
|
|
|
|
.y27c{bottom:154.596667pt;}
|
|
|
|
.y298{bottom:155.485333pt;}
|
|
|
|
.y130{bottom:156.589427pt;}
|
|
|
|
.y21d{bottom:157.405333pt;}
|
|
|
|
.y1c7{bottom:158.892667pt;}
|
|
|
|
.y153{bottom:160.520493pt;}
|
|
|
|
.y2e3{bottom:160.626667pt;}
|
|
|
|
.y120{bottom:162.029427pt;}
|
|
|
|
.y2af{bottom:162.220480pt;}
|
|
|
|
.y3a2{bottom:162.351947pt;}
|
|
|
|
.y417{bottom:162.369200pt;}
|
|
|
|
.yaa{bottom:163.476120pt;}
|
|
|
|
.y30f{bottom:163.489453pt;}
|
|
|
|
.y18b{bottom:164.586947pt;}
|
|
|
|
.y2c1{bottom:164.703147pt;}
|
|
|
|
.y3c4{bottom:165.040000pt;}
|
|
|
|
.y3e1{bottom:165.207320pt;}
|
|
|
|
.y4a{bottom:166.953387pt;}
|
|
|
|
.y1b4{bottom:167.069613pt;}
|
|
|
|
.y63{bottom:168.298000pt;}
|
|
|
|
.y10d{bottom:168.302653pt;}
|
|
|
|
.y141{bottom:169.044080pt;}
|
|
|
|
.y20f{bottom:169.293333pt;}
|
|
|
|
.y239{bottom:169.330840pt;}
|
|
|
|
.y37c{bottom:169.525133pt;}
|
|
|
|
.y80{bottom:170.780667pt;}
|
|
|
|
.yf5{bottom:170.980667pt;}
|
|
|
|
.y246{bottom:171.997520pt;}
|
|
|
|
.y271{bottom:172.114000pt;}
|
|
|
|
.y355{bottom:172.978000pt;}
|
|
|
|
.y365{bottom:173.405333pt;}
|
|
|
|
.y27b{bottom:174.596667pt;}
|
|
|
|
.y297{bottom:175.485333pt;}
|
|
|
|
.y2da{bottom:175.565333pt;}
|
|
|
|
.y350{bottom:175.749187pt;}
|
|
|
|
.y38{bottom:177.114080pt;}
|
|
|
|
.y171{bottom:177.224720pt;}
|
|
|
|
.y21c{bottom:177.405333pt;}
|
|
|
|
.yeb{bottom:178.551333pt;}
|
|
|
|
.y1c6{bottom:178.892667pt;}
|
|
|
|
.y14{bottom:180.358667pt;}
|
|
|
|
.y1a{bottom:180.961800pt;}
|
|
|
|
.y35a{bottom:181.846747pt;}
|
|
|
|
.y49{bottom:182.953387pt;}
|
|
|
|
.ya9{bottom:183.476120pt;}
|
|
|
|
.y10c{bottom:184.302653pt;}
|
|
|
|
.y389{bottom:184.466307pt;}
|
|
|
|
.y1f{bottom:185.678667pt;}
|
|
|
|
.y16{bottom:187.065333pt;}
|
|
|
|
.y1b3{bottom:187.069613pt;}
|
|
|
|
.y62{bottom:188.298000pt;}
|
|
|
|
.y140{bottom:189.044080pt;}
|
|
|
|
.y20e{bottom:189.293333pt;}
|
|
|
|
.y238{bottom:189.330840pt;}
|
|
|
|
.y37b{bottom:189.525133pt;}
|
|
|
|
.y7f{bottom:190.780667pt;}
|
|
|
|
.yf4{bottom:190.980667pt;}
|
|
|
|
.y2fc{bottom:191.023147pt;}
|
|
|
|
.y33c{bottom:191.377453pt;}
|
|
|
|
.y12f{bottom:192.589427pt;}
|
|
|
|
.y30a{bottom:193.505813pt;}
|
|
|
|
.y31f{bottom:193.649613pt;}
|
|
|
|
.y3fe{bottom:193.653400pt;}
|
|
|
|
.y16b{bottom:195.462067pt;}
|
|
|
|
.y296{bottom:195.485333pt;}
|
|
|
|
.y2d9{bottom:195.565333pt;}
|
|
|
|
.y170{bottom:197.224720pt;}
|
|
|
|
.y21b{bottom:197.405333pt;}
|
|
|
|
.y48{bottom:198.953387pt;}
|
|
|
|
.y10b{bottom:200.302653pt;}
|
|
|
|
.y2e2{bottom:200.626667pt;}
|
|
|
|
.y11f{bottom:202.029427pt;}
|
|
|
|
.y3a1{bottom:202.351947pt;}
|
|
|
|
.yb8{bottom:203.476120pt;}
|
|
|
|
.y161{bottom:203.891387pt;}
|
|
|
|
.y18a{bottom:204.586947pt;}
|
|
|
|
.y2c0{bottom:204.703147pt;}
|
|
|
|
.y401{bottom:204.866733pt;}
|
|
|
|
.y14a{bottom:206.029427pt;}
|
|
|
|
.y1a4{bottom:206.698947pt;}
|
|
|
|
.y1b2{bottom:207.069613pt;}
|
|
|
|
.y61{bottom:208.298000pt;}
|
|
|
|
.y13f{bottom:209.044080pt;}
|
|
|
|
.y20d{bottom:209.293333pt;}
|
|
|
|
.y37a{bottom:209.525133pt;}
|
|
|
|
.y7e{bottom:210.780667pt;}
|
|
|
|
.yf3{bottom:210.980667pt;}
|
|
|
|
.y2fb{bottom:211.023147pt;}
|
|
|
|
.y12e{bottom:212.589427pt;}
|
|
|
|
.y309{bottom:213.505813pt;}
|
|
|
|
.y320{bottom:213.649613pt;}
|
|
|
|
.y47{bottom:214.953387pt;}
|
|
|
|
.y393{bottom:215.151947pt;}
|
|
|
|
.y10a{bottom:216.302653pt;}
|
|
|
|
.y16f{bottom:217.224720pt;}
|
|
|
|
.y328{bottom:217.509600pt;}
|
|
|
|
.y1c5{bottom:218.892667pt;}
|
|
|
|
.y1ed{bottom:219.299333pt;}
|
|
|
|
.y339{bottom:219.476120pt;}
|
|
|
|
.y2e1{bottom:220.626667pt;}
|
|
|
|
.y11e{bottom:222.029427pt;}
|
|
|
|
.y26c{bottom:222.030787pt;}
|
|
|
|
.y2ae{bottom:222.220480pt;}
|
|
|
|
.y3a0{bottom:222.351947pt;}
|
|
|
|
.y416{bottom:222.369200pt;}
|
|
|
|
.ya8{bottom:223.476120pt;}
|
|
|
|
.y160{bottom:223.891387pt;}
|
|
|
|
.y189{bottom:224.586947pt;}
|
|
|
|
.y2bf{bottom:224.703147pt;}
|
|
|
|
.y3c3{bottom:225.040000pt;}
|
|
|
|
.y3e0{bottom:225.207320pt;}
|
|
|
|
.y20{bottom:226.399240pt;}
|
|
|
|
.y1a3{bottom:226.698947pt;}
|
|
|
|
.y1b1{bottom:227.069613pt;}
|
|
|
|
.y60{bottom:228.298000pt;}
|
|
|
|
.y13e{bottom:229.044080pt;}
|
|
|
|
.y237{bottom:229.330840pt;}
|
|
|
|
.y379{bottom:229.525133pt;}
|
|
|
|
.y7d{bottom:230.780667pt;}
|
|
|
|
.yf2{bottom:230.980667pt;}
|
|
|
|
.y3ee{bottom:231.170733pt;}
|
|
|
|
.y109{bottom:232.302653pt;}
|
|
|
|
.y354{bottom:232.978000pt;}
|
|
|
|
.y364{bottom:233.405333pt;}
|
|
|
|
.yea{bottom:234.551333pt;}
|
|
|
|
.y295{bottom:235.485333pt;}
|
|
|
|
.y2d8{bottom:235.565333pt;}
|
|
|
|
.y37{bottom:237.114080pt;}
|
|
|
|
.y21a{bottom:237.405333pt;}
|
|
|
|
.y327{bottom:237.509600pt;}
|
|
|
|
.y177{bottom:239.475387pt;}
|
|
|
|
.y338{bottom:239.476120pt;}
|
|
|
|
.y2e0{bottom:240.626667pt;}
|
|
|
|
.y3fd{bottom:240.853400pt;}
|
|
|
|
.y11d{bottom:242.029427pt;}
|
|
|
|
.y26b{bottom:242.030787pt;}
|
|
|
|
.y2ad{bottom:242.220480pt;}
|
|
|
|
.y39f{bottom:242.351947pt;}
|
|
|
|
.y415{bottom:242.369200pt;}
|
|
|
|
.ya7{bottom:243.476120pt;}
|
|
|
|
.y15f{bottom:243.891387pt;}
|
|
|
|
.y188{bottom:244.586947pt;}
|
|
|
|
.y236{bottom:245.330840pt;}
|
|
|
|
.y46{bottom:246.953387pt;}
|
|
|
|
.y1b0{bottom:247.069613pt;}
|
|
|
|
.y5f{bottom:248.298000pt;}
|
|
|
|
.y108{bottom:248.302653pt;}
|
|
|
|
.y20c{bottom:249.293333pt;}
|
|
|
|
.y378{bottom:249.525133pt;}
|
|
|
|
.y7c{bottom:250.780667pt;}
|
|
|
|
.yf1{bottom:250.980667pt;}
|
|
|
|
.y16a{bottom:251.462067pt;}
|
|
|
|
.y12d{bottom:252.589427pt;}
|
|
|
|
.y353{bottom:252.978000pt;}
|
|
|
|
.y363{bottom:253.405333pt;}
|
|
|
|
.ye9{bottom:254.551333pt;}
|
|
|
|
.y1ec{bottom:255.299333pt;}
|
|
|
|
.y294{bottom:255.485333pt;}
|
|
|
|
.y2d7{bottom:255.565333pt;}
|
|
|
|
.y34f{bottom:255.749187pt;}
|
|
|
|
.y36{bottom:257.114080pt;}
|
|
|
|
.y16e{bottom:257.224720pt;}
|
|
|
|
.y326{bottom:257.509600pt;}
|
|
|
|
.y1c4{bottom:258.892667pt;}
|
|
|
|
.y337{bottom:259.476120pt;}
|
|
|
|
.y343{bottom:260.276120pt;}
|
|
|
|
.y359{bottom:261.846747pt;}
|
|
|
|
.y45{bottom:262.953387pt;}
|
|
|
|
.ya6{bottom:263.476120pt;}
|
|
|
|
.y107{bottom:264.302653pt;}
|
|
|
|
.y2be{bottom:264.703147pt;}
|
|
|
|
.y400{bottom:264.866733pt;}
|
|
|
|
.y149{bottom:266.029427pt;}
|
|
|
|
.y1a2{bottom:266.698947pt;}
|
|
|
|
.y1af{bottom:267.069613pt;}
|
|
|
|
.y2ca{bottom:267.101813pt;}
|
|
|
|
.y5e{bottom:268.298000pt;}
|
|
|
|
.y13d{bottom:269.044080pt;}
|
|
|
|
.y20b{bottom:269.293333pt;}
|
|
|
|
.y377{bottom:269.525133pt;}
|
|
|
|
.y7b{bottom:270.780667pt;}
|
|
|
|
.yf0{bottom:270.980667pt;}
|
|
|
|
.y169{bottom:271.462067pt;}
|
|
|
|
.y12c{bottom:272.589427pt;}
|
|
|
|
.y352{bottom:272.978000pt;}
|
|
|
|
.y362{bottom:273.405333pt;}
|
|
|
|
.ye8{bottom:274.551333pt;}
|
|
|
|
.y1eb{bottom:275.299333pt;}
|
|
|
|
.y293{bottom:275.485333pt;}
|
|
|
|
.y348{bottom:275.489453pt;}
|
|
|
|
.y35{bottom:277.114080pt;}
|
|
|
|
.y16d{bottom:277.224720pt;}
|
|
|
|
.y40c{bottom:277.367333pt;}
|
|
|
|
.y44{bottom:278.953387pt;}
|
|
|
|
.y106{bottom:280.302653pt;}
|
|
|
|
.y2df{bottom:280.626667pt;}
|
|
|
|
.y3fc{bottom:280.853400pt;}
|
|
|
|
.y1e1{bottom:282.070000pt;}
|
|
|
|
.y2ac{bottom:282.220480pt;}
|
|
|
|
.y39e{bottom:282.351947pt;}
|
|
|
|
.y414{bottom:282.369200pt;}
|
|
|
|
.ya5{bottom:283.476120pt;}
|
|
|
|
.y30e{bottom:283.489453pt;}
|
|
|
|
.y312{bottom:283.819453pt;}
|
|
|
|
.y3b8{bottom:283.926880pt;}
|
|
|
|
.y13c{bottom:285.044080pt;}
|
|
|
|
.y243{bottom:285.218840pt;}
|
|
|
|
.y1a1{bottom:286.698947pt;}
|
|
|
|
.y1ae{bottom:287.069613pt;}
|
|
|
|
.y2c9{bottom:287.101813pt;}
|
|
|
|
.y5d{bottom:288.298000pt;}
|
|
|
|
.y20a{bottom:289.293333pt;}
|
|
|
|
.y376{bottom:289.525133pt;}
|
|
|
|
.y7a{bottom:290.780667pt;}
|
|
|
|
.yef{bottom:290.980667pt;}
|
|
|
|
.y2fa{bottom:291.023147pt;}
|
|
|
|
.y33b{bottom:291.377453pt;}
|
|
|
|
.y12b{bottom:292.589427pt;}
|
|
|
|
.y308{bottom:293.505813pt;}
|
|
|
|
.y3d4{bottom:293.636667pt;}
|
|
|
|
.y43{bottom:294.953387pt;}
|
|
|
|
.y1ea{bottom:295.299333pt;}
|
|
|
|
.y292{bottom:295.485333pt;}
|
|
|
|
.y2d6{bottom:295.565333pt;}
|
|
|
|
.y18{bottom:296.785333pt;}
|
|
|
|
.y34{bottom:297.114080pt;}
|
|
|
|
.y16c{bottom:297.224720pt;}
|
|
|
|
.y3ed{bottom:298.370733pt;}
|
|
|
|
.y10{bottom:299.652000pt;}
|
|
|
|
.y342{bottom:300.276120pt;}
|
|
|
|
.y3fb{bottom:300.853400pt;}
|
|
|
|
.y11c{bottom:302.029427pt;}
|
|
|
|
.y26a{bottom:302.030787pt;}
|
|
|
|
.y2ab{bottom:302.220480pt;}
|
|
|
|
.y39d{bottom:302.351947pt;}
|
|
|
|
.y413{bottom:302.369200pt;}
|
|
|
|
.ya4{bottom:303.476120pt;}
|
|
|
|
.y15e{bottom:303.891387pt;}
|
|
|
|
.y1d8{bottom:304.066000pt;}
|
|
|
|
.y219{bottom:304.605333pt;}
|
|
|
|
.y2bd{bottom:304.703147pt;}
|
|
|
|
.y3ff{bottom:304.866733pt;}
|
|
|
|
.y1a0{bottom:306.698947pt;}
|
|
|
|
.y1ad{bottom:307.069613pt;}
|
|
|
|
.y2c8{bottom:307.101813pt;}
|
|
|
|
.y5c{bottom:308.298000pt;}
|
|
|
|
.y209{bottom:309.293333pt;}
|
|
|
|
.y375{bottom:309.525133pt;}
|
|
|
|
.y1d{bottom:310.781747pt;}
|
|
|
|
.y42{bottom:310.953387pt;}
|
|
|
|
.yee{bottom:310.980667pt;}
|
|
|
|
.y168{bottom:311.462067pt;}
|
|
|
|
.y12a{bottom:312.589427pt;}
|
|
|
|
.y361{bottom:313.405333pt;}
|
|
|
|
.ye7{bottom:314.551333pt;}
|
|
|
|
.y1e9{bottom:315.299333pt;}
|
|
|
|
.y291{bottom:315.485333pt;}
|
|
|
|
.y2d5{bottom:315.565333pt;}
|
|
|
|
.y33{bottom:317.114080pt;}
|
|
|
|
.y1e0{bottom:318.070000pt;}
|
|
|
|
.y3ec{bottom:318.370733pt;}
|
|
|
|
.y176{bottom:319.475387pt;}
|
|
|
|
.y336{bottom:319.476120pt;}
|
|
|
|
.y341{bottom:320.276120pt;}
|
|
|
|
.y3fa{bottom:320.853400pt;}
|
|
|
|
.y11b{bottom:322.029427pt;}
|
|
|
|
.y269{bottom:322.030787pt;}
|
|
|
|
.y2aa{bottom:322.220480pt;}
|
|
|
|
.y39c{bottom:322.351947pt;}
|
|
|
|
.y412{bottom:322.369200pt;}
|
|
|
|
.ya3{bottom:323.476120pt;}
|
|
|
|
.y15d{bottom:323.891387pt;}
|
|
|
|
.y1d7{bottom:324.066000pt;}
|
|
|
|
.y218{bottom:324.605333pt;}
|
|
|
|
.y2bc{bottom:324.703147pt;}
|
|
|
|
.y3c2{bottom:325.040000pt;}
|
|
|
|
.y3df{bottom:325.207320pt;}
|
|
|
|
.y41{bottom:326.953387pt;}
|
|
|
|
.y1ac{bottom:327.069613pt;}
|
|
|
|
.y2c7{bottom:327.101813pt;}
|
|
|
|
.y5b{bottom:328.298000pt;}
|
|
|
|
.y208{bottom:329.293333pt;}
|
|
|
|
.y374{bottom:329.525133pt;}
|
|
|
|
.y79{bottom:330.780667pt;}
|
|
|
|
.yed{bottom:330.980667pt;}
|
|
|
|
.y167{bottom:331.462067pt;}
|
|
|
|
.y129{bottom:332.589427pt;}
|
|
|
|
.y351{bottom:332.978000pt;}
|
|
|
|
.y360{bottom:333.405333pt;}
|
|
|
|
.y26d{bottom:334.572120pt;}
|
|
|
|
.y277{bottom:334.596667pt;}
|
|
|
|
.y290{bottom:335.485333pt;}
|
|
|
|
.y2d4{bottom:335.565333pt;}
|
|
|
|
.y34e{bottom:335.749187pt;}
|
|
|
|
.y32{bottom:337.114080pt;}
|
|
|
|
.y1df{bottom:338.070000pt;}
|
|
|
|
.y3eb{bottom:338.370733pt;}
|
|
|
|
.y3c8{bottom:339.712000pt;}
|
|
|
|
.y3d8{bottom:340.058000pt;}
|
|
|
|
.y235{bottom:341.330840pt;}
|
|
|
|
.y358{bottom:341.846747pt;}
|
|
|
|
.y40{bottom:342.953387pt;}
|
|
|
|
.ya2{bottom:343.476120pt;}
|
|
|
|
.y15c{bottom:343.891387pt;}
|
|
|
|
.y1d6{bottom:344.066000pt;}
|
|
|
|
.y2bb{bottom:344.703147pt;}
|
|
|
|
.y3de{bottom:345.207320pt;}
|
|
|
|
.ye6{bottom:346.551333pt;}
|
|
|
|
.y19f{bottom:346.698947pt;}
|
|
|
|
.y1ab{bottom:347.069613pt;}
|
|
|
|
.y260{bottom:347.168000pt;}
|
|
|
|
.y5a{bottom:348.298000pt;}
|
|
|
|
.y13b{bottom:349.044080pt;}
|
|
|
|
.y251{bottom:349.405347pt;}
|
|
|
|
.y373{bottom:349.525133pt;}
|
|
|
|
.y78{bottom:350.780667pt;}
|
|
|
|
.yec{bottom:350.980667pt;}
|
|
|
|
.y166{bottom:351.462067pt;}
|
|
|
|
.y128{bottom:352.589427pt;}
|
|
|
|
.y307{bottom:353.505813pt;}
|
|
|
|
.y1e8{bottom:355.299333pt;}
|
|
|
|
.y28f{bottom:355.485333pt;}
|
|
|
|
.y2d3{bottom:355.565333pt;}
|
|
|
|
.y3cd{bottom:356.485333pt;}
|
|
|
|
.y40b{bottom:357.367333pt;}
|
|
|
|
.y3f{bottom:358.953387pt;}
|
|
|
|
.y335{bottom:359.476120pt;}
|
|
|
|
.y3ad{bottom:360.253333pt;}
|
|
|
|
.y3f9{bottom:360.853400pt;}
|
|
|
|
.y148{bottom:362.029427pt;}
|
|
|
|
.y268{bottom:362.030787pt;}
|
|
|
|
.y2a9{bottom:362.220480pt;}
|
|
|
|
.y39b{bottom:362.351947pt;}
|
|
|
|
.ya1{bottom:363.476120pt;}
|
|
|
|
.y15b{bottom:363.891387pt;}
|
|
|
|
.y3b7{bottom:363.926880pt;}
|
|
|
|
.y13a{bottom:365.044080pt;}
|
|
|
|
.y3dd{bottom:365.207320pt;}
|
|
|
|
.y19e{bottom:366.698947pt;}
|
|
|
|
.y25f{bottom:367.168000pt;}
|
|
|
|
.y59{bottom:368.298000pt;}
|
|
|
|
.y207{bottom:369.293333pt;}
|
|
|
|
.y250{bottom:369.405347pt;}
|
|
|
|
.y372{bottom:369.525133pt;}
|
|
|
|
.y77{bottom:370.780667pt;}
|
|
|
|
.y165{bottom:371.462067pt;}
|
|
|
|
.ycd{bottom:372.663707pt;}
|
|
|
|
.y306{bottom:373.505813pt;}
|
|
|
|
.y3e{bottom:374.953387pt;}
|
|
|
|
.yda{bottom:375.146373pt;}
|
|
|
|
.y1e7{bottom:375.299333pt;}
|
|
|
|
.y28e{bottom:375.485333pt;}
|
|
|
|
.y347{bottom:375.489453pt;}
|
|
|
|
.y31{bottom:377.114080pt;}
|
|
|
|
.y1de{bottom:378.070000pt;}
|
|
|
|
.y31a{bottom:378.437987pt;}
|
|
|
|
.y334{bottom:379.476120pt;}
|
|
|
|
.y340{bottom:380.276120pt;}
|
|
|
|
.y3f8{bottom:380.853400pt;}
|
|
|
|
.y11a{bottom:382.029427pt;}
|
|
|
|
.y1fa{bottom:382.125333pt;}
|
|
|
|
.y2a8{bottom:382.220480pt;}
|
|
|
|
.y39a{bottom:382.351947pt;}
|
|
|
|
.ya0{bottom:383.476120pt;}
|
|
|
|
.y15a{bottom:383.891387pt;}
|
|
|
|
.y1d5{bottom:384.066000pt;}
|
|
|
|
.y217{bottom:384.605333pt;}
|
|
|
|
.y2ba{bottom:384.703147pt;}
|
|
|
|
.y3dc{bottom:385.207320pt;}
|
|
|
|
.y19d{bottom:386.698947pt;}
|
|
|
|
.y1aa{bottom:387.069613pt;}
|
|
|
|
.y25e{bottom:387.168000pt;}
|
|
|
|
.y58{bottom:388.298000pt;}
|
|
|
|
.y206{bottom:389.293333pt;}
|
|
|
|
.y24f{bottom:389.405347pt;}
|
|
|
|
.y371{bottom:389.525133pt;}
|
|
|
|
.y3d{bottom:390.953387pt;}
|
|
|
|
.y164{bottom:391.462067pt;}
|
|
|
|
.ycc{bottom:392.663707pt;}
|
|
|
|
.ye0{bottom:393.813027pt;}
|
|
|
|
.yd9{bottom:395.146373pt;}
|
|
|
|
.y2d2{bottom:395.565333pt;}
|
|
|
|
.y30{bottom:397.114080pt;}
|
|
|
|
.y228{bottom:397.925333pt;}
|
|
|
|
.y31b{bottom:398.325987pt;}
|
|
|
|
.y3ea{bottom:398.370733pt;}
|
|
|
|
.y333{bottom:399.476120pt;}
|
|
|
|
.y33f{bottom:400.276120pt;}
|
|
|
|
.y3f7{bottom:400.853400pt;}
|
|
|
|
.y119{bottom:402.029427pt;}
|
|
|
|
.y1f9{bottom:402.125333pt;}
|
|
|
|
.y399{bottom:402.351947pt;}
|
|
|
|
.y9f{bottom:403.476120pt;}
|
|
|
|
.y159{bottom:403.891387pt;}
|
|
|
|
.y1d4{bottom:404.066000pt;}
|
|
|
|
.y216{bottom:404.605333pt;}
|
|
|
|
.y2b9{bottom:404.703147pt;}
|
|
|
|
.y3c1{bottom:405.040000pt;}
|
|
|
|
.ya{bottom:406.229080pt;}
|
|
|
|
.y3c{bottom:406.953387pt;}
|
|
|
|
.y25d{bottom:407.168000pt;}
|
|
|
|
.y57{bottom:408.298000pt;}
|
|
|
|
.y205{bottom:409.293333pt;}
|
|
|
|
.y370{bottom:409.525133pt;}
|
|
|
|
.y76{bottom:410.780667pt;}
|
|
|
|
.y163{bottom:411.462067pt;}
|
|
|
|
.ycb{bottom:412.663707pt;}
|
|
|
|
.ydf{bottom:413.813027pt;}
|
|
|
|
.ydc{bottom:415.146373pt;}
|
|
|
|
.y1e6{bottom:415.299333pt;}
|
|
|
|
.y28d{bottom:415.485333pt;}
|
|
|
|
.y2d1{bottom:415.565333pt;}
|
|
|
|
.y34d{bottom:415.749187pt;}
|
|
|
|
.y3ce{bottom:416.485333pt;}
|
|
|
|
.yd{bottom:418.042667pt;}
|
|
|
|
.y13{bottom:418.822667pt;}
|
|
|
|
.y332{bottom:419.476120pt;}
|
|
|
|
.y1e{bottom:420.773480pt;}
|
|
|
|
.y357{bottom:421.846747pt;}
|
|
|
|
.y3b{bottom:422.953387pt;}
|
|
|
|
.y9e{bottom:423.476120pt;}
|
|
|
|
.y30d{bottom:423.489453pt;}
|
|
|
|
.y3cc{bottom:423.685333pt;}
|
|
|
|
.y19{bottom:424.909747pt;}
|
|
|
|
.y3c0{bottom:425.040000pt;}
|
|
|
|
.y3db{bottom:425.207320pt;}
|
|
|
|
.y19c{bottom:426.698947pt;}
|
|
|
|
.y25c{bottom:427.168000pt;}
|
|
|
|
.y56{bottom:428.298000pt;}
|
|
|
|
.y105{bottom:428.437387pt;}
|
|
|
|
.y127{bottom:428.589427pt;}
|
|
|
|
.y139{bottom:429.044080pt;}
|
|
|
|
.y204{bottom:429.293333pt;}
|
|
|
|
.y24e{bottom:429.405347pt;}
|
|
|
|
.y36f{bottom:429.525133pt;}
|
|
|
|
.y86{bottom:430.780667pt;}
|
|
|
|
.y2f9{bottom:431.023147pt;}
|
|
|
|
.yca{bottom:432.663707pt;}
|
|
|
|
.yde{bottom:433.813027pt;}
|
|
|
|
.y227{bottom:433.925333pt;}
|
|
|
|
.yd8{bottom:435.146373pt;}
|
|
|
|
.y1e5{bottom:435.299333pt;}
|
|
|
|
.y28c{bottom:435.485333pt;}
|
|
|
|
.y2d0{bottom:435.565333pt;}
|
|
|
|
.y2f1{bottom:436.017333pt;}
|
|
|
|
.y2f{bottom:437.114080pt;}
|
|
|
|
.y319{bottom:438.437987pt;}
|
|
|
|
.y331{bottom:439.476120pt;}
|
|
|
|
.y33e{bottom:440.276120pt;}
|
|
|
|
.y3f6{bottom:440.853400pt;}
|
|
|
|
.y118{bottom:442.029427pt;}
|
|
|
|
.y1f8{bottom:442.125333pt;}
|
|
|
|
.y2a7{bottom:442.220480pt;}
|
|
|
|
.y398{bottom:442.351947pt;}
|
|
|
|
.y9d{bottom:443.476120pt;}
|
|
|
|
.y3cb{bottom:443.685333pt;}
|
|
|
|
.y3a{bottom:444.848773pt;}
|
|
|
|
.y3bf{bottom:445.040000pt;}
|
|
|
|
.y3da{bottom:445.207320pt;}
|
|
|
|
.y25b{bottom:447.168000pt;}
|
|
|
|
.y55{bottom:448.298000pt;}
|
|
|
|
.y203{bottom:449.293333pt;}
|
|
|
|
.y234{bottom:449.330840pt;}
|
|
|
|
.y24d{bottom:449.405347pt;}
|
|
|
|
.y36e{bottom:449.525133pt;}
|
|
|
|
.y75{bottom:450.780667pt;}
|
|
|
|
.yb5{bottom:451.377453pt;}
|
|
|
|
.y162{bottom:451.462067pt;}
|
|
|
|
.yc9{bottom:452.663707pt;}
|
|
|
|
.ydd{bottom:453.813027pt;}
|
|
|
|
.yd7{bottom:455.146373pt;}
|
|
|
|
.y28b{bottom:455.485333pt;}
|
|
|
|
.y2f0{bottom:456.017333pt;}
|
|
|
|
.y2e{bottom:457.114080pt;}
|
|
|
|
.y32b{bottom:457.138933pt;}
|
|
|
|
.y318{bottom:458.437987pt;}
|
|
|
|
.y3d2{bottom:458.771920pt;}
|
|
|
|
.y104{bottom:460.437387pt;}
|
|
|
|
.y126{bottom:460.589427pt;}
|
|
|
|
.y138{bottom:461.044080pt;}
|
|
|
|
.y147{bottom:462.029427pt;}
|
|
|
|
.y1f7{bottom:462.125333pt;}
|
|
|
|
.y2a6{bottom:462.220480pt;}
|
|
|
|
.y397{bottom:462.351947pt;}
|
|
|
|
.y9c{bottom:463.476120pt;}
|
|
|
|
.y1d3{bottom:464.066000pt;}
|
|
|
|
.y215{bottom:464.605333pt;}
|
|
|
|
.y2b8{bottom:464.703147pt;}
|
|
|
|
.y3be{bottom:465.040000pt;}
|
|
|
|
.y19b{bottom:466.698947pt;}
|
|
|
|
.y25a{bottom:467.168000pt;}
|
|
|
|
.y54{bottom:468.298000pt;}
|
|
|
|
.y202{bottom:469.293333pt;}
|
|
|
|
.y233{bottom:469.330840pt;}
|
|
|
|
.y24c{bottom:469.405347pt;}
|
|
|
|
.y36d{bottom:469.525133pt;}
|
|
|
|
.y74{bottom:470.780667pt;}
|
|
|
|
.yb4{bottom:471.377453pt;}
|
|
|
|
.yc8{bottom:472.663707pt;}
|
|
|
|
.y305{bottom:473.505813pt;}
|
|
|
|
.y41d{bottom:473.641640pt;}
|
|
|
|
.ydb{bottom:475.146373pt;}
|
|
|
|
.y1e4{bottom:475.299333pt;}
|
|
|
|
.y28a{bottom:475.485333pt;}
|
|
|
|
.y2cf{bottom:475.565333pt;}
|
|
|
|
.y2ef{bottom:476.017333pt;}
|
|
|
|
.y2d{bottom:477.114080pt;}
|
|
|
|
.y32a{bottom:477.138933pt;}
|
|
|
|
.y317{bottom:478.437987pt;}
|
|
|
|
.y330{bottom:479.476120pt;}
|
|
|
|
.y3c7{bottom:479.712000pt;}
|
|
|
|
.y3f5{bottom:480.853400pt;}
|
|
|
|
.y117{bottom:482.029427pt;}
|
|
|
|
.y267{bottom:482.030787pt;}
|
|
|
|
.y2a5{bottom:482.220480pt;}
|
|
|
|
.y3a9{bottom:482.253280pt;}
|
|
|
|
.yb6{bottom:483.364120pt;}
|
|
|
|
.yb7{bottom:483.476120pt;}
|
|
|
|
.y1d2{bottom:484.066000pt;}
|
|
|
|
.y2b7{bottom:484.703147pt;}
|
|
|
|
.y3bd{bottom:485.040000pt;}
|
|
|
|
.y19a{bottom:486.698947pt;}
|
|
|
|
.y316{bottom:486.867333pt;}
|
|
|
|
.y3b0{bottom:486.986187pt;}
|
|
|
|
.y53{bottom:488.298000pt;}
|
|
|
|
.y201{bottom:489.293333pt;}
|
|
|
|
.y232{bottom:489.330840pt;}
|
|
|
|
.y24b{bottom:489.405347pt;}
|
|
|
|
.y36c{bottom:489.525133pt;}
|
|
|
|
.y73{bottom:490.780667pt;}
|
|
|
|
.yb3{bottom:491.377453pt;}
|
|
|
|
.yc7{bottom:492.663707pt;}
|
|
|
|
.y242{bottom:493.218840pt;}
|
|
|
|
.y304{bottom:493.505813pt;}
|
|
|
|
.yd6{bottom:495.146373pt;}
|
|
|
|
.y1e3{bottom:495.299333pt;}
|
|
|
|
.y289{bottom:495.485333pt;}
|
|
|
|
.y2ee{bottom:496.017333pt;}
|
|
|
|
.y325{bottom:497.509600pt;}
|
|
|
|
.y3e9{bottom:498.370733pt;}
|
|
|
|
.y32f{bottom:499.476120pt;}
|
|
|
|
.y33d{bottom:500.276120pt;}
|
|
|
|
.y3f4{bottom:500.853400pt;}
|
|
|
|
.y116{bottom:502.029427pt;}
|
|
|
|
.y1f6{bottom:502.125333pt;}
|
|
|
|
.y2a4{bottom:502.220480pt;}
|
|
|
|
.y396{bottom:502.351947pt;}
|
|
|
|
.y9b{bottom:503.476120pt;}
|
|
|
|
.y1d1{bottom:504.066000pt;}
|
|
|
|
.y384{bottom:504.452973pt;}
|
|
|
|
.y388{bottom:504.466307pt;}
|
|
|
|
.y181{bottom:505.597867pt;}
|
|
|
|
.y199{bottom:506.698947pt;}
|
|
|
|
.y259{bottom:507.168000pt;}
|
|
|
|
.y52{bottom:508.298000pt;}
|
|
|
|
.y103{bottom:508.437387pt;}
|
|
|
|
.y200{bottom:509.293333pt;}
|
|
|
|
.y231{bottom:509.330840pt;}
|
|
|
|
.y36b{bottom:509.525133pt;}
|
|
|
|
.y72{bottom:510.780667pt;}
|
|
|
|
.yb2{bottom:511.377453pt;}
|
|
|
|
.yc6{bottom:512.663707pt;}
|
|
|
|
.y137{bottom:513.044080pt;}
|
|
|
|
.y226{bottom:513.925333pt;}
|
|
|
|
.yd5{bottom:515.146373pt;}
|
|
|
|
.ye5{bottom:515.244347pt;}
|
|
|
|
.y288{bottom:515.485333pt;}
|
|
|
|
.y2ed{bottom:516.017333pt;}
|
|
|
|
.y2c{bottom:517.114080pt;}
|
|
|
|
.y324{bottom:517.509600pt;}
|
|
|
|
.y3d3{bottom:518.042587pt;}
|
|
|
|
.y3e8{bottom:518.370733pt;}
|
|
|
|
.y32e{bottom:519.476120pt;}
|
|
|
|
.y214{bottom:520.605333pt;}
|
|
|
|
.y3f3{bottom:520.853400pt;}
|
|
|
|
.y115{bottom:522.029427pt;}
|
|
|
|
.y1f5{bottom:522.125333pt;}
|
|
|
|
.y2a3{bottom:522.220480pt;}
|
|
|
|
.y395{bottom:522.351947pt;}
|
|
|
|
.y9a{bottom:523.476120pt;}
|
|
|
|
.y102{bottom:524.437387pt;}
|
|
|
|
.y2b6{bottom:524.703147pt;}
|
|
|
|
.y3bc{bottom:525.040000pt;}
|
|
|
|
.y198{bottom:526.698947pt;}
|
|
|
|
.y1dd{bottom:527.587333pt;}
|
|
|
|
.y2de{bottom:527.826667pt;}
|
|
|
|
.y3ca{bottom:527.985280pt;}
|
|
|
|
.y1ff{bottom:529.293333pt;}
|
|
|
|
.y230{bottom:529.330840pt;}
|
|
|
|
.y3b6{bottom:529.468853pt;}
|
|
|
|
.y71{bottom:530.780667pt;}
|
|
|
|
.ye4{bottom:531.244347pt;}
|
|
|
|
.y187{bottom:531.786947pt;}
|
|
|
|
.y24a{bottom:532.256000pt;}
|
|
|
|
.y303{bottom:533.505813pt;}
|
|
|
|
.y15{bottom:535.216387pt;}
|
|
|
|
.y1e2{bottom:535.299333pt;}
|
|
|
|
.y287{bottom:535.485333pt;}
|
|
|
|
.y2ec{bottom:536.017333pt;}
|
|
|
|
.y28{bottom:537.114080pt;}
|
|
|
|
.y329{bottom:537.138933pt;}
|
|
|
|
.y40a{bottom:537.367333pt;}
|
|
|
|
.ye{bottom:538.598667pt;}
|
|
|
|
.y32d{bottom:539.476120pt;}
|
|
|
|
.y1b{bottom:540.824000pt;}
|
|
|
|
.y3f2{bottom:540.853400pt;}
|
|
|
|
.y114{bottom:542.029427pt;}
|
|
|
|
.y1f4{bottom:542.125333pt;}
|
|
|
|
.y2a2{bottom:542.220480pt;}
|
|
|
|
.y394{bottom:542.351947pt;}
|
|
|
|
.y99{bottom:543.476120pt;}
|
|
|
|
.y1d9{bottom:544.066000pt;}
|
|
|
|
.y241{bottom:545.218840pt;}
|
|
|
|
.y197{bottom:546.698947pt;}
|
|
|
|
.y258{bottom:547.168000pt;}
|
|
|
|
.y51{bottom:548.298000pt;}
|
|
|
|
.y1fe{bottom:549.293333pt;}
|
|
|
|
.y22f{bottom:549.330840pt;}
|
|
|
|
.y3b5{bottom:549.468853pt;}
|
|
|
|
.y70{bottom:550.780667pt;}
|
|
|
|
.yb1{bottom:551.377453pt;}
|
|
|
|
.yc5{bottom:552.663707pt;}
|
|
|
|
.y136{bottom:553.044080pt;}
|
|
|
|
.y180{bottom:553.597867pt;}
|
|
|
|
.yd4{bottom:555.146373pt;}
|
|
|
|
.y286{bottom:555.485333pt;}
|
|
|
|
.y2eb{bottom:556.017333pt;}
|
|
|
|
.y2b{bottom:557.114080pt;}
|
|
|
|
.y323{bottom:557.509600pt;}
|
|
|
|
.y3e7{bottom:558.370733pt;}
|
|
|
|
.y34c{bottom:559.749187pt;}
|
|
|
|
.y3c9{bottom:560.118613pt;}
|
|
|
|
.y3f1{bottom:560.853400pt;}
|
|
|
|
.y113{bottom:562.029427pt;}
|
|
|
|
.y1f3{bottom:562.125333pt;}
|
|
|
|
.y3a8{bottom:562.253280pt;}
|
|
|
|
.y98{bottom:563.476120pt;}
|
|
|
|
.y1d0{bottom:564.066000pt;}
|
|
|
|
.y240{bottom:565.218840pt;}
|
|
|
|
.y196{bottom:566.698947pt;}
|
|
|
|
.y257{bottom:567.168000pt;}
|
|
|
|
.y50{bottom:568.298000pt;}
|
|
|
|
.y125{bottom:568.589427pt;}
|
|
|
|
.y17f{bottom:569.597867pt;}
|
|
|
|
.y6f{bottom:570.780667pt;}
|
|
|
|
.y2f8{bottom:571.023147pt;}
|
|
|
|
.yc4{bottom:572.663707pt;}
|
|
|
|
.y302{bottom:573.505813pt;}
|
|
|
|
.yd3{bottom:575.146373pt;}
|
|
|
|
.y285{bottom:575.485333pt;}
|
|
|
|
.y34b{bottom:575.749187pt;}
|
|
|
|
.y2a{bottom:577.114080pt;}
|
|
|
|
.y225{bottom:577.925333pt;}
|
|
|
|
.y3e6{bottom:578.370733pt;}
|
|
|
|
.y23{bottom:580.328947pt;}
|
|
|
|
.y3f0{bottom:580.853400pt;}
|
|
|
|
.y112{bottom:582.029427pt;}
|
|
|
|
.y1f2{bottom:582.125333pt;}
|
|
|
|
.y2a1{bottom:582.220480pt;}
|
|
|
|
.y392{bottom:582.351947pt;}
|
|
|
|
.y97{bottom:583.476120pt;}
|
|
|
|
.y30c{bottom:583.489453pt;}
|
|
|
|
.y124{bottom:584.589427pt;}
|
|
|
|
.y135{bottom:585.044080pt;}
|
|
|
|
.y17e{bottom:585.597867pt;}
|
|
|
|
.y195{bottom:586.698947pt;}
|
|
|
|
.y256{bottom:587.168000pt;}
|
|
|
|
.y4f{bottom:588.298000pt;}
|
|
|
|
.y101{bottom:588.437387pt;}
|
|
|
|
.y1fd{bottom:589.293333pt;}
|
|
|
|
.y22e{bottom:589.330840pt;}
|
|
|
|
.y3b4{bottom:589.468853pt;}
|
|
|
|
.y6e{bottom:590.780667pt;}
|
|
|
|
.y2f7{bottom:591.023147pt;}
|
|
|
|
.yc3{bottom:592.663707pt;}
|
|
|
|
.y224{bottom:593.925333pt;}
|
|
|
|
.yd2{bottom:595.146373pt;}
|
|
|
|
.ye3{bottom:595.244347pt;}
|
|
|
|
.y284{bottom:595.485333pt;}
|
|
|
|
.y2ea{bottom:596.017333pt;}
|
|
|
|
.y29{bottom:597.114080pt;}
|
|
|
|
.y31e{bottom:597.305160pt;}
|
|
|
|
.y3d9{bottom:598.055920pt;}
|
|
|
|
.y3e5{bottom:598.370733pt;}
|
|
|
|
.y3ac{bottom:600.253333pt;}
|
|
|
|
.y17d{bottom:601.597867pt;}
|
|
|
|
.y186{bottom:601.881707pt;}
|
|
|
|
.y266{bottom:602.030787pt;}
|
|
|
|
.y29d{bottom:602.220480pt;}
|
|
|
|
.y391{bottom:602.351947pt;}
|
|
|
|
.y96{bottom:603.476120pt;}
|
|
|
|
.y100{bottom:604.437387pt;}
|
|
|
|
.y22d{bottom:605.330840pt;}
|
|
|
|
.y194{bottom:606.698947pt;}
|
|
|
|
.y255{bottom:607.168000pt;}
|
|
|
|
.y4c{bottom:608.298000pt;}
|
|
|
|
.y3d1{bottom:608.358000pt;}
|
|
|
|
.y3b3{bottom:609.468853pt;}
|
|
|
|
.y6d{bottom:610.780667pt;}
|
|
|
|
.ye2{bottom:611.244347pt;}
|
|
|
|
.y32c{bottom:611.476120pt;}
|
|
|
|
.ybf{bottom:612.663707pt;}
|
|
|
|
.y301{bottom:613.505813pt;}
|
|
|
|
.yd1{bottom:615.146373pt;}
|
|
|
|
.y283{bottom:615.485333pt;}
|
|
|
|
.y2e9{bottom:616.017333pt;}
|
|
|
|
.y3ab{bottom:616.253333pt;}
|
|
|
|
.y17c{bottom:617.597867pt;}
|
|
|
|
.y185{bottom:617.881707pt;}
|
|
|
|
.y3e3{bottom:618.370733pt;}
|
|
|
|
.yff{bottom:620.437387pt;}
|
|
|
|
.y3ef{bottom:620.853400pt;}
|
|
|
|
.y1f1{bottom:622.125333pt;}
|
|
|
|
.y2a0{bottom:622.220480pt;}
|
|
|
|
.y390{bottom:622.351947pt;}
|
|
|
|
.y95{bottom:623.476120pt;}
|
|
|
|
.y1cf{bottom:624.066000pt;}
|
|
|
|
.y23f{bottom:625.218840pt;}
|
|
|
|
.y193{bottom:626.698947pt;}
|
|
|
|
.y254{bottom:627.168000pt;}
|
|
|
|
.y4e{bottom:628.298000pt;}
|
|
|
|
.y1fc{bottom:629.293333pt;}
|
|
|
|
.y3b2{bottom:629.468853pt;}
|
|
|
|
.y6c{bottom:630.780667pt;}
|
|
|
|
.y2f6{bottom:631.023147pt;}
|
|
|
|
.yc2{bottom:632.663707pt;}
|
|
|
|
.y17b{bottom:633.597867pt;}
|
|
|
|
.y27{bottom:634.714080pt;}
|
|
|
|
.yd0{bottom:635.146373pt;}
|
|
|
|
.yfe{bottom:636.437387pt;}
|
|
|
|
.y31d{bottom:637.305160pt;}
|
|
|
|
.y409{bottom:637.367333pt;}
|
|
|
|
.y17{bottom:638.576493pt;}
|
|
|
|
.y34a{bottom:639.749187pt;}
|
|
|
|
.y3d7{bottom:640.058000pt;}
|
|
|
|
.y8{bottom:641.471307pt;}
|
|
|
|
.y265{bottom:642.030787pt;}
|
|
|
|
.y29f{bottom:642.220480pt;}
|
|
|
|
.y38f{bottom:642.351947pt;}
|
|
|
|
.y94{bottom:643.476120pt;}
|
|
|
|
.y1ce{bottom:644.066000pt;}
|
|
|
|
.y23e{bottom:645.218840pt;}
|
|
|
|
.y192{bottom:646.698947pt;}
|
|
|
|
.y253{bottom:647.168000pt;}
|
|
|
|
.y4d{bottom:648.298000pt;}
|
|
|
|
.y152{bottom:648.463000pt;}
|
|
|
|
.y4{bottom:649.716400pt;}
|
|
|
|
.yf{bottom:650.482667pt;}
|
|
|
|
.y6b{bottom:650.780667pt;}
|
|
|
|
.y2f5{bottom:651.023147pt;}
|
|
|
|
.y1c{bottom:652.554667pt;}
|
|
|
|
.yc1{bottom:652.663707pt;}
|
|
|
|
.y300{bottom:653.505813pt;}
|
|
|
|
.ycf{bottom:655.146373pt;}
|
|
|
|
.y356{bottom:655.348667pt;}
|
|
|
|
.y1fb{bottom:656.493333pt;}
|
|
|
|
.y31c{bottom:657.305160pt;}
|
|
|
|
.y408{bottom:657.367333pt;}
|
|
|
|
.y41c{bottom:657.937080pt;}
|
|
|
|
.ye1{bottom:659.244347pt;}
|
|
|
|
.y3c6{bottom:659.712000pt;}
|
|
|
|
.y410{bottom:660.033013pt;}
|
|
|
|
.y223{bottom:661.925333pt;}
|
|
|
|
.y29e{bottom:662.220480pt;}
|
|
|
|
.y38e{bottom:662.351947pt;}
|
|
|
|
.y93{bottom:663.476120pt;}
|
|
|
|
.y1cd{bottom:664.066000pt;}
|
|
|
|
.y2b5{bottom:664.703147pt;}
|
|
|
|
.y322{bottom:664.709600pt;}
|
|
|
|
.yc{bottom:666.024000pt;}
|
|
|
|
.y191{bottom:666.698947pt;}
|
|
|
|
.y252{bottom:667.168000pt;}
|
|
|
|
.y7{bottom:668.671307pt;}
|
|
|
|
.y1f0{bottom:669.325333pt;}
|
|
|
|
.y3b1{bottom:669.468853pt;}
|
|
|
|
.y6a{bottom:670.780667pt;}
|
|
|
|
.y2f4{bottom:671.023147pt;}
|
|
|
|
.yc0{bottom:672.663707pt;}
|
|
|
|
.y2ff{bottom:673.505813pt;}
|
|
|
|
.yce{bottom:675.146373pt;}
|
|
|
|
.y3{bottom:676.357733pt;}
|
|
|
|
.y222{bottom:677.925333pt;}
|
|
|
|
.y3e4{bottom:678.370733pt;}
|
|
|
|
.y3c5{bottom:679.712000pt;}
|
|
|
|
.y3d6{bottom:680.058000pt;}
|
|
|
|
.y17a{bottom:681.597867pt;}
|
|
|
|
.y184{bottom:681.881707pt;}
|
|
|
|
.y264{bottom:682.030787pt;}
|
|
|
|
.y38d{bottom:682.351947pt;}
|
|
|
|
.y92{bottom:683.476120pt;}
|
|
|
|
.yfd{bottom:684.437387pt;}
|
|
|
|
.y23d{bottom:685.218840pt;}
|
|
|
|
.yb{bottom:686.389333pt;}
|
|
|
|
.y151{bottom:688.463000pt;}
|
|
|
|
.y315{bottom:689.958173pt;}
|
|
|
|
.y221{bottom:693.925333pt;}
|
|
|
|
.y2{bottom:695.871067pt;}
|
|
|
|
.y179{bottom:697.597867pt;}
|
|
|
|
.y183{bottom:697.881707pt;}
|
|
|
|
.y41b{bottom:697.937080pt;}
|
|
|
|
.yfc{bottom:700.437387pt;}
|
|
|
|
.y22c{bottom:701.330840pt;}
|
|
|
|
.y263{bottom:702.030787pt;}
|
|
|
|
.y38c{bottom:702.351947pt;}
|
|
|
|
.y91{bottom:703.476120pt;}
|
|
|
|
.y1cc{bottom:704.066000pt;}
|
|
|
|
.y387{bottom:704.466307pt;}
|
|
|
|
.y150{bottom:708.463000pt;}
|
|
|
|
.y1ef{bottom:709.325333pt;}
|
|
|
|
.y35f{bottom:710.541333pt;}
|
|
|
|
.y313{bottom:711.870707pt;}
|
|
|
|
.y3d0{bottom:712.146667pt;}
|
|
|
|
.y178{bottom:713.597867pt;}
|
|
|
|
.y182{bottom:713.881707pt;}
|
|
|
|
.y314{bottom:713.937373pt;}
|
|
|
|
.ybc{bottom:715.208000pt;}
|
|
|
|
.y1dc{bottom:715.213333pt;}
|
|
|
|
.yfb{bottom:716.437387pt;}
|
|
|
|
.y89{bottom:717.560000pt;}
|
|
|
|
.y270{bottom:718.767133pt;}
|
|
|
|
.y349{bottom:719.749187pt;}
|
|
|
|
.ybd{bottom:720.854280pt;}
|
|
|
|
.y22b{bottom:721.330840pt;}
|
|
|
|
.y35c{bottom:721.721413pt;}
|
|
|
|
.ybe{bottom:722.920947pt;}
|
|
|
|
.y281{bottom:723.069333pt;}
|
|
|
|
.y3ae{bottom:723.073507pt;}
|
|
|
|
.y3af{bottom:723.086840pt;}
|
|
|
|
.y8a{bottom:724.202867pt;}
|
|
|
|
.y386{bottom:724.466307pt;}
|
|
|
|
.y419{bottom:724.854667pt;}
|
|
|
|
.y8b{bottom:726.269533pt;}
|
|
|
|
.y35d{bottom:726.582667pt;}
|
|
|
|
.y41a{bottom:726.921333pt;}
|
|
|
|
.y25{bottom:728.268000pt;}
|
|
|
|
.y14f{bottom:728.463000pt;}
|
|
|
|
.y35e{bottom:728.649333pt;}
|
|
|
|
.y26{bottom:730.334667pt;}
|
|
|
|
.yba{bottom:731.222667pt;}
|
|
|
|
.y1da{bottom:731.254667pt;}
|
|
|
|
.y2cd{bottom:731.916000pt;}
|
|
|
|
.y3aa{bottom:732.188000pt;}
|
|
|
|
.ybb{bottom:733.289333pt;}
|
|
|
|
.y1db{bottom:733.321333pt;}
|
|
|
|
.y2ce{bottom:733.982667pt;}
|
|
|
|
.y87{bottom:735.214667pt;}
|
|
|
|
.y282{bottom:735.485333pt;}
|
|
|
|
.y88{bottom:737.281333pt;}
|
|
|
|
.y407{bottom:737.367333pt;}
|
|
|
|
.y1c3{bottom:738.892667pt;}
|
|
|
|
.y3d5{bottom:740.058000pt;}
|
|
|
|
.y22a{bottom:741.330840pt;}
|
|
|
|
.y262{bottom:742.030787pt;}
|
|
|
|
.y38b{bottom:742.351947pt;}
|
|
|
|
.y90{bottom:743.476120pt;}
|
|
|
|
.y1cb{bottom:744.066000pt;}
|
|
|
|
.y1ee{bottom:745.325333pt;}
|
|
|
|
.y220{bottom:745.925333pt;}
|
|
|
|
.y11{bottom:750.142667pt;}
|
|
|
|
.y12{bottom:751.834667pt;}
|
|
|
|
.y3ba{bottom:754.413333pt;}
|
|
|
|
.y40f{bottom:767.550080pt;}
|
|
|
|
.y158{bottom:769.140720pt;}
|
|
|
|
.y229{bottom:769.676173pt;}
|
|
|
|
.y280{bottom:769.773800pt;}
|
|
|
|
.yb9{bottom:771.082373pt;}
|
|
|
|
.y111{bottom:771.708080pt;}
|
|
|
|
.y1ba{bottom:771.857333pt;}
|
|
|
|
.y1c2{bottom:772.811333pt;}
|
|
|
|
.y383{bottom:773.545827pt;}
|
|
|
|
.y38a{bottom:774.001160pt;}
|
|
|
|
.h15{height:26.857168pt;}
|
|
|
|
.h5{height:33.745757pt;}
|
|
|
|
.h6{height:40.016084pt;}
|
|
|
|
.he{height:42.182197pt;}
|
|
|
|
.h14{height:42.204121pt;}
|
|
|
|
.hb{height:44.462316pt;}
|
|
|
|
.h2{height:50.618636pt;}
|
|
|
|
.h1b{height:51.407908pt;}
|
|
|
|
.h3{height:53.354779pt;}
|
|
|
|
.hf{height:66.693473pt;}
|
|
|
|
.h17{height:66.693667pt;}
|
|
|
|
.h9{height:71.709735pt;}
|
|
|
|
.h8{height:75.585937pt;}
|
|
|
|
.ha{height:109.673712pt;}
|
|
|
|
.h11{height:137.833178pt;}
|
|
|
|
.h7{height:177.165227pt;}
|
|
|
|
.h1a{height:265.096885pt;}
|
|
|
|
.hd{height:315.682441pt;}
|
|
|
|
.h4{height:320.128672pt;}
|
|
|
|
.h1c{height:327.343128pt;}
|
|
|
|
.h19{height:335.689129pt;}
|
|
|
|
.h18{height:338.566292pt;}
|
|
|
|
.h12{height:341.986087pt;}
|
|
|
|
.h13{height:763.333333pt;}
|
|
|
|
.hc{height:780.666667pt;}
|
|
|
|
.h16{height:786.666667pt;}
|
|
|
|
.h10{height:788.666667pt;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.h0{height:793.706667pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.h1{height:794.000000pt;}
|
|
|
|
.w7{width:1094.666667pt;}
|
|
|
|
.w2{width:1096.666667pt;}
|
|
|
|
.w9{width:1097.333333pt;}
|
|
|
|
.w8{width:1100.666667pt;}
|
|
|
|
.w3{width:1103.333333pt;}
|
|
|
|
.w4{width:1104.000000pt;}
|
|
|
|
.wa{width:1105.333333pt;}
|
|
|
|
.w6{width:1107.333333pt;}
|
|
|
|
.w5{width:1110.000000pt;}
|
2013-05-04 13:38:05 +00:00
|
|
|
.w0{width:1122.520000pt;}
|
2013-09-28 05:30:57 +00:00
|
|
|
.w1{width:1122.666667pt;}
|
|
|
|
.x0{left:0.000000pt;}
|
|
|
|
.xd5{left:17.596587pt;}
|
|
|
|
.x2a{left:20.366120pt;}
|
|
|
|
.x112{left:33.442440pt;}
|
|
|
|
.x2e{left:36.438667pt;}
|
|
|
|
.x2f{left:38.897333pt;}
|
|
|
|
.x2d{left:41.344000pt;}
|
|
|
|
.x8c{left:42.955040pt;}
|
|
|
|
.x105{left:53.288720pt;}
|
|
|
|
.x12a{left:57.048987pt;}
|
|
|
|
.x13d{left:60.472440pt;}
|
|
|
|
.x85{left:66.897067pt;}
|
|
|
|
.xc0{left:80.313520pt;}
|
|
|
|
.x48{left:84.184427pt;}
|
|
|
|
.x11a{left:85.286027pt;}
|
|
|
|
.x12e{left:89.304987pt;}
|
|
|
|
.x45{left:91.652213pt;}
|
|
|
|
.x12d{left:93.064987pt;}
|
|
|
|
.x12f{left:95.879387pt;}
|
|
|
|
.xf6{left:99.318707pt;}
|
|
|
|
.x30{left:102.014667pt;}
|
|
|
|
.x135{left:103.589520pt;}
|
|
|
|
.x47{left:114.329413pt;}
|
|
|
|
.xec{left:120.504427pt;}
|
|
|
|
.x9c{left:123.532413pt;}
|
|
|
|
.x8d{left:127.435107pt;}
|
|
|
|
.x90{left:135.802667pt;}
|
|
|
|
.x5a{left:138.084000pt;}
|
|
|
|
.x4d{left:141.110667pt;}
|
|
|
|
.x3{left:143.566667pt;}
|
|
|
|
.x4{left:148.449333pt;}
|
|
|
|
.x3c{left:149.828000pt;}
|
|
|
|
.xee{left:152.223533pt;}
|
|
|
|
.x46{left:156.939573pt;}
|
|
|
|
.x142{left:159.037947pt;}
|
|
|
|
.x4e{left:164.286267pt;}
|
|
|
|
.x68{left:167.400800pt;}
|
|
|
|
.xa5{left:169.555467pt;}
|
|
|
|
.x3d{left:172.371200pt;}
|
|
|
|
.x106{left:175.291027pt;}
|
|
|
|
.xef{left:179.751533pt;}
|
|
|
|
.xfa{left:182.476133pt;}
|
|
|
|
.x128{left:185.424133pt;}
|
|
|
|
.x125{left:187.724667pt;}
|
|
|
|
.x136{left:190.683307pt;}
|
|
|
|
.x4f{left:193.674267pt;}
|
|
|
|
.x69{left:196.416800pt;}
|
|
|
|
.x3e{left:199.787600pt;}
|
|
|
|
.xf0{left:201.401933pt;}
|
|
|
|
.x117{left:204.198267pt;}
|
|
|
|
.x113{left:206.704933pt;}
|
|
|
|
.x3f{left:209.476133pt;}
|
|
|
|
.x6{left:212.604000pt;}
|
|
|
|
.x5{left:214.844000pt;}
|
|
|
|
.x137{left:219.050373pt;}
|
|
|
|
.x107{left:222.811960pt;}
|
|
|
|
.x11d{left:224.151733pt;}
|
|
|
|
.x50{left:227.042667pt;}
|
|
|
|
.x6a{left:229.615733pt;}
|
|
|
|
.x40{left:233.528000pt;}
|
|
|
|
.xa6{left:235.903733pt;}
|
|
|
|
.x91{left:240.057733pt;}
|
|
|
|
.x6b{left:242.284400pt;}
|
|
|
|
.xa7{left:244.439067pt;}
|
|
|
|
.x29{left:247.120000pt;}
|
|
|
|
.x114{left:249.596533pt;}
|
|
|
|
.x8{left:252.308000pt;}
|
|
|
|
.x7{left:254.548000pt;}
|
|
|
|
.xf1{left:256.548867pt;}
|
|
|
|
.x13b{left:257.837867pt;}
|
|
|
|
.x51{left:260.411067pt;}
|
|
|
|
.x41{left:262.916000pt;}
|
|
|
|
.x6c{left:264.269600pt;}
|
|
|
|
.xa8{left:268.490933pt;}
|
|
|
|
.xfb{left:270.937733pt;}
|
|
|
|
.x115{left:278.984533pt;}
|
|
|
|
.x11e{left:281.270267pt;}
|
|
|
|
.x52{left:285.165600pt;}
|
|
|
|
.x42{left:287.728400pt;}
|
|
|
|
.xfc{left:290.967867pt;}
|
|
|
|
.xa{left:295.204000pt;}
|
|
|
|
.x9{left:297.444000pt;}
|
|
|
|
.x43{left:299.483600pt;}
|
|
|
|
.x116{left:302.569333pt;}
|
|
|
|
.x11f{left:304.222667pt;}
|
|
|
|
.xc1{left:306.427413pt;}
|
|
|
|
.x118{left:309.176667pt;}
|
|
|
|
.x33{left:311.465333pt;}
|
|
|
|
.x35{left:312.798667pt;}
|
|
|
|
.x49{left:316.535133pt;}
|
|
|
|
.x86{left:318.475440pt;}
|
|
|
|
.xfd{left:319.855733pt;}
|
|
|
|
.x108{left:321.449827pt;}
|
|
|
|
.x44{left:326.304800pt;}
|
|
|
|
.x12b{left:327.974520pt;}
|
|
|
|
.x39{left:331.312187pt;}
|
|
|
|
.x120{left:333.147733pt;}
|
|
|
|
.x119{left:338.564667pt;}
|
|
|
|
.x121{left:342.836267pt;}
|
|
|
|
.xf2{left:345.514733pt;}
|
|
|
|
.x53{left:351.699867pt;}
|
|
|
|
.x87{left:353.792773pt;}
|
|
|
|
.x109{left:356.715427pt;}
|
|
|
|
.x138{left:358.178373pt;}
|
|
|
|
.xb{left:360.612000pt;}
|
|
|
|
.x1{left:364.149333pt;}
|
|
|
|
.x122{left:365.379467pt;}
|
|
|
|
.xf3{left:368.057933pt;}
|
|
|
|
.x131{left:370.564920pt;}
|
|
|
|
.x130{left:374.324920pt;}
|
|
|
|
.x54{left:386.853867pt;}
|
|
|
|
.xd{left:390.964000pt;}
|
|
|
|
.xc{left:393.204000pt;}
|
|
|
|
.x10a{left:396.593827pt;}
|
|
|
|
.x2b{left:409.562667pt;}
|
|
|
|
.xf4{left:412.251533pt;}
|
|
|
|
.x2c{left:414.445333pt;}
|
|
|
|
.x88{left:415.598107pt;}
|
|
|
|
.x10b{left:424.010227pt;}
|
|
|
|
.xeb{left:429.289127pt;}
|
|
|
|
.x13e{left:433.386267pt;}
|
|
|
|
.xf5{left:436.299267pt;}
|
|
|
|
.x55{left:439.417467pt;}
|
|
|
|
.x13f{left:445.141467pt;}
|
|
|
|
.xf{left:447.916000pt;}
|
|
|
|
.xe{left:450.156000pt;}
|
|
|
|
.x10c{left:453.026227pt;}
|
|
|
|
.x89{left:459.744773pt;}
|
|
|
|
.xa9{left:464.504320pt;}
|
|
|
|
.x56{left:467.540667pt;}
|
|
|
|
.x140{left:472.206533pt;}
|
|
|
|
.x11{left:486.668000pt;}
|
|
|
|
.x10{left:488.908000pt;}
|
|
|
|
.xaa{left:493.429387pt;}
|
|
|
|
.x57{left:496.928667pt;}
|
|
|
|
.x141{left:498.506933pt;}
|
|
|
|
.xab{left:504.180187pt;}
|
|
|
|
.x6d{left:513.244440pt;}
|
|
|
|
.x13{left:516.684000pt;}
|
|
|
|
.x12{left:518.924000pt;}
|
|
|
|
.x58{left:523.229067pt;}
|
|
|
|
.x34{left:526.278667pt;}
|
|
|
|
.x6e{left:539.267907pt;}
|
|
|
|
.x59{left:545.772267pt;}
|
|
|
|
.xac{left:548.373787pt;}
|
|
|
|
.x129{left:551.274667pt;}
|
|
|
|
.x6f{left:554.594307pt;}
|
|
|
|
.x15{left:562.044000pt;}
|
|
|
|
.x14{left:564.284000pt;}
|
|
|
|
.xdc{left:566.003053pt;}
|
|
|
|
.x4a{left:568.818800pt;}
|
|
|
|
.x70{left:575.108040pt;}
|
|
|
|
.x2{left:578.718667pt;}
|
|
|
|
.xad{left:579.882187pt;}
|
|
|
|
.x11b{left:582.230933pt;}
|
|
|
|
.x38{left:586.696000pt;}
|
|
|
|
.x32{left:589.345333pt;}
|
|
|
|
.x4b{left:591.496000pt;}
|
|
|
|
.x17{left:594.244000pt;}
|
|
|
|
.x16{left:596.484000pt;}
|
|
|
|
.x71{left:599.271507pt;}
|
|
|
|
.xdd{left:600.710653pt;}
|
|
|
|
.x3b{left:603.254587pt;}
|
|
|
|
.x13c{left:604.724413pt;}
|
|
|
|
.xed{left:610.103480pt;}
|
|
|
|
.x72{left:614.597907pt;}
|
|
|
|
.xde{left:616.409053pt;}
|
|
|
|
.x12c{left:620.517333pt;}
|
|
|
|
.xae{left:624.447787pt;}
|
|
|
|
.xcc{left:628.839893pt;}
|
|
|
|
.x19{left:635.236000pt;}
|
|
|
|
.x18{left:637.476000pt;}
|
|
|
|
.x134{left:638.676053pt;}
|
|
|
|
.xdf{left:642.932653pt;}
|
|
|
|
.x133{left:645.250453pt;}
|
|
|
|
.x132{left:649.010453pt;}
|
|
|
|
.xaf{left:651.715387pt;}
|
|
|
|
.x8e{left:658.920640pt;}
|
|
|
|
.xb0{left:660.399520pt;}
|
|
|
|
.x8a{left:663.468000pt;}
|
|
|
|
.x73{left:667.235907pt;}
|
|
|
|
.x1b{left:670.180000pt;}
|
|
|
|
.x1a{left:672.420000pt;}
|
|
|
|
.xe0{left:673.585453pt;}
|
|
|
|
.xfe{left:680.077707pt;}
|
|
|
|
.xb1{left:684.376987pt;}
|
|
|
|
.xe1{left:694.566253pt;}
|
|
|
|
.x28{left:698.069813pt;}
|
|
|
|
.x74{left:699.302307pt;}
|
|
|
|
.xc2{left:701.450347pt;}
|
|
|
|
.x1d{left:704.564000pt;}
|
|
|
|
.x1c{left:706.804000pt;}
|
|
|
|
.x75{left:710.053107pt;}
|
|
|
|
.x8f{left:711.896640pt;}
|
|
|
|
.xb2{left:715.401787pt;}
|
|
|
|
.xe2{left:717.146653pt;}
|
|
|
|
.xc3{left:722.579947pt;}
|
|
|
|
.x5b{left:725.257893pt;}
|
|
|
|
.x10d{left:727.833133pt;}
|
|
|
|
.x76{left:731.963907pt;}
|
|
|
|
.x8b{left:734.102667pt;}
|
|
|
|
.x1f{left:738.276000pt;}
|
|
|
|
.x1e{left:740.516000pt;}
|
|
|
|
.xc4{left:743.709547pt;}
|
|
|
|
.x11c{left:744.897600pt;}
|
|
|
|
.xb3{left:748.600720pt;}
|
|
|
|
.x5c{left:751.372293pt;}
|
|
|
|
.xff{left:753.175707pt;}
|
|
|
|
.x139{left:754.898707pt;}
|
|
|
|
.xb4{left:759.351520pt;}
|
|
|
|
.x10e{left:760.494733pt;}
|
|
|
|
.x77{left:762.988707pt;}
|
|
|
|
.xc5{left:764.318347pt;}
|
|
|
|
.xf7{left:767.619613pt;}
|
|
|
|
.x100{left:768.874107pt;}
|
|
|
|
.x21{left:772.548000pt;}
|
|
|
|
.x20{left:774.788000pt;}
|
|
|
|
.xb5{left:777.934987pt;}
|
|
|
|
.x5d{left:784.033893pt;}
|
|
|
|
.xc6{left:785.447947pt;}
|
|
|
|
.x13a{left:789.122707pt;}
|
|
|
|
.x10f{left:791.519533pt;}
|
|
|
|
.x5e{left:795.789093pt;}
|
|
|
|
.xf8{left:797.007613pt;}
|
|
|
|
.x123{left:798.279733pt;}
|
|
|
|
.xcd{left:801.047373pt;}
|
|
|
|
.x23{left:804.412000pt;}
|
|
|
|
.x22{left:806.652000pt;}
|
|
|
|
.xb6{left:808.773787pt;}
|
|
|
|
.xce{left:810.735907pt;}
|
|
|
|
.xc7{left:813.438880pt;}
|
|
|
|
.x92{left:816.711053pt;}
|
|
|
|
.x25{left:819.700000pt;}
|
|
|
|
.x24{left:821.940000pt;}
|
|
|
|
.xf9{left:824.424013pt;}
|
|
|
|
.x5f{left:827.185893pt;}
|
|
|
|
.x78{left:829.279107pt;}
|
|
|
|
.x9d{left:832.006733pt;}
|
|
|
|
.xcf{left:834.713373pt;}
|
|
|
|
.xc8{left:837.155947pt;}
|
|
|
|
.xe3{left:840.836653pt;}
|
|
|
|
.x4c{left:843.779667pt;}
|
|
|
|
.xd6{left:846.660813pt;}
|
|
|
|
.x79{left:849.627507pt;}
|
|
|
|
.xe4{left:851.587453pt;}
|
|
|
|
.x83{left:853.868400pt;}
|
|
|
|
.x36{left:856.786627pt;}
|
|
|
|
.x37{left:858.402667pt;}
|
|
|
|
.x27{left:863.492000pt;}
|
|
|
|
.x26{left:865.732000pt;}
|
|
|
|
.xe5{left:866.913853pt;}
|
|
|
|
.xd7{left:870.452280pt;}
|
|
|
|
.xd0{left:874.294173pt;}
|
|
|
|
.xb7{left:876.924187pt;}
|
|
|
|
.x60{left:881.981493pt;}
|
|
|
|
.x93{left:884.915187pt;}
|
|
|
|
.x7a{left:888.055107pt;}
|
|
|
|
.xc9{left:890.872747pt;}
|
|
|
|
.xe6{left:895.202387pt;}
|
|
|
|
.x61{left:897.679893pt;}
|
|
|
|
.xb8{left:898.834987pt;}
|
|
|
|
.x84{left:901.868400pt;}
|
|
|
|
.x126{left:904.558653pt;}
|
|
|
|
.x9e{left:908.415533pt;}
|
|
|
|
.x7b{left:910.635507pt;}
|
|
|
|
.xd1{left:912.535773pt;}
|
|
|
|
.x94{left:916.369853pt;}
|
|
|
|
.xca{left:918.194080pt;}
|
|
|
|
.xb9{left:920.745787pt;}
|
|
|
|
.x31{left:923.622667pt;}
|
|
|
|
.xe7{left:925.855187pt;}
|
|
|
|
.x9f{left:928.259667pt;}
|
|
|
|
.x95{left:932.068253pt;}
|
|
|
|
.xd2{left:935.004573pt;}
|
|
|
|
.xba{left:938.618320pt;}
|
|
|
|
.x7c{left:941.474307pt;}
|
|
|
|
.x110{left:943.237667pt;}
|
|
|
|
.xcb{left:945.705547pt;}
|
|
|
|
.x96{left:948.213053pt;}
|
|
|
|
.x3a{left:950.790280pt;}
|
|
|
|
.x62{left:954.707493pt;}
|
|
|
|
.x97{left:958.963853pt;}
|
|
|
|
.x7d{left:963.050307pt;}
|
|
|
|
.x63{left:965.458293pt;}
|
|
|
|
.x127{left:968.951853pt;}
|
|
|
|
.xbb{left:971.337787pt;}
|
|
|
|
.x98{left:976.633853pt;}
|
|
|
|
.x101{left:977.768640pt;}
|
|
|
|
.xd8{left:979.969080pt;}
|
|
|
|
.xe8{left:981.861853pt;}
|
|
|
|
.xa0{left:984.059667pt;}
|
|
|
|
.x7e{left:986.263107pt;}
|
|
|
|
.x111{left:989.402867pt;}
|
|
|
|
.xbc{left:992.913787pt;}
|
|
|
|
.x64{left:996.297093pt;}
|
|
|
|
.x102{left:997.877307pt;}
|
|
|
|
.xd9{left:1001.545080pt;}
|
|
|
|
.xe9{left:1003.958653pt;}
|
|
|
|
.x7f{left:1006.834707pt;}
|
|
|
|
.xa1{left:1008.595133pt;}
|
|
|
|
.xd3{left:1010.446173pt;}
|
|
|
|
.xbd{left:1016.126587pt;}
|
|
|
|
.x103{left:1018.279440pt;}
|
|
|
|
.x80{left:1022.533107pt;}
|
|
|
|
.xa2{left:1025.111933pt;}
|
|
|
|
.x99{left:1029.176787pt;}
|
|
|
|
.x65{left:1031.562693pt;}
|
|
|
|
.xa3{left:1035.862733pt;}
|
|
|
|
.x104{left:1038.851040pt;}
|
|
|
|
.x66{left:1042.313493pt;}
|
|
|
|
.x9a{left:1045.693587pt;}
|
|
|
|
.x81{left:1047.977907pt;}
|
|
|
|
.xda{left:1050.165480pt;}
|
|
|
|
.xbe{left:1052.396587pt;}
|
|
|
|
.xea{left:1053.881053pt;}
|
|
|
|
.x124{left:1055.162267pt;}
|
|
|
|
.xa4{left:1058.443133pt;}
|
|
|
|
.x67{left:1064.224293pt;}
|
|
|
|
.x9b{left:1066.823187pt;}
|
|
|
|
.x82{left:1069.107507pt;}
|
|
|
|
.xd4{left:1072.160973pt;}
|
|
|
|
.xdb{left:1074.399213pt;}
|
|
|
|
.xbf{left:1077.841387pt;}
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2012-09-27 04:56:41 +00:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript">
|
|
|
|
/*! jQuery v@1.8.1 jquery.com | jquery.org/license */
|
|
|
|
(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ
|
|
|
|
<script type="text/javascript">
|
2013-05-04 13:38:05 +00:00
|
|
|
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=javascript : */
|
2012-09-27 04:56:41 +00:00
|
|
|
/*
|
2013-05-04 13:38:05 +00:00
|
|
|
* pdf2htmlEX.js : a simple demo UI for pdf2htmlEX
|
2012-09-27 04:56:41 +00:00
|
|
|
*
|
|
|
|
* handles UI events/actions/effects
|
2013-05-04 13:38:05 +00:00
|
|
|
* Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com>
|
2012-09-27 04:56:41 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
'use strict';
|
|
|
|
|
2012-09-27 04:56:41 +00:00
|
|
|
var pdf2htmlEX = (function(){
|
2013-02-28 14:56:45 +00:00
|
|
|
var CSS_CLASS_NAMES = {
|
|
|
|
page_frame : 'pf',
|
|
|
|
page_decoration : 'pd',
|
|
|
|
page_content_box : 'pc',
|
|
|
|
page_data : 'pi',
|
2013-03-04 07:35:30 +00:00
|
|
|
background_image : 'bi',
|
2013-02-28 14:56:45 +00:00
|
|
|
link : 'l',
|
|
|
|
__dummy__ : 'no comma'
|
|
|
|
};
|
2013-09-28 05:30:57 +00:00
|
|
|
var DEFAULT_PAGES_TO_PRELOAD = 3;
|
2013-02-28 14:56:45 +00:00
|
|
|
|
2012-09-27 04:56:41 +00:00
|
|
|
var pdf2htmlEX = new Object();
|
|
|
|
|
|
|
|
var EPS = 1e-6;
|
|
|
|
var invert = function(ctm) {
|
|
|
|
var det = ctm[0] * ctm[3] - ctm[1] * ctm[2];
|
|
|
|
var ictm = new Array();
|
|
|
|
ictm[0] = ctm[3] / det;
|
|
|
|
ictm[1] = -ctm[1] / det;
|
|
|
|
ictm[2] = -ctm[2] / det;
|
|
|
|
ictm[3] = ctm[0] / det;
|
|
|
|
ictm[4] = (ctm[2] * ctm[5] - ctm[3] * ctm[4]) / det;
|
|
|
|
ictm[5] = (ctm[1] * ctm[4] - ctm[0] * ctm[5]) / det;
|
|
|
|
return ictm;
|
|
|
|
};
|
|
|
|
var transform = function(ctm, pos) {
|
|
|
|
return [ctm[0] * pos[0] + ctm[2] * pos[1] + ctm[4]
|
|
|
|
,ctm[1] * pos[0] + ctm[3] * pos[1] + ctm[5]];
|
|
|
|
};
|
|
|
|
var Page = function(page, container) {
|
2013-02-12 09:43:37 +00:00
|
|
|
if(page == undefined) return;
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
this.loaded = false;
|
|
|
|
this.$p = $(page);
|
|
|
|
this.$container = $(container);
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
this.n = parseInt(this.$p.data('page-no'), 16);
|
|
|
|
this.$b = $('.'+CSS_CLASS_NAMES['page_content_box'], this.$p);
|
|
|
|
this.$d = this.$p.parent('.'+CSS_CLASS_NAMES['page_decoration']);
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
this.h = this.$p.height(); // Need to make rescale work when page_content_box is not loaded, yet
|
|
|
|
this.w = this.$p.width();
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
// if page is loaded
|
|
|
|
if (this.$b.length > 0) {
|
|
|
|
/*
|
|
|
|
* scale ratios
|
|
|
|
*
|
|
|
|
* default_r : the first one
|
|
|
|
* set_r : last set
|
|
|
|
* cur_r : currently using
|
|
|
|
*/
|
|
|
|
this.default_r = this.set_r = this.cur_r = this.$p.height() / this.$b.height();
|
|
|
|
|
|
|
|
this.data = $($('.'+CSS_CLASS_NAMES['page_data'], this.$p)[0]).data('data');
|
|
|
|
|
|
|
|
this.ctm = this.data.ctm;
|
|
|
|
this.ictm = invert(this.ctm);
|
|
|
|
|
|
|
|
this.loaded = true;
|
|
|
|
}
|
2012-09-27 04:56:41 +00:00
|
|
|
};
|
|
|
|
$.extend(Page.prototype, {
|
2013-02-12 09:43:37 +00:00
|
|
|
/* hide & show are for contents, the page frame is still there */
|
2012-09-27 04:56:41 +00:00
|
|
|
hide : function(){
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$b.removeClass('opened');
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
|
|
|
show : function(){
|
|
|
|
if(Math.abs(this.set_r - this.cur_r) > EPS) {
|
|
|
|
this.cur_r = this.set_r;
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$b.css('transform', 'scale('+this.cur_r.toFixed(3)+')');
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$b.addClass('opened');
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
|
|
|
rescale : function(ratio, is_relative) {
|
|
|
|
if(ratio == 0) {
|
|
|
|
this.set_r = this.default_r;
|
|
|
|
} else if (is_relative) {
|
|
|
|
this.set_r *= ratio;
|
|
|
|
} else {
|
|
|
|
this.set_r = ratio;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* wait for redraw */
|
|
|
|
this.hide();
|
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$p.height(this.$b.height() * this.set_r);
|
|
|
|
this.$p.width(this.$b.width() * this.set_r);
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
2013-05-04 13:38:05 +00:00
|
|
|
/* return if any part of this page is shown in the container */
|
2012-09-27 04:56:41 +00:00
|
|
|
is_visible : function() {
|
|
|
|
var off = this.position();
|
2013-09-28 05:30:57 +00:00
|
|
|
return !((off[1] > this.height()) || (off[1] + this.$container.height() < 0));
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
2013-05-04 13:38:05 +00:00
|
|
|
/* return if this page or any neighbor of it is visible */
|
|
|
|
is_nearly_visible : function() {
|
|
|
|
var off = this.position();
|
|
|
|
/* I should use the height of the previous page or the next page here
|
|
|
|
* but since they are not easily available, just use '*2', which should be a good estimate in most cases
|
|
|
|
*/
|
2013-09-28 05:30:57 +00:00
|
|
|
return !((off[1] > this.height() * 2) || (off[1] + this.$container.height() * 2 < 0));
|
2013-05-04 13:38:05 +00:00
|
|
|
},
|
2012-09-27 04:56:41 +00:00
|
|
|
/* return the coordinate of the top-left corner of container
|
2013-09-28 05:30:57 +00:00
|
|
|
* in our coordinate system
|
2012-09-27 04:56:41 +00:00
|
|
|
*/
|
|
|
|
position : function () {
|
2013-09-28 05:30:57 +00:00
|
|
|
var off = this.$p.offset();
|
|
|
|
var off_c = this.$container.offset();
|
2012-09-27 04:56:41 +00:00
|
|
|
return [off_c.left-off.left, off_c.top-off.top];
|
|
|
|
},
|
|
|
|
height : function() {
|
2013-09-28 05:30:57 +00:00
|
|
|
return this.$p.height();
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-05-04 13:38:05 +00:00
|
|
|
pdf2htmlEX.Viewer = function(config) {
|
|
|
|
this.container_id = config['container_id'];
|
|
|
|
this.sidebar_id = config['sidebar_id'];
|
|
|
|
this.outline_id = config['outline_id'];
|
2013-09-28 05:30:57 +00:00
|
|
|
this.loading_indicator_cls = config['loading_indicator_cls'];
|
|
|
|
this.pages_to_preload = config['pages_to_preload'] || DEFAULT_PAGES_TO_PRELOAD;
|
|
|
|
this.pages_loading = {};
|
2012-09-27 04:56:41 +00:00
|
|
|
this.init_before_loading_content();
|
|
|
|
|
|
|
|
var _ = this;
|
|
|
|
$(function(){_.init_after_loading_content();});
|
|
|
|
};
|
|
|
|
|
|
|
|
$.extend(pdf2htmlEX.Viewer.prototype, {
|
|
|
|
/* Constants */
|
2013-05-04 13:38:05 +00:00
|
|
|
render_timeout : 100,
|
2012-09-27 04:56:41 +00:00
|
|
|
scale_step : 0.9,
|
|
|
|
|
|
|
|
init_before_loading_content : function() {
|
|
|
|
/*hide all pages before loading, will reveal only visible ones later */
|
|
|
|
this.pre_hide_pages();
|
|
|
|
},
|
2013-09-28 05:30:57 +00:00
|
|
|
|
2012-09-27 04:56:41 +00:00
|
|
|
init_after_loading_content : function() {
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$sidebar = $('#'+this.sidebar_id);
|
|
|
|
this.$outline = $('#'+this.outline_id);
|
|
|
|
this.$container = $('#'+this.container_id);
|
|
|
|
this.$loading_indicator = $('.'+this.loading_indicator_cls);
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-03-04 07:35:30 +00:00
|
|
|
// Open the outline if nonempty
|
2013-09-28 05:30:57 +00:00
|
|
|
if(this.$outline.children().length > 0) {
|
|
|
|
this.$sidebar.addClass('opened');
|
2013-02-12 09:43:37 +00:00
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
|
2013-05-04 13:38:05 +00:00
|
|
|
this.find_pages();
|
2012-09-27 04:56:41 +00:00
|
|
|
|
2013-03-04 07:35:30 +00:00
|
|
|
// register schedule rendering
|
2012-09-27 04:56:41 +00:00
|
|
|
var _ = this;
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$container.scroll(function(){ _.schedule_render(); });
|
2012-09-27 04:56:41 +00:00
|
|
|
|
|
|
|
//this.zoom_fixer();
|
|
|
|
|
2013-03-04 07:35:30 +00:00
|
|
|
// handle links
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$container.add(this.$outline).on('click', '.'+CSS_CLASS_NAMES['link'], this, this.link_handler);
|
2013-03-04 07:35:30 +00:00
|
|
|
|
2012-09-27 04:56:41 +00:00
|
|
|
this.render();
|
2013-05-04 13:38:05 +00:00
|
|
|
},
|
2013-09-28 05:30:57 +00:00
|
|
|
|
2013-05-04 13:38:05 +00:00
|
|
|
find_pages : function() {
|
|
|
|
var new_pages = new Array();
|
2013-09-28 05:30:57 +00:00
|
|
|
var $pl= $('.'+CSS_CLASS_NAMES['page_frame'], this.$container);
|
2013-05-04 13:38:05 +00:00
|
|
|
/* don't use for(..in..) */
|
2013-09-28 05:30:57 +00:00
|
|
|
for(var i = 0, l = $pl.length; i < l; ++i) {
|
|
|
|
var p = new Page($pl[i], this.$container);
|
2013-05-04 13:38:05 +00:00
|
|
|
new_pages[p.n] = p;
|
|
|
|
}
|
|
|
|
this.pages = new_pages;
|
|
|
|
},
|
2013-09-28 05:30:57 +00:00
|
|
|
|
|
|
|
load_page : function(idx, pages_to_preload, successCallback, errorCallback) {
|
|
|
|
if (idx >= this.pages.length)
|
|
|
|
return; // Page does not exist
|
|
|
|
|
|
|
|
if (this.pages[idx].loaded)
|
|
|
|
return; // Page is loaded
|
|
|
|
|
|
|
|
if (this.pages_loading[idx])
|
|
|
|
return; // Page is already loading
|
|
|
|
|
|
|
|
var page_no_hex = idx.toString(16);
|
|
|
|
var $pf = this.$container.find('#' + CSS_CLASS_NAMES['page_frame'] + page_no_hex);
|
|
|
|
if($pf.length == 0)
|
|
|
|
return; // Page does not exist
|
|
|
|
|
|
|
|
this.$loading_indicator.clone().show().appendTo($pf);
|
|
|
|
|
|
|
|
var _ = this;
|
|
|
|
|
|
|
|
var url = $pf.data('page-url');
|
|
|
|
if (url && url.length > 0) {
|
|
|
|
this.pages_loading[idx] = true; // Set semaphore
|
|
|
|
|
2013-05-04 13:38:05 +00:00
|
|
|
$.ajax({
|
2013-09-28 05:30:57 +00:00
|
|
|
url: url,
|
2013-05-04 13:38:05 +00:00
|
|
|
dataType: 'text'
|
|
|
|
}).done(function(data){
|
2013-09-28 05:30:57 +00:00
|
|
|
_.pages[idx].$p.parent().replaceWith(data);
|
|
|
|
|
|
|
|
var $new_pf = _.$container.find('#' + CSS_CLASS_NAMES['page_frame'] + page_no_hex);
|
|
|
|
_.pages[idx] = new Page($new_pf, _.$container);
|
|
|
|
_.pages[idx].rescale(_.scale);
|
|
|
|
_.schedule_render();
|
|
|
|
|
|
|
|
// disable background image dragging
|
|
|
|
$new_pf.find('.'+CSS_CLASS_NAMES['background_image']).on('dragstart', function(e){return false;});
|
|
|
|
|
|
|
|
// Reset loading token
|
|
|
|
delete _.pages_loading[idx];
|
|
|
|
|
|
|
|
if (successCallback) successCallback();
|
|
|
|
}
|
|
|
|
).fail(function(jqXHR, textStatus, errorThrown){
|
|
|
|
console.error('error loading page ' + idx + ': ' + textStatus);
|
|
|
|
|
|
|
|
// Reset loading token
|
|
|
|
delete _.pages_loading[idx];
|
|
|
|
|
|
|
|
if (errorCallback) errorCallback();
|
2013-05-04 13:38:05 +00:00
|
|
|
});
|
|
|
|
}
|
2013-09-28 05:30:57 +00:00
|
|
|
// Concurrent prefetch of the next pages
|
|
|
|
if (pages_to_preload === undefined)
|
|
|
|
pages_to_preload = this.pages_to_preload;
|
|
|
|
|
|
|
|
if (--pages_to_preload > 0)
|
|
|
|
_.load_page(idx+1, pages_to_preload);
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
2013-09-28 05:30:57 +00:00
|
|
|
|
2012-09-27 04:56:41 +00:00
|
|
|
pre_hide_pages : function() {
|
|
|
|
/* pages might have not been loaded yet, so add a CSS rule */
|
2013-02-28 14:56:45 +00:00
|
|
|
var s = '@media screen{.'+CSS_CLASS_NAMES['page_content_box']+'{display:none;}}';
|
2012-09-27 04:56:41 +00:00
|
|
|
var n = document.createElement('style');
|
|
|
|
n.type = 'text/css';
|
|
|
|
if (n.styleSheet) {
|
|
|
|
n.styleSheet.cssText = s;
|
|
|
|
} else {
|
|
|
|
n.appendChild(document.createTextNode(s));
|
|
|
|
}
|
|
|
|
document.getElementsByTagName('head')[0].appendChild(n);
|
|
|
|
},
|
|
|
|
|
|
|
|
hide_pages : function() {
|
|
|
|
var pl = this.pages;
|
|
|
|
for(var i in pl)
|
|
|
|
pl[i].hide();
|
|
|
|
},
|
|
|
|
|
|
|
|
render : function () {
|
|
|
|
/* hide (positional) invisible pages */
|
|
|
|
var pl = this.pages;
|
|
|
|
for(var i in pl) {
|
|
|
|
var p = pl[i];
|
2013-05-04 13:38:05 +00:00
|
|
|
if(p.is_nearly_visible()){
|
2013-09-28 05:30:57 +00:00
|
|
|
if (p.loaded) {
|
|
|
|
p.show();
|
|
|
|
} else
|
|
|
|
this.load_page(p.n);
|
2012-09-27 04:56:41 +00:00
|
|
|
} else {
|
|
|
|
p.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
schedule_render : function() {
|
|
|
|
if(this.render_timer)
|
|
|
|
clearTimeout(this.render_timer);
|
|
|
|
|
|
|
|
var _ = this;
|
|
|
|
this.render_timer = setTimeout(function () {
|
|
|
|
_.render();
|
|
|
|
}, this.render_timeout);
|
|
|
|
},
|
|
|
|
|
|
|
|
zoom_fixer : function () {
|
|
|
|
/*
|
|
|
|
* When user try to zoom in/out using ctrl + +/- or mouse wheel
|
|
|
|
* handle this and prevent the default behaviours
|
|
|
|
*
|
|
|
|
* Code credit to PDF.js
|
|
|
|
*/
|
|
|
|
var _ = this;
|
|
|
|
// Firefox specific event, so that we can prevent browser from zooming
|
|
|
|
$(window).on('DOMMouseScroll', function(e) {
|
|
|
|
if (e.ctrlKey) {
|
|
|
|
e.preventDefault();
|
|
|
|
_.rescale(Math.pow(_.scale_step, e.detail), true);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(window).on('keydown', function keydown(e) {
|
|
|
|
if (e.ctrlKey || e.metaKey) {
|
|
|
|
switch (e.keyCode) {
|
|
|
|
case 61: // FF/Mac '='
|
|
|
|
case 107: // FF '+' and '='
|
|
|
|
case 187: // Chrome '+'
|
|
|
|
_.rescale(1.0 / _.scale_step, true);
|
|
|
|
break;
|
|
|
|
case 173: // FF/Mac '-'
|
|
|
|
case 109: // FF '-'
|
|
|
|
case 189: // Chrome '-'
|
|
|
|
_.rescale(_.scale_step, true);
|
|
|
|
break;
|
|
|
|
case 48: // '0'
|
|
|
|
_.rescale(0, false);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
rescale : function (ratio, is_relative) {
|
|
|
|
var pl = this.pages;
|
|
|
|
for(var i in pl) {
|
|
|
|
pl[i].rescale(ratio, is_relative);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.schedule_render();
|
|
|
|
},
|
|
|
|
|
|
|
|
get_containing_page : function(obj) {
|
|
|
|
/* get the page obj containing obj */
|
2013-02-28 14:56:45 +00:00
|
|
|
var p = obj.closest('.'+CSS_CLASS_NAMES['page_frame'])[0];
|
2013-02-12 09:43:37 +00:00
|
|
|
return p && this.pages[(new Page(p)).n];
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
|
|
|
|
2013-02-12 09:43:37 +00:00
|
|
|
link_handler : function (e) {
|
2012-09-27 04:56:41 +00:00
|
|
|
var _ = e.data;
|
|
|
|
var t = $(e.currentTarget);
|
|
|
|
|
2013-02-12 09:43:37 +00:00
|
|
|
var cur_pos = [0,0];
|
|
|
|
|
|
|
|
// cur_page might be undefined, e.g. from Outline
|
|
|
|
var cur_page = _.get_containing_page(t);
|
|
|
|
if(cur_page != undefined)
|
|
|
|
{
|
|
|
|
cur_pos = cur_page.position();
|
|
|
|
//get the coordinates in default user system
|
|
|
|
cur_pos = transform(cur_page.ictm, [cur_pos[0], cur_page.height()-cur_pos[1]]);
|
|
|
|
}
|
2012-09-27 04:56:41 +00:00
|
|
|
|
|
|
|
var detail_str = t.attr('data-dest-detail');
|
|
|
|
if(detail_str == undefined) return;
|
|
|
|
|
|
|
|
var ok = false;
|
|
|
|
var detail = JSON.parse(detail_str);
|
|
|
|
|
|
|
|
var target_page = _.pages[detail[0]];
|
|
|
|
if(target_page == undefined) return;
|
|
|
|
|
|
|
|
var pos = [0,0];
|
|
|
|
var upside_down = true;
|
|
|
|
// TODO: zoom
|
|
|
|
// TODO: BBox
|
|
|
|
switch(detail[1]) {
|
|
|
|
case 'XYZ':
|
|
|
|
pos = [(detail[2] == null) ? cur_pos[0] : detail[2]
|
|
|
|
,(detail[3] == null) ? cur_pos[1] : detail[3]];
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
case 'Fit':
|
|
|
|
case 'FitB':
|
|
|
|
pos = [0,0];
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
case 'FitH':
|
|
|
|
case 'FitBH':
|
|
|
|
pos = [0, (detail[2] == null) ? cur_pos[1] : detail[2]]
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
case 'FitV':
|
|
|
|
case 'FitBV':
|
|
|
|
pos = [(detail[2] == null) ? cur_pos[0] : detail[2], 0];
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
case 'FitR':
|
|
|
|
/* locate the top-left corner of the rectangle */
|
|
|
|
pos = [detail[2], detail[5]];
|
|
|
|
upside_down = false;
|
|
|
|
ok = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(ok) {
|
2013-09-28 05:30:57 +00:00
|
|
|
var transform_and_scroll = function() {
|
|
|
|
pos = transform(target_page.ctm, pos);
|
|
|
|
if(upside_down) {
|
|
|
|
pos[1] = target_page.height() - pos[1];
|
|
|
|
}
|
|
|
|
_.scroll_to(detail[0], pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (target_page.loaded) {
|
|
|
|
transform_and_scroll();
|
|
|
|
} else {
|
|
|
|
// Scroll to the exact position once loaded.
|
|
|
|
_.load_page(target_page.n, 1, function() {
|
|
|
|
target_page = _.pages[target_page.n]; // Refresh reference
|
|
|
|
transform_and_scroll();
|
|
|
|
});
|
|
|
|
|
|
|
|
// In the meantime page gets loaded, scroll approximately position for maximum responsiveness.
|
|
|
|
_.scroll_to(detail[0], [0,0]);
|
2012-09-27 04:56:41 +00:00
|
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/* pos=[x,y], where (0,0) is the top-left corner */
|
|
|
|
scroll_to : function(pageno, pos) {
|
|
|
|
var target_page = this.pages[pageno];
|
|
|
|
if(target_page == undefined) return;
|
|
|
|
|
|
|
|
var cur_target_pos = target_page.position();
|
|
|
|
|
2013-09-28 05:30:57 +00:00
|
|
|
this.$container.scrollLeft(this.$container.scrollLeft()-cur_target_pos[0]+pos[0]);
|
|
|
|
this.$container.scrollTop(this.$container.scrollTop()-cur_target_pos[1]+pos[1]);
|
2012-09-27 04:56:41 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
__last_member__ : 'no comma' /*,*/
|
|
|
|
});
|
|
|
|
|
|
|
|
return pdf2htmlEX;
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
2013-09-28 05:30:57 +00:00
|
|
|
pdf2htmlEX.defaultViewer = new pdf2htmlEX.Viewer({
|
2013-05-04 13:38:05 +00:00
|
|
|
container_id : 'page-container',
|
|
|
|
sidebar_id : 'sidebar',
|
|
|
|
outline_id : 'outline',
|
2013-09-28 05:30:57 +00:00
|
|
|
loading_indicator_cls : 'loading-indicator',
|
2013-05-04 13:38:05 +00:00
|
|
|
});
|
2012-09-27 04:56:41 +00:00
|
|
|
</script>
|
|
|
|
<title></title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2013-05-04 13:38:05 +00:00
|
|
|
<div id="sidebar">
|
|
|
|
<div id="outline">
|
|
|
|
</div>
|
2013-02-12 09:43:37 +00:00
|
|
|
</div>
|
2013-05-04 13:38:05 +00:00
|
|
|
<div id="page-container">
|
2013-09-28 05:30:57 +00:00
|
|
|
<div class="pd w0 h0"><div id="pf1" class="pf" data-page-no="1" data-page-url="issue65_en1.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2" class="pf" data-page-no="2" data-page-url="issue65_en2.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf3" class="pf" data-page-no="3" data-page-url="issue65_en3.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf4" class="pf" data-page-no="4" data-page-url="issue65_en4.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf5" class="pf" data-page-no="5" data-page-url="issue65_en5.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf6" class="pf" data-page-no="6" data-page-url="issue65_en6.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf7" class="pf" data-page-no="7" data-page-url="issue65_en7.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf8" class="pf" data-page-no="8" data-page-url="issue65_en8.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf9" class="pf" data-page-no="9" data-page-url="issue65_en9.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pfa" class="pf" data-page-no="a" data-page-url="issue65_en10.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pfb" class="pf" data-page-no="b" data-page-url="issue65_en11.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pfc" class="pf" data-page-no="c" data-page-url="issue65_en12.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pfd" class="pf" data-page-no="d" data-page-url="issue65_en13.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pfe" class="pf" data-page-no="e" data-page-url="issue65_en14.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pff" class="pf" data-page-no="f" data-page-url="issue65_en15.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf10" class="pf" data-page-no="10" data-page-url="issue65_en16.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf11" class="pf" data-page-no="11" data-page-url="issue65_en17.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf12" class="pf" data-page-no="12" data-page-url="issue65_en18.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf13" class="pf" data-page-no="13" data-page-url="issue65_en19.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf14" class="pf" data-page-no="14" data-page-url="issue65_en20.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf15" class="pf" data-page-no="15" data-page-url="issue65_en21.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf16" class="pf" data-page-no="16" data-page-url="issue65_en22.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf17" class="pf" data-page-no="17" data-page-url="issue65_en23.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf18" class="pf" data-page-no="18" data-page-url="issue65_en24.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf19" class="pf" data-page-no="19" data-page-url="issue65_en25.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1a" class="pf" data-page-no="1a" data-page-url="issue65_en26.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1b" class="pf" data-page-no="1b" data-page-url="issue65_en27.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1c" class="pf" data-page-no="1c" data-page-url="issue65_en28.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1d" class="pf" data-page-no="1d" data-page-url="issue65_en29.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1e" class="pf" data-page-no="1e" data-page-url="issue65_en30.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf1f" class="pf" data-page-no="1f" data-page-url="issue65_en31.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf20" class="pf" data-page-no="20" data-page-url="issue65_en32.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf21" class="pf" data-page-no="21" data-page-url="issue65_en33.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf22" class="pf" data-page-no="22" data-page-url="issue65_en34.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf23" class="pf" data-page-no="23" data-page-url="issue65_en35.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf24" class="pf" data-page-no="24" data-page-url="issue65_en36.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf25" class="pf" data-page-no="25" data-page-url="issue65_en37.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf26" class="pf" data-page-no="26" data-page-url="issue65_en38.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf27" class="pf" data-page-no="27" data-page-url="issue65_en39.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf28" class="pf" data-page-no="28" data-page-url="issue65_en40.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf29" class="pf" data-page-no="29" data-page-url="issue65_en41.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2a" class="pf" data-page-no="2a" data-page-url="issue65_en42.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2b" class="pf" data-page-no="2b" data-page-url="issue65_en43.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2c" class="pf" data-page-no="2c" data-page-url="issue65_en44.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2d" class="pf" data-page-no="2d" data-page-url="issue65_en45.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2e" class="pf" data-page-no="2e" data-page-url="issue65_en46.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf2f" class="pf" data-page-no="2f" data-page-url="issue65_en47.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf30" class="pf" data-page-no="30" data-page-url="issue65_en48.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf31" class="pf" data-page-no="31" data-page-url="issue65_en49.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf32" class="pf" data-page-no="32" data-page-url="issue65_en50.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf33" class="pf" data-page-no="33" data-page-url="issue65_en51.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf34" class="pf" data-page-no="34" data-page-url="issue65_en52.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf35" class="pf" data-page-no="35" data-page-url="issue65_en53.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf36" class="pf" data-page-no="36" data-page-url="issue65_en54.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf37" class="pf" data-page-no="37" data-page-url="issue65_en55.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf38" class="pf" data-page-no="38" data-page-url="issue65_en56.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf39" class="pf" data-page-no="39" data-page-url="issue65_en57.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf3a" class="pf" data-page-no="3a" data-page-url="issue65_en58.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf3b" class="pf" data-page-no="3b" data-page-url="issue65_en59.page"></div></div>
|
|
|
|
<div class="pd w0 h0"><div id="pf3c" class="pf" data-page-no="3c" data-page-url="issue65_en60.page"></div></div>
|
|
|
|
</div>
|
|
|
|
<div class="loading-indicator">
|
|
|
|
<img alt="" src="data:image/png;base64,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
|
2012-09-27 04:56:41 +00:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|