
    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_9ebdc47ed672f0a2bd13e4d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6f255ee065476124fbb2ddde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_d4fd2bf09d6b9fd15b521ecd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_1a04854fa4056f36dfa923ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_8dd72c9b6894183cad9e8cd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_a105dd8178d238ab8a6b9415.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_768bb203891c31594e81af26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_a105dd8178d238ab8a6b9415.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-65.520000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-60.480000px;}
.vc{vertical-align:-31.518000px;}
.v4{vertical-align:-23.760000px;}
.vd{vertical-align:-14.550000px;}
.v8{vertical-align:-9.360000px;}
.vb{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.360000px;}
.v7{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.va{vertical-align:31.518000px;}
.ls19{letter-spacing:-1.548000px;}
.ls20{letter-spacing:-1.314000px;}
.ls1f{letter-spacing:-1.206000px;}
.ls1a{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.828000px;}
.ls13{letter-spacing:-0.738000px;}
.ls16{letter-spacing:-0.702000px;}
.ls23{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls14{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls26{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.702000px;}
.ls1e{letter-spacing:0.738000px;}
.ls27{letter-spacing:0.792000px;}
.ls1d{letter-spacing:0.828000px;}
.ls24{letter-spacing:2.988000px;}
.ls10{letter-spacing:3.060000px;}
.ls4{letter-spacing:4.500000px;}
.ls5{letter-spacing:4.620000px;}
.ls1c{letter-spacing:7.380000px;}
.ls1b{letter-spacing:8.100000px;}
.ls22{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls2{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.lsf{letter-spacing:1233.840000px;}
.ls21{letter-spacing:1286.100000px;}
.ls7{letter-spacing:1367.040000px;}
.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;}
}
.ws17{word-spacing:-23.976000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-16.560000px;}
.ws6{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.328000px;}
.ws3{word-spacing:-14.220000px;}
.ws12{word-spacing:-14.202000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wse{word-spacing:-13.716000px;}
.wsb{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws1c{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.798000px;}
.wsf{word-spacing:-12.762000px;}
.ws13{word-spacing:-12.672000px;}
.wsd{word-spacing:-12.528000px;}
.ws15{word-spacing:-12.420000px;}
.ws18{word-spacing:-12.294000px;}
.ws19{word-spacing:-12.186000px;}
.ws14{word-spacing:-11.952000px;}
.ws7{word-spacing:-10.440000px;}
.ws1d{word-spacing:-9.792000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
.ws1b{word-spacing:1648.572000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.584240px;}
._7{width:3.221760px;}
._8{width:4.765680px;}
._e{width:5.921040px;}
._d{width:7.788000px;}
._b{width:8.802000px;}
._10{width:9.989760px;}
._a{width:11.070000px;}
._c{width:12.096000px;}
._9{width:15.299520px;}
._5{width:21.654000px;}
._6{width:22.746000px;}
._12{width:762.132000px;}
._11{width:1041.420000px;}
._f{width:1098.678000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y97{bottom:2.865000px;}
.ye7{bottom:2.880000px;}
.y99{bottom:3.225000px;}
.ya2{bottom:3.232500px;}
.ye9{bottom:3.240000px;}
.y9d{bottom:3.405000px;}
.ya0{bottom:3.412500px;}
.yed{bottom:3.420000px;}
.y10b{bottom:12.630000px;}
.y139{bottom:41.496000px;}
.y138{bottom:56.976000px;}
.y10c{bottom:57.889500px;}
.y13b{bottom:57.960000px;}
.y2{bottom:57.996000px;}
.y137{bottom:72.456000px;}
.y13a{bottom:76.860000px;}
.y1{bottom:76.896000px;}
.y136{bottom:87.936000px;}
.ya4{bottom:95.796000px;}
.y7f{bottom:96.156000px;}
.y123{bottom:97.695000px;}
.y59{bottom:99.756000px;}
.y135{bottom:103.641000px;}
.y107{bottom:106.236000px;}
.y39{bottom:108.936000px;}
.ya3{bottom:109.303500px;}
.y7e{bottom:111.636000px;}
.y122{bottom:113.355000px;}
.y58{bottom:115.416000px;}
.y134{bottom:117.427500px;}
.y106{bottom:121.896000px;}
.y38{bottom:124.416000px;}
.ya1{bottom:125.503500px;}
.y7d{bottom:127.296000px;}
.y57{bottom:130.896000px;}
.y133{bottom:132.907500px;}
.y105{bottom:137.376000px;}
.y37{bottom:140.076000px;}
.y9f{bottom:141.703500px;}
.y7c{bottom:142.776000px;}
.y56{bottom:146.376000px;}
.y132{bottom:148.387500px;}
.y104{bottom:152.850000px;}
.y36{bottom:155.730000px;}
.y9e{bottom:158.085000px;}
.y7b{bottom:158.250000px;}
.y55{bottom:161.850000px;}
.y131{bottom:164.047500px;}
.y103{bottom:168.510000px;}
.y35{bottom:171.570000px;}
.y7a{bottom:173.910000px;}
.y9c{bottom:174.285000px;}
.y54{bottom:177.510000px;}
.y102{bottom:183.990000px;}
.y34{bottom:187.050000px;}
.y79{bottom:189.390000px;}
.y9b{bottom:190.665000px;}
.y53{bottom:192.990000px;}
.y130{bottom:195.195000px;}
.y120{bottom:195.645000px;}
.y101{bottom:199.650000px;}
.y33{bottom:202.530000px;}
.y78{bottom:205.050000px;}
.ydc{bottom:206.850000px;}
.y9a{bottom:206.865000px;}
.y52{bottom:208.650000px;}
.y100{bottom:215.130000px;}
.y32{bottom:218.010000px;}
.y77{bottom:220.530000px;}
.y12f{bottom:221.490000px;}
.ydb{bottom:222.330000px;}
.y98{bottom:223.245000px;}
.y51{bottom:224.130000px;}
.yff{bottom:230.610000px;}
.y31{bottom:233.670000px;}
.y76{bottom:236.010000px;}
.y12e{bottom:237.150000px;}
.yda{bottom:237.810000px;}
.y96{bottom:239.445000px;}
.y50{bottom:239.790000px;}
.yfe{bottom:246.270000px;}
.y30{bottom:248.970000px;}
.y75{bottom:251.670000px;}
.y12d{bottom:252.450000px;}
.yd9{bottom:253.470000px;}
.y4f{bottom:255.450000px;}
.y95{bottom:259.050000px;}
.yfd{bottom:261.750000px;}
.y2f{bottom:264.450000px;}
.y74{bottom:267.150000px;}
.y4e{bottom:267.690000px;}
.yd8{bottom:269.130000px;}
.y94{bottom:274.350000px;}
.y2e{bottom:280.470000px;}
.y73{bottom:282.675000px;}
.yfc{bottom:283.215000px;}
.y12c{bottom:283.770000px;}
.yd7{bottom:284.655000px;}
.y93{bottom:290.235000px;}
.yfb{bottom:292.935000px;}
.y72{bottom:298.335000px;}
.y12b{bottom:299.430000px;}
.yd6{bottom:300.135000px;}
.y92{bottom:302.655000px;}
.y121{bottom:310.605000px;}
.y2d{bottom:311.655000px;}
.y71{bottom:313.815000px;}
.y12a{bottom:314.910000px;}
.yd5{bottom:315.795000px;}
.yfa{bottom:324.075000px;}
.y2c{bottom:327.135000px;}
.y70{bottom:329.295000px;}
.y129{bottom:330.570000px;}
.yd4{bottom:331.275000px;}
.yf9{bottom:339.555000px;}
.y2b{bottom:342.795000px;}
.y6f{bottom:344.955000px;}
.y128{bottom:345.690000px;}
.yd3{bottom:346.755000px;}
.yf8{bottom:355.035000px;}
.y124{bottom:355.050000px;}
.y2a{bottom:358.275000px;}
.y6e{bottom:360.075000px;}
.y127{bottom:361.350000px;}
.yd2{bottom:362.415000px;}
.yf7{bottom:370.695000px;}
.y29{bottom:373.755000px;}
.y6d{bottom:375.735000px;}
.y126{bottom:377.010000px;}
.yd1{bottom:377.895000px;}
.yf6{bottom:386.175000px;}
.y28{bottom:389.235000px;}
.y6c{bottom:391.395000px;}
.y125{bottom:392.520000px;}
.yd0{bottom:393.195000px;}
.yf5{bottom:401.835000px;}
.y27{bottom:404.895000px;}
.y6b{bottom:406.875000px;}
.y11f{bottom:408.195000px;}
.ycf{bottom:409.215000px;}
.yf4{bottom:417.315000px;}
.y26{bottom:420.375000px;}
.y11e{bottom:420.615000px;}
.yce{bottom:424.695000px;}
.yf3{bottom:432.795000px;}
.y25{bottom:435.855000px;}
.y6a{bottom:438.195000px;}
.ycd{bottom:440.175000px;}
.yf2{bottom:448.455000px;}
.y24{bottom:451.515000px;}
.y69{bottom:454.035000px;}
.ycc{bottom:455.835000px;}
.yf1{bottom:463.935000px;}
.y68{bottom:466.455000px;}
.y23{bottom:466.995000px;}
.ycb{bottom:471.315000px;}
.y91{bottom:473.115000px;}
.yf0{bottom:479.235000px;}
.y22{bottom:482.655000px;}
.yca{bottom:486.975000px;}
.y90{bottom:489.135000px;}
.yef{bottom:494.895000px;}
.y21{bottom:498.135000px;}
.y8f{bottom:501.375000px;}
.yc9{bottom:502.455000px;}
.yee{bottom:510.375000px;}
.y20{bottom:513.615000px;}
.yc8{bottom:517.935000px;}
.yec{bottom:523.695000px;}
.yc7{bottom:533.415000px;}
.y1f{bottom:544.395000px;}
.yeb{bottom:547.095000px;}
.yc6{bottom:549.075000px;}
.yc5{bottom:564.555000px;}
.yea{bottom:570.345000px;}
.y1e{bottom:575.565000px;}
.yc4{bottom:580.065000px;}
.ye8{bottom:593.565000px;}
.y1d{bottom:593.745000px;}
.yc3{bottom:595.725000px;}
.y1c{bottom:606.345000px;}
.yc2{bottom:611.205000px;}
.y67{bottom:616.065000px;}
.ye6{bottom:616.785000px;}
.yc1{bottom:626.865000px;}
.y66{bottom:631.725000px;}
.y1b{bottom:638.385000px;}
.yc0{bottom:642.345000px;}
.ye5{bottom:643.425000px;}
.y65{bottom:647.205000px;}
.y4d{bottom:649.185000px;}
.y1a{bottom:656.565000px;}
.ybf{bottom:657.825000px;}
.ye4{bottom:658.725000px;}
.y64{bottom:659.625000px;}
.y4c{bottom:664.665000px;}
.y19{bottom:672.045000px;}
.ybe{bottom:673.485000px;}
.ye3{bottom:674.565000px;}
.y4b{bottom:680.145000px;}
.ye2{bottom:686.985000px;}
.y18{bottom:687.705000px;}
.y8e{bottom:688.965000px;}
.y4a{bottom:695.625000px;}
.y11d{bottom:701.115000px;}
.ybd{bottom:704.445000px;}
.y8d{bottom:704.625000px;}
.y17{bottom:709.845000px;}
.y49{bottom:711.285000px;}
.y11c{bottom:717.135000px;}
.y8c{bottom:720.105000px;}
.ybc{bottom:725.865000px;}
.y48{bottom:726.765000px;}
.y11b{bottom:729.375000px;}
.ybb{bottom:735.585000px;}
.y8b{bottom:736.125000px;}
.y16{bottom:736.485000px;}
.y47{bottom:742.425000px;}
.yba{bottom:751.065000px;}
.y8a{bottom:751.605000px;}
.y15{bottom:752.145000px;}
.y46{bottom:757.905000px;}
.yb9{bottom:766.725000px;}
.y89{bottom:767.265000px;}
.y14{bottom:767.625000px;}
.y45{bottom:773.385000px;}
.yb8{bottom:782.205000px;}
.y88{bottom:782.925000px;}
.y63{bottom:785.445000px;}
.y44{bottom:788.865000px;}
.y87{bottom:795.165000px;}
.yb7{bottom:797.865000px;}
.y62{bottom:800.925000px;}
.y13{bottom:802.185000px;}
.y43{bottom:804.345000px;}
.yb6{bottom:813.345000px;}
.y61{bottom:816.405000px;}
.y42{bottom:820.005000px;}
.y12{bottom:823.785000px;}
.yb5{bottom:828.825000px;}
.y60{bottom:832.065000px;}
.y41{bottom:835.665000px;}
.yb4{bottom:844.305000px;}
.y5f{bottom:847.185000px;}
.y40{bottom:851.190000px;}
.yb3{bottom:860.010000px;}
.y11{bottom:860.730000px;}
.y5e{bottom:863.250000px;}
.y3f{bottom:863.610000px;}
.y10{bottom:867.930000px;}
.ye1{bottom:872.250000px;}
.yb2{bottom:875.490000px;}
.y5d{bottom:875.670000px;}
.ye0{bottom:887.730000px;}
.yb1{bottom:890.970000px;}
.yf{bottom:893.310000px;}
.ydf{bottom:903.390000px;}
.yb0{bottom:906.630000px;}
.yde{bottom:919.410000px;}
.yaf{bottom:922.110000px;}
.ydd{bottom:931.650000px;}
.ye{bottom:932.370000px;}
.yae{bottom:937.410000px;}
.yad{bottom:953.070000px;}
.yd{bottom:956.670000px;}
.y118{bottom:964.654500px;}
.y11a{bottom:966.825000px;}
.yac{bottom:968.910000px;}
.y117{bottom:982.669500px;}
.yab{bottom:984.570000px;}
.y119{bottom:990.544500px;}
.y116{bottom:998.149500px;}
.y86{bottom:999.870000px;}
.yaa{bottom:1000.050000px;}
.y115{bottom:1015.249500px;}
.y85{bottom:1015.350000px;}
.ya9{bottom:1015.530000px;}
.yc{bottom:1016.070000px;}
.y144{bottom:1020.390000px;}
.y114{bottom:1030.729500px;}
.y84{bottom:1030.830000px;}
.ya8{bottom:1031.010000px;}
.y9{bottom:1034.070000px;}
.y143{bottom:1035.870000px;}
.yb{bottom:1039.290000px;}
.y113{bottom:1046.389500px;}
.y83{bottom:1046.490000px;}
.y142{bottom:1051.350000px;}
.y8{bottom:1057.290000px;}
.y112{bottom:1061.509500px;}
.y82{bottom:1061.970000px;}
.ya7{bottom:1062.150000px;}
.y141{bottom:1066.830000px;}
.ya{bottom:1071.330000px;}
.y111{bottom:1077.169500px;}
.y81{bottom:1077.270000px;}
.ya6{bottom:1077.630000px;}
.y140{bottom:1082.310000px;}
.y7{bottom:1086.630000px;}
.y80{bottom:1092.930000px;}
.y110{bottom:1093.009500px;}
.ya5{bottom:1093.110000px;}
.y13f{bottom:1097.970000px;}
.y6{bottom:1105.710000px;}
.y10f{bottom:1108.669500px;}
.y5c{bottom:1108.770000px;}
.y13e{bottom:1113.450000px;}
.y5{bottom:1122.990000px;}
.y3e{bottom:1124.070000px;}
.y10e{bottom:1124.329500px;}
.y5b{bottom:1124.430000px;}
.y13d{bottom:1128.930000px;}
.y3d{bottom:1139.580000px;}
.y10d{bottom:1139.839500px;}
.y5a{bottom:1139.940000px;}
.y4{bottom:1140.300000px;}
.y13c{bottom:1144.410000px;}
.y10a{bottom:1156.080000px;}
.y3c{bottom:1156.140000px;}
.y3{bottom:1158.300000px;}
.y109{bottom:1175.160000px;}
.y3b{bottom:1175.220000px;}
.y108{bottom:1193.700000px;}
.y3a{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h15{height:15.465000px;}
.h18{height:15.472500px;}
.h16{height:15.645000px;}
.h17{height:15.652500px;}
.h1c{height:22.485000px;}
.h1a{height:22.500000px;}
.h1b{height:22.530000px;}
.hc{height:35.314453px;}
.h19{height:35.332031px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.hd{height:52.971680px;}
.h10{height:52.998047px;}
.he{height:54.421875px;}
.h1f{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h14{height:59.068031px;}
.h13{height:59.092031px;}
.h1e{height:59.812031px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h1d{height:96.528937px;}
.h0{height:1263.000000px;}
.w9{width:71.625000px;}
.wa{width:71.661000px;}
.wc{width:71.670000px;}
.w1{width:73.281000px;}
.w4{width:73.605000px;}
.w5{width:73.641000px;}
.w6{width:86.745000px;}
.wb{width:87.105000px;}
.w7{width:88.581000px;}
.w2{width:98.820000px;}
.w3{width:99.036000px;}
.w8{width:179.490000px;}
.w0{width:894.000000px;}
.x34{left:-496.650000px;}
.x30{left:-172.440000px;}
.x2f{left:-153.300000px;}
.x0{left:0.000000px;}
.x1f{left:7.725000px;}
.x2{left:30.060000px;}
.x35{left:34.905000px;}
.xc{left:46.800000px;}
.xe{left:50.400000px;}
.x8{left:51.660000px;}
.x39{left:53.910000px;}
.x3a{left:55.038000px;}
.x3b{left:61.320000px;}
.x38{left:82.590000px;}
.x3c{left:90.039000px;}
.x14{left:125.676000px;}
.x28{left:167.085000px;}
.x12{left:171.930000px;}
.x10{left:189.210000px;}
.x1e{left:199.485000px;}
.x27{left:232.230000px;}
.x5{left:244.155000px;}
.x32{left:250.380000px;}
.x29{left:256.035000px;}
.x25{left:257.835000px;}
.x3{left:270.255000px;}
.xa{left:273.315000px;}
.x18{left:283.395000px;}
.x4{left:290.595000px;}
.x1d{left:308.955000px;}
.x1a{left:327.135000px;}
.x16{left:335.415000px;}
.x9{left:345.135000px;}
.x20{left:372.495000px;}
.x37{left:407.235000px;}
.xd{left:412.485000px;}
.x2a{left:435.900000px;}
.x1{left:440.745000px;}
.x2e{left:444.045000px;}
.xb{left:449.205000px;}
.x36{left:452.955000px;}
.x21{left:471.900000px;}
.x6{left:478.905000px;}
.x7{left:506.445000px;}
.x2b{left:507.900000px;}
.x22{left:545.880000px;}
.x2c{left:579.930000px;}
.x23{left:619.890000px;}
.x2d{left:667.410000px;}
.x31{left:671.100000px;}
.x33{left:690.150000px;}
.xf{left:704.490000px;}
.x17{left:717.990000px;}
.x15{left:731.520000px;}
.x26{left:734.940000px;}
.x13{left:745.560000px;}
.x19{left:757.620000px;}
.x24{left:758.880000px;}
.x1b{left:774.900000px;}
.x1c{left:789.480000px;}
.x11{left:820.440000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-58.240000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-53.760000pt;}
.vc{vertical-align:-28.016000pt;}
.v4{vertical-align:-21.120000pt;}
.vd{vertical-align:-12.933333pt;}
.v8{vertical-align:-8.320000pt;}
.vb{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.320000pt;}
.v7{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.va{vertical-align:28.016000pt;}
.ls19{letter-spacing:-1.376000pt;}
.ls20{letter-spacing:-1.168000pt;}
.ls1f{letter-spacing:-1.072000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls13{letter-spacing:-0.656000pt;}
.ls16{letter-spacing:-0.624000pt;}
.ls23{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.624000pt;}
.ls1e{letter-spacing:0.656000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls1d{letter-spacing:0.736000pt;}
.ls24{letter-spacing:2.656000pt;}
.ls10{letter-spacing:2.720000pt;}
.ls4{letter-spacing:4.000000pt;}
.ls5{letter-spacing:4.106667pt;}
.ls1c{letter-spacing:6.560000pt;}
.ls1b{letter-spacing:7.200000pt;}
.ls22{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.lsf{letter-spacing:1096.746667pt;}
.ls21{letter-spacing:1143.200000pt;}
.ls7{letter-spacing:1215.146667pt;}
.ws17{word-spacing:-21.312000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.736000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws12{word-spacing:-12.624000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.192000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws1c{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.376000pt;}
.wsf{word-spacing:-11.344000pt;}
.ws13{word-spacing:-11.264000pt;}
.wsd{word-spacing:-11.136000pt;}
.ws15{word-spacing:-11.040000pt;}
.ws18{word-spacing:-10.928000pt;}
.ws19{word-spacing:-10.832000pt;}
.ws14{word-spacing:-10.624000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws1d{word-spacing:-8.704000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
.ws1b{word-spacing:1465.397333pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.408213pt;}
._7{width:2.863787pt;}
._8{width:4.236160pt;}
._e{width:5.263147pt;}
._d{width:6.922667pt;}
._b{width:7.824000pt;}
._10{width:8.879787pt;}
._a{width:9.840000pt;}
._c{width:10.752000pt;}
._9{width:13.599573pt;}
._5{width:19.248000pt;}
._6{width:20.218667pt;}
._12{width:677.450667pt;}
._11{width:925.706667pt;}
._f{width:976.602667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:2.546667pt;}
.ye7{bottom:2.560000pt;}
.y99{bottom:2.866667pt;}
.ya2{bottom:2.873333pt;}
.ye9{bottom:2.880000pt;}
.y9d{bottom:3.026667pt;}
.ya0{bottom:3.033333pt;}
.yed{bottom:3.040000pt;}
.y10b{bottom:11.226667pt;}
.y139{bottom:36.885333pt;}
.y138{bottom:50.645333pt;}
.y10c{bottom:51.457333pt;}
.y13b{bottom:51.520000pt;}
.y2{bottom:51.552000pt;}
.y137{bottom:64.405333pt;}
.y13a{bottom:68.320000pt;}
.y1{bottom:68.352000pt;}
.y136{bottom:78.165333pt;}
.ya4{bottom:85.152000pt;}
.y7f{bottom:85.472000pt;}
.y123{bottom:86.840000pt;}
.y59{bottom:88.672000pt;}
.y135{bottom:92.125333pt;}
.y107{bottom:94.432000pt;}
.y39{bottom:96.832000pt;}
.ya3{bottom:97.158667pt;}
.y7e{bottom:99.232000pt;}
.y122{bottom:100.760000pt;}
.y58{bottom:102.592000pt;}
.y134{bottom:104.380000pt;}
.y106{bottom:108.352000pt;}
.y38{bottom:110.592000pt;}
.ya1{bottom:111.558667pt;}
.y7d{bottom:113.152000pt;}
.y57{bottom:116.352000pt;}
.y133{bottom:118.140000pt;}
.y105{bottom:122.112000pt;}
.y37{bottom:124.512000pt;}
.y9f{bottom:125.958667pt;}
.y7c{bottom:126.912000pt;}
.y56{bottom:130.112000pt;}
.y132{bottom:131.900000pt;}
.y104{bottom:135.866667pt;}
.y36{bottom:138.426667pt;}
.y9e{bottom:140.520000pt;}
.y7b{bottom:140.666667pt;}
.y55{bottom:143.866667pt;}
.y131{bottom:145.820000pt;}
.y103{bottom:149.786667pt;}
.y35{bottom:152.506667pt;}
.y7a{bottom:154.586667pt;}
.y9c{bottom:154.920000pt;}
.y54{bottom:157.786667pt;}
.y102{bottom:163.546667pt;}
.y34{bottom:166.266667pt;}
.y79{bottom:168.346667pt;}
.y9b{bottom:169.480000pt;}
.y53{bottom:171.546667pt;}
.y130{bottom:173.506667pt;}
.y120{bottom:173.906667pt;}
.y101{bottom:177.466667pt;}
.y33{bottom:180.026667pt;}
.y78{bottom:182.266667pt;}
.ydc{bottom:183.866667pt;}
.y9a{bottom:183.880000pt;}
.y52{bottom:185.466667pt;}
.y100{bottom:191.226667pt;}
.y32{bottom:193.786667pt;}
.y77{bottom:196.026667pt;}
.y12f{bottom:196.880000pt;}
.ydb{bottom:197.626667pt;}
.y98{bottom:198.440000pt;}
.y51{bottom:199.226667pt;}
.yff{bottom:204.986667pt;}
.y31{bottom:207.706667pt;}
.y76{bottom:209.786667pt;}
.y12e{bottom:210.800000pt;}
.yda{bottom:211.386667pt;}
.y96{bottom:212.840000pt;}
.y50{bottom:213.146667pt;}
.yfe{bottom:218.906667pt;}
.y30{bottom:221.306667pt;}
.y75{bottom:223.706667pt;}
.y12d{bottom:224.400000pt;}
.yd9{bottom:225.306667pt;}
.y4f{bottom:227.066667pt;}
.y95{bottom:230.266667pt;}
.yfd{bottom:232.666667pt;}
.y2f{bottom:235.066667pt;}
.y74{bottom:237.466667pt;}
.y4e{bottom:237.946667pt;}
.yd8{bottom:239.226667pt;}
.y94{bottom:243.866667pt;}
.y2e{bottom:249.306667pt;}
.y73{bottom:251.266667pt;}
.yfc{bottom:251.746667pt;}
.y12c{bottom:252.240000pt;}
.yd7{bottom:253.026667pt;}
.y93{bottom:257.986667pt;}
.yfb{bottom:260.386667pt;}
.y72{bottom:265.186667pt;}
.y12b{bottom:266.160000pt;}
.yd6{bottom:266.786667pt;}
.y92{bottom:269.026667pt;}
.y121{bottom:276.093333pt;}
.y2d{bottom:277.026667pt;}
.y71{bottom:278.946667pt;}
.y12a{bottom:279.920000pt;}
.yd5{bottom:280.706667pt;}
.yfa{bottom:288.066667pt;}
.y2c{bottom:290.786667pt;}
.y70{bottom:292.706667pt;}
.y129{bottom:293.840000pt;}
.yd4{bottom:294.466667pt;}
.yf9{bottom:301.826667pt;}
.y2b{bottom:304.706667pt;}
.y6f{bottom:306.626667pt;}
.y128{bottom:307.280000pt;}
.yd3{bottom:308.226667pt;}
.yf8{bottom:315.586667pt;}
.y124{bottom:315.600000pt;}
.y2a{bottom:318.466667pt;}
.y6e{bottom:320.066667pt;}
.y127{bottom:321.200000pt;}
.yd2{bottom:322.146667pt;}
.yf7{bottom:329.506667pt;}
.y29{bottom:332.226667pt;}
.y6d{bottom:333.986667pt;}
.y126{bottom:335.120000pt;}
.yd1{bottom:335.906667pt;}
.yf6{bottom:343.266667pt;}
.y28{bottom:345.986667pt;}
.y6c{bottom:347.906667pt;}
.y125{bottom:348.906667pt;}
.yd0{bottom:349.506667pt;}
.yf5{bottom:357.186667pt;}
.y27{bottom:359.906667pt;}
.y6b{bottom:361.666667pt;}
.y11f{bottom:362.840000pt;}
.ycf{bottom:363.746667pt;}
.yf4{bottom:370.946667pt;}
.y26{bottom:373.666667pt;}
.y11e{bottom:373.880000pt;}
.yce{bottom:377.506667pt;}
.yf3{bottom:384.706667pt;}
.y25{bottom:387.426667pt;}
.y6a{bottom:389.506667pt;}
.ycd{bottom:391.266667pt;}
.yf2{bottom:398.626667pt;}
.y24{bottom:401.346667pt;}
.y69{bottom:403.586667pt;}
.ycc{bottom:405.186667pt;}
.yf1{bottom:412.386667pt;}
.y68{bottom:414.626667pt;}
.y23{bottom:415.106667pt;}
.ycb{bottom:418.946667pt;}
.y91{bottom:420.546667pt;}
.yf0{bottom:425.986667pt;}
.y22{bottom:429.026667pt;}
.yca{bottom:432.866667pt;}
.y90{bottom:434.786667pt;}
.yef{bottom:439.906667pt;}
.y21{bottom:442.786667pt;}
.y8f{bottom:445.666667pt;}
.yc9{bottom:446.626667pt;}
.yee{bottom:453.666667pt;}
.y20{bottom:456.546667pt;}
.yc8{bottom:460.386667pt;}
.yec{bottom:465.506667pt;}
.yc7{bottom:474.146667pt;}
.y1f{bottom:483.906667pt;}
.yeb{bottom:486.306667pt;}
.yc6{bottom:488.066667pt;}
.yc5{bottom:501.826667pt;}
.yea{bottom:506.973333pt;}
.y1e{bottom:511.613333pt;}
.yc4{bottom:515.613333pt;}
.ye8{bottom:527.613333pt;}
.y1d{bottom:527.773333pt;}
.yc3{bottom:529.533333pt;}
.y1c{bottom:538.973333pt;}
.yc2{bottom:543.293333pt;}
.y67{bottom:547.613333pt;}
.ye6{bottom:548.253333pt;}
.yc1{bottom:557.213333pt;}
.y66{bottom:561.533333pt;}
.y1b{bottom:567.453333pt;}
.yc0{bottom:570.973333pt;}
.ye5{bottom:571.933333pt;}
.y65{bottom:575.293333pt;}
.y4d{bottom:577.053333pt;}
.y1a{bottom:583.613333pt;}
.ybf{bottom:584.733333pt;}
.ye4{bottom:585.533333pt;}
.y64{bottom:586.333333pt;}
.y4c{bottom:590.813333pt;}
.y19{bottom:597.373333pt;}
.ybe{bottom:598.653333pt;}
.ye3{bottom:599.613333pt;}
.y4b{bottom:604.573333pt;}
.ye2{bottom:610.653333pt;}
.y18{bottom:611.293333pt;}
.y8e{bottom:612.413333pt;}
.y4a{bottom:618.333333pt;}
.y11d{bottom:623.213333pt;}
.ybd{bottom:626.173333pt;}
.y8d{bottom:626.333333pt;}
.y17{bottom:630.973333pt;}
.y49{bottom:632.253333pt;}
.y11c{bottom:637.453333pt;}
.y8c{bottom:640.093333pt;}
.ybc{bottom:645.213333pt;}
.y48{bottom:646.013333pt;}
.y11b{bottom:648.333333pt;}
.ybb{bottom:653.853333pt;}
.y8b{bottom:654.333333pt;}
.y16{bottom:654.653333pt;}
.y47{bottom:659.933333pt;}
.yba{bottom:667.613333pt;}
.y8a{bottom:668.093333pt;}
.y15{bottom:668.573333pt;}
.y46{bottom:673.693333pt;}
.yb9{bottom:681.533333pt;}
.y89{bottom:682.013333pt;}
.y14{bottom:682.333333pt;}
.y45{bottom:687.453333pt;}
.yb8{bottom:695.293333pt;}
.y88{bottom:695.933333pt;}
.y63{bottom:698.173333pt;}
.y44{bottom:701.213333pt;}
.y87{bottom:706.813333pt;}
.yb7{bottom:709.213333pt;}
.y62{bottom:711.933333pt;}
.y13{bottom:713.053333pt;}
.y43{bottom:714.973333pt;}
.yb6{bottom:722.973333pt;}
.y61{bottom:725.693333pt;}
.y42{bottom:728.893333pt;}
.y12{bottom:732.253333pt;}
.yb5{bottom:736.733333pt;}
.y60{bottom:739.613333pt;}
.y41{bottom:742.813333pt;}
.yb4{bottom:750.493333pt;}
.y5f{bottom:753.053333pt;}
.y40{bottom:756.613333pt;}
.yb3{bottom:764.453333pt;}
.y11{bottom:765.093333pt;}
.y5e{bottom:767.333333pt;}
.y3f{bottom:767.653333pt;}
.y10{bottom:771.493333pt;}
.ye1{bottom:775.333333pt;}
.yb2{bottom:778.213333pt;}
.y5d{bottom:778.373333pt;}
.ye0{bottom:789.093333pt;}
.yb1{bottom:791.973333pt;}
.yf{bottom:794.053333pt;}
.ydf{bottom:803.013333pt;}
.yb0{bottom:805.893333pt;}
.yde{bottom:817.253333pt;}
.yaf{bottom:819.653333pt;}
.ydd{bottom:828.133333pt;}
.ye{bottom:828.773333pt;}
.yae{bottom:833.253333pt;}
.yad{bottom:847.173333pt;}
.yd{bottom:850.373333pt;}
.y118{bottom:857.470667pt;}
.y11a{bottom:859.400000pt;}
.yac{bottom:861.253333pt;}
.y117{bottom:873.484000pt;}
.yab{bottom:875.173333pt;}
.y119{bottom:880.484000pt;}
.y116{bottom:887.244000pt;}
.y86{bottom:888.773333pt;}
.yaa{bottom:888.933333pt;}
.y115{bottom:902.444000pt;}
.y85{bottom:902.533333pt;}
.ya9{bottom:902.693333pt;}
.yc{bottom:903.173333pt;}
.y144{bottom:907.013333pt;}
.y114{bottom:916.204000pt;}
.y84{bottom:916.293333pt;}
.ya8{bottom:916.453333pt;}
.y9{bottom:919.173333pt;}
.y143{bottom:920.773333pt;}
.yb{bottom:923.813333pt;}
.y113{bottom:930.124000pt;}
.y83{bottom:930.213333pt;}
.y142{bottom:934.533333pt;}
.y8{bottom:939.813333pt;}
.y112{bottom:943.564000pt;}
.y82{bottom:943.973333pt;}
.ya7{bottom:944.133333pt;}
.y141{bottom:948.293333pt;}
.ya{bottom:952.293333pt;}
.y111{bottom:957.484000pt;}
.y81{bottom:957.573333pt;}
.ya6{bottom:957.893333pt;}
.y140{bottom:962.053333pt;}
.y7{bottom:965.893333pt;}
.y80{bottom:971.493333pt;}
.y110{bottom:971.564000pt;}
.ya5{bottom:971.653333pt;}
.y13f{bottom:975.973333pt;}
.y6{bottom:982.853333pt;}
.y10f{bottom:985.484000pt;}
.y5c{bottom:985.573333pt;}
.y13e{bottom:989.733333pt;}
.y5{bottom:998.213333pt;}
.y3e{bottom:999.173333pt;}
.y10e{bottom:999.404000pt;}
.y5b{bottom:999.493333pt;}
.y13d{bottom:1003.493333pt;}
.y3d{bottom:1012.960000pt;}
.y10d{bottom:1013.190667pt;}
.y5a{bottom:1013.280000pt;}
.y4{bottom:1013.600000pt;}
.y13c{bottom:1017.253333pt;}
.y10a{bottom:1027.626667pt;}
.y3c{bottom:1027.680000pt;}
.y3{bottom:1029.600000pt;}
.y109{bottom:1044.586667pt;}
.y3b{bottom:1044.640000pt;}
.y108{bottom:1061.066667pt;}
.y3a{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h15{height:13.746667pt;}
.h18{height:13.753333pt;}
.h16{height:13.906667pt;}
.h17{height:13.913333pt;}
.h1c{height:19.986667pt;}
.h1a{height:20.000000pt;}
.h1b{height:20.026667pt;}
.hc{height:31.390625pt;}
.h19{height:31.406250pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.hd{height:47.085938pt;}
.h10{height:47.109375pt;}
.he{height:48.375000pt;}
.h1f{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h14{height:52.504917pt;}
.h13{height:52.526250pt;}
.h1e{height:53.166250pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1d{height:85.803500pt;}
.h0{height:1122.666667pt;}
.w9{width:63.666667pt;}
.wa{width:63.698667pt;}
.wc{width:63.706667pt;}
.w1{width:65.138667pt;}
.w4{width:65.426667pt;}
.w5{width:65.458667pt;}
.w6{width:77.106667pt;}
.wb{width:77.426667pt;}
.w7{width:78.738667pt;}
.w2{width:87.840000pt;}
.w3{width:88.032000pt;}
.w8{width:159.546667pt;}
.w0{width:794.666667pt;}
.x34{left:-441.466667pt;}
.x30{left:-153.280000pt;}
.x2f{left:-136.266667pt;}
.x0{left:0.000000pt;}
.x1f{left:6.866667pt;}
.x2{left:26.720000pt;}
.x35{left:31.026667pt;}
.xc{left:41.600000pt;}
.xe{left:44.800000pt;}
.x8{left:45.920000pt;}
.x39{left:47.920000pt;}
.x3a{left:48.922667pt;}
.x3b{left:54.506667pt;}
.x38{left:73.413333pt;}
.x3c{left:80.034667pt;}
.x14{left:111.712000pt;}
.x28{left:148.520000pt;}
.x12{left:152.826667pt;}
.x10{left:168.186667pt;}
.x1e{left:177.320000pt;}
.x27{left:206.426667pt;}
.x5{left:217.026667pt;}
.x32{left:222.560000pt;}
.x29{left:227.586667pt;}
.x25{left:229.186667pt;}
.x3{left:240.226667pt;}
.xa{left:242.946667pt;}
.x18{left:251.906667pt;}
.x4{left:258.306667pt;}
.x1d{left:274.626667pt;}
.x1a{left:290.786667pt;}
.x16{left:298.146667pt;}
.x9{left:306.786667pt;}
.x20{left:331.106667pt;}
.x37{left:361.986667pt;}
.xd{left:366.653333pt;}
.x2a{left:387.466667pt;}
.x1{left:391.773333pt;}
.x2e{left:394.706667pt;}
.xb{left:399.293333pt;}
.x36{left:402.626667pt;}
.x21{left:419.466667pt;}
.x6{left:425.693333pt;}
.x7{left:450.173333pt;}
.x2b{left:451.466667pt;}
.x22{left:485.226667pt;}
.x2c{left:515.493333pt;}
.x23{left:551.013333pt;}
.x2d{left:593.253333pt;}
.x31{left:596.533333pt;}
.x33{left:613.466667pt;}
.xf{left:626.213333pt;}
.x17{left:638.213333pt;}
.x15{left:650.240000pt;}
.x26{left:653.280000pt;}
.x13{left:662.720000pt;}
.x19{left:673.440000pt;}
.x24{left:674.560000pt;}
.x1b{left:688.800000pt;}
.x1c{left:701.760000pt;}
.x11{left:729.280000pt;}
}




    .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; }
  