
    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_0c6f04662ee6d2b7ff7540a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_6e923f5983e0720880c4761d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_18dbedf6099faf30565cf293.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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;}
.m3{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:22.500000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls6{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.456000px;}
.ls5{letter-spacing:0.933000px;}
.lsb{letter-spacing:1.212000px;}
.ls4{letter-spacing:1.500000px;}
.ls8{letter-spacing:1.512000px;}
.ls1{letter-spacing:1.518000px;}
.lsa{letter-spacing:18.000000px;}
.ls9{letter-spacing:18.006000px;}
.ls3{letter-spacing:18.933000px;}
.ls2{letter-spacing:20.994000px;}
.lsd{letter-spacing:78.018000px;}
.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;}
}
.ws5f{word-spacing:-18.348000px;}
.ws5e{word-spacing:-18.246000px;}
.ws5d{word-spacing:-18.078000px;}
.ws3{word-spacing:-17.640000px;}
.ws26{word-spacing:-17.478000px;}
.ws59{word-spacing:-17.364000px;}
.ws23{word-spacing:-17.262000px;}
.ws73{word-spacing:-17.124000px;}
.ws38{word-spacing:-17.070000px;}
.ws6c{word-spacing:-16.908000px;}
.ws39{word-spacing:-16.884000px;}
.ws2d{word-spacing:-16.866000px;}
.ws37{word-spacing:-16.830000px;}
.ws5c{word-spacing:-16.752000px;}
.ws2c{word-spacing:-16.656000px;}
.ws4f{word-spacing:-16.590000px;}
.ws15{word-spacing:-16.500000px;}
.ws6d{word-spacing:-16.482000px;}
.ws6f{word-spacing:-16.464000px;}
.wsf{word-spacing:-16.440000px;}
.ws29{word-spacing:-16.416000px;}
.ws68{word-spacing:-16.410000px;}
.ws72{word-spacing:-16.392000px;}
.ws47{word-spacing:-16.368000px;}
.ws1d{word-spacing:-16.356000px;}
.ws56{word-spacing:-16.338000px;}
.ws69{word-spacing:-16.332000px;}
.ws57{word-spacing:-16.308000px;}
.ws28{word-spacing:-16.260000px;}
.ws3a{word-spacing:-16.254000px;}
.ws19{word-spacing:-16.218000px;}
.ws13{word-spacing:-16.188000px;}
.ws70{word-spacing:-16.176000px;}
.ws12{word-spacing:-16.170000px;}
.ws14{word-spacing:-16.098000px;}
.ws35{word-spacing:-16.074000px;}
.ws11{word-spacing:-16.068000px;}
.ws1c{word-spacing:-16.020000px;}
.ws31{word-spacing:-16.002000px;}
.ws71{word-spacing:-15.966000px;}
.ws6e{word-spacing:-15.870000px;}
.wse{word-spacing:-15.840000px;}
.ws4d{word-spacing:-15.798000px;}
.ws32{word-spacing:-15.780000px;}
.ws60{word-spacing:-15.708000px;}
.ws10{word-spacing:-15.690000px;}
.ws49{word-spacing:-15.672000px;}
.ws34{word-spacing:-15.510000px;}
.ws33{word-spacing:-15.492000px;}
.ws5b{word-spacing:-15.432000px;}
.ws48{word-spacing:-15.300000px;}
.ws61{word-spacing:-15.252000px;}
.ws4b{word-spacing:-15.210000px;}
.wsc{word-spacing:-15.180000px;}
.ws27{word-spacing:-15.000000px;}
.ws4a{word-spacing:-14.994000px;}
.ws36{word-spacing:-14.916000px;}
.ws6a{word-spacing:-14.802000px;}
.ws2a{word-spacing:-14.700000px;}
.wsd{word-spacing:-14.682000px;}
.ws6b{word-spacing:-14.664000px;}
.ws46{word-spacing:-14.538000px;}
.ws9{word-spacing:-14.535000px;}
.ws0{word-spacing:-14.250000px;}
.ws5{word-spacing:-14.244000px;}
.ws7{word-spacing:-14.034000px;}
.ws6{word-spacing:-14.016000px;}
.ws4{word-spacing:-13.968000px;}
.ws8{word-spacing:-13.830000px;}
.ws1b{word-spacing:-13.770000px;}
.ws16{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.230000px;}
.ws18{word-spacing:-12.960000px;}
.ws4c{word-spacing:-12.690000px;}
.ws2{word-spacing:-12.294000px;}
.wsa{word-spacing:-11.994000px;}
.ws17{word-spacing:-11.542500px;}
.ws20{word-spacing:-1.392000px;}
.ws22{word-spacing:-1.320000px;}
.ws1{word-spacing:0.000000px;}
.ws54{word-spacing:0.900000px;}
.ws2f{word-spacing:1.026000px;}
.ws2e{word-spacing:1.200000px;}
.ws45{word-spacing:1.278000px;}
.ws30{word-spacing:1.284000px;}
.ws55{word-spacing:1.320000px;}
.ws44{word-spacing:1.344000px;}
.ws21{word-spacing:1.380000px;}
.ws43{word-spacing:1.416000px;}
.ws24{word-spacing:1.812000px;}
.ws51{word-spacing:2.130000px;}
.ws50{word-spacing:2.136000px;}
.ws53{word-spacing:2.784000px;}
.ws52{word-spacing:3.264000px;}
.ws1e{word-spacing:3.858000px;}
.ws4e{word-spacing:4.080000px;}
.ws1f{word-spacing:4.164000px;}
.ws1a{word-spacing:4.518000px;}
.ws25{word-spacing:7.878000px;}
.ws3c{word-spacing:42.420000px;}
.ws5a{word-spacing:55.620000px;}
.ws58{word-spacing:66.420000px;}
.ws65{word-spacing:73.032000px;}
.ws67{word-spacing:73.044000px;}
.ws63{word-spacing:75.030000px;}
.ws64{word-spacing:79.068000px;}
.ws66{word-spacing:93.012000px;}
.ws2b{word-spacing:96.714000px;}
.ws62{word-spacing:112.200000px;}
.ws3b{word-spacing:145.680000px;}
.ws42{word-spacing:163.584000px;}
.ws3f{word-spacing:182.778000px;}
.ws41{word-spacing:182.820000px;}
.ws3d{word-spacing:226.704000px;}
.ws3e{word-spacing:227.022000px;}
.ws40{word-spacing:244.332000px;}
._9{margin-left:-9.060000px;}
._b{margin-left:-7.455000px;}
._11{margin-left:-5.985000px;}
._e{margin-left:-4.560000px;}
._4{margin-left:-2.928000px;}
._3{margin-left:-1.536000px;}
._0{width:1.488000px;}
._2{width:3.024000px;}
._5{width:4.419000px;}
._6{width:6.069000px;}
._16{width:7.614000px;}
._12{width:8.994000px;}
._7{width:10.470000px;}
._8{width:12.030000px;}
._10{width:13.698000px;}
._30{width:14.790000px;}
._14{width:16.560000px;}
._17{width:17.979000px;}
._a{width:19.338000px;}
._85{width:20.940000px;}
._86{width:22.686000px;}
._f{width:24.951000px;}
._ad{width:28.194000px;}
._93{width:30.030000px;}
._1f{width:40.524000px;}
._15{width:44.943000px;}
._1{width:47.928000px;}
._c{width:49.428000px;}
._13{width:51.000000px;}
._39{width:58.740000px;}
._88{width:70.170000px;}
._ae{width:74.748000px;}
._96{width:76.236000px;}
._9b{width:78.660000px;}
._38{width:81.840000px;}
._a9{width:84.276000px;}
._72{width:85.500000px;}
._95{width:90.120000px;}
._2a{width:93.366000px;}
._7b{width:95.244000px;}
._a3{width:98.298000px;}
._9f{width:102.228000px;}
._aa{width:106.248000px;}
._ab{width:108.300000px;}
._28{width:112.014000px;}
._48{width:113.898000px;}
._84{width:126.864000px;}
._8d{width:128.676000px;}
._a4{width:132.000000px;}
._71{width:138.072000px;}
._2d{width:140.511000px;}
._a6{width:141.906000px;}
._a5{width:143.313000px;}
._80{width:144.594000px;}
._92{width:147.924000px;}
._83{width:151.842000px;}
._25{width:155.820000px;}
._51{width:157.062000px;}
._a1{width:159.882000px;}
._36{width:165.420000px;}
._74{width:166.530000px;}
._77{width:167.556000px;}
._9c{width:170.334000px;}
._8a{width:171.504000px;}
._78{width:174.030000px;}
._66{width:175.452000px;}
._7f{width:177.528000px;}
._68{width:178.542000px;}
._5f{width:180.468000px;}
._8e{width:182.184000px;}
._98{width:183.498000px;}
._81{width:185.202000px;}
._6c{width:188.100000px;}
._4b{width:196.578000px;}
._41{width:197.778000px;}
._4a{width:201.624000px;}
._b1{width:202.794000px;}
._7d{width:206.568000px;}
._63{width:209.766000px;}
._37{width:211.512000px;}
._b0{width:215.112000px;}
._90{width:216.744000px;}
._8c{width:218.412000px;}
._43{width:220.860000px;}
._a8{width:222.000000px;}
._31{width:223.464000px;}
._52{width:225.390000px;}
._56{width:229.380000px;}
._22{width:232.818000px;}
._a7{width:233.874000px;}
._ac{width:235.338000px;}
._3f{width:238.836000px;}
._6d{width:240.384000px;}
._50{width:242.022000px;}
._99{width:243.414000px;}
._1d{width:244.692000px;}
._70{width:246.000000px;}
._69{width:252.498000px;}
._55{width:253.560000px;}
._8b{width:255.084000px;}
._8f{width:256.746000px;}
._4d{width:259.590000px;}
._57{width:260.694000px;}
._53{width:262.434000px;}
._3b{width:265.146000px;}
._6f{width:266.892000px;}
._6b{width:270.876000px;}
._6a{width:272.028000px;}
._73{width:282.630000px;}
._5c{width:284.382000px;}
._59{width:286.482000px;}
._29{width:289.860000px;}
._27{width:294.948000px;}
._46{width:296.868000px;}
._2e{width:305.169000px;}
._75{width:314.970000px;}
._5b{width:320.850000px;}
._1a{width:324.198000px;}
._2b{width:326.046000px;}
._45{width:327.240000px;}
._76{width:329.958000px;}
._3c{width:334.038000px;}
._44{width:336.498000px;}
._40{width:338.256000px;}
._94{width:349.329000px;}
._62{width:351.396000px;}
._54{width:356.460000px;}
._3e{width:359.364000px;}
._61{width:360.480000px;}
._47{width:361.506000px;}
._7e{width:366.174000px;}
._a2{width:367.338000px;}
._2c{width:371.046000px;}
._af{width:372.090000px;}
._79{width:383.958000px;}
._67{width:386.238000px;}
._1b{width:411.222000px;}
._5e{width:444.300000px;}
._6e{width:451.842000px;}
._21{width:480.258000px;}
._5d{width:491.718000px;}
._20{width:503.982000px;}
._d{width:505.416000px;}
._9a{width:520.362000px;}
._24{width:525.417000px;}
._7c{width:526.998000px;}
._26{width:530.409000px;}
._7a{width:551.688000px;}
._91{width:564.426000px;}
._82{width:567.096000px;}
._18{width:578.958000px;}
._87{width:590.028000px;}
._4f{width:621.558000px;}
._89{width:632.970000px;}
._97{width:642.084000px;}
._19{width:658.614000px;}
._1e{width:660.174000px;}
._4c{width:665.316000px;}
._58{width:666.318000px;}
._5a{width:701.052000px;}
._a0{width:713.922000px;}
._60{width:723.126000px;}
._23{width:745.782000px;}
._42{width:747.900000px;}
._1c{width:757.608000px;}
._64{width:768.906000px;}
._49{width:797.634000px;}
._2f{width:805.674000px;}
._9d{width:808.521000px;}
._65{width:817.374000px;}
._9e{width:820.326000px;}
._3d{width:975.084000px;}
._3a{width:1024.632000px;}
._4e{width:1061.904000px;}
._33{width:1300.476000px;}
._34{width:1315.518000px;}
._32{width:1339.488000px;}
._35{width:1367.988000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:46.170000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:54.750000px;}
.y78{bottom:55.875000px;}
.yd7{bottom:57.000000px;}
.yac{bottom:57.750000px;}
.y155{bottom:60.000000px;}
.yff{bottom:61.500000px;}
.y23{bottom:69.000000px;}
.y77{bottom:73.125000px;}
.yd6{bottom:74.250000px;}
.yab{bottom:75.000000px;}
.y154{bottom:77.250000px;}
.yfe{bottom:79.500000px;}
.y22{bottom:80.625000px;}
.y8b{bottom:83.250000px;}
.y76{bottom:90.375000px;}
.yd5{bottom:91.500000px;}
.yaa{bottom:92.250000px;}
.y153{bottom:94.500000px;}
.y21{bottom:95.625000px;}
.yfd{bottom:97.125000px;}
.y8a{bottom:97.500000px;}
.y75{bottom:107.625000px;}
.yd4{bottom:108.750000px;}
.ya9{bottom:109.500000px;}
.y89{bottom:111.750000px;}
.yfc{bottom:115.125000px;}
.y20{bottom:116.625000px;}
.y42{bottom:117.375000px;}
.y92{bottom:124.875000px;}
.y88{bottom:126.000000px;}
.ya8{bottom:126.750000px;}
.y152{bottom:129.000000px;}
.y1f{bottom:131.625000px;}
.y74{bottom:133.500000px;}
.y41{bottom:134.625000px;}
.y87{bottom:140.250000px;}
.yfb{bottom:141.375000px;}
.y91{bottom:142.125000px;}
.yd3{bottom:143.250000px;}
.ya7{bottom:144.000000px;}
.y151{bottom:146.250000px;}
.y1e{bottom:146.625000px;}
.y114{bottom:148.125000px;}
.y100{bottom:150.750000px;}
.y40{bottom:151.875000px;}
.y86{bottom:154.500000px;}
.y90{bottom:159.375000px;}
.yd2{bottom:160.500000px;}
.ya6{bottom:161.250000px;}
.y1d{bottom:161.625000px;}
.y150{bottom:163.500000px;}
.y113{bottom:165.375000px;}
.y137{bottom:168.000000px;}
.y85{bottom:168.750000px;}
.y3f{bottom:169.125000px;}
.y1c{bottom:176.625000px;}
.yfa{bottom:177.375000px;}
.yd1{bottom:177.750000px;}
.ya5{bottom:178.500000px;}
.y14f{bottom:180.750000px;}
.y112{bottom:182.625000px;}
.y84{bottom:183.000000px;}
.y136{bottom:185.250000px;}
.y3e{bottom:186.375000px;}
.y1b{bottom:191.625000px;}
.yf9{bottom:193.125000px;}
.y73{bottom:193.875000px;}
.yd0{bottom:195.000000px;}
.ya4{bottom:195.750000px;}
.y83{bottom:197.250000px;}
.y14e{bottom:198.000000px;}
.y111{bottom:199.875000px;}
.y3d{bottom:203.625000px;}
.y1a{bottom:206.625000px;}
.y72{bottom:211.125000px;}
.y82{bottom:211.500000px;}
.ycf{bottom:212.250000px;}
.ya3{bottom:213.000000px;}
.yf8{bottom:215.250000px;}
.y110{bottom:217.125000px;}
.y135{bottom:219.750000px;}
.y3c{bottom:220.875000px;}
.y19{bottom:221.625000px;}
.y81{bottom:225.750000px;}
.y71{bottom:228.375000px;}
.yce{bottom:229.500000px;}
.ya2{bottom:230.250000px;}
.y14d{bottom:232.500000px;}
.yf7{bottom:233.250000px;}
.y10f{bottom:234.375000px;}
.y18{bottom:236.625000px;}
.y134{bottom:237.000000px;}
.y3b{bottom:238.125000px;}
.y80{bottom:240.000000px;}
.y70{bottom:245.625000px;}
.ycd{bottom:246.750000px;}
.ya1{bottom:247.500000px;}
.yf6{bottom:249.000000px;}
.y14c{bottom:249.750000px;}
.y17{bottom:251.625000px;}
.y7f{bottom:254.250000px;}
.y3a{bottom:255.375000px;}
.y6f{bottom:262.875000px;}
.ycc{bottom:264.000000px;}
.y171{bottom:264.750000px;}
.y14b{bottom:267.000000px;}
.y7e{bottom:268.500000px;}
.y10e{bottom:268.875000px;}
.yf5{bottom:271.500000px;}
.y39{bottom:272.625000px;}
.y6e{bottom:280.125000px;}
.ycb{bottom:281.250000px;}
.y16{bottom:281.625000px;}
.ya0{bottom:282.000000px;}
.y7d{bottom:282.750000px;}
.y14a{bottom:284.250000px;}
.y10d{bottom:286.125000px;}
.y133{bottom:288.750000px;}
.yf4{bottom:289.125000px;}
.y38{bottom:289.875000px;}
.y7c{bottom:297.000000px;}
.y6d{bottom:297.375000px;}
.yca{bottom:298.500000px;}
.y9f{bottom:299.250000px;}
.y149{bottom:301.500000px;}
.y10c{bottom:303.375000px;}
.yf3{bottom:304.875000px;}
.y132{bottom:306.000000px;}
.y37{bottom:307.125000px;}
.y7b{bottom:311.250000px;}
.y8f{bottom:314.625000px;}
.yc9{bottom:315.750000px;}
.y9e{bottom:316.500000px;}
.y15{bottom:317.625000px;}
.y148{bottom:318.750000px;}
.y10b{bottom:320.625000px;}
.y131{bottom:323.250000px;}
.y36{bottom:324.375000px;}
.y7a{bottom:325.500000px;}
.yf2{bottom:327.375000px;}
.y6c{bottom:331.875000px;}
.y14{bottom:332.625000px;}
.yc8{bottom:333.000000px;}
.y9d{bottom:333.750000px;}
.y147{bottom:336.000000px;}
.y10a{bottom:337.875000px;}
.y79{bottom:339.750000px;}
.y8e{bottom:340.500000px;}
.y35{bottom:341.625000px;}
.yf1{bottom:345.375000px;}
.y6b{bottom:349.125000px;}
.yc7{bottom:350.250000px;}
.y9c{bottom:351.000000px;}
.y146{bottom:353.250000px;}
.y13{bottom:353.625000px;}
.y109{bottom:355.125000px;}
.y8d{bottom:357.750000px;}
.y34{bottom:358.875000px;}
.yf0{bottom:363.000000px;}
.y6a{bottom:366.375000px;}
.yc6{bottom:367.500000px;}
.y170{bottom:368.250000px;}
.y12{bottom:368.625000px;}
.y145{bottom:370.500000px;}
.y108{bottom:372.375000px;}
.y130{bottom:375.000000px;}
.y33{bottom:376.125000px;}
.y9b{bottom:376.875000px;}
.yef{bottom:381.000000px;}
.y11{bottom:383.625000px;}
.yc5{bottom:384.750000px;}
.y16f{bottom:385.500000px;}
.y144{bottom:387.750000px;}
.y107{bottom:389.625000px;}
.y12f{bottom:392.250000px;}
.y32{bottom:393.375000px;}
.yee{bottom:396.750000px;}
.y10{bottom:398.625000px;}
.y69{bottom:400.875000px;}
.yc4{bottom:402.000000px;}
.y16e{bottom:402.750000px;}
.y143{bottom:405.000000px;}
.y106{bottom:406.875000px;}
.y12e{bottom:409.500000px;}
.y31{bottom:410.625000px;}
.yf{bottom:413.625000px;}
.y68{bottom:418.125000px;}
.yed{bottom:419.250000px;}
.y16d{bottom:420.000000px;}
.y105{bottom:424.125000px;}
.ydb{bottom:426.750000px;}
.y30{bottom:427.875000px;}
.ye{bottom:428.625000px;}
.y67{bottom:435.375000px;}
.yec{bottom:436.875000px;}
.y16c{bottom:437.250000px;}
.y142{bottom:439.500000px;}
.y104{bottom:441.375000px;}
.yd{bottom:443.625000px;}
.y8c{bottom:444.000000px;}
.y2f{bottom:445.125000px;}
.ybb{bottom:447.000000px;}
.y66{bottom:452.625000px;}
.y15e{bottom:453.750000px;}
.y16b{bottom:454.500000px;}
.yeb{bottom:454.875000px;}
.y141{bottom:456.750000px;}
.yc{bottom:458.625000px;}
.y12d{bottom:461.250000px;}
.y2e{bottom:462.375000px;}
.yba{bottom:462.750000px;}
.y65{bottom:469.875000px;}
.y15d{bottom:471.000000px;}
.y16a{bottom:471.750000px;}
.yea{bottom:472.875000px;}
.yb{bottom:473.625000px;}
.y140{bottom:474.000000px;}
.y103{bottom:475.875000px;}
.y12c{bottom:478.500000px;}
.y2d{bottom:479.625000px;}
.y64{bottom:487.125000px;}
.yb9{bottom:487.875000px;}
.yc3{bottom:488.250000px;}
.ya{bottom:488.625000px;}
.y169{bottom:489.000000px;}
.ye9{bottom:490.500000px;}
.y13f{bottom:491.250000px;}
.y102{bottom:493.125000px;}
.y12b{bottom:495.750000px;}
.y2c{bottom:496.875000px;}
.y9{bottom:503.625000px;}
.y63{bottom:504.375000px;}
.yc2{bottom:505.500000px;}
.ye8{bottom:506.250000px;}
.y13e{bottom:508.500000px;}
.y101{bottom:510.375000px;}
.y12a{bottom:513.000000px;}
.y2b{bottom:514.125000px;}
.yb8{bottom:519.375000px;}
.y62{bottom:521.625000px;}
.yc1{bottom:522.750000px;}
.y13d{bottom:525.750000px;}
.ye7{bottom:528.750000px;}
.y129{bottom:530.250000px;}
.y2a{bottom:531.375000px;}
.y8{bottom:533.625000px;}
.y61{bottom:538.875000px;}
.yc0{bottom:540.000000px;}
.y13c{bottom:543.000000px;}
.yb7{bottom:544.500000px;}
.y17c{bottom:546.375000px;}
.y128{bottom:547.500000px;}
.y29{bottom:548.625000px;}
.ye6{bottom:555.000000px;}
.y60{bottom:556.125000px;}
.ybf{bottom:557.250000px;}
.y13b{bottom:560.250000px;}
.y17b{bottom:562.125000px;}
.y127{bottom:564.750000px;}
.y28{bottom:565.875000px;}
.yb6{bottom:569.625000px;}
.ye5{bottom:573.000000px;}
.y5f{bottom:573.375000px;}
.y15c{bottom:574.500000px;}
.y13a{bottom:577.500000px;}
.y17a{bottom:577.875000px;}
.y126{bottom:582.000000px;}
.y27{bottom:583.125000px;}
.yb5{bottom:585.375000px;}
.y119{bottom:586.875000px;}
.y5e{bottom:590.625000px;}
.ye4{bottom:591.000000px;}
.ybe{bottom:591.750000px;}
.y179{bottom:593.625000px;}
.y139{bottom:594.750000px;}
.y125{bottom:599.250000px;}
.y26{bottom:600.375000px;}
.yb4{bottom:605.625000px;}
.y5d{bottom:607.875000px;}
.ye3{bottom:608.625000px;}
.ybd{bottom:609.000000px;}
.y178{bottom:609.375000px;}
.y138{bottom:612.000000px;}
.y9a{bottom:612.375000px;}
.y118{bottom:613.875000px;}
.y124{bottom:616.500000px;}
.y168{bottom:622.875000px;}
.y5c{bottom:625.125000px;}
.y25{bottom:626.250000px;}
.yb3{bottom:631.125000px;}
.y123{bottom:633.750000px;}
.ye2{bottom:635.250000px;}
.y99{bottom:640.500000px;}
.y117{bottom:640.875000px;}
.y5b{bottom:642.375000px;}
.ybc{bottom:643.500000px;}
.yb2{bottom:646.875000px;}
.y167{bottom:648.375000px;}
.y122{bottom:651.000000px;}
.ye1{bottom:652.875000px;}
.y177{bottom:656.625000px;}
.y5a{bottom:659.625000px;}
.yb1{bottom:662.625000px;}
.y116{bottom:667.875000px;}
.y121{bottom:668.250000px;}
.y98{bottom:668.625000px;}
.ye0{bottom:670.875000px;}
.y166{bottom:673.875000px;}
.y162{bottom:674.250000px;}
.y59{bottom:676.875000px;}
.yb0{bottom:678.375000px;}
.y4a{bottom:681.750000px;}
.y120{bottom:685.500000px;}
.ydf{bottom:688.875000px;}
.y161{bottom:690.000000px;}
.y7{bottom:691.125000px;}
.y50{bottom:693.750000px;}
.y58{bottom:694.125000px;}
.y115{bottom:694.875000px;}
.y97{bottom:696.375000px;}
.y49{bottom:696.750000px;}
.y165{bottom:699.375000px;}
.y11f{bottom:702.750000px;}
.y6{bottom:705.375000px;}
.yde{bottom:706.500000px;}
.yda{bottom:708.375000px;}
.y15b{bottom:708.750000px;}
.y176{bottom:709.500000px;}
.y57{bottom:711.375000px;}
.y160{bottom:714.000000px;}
.y4f{bottom:714.750000px;}
.y48{bottom:717.750000px;}
.y11e{bottom:720.000000px;}
.yaf{bottom:721.875000px;}
.y5{bottom:723.375000px;}
.y96{bottom:724.500000px;}
.y164{bottom:724.875000px;}
.y56{bottom:728.625000px;}
.y4e{bottom:729.750000px;}
.yd9{bottom:730.875000px;}
.y175{bottom:732.000000px;}
.y47{bottom:732.750000px;}
.y15a{bottom:735.750000px;}
.y11d{bottom:737.250000px;}
.y15f{bottom:738.375000px;}
.y4{bottom:741.375000px;}
.ydd{bottom:742.500000px;}
.y4d{bottom:744.750000px;}
.y55{bottom:745.875000px;}
.yae{bottom:748.875000px;}
.y163{bottom:750.375000px;}
.y95{bottom:752.625000px;}
.yd8{bottom:753.375000px;}
.y46{bottom:753.750000px;}
.y11c{bottom:754.500000px;}
.ydc{bottom:760.125000px;}
.y159{bottom:762.750000px;}
.y54{bottom:763.125000px;}
.y4c{bottom:765.750000px;}
.y11b{bottom:771.750000px;}
.y45{bottom:774.750000px;}
.yad{bottom:775.875000px;}
.y174{bottom:777.000000px;}
.y53{bottom:780.375000px;}
.y4b{bottom:780.750000px;}
.y158{bottom:783.000000px;}
.y3{bottom:786.375000px;}
.y11a{bottom:789.000000px;}
.y44{bottom:795.750000px;}
.y94{bottom:796.125000px;}
.y173{bottom:797.250000px;}
.y52{bottom:797.625000px;}
.y157{bottom:798.750000px;}
.y2{bottom:810.375000px;}
.y51{bottom:814.875000px;}
.y43{bottom:820.875000px;}
.y93{bottom:821.625000px;}
.y172{bottom:822.750000px;}
.y156{bottom:824.250000px;}
.y1{bottom:862.125000px;}
.h1{height:51.216000px;}
.h4{height:57.618000px;}
.ha{height:58.536000px;}
.h5{height:60.819000px;}
.h6{height:61.788000px;}
.hb{height:64.020000px;}
.hc{height:65.040000px;}
.h7{height:70.422000px;}
.h8{height:71.544000px;}
.h9{height:71.763390px;}
.h3{height:76.824000px;}
.h2{height:102.432000px;}
.h0{height:892.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x2{left:75.241500px;}
.x9{left:81.691500px;}
.x18{left:85.852500px;}
.x12{left:92.256900px;}
.x8{left:95.854500px;}
.x3{left:97.353000px;}
.xe{left:105.150000px;}
.x14{left:109.300500px;}
.x13{left:112.312500px;}
.xf{left:124.312500px;}
.xa{left:132.957000px;}
.x7{left:138.079500px;}
.x10{left:147.006000px;}
.x11{left:148.312500px;}
.x1a{left:182.437500px;}
.x6{left:217.582500px;}
.x5{left:220.387500px;}
.x19{left:227.698500px;}
.xb{left:233.898000px;}
.x17{left:239.812500px;}
.x16{left:258.562500px;}
.x15{left:283.405500px;}
.x4{left:294.289500px;}
.xc{left:331.294500px;}
.xd{left:356.880000px;}
.x1{left:430.312500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:20.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls6{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.405333pt;}
.ls5{letter-spacing:0.829333pt;}
.lsb{letter-spacing:1.077333pt;}
.ls4{letter-spacing:1.333333pt;}
.ls8{letter-spacing:1.344000pt;}
.ls1{letter-spacing:1.349333pt;}
.lsa{letter-spacing:16.000000pt;}
.ls9{letter-spacing:16.005333pt;}
.ls3{letter-spacing:16.829333pt;}
.ls2{letter-spacing:18.661333pt;}
.lsd{letter-spacing:69.349333pt;}
.ws5f{word-spacing:-16.309333pt;}
.ws5e{word-spacing:-16.218667pt;}
.ws5d{word-spacing:-16.069333pt;}
.ws3{word-spacing:-15.680000pt;}
.ws26{word-spacing:-15.536000pt;}
.ws59{word-spacing:-15.434667pt;}
.ws23{word-spacing:-15.344000pt;}
.ws73{word-spacing:-15.221333pt;}
.ws38{word-spacing:-15.173333pt;}
.ws6c{word-spacing:-15.029333pt;}
.ws39{word-spacing:-15.008000pt;}
.ws2d{word-spacing:-14.992000pt;}
.ws37{word-spacing:-14.960000pt;}
.ws5c{word-spacing:-14.890667pt;}
.ws2c{word-spacing:-14.805333pt;}
.ws4f{word-spacing:-14.746667pt;}
.ws15{word-spacing:-14.666667pt;}
.ws6d{word-spacing:-14.650667pt;}
.ws6f{word-spacing:-14.634667pt;}
.wsf{word-spacing:-14.613333pt;}
.ws29{word-spacing:-14.592000pt;}
.ws68{word-spacing:-14.586667pt;}
.ws72{word-spacing:-14.570667pt;}
.ws47{word-spacing:-14.549333pt;}
.ws1d{word-spacing:-14.538667pt;}
.ws56{word-spacing:-14.522667pt;}
.ws69{word-spacing:-14.517333pt;}
.ws57{word-spacing:-14.496000pt;}
.ws28{word-spacing:-14.453333pt;}
.ws3a{word-spacing:-14.448000pt;}
.ws19{word-spacing:-14.416000pt;}
.ws13{word-spacing:-14.389333pt;}
.ws70{word-spacing:-14.378667pt;}
.ws12{word-spacing:-14.373333pt;}
.ws14{word-spacing:-14.309333pt;}
.ws35{word-spacing:-14.288000pt;}
.ws11{word-spacing:-14.282667pt;}
.ws1c{word-spacing:-14.240000pt;}
.ws31{word-spacing:-14.224000pt;}
.ws71{word-spacing:-14.192000pt;}
.ws6e{word-spacing:-14.106667pt;}
.wse{word-spacing:-14.080000pt;}
.ws4d{word-spacing:-14.042667pt;}
.ws32{word-spacing:-14.026667pt;}
.ws60{word-spacing:-13.962667pt;}
.ws10{word-spacing:-13.946667pt;}
.ws49{word-spacing:-13.930667pt;}
.ws34{word-spacing:-13.786667pt;}
.ws33{word-spacing:-13.770667pt;}
.ws5b{word-spacing:-13.717333pt;}
.ws48{word-spacing:-13.600000pt;}
.ws61{word-spacing:-13.557333pt;}
.ws4b{word-spacing:-13.520000pt;}
.wsc{word-spacing:-13.493333pt;}
.ws27{word-spacing:-13.333333pt;}
.ws4a{word-spacing:-13.328000pt;}
.ws36{word-spacing:-13.258667pt;}
.ws6a{word-spacing:-13.157333pt;}
.ws2a{word-spacing:-13.066667pt;}
.wsd{word-spacing:-13.050667pt;}
.ws6b{word-spacing:-13.034667pt;}
.ws46{word-spacing:-12.922667pt;}
.ws9{word-spacing:-12.920000pt;}
.ws0{word-spacing:-12.666667pt;}
.ws5{word-spacing:-12.661333pt;}
.ws7{word-spacing:-12.474667pt;}
.ws6{word-spacing:-12.458667pt;}
.ws4{word-spacing:-12.416000pt;}
.ws8{word-spacing:-12.293333pt;}
.ws1b{word-spacing:-12.240000pt;}
.ws16{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.760000pt;}
.ws18{word-spacing:-11.520000pt;}
.ws4c{word-spacing:-11.280000pt;}
.ws2{word-spacing:-10.928000pt;}
.wsa{word-spacing:-10.661333pt;}
.ws17{word-spacing:-10.260000pt;}
.ws20{word-spacing:-1.237333pt;}
.ws22{word-spacing:-1.173333pt;}
.ws1{word-spacing:0.000000pt;}
.ws54{word-spacing:0.800000pt;}
.ws2f{word-spacing:0.912000pt;}
.ws2e{word-spacing:1.066667pt;}
.ws45{word-spacing:1.136000pt;}
.ws30{word-spacing:1.141333pt;}
.ws55{word-spacing:1.173333pt;}
.ws44{word-spacing:1.194667pt;}
.ws21{word-spacing:1.226667pt;}
.ws43{word-spacing:1.258667pt;}
.ws24{word-spacing:1.610667pt;}
.ws51{word-spacing:1.893333pt;}
.ws50{word-spacing:1.898667pt;}
.ws53{word-spacing:2.474667pt;}
.ws52{word-spacing:2.901333pt;}
.ws1e{word-spacing:3.429333pt;}
.ws4e{word-spacing:3.626667pt;}
.ws1f{word-spacing:3.701333pt;}
.ws1a{word-spacing:4.016000pt;}
.ws25{word-spacing:7.002667pt;}
.ws3c{word-spacing:37.706667pt;}
.ws5a{word-spacing:49.440000pt;}
.ws58{word-spacing:59.040000pt;}
.ws65{word-spacing:64.917333pt;}
.ws67{word-spacing:64.928000pt;}
.ws63{word-spacing:66.693333pt;}
.ws64{word-spacing:70.282667pt;}
.ws66{word-spacing:82.677333pt;}
.ws2b{word-spacing:85.968000pt;}
.ws62{word-spacing:99.733333pt;}
.ws3b{word-spacing:129.493333pt;}
.ws42{word-spacing:145.408000pt;}
.ws3f{word-spacing:162.469333pt;}
.ws41{word-spacing:162.506667pt;}
.ws3d{word-spacing:201.514667pt;}
.ws3e{word-spacing:201.797333pt;}
.ws40{word-spacing:217.184000pt;}
._9{margin-left:-8.053333pt;}
._b{margin-left:-6.626667pt;}
._11{margin-left:-5.320000pt;}
._e{margin-left:-4.053333pt;}
._4{margin-left:-2.602667pt;}
._3{margin-left:-1.365333pt;}
._0{width:1.322667pt;}
._2{width:2.688000pt;}
._5{width:3.928000pt;}
._6{width:5.394667pt;}
._16{width:6.768000pt;}
._12{width:7.994667pt;}
._7{width:9.306667pt;}
._8{width:10.693333pt;}
._10{width:12.176000pt;}
._30{width:13.146667pt;}
._14{width:14.720000pt;}
._17{width:15.981333pt;}
._a{width:17.189333pt;}
._85{width:18.613333pt;}
._86{width:20.165333pt;}
._f{width:22.178667pt;}
._ad{width:25.061333pt;}
._93{width:26.693333pt;}
._1f{width:36.021333pt;}
._15{width:39.949333pt;}
._1{width:42.602667pt;}
._c{width:43.936000pt;}
._13{width:45.333333pt;}
._39{width:52.213333pt;}
._88{width:62.373333pt;}
._ae{width:66.442667pt;}
._96{width:67.765333pt;}
._9b{width:69.920000pt;}
._38{width:72.746667pt;}
._a9{width:74.912000pt;}
._72{width:76.000000pt;}
._95{width:80.106667pt;}
._2a{width:82.992000pt;}
._7b{width:84.661333pt;}
._a3{width:87.376000pt;}
._9f{width:90.869333pt;}
._aa{width:94.442667pt;}
._ab{width:96.266667pt;}
._28{width:99.568000pt;}
._48{width:101.242667pt;}
._84{width:112.768000pt;}
._8d{width:114.378667pt;}
._a4{width:117.333333pt;}
._71{width:122.730667pt;}
._2d{width:124.898667pt;}
._a6{width:126.138667pt;}
._a5{width:127.389333pt;}
._80{width:128.528000pt;}
._92{width:131.488000pt;}
._83{width:134.970667pt;}
._25{width:138.506667pt;}
._51{width:139.610667pt;}
._a1{width:142.117333pt;}
._36{width:147.040000pt;}
._74{width:148.026667pt;}
._77{width:148.938667pt;}
._9c{width:151.408000pt;}
._8a{width:152.448000pt;}
._78{width:154.693333pt;}
._66{width:155.957333pt;}
._7f{width:157.802667pt;}
._68{width:158.704000pt;}
._5f{width:160.416000pt;}
._8e{width:161.941333pt;}
._98{width:163.109333pt;}
._81{width:164.624000pt;}
._6c{width:167.200000pt;}
._4b{width:174.736000pt;}
._41{width:175.802667pt;}
._4a{width:179.221333pt;}
._b1{width:180.261333pt;}
._7d{width:183.616000pt;}
._63{width:186.458667pt;}
._37{width:188.010667pt;}
._b0{width:191.210667pt;}
._90{width:192.661333pt;}
._8c{width:194.144000pt;}
._43{width:196.320000pt;}
._a8{width:197.333333pt;}
._31{width:198.634667pt;}
._52{width:200.346667pt;}
._56{width:203.893333pt;}
._22{width:206.949333pt;}
._a7{width:207.888000pt;}
._ac{width:209.189333pt;}
._3f{width:212.298667pt;}
._6d{width:213.674667pt;}
._50{width:215.130667pt;}
._99{width:216.368000pt;}
._1d{width:217.504000pt;}
._70{width:218.666667pt;}
._69{width:224.442667pt;}
._55{width:225.386667pt;}
._8b{width:226.741333pt;}
._8f{width:228.218667pt;}
._4d{width:230.746667pt;}
._57{width:231.728000pt;}
._53{width:233.274667pt;}
._3b{width:235.685333pt;}
._6f{width:237.237333pt;}
._6b{width:240.778667pt;}
._6a{width:241.802667pt;}
._73{width:251.226667pt;}
._5c{width:252.784000pt;}
._59{width:254.650667pt;}
._29{width:257.653333pt;}
._27{width:262.176000pt;}
._46{width:263.882667pt;}
._2e{width:271.261333pt;}
._75{width:279.973333pt;}
._5b{width:285.200000pt;}
._1a{width:288.176000pt;}
._2b{width:289.818667pt;}
._45{width:290.880000pt;}
._76{width:293.296000pt;}
._3c{width:296.922667pt;}
._44{width:299.109333pt;}
._40{width:300.672000pt;}
._94{width:310.514667pt;}
._62{width:312.352000pt;}
._54{width:316.853333pt;}
._3e{width:319.434667pt;}
._61{width:320.426667pt;}
._47{width:321.338667pt;}
._7e{width:325.488000pt;}
._a2{width:326.522667pt;}
._2c{width:329.818667pt;}
._af{width:330.746667pt;}
._79{width:341.296000pt;}
._67{width:343.322667pt;}
._1b{width:365.530667pt;}
._5e{width:394.933333pt;}
._6e{width:401.637333pt;}
._21{width:426.896000pt;}
._5d{width:437.082667pt;}
._20{width:447.984000pt;}
._d{width:449.258667pt;}
._9a{width:462.544000pt;}
._24{width:467.037333pt;}
._7c{width:468.442667pt;}
._26{width:471.474667pt;}
._7a{width:490.389333pt;}
._91{width:501.712000pt;}
._82{width:504.085333pt;}
._18{width:514.629333pt;}
._87{width:524.469333pt;}
._4f{width:552.496000pt;}
._89{width:562.640000pt;}
._97{width:570.741333pt;}
._19{width:585.434667pt;}
._1e{width:586.821333pt;}
._4c{width:591.392000pt;}
._58{width:592.282667pt;}
._5a{width:623.157333pt;}
._a0{width:634.597333pt;}
._60{width:642.778667pt;}
._23{width:662.917333pt;}
._42{width:664.800000pt;}
._1c{width:673.429333pt;}
._64{width:683.472000pt;}
._49{width:709.008000pt;}
._2f{width:716.154667pt;}
._9d{width:718.685333pt;}
._65{width:726.554667pt;}
._9e{width:729.178667pt;}
._3d{width:866.741333pt;}
._3a{width:910.784000pt;}
._4e{width:943.914667pt;}
._33{width:1155.978667pt;}
._34{width:1169.349333pt;}
._32{width:1190.656000pt;}
._35{width:1215.989333pt;}
.fs6{font-size:41.040000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:48.666667pt;}
.y78{bottom:49.666667pt;}
.yd7{bottom:50.666667pt;}
.yac{bottom:51.333333pt;}
.y155{bottom:53.333333pt;}
.yff{bottom:54.666667pt;}
.y23{bottom:61.333333pt;}
.y77{bottom:65.000000pt;}
.yd6{bottom:66.000000pt;}
.yab{bottom:66.666667pt;}
.y154{bottom:68.666667pt;}
.yfe{bottom:70.666667pt;}
.y22{bottom:71.666667pt;}
.y8b{bottom:74.000000pt;}
.y76{bottom:80.333333pt;}
.yd5{bottom:81.333333pt;}
.yaa{bottom:82.000000pt;}
.y153{bottom:84.000000pt;}
.y21{bottom:85.000000pt;}
.yfd{bottom:86.333333pt;}
.y8a{bottom:86.666667pt;}
.y75{bottom:95.666667pt;}
.yd4{bottom:96.666667pt;}
.ya9{bottom:97.333333pt;}
.y89{bottom:99.333333pt;}
.yfc{bottom:102.333333pt;}
.y20{bottom:103.666667pt;}
.y42{bottom:104.333333pt;}
.y92{bottom:111.000000pt;}
.y88{bottom:112.000000pt;}
.ya8{bottom:112.666667pt;}
.y152{bottom:114.666667pt;}
.y1f{bottom:117.000000pt;}
.y74{bottom:118.666667pt;}
.y41{bottom:119.666667pt;}
.y87{bottom:124.666667pt;}
.yfb{bottom:125.666667pt;}
.y91{bottom:126.333333pt;}
.yd3{bottom:127.333333pt;}
.ya7{bottom:128.000000pt;}
.y151{bottom:130.000000pt;}
.y1e{bottom:130.333333pt;}
.y114{bottom:131.666667pt;}
.y100{bottom:134.000000pt;}
.y40{bottom:135.000000pt;}
.y86{bottom:137.333333pt;}
.y90{bottom:141.666667pt;}
.yd2{bottom:142.666667pt;}
.ya6{bottom:143.333333pt;}
.y1d{bottom:143.666667pt;}
.y150{bottom:145.333333pt;}
.y113{bottom:147.000000pt;}
.y137{bottom:149.333333pt;}
.y85{bottom:150.000000pt;}
.y3f{bottom:150.333333pt;}
.y1c{bottom:157.000000pt;}
.yfa{bottom:157.666667pt;}
.yd1{bottom:158.000000pt;}
.ya5{bottom:158.666667pt;}
.y14f{bottom:160.666667pt;}
.y112{bottom:162.333333pt;}
.y84{bottom:162.666667pt;}
.y136{bottom:164.666667pt;}
.y3e{bottom:165.666667pt;}
.y1b{bottom:170.333333pt;}
.yf9{bottom:171.666667pt;}
.y73{bottom:172.333333pt;}
.yd0{bottom:173.333333pt;}
.ya4{bottom:174.000000pt;}
.y83{bottom:175.333333pt;}
.y14e{bottom:176.000000pt;}
.y111{bottom:177.666667pt;}
.y3d{bottom:181.000000pt;}
.y1a{bottom:183.666667pt;}
.y72{bottom:187.666667pt;}
.y82{bottom:188.000000pt;}
.ycf{bottom:188.666667pt;}
.ya3{bottom:189.333333pt;}
.yf8{bottom:191.333333pt;}
.y110{bottom:193.000000pt;}
.y135{bottom:195.333333pt;}
.y3c{bottom:196.333333pt;}
.y19{bottom:197.000000pt;}
.y81{bottom:200.666667pt;}
.y71{bottom:203.000000pt;}
.yce{bottom:204.000000pt;}
.ya2{bottom:204.666667pt;}
.y14d{bottom:206.666667pt;}
.yf7{bottom:207.333333pt;}
.y10f{bottom:208.333333pt;}
.y18{bottom:210.333333pt;}
.y134{bottom:210.666667pt;}
.y3b{bottom:211.666667pt;}
.y80{bottom:213.333333pt;}
.y70{bottom:218.333333pt;}
.ycd{bottom:219.333333pt;}
.ya1{bottom:220.000000pt;}
.yf6{bottom:221.333333pt;}
.y14c{bottom:222.000000pt;}
.y17{bottom:223.666667pt;}
.y7f{bottom:226.000000pt;}
.y3a{bottom:227.000000pt;}
.y6f{bottom:233.666667pt;}
.ycc{bottom:234.666667pt;}
.y171{bottom:235.333333pt;}
.y14b{bottom:237.333333pt;}
.y7e{bottom:238.666667pt;}
.y10e{bottom:239.000000pt;}
.yf5{bottom:241.333333pt;}
.y39{bottom:242.333333pt;}
.y6e{bottom:249.000000pt;}
.ycb{bottom:250.000000pt;}
.y16{bottom:250.333333pt;}
.ya0{bottom:250.666667pt;}
.y7d{bottom:251.333333pt;}
.y14a{bottom:252.666667pt;}
.y10d{bottom:254.333333pt;}
.y133{bottom:256.666667pt;}
.yf4{bottom:257.000000pt;}
.y38{bottom:257.666667pt;}
.y7c{bottom:264.000000pt;}
.y6d{bottom:264.333333pt;}
.yca{bottom:265.333333pt;}
.y9f{bottom:266.000000pt;}
.y149{bottom:268.000000pt;}
.y10c{bottom:269.666667pt;}
.yf3{bottom:271.000000pt;}
.y132{bottom:272.000000pt;}
.y37{bottom:273.000000pt;}
.y7b{bottom:276.666667pt;}
.y8f{bottom:279.666667pt;}
.yc9{bottom:280.666667pt;}
.y9e{bottom:281.333333pt;}
.y15{bottom:282.333333pt;}
.y148{bottom:283.333333pt;}
.y10b{bottom:285.000000pt;}
.y131{bottom:287.333333pt;}
.y36{bottom:288.333333pt;}
.y7a{bottom:289.333333pt;}
.yf2{bottom:291.000000pt;}
.y6c{bottom:295.000000pt;}
.y14{bottom:295.666667pt;}
.yc8{bottom:296.000000pt;}
.y9d{bottom:296.666667pt;}
.y147{bottom:298.666667pt;}
.y10a{bottom:300.333333pt;}
.y79{bottom:302.000000pt;}
.y8e{bottom:302.666667pt;}
.y35{bottom:303.666667pt;}
.yf1{bottom:307.000000pt;}
.y6b{bottom:310.333333pt;}
.yc7{bottom:311.333333pt;}
.y9c{bottom:312.000000pt;}
.y146{bottom:314.000000pt;}
.y13{bottom:314.333333pt;}
.y109{bottom:315.666667pt;}
.y8d{bottom:318.000000pt;}
.y34{bottom:319.000000pt;}
.yf0{bottom:322.666667pt;}
.y6a{bottom:325.666667pt;}
.yc6{bottom:326.666667pt;}
.y170{bottom:327.333333pt;}
.y12{bottom:327.666667pt;}
.y145{bottom:329.333333pt;}
.y108{bottom:331.000000pt;}
.y130{bottom:333.333333pt;}
.y33{bottom:334.333333pt;}
.y9b{bottom:335.000000pt;}
.yef{bottom:338.666667pt;}
.y11{bottom:341.000000pt;}
.yc5{bottom:342.000000pt;}
.y16f{bottom:342.666667pt;}
.y144{bottom:344.666667pt;}
.y107{bottom:346.333333pt;}
.y12f{bottom:348.666667pt;}
.y32{bottom:349.666667pt;}
.yee{bottom:352.666667pt;}
.y10{bottom:354.333333pt;}
.y69{bottom:356.333333pt;}
.yc4{bottom:357.333333pt;}
.y16e{bottom:358.000000pt;}
.y143{bottom:360.000000pt;}
.y106{bottom:361.666667pt;}
.y12e{bottom:364.000000pt;}
.y31{bottom:365.000000pt;}
.yf{bottom:367.666667pt;}
.y68{bottom:371.666667pt;}
.yed{bottom:372.666667pt;}
.y16d{bottom:373.333333pt;}
.y105{bottom:377.000000pt;}
.ydb{bottom:379.333333pt;}
.y30{bottom:380.333333pt;}
.ye{bottom:381.000000pt;}
.y67{bottom:387.000000pt;}
.yec{bottom:388.333333pt;}
.y16c{bottom:388.666667pt;}
.y142{bottom:390.666667pt;}
.y104{bottom:392.333333pt;}
.yd{bottom:394.333333pt;}
.y8c{bottom:394.666667pt;}
.y2f{bottom:395.666667pt;}
.ybb{bottom:397.333333pt;}
.y66{bottom:402.333333pt;}
.y15e{bottom:403.333333pt;}
.y16b{bottom:404.000000pt;}
.yeb{bottom:404.333333pt;}
.y141{bottom:406.000000pt;}
.yc{bottom:407.666667pt;}
.y12d{bottom:410.000000pt;}
.y2e{bottom:411.000000pt;}
.yba{bottom:411.333333pt;}
.y65{bottom:417.666667pt;}
.y15d{bottom:418.666667pt;}
.y16a{bottom:419.333333pt;}
.yea{bottom:420.333333pt;}
.yb{bottom:421.000000pt;}
.y140{bottom:421.333333pt;}
.y103{bottom:423.000000pt;}
.y12c{bottom:425.333333pt;}
.y2d{bottom:426.333333pt;}
.y64{bottom:433.000000pt;}
.yb9{bottom:433.666667pt;}
.yc3{bottom:434.000000pt;}
.ya{bottom:434.333333pt;}
.y169{bottom:434.666667pt;}
.ye9{bottom:436.000000pt;}
.y13f{bottom:436.666667pt;}
.y102{bottom:438.333333pt;}
.y12b{bottom:440.666667pt;}
.y2c{bottom:441.666667pt;}
.y9{bottom:447.666667pt;}
.y63{bottom:448.333333pt;}
.yc2{bottom:449.333333pt;}
.ye8{bottom:450.000000pt;}
.y13e{bottom:452.000000pt;}
.y101{bottom:453.666667pt;}
.y12a{bottom:456.000000pt;}
.y2b{bottom:457.000000pt;}
.yb8{bottom:461.666667pt;}
.y62{bottom:463.666667pt;}
.yc1{bottom:464.666667pt;}
.y13d{bottom:467.333333pt;}
.ye7{bottom:470.000000pt;}
.y129{bottom:471.333333pt;}
.y2a{bottom:472.333333pt;}
.y8{bottom:474.333333pt;}
.y61{bottom:479.000000pt;}
.yc0{bottom:480.000000pt;}
.y13c{bottom:482.666667pt;}
.yb7{bottom:484.000000pt;}
.y17c{bottom:485.666667pt;}
.y128{bottom:486.666667pt;}
.y29{bottom:487.666667pt;}
.ye6{bottom:493.333333pt;}
.y60{bottom:494.333333pt;}
.ybf{bottom:495.333333pt;}
.y13b{bottom:498.000000pt;}
.y17b{bottom:499.666667pt;}
.y127{bottom:502.000000pt;}
.y28{bottom:503.000000pt;}
.yb6{bottom:506.333333pt;}
.ye5{bottom:509.333333pt;}
.y5f{bottom:509.666667pt;}
.y15c{bottom:510.666667pt;}
.y13a{bottom:513.333333pt;}
.y17a{bottom:513.666667pt;}
.y126{bottom:517.333333pt;}
.y27{bottom:518.333333pt;}
.yb5{bottom:520.333333pt;}
.y119{bottom:521.666667pt;}
.y5e{bottom:525.000000pt;}
.ye4{bottom:525.333333pt;}
.ybe{bottom:526.000000pt;}
.y179{bottom:527.666667pt;}
.y139{bottom:528.666667pt;}
.y125{bottom:532.666667pt;}
.y26{bottom:533.666667pt;}
.yb4{bottom:538.333333pt;}
.y5d{bottom:540.333333pt;}
.ye3{bottom:541.000000pt;}
.ybd{bottom:541.333333pt;}
.y178{bottom:541.666667pt;}
.y138{bottom:544.000000pt;}
.y9a{bottom:544.333333pt;}
.y118{bottom:545.666667pt;}
.y124{bottom:548.000000pt;}
.y168{bottom:553.666667pt;}
.y5c{bottom:555.666667pt;}
.y25{bottom:556.666667pt;}
.yb3{bottom:561.000000pt;}
.y123{bottom:563.333333pt;}
.ye2{bottom:564.666667pt;}
.y99{bottom:569.333333pt;}
.y117{bottom:569.666667pt;}
.y5b{bottom:571.000000pt;}
.ybc{bottom:572.000000pt;}
.yb2{bottom:575.000000pt;}
.y167{bottom:576.333333pt;}
.y122{bottom:578.666667pt;}
.ye1{bottom:580.333333pt;}
.y177{bottom:583.666667pt;}
.y5a{bottom:586.333333pt;}
.yb1{bottom:589.000000pt;}
.y116{bottom:593.666667pt;}
.y121{bottom:594.000000pt;}
.y98{bottom:594.333333pt;}
.ye0{bottom:596.333333pt;}
.y166{bottom:599.000000pt;}
.y162{bottom:599.333333pt;}
.y59{bottom:601.666667pt;}
.yb0{bottom:603.000000pt;}
.y4a{bottom:606.000000pt;}
.y120{bottom:609.333333pt;}
.ydf{bottom:612.333333pt;}
.y161{bottom:613.333333pt;}
.y7{bottom:614.333333pt;}
.y50{bottom:616.666667pt;}
.y58{bottom:617.000000pt;}
.y115{bottom:617.666667pt;}
.y97{bottom:619.000000pt;}
.y49{bottom:619.333333pt;}
.y165{bottom:621.666667pt;}
.y11f{bottom:624.666667pt;}
.y6{bottom:627.000000pt;}
.yde{bottom:628.000000pt;}
.yda{bottom:629.666667pt;}
.y15b{bottom:630.000000pt;}
.y176{bottom:630.666667pt;}
.y57{bottom:632.333333pt;}
.y160{bottom:634.666667pt;}
.y4f{bottom:635.333333pt;}
.y48{bottom:638.000000pt;}
.y11e{bottom:640.000000pt;}
.yaf{bottom:641.666667pt;}
.y5{bottom:643.000000pt;}
.y96{bottom:644.000000pt;}
.y164{bottom:644.333333pt;}
.y56{bottom:647.666667pt;}
.y4e{bottom:648.666667pt;}
.yd9{bottom:649.666667pt;}
.y175{bottom:650.666667pt;}
.y47{bottom:651.333333pt;}
.y15a{bottom:654.000000pt;}
.y11d{bottom:655.333333pt;}
.y15f{bottom:656.333333pt;}
.y4{bottom:659.000000pt;}
.ydd{bottom:660.000000pt;}
.y4d{bottom:662.000000pt;}
.y55{bottom:663.000000pt;}
.yae{bottom:665.666667pt;}
.y163{bottom:667.000000pt;}
.y95{bottom:669.000000pt;}
.yd8{bottom:669.666667pt;}
.y46{bottom:670.000000pt;}
.y11c{bottom:670.666667pt;}
.ydc{bottom:675.666667pt;}
.y159{bottom:678.000000pt;}
.y54{bottom:678.333333pt;}
.y4c{bottom:680.666667pt;}
.y11b{bottom:686.000000pt;}
.y45{bottom:688.666667pt;}
.yad{bottom:689.666667pt;}
.y174{bottom:690.666667pt;}
.y53{bottom:693.666667pt;}
.y4b{bottom:694.000000pt;}
.y158{bottom:696.000000pt;}
.y3{bottom:699.000000pt;}
.y11a{bottom:701.333333pt;}
.y44{bottom:707.333333pt;}
.y94{bottom:707.666667pt;}
.y173{bottom:708.666667pt;}
.y52{bottom:709.000000pt;}
.y157{bottom:710.000000pt;}
.y2{bottom:720.333333pt;}
.y51{bottom:724.333333pt;}
.y43{bottom:729.666667pt;}
.y93{bottom:730.333333pt;}
.y172{bottom:731.333333pt;}
.y156{bottom:732.666667pt;}
.y1{bottom:766.333333pt;}
.h1{height:45.525333pt;}
.h4{height:51.216000pt;}
.ha{height:52.032000pt;}
.h5{height:54.061333pt;}
.h6{height:54.922667pt;}
.hb{height:56.906667pt;}
.hc{height:57.813333pt;}
.h7{height:62.597333pt;}
.h8{height:63.594667pt;}
.h9{height:63.789680pt;}
.h3{height:68.288000pt;}
.h2{height:91.050667pt;}
.h0{height:793.333333pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x2{left:66.881333pt;}
.x9{left:72.614667pt;}
.x18{left:76.313333pt;}
.x12{left:82.006133pt;}
.x8{left:85.204000pt;}
.x3{left:86.536000pt;}
.xe{left:93.466667pt;}
.x14{left:97.156000pt;}
.x13{left:99.833333pt;}
.xf{left:110.500000pt;}
.xa{left:118.184000pt;}
.x7{left:122.737333pt;}
.x10{left:130.672000pt;}
.x11{left:131.833333pt;}
.x1a{left:162.166667pt;}
.x6{left:193.406667pt;}
.x5{left:195.900000pt;}
.x19{left:202.398667pt;}
.xb{left:207.909333pt;}
.x17{left:213.166667pt;}
.x16{left:229.833333pt;}
.x15{left:251.916000pt;}
.x4{left:261.590667pt;}
.xc{left:294.484000pt;}
.xd{left:317.226667pt;}
.x1{left:382.500000pt;}
}




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