
    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_230e9beb34f45039d11cf62d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_a131bc3c85b7790ad86f32b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_f86ea36ea354112321251605.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f1f42fbcab41a04b287dcbfa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_8c68530c9cf4c296d4b33596.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_5c81440591e82c33a9bf7b57.woff2')format("woff");}.ff6{font-family:ff6;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.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);}
.v4{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls17{letter-spacing:-4.884000px;}
.ls3{letter-spacing:-1.920000px;}
.ls1b{letter-spacing:-1.427534px;}
.ls1c{letter-spacing:-1.320000px;}
.ls33{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-1.167982px;}
.ls4{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.769560px;}
.ls22{letter-spacing:-0.072600px;}
.ls19{letter-spacing:-0.066000px;}
.ls23{letter-spacing:-0.052800px;}
.ls1a{letter-spacing:-0.046200px;}
.ls26{letter-spacing:-0.043200px;}
.ls11{letter-spacing:-0.039600px;}
.ls25{letter-spacing:-0.037800px;}
.ls41{letter-spacing:-0.036000px;}
.ls18{letter-spacing:-0.033000px;}
.ls21{letter-spacing:-0.026400px;}
.ls12{letter-spacing:-0.019800px;}
.ls5{letter-spacing:-0.016200px;}
.ls1f{letter-spacing:-0.013200px;}
.ls40{letter-spacing:-0.012000px;}
.ls6{letter-spacing:-0.010800px;}
.ls24{letter-spacing:-0.006600px;}
.ls15{letter-spacing:-0.006000px;}
.ls2b{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003000px;}
.ls2d{letter-spacing:0.006000px;}
.ls7{letter-spacing:0.006600px;}
.lse{letter-spacing:0.012000px;}
.lsb{letter-spacing:0.013200px;}
.ls3b{letter-spacing:0.018000px;}
.ls28{letter-spacing:0.019800px;}
.lsd{letter-spacing:0.024000px;}
.ls30{letter-spacing:0.026400px;}
.ls14{letter-spacing:0.033000px;}
.ls32{letter-spacing:0.046200px;}
.ls27{letter-spacing:0.059400px;}
.ls31{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.762000px;}
.ls35{letter-spacing:1.330500px;}
.ls37{letter-spacing:1.331339px;}
.ls8{letter-spacing:1.854600px;}
.ls3e{letter-spacing:2.112000px;}
.ls34{letter-spacing:2.286000px;}
.ls2e{letter-spacing:2.343000px;}
.ls36{letter-spacing:2.664000px;}
.ls39{letter-spacing:4.746000px;}
.ls2f{letter-spacing:5.049000px;}
.ls16{letter-spacing:5.643000px;}
.lsc{letter-spacing:6.309600px;}
.ls2a{letter-spacing:8.164200px;}
.ls29{letter-spacing:8.170800px;}
.ls20{letter-spacing:8.243400px;}
.lsa{letter-spacing:9.200400px;}
.ls10{letter-spacing:11.286000px;}
.ls1{letter-spacing:11.556000px;}
.ls0{letter-spacing:13.500000px;}
.lsf{letter-spacing:14.622000px;}
.ls13{letter-spacing:14.995200px;}
.ls3a{letter-spacing:31.686000px;}
.ls3c{letter-spacing:49.638000px;}
.ls2c{letter-spacing:63.439200px;}
.ls3f{letter-spacing:64.938000px;}
.ls3d{letter-spacing:69.102000px;}
.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;}
}
.ws57{word-spacing:-17.112000px;}
.ws0{word-spacing:-16.500000px;}
.ws1c{word-spacing:-15.180000px;}
.ws10{word-spacing:-15.000000px;}
.ws12{word-spacing:-13.500000px;}
.ws7{word-spacing:-9.619500px;}
.ws1d{word-spacing:-8.849940px;}
.ws3{word-spacing:-8.745000px;}
.ws1b{word-spacing:-8.191966px;}
.ws1{word-spacing:-7.870500px;}
.ws1e{word-spacing:-6.702518px;}
.ws14{word-spacing:-4.050000px;}
.ws41{word-spacing:-3.990000px;}
.ws2c{word-spacing:-2.764800px;}
.ws26{word-spacing:-2.739000px;}
.ws28{word-spacing:-2.610000px;}
.ws29{word-spacing:-2.270400px;}
.ws19{word-spacing:-1.669800px;}
.ws1f{word-spacing:-1.577400px;}
.ws3b{word-spacing:-1.458000px;}
.ws17{word-spacing:-1.412400px;}
.ws30{word-spacing:-1.372800px;}
.ws45{word-spacing:-0.924000px;}
.ws4b{word-spacing:-0.726000px;}
.ws8{word-spacing:-0.429000px;}
.ws53{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.066000px;}
.ws44{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.356400px;}
.ws51{word-spacing:0.498000px;}
.ws22{word-spacing:0.884400px;}
.ws11{word-spacing:1.296000px;}
.ws2e{word-spacing:2.343000px;}
.ws3f{word-spacing:2.532000px;}
.ws36{word-spacing:2.772000px;}
.ws3a{word-spacing:2.808000px;}
.ws54{word-spacing:3.042000px;}
.ws18{word-spacing:3.412200px;}
.ws2f{word-spacing:3.432000px;}
.ws38{word-spacing:3.491400px;}
.wsa{word-spacing:3.504600px;}
.ws9{word-spacing:3.544200px;}
.ws23{word-spacing:3.867600px;}
.ws5{word-spacing:3.920400px;}
.ws4e{word-spacing:4.020000px;}
.ws2d{word-spacing:4.144800px;}
.ws34{word-spacing:4.428600px;}
.ws32{word-spacing:4.590000px;}
.ws3e{word-spacing:4.746000px;}
.ws56{word-spacing:4.860000px;}
.ws13{word-spacing:5.324400px;}
.ws16{word-spacing:5.900400px;}
.ws40{word-spacing:5.982000px;}
.wsc{word-spacing:6.309600px;}
.ws27{word-spacing:6.396000px;}
.ws2b{word-spacing:6.714000px;}
.wsb{word-spacing:7.233600px;}
.ws49{word-spacing:7.278000px;}
.ws2a{word-spacing:7.471200px;}
.wsf{word-spacing:7.728600px;}
.ws25{word-spacing:7.768200px;}
.ws39{word-spacing:7.939800px;}
.ws3d{word-spacing:8.070000px;}
.ws20{word-spacing:9.048600px;}
.ws50{word-spacing:10.314000px;}
.ws24{word-spacing:10.342200px;}
.ws1a{word-spacing:10.626000px;}
.ws37{word-spacing:10.698600px;}
.ws6{word-spacing:11.028600px;}
.ws21{word-spacing:11.180400px;}
.wsd{word-spacing:12.672000px;}
.ws4{word-spacing:13.068000px;}
.ws35{word-spacing:15.952200px;}
.ws48{word-spacing:17.070000px;}
.ws42{word-spacing:17.088000px;}
.wse{word-spacing:17.173200px;}
.ws4f{word-spacing:18.432000px;}
.ws33{word-spacing:20.090400px;}
.ws52{word-spacing:20.238000px;}
.ws3c{word-spacing:21.540000px;}
.ws47{word-spacing:25.404000px;}
.ws46{word-spacing:28.488000px;}
.ws43{word-spacing:31.686000px;}
.ws55{word-spacing:34.464000px;}
.ws4a{word-spacing:49.632000px;}
.ws4c{word-spacing:69.096000px;}
.ws4d{word-spacing:69.102000px;}
._1a{margin-left:-27.489000px;}
._5{margin-left:-19.066200px;}
._4{margin-left:-17.461800px;}
._1c{margin-left:-16.249200px;}
._f{margin-left:-14.221200px;}
._18{margin-left:-8.550000px;}
._0{margin-left:-7.123200px;}
._3{margin-left:-5.245200px;}
._11{margin-left:-4.120200px;}
._14{margin-left:-2.356200px;}
._2{margin-left:-1.194600px;}
._b{width:1.155000px;}
._1{width:2.572800px;}
._10{width:3.777600px;}
._8{width:5.352600px;}
._c{width:6.910200px;}
._17{width:7.986000px;}
._e{width:9.556800px;}
._12{width:10.870200px;}
._7{width:12.434400px;}
._6{width:13.629000px;}
._9{width:14.823600px;}
._20{width:16.161600px;}
._13{width:17.773800px;}
._16{width:19.179600px;}
._1b{width:20.684400px;}
._1d{width:22.492800px;}
._1e{width:23.529000px;}
._19{width:25.502400px;}
._15{width:26.584800px;}
._d{width:27.984000px;}
._a{width:29.983800px;}
._21{width:31.692000px;}
._24{width:33.924000px;}
._25{width:34.974000px;}
._22{width:49.638000px;}
._1f{width:63.439200px;}
._26{width:64.938000px;}
._23{width:69.102000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:83.487600px;}
.yd0{bottom:83.553600px;}
.yb8{bottom:83.553750px;}
.y20a{bottom:83.631600px;}
.y264{bottom:84.527100px;}
.y43{bottom:85.053600px;}
.y1{bottom:85.418100px;}
.y1cd{bottom:86.627100px;}
.y13b{bottom:86.931750px;}
.y220{bottom:87.987600px;}
.ye7{bottom:99.753600px;}
.yb7{bottom:99.753750px;}
.y42{bottom:101.253600px;}
.y91{bottom:103.287600px;}
.y209{bottom:103.431600px;}
.ycf{bottom:104.249100px;}
.y13a{bottom:104.931750px;}
.y6b{bottom:105.749100px;}
.y21f{bottom:105.987600px;}
.y1cc{bottom:106.427100px;}
.y1c{bottom:111.816600px;}
.ye6{bottom:115.953600px;}
.yb6{bottom:115.953750px;}
.y41{bottom:117.453600px;}
.y10c{bottom:120.449100px;}
.y263{bottom:120.527100px;}
.y139{bottom:122.931750px;}
.y90{bottom:123.087600px;}
.y208{bottom:123.231600px;}
.y21e{bottom:123.987600px;}
.yce{bottom:124.457100px;}
.y1cb{bottom:126.227100px;}
.y1b{bottom:128.016600px;}
.ye5{bottom:132.153600px;}
.y40{bottom:133.653600px;}
.y6a{bottom:134.643150px;}
.yb5{bottom:136.649100px;}
.y262{bottom:138.527100px;}
.ycd{bottom:140.657100px;}
.y21d{bottom:141.987600px;}
.y8f{bottom:142.887600px;}
.y207{bottom:143.031600px;}
.y180{bottom:143.627100px;}
.y1a{bottom:144.216600px;}
.y1d9{bottom:145.131600px;}
.y1ca{bottom:146.027100px;}
.y113{bottom:147.387600px;}
.y1e2{bottom:149.853600px;}
.ye4{bottom:152.849100px;}
.y138{bottom:153.687600px;}
.y3f{bottom:154.349100px;}
.y69{bottom:154.443150px;}
.y1a4{bottom:156.367200px;}
.y261{bottom:156.527100px;}
.y21c{bottom:159.987600px;}
.y19{bottom:160.416600px;}
.ycc{bottom:161.352600px;}
.y8e{bottom:162.687600px;}
.y206{bottom:162.831600px;}
.y17f{bottom:163.727400px;}
.y1d8{bottom:164.931600px;}
.y1c9{bottom:165.827100px;}
.y112{bottom:167.187600px;}
.y1e1{bottom:170.549100px;}
.ye3{bottom:173.057100px;}
.y137{bottom:173.487600px;}
.y68{bottom:174.093000px;}
.y260{bottom:174.527100px;}
.y1a3{bottom:176.467500px;}
.y21b{bottom:177.987600px;}
.y18{bottom:181.112100px;}
.ycb{bottom:181.562100px;}
.y8d{bottom:182.487600px;}
.y205{bottom:182.631600px;}
.y17e{bottom:183.827700px;}
.y1d7{bottom:184.731600px;}
.y1c8{bottom:185.627100px;}
.y10b{bottom:186.057600px;}
.y111{bottom:186.987600px;}
.y1e0{bottom:190.757100px;}
.y25f{bottom:192.527100px;}
.y136{bottom:193.287600px;}
.y67{bottom:193.742850px;}
.ye2{bottom:193.752600px;}
.y21a{bottom:195.987600px;}
.y1a2{bottom:196.567800px;}
.yca{bottom:197.762100px;}
.y15d{bottom:202.257600px;}
.y8c{bottom:202.287600px;}
.y204{bottom:202.431600px;}
.yb4{bottom:203.015100px;}
.y17d{bottom:203.928000px;}
.y1d6{bottom:204.531600px;}
.y1c7{bottom:205.427100px;}
.y110{bottom:206.787600px;}
.y25e{bottom:210.527100px;}
.y1df{bottom:211.452600px;}
.y135{bottom:213.087600px;}
.y66{bottom:213.392700px;}
.yc9{bottom:213.962100px;}
.y219{bottom:213.987600px;}
.y1a1{bottom:216.668100px;}
.y17{bottom:221.619600px;}
.y8b{bottom:222.087600px;}
.y203{bottom:222.231600px;}
.y3e{bottom:222.531600px;}
.yb3{bottom:222.815100px;}
.y17c{bottom:224.028300px;}
.ye1{bottom:224.615100px;}
.y1c6{bottom:225.227100px;}
.y10a{bottom:226.587600px;}
.y25d{bottom:228.527100px;}
.yc8{bottom:230.162100px;}
.y218{bottom:231.987600px;}
.y134{bottom:232.887600px;}
.y65{bottom:233.042550px;}
.y1a0{bottom:236.768400px;}
.y16{bottom:241.419600px;}
.y8a{bottom:241.887600px;}
.y202{bottom:242.031600px;}
.y3d{bottom:242.331600px;}
.yb2{bottom:242.615100px;}
.y17b{bottom:244.128600px;}
.y1d5{bottom:244.131600px;}
.ye0{bottom:244.415100px;}
.y1c5{bottom:245.027100px;}
.yc7{bottom:246.362100px;}
.y109{bottom:246.387600px;}
.y25c{bottom:246.527100px;}
.y1de{bottom:247.887600px;}
.y217{bottom:249.987600px;}
.y15c{bottom:252.656100px;}
.y133{bottom:252.687600px;}
.y64{bottom:252.692400px;}
.y19f{bottom:256.868700px;}
.y15{bottom:261.219600px;}
.y89{bottom:261.687600px;}
.y201{bottom:261.831600px;}
.y3c{bottom:262.131600px;}
.yb1{bottom:262.415100px;}
.yc6{bottom:262.562100px;}
.ydf{bottom:264.215100px;}
.y17a{bottom:264.228900px;}
.y25b{bottom:264.527100px;}
.y1c4{bottom:264.827100px;}
.y108{bottom:266.187600px;}
.y15b{bottom:267.656100px;}
.y1dd{bottom:267.687600px;}
.y216{bottom:267.987600px;}
.y63{bottom:272.342250px;}
.y132{bottom:272.487600px;}
.y19e{bottom:276.969000px;}
.yc5{bottom:278.762100px;}
.y1d4{bottom:280.131600px;}
.y14{bottom:281.019600px;}
.y88{bottom:281.487600px;}
.y200{bottom:281.631600px;}
.y3b{bottom:281.931600px;}
.yb0{bottom:282.215100px;}
.y25a{bottom:282.527100px;}
.y15a{bottom:282.656100px;}
.yde{bottom:284.015100px;}
.y179{bottom:284.329200px;}
.y1c3{bottom:284.627100px;}
.y107{bottom:285.987600px;}
.y1dc{bottom:287.487600px;}
.y62{bottom:291.992100px;}
.y131{bottom:292.287600px;}
.yc4{bottom:294.962100px;}
.y19d{bottom:297.069300px;}
.y1d3{bottom:298.131600px;}
.y259{bottom:300.527100px;}
.y13{bottom:300.819600px;}
.y87{bottom:301.287600px;}
.y1ff{bottom:301.431600px;}
.y3a{bottom:301.731600px;}
.yaf{bottom:302.015100px;}
.ydd{bottom:303.815100px;}
.y215{bottom:303.987600px;}
.y1c2{bottom:304.427100px;}
.y178{bottom:304.429500px;}
.y106{bottom:305.787600px;}
.y1db{bottom:307.287600px;}
.y159{bottom:310.412100px;}
.y61{bottom:311.641950px;}
.y130{bottom:312.087600px;}
.yc3{bottom:315.657600px;}
.y1d2{bottom:316.131600px;}
.y19c{bottom:317.169600px;}
.y258{bottom:318.527100px;}
.y12{bottom:320.619600px;}
.y86{bottom:321.087600px;}
.y1fe{bottom:321.231600px;}
.yae{bottom:321.815100px;}
.y214{bottom:321.987600px;}
.ydc{bottom:323.615100px;}
.y1c1{bottom:324.227100px;}
.y177{bottom:324.529800px;}
.y105{bottom:325.587600px;}
.y1da{bottom:327.087600px;}
.y158{bottom:330.212100px;}
.y60{bottom:331.291800px;}
.y12f{bottom:331.887600px;}
.y257{bottom:336.527100px;}
.y19b{bottom:337.269900px;}
.y213{bottom:339.987600px;}
.y11{bottom:340.419600px;}
.y85{bottom:340.887600px;}
.y1fd{bottom:341.031600px;}
.y39{bottom:341.331600px;}
.yad{bottom:341.615100px;}
.y23e{bottom:342.512100px;}
.ydb{bottom:343.415100px;}
.y1c0{bottom:344.027100px;}
.y176{bottom:344.630100px;}
.yc2{bottom:345.371100px;}
.y104{bottom:345.387600px;}
.y1d1{bottom:346.887600px;}
.y157{bottom:350.012100px;}
.y5f{bottom:350.941650px;}
.y12e{bottom:351.687600px;}
.y256{bottom:354.527100px;}
.y19a{bottom:357.370200px;}
.y212{bottom:357.987600px;}
.y38{bottom:359.331600px;}
.y10{bottom:360.219600px;}
.y23d{bottom:360.512100px;}
.y84{bottom:360.687600px;}
.y1fc{bottom:360.831600px;}
.yac{bottom:361.415100px;}
.yda{bottom:363.215100px;}
.y1bf{bottom:363.827100px;}
.y175{bottom:364.730400px;}
.yc1{bottom:365.171100px;}
.y103{bottom:365.187600px;}
.y1d0{bottom:366.687600px;}
.y156{bottom:369.812100px;}
.y5e{bottom:370.591500px;}
.y12d{bottom:371.487600px;}
.y255{bottom:372.527100px;}
.y211{bottom:375.987600px;}
.y37{bottom:377.331600px;}
.y199{bottom:377.470500px;}
.y23c{bottom:378.512100px;}
.yf{bottom:380.019600px;}
.y83{bottom:380.487600px;}
.y1fb{bottom:380.631600px;}
.yab{bottom:381.215100px;}
.yd9{bottom:383.015100px;}
.y1be{bottom:383.627100px;}
.y174{bottom:384.830700px;}
.yc0{bottom:384.971100px;}
.y102{bottom:384.987600px;}
.y1cf{bottom:386.487600px;}
.y155{bottom:389.612100px;}
.y5d{bottom:390.241350px;}
.y254{bottom:390.527100px;}
.y12c{bottom:391.287600px;}
.y210{bottom:393.987600px;}
.y36{bottom:395.331600px;}
.y23b{bottom:396.512100px;}
.y198{bottom:397.570800px;}
.ye{bottom:399.819600px;}
.y82{bottom:400.287600px;}
.y1fa{bottom:400.431600px;}
.yaa{bottom:401.015100px;}
.yd8{bottom:402.815100px;}
.y1bd{bottom:403.427100px;}
.ybf{bottom:404.771100px;}
.y101{bottom:404.787600px;}
.y173{bottom:404.931000px;}
.y1ce{bottom:406.287600px;}
.y154{bottom:409.412100px;}
.y5c{bottom:409.891200px;}
.y12b{bottom:411.087600px;}
.y20f{bottom:411.987600px;}
.y23a{bottom:414.512100px;}
.y197{bottom:417.664200px;}
.yd{bottom:419.619600px;}
.y81{bottom:420.087600px;}
.y1f9{bottom:420.231600px;}
.y1bc{bottom:423.227100px;}
.ybe{bottom:424.571100px;}
.y100{bottom:424.587600px;}
.y172{bottom:425.031300px;}
.y35{bottom:426.087600px;}
.y253{bottom:426.527100px;}
.y153{bottom:429.212100px;}
.y5b{bottom:429.541050px;}
.y20e{bottom:429.987600px;}
.y12a{bottom:430.887600px;}
.y239{bottom:432.512100px;}
.y196{bottom:437.764500px;}
.yc{bottom:439.419600px;}
.y80{bottom:439.887600px;}
.y1f8{bottom:440.031600px;}
.ya9{bottom:440.615100px;}
.yd7{bottom:442.415100px;}
.y1bb{bottom:443.027100px;}
.ybd{bottom:444.371100px;}
.yff{bottom:444.387600px;}
.y171{bottom:445.131600px;}
.y34{bottom:445.887600px;}
.y20d{bottom:447.987600px;}
.y152{bottom:449.012100px;}
.y5a{bottom:449.190900px;}
.y238{bottom:450.512100px;}
.y129{bottom:450.687600px;}
.y195{bottom:457.864800px;}
.ya8{bottom:458.615100px;}
.yb{bottom:459.219600px;}
.y7f{bottom:459.687600px;}
.y1f7{bottom:459.831600px;}
.yd6{bottom:460.415100px;}
.y1ba{bottom:462.827100px;}
.ybc{bottom:464.171100px;}
.yfe{bottom:464.187600px;}
.y33{bottom:465.687600px;}
.y20c{bottom:465.987600px;}
.y237{bottom:468.512100px;}
.y151{bottom:468.812100px;}
.y59{bottom:468.840750px;}
.y128{bottom:470.487600px;}
.ya7{bottom:476.615100px;}
.y194{bottom:477.965100px;}
.yd5{bottom:478.415100px;}
.ya{bottom:479.019600px;}
.y7e{bottom:479.487600px;}
.y252{bottom:480.527100px;}
.y1b9{bottom:482.627100px;}
.ybb{bottom:483.971100px;}
.yfd{bottom:483.987600px;}
.y170{bottom:485.331600px;}
.y32{bottom:485.487600px;}
.y236{bottom:486.512100px;}
.y58{bottom:488.490600px;}
.y150{bottom:488.612100px;}
.y127{bottom:490.287600px;}
.ya6{bottom:494.615100px;}
.yd4{bottom:496.415100px;}
.y193{bottom:498.065400px;}
.y251{bottom:498.527100px;}
.y9{bottom:498.819600px;}
.y7d{bottom:499.287600px;}
.y1f6{bottom:499.431600px;}
.y1b8{bottom:502.427100px;}
.yba{bottom:503.771100px;}
.yfc{bottom:503.787600px;}
.y235{bottom:504.512100px;}
.y31{bottom:505.287600px;}
.y16f{bottom:505.431600px;}
.y57{bottom:508.140450px;}
.y14f{bottom:508.412100px;}
.y126{bottom:510.087600px;}
.ya5{bottom:512.615100px;}
.yd3{bottom:514.415100px;}
.y1f5{bottom:517.431600px;}
.y192{bottom:518.165700px;}
.y8{bottom:518.619600px;}
.y7c{bottom:519.087600px;}
.y1b7{bottom:522.227100px;}
.y234{bottom:522.512100px;}
.yb9{bottom:523.571100px;}
.yfb{bottom:523.587600px;}
.y30{bottom:525.087600px;}
.y16e{bottom:525.531600px;}
.y56{bottom:527.790300px;}
.y14e{bottom:528.212100px;}
.y125{bottom:529.887600px;}
.yd2{bottom:532.415100px;}
.y250{bottom:534.527100px;}
.y1f4{bottom:535.431600px;}
.y191{bottom:538.266000px;}
.y7b{bottom:538.887600px;}
.y233{bottom:540.512100px;}
.y1b6{bottom:542.027100px;}
.ya4{bottom:543.371100px;}
.yfa{bottom:543.387600px;}
.y2f{bottom:544.887600px;}
.y16d{bottom:545.631600px;}
.y55{bottom:547.440150px;}
.y14d{bottom:548.012100px;}
.y124{bottom:549.687600px;}
.y24f{bottom:552.527100px;}
.y1f3{bottom:553.431600px;}
.y7{bottom:558.219600px;}
.y190{bottom:558.366300px;}
.y232{bottom:558.512100px;}
.y7a{bottom:558.687600px;}
.y1b5{bottom:561.827100px;}
.ya3{bottom:563.171100px;}
.yf9{bottom:563.187600px;}
.y2e{bottom:564.687600px;}
.y16c{bottom:565.731600px;}
.y54{bottom:567.090000px;}
.y14c{bottom:567.812100px;}
.y123{bottom:569.487600px;}
.y24e{bottom:570.527100px;}
.y1f2{bottom:571.431600px;}
.y231{bottom:576.512100px;}
.y18f{bottom:578.466600px;}
.y79{bottom:578.487600px;}
.y1b4{bottom:581.627100px;}
.ya2{bottom:582.971100px;}
.yf8{bottom:582.987600px;}
.y2d{bottom:584.487600px;}
.y53{bottom:586.739850px;}
.y14b{bottom:587.612100px;}
.y24d{bottom:588.527100px;}
.y122{bottom:589.287600px;}
.y1f1{bottom:589.431600px;}
.y230{bottom:594.512100px;}
.y78{bottom:598.287600px;}
.y18e{bottom:598.566900px;}
.y16b{bottom:598.584300px;}
.y1b3{bottom:601.427100px;}
.ya1{bottom:602.771100px;}
.yf7{bottom:602.787600px;}
.y2c{bottom:604.287600px;}
.y52{bottom:606.389700px;}
.y24c{bottom:606.527100px;}
.y14a{bottom:607.412100px;}
.y1f0{bottom:607.431600px;}
.y121{bottom:609.087600px;}
.y22f{bottom:612.512100px;}
.y77{bottom:618.087600px;}
.y18d{bottom:618.667200px;}
.y16a{bottom:618.684600px;}
.y1b2{bottom:621.227100px;}
.ya0{bottom:622.571100px;}
.yf6{bottom:622.587600px;}
.y2b{bottom:624.087600px;}
.y24b{bottom:624.527100px;}
.y1ef{bottom:625.431600px;}
.y51{bottom:626.039550px;}
.y149{bottom:627.212100px;}
.y6{bottom:628.419600px;}
.y120{bottom:628.887600px;}
.y22e{bottom:630.512100px;}
.y76{bottom:637.887600px;}
.y18c{bottom:638.767500px;}
.y169{bottom:638.784900px;}
.y1b1{bottom:641.027100px;}
.y9f{bottom:642.371100px;}
.yf5{bottom:642.387600px;}
.y24a{bottom:642.527100px;}
.y2a{bottom:643.887600px;}
.y50{bottom:645.689400px;}
.y5{bottom:646.419600px;}
.y148{bottom:647.012100px;}
.y22d{bottom:648.512100px;}
.y11f{bottom:648.687600px;}
.y1ee{bottom:656.187600px;}
.y75{bottom:657.687600px;}
.y18b{bottom:658.867800px;}
.y168{bottom:658.885200px;}
.y249{bottom:660.527100px;}
.y1b0{bottom:660.827100px;}
.y9e{bottom:662.171100px;}
.yf4{bottom:662.187600px;}
.y29{bottom:663.687600px;}
.y4f{bottom:665.339250px;}
.y22c{bottom:666.512100px;}
.y147{bottom:666.812100px;}
.y11e{bottom:668.487600px;}
.y1ed{bottom:675.987600px;}
.y74{bottom:677.487600px;}
.y248{bottom:678.527100px;}
.y18a{bottom:678.968100px;}
.y167{bottom:678.985500px;}
.y1af{bottom:680.627100px;}
.y9d{bottom:681.971100px;}
.yf3{bottom:681.987600px;}
.y28{bottom:683.487600px;}
.y22b{bottom:684.512100px;}
.y4e{bottom:684.989100px;}
.y146{bottom:686.612100px;}
.y11d{bottom:688.287600px;}
.y1ec{bottom:695.787600px;}
.y247{bottom:696.527100px;}
.y73{bottom:697.287600px;}
.y189{bottom:699.068400px;}
.y166{bottom:699.085800px;}
.y1ae{bottom:700.427100px;}
.y9c{bottom:701.771100px;}
.yf2{bottom:701.787600px;}
.y22a{bottom:702.512100px;}
.y27{bottom:703.287600px;}
.y4d{bottom:704.638950px;}
.y145{bottom:706.412100px;}
.y11c{bottom:708.087600px;}
.y246{bottom:714.527100px;}
.y1eb{bottom:715.587600px;}
.y72{bottom:717.087600px;}
.y188{bottom:719.168700px;}
.y165{bottom:719.186100px;}
.y229{bottom:720.512100px;}
.y9b{bottom:721.571100px;}
.yf1{bottom:721.587600px;}
.y26{bottom:723.087600px;}
.y4c{bottom:724.288800px;}
.y144{bottom:726.212100px;}
.y11b{bottom:727.887600px;}
.y245{bottom:732.527100px;}
.y1ea{bottom:735.387600px;}
.y71{bottom:736.887600px;}
.y228{bottom:738.512100px;}
.y187{bottom:739.269000px;}
.y164{bottom:739.286400px;}
.y4{bottom:739.419600px;}
.y1ad{bottom:740.027100px;}
.y9a{bottom:741.371100px;}
.yf0{bottom:741.387600px;}
.y25{bottom:742.887600px;}
.y4b{bottom:743.938650px;}
.y143{bottom:746.012100px;}
.y11a{bottom:747.687600px;}
.y244{bottom:750.527100px;}
.y1e9{bottom:755.187600px;}
.y227{bottom:756.512100px;}
.y70{bottom:756.687600px;}
.y1ac{bottom:758.027100px;}
.y186{bottom:759.369300px;}
.y163{bottom:759.386700px;}
.y99{bottom:761.171100px;}
.yef{bottom:761.187600px;}
.y24{bottom:762.687600px;}
.y4a{bottom:763.588500px;}
.y142{bottom:765.812100px;}
.y119{bottom:767.487600px;}
.y3{bottom:768.219600px;}
.y243{bottom:768.527100px;}
.y226{bottom:774.512100px;}
.y1e8{bottom:774.987600px;}
.y1ab{bottom:776.027100px;}
.y6f{bottom:776.487600px;}
.y185{bottom:779.469600px;}
.y162{bottom:779.487000px;}
.y98{bottom:780.971100px;}
.yee{bottom:780.987600px;}
.y23{bottom:782.487600px;}
.y49{bottom:783.238350px;}
.y141{bottom:785.612100px;}
.y242{bottom:786.527100px;}
.y118{bottom:787.287600px;}
.y225{bottom:792.512100px;}
.y1aa{bottom:794.027100px;}
.y1e7{bottom:794.787600px;}
.y6e{bottom:796.287600px;}
.y2{bottom:797.019600px;}
.y184{bottom:799.569900px;}
.y161{bottom:799.587300px;}
.y97{bottom:800.771100px;}
.yed{bottom:800.787600px;}
.y22{bottom:802.287600px;}
.y48{bottom:802.888200px;}
.y241{bottom:804.527100px;}
.y140{bottom:805.412100px;}
.y117{bottom:807.087600px;}
.y224{bottom:810.512100px;}
.y1a9{bottom:812.027100px;}
.y1e6{bottom:814.587600px;}
.y10f{bottom:816.087600px;}
.y183{bottom:819.670200px;}
.y160{bottom:819.686700px;}
.y96{bottom:820.571100px;}
.yec{bottom:820.587600px;}
.y21{bottom:822.087600px;}
.y240{bottom:822.527100px;}
.y47{bottom:822.538050px;}
.y116{bottom:826.887600px;}
.y223{bottom:828.512100px;}
.y1a8{bottom:830.027100px;}
.y1e5{bottom:834.387600px;}
.y6d{bottom:835.887600px;}
.y182{bottom:839.770500px;}
.y15f{bottom:839.787000px;}
.y95{bottom:840.371100px;}
.yeb{bottom:840.387600px;}
.y20{bottom:841.887600px;}
.y46{bottom:842.187900px;}
.y13f{bottom:845.012100px;}
.y222{bottom:846.512100px;}
.y115{bottom:846.687600px;}
.y1a7{bottom:848.027100px;}
.y1e4{bottom:854.187600px;}
.y10e{bottom:855.687600px;}
.y23f{bottom:858.527100px;}
.y181{bottom:859.870800px;}
.y15e{bottom:859.887300px;}
.y94{bottom:860.171100px;}
.yea{bottom:860.187600px;}
.y1f{bottom:861.687600px;}
.y45{bottom:861.837750px;}
.y13e{bottom:863.012100px;}
.y221{bottom:864.512100px;}
.y1a6{bottom:866.027100px;}
.y114{bottom:866.487600px;}
.y1e3{bottom:873.987600px;}
.y10d{bottom:875.487600px;}
.y93{bottom:879.971100px;}
.ye9{bottom:879.987600px;}
.y13d{bottom:881.012100px;}
.y1e{bottom:881.487600px;}
.y1a5{bottom:884.027100px;}
.yd1{bottom:923.954100px;}
.y20b{bottom:924.485100px;}
.y44{bottom:925.454100px;}
.ye8{bottom:925.985100px;}
.y13c{bottom:925.985250px;}
.y1d{bottom:927.225600px;}
.y6c{bottom:927.485100px;}
.h8{height:29.399836px;}
.he{height:29.400436px;}
.hf{height:29.531672px;}
.ha{height:37.303711px;}
.h9{height:47.381836px;}
.h10{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:48.055863px;}
.h5{height:52.646484px;}
.hd{height:52.792969px;}
.hc{height:53.291016px;}
.h7{height:57.911133px;}
.h11{height:57.914733px;}
.hb{height:58.072266px;}
.h6{height:58.620117px;}
.h3{height:85.265625px;}
.h0{height:977.748600px;}
.h1{height:978.000000px;}
.w0{width:680.686050px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x1{left:95.384550px;}
.xc{left:99.635550px;}
.x2{left:102.218550px;}
.x8{left:108.877050px;}
.xe{left:113.134950px;}
.x7{left:129.407550px;}
.xd{left:133.649850px;}
.x12{left:137.903550px;}
.x13{left:142.156050px;}
.x9{left:146.407050px;}
.x10{left:150.659550px;}
.x3{left:157.346550px;}
.xf{left:203.309550px;}
.x4{left:245.042550px;}
.x14{left:257.149050px;}
.xa{left:284.065050px;}
.x15{left:305.635050px;}
.x6{left:343.613550px;}
.x5{left:461.294550px;}
.x11{left:571.232550px;}
.xb{left:576.482550px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls17{letter-spacing:-4.341333pt;}
.ls3{letter-spacing:-1.706667pt;}
.ls1b{letter-spacing:-1.268919pt;}
.ls1c{letter-spacing:-1.173333pt;}
.ls33{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-1.038206pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.684053pt;}
.ls22{letter-spacing:-0.064533pt;}
.ls19{letter-spacing:-0.058667pt;}
.ls23{letter-spacing:-0.046933pt;}
.ls1a{letter-spacing:-0.041067pt;}
.ls26{letter-spacing:-0.038400pt;}
.ls11{letter-spacing:-0.035200pt;}
.ls25{letter-spacing:-0.033600pt;}
.ls41{letter-spacing:-0.032000pt;}
.ls18{letter-spacing:-0.029333pt;}
.ls21{letter-spacing:-0.023467pt;}
.ls12{letter-spacing:-0.017600pt;}
.ls5{letter-spacing:-0.014400pt;}
.ls1f{letter-spacing:-0.011733pt;}
.ls40{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:-0.009600pt;}
.ls24{letter-spacing:-0.005867pt;}
.ls15{letter-spacing:-0.005333pt;}
.ls2b{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002667pt;}
.ls2d{letter-spacing:0.005333pt;}
.ls7{letter-spacing:0.005867pt;}
.lse{letter-spacing:0.010667pt;}
.lsb{letter-spacing:0.011733pt;}
.ls3b{letter-spacing:0.016000pt;}
.ls28{letter-spacing:0.017600pt;}
.lsd{letter-spacing:0.021333pt;}
.ls30{letter-spacing:0.023467pt;}
.ls14{letter-spacing:0.029333pt;}
.ls32{letter-spacing:0.041067pt;}
.ls27{letter-spacing:0.052800pt;}
.ls31{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.677333pt;}
.ls35{letter-spacing:1.182667pt;}
.ls37{letter-spacing:1.183412pt;}
.ls8{letter-spacing:1.648533pt;}
.ls3e{letter-spacing:1.877333pt;}
.ls34{letter-spacing:2.032000pt;}
.ls2e{letter-spacing:2.082667pt;}
.ls36{letter-spacing:2.368000pt;}
.ls39{letter-spacing:4.218667pt;}
.ls2f{letter-spacing:4.488000pt;}
.ls16{letter-spacing:5.016000pt;}
.lsc{letter-spacing:5.608533pt;}
.ls2a{letter-spacing:7.257067pt;}
.ls29{letter-spacing:7.262933pt;}
.ls20{letter-spacing:7.327467pt;}
.lsa{letter-spacing:8.178133pt;}
.ls10{letter-spacing:10.032000pt;}
.ls1{letter-spacing:10.272000pt;}
.ls0{letter-spacing:12.000000pt;}
.lsf{letter-spacing:12.997333pt;}
.ls13{letter-spacing:13.329067pt;}
.ls3a{letter-spacing:28.165333pt;}
.ls3c{letter-spacing:44.122667pt;}
.ls2c{letter-spacing:56.390400pt;}
.ls3f{letter-spacing:57.722667pt;}
.ls3d{letter-spacing:61.424000pt;}
.ws57{word-spacing:-15.210667pt;}
.ws0{word-spacing:-14.666667pt;}
.ws1c{word-spacing:-13.493333pt;}
.ws10{word-spacing:-13.333333pt;}
.ws12{word-spacing:-12.000000pt;}
.ws7{word-spacing:-8.550667pt;}
.ws1d{word-spacing:-7.866613pt;}
.ws3{word-spacing:-7.773333pt;}
.ws1b{word-spacing:-7.281748pt;}
.ws1{word-spacing:-6.996000pt;}
.ws1e{word-spacing:-5.957794pt;}
.ws14{word-spacing:-3.600000pt;}
.ws41{word-spacing:-3.546667pt;}
.ws2c{word-spacing:-2.457600pt;}
.ws26{word-spacing:-2.434667pt;}
.ws28{word-spacing:-2.320000pt;}
.ws29{word-spacing:-2.018133pt;}
.ws19{word-spacing:-1.484267pt;}
.ws1f{word-spacing:-1.402133pt;}
.ws3b{word-spacing:-1.296000pt;}
.ws17{word-spacing:-1.255467pt;}
.ws30{word-spacing:-1.220267pt;}
.ws45{word-spacing:-0.821333pt;}
.ws4b{word-spacing:-0.645333pt;}
.ws8{word-spacing:-0.381333pt;}
.ws53{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.058667pt;}
.ws44{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.316800pt;}
.ws51{word-spacing:0.442667pt;}
.ws22{word-spacing:0.786133pt;}
.ws11{word-spacing:1.152000pt;}
.ws2e{word-spacing:2.082667pt;}
.ws3f{word-spacing:2.250667pt;}
.ws36{word-spacing:2.464000pt;}
.ws3a{word-spacing:2.496000pt;}
.ws54{word-spacing:2.704000pt;}
.ws18{word-spacing:3.033067pt;}
.ws2f{word-spacing:3.050667pt;}
.ws38{word-spacing:3.103467pt;}
.wsa{word-spacing:3.115200pt;}
.ws9{word-spacing:3.150400pt;}
.ws23{word-spacing:3.437867pt;}
.ws5{word-spacing:3.484800pt;}
.ws4e{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.684267pt;}
.ws34{word-spacing:3.936533pt;}
.ws32{word-spacing:4.080000pt;}
.ws3e{word-spacing:4.218667pt;}
.ws56{word-spacing:4.320000pt;}
.ws13{word-spacing:4.732800pt;}
.ws16{word-spacing:5.244800pt;}
.ws40{word-spacing:5.317333pt;}
.wsc{word-spacing:5.608533pt;}
.ws27{word-spacing:5.685333pt;}
.ws2b{word-spacing:5.968000pt;}
.wsb{word-spacing:6.429867pt;}
.ws49{word-spacing:6.469333pt;}
.ws2a{word-spacing:6.641067pt;}
.wsf{word-spacing:6.869867pt;}
.ws25{word-spacing:6.905067pt;}
.ws39{word-spacing:7.057600pt;}
.ws3d{word-spacing:7.173333pt;}
.ws20{word-spacing:8.043200pt;}
.ws50{word-spacing:9.168000pt;}
.ws24{word-spacing:9.193067pt;}
.ws1a{word-spacing:9.445333pt;}
.ws37{word-spacing:9.509867pt;}
.ws6{word-spacing:9.803200pt;}
.ws21{word-spacing:9.938133pt;}
.wsd{word-spacing:11.264000pt;}
.ws4{word-spacing:11.616000pt;}
.ws35{word-spacing:14.179733pt;}
.ws48{word-spacing:15.173333pt;}
.ws42{word-spacing:15.189333pt;}
.wse{word-spacing:15.265067pt;}
.ws4f{word-spacing:16.384000pt;}
.ws33{word-spacing:17.858133pt;}
.ws52{word-spacing:17.989333pt;}
.ws3c{word-spacing:19.146667pt;}
.ws47{word-spacing:22.581333pt;}
.ws46{word-spacing:25.322667pt;}
.ws43{word-spacing:28.165333pt;}
.ws55{word-spacing:30.634667pt;}
.ws4a{word-spacing:44.117333pt;}
.ws4c{word-spacing:61.418667pt;}
.ws4d{word-spacing:61.424000pt;}
._1a{margin-left:-24.434667pt;}
._5{margin-left:-16.947733pt;}
._4{margin-left:-15.521600pt;}
._1c{margin-left:-14.443733pt;}
._f{margin-left:-12.641067pt;}
._18{margin-left:-7.600000pt;}
._0{margin-left:-6.331733pt;}
._3{margin-left:-4.662400pt;}
._11{margin-left:-3.662400pt;}
._14{margin-left:-2.094400pt;}
._2{margin-left:-1.061867pt;}
._b{width:1.026667pt;}
._1{width:2.286933pt;}
._10{width:3.357867pt;}
._8{width:4.757867pt;}
._c{width:6.142400pt;}
._17{width:7.098667pt;}
._e{width:8.494933pt;}
._12{width:9.662400pt;}
._7{width:11.052800pt;}
._6{width:12.114667pt;}
._9{width:13.176533pt;}
._20{width:14.365867pt;}
._13{width:15.798933pt;}
._16{width:17.048533pt;}
._1b{width:18.386133pt;}
._1d{width:19.993600pt;}
._1e{width:20.914667pt;}
._19{width:22.668800pt;}
._15{width:23.630933pt;}
._d{width:24.874667pt;}
._a{width:26.652267pt;}
._21{width:28.170667pt;}
._24{width:30.154667pt;}
._25{width:31.088000pt;}
._22{width:44.122667pt;}
._1f{width:56.390400pt;}
._26{width:57.722667pt;}
._23{width:61.424000pt;}
.fs5{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:74.211200pt;}
.yd0{bottom:74.269867pt;}
.yb8{bottom:74.270000pt;}
.y20a{bottom:74.339200pt;}
.y264{bottom:75.135200pt;}
.y43{bottom:75.603200pt;}
.y1{bottom:75.927200pt;}
.y1cd{bottom:77.001867pt;}
.y13b{bottom:77.272667pt;}
.y220{bottom:78.211200pt;}
.ye7{bottom:88.669867pt;}
.yb7{bottom:88.670000pt;}
.y42{bottom:90.003200pt;}
.y91{bottom:91.811200pt;}
.y209{bottom:91.939200pt;}
.ycf{bottom:92.665867pt;}
.y13a{bottom:93.272667pt;}
.y6b{bottom:93.999200pt;}
.y21f{bottom:94.211200pt;}
.y1cc{bottom:94.601867pt;}
.y1c{bottom:99.392533pt;}
.ye6{bottom:103.069867pt;}
.yb6{bottom:103.070000pt;}
.y41{bottom:104.403200pt;}
.y10c{bottom:107.065867pt;}
.y263{bottom:107.135200pt;}
.y139{bottom:109.272667pt;}
.y90{bottom:109.411200pt;}
.y208{bottom:109.539200pt;}
.y21e{bottom:110.211200pt;}
.yce{bottom:110.628533pt;}
.y1cb{bottom:112.201867pt;}
.y1b{bottom:113.792533pt;}
.ye5{bottom:117.469867pt;}
.y40{bottom:118.803200pt;}
.y6a{bottom:119.682800pt;}
.yb5{bottom:121.465867pt;}
.y262{bottom:123.135200pt;}
.ycd{bottom:125.028533pt;}
.y21d{bottom:126.211200pt;}
.y8f{bottom:127.011200pt;}
.y207{bottom:127.139200pt;}
.y180{bottom:127.668533pt;}
.y1a{bottom:128.192533pt;}
.y1d9{bottom:129.005867pt;}
.y1ca{bottom:129.801867pt;}
.y113{bottom:131.011200pt;}
.y1e2{bottom:133.203200pt;}
.ye4{bottom:135.865867pt;}
.y138{bottom:136.611200pt;}
.y3f{bottom:137.199200pt;}
.y69{bottom:137.282800pt;}
.y1a4{bottom:138.993067pt;}
.y261{bottom:139.135200pt;}
.y21c{bottom:142.211200pt;}
.y19{bottom:142.592533pt;}
.ycc{bottom:143.424533pt;}
.y8e{bottom:144.611200pt;}
.y206{bottom:144.739200pt;}
.y17f{bottom:145.535467pt;}
.y1d8{bottom:146.605867pt;}
.y1c9{bottom:147.401867pt;}
.y112{bottom:148.611200pt;}
.y1e1{bottom:151.599200pt;}
.ye3{bottom:153.828533pt;}
.y137{bottom:154.211200pt;}
.y68{bottom:154.749333pt;}
.y260{bottom:155.135200pt;}
.y1a3{bottom:156.860000pt;}
.y21b{bottom:158.211200pt;}
.y18{bottom:160.988533pt;}
.ycb{bottom:161.388533pt;}
.y8d{bottom:162.211200pt;}
.y205{bottom:162.339200pt;}
.y17e{bottom:163.402400pt;}
.y1d7{bottom:164.205867pt;}
.y1c8{bottom:165.001867pt;}
.y10b{bottom:165.384533pt;}
.y111{bottom:166.211200pt;}
.y1e0{bottom:169.561867pt;}
.y25f{bottom:171.135200pt;}
.y136{bottom:171.811200pt;}
.y67{bottom:172.215867pt;}
.ye2{bottom:172.224533pt;}
.y21a{bottom:174.211200pt;}
.y1a2{bottom:174.726933pt;}
.yca{bottom:175.788533pt;}
.y15d{bottom:179.784533pt;}
.y8c{bottom:179.811200pt;}
.y204{bottom:179.939200pt;}
.yb4{bottom:180.457867pt;}
.y17d{bottom:181.269333pt;}
.y1d6{bottom:181.805867pt;}
.y1c7{bottom:182.601867pt;}
.y110{bottom:183.811200pt;}
.y25e{bottom:187.135200pt;}
.y1df{bottom:187.957867pt;}
.y135{bottom:189.411200pt;}
.y66{bottom:189.682400pt;}
.yc9{bottom:190.188533pt;}
.y219{bottom:190.211200pt;}
.y1a1{bottom:192.593867pt;}
.y17{bottom:196.995200pt;}
.y8b{bottom:197.411200pt;}
.y203{bottom:197.539200pt;}
.y3e{bottom:197.805867pt;}
.yb3{bottom:198.057867pt;}
.y17c{bottom:199.136267pt;}
.ye1{bottom:199.657867pt;}
.y1c6{bottom:200.201867pt;}
.y10a{bottom:201.411200pt;}
.y25d{bottom:203.135200pt;}
.yc8{bottom:204.588533pt;}
.y218{bottom:206.211200pt;}
.y134{bottom:207.011200pt;}
.y65{bottom:207.148933pt;}
.y1a0{bottom:210.460800pt;}
.y16{bottom:214.595200pt;}
.y8a{bottom:215.011200pt;}
.y202{bottom:215.139200pt;}
.y3d{bottom:215.405867pt;}
.yb2{bottom:215.657867pt;}
.y17b{bottom:217.003200pt;}
.y1d5{bottom:217.005867pt;}
.ye0{bottom:217.257867pt;}
.y1c5{bottom:217.801867pt;}
.yc7{bottom:218.988533pt;}
.y109{bottom:219.011200pt;}
.y25c{bottom:219.135200pt;}
.y1de{bottom:220.344533pt;}
.y217{bottom:222.211200pt;}
.y15c{bottom:224.583200pt;}
.y133{bottom:224.611200pt;}
.y64{bottom:224.615467pt;}
.y19f{bottom:228.327733pt;}
.y15{bottom:232.195200pt;}
.y89{bottom:232.611200pt;}
.y201{bottom:232.739200pt;}
.y3c{bottom:233.005867pt;}
.yb1{bottom:233.257867pt;}
.yc6{bottom:233.388533pt;}
.ydf{bottom:234.857867pt;}
.y17a{bottom:234.870133pt;}
.y25b{bottom:235.135200pt;}
.y1c4{bottom:235.401867pt;}
.y108{bottom:236.611200pt;}
.y15b{bottom:237.916533pt;}
.y1dd{bottom:237.944533pt;}
.y216{bottom:238.211200pt;}
.y63{bottom:242.082000pt;}
.y132{bottom:242.211200pt;}
.y19e{bottom:246.194667pt;}
.yc5{bottom:247.788533pt;}
.y1d4{bottom:249.005867pt;}
.y14{bottom:249.795200pt;}
.y88{bottom:250.211200pt;}
.y200{bottom:250.339200pt;}
.y3b{bottom:250.605867pt;}
.yb0{bottom:250.857867pt;}
.y25a{bottom:251.135200pt;}
.y15a{bottom:251.249867pt;}
.yde{bottom:252.457867pt;}
.y179{bottom:252.737067pt;}
.y1c3{bottom:253.001867pt;}
.y107{bottom:254.211200pt;}
.y1dc{bottom:255.544533pt;}
.y62{bottom:259.548533pt;}
.y131{bottom:259.811200pt;}
.yc4{bottom:262.188533pt;}
.y19d{bottom:264.061600pt;}
.y1d3{bottom:265.005867pt;}
.y259{bottom:267.135200pt;}
.y13{bottom:267.395200pt;}
.y87{bottom:267.811200pt;}
.y1ff{bottom:267.939200pt;}
.y3a{bottom:268.205867pt;}
.yaf{bottom:268.457867pt;}
.ydd{bottom:270.057867pt;}
.y215{bottom:270.211200pt;}
.y1c2{bottom:270.601867pt;}
.y178{bottom:270.604000pt;}
.y106{bottom:271.811200pt;}
.y1db{bottom:273.144533pt;}
.y159{bottom:275.921867pt;}
.y61{bottom:277.015067pt;}
.y130{bottom:277.411200pt;}
.yc3{bottom:280.584533pt;}
.y1d2{bottom:281.005867pt;}
.y19c{bottom:281.928533pt;}
.y258{bottom:283.135200pt;}
.y12{bottom:284.995200pt;}
.y86{bottom:285.411200pt;}
.y1fe{bottom:285.539200pt;}
.yae{bottom:286.057867pt;}
.y214{bottom:286.211200pt;}
.ydc{bottom:287.657867pt;}
.y1c1{bottom:288.201867pt;}
.y177{bottom:288.470933pt;}
.y105{bottom:289.411200pt;}
.y1da{bottom:290.744533pt;}
.y158{bottom:293.521867pt;}
.y60{bottom:294.481600pt;}
.y12f{bottom:295.011200pt;}
.y257{bottom:299.135200pt;}
.y19b{bottom:299.795467pt;}
.y213{bottom:302.211200pt;}
.y11{bottom:302.595200pt;}
.y85{bottom:303.011200pt;}
.y1fd{bottom:303.139200pt;}
.y39{bottom:303.405867pt;}
.yad{bottom:303.657867pt;}
.y23e{bottom:304.455200pt;}
.ydb{bottom:305.257867pt;}
.y1c0{bottom:305.801867pt;}
.y176{bottom:306.337867pt;}
.yc2{bottom:306.996533pt;}
.y104{bottom:307.011200pt;}
.y1d1{bottom:308.344533pt;}
.y157{bottom:311.121867pt;}
.y5f{bottom:311.948133pt;}
.y12e{bottom:312.611200pt;}
.y256{bottom:315.135200pt;}
.y19a{bottom:317.662400pt;}
.y212{bottom:318.211200pt;}
.y38{bottom:319.405867pt;}
.y10{bottom:320.195200pt;}
.y23d{bottom:320.455200pt;}
.y84{bottom:320.611200pt;}
.y1fc{bottom:320.739200pt;}
.yac{bottom:321.257867pt;}
.yda{bottom:322.857867pt;}
.y1bf{bottom:323.401867pt;}
.y175{bottom:324.204800pt;}
.yc1{bottom:324.596533pt;}
.y103{bottom:324.611200pt;}
.y1d0{bottom:325.944533pt;}
.y156{bottom:328.721867pt;}
.y5e{bottom:329.414667pt;}
.y12d{bottom:330.211200pt;}
.y255{bottom:331.135200pt;}
.y211{bottom:334.211200pt;}
.y37{bottom:335.405867pt;}
.y199{bottom:335.529333pt;}
.y23c{bottom:336.455200pt;}
.yf{bottom:337.795200pt;}
.y83{bottom:338.211200pt;}
.y1fb{bottom:338.339200pt;}
.yab{bottom:338.857867pt;}
.yd9{bottom:340.457867pt;}
.y1be{bottom:341.001867pt;}
.y174{bottom:342.071733pt;}
.yc0{bottom:342.196533pt;}
.y102{bottom:342.211200pt;}
.y1cf{bottom:343.544533pt;}
.y155{bottom:346.321867pt;}
.y5d{bottom:346.881200pt;}
.y254{bottom:347.135200pt;}
.y12c{bottom:347.811200pt;}
.y210{bottom:350.211200pt;}
.y36{bottom:351.405867pt;}
.y23b{bottom:352.455200pt;}
.y198{bottom:353.396267pt;}
.ye{bottom:355.395200pt;}
.y82{bottom:355.811200pt;}
.y1fa{bottom:355.939200pt;}
.yaa{bottom:356.457867pt;}
.yd8{bottom:358.057867pt;}
.y1bd{bottom:358.601867pt;}
.ybf{bottom:359.796533pt;}
.y101{bottom:359.811200pt;}
.y173{bottom:359.938667pt;}
.y1ce{bottom:361.144533pt;}
.y154{bottom:363.921867pt;}
.y5c{bottom:364.347733pt;}
.y12b{bottom:365.411200pt;}
.y20f{bottom:366.211200pt;}
.y23a{bottom:368.455200pt;}
.y197{bottom:371.257067pt;}
.yd{bottom:372.995200pt;}
.y81{bottom:373.411200pt;}
.y1f9{bottom:373.539200pt;}
.y1bc{bottom:376.201867pt;}
.ybe{bottom:377.396533pt;}
.y100{bottom:377.411200pt;}
.y172{bottom:377.805600pt;}
.y35{bottom:378.744533pt;}
.y253{bottom:379.135200pt;}
.y153{bottom:381.521867pt;}
.y5b{bottom:381.814267pt;}
.y20e{bottom:382.211200pt;}
.y12a{bottom:383.011200pt;}
.y239{bottom:384.455200pt;}
.y196{bottom:389.124000pt;}
.yc{bottom:390.595200pt;}
.y80{bottom:391.011200pt;}
.y1f8{bottom:391.139200pt;}
.ya9{bottom:391.657867pt;}
.yd7{bottom:393.257867pt;}
.y1bb{bottom:393.801867pt;}
.ybd{bottom:394.996533pt;}
.yff{bottom:395.011200pt;}
.y171{bottom:395.672533pt;}
.y34{bottom:396.344533pt;}
.y20d{bottom:398.211200pt;}
.y152{bottom:399.121867pt;}
.y5a{bottom:399.280800pt;}
.y238{bottom:400.455200pt;}
.y129{bottom:400.611200pt;}
.y195{bottom:406.990933pt;}
.ya8{bottom:407.657867pt;}
.yb{bottom:408.195200pt;}
.y7f{bottom:408.611200pt;}
.y1f7{bottom:408.739200pt;}
.yd6{bottom:409.257867pt;}
.y1ba{bottom:411.401867pt;}
.ybc{bottom:412.596533pt;}
.yfe{bottom:412.611200pt;}
.y33{bottom:413.944533pt;}
.y20c{bottom:414.211200pt;}
.y237{bottom:416.455200pt;}
.y151{bottom:416.721867pt;}
.y59{bottom:416.747333pt;}
.y128{bottom:418.211200pt;}
.ya7{bottom:423.657867pt;}
.y194{bottom:424.857867pt;}
.yd5{bottom:425.257867pt;}
.ya{bottom:425.795200pt;}
.y7e{bottom:426.211200pt;}
.y252{bottom:427.135200pt;}
.y1b9{bottom:429.001867pt;}
.ybb{bottom:430.196533pt;}
.yfd{bottom:430.211200pt;}
.y170{bottom:431.405867pt;}
.y32{bottom:431.544533pt;}
.y236{bottom:432.455200pt;}
.y58{bottom:434.213867pt;}
.y150{bottom:434.321867pt;}
.y127{bottom:435.811200pt;}
.ya6{bottom:439.657867pt;}
.yd4{bottom:441.257867pt;}
.y193{bottom:442.724800pt;}
.y251{bottom:443.135200pt;}
.y9{bottom:443.395200pt;}
.y7d{bottom:443.811200pt;}
.y1f6{bottom:443.939200pt;}
.y1b8{bottom:446.601867pt;}
.yba{bottom:447.796533pt;}
.yfc{bottom:447.811200pt;}
.y235{bottom:448.455200pt;}
.y31{bottom:449.144533pt;}
.y16f{bottom:449.272533pt;}
.y57{bottom:451.680400pt;}
.y14f{bottom:451.921867pt;}
.y126{bottom:453.411200pt;}
.ya5{bottom:455.657867pt;}
.yd3{bottom:457.257867pt;}
.y1f5{bottom:459.939200pt;}
.y192{bottom:460.591733pt;}
.y8{bottom:460.995200pt;}
.y7c{bottom:461.411200pt;}
.y1b7{bottom:464.201867pt;}
.y234{bottom:464.455200pt;}
.yb9{bottom:465.396533pt;}
.yfb{bottom:465.411200pt;}
.y30{bottom:466.744533pt;}
.y16e{bottom:467.139200pt;}
.y56{bottom:469.146933pt;}
.y14e{bottom:469.521867pt;}
.y125{bottom:471.011200pt;}
.yd2{bottom:473.257867pt;}
.y250{bottom:475.135200pt;}
.y1f4{bottom:475.939200pt;}
.y191{bottom:478.458667pt;}
.y7b{bottom:479.011200pt;}
.y233{bottom:480.455200pt;}
.y1b6{bottom:481.801867pt;}
.ya4{bottom:482.996533pt;}
.yfa{bottom:483.011200pt;}
.y2f{bottom:484.344533pt;}
.y16d{bottom:485.005867pt;}
.y55{bottom:486.613467pt;}
.y14d{bottom:487.121867pt;}
.y124{bottom:488.611200pt;}
.y24f{bottom:491.135200pt;}
.y1f3{bottom:491.939200pt;}
.y7{bottom:496.195200pt;}
.y190{bottom:496.325600pt;}
.y232{bottom:496.455200pt;}
.y7a{bottom:496.611200pt;}
.y1b5{bottom:499.401867pt;}
.ya3{bottom:500.596533pt;}
.yf9{bottom:500.611200pt;}
.y2e{bottom:501.944533pt;}
.y16c{bottom:502.872533pt;}
.y54{bottom:504.080000pt;}
.y14c{bottom:504.721867pt;}
.y123{bottom:506.211200pt;}
.y24e{bottom:507.135200pt;}
.y1f2{bottom:507.939200pt;}
.y231{bottom:512.455200pt;}
.y18f{bottom:514.192533pt;}
.y79{bottom:514.211200pt;}
.y1b4{bottom:517.001867pt;}
.ya2{bottom:518.196533pt;}
.yf8{bottom:518.211200pt;}
.y2d{bottom:519.544533pt;}
.y53{bottom:521.546533pt;}
.y14b{bottom:522.321867pt;}
.y24d{bottom:523.135200pt;}
.y122{bottom:523.811200pt;}
.y1f1{bottom:523.939200pt;}
.y230{bottom:528.455200pt;}
.y78{bottom:531.811200pt;}
.y18e{bottom:532.059467pt;}
.y16b{bottom:532.074933pt;}
.y1b3{bottom:534.601867pt;}
.ya1{bottom:535.796533pt;}
.yf7{bottom:535.811200pt;}
.y2c{bottom:537.144533pt;}
.y52{bottom:539.013067pt;}
.y24c{bottom:539.135200pt;}
.y14a{bottom:539.921867pt;}
.y1f0{bottom:539.939200pt;}
.y121{bottom:541.411200pt;}
.y22f{bottom:544.455200pt;}
.y77{bottom:549.411200pt;}
.y18d{bottom:549.926400pt;}
.y16a{bottom:549.941867pt;}
.y1b2{bottom:552.201867pt;}
.ya0{bottom:553.396533pt;}
.yf6{bottom:553.411200pt;}
.y2b{bottom:554.744533pt;}
.y24b{bottom:555.135200pt;}
.y1ef{bottom:555.939200pt;}
.y51{bottom:556.479600pt;}
.y149{bottom:557.521867pt;}
.y6{bottom:558.595200pt;}
.y120{bottom:559.011200pt;}
.y22e{bottom:560.455200pt;}
.y76{bottom:567.011200pt;}
.y18c{bottom:567.793333pt;}
.y169{bottom:567.808800pt;}
.y1b1{bottom:569.801867pt;}
.y9f{bottom:570.996533pt;}
.yf5{bottom:571.011200pt;}
.y24a{bottom:571.135200pt;}
.y2a{bottom:572.344533pt;}
.y50{bottom:573.946133pt;}
.y5{bottom:574.595200pt;}
.y148{bottom:575.121867pt;}
.y22d{bottom:576.455200pt;}
.y11f{bottom:576.611200pt;}
.y1ee{bottom:583.277867pt;}
.y75{bottom:584.611200pt;}
.y18b{bottom:585.660267pt;}
.y168{bottom:585.675733pt;}
.y249{bottom:587.135200pt;}
.y1b0{bottom:587.401867pt;}
.y9e{bottom:588.596533pt;}
.yf4{bottom:588.611200pt;}
.y29{bottom:589.944533pt;}
.y4f{bottom:591.412667pt;}
.y22c{bottom:592.455200pt;}
.y147{bottom:592.721867pt;}
.y11e{bottom:594.211200pt;}
.y1ed{bottom:600.877867pt;}
.y74{bottom:602.211200pt;}
.y248{bottom:603.135200pt;}
.y18a{bottom:603.527200pt;}
.y167{bottom:603.542667pt;}
.y1af{bottom:605.001867pt;}
.y9d{bottom:606.196533pt;}
.yf3{bottom:606.211200pt;}
.y28{bottom:607.544533pt;}
.y22b{bottom:608.455200pt;}
.y4e{bottom:608.879200pt;}
.y146{bottom:610.321867pt;}
.y11d{bottom:611.811200pt;}
.y1ec{bottom:618.477867pt;}
.y247{bottom:619.135200pt;}
.y73{bottom:619.811200pt;}
.y189{bottom:621.394133pt;}
.y166{bottom:621.409600pt;}
.y1ae{bottom:622.601867pt;}
.y9c{bottom:623.796533pt;}
.yf2{bottom:623.811200pt;}
.y22a{bottom:624.455200pt;}
.y27{bottom:625.144533pt;}
.y4d{bottom:626.345733pt;}
.y145{bottom:627.921867pt;}
.y11c{bottom:629.411200pt;}
.y246{bottom:635.135200pt;}
.y1eb{bottom:636.077867pt;}
.y72{bottom:637.411200pt;}
.y188{bottom:639.261067pt;}
.y165{bottom:639.276533pt;}
.y229{bottom:640.455200pt;}
.y9b{bottom:641.396533pt;}
.yf1{bottom:641.411200pt;}
.y26{bottom:642.744533pt;}
.y4c{bottom:643.812267pt;}
.y144{bottom:645.521867pt;}
.y11b{bottom:647.011200pt;}
.y245{bottom:651.135200pt;}
.y1ea{bottom:653.677867pt;}
.y71{bottom:655.011200pt;}
.y228{bottom:656.455200pt;}
.y187{bottom:657.128000pt;}
.y164{bottom:657.143467pt;}
.y4{bottom:657.261867pt;}
.y1ad{bottom:657.801867pt;}
.y9a{bottom:658.996533pt;}
.yf0{bottom:659.011200pt;}
.y25{bottom:660.344533pt;}
.y4b{bottom:661.278800pt;}
.y143{bottom:663.121867pt;}
.y11a{bottom:664.611200pt;}
.y244{bottom:667.135200pt;}
.y1e9{bottom:671.277867pt;}
.y227{bottom:672.455200pt;}
.y70{bottom:672.611200pt;}
.y1ac{bottom:673.801867pt;}
.y186{bottom:674.994933pt;}
.y163{bottom:675.010400pt;}
.y99{bottom:676.596533pt;}
.yef{bottom:676.611200pt;}
.y24{bottom:677.944533pt;}
.y4a{bottom:678.745333pt;}
.y142{bottom:680.721867pt;}
.y119{bottom:682.211200pt;}
.y3{bottom:682.861867pt;}
.y243{bottom:683.135200pt;}
.y226{bottom:688.455200pt;}
.y1e8{bottom:688.877867pt;}
.y1ab{bottom:689.801867pt;}
.y6f{bottom:690.211200pt;}
.y185{bottom:692.861867pt;}
.y162{bottom:692.877333pt;}
.y98{bottom:694.196533pt;}
.yee{bottom:694.211200pt;}
.y23{bottom:695.544533pt;}
.y49{bottom:696.211867pt;}
.y141{bottom:698.321867pt;}
.y242{bottom:699.135200pt;}
.y118{bottom:699.811200pt;}
.y225{bottom:704.455200pt;}
.y1aa{bottom:705.801867pt;}
.y1e7{bottom:706.477867pt;}
.y6e{bottom:707.811200pt;}
.y2{bottom:708.461867pt;}
.y184{bottom:710.728800pt;}
.y161{bottom:710.744267pt;}
.y97{bottom:711.796533pt;}
.yed{bottom:711.811200pt;}
.y22{bottom:713.144533pt;}
.y48{bottom:713.678400pt;}
.y241{bottom:715.135200pt;}
.y140{bottom:715.921867pt;}
.y117{bottom:717.411200pt;}
.y224{bottom:720.455200pt;}
.y1a9{bottom:721.801867pt;}
.y1e6{bottom:724.077867pt;}
.y10f{bottom:725.411200pt;}
.y183{bottom:728.595733pt;}
.y160{bottom:728.610400pt;}
.y96{bottom:729.396533pt;}
.yec{bottom:729.411200pt;}
.y21{bottom:730.744533pt;}
.y240{bottom:731.135200pt;}
.y47{bottom:731.144933pt;}
.y116{bottom:735.011200pt;}
.y223{bottom:736.455200pt;}
.y1a8{bottom:737.801867pt;}
.y1e5{bottom:741.677867pt;}
.y6d{bottom:743.011200pt;}
.y182{bottom:746.462667pt;}
.y15f{bottom:746.477333pt;}
.y95{bottom:746.996533pt;}
.yeb{bottom:747.011200pt;}
.y20{bottom:748.344533pt;}
.y46{bottom:748.611467pt;}
.y13f{bottom:751.121867pt;}
.y222{bottom:752.455200pt;}
.y115{bottom:752.611200pt;}
.y1a7{bottom:753.801867pt;}
.y1e4{bottom:759.277867pt;}
.y10e{bottom:760.611200pt;}
.y23f{bottom:763.135200pt;}
.y181{bottom:764.329600pt;}
.y15e{bottom:764.344267pt;}
.y94{bottom:764.596533pt;}
.yea{bottom:764.611200pt;}
.y1f{bottom:765.944533pt;}
.y45{bottom:766.078000pt;}
.y13e{bottom:767.121867pt;}
.y221{bottom:768.455200pt;}
.y1a6{bottom:769.801867pt;}
.y114{bottom:770.211200pt;}
.y1e3{bottom:776.877867pt;}
.y10d{bottom:778.211200pt;}
.y93{bottom:782.196533pt;}
.ye9{bottom:782.211200pt;}
.y13d{bottom:783.121867pt;}
.y1e{bottom:783.544533pt;}
.y1a5{bottom:785.801867pt;}
.yd1{bottom:821.292533pt;}
.y20b{bottom:821.764533pt;}
.y44{bottom:822.625867pt;}
.ye8{bottom:823.097867pt;}
.y13c{bottom:823.098000pt;}
.y1d{bottom:824.200533pt;}
.y6c{bottom:824.431200pt;}
.h8{height:26.133188pt;}
.he{height:26.133721pt;}
.hf{height:26.250375pt;}
.ha{height:33.158854pt;}
.h9{height:42.117188pt;}
.h10{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:42.716323pt;}
.h5{height:46.796875pt;}
.hd{height:46.927083pt;}
.hc{height:47.369792pt;}
.h7{height:51.476562pt;}
.h11{height:51.479763pt;}
.hb{height:51.619792pt;}
.h6{height:52.106771pt;}
.h3{height:75.791667pt;}
.h0{height:869.109867pt;}
.h1{height:869.333333pt;}
.w0{width:605.054267pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x1{left:84.786267pt;}
.xc{left:88.564933pt;}
.x2{left:90.860933pt;}
.x8{left:96.779600pt;}
.xe{left:100.564400pt;}
.x7{left:115.028933pt;}
.xd{left:118.799867pt;}
.x12{left:122.580933pt;}
.x13{left:126.360933pt;}
.x9{left:130.139600pt;}
.x10{left:133.919600pt;}
.x3{left:139.863600pt;}
.xf{left:180.719600pt;}
.x4{left:217.815600pt;}
.x14{left:228.576933pt;}
.xa{left:252.502267pt;}
.x15{left:271.675600pt;}
.x6{left:305.434267pt;}
.x5{left:410.039600pt;}
.x11{left:507.762267pt;}
.xb{left:512.428933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  