
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    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;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * 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")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, 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 */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@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); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_f3205b969d712ee9e2723890.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7d1081f48c5cb7c6c49df195.woff')format("woff");}.ff2{font-family:ff2;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9f0cf8e63065e16c1f620e8c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2db8d17e5976cc862e87247d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a15764853b6d9f08ae74a7e7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d916f08b98aadc9fa086ad10.woff')format("woff");}.ff6{font-family:ff6;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_48e00b23ebb3a8b61394245e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.867676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8fe05fef8d1dec587a12111.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dd65ec680c41971bd21bc016.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.280000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.280000px;}
.v1{vertical-align:29.340000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028146px;}
.ls7{letter-spacing:0.033438px;}
.ls9{letter-spacing:0.052471px;}
.ls6{letter-spacing:0.060406px;}
.ls4{letter-spacing:0.063239px;}
.ls3{letter-spacing:0.064659px;}
.ls2{letter-spacing:0.084000px;}
.lsc{letter-spacing:0.084976px;}
.ls1{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.129000px;}
.lsb{letter-spacing:0.209292px;}
.lsa{letter-spacing:0.233127px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-34.568688px;}
.wsc{word-spacing:-19.017874px;}
.ws11{word-spacing:-16.683000px;}
.ws2{word-spacing:-16.068000px;}
.ws3{word-spacing:-14.578500px;}
.ws5{word-spacing:-13.134000px;}
.ws10{word-spacing:-12.975000px;}
.ws12{word-spacing:-11.873136px;}
.ws7{word-spacing:-11.689500px;}
.ws4{word-spacing:-0.257409px;}
.ws0{word-spacing:-0.256831px;}
.ws1{word-spacing:-0.136716px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:15.392500px;}
.ws16{word-spacing:15.392687px;}
.wsb{word-spacing:19.442121px;}
.ws14{word-spacing:38.818492px;}
.wse{word-spacing:52.562140px;}
.ws13{word-spacing:52.737316px;}
.wsa{word-spacing:54.324914px;}
.wsf{word-spacing:62.492723px;}
.ws9{word-spacing:63.889576px;}
.ws6{word-spacing:73.826165px;}
._a{margin-left:-1.102415px;}
._0{width:1.120800px;}
._5{width:2.154081px;}
._b{width:3.414525px;}
._2{width:4.570790px;}
._7{width:6.041377px;}
._1a{width:7.126602px;}
._4{width:8.143133px;}
._8{width:9.824390px;}
._11{width:10.874427px;}
._15{width:11.948586px;}
._13{width:13.467617px;}
._10{width:15.497962px;}
._d{width:16.916329px;}
._c{width:18.544788px;}
._9{width:19.963785px;}
._3{width:21.854739px;}
._6{width:23.115630px;}
._22{width:24.247523px;}
._12{width:25.763803px;}
._16{width:26.988339px;}
._1c{width:28.796190px;}
._1e{width:30.147779px;}
._25{width:31.328000px;}
._14{width:32.418875px;}
._f{width:33.518441px;}
._e{width:34.726243px;}
._1b{width:36.148954px;}
._19{width:38.009743px;}
._17{width:39.187183px;}
._1d{width:40.407809px;}
._1{width:41.803947px;}
._23{width:42.920686px;}
._1f{width:43.963322px;}
._20{width:45.001115px;}
._18{width:47.048239px;}
._24{width:50.648172px;}
._21{width:53.231026px;}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:25.950000px;}
.fs8{font-size:33.366000px;}
.fs3{font-size:38.004000px;}
.fs2{font-size:40.806000px;}
.fs6{font-size:46.758000px;}
.fs5{font-size:52.536000px;}
.fs4{font-size:58.314000px;}
.fs1{font-size:64.272000px;}
.fs0{font-size:140.100000px;}
.y0{bottom:0.000000px;}
.yf9{bottom:2.367548px;}
.y11a{bottom:2.400888px;}
.yc0{bottom:2.573074px;}
.y110{bottom:3.267117px;}
.y116{bottom:3.301644px;}
.y118{bottom:3.302299px;}
.y114{bottom:3.306541px;}
.y112{bottom:3.309329px;}
.y10e{bottom:3.629028px;}
.y10b{bottom:3.629393px;}
.y103{bottom:39.605860px;}
.y107{bottom:49.540360px;}
.y106{bottom:74.305360px;}
.y101{bottom:101.447860px;}
.y102{bottom:131.909860px;}
.y105{bottom:132.265360px;}
.y100{bottom:143.914360px;}
.y104{bottom:154.105360px;}
.yff{bottom:158.593360px;}
.y8b{bottom:174.405300px;}
.yfd{bottom:175.530450px;}
.ya0{bottom:175.665450px;}
.y8a{bottom:189.525300px;}
.ycf{bottom:190.382250px;}
.yfc{bottom:190.650450px;}
.y9f{bottom:190.785450px;}
.yce{bottom:205.502250px;}
.yfb{bottom:205.770450px;}
.y9e{bottom:205.860450px;}
.y89{bottom:211.485300px;}
.y142{bottom:216.705600px;}
.ycd{bottom:220.577250px;}
.yfa{bottom:220.845450px;}
.y9d{bottom:220.980450px;}
.y141{bottom:228.765600px;}
.ycc{bottom:235.697250px;}
.y9c{bottom:236.100450px;}
.y140{bottom:244.470600px;}
.yf8{bottom:248.132902px;}
.ycb{bottom:250.817250px;}
.y9b{bottom:251.130450px;}
.y13f{bottom:256.575600px;}
.y186{bottom:258.195600px;}
.yca{bottom:265.892250px;}
.y38{bottom:266.521050px;}
.y13e{bottom:268.680600px;}
.y185{bottom:270.345600px;}
.y9a{bottom:271.426950px;}
.y88{bottom:278.670600px;}
.y98{bottom:280.202250px;}
.yc9{bottom:281.012250px;}
.y37{bottom:281.641050px;}
.y184{bottom:282.405600px;}
.y13d{bottom:284.340600px;}
.y63{bottom:288.436050px;}
.y99{bottom:290.147250px;}
.y87{bottom:293.790600px;}
.yc8{bottom:296.132250px;}
.y13c{bottom:296.445600px;}
.y36{bottom:296.716050px;}
.y183{bottom:298.110600px;}
.y62{bottom:303.556050px;}
.y13b{bottom:308.550600px;}
.y86{bottom:308.910600px;}
.y182{bottom:310.260600px;}
.yc7{bottom:311.207250px;}
.y35{bottom:311.836050px;}
.y97{bottom:312.195750px;}
.y61{bottom:318.676050px;}
.y13a{bottom:320.610750px;}
.y181{bottom:322.320600px;}
.y85{bottom:323.985600px;}
.yc6{bottom:326.327250px;}
.y34{bottom:326.956050px;}
.y96{bottom:327.270750px;}
.y60{bottom:333.751050px;}
.y180{bottom:334.425600px;}
.y84{bottom:339.105600px;}
.y139{bottom:339.105750px;}
.yc5{bottom:341.447250px;}
.y33{bottom:342.031050px;}
.y95{bottom:342.390750px;}
.y5f{bottom:348.871050px;}
.y17f{bottom:350.085600px;}
.y83{bottom:354.225750px;}
.yc4{bottom:356.522250px;}
.y32{bottom:357.151050px;}
.y94{bottom:357.510750px;}
.y17e{bottom:362.235600px;}
.y5e{bottom:363.991050px;}
.y138{bottom:365.880750px;}
.y82{bottom:369.300750px;}
.yc3{bottom:371.642250px;}
.y31{bottom:372.271050px;}
.y93{bottom:372.585750px;}
.y17d{bottom:374.295600px;}
.y5d{bottom:379.066050px;}
.y137{bottom:381.000750px;}
.y17c{bottom:386.400600px;}
.yc2{bottom:386.762250px;}
.y30{bottom:387.346050px;}
.y92{bottom:387.705750px;}
.y5c{bottom:394.186050px;}
.y136{bottom:396.120750px;}
.y17b{bottom:398.460600px;}
.y81{bottom:401.385750px;}
.y2f{bottom:402.466050px;}
.y91{bottom:402.825750px;}
.yc1{bottom:407.640750px;}
.y5b{bottom:409.306050px;}
.y135{bottom:411.195750px;}
.y80{bottom:413.445750px;}
.y17a{bottom:414.165900px;}
.y2e{bottom:417.541050px;}
.y90{bottom:417.900750px;}
.y5a{bottom:424.381050px;}
.y7f{bottom:425.550450px;}
.y179{bottom:426.270900px;}
.y134{bottom:426.315750px;}
.y2d{bottom:432.661050px;}
.y8f{bottom:437.385450px;}
.y7e{bottom:437.610450px;}
.y178{bottom:438.375900px;}
.y59{bottom:439.501050px;}
.y133{bottom:441.436200px;}
.ybf{bottom:447.457675px;}
.y2c{bottom:447.781050px;}
.y177{bottom:454.035900px;}
.y58{bottom:454.621050px;}
.y8e{bottom:456.330450px;}
.y132{bottom:462.361200px;}
.y2b{bottom:462.856050px;}
.y176{bottom:466.140900px;}
.yfe{bottom:469.189190px;}
.y57{bottom:469.696050px;}
.y2a{bottom:477.976050px;}
.y175{bottom:478.245900px;}
.y56{bottom:484.816050px;}
.y131{bottom:489.136200px;}
.y174{bottom:490.305900px;}
.y29{bottom:493.096050px;}
.y55{bottom:499.936050px;}
.y173{bottom:502.410900px;}
.y130{bottom:504.256200px;}
.y28{bottom:508.171050px;}
.y54{bottom:515.011050px;}
.yf7{bottom:517.351200px;}
.y172{bottom:518.116200px;}
.y12f{bottom:519.376200px;}
.y27{bottom:523.291050px;}
.y53{bottom:530.131050px;}
.y171{bottom:530.266200px;}
.yf6{bottom:532.426200px;}
.y12e{bottom:534.451200px;}
.y26{bottom:538.411050px;}
.y170{bottom:542.326200px;}
.y52{bottom:545.251050px;}
.yf5{bottom:547.546200px;}
.y12d{bottom:549.571200px;}
.y25{bottom:553.486050px;}
.y16f{bottom:558.031200px;}
.y51{bottom:560.326050px;}
.yf4{bottom:562.666200px;}
.y12c{bottom:564.646200px;}
.y24{bottom:568.606050px;}
.y16e{bottom:570.136200px;}
.y50{bottom:575.446050px;}
.yf3{bottom:577.741200px;}
.y12b{bottom:579.766200px;}
.y16d{bottom:582.241200px;}
.y23{bottom:583.681050px;}
.y4f{bottom:590.521050px;}
.yf2{bottom:592.861200px;}
.y16c{bottom:594.301200px;}
.y12a{bottom:594.886200px;}
.y22{bottom:598.756050px;}
.y4e{bottom:605.641050px;}
.y16b{bottom:606.406200px;}
.yf1{bottom:607.981200px;}
.y129{bottom:609.961200px;}
.y21{bottom:613.876050px;}
.y16a{bottom:618.466200px;}
.y4d{bottom:620.761050px;}
.yf0{bottom:623.056200px;}
.y128{bottom:625.081200px;}
.y20{bottom:628.996650px;}
.y169{bottom:634.126200px;}
.y4c{bottom:635.836050px;}
.yef{bottom:638.176200px;}
.y127{bottom:640.201200px;}
.y168{bottom:646.276200px;}
.y1f{bottom:649.921650px;}
.y4b{bottom:650.956050px;}
.yee{bottom:653.296200px;}
.y126{bottom:655.276200px;}
.y167{bottom:658.381200px;}
.y4a{bottom:666.076050px;}
.yed{bottom:668.371200px;}
.y125{bottom:670.396200px;}
.y166{bottom:670.441200px;}
.y1e{bottom:679.351650px;}
.y49{bottom:681.106050px;}
.ybe{bottom:682.051950px;}
.yec{bottom:683.491200px;}
.y124{bottom:685.516200px;}
.y165{bottom:686.101200px;}
.y1d{bottom:692.941650px;}
.y48{bottom:696.226050px;}
.ybd{bottom:697.126950px;}
.y164{bottom:698.251200px;}
.yeb{bottom:698.610750px;}
.y123{bottom:700.546500px;}
.y1c{bottom:706.531650px;}
.y163{bottom:710.311200px;}
.y47{bottom:711.346050px;}
.ybc{bottom:712.201950px;}
.yea{bottom:719.492250px;}
.y1b{bottom:720.121650px;}
.y122{bottom:721.471500px;}
.y162{bottom:726.061200px;}
.y46{bottom:726.421050px;}
.ybb{bottom:727.321950px;}
.y1a{bottom:733.711650px;}
.ye9{bottom:740.462250px;}
.y45{bottom:741.541050px;}
.y161{bottom:741.766500px;}
.y121{bottom:742.441500px;}
.yba{bottom:742.441950px;}
.y19{bottom:747.301650px;}
.y7d{bottom:749.731950px;}
.ye8{bottom:755.537250px;}
.y44{bottom:756.661050px;}
.y160{bottom:757.471500px;}
.yb9{bottom:757.516950px;}
.y120{bottom:757.561500px;}
.y18{bottom:760.891650px;}
.y7c{bottom:764.851950px;}
.y15f{bottom:769.621500px;}
.ye7{bottom:770.657250px;}
.y43{bottom:771.736050px;}
.yb8{bottom:772.636950px;}
.y11f{bottom:772.681500px;}
.y17{bottom:774.526650px;}
.y7b{bottom:779.926950px;}
.y15e{bottom:785.281500px;}
.y42{bottom:786.856050px;}
.yb7{bottom:787.711950px;}
.y11e{bottom:787.756500px;}
.y16{bottom:788.071650px;}
.y7a{bottom:795.046950px;}
.y15d{bottom:797.431500px;}
.ye6{bottom:800.852250px;}
.y15{bottom:801.706650px;}
.y41{bottom:801.976050px;}
.yb6{bottom:802.831950px;}
.y11d{bottom:802.876500px;}
.y15c{bottom:809.491500px;}
.y79{bottom:810.166950px;}
.y14{bottom:815.251650px;}
.ye5{bottom:815.972250px;}
.y40{bottom:817.051050px;}
.yb5{bottom:817.951950px;}
.y11c{bottom:817.996500px;}
.y15b{bottom:825.017100px;}
.y78{bottom:825.241950px;}
.y13{bottom:828.886650px;}
.ye4{bottom:831.092250px;}
.y3f{bottom:832.171050px;}
.yb4{bottom:833.026950px;}
.y11b{bottom:833.071500px;}
.y15a{bottom:835.815600px;}
.y77{bottom:840.361950px;}
.y12{bottom:842.476650px;}
.ye3{bottom:846.167250px;}
.y3e{bottom:847.291050px;}
.y159{bottom:847.875600px;}
.yb3{bottom:848.146950px;}
.y76{bottom:855.481950px;}
.y11{bottom:856.066650px;}
.y158{bottom:859.980600px;}
.y119{bottom:860.325461px;}
.ye2{bottom:861.287250px;}
.y3d{bottom:862.366050px;}
.yb2{bottom:863.266950px;}
.y10{bottom:869.656650px;}
.y75{bottom:870.556950px;}
.y157{bottom:872.040600px;}
.y117{bottom:873.824050px;}
.ye1{bottom:876.407250px;}
.y3c{bottom:877.486050px;}
.yb1{bottom:878.341950px;}
.yf{bottom:883.246650px;}
.y74{bottom:885.676950px;}
.y156{bottom:887.745600px;}
.y115{bottom:889.709706px;}
.ye0{bottom:891.482250px;}
.y3b{bottom:892.606050px;}
.yb0{bottom:893.461950px;}
.ye{bottom:896.836650px;}
.y155{bottom:899.850600px;}
.y73{bottom:900.796950px;}
.y113{bottom:905.634959px;}
.ydf{bottom:906.602250px;}
.y3a{bottom:907.681050px;}
.yaf{bottom:908.581950px;}
.yd{bottom:910.471800px;}
.y154{bottom:911.955600px;}
.y72{bottom:915.871950px;}
.y111{bottom:921.517171px;}
.yde{bottom:921.722250px;}
.y39{bottom:922.801050px;}
.yae{bottom:923.656950px;}
.y153{bottom:924.015600px;}
.yc{bottom:924.016800px;}
.y71{bottom:930.991950px;}
.y152{bottom:936.120600px;}
.ydd{bottom:936.797250px;}
.y10f{bottom:937.399383px;}
.yad{bottom:938.776950px;}
.y70{bottom:946.111950px;}
.y10d{bottom:951.482472px;}
.y151{bottom:951.825600px;}
.ydc{bottom:951.917250px;}
.yac{bottom:953.896950px;}
.y7{bottom:954.976800px;}
.y10c{bottom:955.111650px;}
.y6f{bottom:961.186950px;}
.y150{bottom:963.930600px;}
.y10a{bottom:965.927107px;}
.ydb{bottom:967.037250px;}
.yab{bottom:968.971950px;}
.yb{bottom:971.761800px;}
.y6e{bottom:976.306950px;}
.y6{bottom:978.331800px;}
.y14f{bottom:979.635600px;}
.yda{bottom:982.112250px;}
.yaa{bottom:984.091950px;}
.ya{bottom:988.501800px;}
.y6d{bottom:991.381950px;}
.y5{bottom:995.071800px;}
.y14e{bottom:995.340600px;}
.y109{bottom:997.231950px;}
.yd9{bottom:997.232250px;}
.ya9{bottom:1003.576950px;}
.y6c{bottom:1006.501950px;}
.y14d{bottom:1007.490600px;}
.y9{bottom:1008.571650px;}
.y4{bottom:1008.571950px;}
.y108{bottom:1012.351950px;}
.yd8{bottom:1012.352250px;}
.y14c{bottom:1019.550600px;}
.y6b{bottom:1021.621950px;}
.y8{bottom:1026.976650px;}
.y3{bottom:1026.976950px;}
.ya8{bottom:1027.426950px;}
.yd7{bottom:1027.427250px;}
.y14b{bottom:1031.655600px;}
.y6a{bottom:1036.696950px;}
.ya7{bottom:1042.546950px;}
.yd6{bottom:1042.547250px;}
.y14a{bottom:1043.715600px;}
.y69{bottom:1051.771950px;}
.ya6{bottom:1057.666950px;}
.yd5{bottom:1057.667250px;}
.y149{bottom:1059.375600px;}
.y68{bottom:1066.891950px;}
.y148{bottom:1071.525600px;}
.ya5{bottom:1072.741950px;}
.yd4{bottom:1072.742250px;}
.y67{bottom:1081.966950px;}
.y147{bottom:1083.585600px;}
.y2{bottom:1084.621950px;}
.ya4{bottom:1087.861950px;}
.yd3{bottom:1087.862250px;}
.y146{bottom:1095.690600px;}
.y66{bottom:1097.086950px;}
.ya3{bottom:1102.936950px;}
.yd2{bottom:1102.937250px;}
.y145{bottom:1111.395600px;}
.y65{bottom:1112.206950px;}
.y8d{bottom:1112.207400px;}
.ya2{bottom:1118.056950px;}
.yd1{bottom:1118.057250px;}
.y144{bottom:1123.545600px;}
.y1{bottom:1124.896950px;}
.y8c{bottom:1133.130300px;}
.y64{bottom:1133.131950px;}
.ya1{bottom:1133.176950px;}
.yd0{bottom:1133.177250px;}
.y143{bottom:1135.605600px;}
.h21{height:12.058430px;}
.h15{height:12.103192px;}
.h13{height:12.283105px;}
.h1f{height:14.436027px;}
.h20{height:14.439470px;}
.h1d{height:14.444635px;}
.h19{height:14.754532px;}
.h1c{height:15.658398px;}
.h1b{height:16.019944px;}
.h17{height:18.424500px;}
.h18{height:23.689860px;}
.h5{height:26.146752px;}
.h24{height:32.167104px;}
.h23{height:32.169504px;}
.hb{height:32.450052px;}
.hc{height:32.451252px;}
.h25{height:32.465760px;}
.h1e{height:35.015449px;}
.he{height:36.144768px;}
.ha{height:36.459984px;}
.h1a{height:36.528937px;}
.h11{height:36.682852px;}
.h9{height:36.722664px;}
.h12{height:39.828462px;}
.h10{height:39.829662px;}
.h6{height:40.120032px;}
.h14{height:40.121832px;}
.h22{height:40.126032px;}
.hf{height:40.128432px;}
.h7{height:44.219136px;}
.h8{height:44.219736px;}
.hd{height:52.426752px;}
.h4{height:57.233928px;}
.h3{height:57.414528px;}
.h2{height:96.388800px;}
.h16{height:200.918160px;}
.h0{height:1289.995500px;}
.h1{height:1290.000000px;}
.w7{width:2.969845px;}
.w9{width:3.915030px;}
.we{width:4.860215px;}
.w3{width:5.894065px;}
.wb{width:5.894926px;}
.w11{width:6.524189px;}
.w15{width:6.659338px;}
.w4{width:6.793627px;}
.w2{width:22.092200px;}
.w14{width:26.007230px;}
.w18{width:26.636493px;}
.w13{width:30.731435px;}
.w1b{width:31.495847px;}
.w10{width:32.891243px;}
.w1a{width:33.295831px;}
.wf{width:35.320490px;}
.w5{width:36.715887px;}
.w17{width:49.944177px;}
.w19{width:56.557891px;}
.w16{width:63.217230px;}
.w12{width:64.431853px;}
.wd{width:73.430912px;}
.w8{width:102.227213px;}
.w6{width:107.895743px;}
.wa{width:155.095611px;}
.w1c{width:254.127444px;}
.wc{width:362.735949px;}
.w1{width:892.500000px;}
.w0{width:892.825500px;}
.x0{left:0.000000px;}
.x22{left:53.912564px;}
.x23{left:60.247064px;}
.x5{left:75.329218px;}
.x1{left:76.410000px;}
.x3{left:80.550928px;}
.x6{left:92.518119px;}
.xc{left:95.539485px;}
.x3e{left:100.798854px;}
.x3b{left:109.246376px;}
.x27{left:118.650023px;}
.x29{left:120.899358px;}
.x28{left:141.705150px;}
.x3c{left:146.591526px;}
.x2a{left:156.175085px;}
.x39{left:162.474599px;}
.x14{left:164.859082px;}
.x33{left:182.406990px;}
.x4{left:185.766794px;}
.x15{left:186.906520px;}
.x1a{left:188.413500px;}
.x16{left:192.800585px;}
.xf{left:194.490300px;}
.x2{left:199.438455px;}
.xb{left:201.780838px;}
.x34{left:208.548508px;}
.x2b{left:210.348492px;}
.x2c{left:214.335450px;}
.x3d{left:218.342776px;}
.x24{left:233.758364px;}
.x17{left:236.265336px;}
.x25{left:244.444364px;}
.x3a{left:265.106400px;}
.x35{left:271.765738px;}
.x36{left:291.292681px;}
.x2d{left:293.092665px;}
.x2e{left:299.340600px;}
.x26{left:338.680514px;}
.x18{left:344.116316px;}
.x19{left:347.041397px;}
.x37{left:354.509911px;}
.x30{left:370.980600px;}
.x38{left:376.961935px;}
.x2f{left:399.054135px;}
.x31{left:400.854119px;}
.x32{left:426.861349px;}
.xe{left:455.621541px;}
.x9{left:462.826813px;}
.x10{left:464.443001px;}
.xd{left:476.636528px;}
.x3f{left:481.896210px;}
.x7{left:485.637000px;}
.x1c{left:508.390898px;}
.x1d{left:514.284964px;}
.x1e{left:521.078590px;}
.x11{left:549.405337px;}
.x1b{left:552.235762px;}
.x8{left:571.500543px;}
.xa{left:612.807872px;}
.x1f{left:623.170655px;}
.x20{left:627.085684px;}
.x13{left:660.014718px;}
.x12{left:666.853583px;}
.x21{left:782.135672px;}
@media print{
.v2{vertical-align:-23.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.360000pt;}
.v1{vertical-align:26.080000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.025019pt;}
.ls7{letter-spacing:0.029723pt;}
.ls9{letter-spacing:0.046640pt;}
.ls6{letter-spacing:0.053695pt;}
.ls4{letter-spacing:0.056212pt;}
.ls3{letter-spacing:0.057475pt;}
.ls2{letter-spacing:0.074667pt;}
.lsc{letter-spacing:0.075535pt;}
.ls1{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.114667pt;}
.lsb{letter-spacing:0.186037pt;}
.lsa{letter-spacing:0.207224pt;}
.wsd{word-spacing:-30.727723pt;}
.wsc{word-spacing:-16.904777pt;}
.ws11{word-spacing:-14.829333pt;}
.ws2{word-spacing:-14.282667pt;}
.ws3{word-spacing:-12.958667pt;}
.ws5{word-spacing:-11.674667pt;}
.ws10{word-spacing:-11.533333pt;}
.ws12{word-spacing:-10.553899pt;}
.ws7{word-spacing:-10.390667pt;}
.ws4{word-spacing:-0.228808pt;}
.ws0{word-spacing:-0.228294pt;}
.ws1{word-spacing:-0.121525pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:13.682222pt;}
.ws16{word-spacing:13.682388pt;}
.wsb{word-spacing:17.281885pt;}
.ws14{word-spacing:34.505326pt;}
.wse{word-spacing:46.721902pt;}
.ws13{word-spacing:46.877614pt;}
.wsa{word-spacing:48.288813pt;}
.wsf{word-spacing:55.549087pt;}
.ws9{word-spacing:56.790735pt;}
.ws6{word-spacing:65.623258pt;}
._a{margin-left:-0.979925pt;}
._0{width:0.996267pt;}
._5{width:1.914739pt;}
._b{width:3.035133pt;}
._2{width:4.062924pt;}
._7{width:5.370113pt;}
._1a{width:6.334757pt;}
._4{width:7.238340pt;}
._8{width:8.732791pt;}
._11{width:9.666157pt;}
._15{width:10.620965pt;}
._13{width:11.971215pt;}
._10{width:13.775967pt;}
._d{width:15.036737pt;}
._c{width:16.484256pt;}
._9{width:17.745587pt;}
._3{width:19.426435pt;}
._6{width:20.547227pt;}
._22{width:21.553354pt;}
._12{width:22.901159pt;}
._16{width:23.989635pt;}
._1c{width:25.596613pt;}
._1e{width:26.798026pt;}
._25{width:27.847111pt;}
._14{width:28.816777pt;}
._f{width:29.794170pt;}
._e{width:30.867772pt;}
._1b{width:32.132404pt;}
._19{width:33.786439pt;}
._17{width:34.833052pt;}
._1d{width:35.918052pt;}
._1{width:37.159064pt;}
._23{width:38.151721pt;}
._1f{width:39.078508pt;}
._20{width:40.000991pt;}
._18{width:41.820656pt;}
._24{width:45.020597pt;}
._21{width:47.316468pt;}
.fs7{font-size:23.066667pt;}
.fs8{font-size:29.658667pt;}
.fs3{font-size:33.781333pt;}
.fs2{font-size:36.272000pt;}
.fs6{font-size:41.562667pt;}
.fs5{font-size:46.698667pt;}
.fs4{font-size:51.834667pt;}
.fs1{font-size:57.130667pt;}
.fs0{font-size:124.533333pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:2.104487pt;}
.y11a{bottom:2.134123pt;}
.yc0{bottom:2.287177pt;}
.y110{bottom:2.904104pt;}
.y116{bottom:2.934795pt;}
.y118{bottom:2.935377pt;}
.y114{bottom:2.939147pt;}
.y112{bottom:2.941626pt;}
.y10e{bottom:3.225803pt;}
.y10b{bottom:3.226127pt;}
.y103{bottom:35.205209pt;}
.y107{bottom:44.035875pt;}
.y106{bottom:66.049209pt;}
.y101{bottom:90.175875pt;}
.y102{bottom:117.253209pt;}
.y105{bottom:117.569209pt;}
.y100{bottom:127.923875pt;}
.y104{bottom:136.982542pt;}
.yff{bottom:140.971875pt;}
.y8b{bottom:155.026933pt;}
.yfd{bottom:156.027067pt;}
.ya0{bottom:156.147067pt;}
.y8a{bottom:168.466933pt;}
.ycf{bottom:169.228667pt;}
.yfc{bottom:169.467067pt;}
.y9f{bottom:169.587067pt;}
.yce{bottom:182.668667pt;}
.yfb{bottom:182.907067pt;}
.y9e{bottom:182.987067pt;}
.y89{bottom:187.986933pt;}
.y142{bottom:192.627200pt;}
.ycd{bottom:196.068667pt;}
.yfa{bottom:196.307067pt;}
.y9d{bottom:196.427067pt;}
.y141{bottom:203.347200pt;}
.ycc{bottom:209.508667pt;}
.y9c{bottom:209.867067pt;}
.y140{bottom:217.307200pt;}
.yf8{bottom:220.562579pt;}
.ycb{bottom:222.948667pt;}
.y9b{bottom:223.227067pt;}
.y13f{bottom:228.067200pt;}
.y186{bottom:229.507200pt;}
.yca{bottom:236.348667pt;}
.y38{bottom:236.907600pt;}
.y13e{bottom:238.827200pt;}
.y185{bottom:240.307200pt;}
.y9a{bottom:241.268400pt;}
.y88{bottom:247.707200pt;}
.y98{bottom:249.068667pt;}
.yc9{bottom:249.788667pt;}
.y37{bottom:250.347600pt;}
.y184{bottom:251.027200pt;}
.y13d{bottom:252.747200pt;}
.y63{bottom:256.387600pt;}
.y99{bottom:257.908667pt;}
.y87{bottom:261.147200pt;}
.yc8{bottom:263.228667pt;}
.y13c{bottom:263.507200pt;}
.y36{bottom:263.747600pt;}
.y183{bottom:264.987200pt;}
.y62{bottom:269.827600pt;}
.y13b{bottom:274.267200pt;}
.y86{bottom:274.587200pt;}
.y182{bottom:275.787200pt;}
.yc7{bottom:276.628667pt;}
.y35{bottom:277.187600pt;}
.y97{bottom:277.507333pt;}
.y61{bottom:283.267600pt;}
.y13a{bottom:284.987333pt;}
.y181{bottom:286.507200pt;}
.y85{bottom:287.987200pt;}
.yc6{bottom:290.068667pt;}
.y34{bottom:290.627600pt;}
.y96{bottom:290.907333pt;}
.y60{bottom:296.667600pt;}
.y180{bottom:297.267200pt;}
.y84{bottom:301.427200pt;}
.y139{bottom:301.427333pt;}
.yc5{bottom:303.508667pt;}
.y33{bottom:304.027600pt;}
.y95{bottom:304.347333pt;}
.y5f{bottom:310.107600pt;}
.y17f{bottom:311.187200pt;}
.y83{bottom:314.867333pt;}
.yc4{bottom:316.908667pt;}
.y32{bottom:317.467600pt;}
.y94{bottom:317.787333pt;}
.y17e{bottom:321.987200pt;}
.y5e{bottom:323.547600pt;}
.y138{bottom:325.227333pt;}
.y82{bottom:328.267333pt;}
.yc3{bottom:330.348667pt;}
.y31{bottom:330.907600pt;}
.y93{bottom:331.187333pt;}
.y17d{bottom:332.707200pt;}
.y5d{bottom:336.947600pt;}
.y137{bottom:338.667333pt;}
.y17c{bottom:343.467200pt;}
.yc2{bottom:343.788667pt;}
.y30{bottom:344.307600pt;}
.y92{bottom:344.627333pt;}
.y5c{bottom:350.387600pt;}
.y136{bottom:352.107333pt;}
.y17b{bottom:354.187200pt;}
.y81{bottom:356.787333pt;}
.y2f{bottom:357.747600pt;}
.y91{bottom:358.067333pt;}
.yc1{bottom:362.347333pt;}
.y5b{bottom:363.827600pt;}
.y135{bottom:365.507333pt;}
.y80{bottom:367.507333pt;}
.y17a{bottom:368.147467pt;}
.y2e{bottom:371.147600pt;}
.y90{bottom:371.467333pt;}
.y5a{bottom:377.227600pt;}
.y7f{bottom:378.267067pt;}
.y179{bottom:378.907467pt;}
.y134{bottom:378.947333pt;}
.y2d{bottom:384.587600pt;}
.y8f{bottom:388.787067pt;}
.y7e{bottom:388.987067pt;}
.y178{bottom:389.667467pt;}
.y59{bottom:390.667600pt;}
.y133{bottom:392.387733pt;}
.ybf{bottom:397.740156pt;}
.y2c{bottom:398.027600pt;}
.y177{bottom:403.587467pt;}
.y58{bottom:404.107600pt;}
.y8e{bottom:405.627067pt;}
.y132{bottom:410.987733pt;}
.y2b{bottom:411.427600pt;}
.y176{bottom:414.347467pt;}
.yfe{bottom:417.057058pt;}
.y57{bottom:417.507600pt;}
.y2a{bottom:424.867600pt;}
.y175{bottom:425.107467pt;}
.y56{bottom:430.947600pt;}
.y131{bottom:434.787733pt;}
.y174{bottom:435.827467pt;}
.y29{bottom:438.307600pt;}
.y55{bottom:444.387600pt;}
.y173{bottom:446.587467pt;}
.y130{bottom:448.227733pt;}
.y28{bottom:451.707600pt;}
.y54{bottom:457.787600pt;}
.yf7{bottom:459.867733pt;}
.y172{bottom:460.547733pt;}
.y12f{bottom:461.667733pt;}
.y27{bottom:465.147600pt;}
.y53{bottom:471.227600pt;}
.y171{bottom:471.347733pt;}
.yf6{bottom:473.267733pt;}
.y12e{bottom:475.067733pt;}
.y26{bottom:478.587600pt;}
.y170{bottom:482.067733pt;}
.y52{bottom:484.667600pt;}
.yf5{bottom:486.707733pt;}
.y12d{bottom:488.507733pt;}
.y25{bottom:491.987600pt;}
.y16f{bottom:496.027733pt;}
.y51{bottom:498.067600pt;}
.yf4{bottom:500.147733pt;}
.y12c{bottom:501.907733pt;}
.y24{bottom:505.427600pt;}
.y16e{bottom:506.787733pt;}
.y50{bottom:511.507600pt;}
.yf3{bottom:513.547733pt;}
.y12b{bottom:515.347733pt;}
.y16d{bottom:517.547733pt;}
.y23{bottom:518.827600pt;}
.y4f{bottom:524.907600pt;}
.yf2{bottom:526.987733pt;}
.y16c{bottom:528.267733pt;}
.y12a{bottom:528.787733pt;}
.y22{bottom:532.227600pt;}
.y4e{bottom:538.347600pt;}
.y16b{bottom:539.027733pt;}
.yf1{bottom:540.427733pt;}
.y129{bottom:542.187733pt;}
.y21{bottom:545.667600pt;}
.y16a{bottom:549.747733pt;}
.y4d{bottom:551.787600pt;}
.yf0{bottom:553.827733pt;}
.y128{bottom:555.627733pt;}
.y20{bottom:559.108133pt;}
.y169{bottom:563.667733pt;}
.y4c{bottom:565.187600pt;}
.yef{bottom:567.267733pt;}
.y127{bottom:569.067733pt;}
.y168{bottom:574.467733pt;}
.y1f{bottom:577.708133pt;}
.y4b{bottom:578.627600pt;}
.yee{bottom:580.707733pt;}
.y126{bottom:582.467733pt;}
.y167{bottom:585.227733pt;}
.y4a{bottom:592.067600pt;}
.yed{bottom:594.107733pt;}
.y125{bottom:595.907733pt;}
.y166{bottom:595.947733pt;}
.y1e{bottom:603.868133pt;}
.y49{bottom:605.427600pt;}
.ybe{bottom:606.268400pt;}
.yec{bottom:607.547733pt;}
.y124{bottom:609.347733pt;}
.y165{bottom:609.867733pt;}
.y1d{bottom:615.948133pt;}
.y48{bottom:618.867600pt;}
.ybd{bottom:619.668400pt;}
.y164{bottom:620.667733pt;}
.yeb{bottom:620.987333pt;}
.y123{bottom:622.708000pt;}
.y1c{bottom:628.028133pt;}
.y163{bottom:631.387733pt;}
.y47{bottom:632.307600pt;}
.ybc{bottom:633.068400pt;}
.yea{bottom:639.548667pt;}
.y1b{bottom:640.108133pt;}
.y122{bottom:641.308000pt;}
.y162{bottom:645.387733pt;}
.y46{bottom:645.707600pt;}
.ybb{bottom:646.508400pt;}
.y1a{bottom:652.188133pt;}
.ye9{bottom:658.188667pt;}
.y45{bottom:659.147600pt;}
.y161{bottom:659.348000pt;}
.y121{bottom:659.948000pt;}
.yba{bottom:659.948400pt;}
.y19{bottom:664.268133pt;}
.y7d{bottom:666.428400pt;}
.ye8{bottom:671.588667pt;}
.y44{bottom:672.587600pt;}
.y160{bottom:673.308000pt;}
.yb9{bottom:673.348400pt;}
.y120{bottom:673.388000pt;}
.y18{bottom:676.348133pt;}
.y7c{bottom:679.868400pt;}
.y15f{bottom:684.108000pt;}
.ye7{bottom:685.028667pt;}
.y43{bottom:685.987600pt;}
.yb8{bottom:686.788400pt;}
.y11f{bottom:686.828000pt;}
.y17{bottom:688.468133pt;}
.y7b{bottom:693.268400pt;}
.y15e{bottom:698.028000pt;}
.y42{bottom:699.427600pt;}
.yb7{bottom:700.188400pt;}
.y11e{bottom:700.228000pt;}
.y16{bottom:700.508133pt;}
.y7a{bottom:706.708400pt;}
.y15d{bottom:708.828000pt;}
.ye6{bottom:711.868667pt;}
.y15{bottom:712.628133pt;}
.y41{bottom:712.867600pt;}
.yb6{bottom:713.628400pt;}
.y11d{bottom:713.668000pt;}
.y15c{bottom:719.548000pt;}
.y79{bottom:720.148400pt;}
.y14{bottom:724.668133pt;}
.ye5{bottom:725.308667pt;}
.y40{bottom:726.267600pt;}
.yb5{bottom:727.068400pt;}
.y11c{bottom:727.108000pt;}
.y15b{bottom:733.348533pt;}
.y78{bottom:733.548400pt;}
.y13{bottom:736.788133pt;}
.ye4{bottom:738.748667pt;}
.y3f{bottom:739.707600pt;}
.yb4{bottom:740.468400pt;}
.y11b{bottom:740.508000pt;}
.y15a{bottom:742.947200pt;}
.y77{bottom:746.988400pt;}
.y12{bottom:748.868133pt;}
.ye3{bottom:752.148667pt;}
.y3e{bottom:753.147600pt;}
.y159{bottom:753.667200pt;}
.yb3{bottom:753.908400pt;}
.y76{bottom:760.428400pt;}
.y11{bottom:760.948133pt;}
.y158{bottom:764.427200pt;}
.y119{bottom:764.733743pt;}
.ye2{bottom:765.588667pt;}
.y3d{bottom:766.547600pt;}
.yb2{bottom:767.348400pt;}
.y10{bottom:773.028133pt;}
.y75{bottom:773.828400pt;}
.y157{bottom:775.147200pt;}
.y117{bottom:776.732489pt;}
.ye1{bottom:779.028667pt;}
.y3c{bottom:779.987600pt;}
.yb1{bottom:780.748400pt;}
.yf{bottom:785.108133pt;}
.y74{bottom:787.268400pt;}
.y156{bottom:789.107200pt;}
.y115{bottom:790.853072pt;}
.ye0{bottom:792.428667pt;}
.y3b{bottom:793.427600pt;}
.yb0{bottom:794.188400pt;}
.ye{bottom:797.188133pt;}
.y155{bottom:799.867200pt;}
.y73{bottom:800.708400pt;}
.y113{bottom:805.008852pt;}
.ydf{bottom:805.868667pt;}
.y3a{bottom:806.827600pt;}
.yaf{bottom:807.628400pt;}
.yd{bottom:809.308267pt;}
.y154{bottom:810.627200pt;}
.y72{bottom:814.108400pt;}
.y111{bottom:819.126374pt;}
.yde{bottom:819.308667pt;}
.y39{bottom:820.267600pt;}
.yae{bottom:821.028400pt;}
.y153{bottom:821.347200pt;}
.yc{bottom:821.348267pt;}
.y71{bottom:827.548400pt;}
.y152{bottom:832.107200pt;}
.ydd{bottom:832.708667pt;}
.y10f{bottom:833.243896pt;}
.yad{bottom:834.468400pt;}
.y70{bottom:840.988400pt;}
.y10d{bottom:845.762197pt;}
.y151{bottom:846.067200pt;}
.ydc{bottom:846.148667pt;}
.yac{bottom:847.908400pt;}
.y7{bottom:848.868267pt;}
.y10c{bottom:848.988133pt;}
.y6f{bottom:854.388400pt;}
.y150{bottom:856.827200pt;}
.y10a{bottom:858.601873pt;}
.ydb{bottom:859.588667pt;}
.yab{bottom:861.308400pt;}
.yb{bottom:863.788267pt;}
.y6e{bottom:867.828400pt;}
.y6{bottom:869.628267pt;}
.y14f{bottom:870.787200pt;}
.yda{bottom:872.988667pt;}
.yaa{bottom:874.748400pt;}
.ya{bottom:878.668267pt;}
.y6d{bottom:881.228400pt;}
.y5{bottom:884.508267pt;}
.y14e{bottom:884.747200pt;}
.y109{bottom:886.428400pt;}
.yd9{bottom:886.428667pt;}
.ya9{bottom:892.068400pt;}
.y6c{bottom:894.668400pt;}
.y14d{bottom:895.547200pt;}
.y9{bottom:896.508133pt;}
.y4{bottom:896.508400pt;}
.y108{bottom:899.868400pt;}
.yd8{bottom:899.868667pt;}
.y14c{bottom:906.267200pt;}
.y6b{bottom:908.108400pt;}
.y8{bottom:912.868133pt;}
.y3{bottom:912.868400pt;}
.ya8{bottom:913.268400pt;}
.yd7{bottom:913.268667pt;}
.y14b{bottom:917.027200pt;}
.y6a{bottom:921.508400pt;}
.ya7{bottom:926.708400pt;}
.yd6{bottom:926.708667pt;}
.y14a{bottom:927.747200pt;}
.y69{bottom:934.908400pt;}
.ya6{bottom:940.148400pt;}
.yd5{bottom:940.148667pt;}
.y149{bottom:941.667200pt;}
.y68{bottom:948.348400pt;}
.y148{bottom:952.467200pt;}
.ya5{bottom:953.548400pt;}
.yd4{bottom:953.548667pt;}
.y67{bottom:961.748400pt;}
.y147{bottom:963.187200pt;}
.y2{bottom:964.108400pt;}
.ya4{bottom:966.988400pt;}
.yd3{bottom:966.988667pt;}
.y146{bottom:973.947200pt;}
.y66{bottom:975.188400pt;}
.ya3{bottom:980.388400pt;}
.yd2{bottom:980.388667pt;}
.y145{bottom:987.907200pt;}
.y65{bottom:988.628400pt;}
.y8d{bottom:988.628800pt;}
.ya2{bottom:993.828400pt;}
.yd1{bottom:993.828667pt;}
.y144{bottom:998.707200pt;}
.y1{bottom:999.908400pt;}
.y8c{bottom:1007.226933pt;}
.y64{bottom:1007.228400pt;}
.ya1{bottom:1007.268400pt;}
.yd0{bottom:1007.268667pt;}
.y143{bottom:1009.427200pt;}
.h21{height:10.718604pt;}
.h15{height:10.758393pt;}
.h13{height:10.918315pt;}
.h1f{height:12.832024pt;}
.h20{height:12.835085pt;}
.h1d{height:12.839676pt;}
.h19{height:13.115139pt;}
.h1c{height:13.918576pt;}
.h1b{height:14.239950pt;}
.h17{height:16.377333pt;}
.h18{height:21.057653pt;}
.h5{height:23.241557pt;}
.h24{height:28.592981pt;}
.h23{height:28.595115pt;}
.hb{height:28.844491pt;}
.hc{height:28.845557pt;}
.h25{height:28.858453pt;}
.h1e{height:31.124844pt;}
.he{height:32.128683pt;}
.ha{height:32.408875pt;}
.h1a{height:32.470167pt;}
.h11{height:32.606979pt;}
.h9{height:32.642368pt;}
.h12{height:35.403077pt;}
.h10{height:35.404144pt;}
.h6{height:35.662251pt;}
.h14{height:35.663851pt;}
.h22{height:35.667584pt;}
.hf{height:35.669717pt;}
.h7{height:39.305899pt;}
.h8{height:39.306432pt;}
.hd{height:46.601557pt;}
.h4{height:50.874603pt;}
.h3{height:51.035136pt;}
.h2{height:85.678933pt;}
.h16{height:178.593920pt;}
.h0{height:1146.662667pt;}
.h1{height:1146.666667pt;}
.w7{width:2.639862pt;}
.w9{width:3.480027pt;}
.we{width:4.320191pt;}
.w3{width:5.239169pt;}
.wb{width:5.239934pt;}
.w11{width:5.799279pt;}
.w15{width:5.919412pt;}
.w4{width:6.038780pt;}
.w2{width:19.637511pt;}
.w14{width:23.117538pt;}
.w18{width:23.676882pt;}
.w13{width:27.316831pt;}
.w1b{width:27.996308pt;}
.w10{width:29.236661pt;}
.w1a{width:29.596294pt;}
.wf{width:31.395991pt;}
.w5{width:32.636344pt;}
.w17{width:44.394824pt;}
.w19{width:50.273681pt;}
.w16{width:56.193093pt;}
.w12{width:57.272758pt;}
.wd{width:65.271922pt;}
.w8{width:90.868634pt;}
.w6{width:95.907327pt;}
.wa{width:137.862765pt;}
.w1c{width:225.891061pt;}
.wc{width:322.431955pt;}
.w1{width:793.333333pt;}
.w0{width:793.622667pt;}
.x0{left:0.000000pt;}
.x22{left:47.922279pt;}
.x23{left:53.552946pt;}
.x5{left:66.959305pt;}
.x1{left:67.920000pt;}
.x3{left:71.600825pt;}
.x6{left:82.238328pt;}
.xc{left:84.923987pt;}
.x3e{left:89.598981pt;}
.x3b{left:97.107890pt;}
.x27{left:105.466687pt;}
.x29{left:107.466096pt;}
.x28{left:125.960133pt;}
.x3c{left:130.303578pt;}
.x2a{left:138.822298pt;}
.x39{left:144.421865pt;}
.x14{left:146.541407pt;}
.x33{left:162.139547pt;}
.x4{left:165.126039pt;}
.x15{left:166.139129pt;}
.x1a{left:167.478667pt;}
.x16{left:171.378298pt;}
.xf{left:172.880267pt;}
.x2{left:177.278627pt;}
.xb{left:179.360745pt;}
.x34{left:185.376452pt;}
.x2b{left:186.976438pt;}
.x2c{left:190.520400pt;}
.x3d{left:194.082468pt;}
.x24{left:207.785212pt;}
.x17{left:210.013632pt;}
.x25{left:217.283879pt;}
.x3a{left:235.650133pt;}
.x35{left:241.569545pt;}
.x36{left:258.926827pt;}
.x2d{left:260.526813pt;}
.x2e{left:266.080533pt;}
.x26{left:301.049346pt;}
.x18{left:305.881169pt;}
.x19{left:308.481242pt;}
.x37{left:315.119920pt;}
.x30{left:329.760533pt;}
.x38{left:335.077276pt;}
.x2f{left:354.714787pt;}
.x31{left:356.314773pt;}
.x32{left:379.432310pt;}
.xe{left:404.996925pt;}
.x9{left:411.401611pt;}
.x10{left:412.838223pt;}
.xd{left:423.676914pt;}
.x3f{left:428.352187pt;}
.x7{left:431.677333pt;}
.x1c{left:451.903021pt;}
.x1d{left:457.142190pt;}
.x1e{left:463.180969pt;}
.x11{left:488.360299pt;}
.x1b{left:490.876233pt;}
.x8{left:508.000483pt;}
.xa{left:544.718108pt;}
.x1f{left:553.929471pt;}
.x20{left:557.409497pt;}
.x13{left:586.679749pt;}
.x12{left:592.758741pt;}
.x21{left:695.231708pt;}
}

