
    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_25cc83dbe45380b3a995890c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_7c687639f49f881a64ac5a43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_e9d4aacffa64ea5e7f34b55b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_435a50ca4738298f6e38e02e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_979bd78ef4bf57e686ae7236.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m1{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.v1{vertical-align:25.800000px;}
.ls3a{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.030000px;}
.ls25{letter-spacing:0.036000px;}
.ls5f{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.102000px;}
.ls0{letter-spacing:0.177600px;}
.ls2{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.210000px;}
.ls21{letter-spacing:0.234000px;}
.ls20{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls61{letter-spacing:0.504000px;}
.ls17{letter-spacing:1.002000px;}
.ls68{letter-spacing:1.800000px;}
.ls67{letter-spacing:2.400000px;}
.ls62{letter-spacing:3.600000px;}
.ls43{letter-spacing:4.140000px;}
.ls12{letter-spacing:4.308000px;}
.ls46{letter-spacing:4.380000px;}
.lse{letter-spacing:4.542000px;}
.lsd{letter-spacing:4.548000px;}
.ls42{letter-spacing:4.740000px;}
.ls30{letter-spacing:4.752000px;}
.ls5e{letter-spacing:4.800000px;}
.ls54{letter-spacing:4.896000px;}
.lsc{letter-spacing:4.902000px;}
.ls1d{letter-spacing:4.908000px;}
.ls2f{letter-spacing:4.950000px;}
.ls41{letter-spacing:4.980000px;}
.ls53{letter-spacing:5.040000px;}
.ls1e{letter-spacing:5.130000px;}
.ls18{letter-spacing:5.142000px;}
.ls16{letter-spacing:5.148000px;}
.ls4f{letter-spacing:5.184000px;}
.ls2d{letter-spacing:5.310000px;}
.ls2e{letter-spacing:5.328000px;}
.ls3c{letter-spacing:5.340000px;}
.ls4d{letter-spacing:5.400000px;}
.ls51{letter-spacing:5.472000px;}
.ls8{letter-spacing:5.502000px;}
.lsa{letter-spacing:5.508000px;}
.ls3d{letter-spacing:5.580000px;}
.ls22{letter-spacing:5.598000px;}
.ls3e{letter-spacing:5.760000px;}
.ls4e{letter-spacing:5.832000px;}
.ls3f{letter-spacing:5.880000px;}
.ls40{letter-spacing:5.940000px;}
.ls26{letter-spacing:5.976000px;}
.ls50{letter-spacing:6.120000px;}
.ls23{letter-spacing:6.174000px;}
.ls3b{letter-spacing:6.180000px;}
.lsb{letter-spacing:6.342000px;}
.ls1c{letter-spacing:6.348000px;}
.ls48{letter-spacing:6.540000px;}
.ls49{letter-spacing:6.600000px;}
.ls52{letter-spacing:6.696000px;}
.ls2b{letter-spacing:6.750000px;}
.ls19{letter-spacing:6.768000px;}
.ls47{letter-spacing:6.780000px;}
.ls2a{letter-spacing:6.840000px;}
.ls14{letter-spacing:6.942000px;}
.ls13{letter-spacing:6.948000px;}
.ls1b{letter-spacing:6.960000px;}
.ls29{letter-spacing:7.110000px;}
.ls2c{letter-spacing:7.128000px;}
.ls28{letter-spacing:7.398000px;}
.ls10{letter-spacing:7.548000px;}
.ls5d{letter-spacing:7.632000px;}
.ls38{letter-spacing:7.686000px;}
.ls44{letter-spacing:7.740000px;}
.ls58{letter-spacing:7.776000px;}
.ls11{letter-spacing:7.902000px;}
.ls5c{letter-spacing:7.920000px;}
.ls39{letter-spacing:7.974000px;}
.ls45{letter-spacing:7.980000px;}
.ls1f{letter-spacing:8.016000px;}
.ls34{letter-spacing:8.064000px;}
.lsf{letter-spacing:8.148000px;}
.ls33{letter-spacing:8.262000px;}
.ls31{letter-spacing:8.280000px;}
.ls4b{letter-spacing:8.340000px;}
.ls35{letter-spacing:8.352000px;}
.ls56{letter-spacing:8.496000px;}
.ls32{letter-spacing:8.550000px;}
.ls4a{letter-spacing:8.580000px;}
.ls57{letter-spacing:8.784000px;}
.ls55{letter-spacing:9.000000px;}
.ls15{letter-spacing:10.302000px;}
.ls27{letter-spacing:11.286000px;}
.ls5a{letter-spacing:11.376000px;}
.ls59{letter-spacing:11.808000px;}
.ls36{letter-spacing:11.862000px;}
.ls5b{letter-spacing:11.952000px;}
.ls60{letter-spacing:12.600000px;}
.ls37{letter-spacing:12.798000px;}
.ls1a{letter-spacing:13.302000px;}
.ls66{letter-spacing:13.800000px;}
.ls4c{letter-spacing:15.780000px;}
.ls65{letter-spacing:25.800000px;}
.ls63{letter-spacing:571.704000px;}
.ls64{letter-spacing:592.704000px;}
.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:-21.000000px;}
.ws8{word-spacing:-18.198000px;}
.ws1{word-spacing:-18.000000px;}
.ws2c{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws5{word-spacing:-12.000000px;}
.ws3{word-spacing:-10.870266px;}
.ws2{word-spacing:-10.500000px;}
.ws0{word-spacing:-8.850000px;}
.ws6{word-spacing:-8.700000px;}
.ws9{word-spacing:-6.012000px;}
.wsc{word-spacing:-0.288000px;}
.ws21{word-spacing:-0.252000px;}
.ws2a{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws2b{word-spacing:0.060000px;}
.ws29{word-spacing:0.180000px;}
.wse{word-spacing:0.288000px;}
.wsb{word-spacing:0.324000px;}
.ws20{word-spacing:0.336000px;}
.wsf{word-spacing:0.360000px;}
.wsd{word-spacing:0.864000px;}
.ws1f{word-spacing:0.912000px;}
.ws13{word-spacing:4.140000px;}
.ws11{word-spacing:4.740000px;}
.ws24{word-spacing:4.752000px;}
.ws1d{word-spacing:4.800000px;}
.ws22{word-spacing:5.328000px;}
.ws15{word-spacing:5.340000px;}
.ws10{word-spacing:5.940000px;}
.ws14{word-spacing:6.540000px;}
.ws23{word-spacing:7.128000px;}
.ws26{word-spacing:7.704000px;}
.ws12{word-spacing:7.740000px;}
.ws1b{word-spacing:7.800000px;}
.ws25{word-spacing:8.352000px;}
.ws1c{word-spacing:8.400000px;}
.ws16{word-spacing:9.600000px;}
.ws18{word-spacing:10.140000px;}
.ws17{word-spacing:10.200000px;}
.ws28{word-spacing:11.952000px;}
.ws1a{word-spacing:12.600000px;}
.ws19{word-spacing:13.200000px;}
.ws1e{word-spacing:15.600000px;}
.ws27{word-spacing:16.200000px;}
.ws30{word-spacing:300.240000px;}
.ws3a{word-spacing:416.856000px;}
.ws36{word-spacing:432.480000px;}
.ws38{word-spacing:446.184000px;}
.ws35{word-spacing:452.592000px;}
.ws39{word-spacing:457.560000px;}
.ws3b{word-spacing:458.088000px;}
.ws33{word-spacing:477.072000px;}
.ws37{word-spacing:479.688000px;}
.ws31{word-spacing:499.968000px;}
.ws2e{word-spacing:541.680000px;}
.ws2f{word-spacing:558.504000px;}
.ws32{word-spacing:572.280000px;}
.ws2d{word-spacing:575.304000px;}
.ws34{word-spacing:593.688000px;}
._2f{margin-left:-8.568000px;}
._2c{margin-left:-5.250000px;}
._2d{margin-left:-3.672000px;}
._c{margin-left:-2.166000px;}
._6{margin-left:-1.086000px;}
._0{width:1.080000px;}
._8{width:2.160000px;}
._5{width:3.180000px;}
._a{width:4.242000px;}
._7{width:5.250000px;}
._b{width:7.008000px;}
._9{width:8.070000px;}
._11{width:9.150000px;}
._2{width:10.746000px;}
._3{width:11.759904px;}
._f{width:13.032000px;}
._e{width:14.148000px;}
._2b{width:15.630000px;}
._d{width:16.854000px;}
._4{width:19.152000px;}
._30{width:20.208000px;}
._2e{width:34.038000px;}
._12{width:58.608000px;}
._15{width:302.112000px;}
._1b{width:353.616000px;}
._1c{width:372.198000px;}
._14{width:383.352000px;}
._1d{width:426.384000px;}
._13{width:442.368000px;}
._10{width:443.712000px;}
._1e{width:472.104000px;}
._1f{width:490.512000px;}
._23{width:502.944000px;}
._25{width:504.456000px;}
._24{width:522.534000px;}
._28{width:537.246000px;}
._1{width:539.112000px;}
._29{width:554.400000px;}
._2a{width:556.992000px;}
._20{width:558.360000px;}
._21{width:575.112000px;}
._22{width:594.288000px;}
._1a{width:597.936000px;}
._26{width:603.216000px;}
._18{width:614.904000px;}
._27{width:621.336000px;}
._17{width:631.704000px;}
._19{width:721.512000px;}
._16{width:738.312000px;}
.fca{color:rgb(0,0,10);}
.fc9{color:rgb(99,36,35);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(0,112,192);}
.fc6{color:rgb(31,73,125);}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(192,80,77);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,80,77);}
.fcb{color:rgb(35,31,32);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:34.800000px;}
.fs1{font-size:35.400000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.481065px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y60{bottom:57.900000px;}
.y31{bottom:58.200000px;}
.y30{bottom:75.049500px;}
.y2f{bottom:91.899000px;}
.y2e{bottom:108.748500px;}
.y11c{bottom:111.000000px;}
.yff{bottom:115.200000px;}
.ydc{bottom:119.250000px;}
.ya4{bottom:119.550000px;}
.y11b{bottom:131.250000px;}
.yfe{bottom:135.450000px;}
.ydb{bottom:139.500000px;}
.ya3{bottom:139.800000px;}
.y86{bottom:140.400000px;}
.y2d{bottom:145.498500px;}
.yfd{bottom:155.700000px;}
.yb2{bottom:157.350000px;}
.yda{bottom:159.750000px;}
.ya2{bottom:160.050000px;}
.y11a{bottom:160.500000px;}
.y2c{bottom:165.748500px;}
.y85{bottom:170.400000px;}
.y5f{bottom:170.850000px;}
.yfc{bottom:175.950000px;}
.yb1{bottom:177.600000px;}
.yd9{bottom:180.000000px;}
.ya1{bottom:180.300000px;}
.y119{bottom:180.750000px;}
.y2b{bottom:185.998500px;}
.y5e{bottom:191.100000px;}
.yfb{bottom:196.200000px;}
.yb0{bottom:197.850000px;}
.y84{bottom:200.250000px;}
.ya0{bottom:200.550000px;}
.y118{bottom:201.000000px;}
.y2a{bottom:206.248500px;}
.y5d{bottom:211.350000px;}
.yfa{bottom:216.450000px;}
.yd8{bottom:220.500000px;}
.y9f{bottom:220.800000px;}
.y29{bottom:226.498500px;}
.yaf{bottom:227.100000px;}
.y83{bottom:230.250000px;}
.y5c{bottom:231.600000px;}
.yd7{bottom:240.750000px;}
.y9e{bottom:241.050000px;}
.yf9{bottom:245.700000px;}
.yae{bottom:247.350000px;}
.y117{bottom:250.500000px;}
.y5b{bottom:251.850000px;}
.y28{bottom:256.648500px;}
.y82{bottom:260.100000px;}
.y9d{bottom:261.300000px;}
.yf8{bottom:265.950000px;}
.y5a{bottom:272.100000px;}
.yad{bottom:276.600000px;}
.y116{bottom:279.750000px;}
.y27{bottom:280.198500px;}
.y9c{bottom:281.550000px;}
.yf7{bottom:286.200000px;}
.yd6{bottom:286.950000px;}
.y81{bottom:290.100000px;}
.y59{bottom:292.350000px;}
.yd5{bottom:295.950000px;}
.y115{bottom:300.000000px;}
.yac{bottom:305.850000px;}
.yf6{bottom:306.450000px;}
.y9b{bottom:310.650000px;}
.y58{bottom:312.600000px;}
.yd4{bottom:312.900000px;}
.y80{bottom:319.950000px;}
.yf5{bottom:326.700000px;}
.y26{bottom:328.948500px;}
.y114{bottom:329.250000px;}
.y9a{bottom:330.900000px;}
.y57{bottom:332.850000px;}
.yab{bottom:335.100000px;}
.yd2{bottom:338.700000px;}
.yd3{bottom:346.650000px;}
.yf4{bottom:346.950000px;}
.y25{bottom:349.198500px;}
.y113{bottom:349.500000px;}
.y7f{bottom:349.950000px;}
.y99{bottom:351.150000px;}
.y56{bottom:353.100000px;}
.yaa{bottom:355.350000px;}
.yd1{bottom:355.650000px;}
.yf3{bottom:367.200000px;}
.y24{bottom:369.448500px;}
.y98{bottom:371.400000px;}
.yd0{bottom:372.450000px;}
.y55{bottom:373.350000px;}
.ya9{bottom:375.600000px;}
.y112{bottom:378.750000px;}
.y7e{bottom:379.800000px;}
.yf2{bottom:387.450000px;}
.y23{bottom:389.698500px;}
.y97{bottom:391.650000px;}
.y54{bottom:393.600000px;}
.yce{bottom:398.400000px;}
.y111{bottom:399.000000px;}
.ya8{bottom:404.850000px;}
.ycf{bottom:406.200000px;}
.yf1{bottom:407.700000px;}
.y22{bottom:409.948500px;}
.y53{bottom:413.850000px;}
.ycd{bottom:415.200000px;}
.y7d{bottom:417.450000px;}
.y110{bottom:419.250000px;}
.yf0{bottom:427.950000px;}
.y21{bottom:430.198500px;}
.ycc{bottom:432.150000px;}
.y52{bottom:434.100000px;}
.y7c{bottom:434.400000px;}
.y96{bottom:438.750000px;}
.y10f{bottom:439.500000px;}
.yef{bottom:448.200000px;}
.y20{bottom:450.448500px;}
.y51{bottom:454.350000px;}
.ycb{bottom:462.150000px;}
.y95{bottom:468.750000px;}
.y1f{bottom:470.698500px;}
.y50{bottom:474.600000px;}
.y7b{bottom:477.900000px;}
.yee{bottom:478.200000px;}
.yca{bottom:479.100000px;}
.y10e{bottom:489.000000px;}
.y4f{bottom:494.850000px;}
.y7a{bottom:498.150000px;}
.y94{bottom:498.750000px;}
.y1e{bottom:500.848500px;}
.yc9{bottom:504.900000px;}
.y10d{bottom:509.250000px;}
.y4e{bottom:515.100000px;}
.y79{bottom:518.400000px;}
.yed{bottom:526.950000px;}
.y93{bottom:528.750000px;}
.yc8{bottom:534.750000px;}
.y4d{bottom:535.350000px;}
.y10c{bottom:538.500000px;}
.yc7{bottom:543.750000px;}
.ya7{bottom:544.350000px;}
.yec{bottom:547.200000px;}
.y78{bottom:547.650000px;}
.y1d{bottom:547.948500px;}
.y92{bottom:558.750000px;}
.yc6{bottom:560.700000px;}
.y4c{bottom:564.600000px;}
.yeb{bottom:567.450000px;}
.y77{bottom:567.900000px;}
.y1c{bottom:571.348500px;}
.y10b{bottom:579.000000px;}
.y4b{bottom:584.850000px;}
.yc5{bottom:587.250000px;}
.yea{bottom:587.700000px;}
.y76{bottom:588.150000px;}
.y1b{bottom:588.213000px;}
.y91{bottom:588.750000px;}
.y1a{bottom:605.077500px;}
.y4a{bottom:605.100000px;}
.ye9{bottom:607.950000px;}
.y10a{bottom:608.250000px;}
.y75{bottom:608.400000px;}
.yc4{bottom:613.200000px;}
.y90{bottom:618.750000px;}
.y19{bottom:621.942000px;}
.y49{bottom:625.350000px;}
.ye8{bottom:628.200000px;}
.y109{bottom:628.500000px;}
.y74{bottom:637.650000px;}
.y18{bottom:638.806500px;}
.y48{bottom:645.600000px;}
.yc3{bottom:648.150000px;}
.ye7{bottom:648.450000px;}
.y17{bottom:655.671000px;}
.y8f{bottom:657.300000px;}
.y108{bottom:657.750000px;}
.y131{bottom:663.600000px;}
.yc2{bottom:665.100000px;}
.y47{bottom:665.850000px;}
.y73{bottom:667.650000px;}
.ye6{bottom:668.700000px;}
.y16{bottom:672.535500px;}
.ya6{bottom:674.850000px;}
.y107{bottom:678.000000px;}
.y130{bottom:683.850000px;}
.y46{bottom:686.100000px;}
.y8e{bottom:687.300000px;}
.ye5{bottom:688.950000px;}
.y15{bottom:689.400000px;}
.y106{bottom:698.250000px;}
.y45{bottom:706.350000px;}
.yc1{bottom:708.600000px;}
.ye4{bottom:709.200000px;}
.ya5{bottom:711.750000px;}
.y12f{bottom:713.100000px;}
.y14{bottom:715.350000px;}
.y72{bottom:716.400000px;}
.y8d{bottom:717.300000px;}
.y44{bottom:726.600000px;}
.y105{bottom:727.500000px;}
.yc0{bottom:728.850000px;}
.ye3{bottom:729.450000px;}
.y12e{bottom:733.350000px;}
.y71{bottom:736.650000px;}
.y8c{bottom:747.300000px;}
.y13{bottom:748.800000px;}
.ybf{bottom:749.100000px;}
.ye2{bottom:749.700000px;}
.y43{bottom:755.850000px;}
.y70{bottom:756.900000px;}
.y104{bottom:757.650000px;}
.y12d{bottom:762.600000px;}
.ybe{bottom:769.350000px;}
.ye1{bottom:769.950000px;}
.y12{bottom:772.050000px;}
.y42{bottom:776.100000px;}
.y8b{bottom:776.400000px;}
.y12c{bottom:782.850000px;}
.y6f{bottom:786.150000px;}
.y11{bottom:788.925000px;}
.ybd{bottom:789.600000px;}
.ye0{bottom:790.200000px;}
.y8a{bottom:793.350000px;}
.y41{bottom:796.350000px;}
.y12b{bottom:803.100000px;}
.y103{bottom:805.650000px;}
.y10{bottom:805.800000px;}
.y6e{bottom:806.400000px;}
.ybc{bottom:809.850000px;}
.ydf{bottom:810.450000px;}
.y40{bottom:816.600000px;}
.yf{bottom:822.675000px;}
.y6d{bottom:826.650000px;}
.yde{bottom:830.700000px;}
.y102{bottom:831.450000px;}
.y12a{bottom:832.350000px;}
.y3f{bottom:836.850000px;}
.ybb{bottom:839.100000px;}
.ye{bottom:839.550000px;}
.y6c{bottom:846.900000px;}
.y101{bottom:848.400000px;}
.y129{bottom:852.600000px;}
.yd{bottom:856.425000px;}
.y3e{bottom:857.100000px;}
.yba{bottom:859.350000px;}
.ydd{bottom:859.950000px;}
.yc{bottom:873.300000px;}
.y100{bottom:874.200000px;}
.y6b{bottom:876.150000px;}
.y3d{bottom:877.350000px;}
.y11f{bottom:879.600000px;}
.y128{bottom:881.850000px;}
.yb9{bottom:888.600000px;}
.yb{bottom:890.175000px;}
.y6a{bottom:896.400000px;}
.y3c{bottom:897.600000px;}
.y127{bottom:902.100000px;}
.y89{bottom:906.600000px;}
.ya{bottom:907.050000px;}
.yb8{bottom:908.850000px;}
.y3b{bottom:917.850000px;}
.y69{bottom:925.650000px;}
.y88{bottom:926.850000px;}
.y11e{bottom:929.100000px;}
.y126{bottom:931.350000px;}
.y3a{bottom:938.100000px;}
.y9{bottom:942.750000px;}
.y68{bottom:945.900000px;}
.y87{bottom:947.100000px;}
.y11d{bottom:949.350000px;}
.y125{bottom:951.600000px;}
.yb7{bottom:958.350000px;}
.y39{bottom:967.350000px;}
.y67{bottom:975.150000px;}
.yb6{bottom:978.600000px;}
.y124{bottom:980.850000px;}
.y8{bottom:981.000000px;}
.y7{bottom:987.450000px;}
.y38{bottom:987.600000px;}
.y66{bottom:995.400000px;}
.yb5{bottom:998.850000px;}
.y123{bottom:1001.100000px;}
.y6{bottom:1001.250000px;}
.y37{bottom:1007.850000px;}
.y65{bottom:1015.650000px;}
.yb4{bottom:1019.100000px;}
.y36{bottom:1028.100000px;}
.y122{bottom:1030.350000px;}
.y5{bottom:1030.500000px;}
.y64{bottom:1035.900000px;}
.yb3{bottom:1039.350000px;}
.y35{bottom:1048.350000px;}
.y121{bottom:1050.600000px;}
.y63{bottom:1056.150000px;}
.y34{bottom:1068.600000px;}
.y4{bottom:1071.150000px;}
.y62{bottom:1076.400000px;}
.y120{bottom:1079.850000px;}
.y33{bottom:1088.850000px;}
.y3{bottom:1101.450000px;}
.y61{bottom:1106.550000px;}
.y32{bottom:1109.100000px;}
.y2{bottom:1167.450000px;}
.h6{height:30.275390px;}
.h2{height:40.171875px;}
.h8{height:41.777344px;}
.h5{height:50.132812px;}
.h7{height:50.214844px;}
.h9{height:50.724609px;}
.h4{height:55.044141px;}
.ha{height:58.488281px;}
.hb{height:60.257812px;}
.h3{height:75.199219px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:126.753000px;}
.x1{left:127.800000px;}
.x3{left:131.860500px;}
.x15{left:138.450000px;}
.xd{left:148.650000px;}
.xb{left:154.800000px;}
.x10{left:157.950000px;}
.x14{left:159.900000px;}
.x11{left:163.950000px;}
.x12{left:167.400000px;}
.xe{left:168.900000px;}
.x13{left:170.100000px;}
.xf{left:175.050000px;}
.x49{left:178.800000px;}
.xc{left:181.800000px;}
.x8{left:239.128500px;}
.x17{left:241.050000px;}
.x27{left:246.450000px;}
.x3c{left:249.900000px;}
.x16{left:251.850000px;}
.x26{left:257.700000px;}
.x33{left:261.300000px;}
.x4{left:272.280000px;}
.x5{left:278.134500px;}
.x6{left:297.750000px;}
.x7{left:303.549000px;}
.x19{left:314.550000px;}
.x35{left:319.350000px;}
.x29{left:321.000000px;}
.x46{left:322.800000px;}
.x18{left:324.300000px;}
.x3d{left:328.050000px;}
.x28{left:330.600000px;}
.x34{left:334.200000px;}
.x1b{left:388.500000px;}
.x2a{left:393.750000px;}
.x37{left:397.350000px;}
.x1a{left:398.700000px;}
.x3e{left:402.450000px;}
.x9{left:404.400000px;}
.x36{left:408.600000px;}
.x4a{left:416.100000px;}
.xa{left:446.100000px;}
.x1d{left:457.650000px;}
.x1c{left:467.850000px;}
.x40{left:471.600000px;}
.x2b{left:474.300000px;}
.x3f{left:477.750000px;}
.x1f{left:521.550000px;}
.x2d{left:526.950000px;}
.x47{left:530.400000px;}
.x1e{left:531.900000px;}
.x41{left:535.650000px;}
.x2c{left:538.200000px;}
.x38{left:541.800000px;}
.x21{left:585.600000px;}
.x2f{left:590.400000px;}
.x20{left:595.350000px;}
.x42{left:599.100000px;}
.x2e{left:601.800000px;}
.x39{left:605.250000px;}
.x23{left:648.600000px;}
.x3a{left:654.000000px;}
.x44{left:657.450000px;}
.x22{left:658.950000px;}
.x30{left:665.250000px;}
.x43{left:668.850000px;}
.x25{left:722.550000px;}
.x32{left:727.200000px;}
.x48{left:730.800000px;}
.x24{left:732.150000px;}
.x45{left:735.900000px;}
.x31{left:738.600000px;}
.x3b{left:742.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.v1{vertical-align:22.933333pt;}
.ls3a{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.026667pt;}
.ls25{letter-spacing:0.032000pt;}
.ls5f{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.090667pt;}
.ls0{letter-spacing:0.157867pt;}
.ls2{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.186667pt;}
.ls21{letter-spacing:0.208000pt;}
.ls20{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls61{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.890667pt;}
.ls68{letter-spacing:1.600000pt;}
.ls67{letter-spacing:2.133333pt;}
.ls62{letter-spacing:3.200000pt;}
.ls43{letter-spacing:3.680000pt;}
.ls12{letter-spacing:3.829333pt;}
.ls46{letter-spacing:3.893333pt;}
.lse{letter-spacing:4.037333pt;}
.lsd{letter-spacing:4.042667pt;}
.ls42{letter-spacing:4.213333pt;}
.ls30{letter-spacing:4.224000pt;}
.ls5e{letter-spacing:4.266667pt;}
.ls54{letter-spacing:4.352000pt;}
.lsc{letter-spacing:4.357333pt;}
.ls1d{letter-spacing:4.362667pt;}
.ls2f{letter-spacing:4.400000pt;}
.ls41{letter-spacing:4.426667pt;}
.ls53{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:4.560000pt;}
.ls18{letter-spacing:4.570667pt;}
.ls16{letter-spacing:4.576000pt;}
.ls4f{letter-spacing:4.608000pt;}
.ls2d{letter-spacing:4.720000pt;}
.ls2e{letter-spacing:4.736000pt;}
.ls3c{letter-spacing:4.746667pt;}
.ls4d{letter-spacing:4.800000pt;}
.ls51{letter-spacing:4.864000pt;}
.ls8{letter-spacing:4.890667pt;}
.lsa{letter-spacing:4.896000pt;}
.ls3d{letter-spacing:4.960000pt;}
.ls22{letter-spacing:4.976000pt;}
.ls3e{letter-spacing:5.120000pt;}
.ls4e{letter-spacing:5.184000pt;}
.ls3f{letter-spacing:5.226667pt;}
.ls40{letter-spacing:5.280000pt;}
.ls26{letter-spacing:5.312000pt;}
.ls50{letter-spacing:5.440000pt;}
.ls23{letter-spacing:5.488000pt;}
.ls3b{letter-spacing:5.493333pt;}
.lsb{letter-spacing:5.637333pt;}
.ls1c{letter-spacing:5.642667pt;}
.ls48{letter-spacing:5.813333pt;}
.ls49{letter-spacing:5.866667pt;}
.ls52{letter-spacing:5.952000pt;}
.ls2b{letter-spacing:6.000000pt;}
.ls19{letter-spacing:6.016000pt;}
.ls47{letter-spacing:6.026667pt;}
.ls2a{letter-spacing:6.080000pt;}
.ls14{letter-spacing:6.170667pt;}
.ls13{letter-spacing:6.176000pt;}
.ls1b{letter-spacing:6.186667pt;}
.ls29{letter-spacing:6.320000pt;}
.ls2c{letter-spacing:6.336000pt;}
.ls28{letter-spacing:6.576000pt;}
.ls10{letter-spacing:6.709333pt;}
.ls5d{letter-spacing:6.784000pt;}
.ls38{letter-spacing:6.832000pt;}
.ls44{letter-spacing:6.880000pt;}
.ls58{letter-spacing:6.912000pt;}
.ls11{letter-spacing:7.024000pt;}
.ls5c{letter-spacing:7.040000pt;}
.ls39{letter-spacing:7.088000pt;}
.ls45{letter-spacing:7.093333pt;}
.ls1f{letter-spacing:7.125333pt;}
.ls34{letter-spacing:7.168000pt;}
.lsf{letter-spacing:7.242667pt;}
.ls33{letter-spacing:7.344000pt;}
.ls31{letter-spacing:7.360000pt;}
.ls4b{letter-spacing:7.413333pt;}
.ls35{letter-spacing:7.424000pt;}
.ls56{letter-spacing:7.552000pt;}
.ls32{letter-spacing:7.600000pt;}
.ls4a{letter-spacing:7.626667pt;}
.ls57{letter-spacing:7.808000pt;}
.ls55{letter-spacing:8.000000pt;}
.ls15{letter-spacing:9.157333pt;}
.ls27{letter-spacing:10.032000pt;}
.ls5a{letter-spacing:10.112000pt;}
.ls59{letter-spacing:10.496000pt;}
.ls36{letter-spacing:10.544000pt;}
.ls5b{letter-spacing:10.624000pt;}
.ls60{letter-spacing:11.200000pt;}
.ls37{letter-spacing:11.376000pt;}
.ls1a{letter-spacing:11.824000pt;}
.ls66{letter-spacing:12.266667pt;}
.ls4c{letter-spacing:14.026667pt;}
.ls65{letter-spacing:22.933333pt;}
.ls63{letter-spacing:508.181333pt;}
.ls64{letter-spacing:526.848000pt;}
.ws7{word-spacing:-18.666667pt;}
.ws8{word-spacing:-16.176000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws5{word-spacing:-10.666667pt;}
.ws3{word-spacing:-9.662459pt;}
.ws2{word-spacing:-9.333333pt;}
.ws0{word-spacing:-7.866667pt;}
.ws6{word-spacing:-7.733333pt;}
.ws9{word-spacing:-5.344000pt;}
.wsc{word-spacing:-0.256000pt;}
.ws21{word-spacing:-0.224000pt;}
.ws2a{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053333pt;}
.ws29{word-spacing:0.160000pt;}
.wse{word-spacing:0.256000pt;}
.wsb{word-spacing:0.288000pt;}
.ws20{word-spacing:0.298667pt;}
.wsf{word-spacing:0.320000pt;}
.wsd{word-spacing:0.768000pt;}
.ws1f{word-spacing:0.810667pt;}
.ws13{word-spacing:3.680000pt;}
.ws11{word-spacing:4.213333pt;}
.ws24{word-spacing:4.224000pt;}
.ws1d{word-spacing:4.266667pt;}
.ws22{word-spacing:4.736000pt;}
.ws15{word-spacing:4.746667pt;}
.ws10{word-spacing:5.280000pt;}
.ws14{word-spacing:5.813333pt;}
.ws23{word-spacing:6.336000pt;}
.ws26{word-spacing:6.848000pt;}
.ws12{word-spacing:6.880000pt;}
.ws1b{word-spacing:6.933333pt;}
.ws25{word-spacing:7.424000pt;}
.ws1c{word-spacing:7.466667pt;}
.ws16{word-spacing:8.533333pt;}
.ws18{word-spacing:9.013333pt;}
.ws17{word-spacing:9.066667pt;}
.ws28{word-spacing:10.624000pt;}
.ws1a{word-spacing:11.200000pt;}
.ws19{word-spacing:11.733333pt;}
.ws1e{word-spacing:13.866667pt;}
.ws27{word-spacing:14.400000pt;}
.ws30{word-spacing:266.880000pt;}
.ws3a{word-spacing:370.538667pt;}
.ws36{word-spacing:384.426667pt;}
.ws38{word-spacing:396.608000pt;}
.ws35{word-spacing:402.304000pt;}
.ws39{word-spacing:406.720000pt;}
.ws3b{word-spacing:407.189333pt;}
.ws33{word-spacing:424.064000pt;}
.ws37{word-spacing:426.389333pt;}
.ws31{word-spacing:444.416000pt;}
.ws2e{word-spacing:481.493333pt;}
.ws2f{word-spacing:496.448000pt;}
.ws32{word-spacing:508.693333pt;}
.ws2d{word-spacing:511.381333pt;}
.ws34{word-spacing:527.722667pt;}
._2f{margin-left:-7.616000pt;}
._2c{margin-left:-4.666667pt;}
._2d{margin-left:-3.264000pt;}
._c{margin-left:-1.925333pt;}
._6{margin-left:-0.965333pt;}
._0{width:0.960000pt;}
._8{width:1.920000pt;}
._5{width:2.826667pt;}
._a{width:3.770667pt;}
._7{width:4.666667pt;}
._b{width:6.229333pt;}
._9{width:7.173333pt;}
._11{width:8.133333pt;}
._2{width:9.552000pt;}
._3{width:10.453248pt;}
._f{width:11.584000pt;}
._e{width:12.576000pt;}
._2b{width:13.893333pt;}
._d{width:14.981333pt;}
._4{width:17.024000pt;}
._30{width:17.962667pt;}
._2e{width:30.256000pt;}
._12{width:52.096000pt;}
._15{width:268.544000pt;}
._1b{width:314.325333pt;}
._1c{width:330.842667pt;}
._14{width:340.757333pt;}
._1d{width:379.008000pt;}
._13{width:393.216000pt;}
._10{width:394.410667pt;}
._1e{width:419.648000pt;}
._1f{width:436.010667pt;}
._23{width:447.061333pt;}
._25{width:448.405333pt;}
._24{width:464.474667pt;}
._28{width:477.552000pt;}
._1{width:479.210667pt;}
._29{width:492.800000pt;}
._2a{width:495.104000pt;}
._20{width:496.320000pt;}
._21{width:511.210667pt;}
._22{width:528.256000pt;}
._1a{width:531.498667pt;}
._26{width:536.192000pt;}
._18{width:546.581333pt;}
._27{width:552.298667pt;}
._17{width:561.514667pt;}
._19{width:641.344000pt;}
._16{width:656.277333pt;}
.fs7{font-size:30.933333pt;}
.fs1{font-size:31.466667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.649835pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y60{bottom:51.466667pt;}
.y31{bottom:51.733333pt;}
.y30{bottom:66.710667pt;}
.y2f{bottom:81.688000pt;}
.y2e{bottom:96.665333pt;}
.y11c{bottom:98.666667pt;}
.yff{bottom:102.400000pt;}
.ydc{bottom:106.000000pt;}
.ya4{bottom:106.266667pt;}
.y11b{bottom:116.666667pt;}
.yfe{bottom:120.400000pt;}
.ydb{bottom:124.000000pt;}
.ya3{bottom:124.266667pt;}
.y86{bottom:124.800000pt;}
.y2d{bottom:129.332000pt;}
.yfd{bottom:138.400000pt;}
.yb2{bottom:139.866667pt;}
.yda{bottom:142.000000pt;}
.ya2{bottom:142.266667pt;}
.y11a{bottom:142.666667pt;}
.y2c{bottom:147.332000pt;}
.y85{bottom:151.466667pt;}
.y5f{bottom:151.866667pt;}
.yfc{bottom:156.400000pt;}
.yb1{bottom:157.866667pt;}
.yd9{bottom:160.000000pt;}
.ya1{bottom:160.266667pt;}
.y119{bottom:160.666667pt;}
.y2b{bottom:165.332000pt;}
.y5e{bottom:169.866667pt;}
.yfb{bottom:174.400000pt;}
.yb0{bottom:175.866667pt;}
.y84{bottom:178.000000pt;}
.ya0{bottom:178.266667pt;}
.y118{bottom:178.666667pt;}
.y2a{bottom:183.332000pt;}
.y5d{bottom:187.866667pt;}
.yfa{bottom:192.400000pt;}
.yd8{bottom:196.000000pt;}
.y9f{bottom:196.266667pt;}
.y29{bottom:201.332000pt;}
.yaf{bottom:201.866667pt;}
.y83{bottom:204.666667pt;}
.y5c{bottom:205.866667pt;}
.yd7{bottom:214.000000pt;}
.y9e{bottom:214.266667pt;}
.yf9{bottom:218.400000pt;}
.yae{bottom:219.866667pt;}
.y117{bottom:222.666667pt;}
.y5b{bottom:223.866667pt;}
.y28{bottom:228.132000pt;}
.y82{bottom:231.200000pt;}
.y9d{bottom:232.266667pt;}
.yf8{bottom:236.400000pt;}
.y5a{bottom:241.866667pt;}
.yad{bottom:245.866667pt;}
.y116{bottom:248.666667pt;}
.y27{bottom:249.065333pt;}
.y9c{bottom:250.266667pt;}
.yf7{bottom:254.400000pt;}
.yd6{bottom:255.066667pt;}
.y81{bottom:257.866667pt;}
.y59{bottom:259.866667pt;}
.yd5{bottom:263.066667pt;}
.y115{bottom:266.666667pt;}
.yac{bottom:271.866667pt;}
.yf6{bottom:272.400000pt;}
.y9b{bottom:276.133333pt;}
.y58{bottom:277.866667pt;}
.yd4{bottom:278.133333pt;}
.y80{bottom:284.400000pt;}
.yf5{bottom:290.400000pt;}
.y26{bottom:292.398667pt;}
.y114{bottom:292.666667pt;}
.y9a{bottom:294.133333pt;}
.y57{bottom:295.866667pt;}
.yab{bottom:297.866667pt;}
.yd2{bottom:301.066667pt;}
.yd3{bottom:308.133333pt;}
.yf4{bottom:308.400000pt;}
.y25{bottom:310.398667pt;}
.y113{bottom:310.666667pt;}
.y7f{bottom:311.066667pt;}
.y99{bottom:312.133333pt;}
.y56{bottom:313.866667pt;}
.yaa{bottom:315.866667pt;}
.yd1{bottom:316.133333pt;}
.yf3{bottom:326.400000pt;}
.y24{bottom:328.398667pt;}
.y98{bottom:330.133333pt;}
.yd0{bottom:331.066667pt;}
.y55{bottom:331.866667pt;}
.ya9{bottom:333.866667pt;}
.y112{bottom:336.666667pt;}
.y7e{bottom:337.600000pt;}
.yf2{bottom:344.400000pt;}
.y23{bottom:346.398667pt;}
.y97{bottom:348.133333pt;}
.y54{bottom:349.866667pt;}
.yce{bottom:354.133333pt;}
.y111{bottom:354.666667pt;}
.ya8{bottom:359.866667pt;}
.ycf{bottom:361.066667pt;}
.yf1{bottom:362.400000pt;}
.y22{bottom:364.398667pt;}
.y53{bottom:367.866667pt;}
.ycd{bottom:369.066667pt;}
.y7d{bottom:371.066667pt;}
.y110{bottom:372.666667pt;}
.yf0{bottom:380.400000pt;}
.y21{bottom:382.398667pt;}
.ycc{bottom:384.133333pt;}
.y52{bottom:385.866667pt;}
.y7c{bottom:386.133333pt;}
.y96{bottom:390.000000pt;}
.y10f{bottom:390.666667pt;}
.yef{bottom:398.400000pt;}
.y20{bottom:400.398667pt;}
.y51{bottom:403.866667pt;}
.ycb{bottom:410.800000pt;}
.y95{bottom:416.666667pt;}
.y1f{bottom:418.398667pt;}
.y50{bottom:421.866667pt;}
.y7b{bottom:424.800000pt;}
.yee{bottom:425.066667pt;}
.yca{bottom:425.866667pt;}
.y10e{bottom:434.666667pt;}
.y4f{bottom:439.866667pt;}
.y7a{bottom:442.800000pt;}
.y94{bottom:443.333333pt;}
.y1e{bottom:445.198667pt;}
.yc9{bottom:448.800000pt;}
.y10d{bottom:452.666667pt;}
.y4e{bottom:457.866667pt;}
.y79{bottom:460.800000pt;}
.yed{bottom:468.400000pt;}
.y93{bottom:470.000000pt;}
.yc8{bottom:475.333333pt;}
.y4d{bottom:475.866667pt;}
.y10c{bottom:478.666667pt;}
.yc7{bottom:483.333333pt;}
.ya7{bottom:483.866667pt;}
.yec{bottom:486.400000pt;}
.y78{bottom:486.800000pt;}
.y1d{bottom:487.065333pt;}
.y92{bottom:496.666667pt;}
.yc6{bottom:498.400000pt;}
.y4c{bottom:501.866667pt;}
.yeb{bottom:504.400000pt;}
.y77{bottom:504.800000pt;}
.y1c{bottom:507.865333pt;}
.y10b{bottom:514.666667pt;}
.y4b{bottom:519.866667pt;}
.yc5{bottom:522.000000pt;}
.yea{bottom:522.400000pt;}
.y76{bottom:522.800000pt;}
.y1b{bottom:522.856000pt;}
.y91{bottom:523.333333pt;}
.y1a{bottom:537.846667pt;}
.y4a{bottom:537.866667pt;}
.ye9{bottom:540.400000pt;}
.y10a{bottom:540.666667pt;}
.y75{bottom:540.800000pt;}
.yc4{bottom:545.066667pt;}
.y90{bottom:550.000000pt;}
.y19{bottom:552.837333pt;}
.y49{bottom:555.866667pt;}
.ye8{bottom:558.400000pt;}
.y109{bottom:558.666667pt;}
.y74{bottom:566.800000pt;}
.y18{bottom:567.828000pt;}
.y48{bottom:573.866667pt;}
.yc3{bottom:576.133333pt;}
.ye7{bottom:576.400000pt;}
.y17{bottom:582.818667pt;}
.y8f{bottom:584.266667pt;}
.y108{bottom:584.666667pt;}
.y131{bottom:589.866667pt;}
.yc2{bottom:591.200000pt;}
.y47{bottom:591.866667pt;}
.y73{bottom:593.466667pt;}
.ye6{bottom:594.400000pt;}
.y16{bottom:597.809333pt;}
.ya6{bottom:599.866667pt;}
.y107{bottom:602.666667pt;}
.y130{bottom:607.866667pt;}
.y46{bottom:609.866667pt;}
.y8e{bottom:610.933333pt;}
.ye5{bottom:612.400000pt;}
.y15{bottom:612.800000pt;}
.y106{bottom:620.666667pt;}
.y45{bottom:627.866667pt;}
.yc1{bottom:629.866667pt;}
.ye4{bottom:630.400000pt;}
.ya5{bottom:632.666667pt;}
.y12f{bottom:633.866667pt;}
.y14{bottom:635.866667pt;}
.y72{bottom:636.800000pt;}
.y8d{bottom:637.600000pt;}
.y44{bottom:645.866667pt;}
.y105{bottom:646.666667pt;}
.yc0{bottom:647.866667pt;}
.ye3{bottom:648.400000pt;}
.y12e{bottom:651.866667pt;}
.y71{bottom:654.800000pt;}
.y8c{bottom:664.266667pt;}
.y13{bottom:665.600000pt;}
.ybf{bottom:665.866667pt;}
.ye2{bottom:666.400000pt;}
.y43{bottom:671.866667pt;}
.y70{bottom:672.800000pt;}
.y104{bottom:673.466667pt;}
.y12d{bottom:677.866667pt;}
.ybe{bottom:683.866667pt;}
.ye1{bottom:684.400000pt;}
.y12{bottom:686.266667pt;}
.y42{bottom:689.866667pt;}
.y8b{bottom:690.133333pt;}
.y12c{bottom:695.866667pt;}
.y6f{bottom:698.800000pt;}
.y11{bottom:701.266667pt;}
.ybd{bottom:701.866667pt;}
.ye0{bottom:702.400000pt;}
.y8a{bottom:705.200000pt;}
.y41{bottom:707.866667pt;}
.y12b{bottom:713.866667pt;}
.y103{bottom:716.133333pt;}
.y10{bottom:716.266667pt;}
.y6e{bottom:716.800000pt;}
.ybc{bottom:719.866667pt;}
.ydf{bottom:720.400000pt;}
.y40{bottom:725.866667pt;}
.yf{bottom:731.266667pt;}
.y6d{bottom:734.800000pt;}
.yde{bottom:738.400000pt;}
.y102{bottom:739.066667pt;}
.y12a{bottom:739.866667pt;}
.y3f{bottom:743.866667pt;}
.ybb{bottom:745.866667pt;}
.ye{bottom:746.266667pt;}
.y6c{bottom:752.800000pt;}
.y101{bottom:754.133333pt;}
.y129{bottom:757.866667pt;}
.yd{bottom:761.266667pt;}
.y3e{bottom:761.866667pt;}
.yba{bottom:763.866667pt;}
.ydd{bottom:764.400000pt;}
.yc{bottom:776.266667pt;}
.y100{bottom:777.066667pt;}
.y6b{bottom:778.800000pt;}
.y3d{bottom:779.866667pt;}
.y11f{bottom:781.866667pt;}
.y128{bottom:783.866667pt;}
.yb9{bottom:789.866667pt;}
.yb{bottom:791.266667pt;}
.y6a{bottom:796.800000pt;}
.y3c{bottom:797.866667pt;}
.y127{bottom:801.866667pt;}
.y89{bottom:805.866667pt;}
.ya{bottom:806.266667pt;}
.yb8{bottom:807.866667pt;}
.y3b{bottom:815.866667pt;}
.y69{bottom:822.800000pt;}
.y88{bottom:823.866667pt;}
.y11e{bottom:825.866667pt;}
.y126{bottom:827.866667pt;}
.y3a{bottom:833.866667pt;}
.y9{bottom:838.000000pt;}
.y68{bottom:840.800000pt;}
.y87{bottom:841.866667pt;}
.y11d{bottom:843.866667pt;}
.y125{bottom:845.866667pt;}
.yb7{bottom:851.866667pt;}
.y39{bottom:859.866667pt;}
.y67{bottom:866.800000pt;}
.yb6{bottom:869.866667pt;}
.y124{bottom:871.866667pt;}
.y8{bottom:872.000000pt;}
.y7{bottom:877.733333pt;}
.y38{bottom:877.866667pt;}
.y66{bottom:884.800000pt;}
.yb5{bottom:887.866667pt;}
.y123{bottom:889.866667pt;}
.y6{bottom:890.000000pt;}
.y37{bottom:895.866667pt;}
.y65{bottom:902.800000pt;}
.yb4{bottom:905.866667pt;}
.y36{bottom:913.866667pt;}
.y122{bottom:915.866667pt;}
.y5{bottom:916.000000pt;}
.y64{bottom:920.800000pt;}
.yb3{bottom:923.866667pt;}
.y35{bottom:931.866667pt;}
.y121{bottom:933.866667pt;}
.y63{bottom:938.800000pt;}
.y34{bottom:949.866667pt;}
.y4{bottom:952.133333pt;}
.y62{bottom:956.800000pt;}
.y120{bottom:959.866667pt;}
.y33{bottom:967.866667pt;}
.y3{bottom:979.066667pt;}
.y61{bottom:983.600000pt;}
.y32{bottom:985.866667pt;}
.y2{bottom:1037.733333pt;}
.h6{height:26.911458pt;}
.h2{height:35.708333pt;}
.h8{height:37.135417pt;}
.h5{height:44.562500pt;}
.h7{height:44.635417pt;}
.h9{height:45.088542pt;}
.h4{height:48.928125pt;}
.ha{height:51.989583pt;}
.hb{height:53.562500pt;}
.h3{height:66.843750pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:112.669333pt;}
.x1{left:113.600000pt;}
.x3{left:117.209333pt;}
.x15{left:123.066667pt;}
.xd{left:132.133333pt;}
.xb{left:137.600000pt;}
.x10{left:140.400000pt;}
.x14{left:142.133333pt;}
.x11{left:145.733333pt;}
.x12{left:148.800000pt;}
.xe{left:150.133333pt;}
.x13{left:151.200000pt;}
.xf{left:155.600000pt;}
.x49{left:158.933333pt;}
.xc{left:161.600000pt;}
.x8{left:212.558667pt;}
.x17{left:214.266667pt;}
.x27{left:219.066667pt;}
.x3c{left:222.133333pt;}
.x16{left:223.866667pt;}
.x26{left:229.066667pt;}
.x33{left:232.266667pt;}
.x4{left:242.026667pt;}
.x5{left:247.230667pt;}
.x6{left:264.666667pt;}
.x7{left:269.821333pt;}
.x19{left:279.600000pt;}
.x35{left:283.866667pt;}
.x29{left:285.333333pt;}
.x46{left:286.933333pt;}
.x18{left:288.266667pt;}
.x3d{left:291.600000pt;}
.x28{left:293.866667pt;}
.x34{left:297.066667pt;}
.x1b{left:345.333333pt;}
.x2a{left:350.000000pt;}
.x37{left:353.200000pt;}
.x1a{left:354.400000pt;}
.x3e{left:357.733333pt;}
.x9{left:359.466667pt;}
.x36{left:363.200000pt;}
.x4a{left:369.866667pt;}
.xa{left:396.533333pt;}
.x1d{left:406.800000pt;}
.x1c{left:415.866667pt;}
.x40{left:419.200000pt;}
.x2b{left:421.600000pt;}
.x3f{left:424.666667pt;}
.x1f{left:463.600000pt;}
.x2d{left:468.400000pt;}
.x47{left:471.466667pt;}
.x1e{left:472.800000pt;}
.x41{left:476.133333pt;}
.x2c{left:478.400000pt;}
.x38{left:481.600000pt;}
.x21{left:520.533333pt;}
.x2f{left:524.800000pt;}
.x20{left:529.200000pt;}
.x42{left:532.533333pt;}
.x2e{left:534.933333pt;}
.x39{left:538.000000pt;}
.x23{left:576.533333pt;}
.x3a{left:581.333333pt;}
.x44{left:584.400000pt;}
.x22{left:585.733333pt;}
.x30{left:591.333333pt;}
.x43{left:594.533333pt;}
.x25{left:642.266667pt;}
.x32{left:646.400000pt;}
.x48{left:649.600000pt;}
.x24{left:650.800000pt;}
.x45{left:654.133333pt;}
.x31{left:656.533333pt;}
.x3b{left:659.600000pt;}
}




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