
    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_a7348d1e98005da09fc008f9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.992188;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_67779c15bcdd7104462b61c3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_dc75d655b57022fb01cad3a7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_09e08da84237d2dece993e98.woff')format("woff");}.ff4{font-family:ff4;line-height:4.335938;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_0de31ca9b02c81cc3856ae1f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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:-63.942300px;}
.v1{vertical-align:-32.340011px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:141.802875px;}
.lsa{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.014400px;}
.ls1{letter-spacing:19.757670px;}
.ls2{letter-spacing:19.757715px;}
.ls6{letter-spacing:19.762223px;}
.ls7{letter-spacing:19.762403px;}
.ls5{letter-spacing:146.644920px;}
.ls4{letter-spacing:237.079628px;}
.ls8{letter-spacing:876.127026px;}
.ls3{letter-spacing:896.706714px;}
.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;}
}
.ws7{word-spacing:-20.030400px;}
.ws6{word-spacing:-20.001600px;}
.ws1{word-spacing:-18.348004px;}
.ws2{word-spacing:-14.520003px;}
.ws3{word-spacing:-10.267191px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:233.603388px;}
.ws5{word-spacing:781.064988px;}
._f{margin-left:-999.575854px;}
._19{margin-left:-27.090653px;}
._b{margin-left:-8.774759px;}
._d{margin-left:-6.674241px;}
._20{margin-left:-5.648691px;}
._5{margin-left:-4.647279px;}
._0{margin-left:-3.275123px;}
._9{margin-left:-2.155646px;}
._2{margin-left:-1.022932px;}
._1{width:4.428082px;}
._1d{width:5.441451px;}
._4{width:8.897742px;}
._8{width:13.373657px;}
._6{width:17.026097px;}
._18{width:18.049344px;}
._10{width:19.725464px;}
._3{width:22.287151px;}
._c{width:23.293474px;}
._21{width:24.563971px;}
._11{width:25.830404px;}
._a{width:26.833591px;}
._22{width:30.212662px;}
._1e{width:31.359206px;}
._7{width:35.948438px;}
._1c{width:39.964976px;}
._13{width:42.164893px;}
._1f{width:44.504862px;}
._14{width:45.533682px;}
._1a{width:61.674914px;}
._12{width:66.704133px;}
._16{width:82.843134px;}
._17{width:100.041867px;}
._1b{width:169.861301px;}
._15{width:179.502569px;}
._e{width:981.179692px;}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:46.669050px;}
.fs5{font-size:59.999985px;}
.fs1{font-size:66.000015px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.000015px;}
.fs3{font-size:95.999985px;}
.fs2{font-size:120.000015px;}
.fs0{font-size:156.000015px;}
.y0{bottom:0.000000px;}
.y84{bottom:7.678676px;}
.y90{bottom:7.678826px;}
.y18e{bottom:11.052176px;}
.y1a6{bottom:11.052236px;}
.y18a{bottom:11.052326px;}
.y9c{bottom:11.053676px;}
.yae{bottom:11.053706px;}
.yac{bottom:11.053751px;}
.y82{bottom:11.053826px;}
.y19d{bottom:11.055026px;}
.y18c{bottom:11.055176px;}
.y188{bottom:11.372295px;}
.yfb{bottom:11.689414px;}
.y89{bottom:24.927176px;}
.y97{bottom:24.927326px;}
.ybd{bottom:28.302176px;}
.ya8{bottom:28.302326px;}
.yff{bottom:32.387614px;}
.ybc{bottom:45.550676px;}
.yb1{bottom:45.550826px;}
.y10b{bottom:60.342045px;}
.y9{bottom:60.342585px;}
.y55{bottom:60.342780px;}
.yc4{bottom:62.799326px;}
.yc3{bottom:80.047826px;}
.y1a7{bottom:110.308590px;}
.yad{bottom:113.158080px;}
.y146{bottom:115.059836px;}
.y10c{bottom:115.875000px;}
.y2f{bottom:116.648805px;}
.y7f{bottom:122.026594px;}
.y16a{bottom:129.400635px;}
.yf3{bottom:131.465318px;}
.yd0{bottom:134.804460px;}
.y145{bottom:136.878694px;}
.y2e{bottom:138.468195px;}
.y1c1{bottom:140.668950px;}
.y7e{bottom:143.845800px;}
.y1a5{bottom:144.433590px;}
.yab{bottom:147.281625px;}
.y169{bottom:148.374795px;}
.y11c{bottom:152.121795px;}
.yf2{bottom:153.284895px;}
.ycf{bottom:156.623317px;}
.y144{bottom:158.699002px;}
.y7d{bottom:165.665018px;}
.y11b{bottom:173.940645px;}
.y2d{bottom:174.477049px;}
.y1c0{bottom:174.792450px;}
.yce{bottom:178.442895px;}
.y1a4{bottom:178.555650px;}
.y143{bottom:180.516375px;}
.yaa{bottom:181.405200px;}
.y54{bottom:185.254695px;}
.y168{bottom:185.347395px;}
.yf1{bottom:186.987278px;}
.y7c{bottom:187.484595px;}
.y11a{bottom:195.759495px;}
.y1d5{bottom:198.637920px;}
.ycd{bottom:200.262495px;}
.y142{bottom:202.336695px;}
.y167{bottom:204.321495px;}
.y53{bottom:207.073987px;}
.y1be{bottom:208.915950px;}
.y7b{bottom:209.304195px;}
.y1a3{bottom:212.680650px;}
.ya9{bottom:215.528700px;}
.y119{bottom:217.579800px;}
.y1d4{bottom:220.459702px;}
.ycc{bottom:222.081345px;}
.y141{bottom:224.155545px;}
.y1bf{bottom:226.164600px;}
.y52{bottom:228.893587px;}
.y7a{bottom:231.123345px;}
.y2c{bottom:238.959195px;}
.y118{bottom:239.399355px;}
.y166{bottom:241.294245px;}
.y1d3{bottom:242.277075px;}
.yf0{bottom:242.841045px;}
.ycb{bottom:243.900945px;}
.y140{bottom:245.975899px;}
.y1a2{bottom:246.802800px;}
.ya7{bottom:249.652200px;}
.y51{bottom:250.712737px;}
.y79{bottom:252.942645px;}
.y165{bottom:260.268345px;}
.y1bd{bottom:260.288100px;}
.y2b{bottom:260.778600px;}
.y117{bottom:261.218201px;}
.y1d2{bottom:264.097395px;}
.yef{bottom:264.660645px;}
.ya6{bottom:266.900700px;}
.y13f{bottom:267.794745px;}
.y50{bottom:272.532337px;}
.yca{bottom:273.449644px;}
.y78{bottom:274.762245px;}
.y164{bottom:279.240945px;}
.y1a1{bottom:280.927800px;}
.y2a{bottom:282.597998px;}
.y116{bottom:283.037047px;}
.y1d1{bottom:285.917745px;}
.yee{bottom:286.480245px;}
.y13e{bottom:289.614945px;}
.y4f{bottom:294.351555px;}
.y1bc{bottom:294.411600px;}
.y77{bottom:296.581838px;}
.ya5{bottom:301.024350px;}
.y29{bottom:304.417395px;}
.y115{bottom:304.856625px;}
.y1d0{bottom:307.736595px;}
.yed{bottom:308.299845px;}
.y13d{bottom:311.433836px;}
.y19f{bottom:315.049800px;}
.y4e{bottom:316.171144px;}
.y163{bottom:316.215045px;}
.y76{bottom:318.400987px;}
.yc9{bottom:323.490195px;}
.y28{bottom:326.236845px;}
.y114{bottom:326.676945px;}
.y1bb{bottom:328.535100px;}
.y1cf{bottom:329.555445px;}
.y1a0{bottom:332.299800px;}
.y13c{bottom:333.252694px;}
.ya4{bottom:335.147850px;}
.y162{bottom:335.187795px;}
.y4d{bottom:337.990350px;}
.y75{bottom:340.220250px;}
.yec{bottom:342.002228px;}
.yc8{bottom:345.309795px;}
.y1ce{bottom:346.157250px;}
.y27{bottom:348.056145px;}
.y113{bottom:348.496500px;}
.y161{bottom:354.161895px;}
.y13b{bottom:355.073002px;}
.y183{bottom:358.986349px;}
.y4c{bottom:359.809927px;}
.yc7{bottom:361.911600px;}
.y74{bottom:362.039805px;}
.y1b9{bottom:362.658750px;}
.y19c{bottom:366.421950px;}
.ya3{bottom:369.271350px;}
.y26{bottom:369.875603px;}
.y13a{bottom:376.891849px;}
.y1ba{bottom:379.907250px;}
.y1cd{bottom:380.280750px;}
.y4b{bottom:381.629145px;}
.y19e{bottom:383.671950px;}
.y73{bottom:383.859394px;}
.y160{bottom:391.134495px;}
.y25{bottom:391.695000px;}
.yc6{bottom:396.035100px;}
.y139{bottom:398.710695px;}
.yeb{bottom:403.045849px;}
.ya2{bottom:403.394850px;}
.y72{bottom:405.678600px;}
.y24{bottom:413.514398px;}
.y1b8{bottom:414.030750px;}
.y1cc{bottom:414.404250px;}
.y4a{bottom:415.331527px;}
.y19a{bottom:417.793950px;}
.y138{bottom:420.531045px;}
.y182{bottom:423.469545px;}
.y71{bottom:427.497818px;}
.y15f{bottom:428.108595px;}
.yc5{bottom:430.158750px;}
.y19b{bottom:435.043950px;}
.y23{bottom:435.333795px;}
.ya1{bottom:437.518500px;}
.y137{bottom:442.349790px;}
.y181{bottom:445.289745px;}
.y15e{bottom:447.081345px;}
.y1b7{bottom:448.154250px;}
.y1cb{bottom:448.527900px;}
.y70{bottom:449.317395px;}
.y22{bottom:457.153245px;}
.y136{bottom:464.170099px;}
.yc2{bottom:464.282250px;}
.y15d{bottom:466.055445px;}
.y180{bottom:467.108595px;}
.yea{bottom:467.527545px;}
.y199{bottom:469.165950px;}
.y6f{bottom:471.136995px;}
.ya0{bottom:471.642000px;}
.y49{bottom:476.375449px;}
.y21{bottom:478.972545px;}
.y1b6{bottom:482.277900px;}
.y1c9{bottom:482.651400px;}
.y135{bottom:485.988945px;}
.y6e{bottom:492.956137px;}
.ye9{bottom:496.735800px;}
.ye8{bottom:496.735950px;}
.y1ca{bottom:499.899900px;}
.y20{bottom:500.791995px;}
.y15c{bottom:503.028045px;}
.y198{bottom:503.290950px;}
.y17f{bottom:504.082695px;}
.y9f{bottom:505.765500px;}
.y134{bottom:507.809295px;}
.y112{bottom:513.463650px;}
.y6d{bottom:514.775400px;}
.y1b5{bottom:516.401400px;}
.y15b{bottom:522.002145px;}
.y1f{bottom:522.611445px;}
.y17e{bottom:523.055445px;}
.y133{bottom:529.626645px;}
.yc1{bottom:533.276400px;}
.y1c8{bottom:534.023400px;}
.ye7{bottom:534.207300px;}
.ye6{bottom:534.208039px;}
.y6c{bottom:536.595000px;}
.y196{bottom:537.413100px;}
.y9e{bottom:539.889000px;}
.y48{bottom:540.857595px;}
.y1e{bottom:544.430752px;}
.y1b4{bottom:550.524900px;}
.y132{bottom:551.446995px;}
.y197{bottom:554.663100px;}
.y6b{bottom:558.414555px;}
.y15a{bottom:558.974895px;}
.y17d{bottom:560.028045px;}
.y47{bottom:562.677105px;}
.y1d{bottom:566.250150px;}
.yc0{bottom:567.399900px;}
.y1c7{bottom:568.146900px;}
.ye5{bottom:571.216545px;}
.y131{bottom:573.265800px;}
.y9d{bottom:574.012500px;}
.y6a{bottom:580.233761px;}
.y10a{bottom:582.824700px;}
.y46{bottom:584.496502px;}
.y1b3{bottom:584.648400px;}
.y1c{bottom:588.069547px;}
.y195{bottom:588.785100px;}
.y130{bottom:595.086187px;}
.y159{bottom:595.948995px;}
.y17c{bottom:597.002145px;}
.ybf{bottom:601.523400px;}
.y69{bottom:602.052990px;}
.y1c6{bottom:602.270550px;}
.y109{bottom:604.644300px;}
.y45{bottom:606.315900px;}
.y9b{bottom:608.136150px;}
.ye3{bottom:608.324089px;}
.ye4{bottom:608.324700px;}
.y1b{bottom:609.888945px;}
.y158{bottom:614.921595px;}
.y12f{bottom:616.905000px;}
.y1b1{bottom:618.772050px;}
.y194{bottom:622.910100px;}
.y68{bottom:623.872567px;}
.y108{bottom:626.463855px;}
.y44{bottom:628.135297px;}
.y17b{bottom:633.976245px;}
.ybe{bottom:635.646900px;}
.y1b2{bottom:636.020550px;}
.y1c5{bottom:636.394050px;}
.y157{bottom:636.740445px;}
.y12e{bottom:638.725286px;}
.y9a{bottom:642.259650px;}
.ye2{bottom:645.332445px;}
.y67{bottom:645.692145px;}
.y1a{bottom:645.897799px;}
.y107{bottom:648.283444px;}
.y43{bottom:649.954695px;}
.y98{bottom:650.883900px;}
.y193{bottom:657.032250px;}
.y99{bottom:659.508150px;}
.y12d{bottom:660.544144px;}
.ybb{bottom:669.770550px;}
.y106{bottom:670.102290px;}
.y1b0{bottom:670.144050px;}
.y1c4{bottom:670.517550px;}
.y17a{bottom:670.948995px;}
.y42{bottom:671.773995px;}
.y156{bottom:672.750049px;}
.ye1{bottom:674.540700px;}
.ye0{bottom:674.540850px;}
.y66{bottom:675.241294px;}
.y8{bottom:679.658899px;}
.y12c{bottom:682.362990px;}
.y96{bottom:686.881650px;}
.y192{bottom:691.157250px;}
.y105{bottom:691.921867px;}
.y41{bottom:693.593452px;}
.y94{bottom:695.506050px;}
.yde{bottom:704.111700px;}
.ydf{bottom:704.112300px;}
.y95{bottom:704.130300px;}
.y12b{bottom:704.183299px;}
.yba{bottom:704.267550px;}
.y1c3{bottom:704.641050px;}
.y179{bottom:707.921595px;}
.y19{bottom:710.379945px;}
.y104{bottom:713.741445px;}
.y40{bottom:715.412850px;}
.y191{bottom:725.279250px;}
.y65{bottom:725.281545px;}
.y12a{bottom:726.002145px;}
.y93{bottom:731.503800px;}
.y18{bottom:732.199395px;}
.y103{bottom:735.560295px;}
.y155{bottom:737.231745px;}
.y3f{bottom:737.232247px;}
.yb9{bottom:738.391050px;}
.y1c2{bottom:738.764700px;}
.y91{bottom:740.128050px;}
.ydb{bottom:741.583789px;}
.ydd{bottom:741.583800px;}
.y178{bottom:744.895695px;}
.y64{bottom:747.100995px;}
.y92{bottom:748.752300px;}
.y7{bottom:749.330599px;}
.y17{bottom:754.018845px;}
.y129{bottom:755.550244px;}
.y102{bottom:757.379895px;}
.y3e{bottom:759.051645px;}
.y154{bottom:759.051945px;}
.y190{bottom:759.404250px;}
.ydc{bottom:761.048944px;}
.y177{bottom:763.869795px;}
.y63{bottom:768.920295px;}
.yb8{bottom:772.514700px;}
.y1af{bottom:772.888200px;}
.y16{bottom:775.838175px;}
.y8f{bottom:776.125800px;}
.yda{bottom:778.591545px;}
.y101{bottom:779.199495px;}
.y153{bottom:780.870795px;}
.y3d{bottom:780.871095px;}
.y176{bottom:782.842545px;}
.y62{bottom:790.739895px;}
.y18f{bottom:793.526400px;}
.yfe{bottom:795.801300px;}
.y15{bottom:797.657663px;}
.yd9{bottom:800.411145px;}
.y175{bottom:801.815145px;}
.y3c{bottom:802.690395px;}
.y152{bottom:802.691175px;}
.y8e{bottom:803.499450px;}
.y128{bottom:805.591545px;}
.yb7{bottom:806.638200px;}
.y1ae{bottom:807.011700px;}
.y61{bottom:812.559150px;}
.y6{bottom:819.002149px;}
.y14{bottom:819.477037px;}
.y100{bottom:819.949200px;}
.y174{bottom:820.789245px;}
.yd8{bottom:822.230644px;}
.y151{bottom:824.508525px;}
.y3b{bottom:824.509747px;}
.y127{bottom:827.411925px;}
.y18d{bottom:827.651400px;}
.y8d{bottom:830.872950px;}
.y60{bottom:834.378727px;}
.y8b{bottom:839.497200px;}
.y173{bottom:839.763495px;}
.yb6{bottom:840.761700px;}
.y1ad{bottom:841.135200px;}
.y13{bottom:841.296412px;}
.yd7{bottom:844.050210px;}
.y150{bottom:846.328912px;}
.y3a{bottom:846.329145px;}
.y8c{bottom:848.121450px;}
.y126{bottom:849.230737px;}
.yfd{bottom:854.072700px;}
.y5f{bottom:856.197945px;}
.y172{bottom:858.736095px;}
.y18b{bottom:861.773400px;}
.y12{bottom:863.115787px;}
.yd6{bottom:865.869799px;}
.yfa{bottom:867.871650px;}
.y39{bottom:868.148595px;}
.y14f{bottom:868.149187px;}
.y111{bottom:868.149195px;}
.y125{bottom:871.049550px;}
.yfc{bottom:871.321350px;}
.yb5{bottom:874.885200px;}
.y1ac{bottom:875.258850px;}
.y8a{bottom:875.494950px;}
.y171{bottom:877.708695px;}
.y5e{bottom:878.017395px;}
.y5{bottom:883.484445px;}
.y11{bottom:884.935162px;}
.yd5{bottom:887.688645px;}
.y14e{bottom:889.968000px;}
.y38{bottom:889.968045px;}
.y124{bottom:892.869937px;}
.y189{bottom:895.898400px;}
.y170{bottom:896.682795px;}
.y5d{bottom:899.836650px;}
.y88{bottom:902.868600px;}
.y4{bottom:905.303895px;}
.y10{bottom:906.754605px;}
.yb4{bottom:909.008850px;}
.y1ab{bottom:909.382350px;}
.yd4{bottom:909.508245px;}
.y86{bottom:911.492850px;}
.y14d{bottom:911.786812px;}
.y110{bottom:911.786895px;}
.y37{bottom:911.787397px;}
.yf9{bottom:911.787667px;}
.y123{bottom:914.689425px;}
.y16f{bottom:915.657045px;}
.y87{bottom:920.117100px;}
.y5c{bottom:921.656205px;}
.yf{bottom:928.574003px;}
.y187{bottom:930.020550px;}
.y36{bottom:933.606795px;}
.y14c{bottom:933.607200px;}
.yf8{bottom:933.607245px;}
.y16e{bottom:934.629645px;}
.y122{bottom:936.508305px;}
.y3{bottom:940.272187px;}
.yb3{bottom:943.132350px;}
.yd3{bottom:943.210627px;}
.y5b{bottom:943.475411px;}
.y1aa{bottom:943.505850px;}
.y85{bottom:947.490600px;}
.ye{bottom:950.393400px;}
.yf7{bottom:955.426095px;}
.y35{bottom:955.426245px;}
.y10f{bottom:955.426725px;}
.y14b{bottom:955.427486px;}
.y121{bottom:958.327151px;}
.y5a{bottom:965.295000px;}
.y16d{bottom:971.602245px;}
.yd{bottom:972.212797px;}
.y186{bottom:972.213199px;}
.y83{bottom:974.864100px;}
.y14a{bottom:977.244870px;}
.yf6{bottom:977.245605px;}
.y34{bottom:977.245650px;}
.yb2{bottom:977.255850px;}
.y1a9{bottom:977.629350px;}
.y120{bottom:980.146740px;}
.y59{bottom:987.114217px;}
.y16c{bottom:990.576345px;}
.y2{bottom:991.845338px;}
.y185{bottom:994.032045px;}
.yc{bottom:994.032195px;}
.y10e{bottom:999.064451px;}
.y33{bottom:999.065047px;}
.yd2{bottom:999.065145px;}
.y149{bottom:999.065190px;}
.yf5{bottom:999.065194px;}
.y11f{bottom:1001.967049px;}
.y81{bottom:1002.237600px;}
.y58{bottom:1008.933795px;}
.yb0{bottom:1011.379350px;}
.y1a8{bottom:1011.753000px;}
.yb{bottom:1015.851495px;}
.y184{bottom:1015.852245px;}
.yd1{bottom:1020.883995px;}
.y148{bottom:1020.884025px;}
.yf4{bottom:1020.884040px;}
.y32{bottom:1020.884445px;}
.y11e{bottom:1023.785895px;}
.y16b{bottom:1027.550595px;}
.y57{bottom:1030.753095px;}
.y80{bottom:1042.703618px;}
.y31{bottom:1042.703745px;}
.y147{bottom:1042.704345px;}
.y10d{bottom:1042.704349px;}
.y1{bottom:1043.418454px;}
.yaf{bottom:1045.876500px;}
.ya{bottom:1051.860353px;}
.y11d{bottom:1057.488278px;}
.y56{bottom:1060.302240px;}
.y30{bottom:1064.523195px;}
.h9{height:26.248500px;}
.hc{height:26.248650px;}
.h1f{height:32.997000px;}
.h21{height:32.997060px;}
.h1d{height:32.997150px;}
.he{height:32.998500px;}
.h11{height:32.998530px;}
.h10{height:32.998575px;}
.h7{height:32.998650px;}
.h1e{height:33.000000px;}
.h1c{height:34.724100px;}
.h18{height:36.448200px;}
.hb{height:43.497000px;}
.hd{height:43.497150px;}
.h8{height:43.681630px;}
.ha{height:46.904285px;}
.h1b{height:48.049816px;}
.h20{height:50.247000px;}
.hf{height:50.247150px;}
.h2{height:51.594738px;}
.h19{height:52.417969px;}
.h1a{height:57.146400px;}
.h6{height:60.128917px;}
.h13{height:67.495500px;}
.h12{height:67.495650px;}
.h5{height:75.046863px;}
.h3{height:93.808605px;}
.h14{height:101.992650px;}
.h4{height:108.000000px;}
.h16{height:114.507801px;}
.h1{height:121.951184px;}
.h15{height:161.938513px;}
.h17{height:192.368376px;}
.h0{height:1188.000000px;}
.wc{width:48.375000px;}
.we{width:56.250000px;}
.w9{width:60.750000px;}
.w8{width:65.250000px;}
.wb{width:69.750000px;}
.w7{width:84.375000px;}
.wa{width:92.250000px;}
.wd{width:96.750000px;}
.wf{width:106.875000px;}
.w3{width:114.750000px;}
.w2{width:115.875000px;}
.w1{width:174.375000px;}
.w10{width:181.125000px;}
.w5{width:231.750000px;}
.w4{width:292.500000px;}
.w6{width:700.875000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2e{left:6.885381px;}
.x2d{left:8.162979px;}
.x8{left:10.316926px;}
.x51{left:11.626445px;}
.x1e{left:12.753487px;}
.x2a{left:13.994444px;}
.x13{left:15.228081px;}
.x4f{left:17.033272px;}
.x16{left:18.280056px;}
.x30{left:19.825920px;}
.x21{left:21.805403px;}
.x1b{left:22.874209px;}
.x52{left:24.127673px;}
.x22{left:25.553936px;}
.x1d{left:27.364725px;}
.x20{left:28.620349px;}
.x25{left:30.706931px;}
.x18{left:32.744452px;}
.x19{left:34.831046px;}
.x27{left:35.975903px;}
.x14{left:37.353285px;}
.x50{left:38.613994px;}
.xd{left:40.134431px;}
.xc{left:41.199593px;}
.x1a{left:42.783514px;}
.x10{left:44.866451px;}
.x11{left:45.984206px;}
.x2f{left:47.444726px;}
.x17{left:48.647824px;}
.x23{left:50.508765px;}
.xf{left:51.625530px;}
.x1c{left:54.642668px;}
.x6{left:57.888641px;}
.x24{left:59.960588px;}
.x28{left:61.201552px;}
.x12{left:62.870828px;}
.x26{left:65.788391px;}
.x29{left:67.871318px;}
.x53{left:71.238994px;}
.x32{left:72.461824px;}
.x2c{left:73.706456px;}
.x15{left:75.793039px;}
.x31{left:95.257935px;}
.xb{left:97.373812px;}
.x2b{left:100.675732px;}
.x1{left:108.000000px;}
.x5{left:109.125000px;}
.xe{left:145.687500px;}
.x4{left:162.000000px;}
.x36{left:164.319900px;}
.x3f{left:194.625000px;}
.x4c{left:217.125000px;}
.x40{left:261.000000px;}
.x2{left:282.375000px;}
.x7{left:284.625000px;}
.x1f{left:318.762900px;}
.x39{left:320.737050px;}
.x41{left:322.875000px;}
.x33{left:331.765538px;}
.x4d{left:334.125000px;}
.x35{left:390.892170px;}
.x34{left:392.465179px;}
.x9{left:401.625000px;}
.x3c{left:407.790300px;}
.x3a{left:409.727959px;}
.x42{left:416.250000px;}
.x3e{left:422.340150px;}
.x49{left:438.750000px;}
.x3d{left:441.579563px;}
.x37{left:453.383550px;}
.x43{left:487.125000px;}
.x3b{left:510.209663px;}
.xa{left:517.500000px;}
.x44{left:536.625000px;}
.x48{left:596.250000px;}
.x38{left:597.263063px;}
.x45{left:598.500000px;}
.x4e{left:624.375000px;}
.x46{left:696.375000px;}
.x47{left:781.875000px;}
.x4a{left:791.660025px;}
.x4b{left:792.884588px;}
.x3{left:800.830013px;}
@media print{
.v2{vertical-align:-56.837600pt;}
.v1{vertical-align:-28.746676pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:126.047000pt;}
.lsa{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.012800pt;}
.ls1{letter-spacing:17.562374pt;}
.ls2{letter-spacing:17.562414pt;}
.ls6{letter-spacing:17.566420pt;}
.ls7{letter-spacing:17.566580pt;}
.ls5{letter-spacing:130.351040pt;}
.ls4{letter-spacing:210.737447pt;}
.ls8{letter-spacing:778.779579pt;}
.ls3{letter-spacing:797.072635pt;}
.ws7{word-spacing:-17.804800pt;}
.ws6{word-spacing:-17.779200pt;}
.ws1{word-spacing:-16.309337pt;}
.ws2{word-spacing:-12.906670pt;}
.ws3{word-spacing:-9.126392pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:207.647456pt;}
.ws5{word-spacing:694.279989pt;}
._f{margin-left:-888.511870pt;}
._19{margin-left:-24.080580pt;}
._b{margin-left:-7.799786pt;}
._d{margin-left:-5.932659pt;}
._20{margin-left:-5.021059pt;}
._5{margin-left:-4.130915pt;}
._0{margin-left:-2.911221pt;}
._9{margin-left:-1.916130pt;}
._2{margin-left:-0.909273pt;}
._1{width:3.936073pt;}
._1d{width:4.836845pt;}
._4{width:7.909104pt;}
._8{width:11.887695pt;}
._6{width:15.134309pt;}
._18{width:16.043861pt;}
._10{width:17.533745pt;}
._3{width:19.810801pt;}
._c{width:20.705310pt;}
._21{width:21.834641pt;}
._11{width:22.960359pt;}
._a{width:23.852081pt;}
._22{width:26.855700pt;}
._1e{width:27.874850pt;}
._7{width:31.954167pt;}
._1c{width:35.524423pt;}
._13{width:37.479905pt;}
._1f{width:39.559877pt;}
._14{width:40.474384pt;}
._1a{width:54.822146pt;}
._12{width:59.292563pt;}
._16{width:73.638341pt;}
._17{width:88.926104pt;}
._1b{width:150.987823pt;}
._15{width:159.557839pt;}
._e{width:872.159726pt;}
.fs6{font-size:41.483600pt;}
.fs5{font-size:53.333320pt;}
.fs1{font-size:58.666680pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.666680pt;}
.fs3{font-size:85.333320pt;}
.fs2{font-size:106.666680pt;}
.fs0{font-size:138.666680pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.825490pt;}
.y90{bottom:6.825623pt;}
.y18e{bottom:9.824157pt;}
.y1a6{bottom:9.824210pt;}
.y18a{bottom:9.824290pt;}
.y9c{bottom:9.825490pt;}
.yae{bottom:9.825517pt;}
.yac{bottom:9.825557pt;}
.y82{bottom:9.825623pt;}
.y19d{bottom:9.826690pt;}
.y18c{bottom:9.826823pt;}
.y188{bottom:10.108707pt;}
.yfb{bottom:10.390590pt;}
.y89{bottom:22.157490pt;}
.y97{bottom:22.157623pt;}
.ybd{bottom:25.157490pt;}
.ya8{bottom:25.157623pt;}
.yff{bottom:28.788990pt;}
.ybc{bottom:40.489490pt;}
.yb1{bottom:40.489623pt;}
.y10b{bottom:53.637373pt;}
.y9{bottom:53.637853pt;}
.y55{bottom:53.638027pt;}
.yc4{bottom:55.821623pt;}
.yc3{bottom:71.153623pt;}
.y1a7{bottom:98.052080pt;}
.yad{bottom:100.584960pt;}
.y146{bottom:102.275410pt;}
.y10c{bottom:103.000000pt;}
.y2f{bottom:103.687827pt;}
.y7f{bottom:108.468083pt;}
.y16a{bottom:115.022787pt;}
.yf3{bottom:116.858060pt;}
.yd0{bottom:119.826187pt;}
.y145{bottom:121.669950pt;}
.y2e{bottom:123.082840pt;}
.y1c1{bottom:125.039067pt;}
.y7e{bottom:127.862933pt;}
.y1a5{bottom:128.385413pt;}
.yab{bottom:130.917000pt;}
.y169{bottom:131.888707pt;}
.y11c{bottom:135.219373pt;}
.yf2{bottom:136.253240pt;}
.ycf{bottom:139.220727pt;}
.y144{bottom:141.065780pt;}
.y7d{bottom:147.257793pt;}
.y11b{bottom:154.613907pt;}
.y2d{bottom:155.090710pt;}
.y1c0{bottom:155.371067pt;}
.yce{bottom:158.615907pt;}
.y1a4{bottom:158.716133pt;}
.y143{bottom:160.459000pt;}
.yaa{bottom:161.249067pt;}
.y54{bottom:164.670840pt;}
.y168{bottom:164.753240pt;}
.yf1{bottom:166.210913pt;}
.y7c{bottom:166.652973pt;}
.y11a{bottom:174.008440pt;}
.y1d5{bottom:176.567040pt;}
.ycd{bottom:178.011107pt;}
.y142{bottom:179.854840pt;}
.y167{bottom:181.619107pt;}
.y53{bottom:184.065767pt;}
.y1be{bottom:185.703067pt;}
.y7b{bottom:186.048173pt;}
.y1a3{bottom:189.049467pt;}
.ya9{bottom:191.581067pt;}
.y119{bottom:193.404267pt;}
.y1d4{bottom:195.964180pt;}
.ycc{bottom:197.405640pt;}
.y141{bottom:199.249373pt;}
.y1bf{bottom:201.035200pt;}
.y52{bottom:203.460967pt;}
.y7a{bottom:205.442973pt;}
.y2c{bottom:212.408173pt;}
.y118{bottom:212.799427pt;}
.y166{bottom:214.483773pt;}
.y1d3{bottom:215.357400pt;}
.yf0{bottom:215.858707pt;}
.ycb{bottom:216.800840pt;}
.y140{bottom:218.645243pt;}
.y1a2{bottom:219.380267pt;}
.ya7{bottom:221.913067pt;}
.y51{bottom:222.855767pt;}
.y79{bottom:224.837907pt;}
.y165{bottom:231.349640pt;}
.y1bd{bottom:231.367200pt;}
.y2b{bottom:231.803200pt;}
.y117{bottom:232.193957pt;}
.y1d2{bottom:234.753240pt;}
.yef{bottom:235.253907pt;}
.ya6{bottom:237.245067pt;}
.y13f{bottom:238.039773pt;}
.y50{bottom:242.250967pt;}
.yca{bottom:243.066350pt;}
.y78{bottom:244.233107pt;}
.y164{bottom:248.214173pt;}
.y1a1{bottom:249.713600pt;}
.y2a{bottom:251.198220pt;}
.y116{bottom:251.588487pt;}
.y1d1{bottom:254.149107pt;}
.yee{bottom:254.649107pt;}
.y13e{bottom:257.435507pt;}
.y4f{bottom:261.645827pt;}
.y1bc{bottom:261.699200pt;}
.y77{bottom:263.628300pt;}
.ya5{bottom:267.577200pt;}
.y29{bottom:270.593240pt;}
.y115{bottom:270.983667pt;}
.y1d0{bottom:273.543640pt;}
.yed{bottom:274.044307pt;}
.y13d{bottom:276.830077pt;}
.y19f{bottom:280.044267pt;}
.y4e{bottom:281.041017pt;}
.y163{bottom:281.080040pt;}
.y76{bottom:283.023100pt;}
.yc9{bottom:287.546840pt;}
.y28{bottom:289.988307pt;}
.y114{bottom:290.379507pt;}
.y1bb{bottom:292.031200pt;}
.y1cf{bottom:292.938173pt;}
.y1a0{bottom:295.377600pt;}
.y13c{bottom:296.224617pt;}
.ya4{bottom:297.909200pt;}
.y162{bottom:297.944707pt;}
.y4d{bottom:300.435867pt;}
.y75{bottom:302.418000pt;}
.yec{bottom:304.001980pt;}
.yc8{bottom:306.942040pt;}
.y1ce{bottom:307.695333pt;}
.y27{bottom:309.383240pt;}
.y113{bottom:309.774667pt;}
.y161{bottom:314.810573pt;}
.y13b{bottom:315.620447pt;}
.y183{bottom:319.098977pt;}
.y4c{bottom:319.831047pt;}
.yc7{bottom:321.699200pt;}
.y74{bottom:321.813160pt;}
.y1b9{bottom:322.363333pt;}
.y19c{bottom:325.708400pt;}
.ya3{bottom:328.241200pt;}
.y26{bottom:328.778313pt;}
.y13a{bottom:335.014977pt;}
.y1ba{bottom:337.695333pt;}
.y1cd{bottom:338.027333pt;}
.y4b{bottom:339.225907pt;}
.y19e{bottom:341.041733pt;}
.y73{bottom:341.208350pt;}
.y160{bottom:347.675107pt;}
.y25{bottom:348.173333pt;}
.yc6{bottom:352.031200pt;}
.y139{bottom:354.409507pt;}
.yeb{bottom:358.262977pt;}
.ya2{bottom:358.573200pt;}
.y72{bottom:360.603200pt;}
.y24{bottom:367.568353pt;}
.y1b8{bottom:368.027333pt;}
.y1cc{bottom:368.359333pt;}
.y4a{bottom:369.183580pt;}
.y19a{bottom:371.372400pt;}
.y138{bottom:373.805373pt;}
.y182{bottom:376.417373pt;}
.y71{bottom:379.998060pt;}
.y15f{bottom:380.540973pt;}
.yc5{bottom:382.363333pt;}
.y19b{bottom:386.705733pt;}
.y23{bottom:386.963373pt;}
.ya1{bottom:388.905333pt;}
.y137{bottom:393.199813pt;}
.y181{bottom:395.813107pt;}
.y15e{bottom:397.405640pt;}
.y1b7{bottom:398.359333pt;}
.y1cb{bottom:398.691467pt;}
.y70{bottom:399.393240pt;}
.y22{bottom:406.358440pt;}
.y136{bottom:412.595643pt;}
.yc2{bottom:412.695333pt;}
.y15d{bottom:414.271507pt;}
.y180{bottom:415.207640pt;}
.yea{bottom:415.580040pt;}
.y199{bottom:417.036400pt;}
.y6f{bottom:418.788440pt;}
.ya0{bottom:419.237333pt;}
.y49{bottom:423.444843pt;}
.y21{bottom:425.753373pt;}
.y1b6{bottom:428.691467pt;}
.y1c9{bottom:429.023467pt;}
.y135{bottom:431.990173pt;}
.y6e{bottom:438.183233pt;}
.ye9{bottom:441.542933pt;}
.ye8{bottom:441.543067pt;}
.y1ca{bottom:444.355467pt;}
.y20{bottom:445.148440pt;}
.y15c{bottom:447.136040pt;}
.y198{bottom:447.369733pt;}
.y17f{bottom:448.073507pt;}
.y9f{bottom:449.569333pt;}
.y134{bottom:451.386040pt;}
.y112{bottom:456.412133pt;}
.y6d{bottom:457.578133pt;}
.y1b5{bottom:459.023467pt;}
.y15b{bottom:464.001907pt;}
.y1f{bottom:464.543507pt;}
.y17e{bottom:464.938173pt;}
.y133{bottom:470.779240pt;}
.yc1{bottom:474.023467pt;}
.y1c8{bottom:474.687467pt;}
.ye7{bottom:474.850933pt;}
.ye6{bottom:474.851590pt;}
.y6c{bottom:476.973333pt;}
.y196{bottom:477.700533pt;}
.y9e{bottom:479.901333pt;}
.y48{bottom:480.762307pt;}
.y1e{bottom:483.938447pt;}
.y1b4{bottom:489.355467pt;}
.y132{bottom:490.175107pt;}
.y197{bottom:493.033867pt;}
.y6b{bottom:496.368493pt;}
.y15a{bottom:496.866573pt;}
.y17d{bottom:497.802707pt;}
.y47{bottom:500.157427pt;}
.y1d{bottom:503.333467pt;}
.yc0{bottom:504.355467pt;}
.y1c7{bottom:505.019467pt;}
.ye5{bottom:507.748040pt;}
.y131{bottom:509.569600pt;}
.y9d{bottom:510.233333pt;}
.y6a{bottom:515.763343pt;}
.y10a{bottom:518.066400pt;}
.y46{bottom:519.552447pt;}
.y1b3{bottom:519.687467pt;}
.y1c{bottom:522.728487pt;}
.y195{bottom:523.364533pt;}
.y130{bottom:528.965500pt;}
.y159{bottom:529.732440pt;}
.y17c{bottom:530.668573pt;}
.ybf{bottom:534.687467pt;}
.y69{bottom:535.158213pt;}
.y1c6{bottom:535.351600pt;}
.y109{bottom:537.461600pt;}
.y45{bottom:538.947467pt;}
.y9b{bottom:540.565467pt;}
.ye3{bottom:540.732523pt;}
.ye4{bottom:540.733067pt;}
.y1b{bottom:542.123507pt;}
.y158{bottom:546.596973pt;}
.y12f{bottom:548.360000pt;}
.y1b1{bottom:550.019600pt;}
.y194{bottom:553.697867pt;}
.y68{bottom:554.553393pt;}
.y108{bottom:556.856760pt;}
.y44{bottom:558.342487pt;}
.y17b{bottom:563.534440pt;}
.ybe{bottom:565.019467pt;}
.y1b2{bottom:565.351600pt;}
.y1c5{bottom:565.683600pt;}
.y157{bottom:565.991507pt;}
.y12e{bottom:567.755810pt;}
.y9a{bottom:570.897467pt;}
.ye2{bottom:573.628840pt;}
.y67{bottom:573.948573pt;}
.y1a{bottom:574.131377pt;}
.y107{bottom:576.251950pt;}
.y43{bottom:577.737507pt;}
.y98{bottom:578.563467pt;}
.y193{bottom:584.028667pt;}
.y99{bottom:586.229467pt;}
.y12d{bottom:587.150350pt;}
.ybb{bottom:595.351600pt;}
.y106{bottom:595.646480pt;}
.y1b0{bottom:595.683600pt;}
.y1c4{bottom:596.015600pt;}
.y17a{bottom:596.399107pt;}
.y42{bottom:597.132440pt;}
.y156{bottom:598.000043pt;}
.ye1{bottom:599.591733pt;}
.ye0{bottom:599.591867pt;}
.y66{bottom:600.214483pt;}
.y8{bottom:604.141243pt;}
.y12c{bottom:606.544880pt;}
.y96{bottom:610.561467pt;}
.y192{bottom:614.362000pt;}
.y105{bottom:615.041660pt;}
.y41{bottom:616.527513pt;}
.y94{bottom:618.227600pt;}
.yde{bottom:625.877067pt;}
.ydf{bottom:625.877600pt;}
.y95{bottom:625.893600pt;}
.y12b{bottom:625.940710pt;}
.yba{bottom:626.015600pt;}
.y1c3{bottom:626.347600pt;}
.y179{bottom:629.263640pt;}
.y19{bottom:631.448840pt;}
.y104{bottom:634.436840pt;}
.y40{bottom:635.922533pt;}
.y191{bottom:644.692667pt;}
.y65{bottom:644.694707pt;}
.y12a{bottom:645.335240pt;}
.y93{bottom:650.225600pt;}
.y18{bottom:650.843907pt;}
.y103{bottom:653.831373pt;}
.y155{bottom:655.317107pt;}
.y3f{bottom:655.317553pt;}
.yb9{bottom:656.347600pt;}
.y1c2{bottom:656.679733pt;}
.y91{bottom:657.891600pt;}
.ydb{bottom:659.185590pt;}
.ydd{bottom:659.185600pt;}
.y178{bottom:662.129507pt;}
.y64{bottom:664.089773pt;}
.y92{bottom:665.557600pt;}
.y7{bottom:666.071643pt;}
.y17{bottom:670.238973pt;}
.y129{bottom:671.600217pt;}
.y102{bottom:673.226573pt;}
.y3e{bottom:674.712573pt;}
.y154{bottom:674.712840pt;}
.y190{bottom:675.026000pt;}
.ydc{bottom:676.487950pt;}
.y177{bottom:678.995373pt;}
.y63{bottom:683.484707pt;}
.yb8{bottom:686.679733pt;}
.y1af{bottom:687.011733pt;}
.y16{bottom:689.633933pt;}
.y8f{bottom:689.889600pt;}
.yda{bottom:692.081373pt;}
.y101{bottom:692.621773pt;}
.y153{bottom:694.107373pt;}
.y3d{bottom:694.107640pt;}
.y176{bottom:695.860040pt;}
.y62{bottom:702.879907pt;}
.y18f{bottom:705.356800pt;}
.yfe{bottom:707.378933pt;}
.y15{bottom:709.029033pt;}
.yd9{bottom:711.476573pt;}
.y175{bottom:712.724573pt;}
.y3c{bottom:713.502573pt;}
.y152{bottom:713.503267pt;}
.y8e{bottom:714.221733pt;}
.y128{bottom:716.081373pt;}
.yb7{bottom:717.011733pt;}
.y1ae{bottom:717.343733pt;}
.y61{bottom:722.274800pt;}
.y6{bottom:728.001910pt;}
.y14{bottom:728.424033pt;}
.y100{bottom:728.843733pt;}
.y174{bottom:729.590440pt;}
.yd8{bottom:730.871683pt;}
.y151{bottom:732.896467pt;}
.y3b{bottom:732.897553pt;}
.y127{bottom:735.477267pt;}
.y18d{bottom:735.690133pt;}
.y8d{bottom:738.553733pt;}
.y60{bottom:741.669980pt;}
.y8b{bottom:746.219733pt;}
.y173{bottom:746.456440pt;}
.yb6{bottom:747.343733pt;}
.y1ad{bottom:747.675733pt;}
.y13{bottom:747.819033pt;}
.yd7{bottom:750.266853pt;}
.y150{bottom:752.292367pt;}
.y3a{bottom:752.292573pt;}
.y8c{bottom:753.885733pt;}
.y126{bottom:754.871767pt;}
.yfd{bottom:759.175733pt;}
.y5f{bottom:761.064840pt;}
.y172{bottom:763.320973pt;}
.y18b{bottom:766.020800pt;}
.y12{bottom:767.214033pt;}
.yd6{bottom:769.662043pt;}
.yfa{bottom:771.441467pt;}
.y39{bottom:771.687640pt;}
.y14f{bottom:771.688167pt;}
.y111{bottom:771.688173pt;}
.y125{bottom:774.266267pt;}
.yfc{bottom:774.507867pt;}
.yb5{bottom:777.675733pt;}
.y1ac{bottom:778.007867pt;}
.y8a{bottom:778.217733pt;}
.y171{bottom:780.185507pt;}
.y5e{bottom:780.459907pt;}
.y5{bottom:785.319507pt;}
.y11{bottom:786.609033pt;}
.yd5{bottom:789.056573pt;}
.y14e{bottom:791.082667pt;}
.y38{bottom:791.082707pt;}
.y124{bottom:793.662167pt;}
.y189{bottom:796.354133pt;}
.y170{bottom:797.051373pt;}
.y5d{bottom:799.854800pt;}
.y88{bottom:802.549867pt;}
.y4{bottom:804.714573pt;}
.y10{bottom:806.004093pt;}
.yb4{bottom:808.007867pt;}
.y1ab{bottom:808.339867pt;}
.yd4{bottom:808.451773pt;}
.y86{bottom:810.215867pt;}
.y14d{bottom:810.477167pt;}
.y110{bottom:810.477240pt;}
.y37{bottom:810.477687pt;}
.yf9{bottom:810.477927pt;}
.y123{bottom:813.057267pt;}
.y16f{bottom:813.917373pt;}
.y87{bottom:817.881867pt;}
.y5c{bottom:819.249960pt;}
.yf{bottom:825.399113pt;}
.y187{bottom:826.684933pt;}
.y36{bottom:829.872707pt;}
.y14c{bottom:829.873067pt;}
.yf8{bottom:829.873107pt;}
.y16e{bottom:830.781907pt;}
.y122{bottom:832.451827pt;}
.y3{bottom:835.797500pt;}
.yb3{bottom:838.339867pt;}
.yd3{bottom:838.409447pt;}
.y5b{bottom:838.644810pt;}
.y1aa{bottom:838.671867pt;}
.y85{bottom:842.213867pt;}
.ye{bottom:844.794133pt;}
.yf7{bottom:849.267640pt;}
.y35{bottom:849.267773pt;}
.y10f{bottom:849.268200pt;}
.y14b{bottom:849.268877pt;}
.y121{bottom:851.846357pt;}
.y5a{bottom:858.040000pt;}
.y16d{bottom:863.646440pt;}
.yd{bottom:864.189153pt;}
.y186{bottom:864.189510pt;}
.y83{bottom:866.545867pt;}
.y14a{bottom:868.662107pt;}
.yf6{bottom:868.662760pt;}
.y34{bottom:868.662800pt;}
.yb2{bottom:868.671867pt;}
.y1a9{bottom:869.003867pt;}
.y120{bottom:871.241547pt;}
.y59{bottom:877.434860pt;}
.y16c{bottom:880.512307pt;}
.y2{bottom:881.640300pt;}
.y185{bottom:883.584040pt;}
.yc{bottom:883.584173pt;}
.y10e{bottom:888.057290pt;}
.y33{bottom:888.057820pt;}
.yd2{bottom:888.057907pt;}
.y149{bottom:888.057947pt;}
.yf5{bottom:888.057950pt;}
.y11f{bottom:890.637377pt;}
.y81{bottom:890.877867pt;}
.y58{bottom:896.830040pt;}
.yb0{bottom:899.003867pt;}
.y1a8{bottom:899.336000pt;}
.yb{bottom:902.979107pt;}
.y184{bottom:902.979773pt;}
.yd1{bottom:907.452440pt;}
.y148{bottom:907.452467pt;}
.yf4{bottom:907.452480pt;}
.y32{bottom:907.452840pt;}
.y11e{bottom:910.031907pt;}
.y16b{bottom:913.378307pt;}
.y57{bottom:916.224973pt;}
.y80{bottom:926.847660pt;}
.y31{bottom:926.847773pt;}
.y147{bottom:926.848307pt;}
.y10d{bottom:926.848310pt;}
.y1{bottom:927.483070pt;}
.yaf{bottom:929.668000pt;}
.ya{bottom:934.986980pt;}
.y11d{bottom:939.989580pt;}
.y56{bottom:942.490880pt;}
.y30{bottom:946.242840pt;}
.h9{height:23.332000pt;}
.hc{height:23.332133pt;}
.h1f{height:29.330667pt;}
.h21{height:29.330720pt;}
.h1d{height:29.330800pt;}
.he{height:29.332000pt;}
.h11{height:29.332027pt;}
.h10{height:29.332067pt;}
.h7{height:29.332133pt;}
.h1e{height:29.333333pt;}
.h1c{height:30.865867pt;}
.h18{height:32.398400pt;}
.hb{height:38.664000pt;}
.hd{height:38.664133pt;}
.h8{height:38.828115pt;}
.ha{height:41.692698pt;}
.h1b{height:42.710947pt;}
.h20{height:44.664000pt;}
.hf{height:44.664133pt;}
.h2{height:45.861990pt;}
.h19{height:46.593750pt;}
.h1a{height:50.796800pt;}
.h6{height:53.447926pt;}
.h13{height:59.996000pt;}
.h12{height:59.996133pt;}
.h5{height:66.708323pt;}
.h3{height:83.385427pt;}
.h14{height:90.660133pt;}
.h4{height:96.000000pt;}
.h16{height:101.784712pt;}
.h1{height:108.401052pt;}
.h15{height:143.945345pt;}
.h17{height:170.994112pt;}
.h0{height:1056.000000pt;}
.wc{width:43.000000pt;}
.we{width:50.000000pt;}
.w9{width:54.000000pt;}
.w8{width:58.000000pt;}
.wb{width:62.000000pt;}
.w7{width:75.000000pt;}
.wa{width:82.000000pt;}
.wd{width:86.000000pt;}
.wf{width:95.000000pt;}
.w3{width:102.000000pt;}
.w2{width:103.000000pt;}
.w1{width:155.000000pt;}
.w10{width:161.000000pt;}
.w5{width:206.000000pt;}
.w4{width:260.000000pt;}
.w6{width:623.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:6.120338pt;}
.x2d{left:7.255981pt;}
.x8{left:9.170601pt;}
.x51{left:10.334618pt;}
.x1e{left:11.336433pt;}
.x2a{left:12.439506pt;}
.x13{left:13.536072pt;}
.x4f{left:15.140686pt;}
.x16{left:16.248939pt;}
.x30{left:17.623040pt;}
.x21{left:19.382580pt;}
.x1b{left:20.332630pt;}
.x52{left:21.446820pt;}
.x22{left:22.714610pt;}
.x1d{left:24.324200pt;}
.x20{left:25.440310pt;}
.x25{left:27.295050pt;}
.x18{left:29.106180pt;}
.x19{left:30.960930pt;}
.x27{left:31.978580pt;}
.x14{left:33.202920pt;}
.x50{left:34.323550pt;}
.xd{left:35.675050pt;}
.xc{left:36.621860pt;}
.x1a{left:38.029790pt;}
.x10{left:39.881290pt;}
.x11{left:40.874850pt;}
.x2f{left:42.173090pt;}
.x17{left:43.242510pt;}
.x23{left:44.896680pt;}
.xf{left:45.889360pt;}
.x1c{left:48.571260pt;}
.x6{left:51.456570pt;}
.x24{left:53.298300pt;}
.x28{left:54.401380pt;}
.x12{left:55.885180pt;}
.x26{left:58.478570pt;}
.x29{left:60.330060pt;}
.x53{left:63.323550pt;}
.x32{left:64.410510pt;}
.x2c{left:65.516850pt;}
.x15{left:67.371590pt;}
.x31{left:84.673720pt;}
.xb{left:86.554500pt;}
.x2b{left:89.489540pt;}
.x1{left:96.000000pt;}
.x5{left:97.000000pt;}
.xe{left:129.500000pt;}
.x4{left:144.000000pt;}
.x36{left:146.062133pt;}
.x3f{left:173.000000pt;}
.x4c{left:193.000000pt;}
.x40{left:232.000000pt;}
.x2{left:251.000000pt;}
.x7{left:253.000000pt;}
.x1f{left:283.344800pt;}
.x39{left:285.099600pt;}
.x41{left:287.000000pt;}
.x33{left:294.902700pt;}
.x4d{left:297.000000pt;}
.x35{left:347.459707pt;}
.x34{left:348.857937pt;}
.x9{left:357.000000pt;}
.x3c{left:362.480267pt;}
.x3a{left:364.202630pt;}
.x42{left:370.000000pt;}
.x3e{left:375.413467pt;}
.x49{left:390.000000pt;}
.x3d{left:392.515167pt;}
.x37{left:403.007600pt;}
.x43{left:433.000000pt;}
.x3b{left:453.519700pt;}
.xa{left:460.000000pt;}
.x44{left:477.000000pt;}
.x48{left:530.000000pt;}
.x38{left:530.900500pt;}
.x45{left:532.000000pt;}
.x4e{left:555.000000pt;}
.x46{left:619.000000pt;}
.x47{left:695.000000pt;}
.x4a{left:703.697800pt;}
.x4b{left:704.786300pt;}
.x3{left:711.848900pt;}
}




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