
    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_6d6128151ff85f9e667f0fbb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.147461;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_58e018897bfd02cefdf1f2d4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_99656fc2b80e5526719166a5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_5e6401f37bd0cf88adfca033.woff')format("woff");}.ff5{font-family:ff5;line-height:1.147461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c37974b7d56d7ed759981d39.woff')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,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);}
.m4{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v6{vertical-align:-21.000000px;}
.v1{vertical-align:-12.000000px;}
.v2{vertical-align:-9.000000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.000000px;}
.v4{vertical-align:21.000000px;}
.ls20{letter-spacing:-4.344000px;}
.ls1e{letter-spacing:-2.016000px;}
.ls21{letter-spacing:-1.344000px;}
.ls11{letter-spacing:-1.032000px;}
.lsf{letter-spacing:-0.984000px;}
.ls1c{letter-spacing:-0.511768px;}
.ls1b{letter-spacing:-0.247785px;}
.ls1d{letter-spacing:-0.071996px;}
.ls7{letter-spacing:-0.048000px;}
.ls6{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.024000px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.024000px;}
.ls16{letter-spacing:0.084000px;}
.ls15{letter-spacing:0.282000px;}
.ls3{letter-spacing:0.312000px;}
.ls19{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.492000px;}
.ls2{letter-spacing:0.636000px;}
.lse{letter-spacing:0.984000px;}
.ls24{letter-spacing:1.104000px;}
.ls14{letter-spacing:1.164000px;}
.ls1{letter-spacing:1.320000px;}
.ls25{letter-spacing:1.908000px;}
.ls10{letter-spacing:1.968000px;}
.ls22{letter-spacing:1.992000px;}
.ls18{letter-spacing:2.016000px;}
.ls23{letter-spacing:3.000000px;}
.lsd{letter-spacing:3.252000px;}
.ls17{letter-spacing:3.312000px;}
.ls13{letter-spacing:3.492000px;}
.ls1a{letter-spacing:3.984000px;}
.lsb{letter-spacing:4.164000px;}
.ls1f{letter-spacing:15.984000px;}
.ls0{letter-spacing:166.806000px;}
.ls9{letter-spacing:488.016000px;}
.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;}
}
.ws4{word-spacing:-30.048000px;}
.ws2{word-spacing:-29.988000px;}
.ws3{word-spacing:-29.976000px;}
.ws15{word-spacing:-23.016000px;}
.wsd{word-spacing:-22.032000px;}
.ws16{word-spacing:-21.984000px;}
.wsa{word-spacing:-21.000000px;}
.ws6{word-spacing:-20.016000px;}
.ws14{word-spacing:-19.992000px;}
.ws13{word-spacing:-19.968000px;}
.ws9{word-spacing:-19.032000px;}
.wsb{word-spacing:-18.984000px;}
.ws10{word-spacing:-17.962892px;}
.wse{word-spacing:-17.787103px;}
.wsf{word-spacing:-17.523119px;}
.ws5{word-spacing:-16.680000px;}
.wsc{word-spacing:-16.656000px;}
.ws8{word-spacing:-14.328000px;}
.ws1{word-spacing:-13.656000px;}
.ws0{word-spacing:-13.344000px;}
.ws12{word-spacing:-12.000000px;}
.ws11{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._1e{margin-left:-5.760000px;}
._19{margin-left:-3.762000px;}
._2{margin-left:-2.682000px;}
._1{margin-left:-1.008000px;}
._0{width:1.584000px;}
._3{width:3.264000px;}
._8{width:5.082000px;}
._b{width:6.264000px;}
._c{width:7.584000px;}
._14{width:9.498000px;}
._15{width:10.878000px;}
._9{width:12.888000px;}
._23{width:14.100000px;}
._a{width:15.768000px;}
._1a{width:16.830000px;}
._1b{width:18.324000px;}
._17{width:21.096000px;}
._16{width:23.196000px;}
._f{width:24.804000px;}
._e{width:25.848000px;}
._d{width:27.936000px;}
._26{width:29.070000px;}
._24{width:30.822000px;}
._20{width:33.912000px;}
._21{width:35.340000px;}
._22{width:36.498000px;}
._1d{width:39.294000px;}
._1c{width:40.698000px;}
._25{width:42.312000px;}
._11{width:48.294000px;}
._10{width:49.296000px;}
._1f{width:55.908000px;}
._12{width:57.450000px;}
._13{width:59.568000px;}
._4{width:103.794000px;}
._6{width:487.806000px;}
._5{width:656.136000px;}
._18{width:844.764000px;}
._7{width:1173.186000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs3{font-size:66.754693px;}
.fs6{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:72.139551px;}
.fs8{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.yb6{bottom:-9.984901px;}
.y0{bottom:0.000000px;}
.yae{bottom:14.255124px;}
.yb2{bottom:14.435113px;}
.y5{bottom:28.413862px;}
.y6{bottom:36.114559px;}
.y3{bottom:66.037500px;}
.y64{bottom:97.575000px;}
.y95{bottom:101.325000px;}
.y63{bottom:118.575000px;}
.y94{bottom:122.325000px;}
.yd9{bottom:126.075000px;}
.y13b{bottom:129.075000px;}
.y10e{bottom:135.075000px;}
.y62{bottom:139.612500px;}
.y93{bottom:142.612500px;}
.yac{bottom:143.362500px;}
.yd8{bottom:147.112500px;}
.y13a{bottom:149.362500px;}
.y10d{bottom:156.105000px;}
.y61{bottom:159.870000px;}
.y92{bottom:163.620000px;}
.yab{bottom:164.370000px;}
.yd7{bottom:167.370000px;}
.y10c{bottom:174.870000px;}
.y60{bottom:180.870000px;}
.y91{bottom:183.870000px;}
.yaa{bottom:184.620000px;}
.yd6{bottom:188.370000px;}
.y10b{bottom:195.855000px;}
.y5f{bottom:201.120000px;}
.y90{bottom:204.900000px;}
.ya9{bottom:205.650000px;}
.y139{bottom:208.650000px;}
.yd5{bottom:209.400000px;}
.y10a{bottom:216.150000px;}
.y5e{bottom:222.150000px;}
.ye2{bottom:223.650000px;}
.y8f{bottom:225.900000px;}
.yd4{bottom:229.650000px;}
.y138{bottom:231.900000px;}
.y109{bottom:237.150000px;}
.y5d{bottom:243.150000px;}
.ye1{bottom:244.650000px;}
.y8e{bottom:246.150000px;}
.ya8{bottom:246.900000px;}
.yd3{bottom:250.650000px;}
.y137{bottom:252.900000px;}
.y108{bottom:257.400000px;}
.y30{bottom:260.400000px;}
.y5c{bottom:263.400000px;}
.ye0{bottom:264.900000px;}
.y8d{bottom:267.150000px;}
.ya7{bottom:267.945000px;}
.yd2{bottom:270.945000px;}
.y136{bottom:273.195000px;}
.y107{bottom:278.445000px;}
.y2f{bottom:280.695000px;}
.y5b{bottom:284.445000px;}
.ydf{bottom:285.945000px;}
.y8c{bottom:287.445000px;}
.ya6{bottom:288.195000px;}
.yd1{bottom:291.945000px;}
.y135{bottom:294.195000px;}
.y106{bottom:299.445000px;}
.y2e{bottom:301.695000px;}
.y5a{bottom:304.695000px;}
.yde{bottom:306.195000px;}
.y8b{bottom:308.445000px;}
.ya5{bottom:309.195000px;}
.yd0{bottom:312.945000px;}
.y134{bottom:314.445000px;}
.y105{bottom:319.695000px;}
.y2d{bottom:321.945000px;}
.y59{bottom:326.445000px;}
.ydd{bottom:327.195000px;}
.y8a{bottom:328.695000px;}
.ya4{bottom:329.445000px;}
.ycf{bottom:333.225000px;}
.y133{bottom:335.475000px;}
.y104{bottom:340.725000px;}
.y2c{bottom:342.975000px;}
.ydc{bottom:348.225000px;}
.y58{bottom:349.725000px;}
.ya3{bottom:350.475000px;}
.yce{bottom:354.225000px;}
.y132{bottom:356.475000px;}
.y103{bottom:360.975000px;}
.y2b{bottom:363.225000px;}
.ydb{bottom:364.725000px;}
.ya2{bottom:367.725000px;}
.yb5{bottom:368.250000px;}
.y57{bottom:370.725000px;}
.ycd{bottom:374.475000px;}
.yb4{bottom:376.119973px;}
.yb3{bottom:376.119976px;}
.yb1{bottom:376.119979px;}
.y131{bottom:376.725000px;}
.y102{bottom:381.975000px;}
.y2a{bottom:384.225000px;}
.y56{bottom:390.975000px;}
.ycc{bottom:395.475000px;}
.y130{bottom:397.755000px;}
.y101{bottom:403.005000px;}
.y29{bottom:405.255000px;}
.yb0{bottom:408.050004px;}
.yaf{bottom:408.050007px;}
.yad{bottom:408.050010px;}
.y55{bottom:412.005000px;}
.y89{bottom:412.755000px;}
.ycb{bottom:416.505000px;}
.y12f{bottom:418.005000px;}
.y100{bottom:423.255000px;}
.y28{bottom:425.505000px;}
.y54{bottom:432.255000px;}
.y88{bottom:436.005000px;}
.yca{bottom:436.755000px;}
.y12e{bottom:439.005000px;}
.ya1{bottom:443.505000px;}
.yff{bottom:444.255000px;}
.y27{bottom:446.505000px;}
.y53{bottom:453.255000px;}
.y87{bottom:457.005000px;}
.yc9{bottom:457.755000px;}
.y12d{bottom:460.005000px;}
.ya0{bottom:463.800000px;}
.yfe{bottom:464.550000px;}
.y26{bottom:466.800000px;}
.y52{bottom:474.300000px;}
.y86{bottom:477.300000px;}
.yc8{bottom:478.050000px;}
.y12c{bottom:480.300000px;}
.y9f{bottom:484.800000px;}
.yfd{bottom:485.550000px;}
.y25{bottom:487.800000px;}
.y51{bottom:494.550000px;}
.y85{bottom:498.300000px;}
.yc7{bottom:499.050000px;}
.y12b{bottom:501.300000px;}
.y9e{bottom:505.050000px;}
.yfc{bottom:506.550000px;}
.y24{bottom:508.800000px;}
.y50{bottom:515.550000px;}
.y84{bottom:518.550000px;}
.yc6{bottom:520.050000px;}
.y12a{bottom:521.550000px;}
.y9d{bottom:526.080000px;}
.yfb{bottom:526.845000px;}
.y23{bottom:529.095000px;}
.y4f{bottom:535.845000px;}
.y83{bottom:539.580000px;}
.yc5{bottom:540.345000px;}
.y129{bottom:542.595000px;}
.y9c{bottom:547.095000px;}
.yfa{bottom:547.845000px;}
.y22{bottom:550.080000px;}
.yf1{bottom:556.095000px;}
.y4e{bottom:556.830000px;}
.y82{bottom:560.595000px;}
.yc4{bottom:561.345000px;}
.y128{bottom:563.580000px;}
.y9b{bottom:567.345000px;}
.yf9{bottom:568.095000px;}
.y21{bottom:570.330000px;}
.yf0{bottom:577.080000px;}
.y4d{bottom:577.845000px;}
.y81{bottom:580.845000px;}
.yc3{bottom:581.595000px;}
.y127{bottom:583.830000px;}
.y9a{bottom:588.345000px;}
.yf8{bottom:589.095000px;}
.y20{bottom:591.375000px;}
.y4c{bottom:598.125000px;}
.y80{bottom:601.875000px;}
.yc2{bottom:602.625000px;}
.y126{bottom:604.875000px;}
.y99{bottom:608.625000px;}
.yf7{bottom:610.125000px;}
.y1f{bottom:612.375000px;}
.yef{bottom:618.375000px;}
.y4b{bottom:619.125000px;}
.y7f{bottom:622.125000px;}
.yc1{bottom:623.625000px;}
.y125{bottom:625.125000px;}
.y98{bottom:629.625000px;}
.yf6{bottom:630.375000px;}
.y1e{bottom:632.625000px;}
.y4a{bottom:639.375000px;}
.y7e{bottom:643.125000px;}
.yc0{bottom:643.875000px;}
.y124{bottom:646.125000px;}
.y97{bottom:650.625000px;}
.yf5{bottom:651.375000px;}
.y1d{bottom:653.625000px;}
.yee{bottom:659.670000px;}
.y49{bottom:660.405000px;}
.y7d{bottom:664.155000px;}
.ybf{bottom:664.920000px;}
.y96{bottom:667.155000px;}
.yf4{bottom:671.670000px;}
.y1c{bottom:673.905000px;}
.yed{bottom:680.655000px;}
.y48{bottom:681.405000px;}
.y7c{bottom:684.405000px;}
.ybe{bottom:685.170000px;}
.y123{bottom:687.405000px;}
.yf3{bottom:692.655000px;}
.y1b{bottom:694.905000px;}
.y47{bottom:701.655000px;}
.y7b{bottom:705.420000px;}
.ybd{bottom:706.155000px;}
.y122{bottom:708.405000px;}
.yf2{bottom:709.905000px;}
.y1a{bottom:715.905000px;}
.yec{bottom:721.950000px;}
.y46{bottom:722.700000px;}
.y7a{bottom:725.700000px;}
.ybc{bottom:727.200000px;}
.y121{bottom:728.700000px;}
.y19{bottom:736.200000px;}
.y45{bottom:742.950000px;}
.y79{bottom:746.700000px;}
.ybb{bottom:747.450000px;}
.y120{bottom:749.700000px;}
.y18{bottom:757.200000px;}
.yeb{bottom:763.200000px;}
.y44{bottom:763.950000px;}
.yda{bottom:764.700000px;}
.y78{bottom:767.700000px;}
.yba{bottom:768.450000px;}
.y11f{bottom:770.700000px;}
.y17{bottom:777.450000px;}
.yea{bottom:784.230000px;}
.y43{bottom:784.995000px;}
.y77{bottom:787.995000px;}
.yb9{bottom:788.745000px;}
.y11e{bottom:790.980000px;}
.y16{bottom:798.495000px;}
.y42{bottom:805.245000px;}
.y76{bottom:808.995000px;}
.yb8{bottom:809.730000px;}
.y11d{bottom:811.995000px;}
.y15{bottom:820.245000px;}
.ye9{bottom:825.495000px;}
.y41{bottom:826.230000px;}
.yb7{bottom:826.995000px;}
.y75{bottom:829.245000px;}
.y11c{bottom:832.245000px;}
.y14{bottom:843.480000px;}
.y40{bottom:846.495000px;}
.y74{bottom:850.275000px;}
.y11b{bottom:853.275000px;}
.y13{bottom:863.775000px;}
.ye8{bottom:866.775000px;}
.y3f{bottom:867.525000px;}
.y73{bottom:871.275000px;}
.y11a{bottom:874.275000px;}
.y12{bottom:884.775000px;}
.ye7{bottom:887.775000px;}
.y3e{bottom:888.525000px;}
.y72{bottom:891.525000px;}
.y119{bottom:894.525000px;}
.y11{bottom:905.025000px;}
.y3d{bottom:908.775000px;}
.y71{bottom:912.570000px;}
.y118{bottom:915.570000px;}
.y10{bottom:923.070000px;}
.ye6{bottom:929.070000px;}
.y3c{bottom:929.820000px;}
.y70{bottom:932.820000px;}
.y117{bottom:935.820000px;}
.yf{bottom:943.320000px;}
.y3b{bottom:950.070000px;}
.y6f{bottom:953.820000px;}
.y116{bottom:956.820000px;}
.ye{bottom:964.320000px;}
.ye5{bottom:970.320000px;}
.y3a{bottom:971.070000px;}
.y6e{bottom:974.820000px;}
.y115{bottom:977.850000px;}
.yd{bottom:984.600000px;}
.ye4{bottom:991.350000px;}
.y39{bottom:992.100000px;}
.y6d{bottom:995.100000px;}
.y114{bottom:998.100000px;}
.yc{bottom:1005.600000px;}
.ye3{bottom:1008.600000px;}
.y38{bottom:1012.350000px;}
.y6c{bottom:1016.100000px;}
.y113{bottom:1021.350000px;}
.yb{bottom:1028.100000px;}
.y37{bottom:1033.350000px;}
.y6b{bottom:1036.350000px;}
.y112{bottom:1044.630000px;}
.y36{bottom:1053.630000px;}
.y6a{bottom:1057.380000px;}
.ya{bottom:1058.880000px;}
.y111{bottom:1065.630000px;}
.y35{bottom:1074.630000px;}
.y69{bottom:1078.380000px;}
.y110{bottom:1088.880000px;}
.y9{bottom:1090.380000px;}
.y34{bottom:1095.630000px;}
.y68{bottom:1098.630000px;}
.y10f{bottom:1112.925000px;}
.y33{bottom:1115.925000px;}
.y67{bottom:1119.675000px;}
.y8{bottom:1121.175000px;}
.y32{bottom:1136.925000px;}
.y66{bottom:1139.925000px;}
.y7{bottom:1152.675000px;}
.y31{bottom:1158.675000px;}
.y65{bottom:1160.925000px;}
.y2{bottom:1189.455000px;}
.y4{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.hc{height:31.030090px;}
.he{height:31.210079px;}
.h6{height:33.876323px;}
.h3{height:44.070184px;}
.h5{height:44.098032px;}
.h1{height:44.976562px;}
.h2{height:50.273438px;}
.hd{height:50.370878px;}
.h13{height:53.121094px;}
.h12{height:56.220703px;}
.h11{height:61.842773px;}
.ha{height:65.003906px;}
.h4{height:66.396148px;}
.h9{height:67.464844px;}
.hf{height:71.730060px;}
.h10{height:71.752083px;}
.hb{height:75.837891px;}
.h8{height:97.505859px;}
.h7{height:101.197266px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.w6{width:53.759338px;}
.w5{width:53.939738px;}
.w4{width:63.537043px;}
.w7{width:722.849622px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:11.184829px;}
.x17{left:13.530035px;}
.x13{left:15.334039px;}
.x15{left:17.859646px;}
.x2{left:73.491283px;}
.x1{left:84.824987px;}
.x9{left:86.324987px;}
.x5{left:126.862487px;}
.x7{left:138.862487px;}
.x1e{left:180.899987px;}
.xb{left:226.694987px;}
.xe{left:336.254987px;}
.x8{left:358.799987px;}
.x12{left:361.859477px;}
.xf{left:371.549987px;}
.xd{left:385.049987px;}
.x6{left:388.799987px;}
.x1a{left:397.094987px;}
.xc{left:403.844987px;}
.x3{left:407.594987px;}
.xa{left:418.094987px;}
.x14{left:425.390507px;}
.x4{left:446.624987px;}
.x16{left:479.330245px;}
.x1c{left:599.729987px;}
.x1b{left:621.524987px;}
.x19{left:647.024987px;}
.x10{left:708.569987px;}
.x1d{left:713.849987px;}
.x11{left:807.674987px;}
@media print{
.v6{vertical-align:-18.666667pt;}
.v1{vertical-align:-10.666667pt;}
.v2{vertical-align:-8.000000pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.000000pt;}
.v4{vertical-align:18.666667pt;}
.ls20{letter-spacing:-3.861333pt;}
.ls1e{letter-spacing:-1.792000pt;}
.ls21{letter-spacing:-1.194667pt;}
.ls11{letter-spacing:-0.917333pt;}
.lsf{letter-spacing:-0.874667pt;}
.ls1c{letter-spacing:-0.454905pt;}
.ls1b{letter-spacing:-0.220253pt;}
.ls1d{letter-spacing:-0.063996pt;}
.ls7{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.021333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.021333pt;}
.ls16{letter-spacing:0.074667pt;}
.ls15{letter-spacing:0.250667pt;}
.ls3{letter-spacing:0.277333pt;}
.ls19{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.437333pt;}
.ls2{letter-spacing:0.565333pt;}
.lse{letter-spacing:0.874667pt;}
.ls24{letter-spacing:0.981333pt;}
.ls14{letter-spacing:1.034667pt;}
.ls1{letter-spacing:1.173333pt;}
.ls25{letter-spacing:1.696000pt;}
.ls10{letter-spacing:1.749333pt;}
.ls22{letter-spacing:1.770667pt;}
.ls18{letter-spacing:1.792000pt;}
.ls23{letter-spacing:2.666667pt;}
.lsd{letter-spacing:2.890667pt;}
.ls17{letter-spacing:2.944000pt;}
.ls13{letter-spacing:3.104000pt;}
.ls1a{letter-spacing:3.541333pt;}
.lsb{letter-spacing:3.701333pt;}
.ls1f{letter-spacing:14.208000pt;}
.ls0{letter-spacing:148.272000pt;}
.ls9{letter-spacing:433.792000pt;}
.ws4{word-spacing:-26.709333pt;}
.ws2{word-spacing:-26.656000pt;}
.ws3{word-spacing:-26.645333pt;}
.ws15{word-spacing:-20.458667pt;}
.wsd{word-spacing:-19.584000pt;}
.ws16{word-spacing:-19.541333pt;}
.wsa{word-spacing:-18.666667pt;}
.ws6{word-spacing:-17.792000pt;}
.ws14{word-spacing:-17.770667pt;}
.ws13{word-spacing:-17.749333pt;}
.ws9{word-spacing:-16.917333pt;}
.wsb{word-spacing:-16.874667pt;}
.ws10{word-spacing:-15.967015pt;}
.wse{word-spacing:-15.810758pt;}
.wsf{word-spacing:-15.576106pt;}
.ws5{word-spacing:-14.826667pt;}
.wsc{word-spacing:-14.805333pt;}
.ws8{word-spacing:-12.736000pt;}
.ws1{word-spacing:-12.138667pt;}
.ws0{word-spacing:-11.861333pt;}
.ws12{word-spacing:-10.666667pt;}
.ws11{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._1e{margin-left:-5.120000pt;}
._19{margin-left:-3.344000pt;}
._2{margin-left:-2.384000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.408000pt;}
._3{width:2.901333pt;}
._8{width:4.517333pt;}
._b{width:5.568000pt;}
._c{width:6.741333pt;}
._14{width:8.442667pt;}
._15{width:9.669333pt;}
._9{width:11.456000pt;}
._23{width:12.533333pt;}
._a{width:14.016000pt;}
._1a{width:14.960000pt;}
._1b{width:16.288000pt;}
._17{width:18.752000pt;}
._16{width:20.618667pt;}
._f{width:22.048000pt;}
._e{width:22.976000pt;}
._d{width:24.832000pt;}
._26{width:25.840000pt;}
._24{width:27.397333pt;}
._20{width:30.144000pt;}
._21{width:31.413333pt;}
._22{width:32.442667pt;}
._1d{width:34.928000pt;}
._1c{width:36.176000pt;}
._25{width:37.610667pt;}
._11{width:42.928000pt;}
._10{width:43.818667pt;}
._1f{width:49.696000pt;}
._12{width:51.066667pt;}
._13{width:52.949333pt;}
._4{width:92.261333pt;}
._6{width:433.605333pt;}
._5{width:583.232000pt;}
._18{width:750.901333pt;}
._7{width:1042.832000pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs3{font-size:59.337505pt;}
.fs6{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:64.124045pt;}
.fs8{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.yb6{bottom:-8.875467pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:12.671221pt;}
.yb2{bottom:12.831211pt;}
.y5{bottom:25.256766pt;}
.y6{bottom:32.101830pt;}
.y3{bottom:58.700000pt;}
.y64{bottom:86.733333pt;}
.y95{bottom:90.066667pt;}
.y63{bottom:105.400000pt;}
.y94{bottom:108.733333pt;}
.yd9{bottom:112.066667pt;}
.y13b{bottom:114.733333pt;}
.y10e{bottom:120.066667pt;}
.y62{bottom:124.100000pt;}
.y93{bottom:126.766667pt;}
.yac{bottom:127.433333pt;}
.yd8{bottom:130.766667pt;}
.y13a{bottom:132.766667pt;}
.y10d{bottom:138.760000pt;}
.y61{bottom:142.106667pt;}
.y92{bottom:145.440000pt;}
.yab{bottom:146.106667pt;}
.yd7{bottom:148.773333pt;}
.y10c{bottom:155.440000pt;}
.y60{bottom:160.773333pt;}
.y91{bottom:163.440000pt;}
.yaa{bottom:164.106667pt;}
.yd6{bottom:167.440000pt;}
.y10b{bottom:174.093333pt;}
.y5f{bottom:178.773333pt;}
.y90{bottom:182.133333pt;}
.ya9{bottom:182.800000pt;}
.y139{bottom:185.466667pt;}
.yd5{bottom:186.133333pt;}
.y10a{bottom:192.133333pt;}
.y5e{bottom:197.466667pt;}
.ye2{bottom:198.800000pt;}
.y8f{bottom:200.800000pt;}
.yd4{bottom:204.133333pt;}
.y138{bottom:206.133333pt;}
.y109{bottom:210.800000pt;}
.y5d{bottom:216.133333pt;}
.ye1{bottom:217.466667pt;}
.y8e{bottom:218.800000pt;}
.ya8{bottom:219.466667pt;}
.yd3{bottom:222.800000pt;}
.y137{bottom:224.800000pt;}
.y108{bottom:228.800000pt;}
.y30{bottom:231.466667pt;}
.y5c{bottom:234.133333pt;}
.ye0{bottom:235.466667pt;}
.y8d{bottom:237.466667pt;}
.ya7{bottom:238.173333pt;}
.yd2{bottom:240.840000pt;}
.y136{bottom:242.840000pt;}
.y107{bottom:247.506667pt;}
.y2f{bottom:249.506667pt;}
.y5b{bottom:252.840000pt;}
.ydf{bottom:254.173333pt;}
.y8c{bottom:255.506667pt;}
.ya6{bottom:256.173333pt;}
.yd1{bottom:259.506667pt;}
.y135{bottom:261.506667pt;}
.y106{bottom:266.173333pt;}
.y2e{bottom:268.173333pt;}
.y5a{bottom:270.840000pt;}
.yde{bottom:272.173333pt;}
.y8b{bottom:274.173333pt;}
.ya5{bottom:274.840000pt;}
.yd0{bottom:278.173333pt;}
.y134{bottom:279.506667pt;}
.y105{bottom:284.173333pt;}
.y2d{bottom:286.173333pt;}
.y59{bottom:290.173333pt;}
.ydd{bottom:290.840000pt;}
.y8a{bottom:292.173333pt;}
.ya4{bottom:292.840000pt;}
.ycf{bottom:296.200000pt;}
.y133{bottom:298.200000pt;}
.y104{bottom:302.866667pt;}
.y2c{bottom:304.866667pt;}
.ydc{bottom:309.533333pt;}
.y58{bottom:310.866667pt;}
.ya3{bottom:311.533333pt;}
.yce{bottom:314.866667pt;}
.y132{bottom:316.866667pt;}
.y103{bottom:320.866667pt;}
.y2b{bottom:322.866667pt;}
.ydb{bottom:324.200000pt;}
.ya2{bottom:326.866667pt;}
.yb5{bottom:327.333333pt;}
.y57{bottom:329.533333pt;}
.ycd{bottom:332.866667pt;}
.yb4{bottom:334.328865pt;}
.yb3{bottom:334.328867pt;}
.yb1{bottom:334.328870pt;}
.y131{bottom:334.866667pt;}
.y102{bottom:339.533333pt;}
.y2a{bottom:341.533333pt;}
.y56{bottom:347.533333pt;}
.ycc{bottom:351.533333pt;}
.y130{bottom:353.560000pt;}
.y101{bottom:358.226667pt;}
.y29{bottom:360.226667pt;}
.yb0{bottom:362.711114pt;}
.yaf{bottom:362.711117pt;}
.yad{bottom:362.711120pt;}
.y55{bottom:366.226667pt;}
.y89{bottom:366.893333pt;}
.ycb{bottom:370.226667pt;}
.y12f{bottom:371.560000pt;}
.y100{bottom:376.226667pt;}
.y28{bottom:378.226667pt;}
.y54{bottom:384.226667pt;}
.y88{bottom:387.560000pt;}
.yca{bottom:388.226667pt;}
.y12e{bottom:390.226667pt;}
.ya1{bottom:394.226667pt;}
.yff{bottom:394.893333pt;}
.y27{bottom:396.893333pt;}
.y53{bottom:402.893333pt;}
.y87{bottom:406.226667pt;}
.yc9{bottom:406.893333pt;}
.y12d{bottom:408.893333pt;}
.ya0{bottom:412.266667pt;}
.yfe{bottom:412.933333pt;}
.y26{bottom:414.933333pt;}
.y52{bottom:421.600000pt;}
.y86{bottom:424.266667pt;}
.yc8{bottom:424.933333pt;}
.y12c{bottom:426.933333pt;}
.y9f{bottom:430.933333pt;}
.yfd{bottom:431.600000pt;}
.y25{bottom:433.600000pt;}
.y51{bottom:439.600000pt;}
.y85{bottom:442.933333pt;}
.yc7{bottom:443.600000pt;}
.y12b{bottom:445.600000pt;}
.y9e{bottom:448.933333pt;}
.yfc{bottom:450.266667pt;}
.y24{bottom:452.266667pt;}
.y50{bottom:458.266667pt;}
.y84{bottom:460.933333pt;}
.yc6{bottom:462.266667pt;}
.y12a{bottom:463.600000pt;}
.y9d{bottom:467.626667pt;}
.yfb{bottom:468.306667pt;}
.y23{bottom:470.306667pt;}
.y4f{bottom:476.306667pt;}
.y83{bottom:479.626667pt;}
.yc5{bottom:480.306667pt;}
.y129{bottom:482.306667pt;}
.y9c{bottom:486.306667pt;}
.yfa{bottom:486.973333pt;}
.y22{bottom:488.960000pt;}
.yf1{bottom:494.306667pt;}
.y4e{bottom:494.960000pt;}
.y82{bottom:498.306667pt;}
.yc4{bottom:498.973333pt;}
.y128{bottom:500.960000pt;}
.y9b{bottom:504.306667pt;}
.yf9{bottom:504.973333pt;}
.y21{bottom:506.960000pt;}
.yf0{bottom:512.960000pt;}
.y4d{bottom:513.640000pt;}
.y81{bottom:516.306667pt;}
.yc3{bottom:516.973333pt;}
.y127{bottom:518.960000pt;}
.y9a{bottom:522.973333pt;}
.yf8{bottom:523.640000pt;}
.y20{bottom:525.666667pt;}
.y4c{bottom:531.666667pt;}
.y80{bottom:535.000000pt;}
.yc2{bottom:535.666667pt;}
.y126{bottom:537.666667pt;}
.y99{bottom:541.000000pt;}
.yf7{bottom:542.333333pt;}
.y1f{bottom:544.333333pt;}
.yef{bottom:549.666667pt;}
.y4b{bottom:550.333333pt;}
.y7f{bottom:553.000000pt;}
.yc1{bottom:554.333333pt;}
.y125{bottom:555.666667pt;}
.y98{bottom:559.666667pt;}
.yf6{bottom:560.333333pt;}
.y1e{bottom:562.333333pt;}
.y4a{bottom:568.333333pt;}
.y7e{bottom:571.666667pt;}
.yc0{bottom:572.333333pt;}
.y124{bottom:574.333333pt;}
.y97{bottom:578.333333pt;}
.yf5{bottom:579.000000pt;}
.y1d{bottom:581.000000pt;}
.yee{bottom:586.373333pt;}
.y49{bottom:587.026667pt;}
.y7d{bottom:590.360000pt;}
.ybf{bottom:591.040000pt;}
.y96{bottom:593.026667pt;}
.yf4{bottom:597.040000pt;}
.y1c{bottom:599.026667pt;}
.yed{bottom:605.026667pt;}
.y48{bottom:605.693333pt;}
.y7c{bottom:608.360000pt;}
.ybe{bottom:609.040000pt;}
.y123{bottom:611.026667pt;}
.yf3{bottom:615.693333pt;}
.y1b{bottom:617.693333pt;}
.y47{bottom:623.693333pt;}
.y7b{bottom:627.040000pt;}
.ybd{bottom:627.693333pt;}
.y122{bottom:629.693333pt;}
.yf2{bottom:631.026667pt;}
.y1a{bottom:636.360000pt;}
.yec{bottom:641.733333pt;}
.y46{bottom:642.400000pt;}
.y7a{bottom:645.066667pt;}
.ybc{bottom:646.400000pt;}
.y121{bottom:647.733333pt;}
.y19{bottom:654.400000pt;}
.y45{bottom:660.400000pt;}
.y79{bottom:663.733333pt;}
.ybb{bottom:664.400000pt;}
.y120{bottom:666.400000pt;}
.y18{bottom:673.066667pt;}
.yeb{bottom:678.400000pt;}
.y44{bottom:679.066667pt;}
.yda{bottom:679.733333pt;}
.y78{bottom:682.400000pt;}
.yba{bottom:683.066667pt;}
.y11f{bottom:685.066667pt;}
.y17{bottom:691.066667pt;}
.yea{bottom:697.093333pt;}
.y43{bottom:697.773333pt;}
.y77{bottom:700.440000pt;}
.yb9{bottom:701.106667pt;}
.y11e{bottom:703.093333pt;}
.y16{bottom:709.773333pt;}
.y42{bottom:715.773333pt;}
.y76{bottom:719.106667pt;}
.yb8{bottom:719.760000pt;}
.y11d{bottom:721.773333pt;}
.y15{bottom:729.106667pt;}
.ye9{bottom:733.773333pt;}
.y41{bottom:734.426667pt;}
.yb7{bottom:735.106667pt;}
.y75{bottom:737.106667pt;}
.y11c{bottom:739.773333pt;}
.y14{bottom:749.760000pt;}
.y40{bottom:752.440000pt;}
.y74{bottom:755.800000pt;}
.y11b{bottom:758.466667pt;}
.y13{bottom:767.800000pt;}
.ye8{bottom:770.466667pt;}
.y3f{bottom:771.133333pt;}
.y73{bottom:774.466667pt;}
.y11a{bottom:777.133333pt;}
.y12{bottom:786.466667pt;}
.ye7{bottom:789.133333pt;}
.y3e{bottom:789.800000pt;}
.y72{bottom:792.466667pt;}
.y119{bottom:795.133333pt;}
.y11{bottom:804.466667pt;}
.y3d{bottom:807.800000pt;}
.y71{bottom:811.173333pt;}
.y118{bottom:813.840000pt;}
.y10{bottom:820.506667pt;}
.ye6{bottom:825.840000pt;}
.y3c{bottom:826.506667pt;}
.y70{bottom:829.173333pt;}
.y117{bottom:831.840000pt;}
.yf{bottom:838.506667pt;}
.y3b{bottom:844.506667pt;}
.y6f{bottom:847.840000pt;}
.y116{bottom:850.506667pt;}
.ye{bottom:857.173333pt;}
.ye5{bottom:862.506667pt;}
.y3a{bottom:863.173333pt;}
.y6e{bottom:866.506667pt;}
.y115{bottom:869.200000pt;}
.yd{bottom:875.200000pt;}
.ye4{bottom:881.200000pt;}
.y39{bottom:881.866667pt;}
.y6d{bottom:884.533333pt;}
.y114{bottom:887.200000pt;}
.yc{bottom:893.866667pt;}
.ye3{bottom:896.533333pt;}
.y38{bottom:899.866667pt;}
.y6c{bottom:903.200000pt;}
.y113{bottom:907.866667pt;}
.yb{bottom:913.866667pt;}
.y37{bottom:918.533333pt;}
.y6b{bottom:921.200000pt;}
.y112{bottom:928.560000pt;}
.y36{bottom:936.560000pt;}
.y6a{bottom:939.893333pt;}
.ya{bottom:941.226667pt;}
.y111{bottom:947.226667pt;}
.y35{bottom:955.226667pt;}
.y69{bottom:958.560000pt;}
.y110{bottom:967.893333pt;}
.y9{bottom:969.226667pt;}
.y34{bottom:973.893333pt;}
.y68{bottom:976.560000pt;}
.y10f{bottom:989.266667pt;}
.y33{bottom:991.933333pt;}
.y67{bottom:995.266667pt;}
.y8{bottom:996.600000pt;}
.y32{bottom:1010.600000pt;}
.y66{bottom:1013.266667pt;}
.y7{bottom:1024.600000pt;}
.y31{bottom:1029.933333pt;}
.y65{bottom:1031.933333pt;}
.y2{bottom:1057.293333pt;}
.y4{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.hc{height:27.582302pt;}
.he{height:27.742292pt;}
.h6{height:30.112287pt;}
.h3{height:39.173497pt;}
.h5{height:39.198251pt;}
.h1{height:39.979167pt;}
.h2{height:44.687500pt;}
.hd{height:44.774114pt;}
.h13{height:47.218750pt;}
.h12{height:49.973958pt;}
.h11{height:54.971354pt;}
.ha{height:57.781250pt;}
.h4{height:59.018798pt;}
.h9{height:59.968750pt;}
.hf{height:63.760053pt;}
.h10{height:63.779629pt;}
.hb{height:67.411458pt;}
.h8{height:86.671875pt;}
.h7{height:89.953125pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.w6{width:47.786078pt;}
.w5{width:47.946434pt;}
.w4{width:56.477372pt;}
.w7{width:642.532997pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.942070pt;}
.x17{left:12.026698pt;}
.x13{left:13.630257pt;}
.x15{left:15.875241pt;}
.x2{left:65.325585pt;}
.x1{left:75.399988pt;}
.x9{left:76.733322pt;}
.x5{left:112.766655pt;}
.x7{left:123.433322pt;}
.x1e{left:160.799988pt;}
.xb{left:201.506655pt;}
.xe{left:298.893322pt;}
.x8{left:318.933322pt;}
.x12{left:321.652868pt;}
.xf{left:330.266655pt;}
.xd{left:342.266655pt;}
.x6{left:345.599988pt;}
.x1a{left:352.973322pt;}
.xc{left:358.973322pt;}
.x3{left:362.306655pt;}
.xa{left:371.639988pt;}
.x14{left:378.124895pt;}
.x4{left:396.999988pt;}
.x16{left:426.071329pt;}
.x1c{left:533.093322pt;}
.x1b{left:552.466655pt;}
.x19{left:575.133322pt;}
.x10{left:629.839988pt;}
.x1d{left:634.533322pt;}
.x11{left:717.933322pt;}
}




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