
    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_2ba4c6feef20cf3cc3c0c45f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_c4ba22479bbdd20230a5eb84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2c87d70034de48282d0a8740.woff2')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_a763f20bcb22008f97dcb2ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ef3b4e42e9b4cf2676ed0b7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_320bd8de588bdeedd763efa0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6bdf391123d7831054ebbeda.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2265d13d81dbbfa5accc41a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls10{letter-spacing:-2.880000px;}
.ls1e{letter-spacing:-2.160000px;}
.ls27{letter-spacing:-1.656000px;}
.ls18{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.341400px;}
.ls6{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.149760px;}
.ls20{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.269400px;}
.ls1c{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.864000px;}
.ls29{letter-spacing:1.008000px;}
.ls28{letter-spacing:3.600000px;}
.lsd{letter-spacing:4.320000px;}
.ls15{letter-spacing:5.760000px;}
.ls9{letter-spacing:6.480000px;}
.ls8{letter-spacing:7.200000px;}
.ls12{letter-spacing:10.080000px;}
.ls24{letter-spacing:10.800000px;}
.ls17{letter-spacing:12.960000px;}
.lsf{letter-spacing:15.120000px;}
.ls11{letter-spacing:15.840000px;}
.ls25{letter-spacing:100.800000px;}
.ls2{letter-spacing:151.896000px;}
.ls1{letter-spacing:1123.356000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.718600px;}
.ws18{word-spacing:-19.008000px;}
.ws7{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.576000px;}
.wsd{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.432000px;}
.wse{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws14{word-spacing:-17.568000px;}
.wsf{word-spacing:-17.064000px;}
.ws17{word-spacing:-16.344000px;}
.ws13{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.329400px;}
.ws15{word-spacing:-11.836200px;}
.ws12{word-spacing:-11.700000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-5.112000px;}
._3{margin-left:-3.240000px;}
._2{margin-left:-2.082720px;}
._0{margin-left:-1.008000px;}
._1{width:1.092000px;}
._d{width:2.352000px;}
._6{width:3.384000px;}
._4{width:4.536000px;}
._5{width:5.868000px;}
._e{width:7.536000px;}
._f{width:8.568000px;}
._12{width:10.128000px;}
._13{width:11.640000px;}
._a{width:12.888000px;}
._b{width:14.436000px;}
._15{width:15.888000px;}
._16{width:16.944000px;}
._14{width:19.656000px;}
._8{width:20.808000px;}
._9{width:22.770720px;}
._19{width:24.264000px;}
._1d{width:25.848000px;}
._17{width:27.504000px;}
._18{width:28.524000px;}
._1e{width:29.592000px;}
._21{width:30.894720px;}
._10{width:32.160000px;}
._11{width:33.288000px;}
._1b{width:34.554720px;}
._1a{width:35.832000px;}
._1f{width:37.512000px;}
._1c{width:39.630720px;}
._c{width:46.296000px;}
._20{width:1491.396000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:57.060000px;}
.y4c{bottom:75.636000px;}
.y4{bottom:97.125005px;}
.y1f{bottom:139.264499px;}
.y6a{bottom:156.270000px;}
.ya5{bottom:160.410000px;}
.y4b{bottom:161.850000px;}
.yc2{bottom:165.630000px;}
.y144{bottom:166.170000px;}
.y135{bottom:166.710000px;}
.y129{bottom:169.230000px;}
.y104{bottom:176.970000px;}
.y74{bottom:182.190000px;}
.y4a{bottom:182.550000px;}
.yf0{bottom:183.990000px;}
.ya4{bottom:184.170000px;}
.y143{bottom:186.870000px;}
.y69{bottom:187.410000px;}
.y128{bottom:189.930000px;}
.yc1{bottom:196.590000px;}
.y16{bottom:196.933500px;}
.y103{bottom:197.670000px;}
.y49{bottom:203.250000px;}
.y142{bottom:207.570000px;}
.y90{bottom:208.110000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y127{bottom:210.630000px;}
.y73{bottom:213.150000px;}
.yef{bottom:214.950000px;}
.y68{bottom:218.370000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y48{bottom:223.950000px;}
.yc0{bottom:227.730000px;}
.y141{bottom:228.270000px;}
.y134{bottom:228.810000px;}
.y126{bottom:231.330000px;}
.ya3{bottom:231.870000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y8f{bottom:239.070000px;}
.y72{bottom:243.930000px;}
.yc7{bottom:244.290000px;}
.y47{bottom:244.470000px;}
.yee{bottom:245.910000px;}
.y140{bottom:248.970000px;}
.y67{bottom:249.510000px;}
.y125{bottom:252.030000px;}
.ya2{bottom:255.630000px;}
.ybf{bottom:258.690000px;}
.y102{bottom:259.770000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y46{bottom:265.170000px;}
.y13f{bottom:269.670000px;}
.y8e{bottom:270.210000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y124{bottom:272.730000px;}
.yc6{bottom:275.250000px;}
.yed{bottom:277.050000px;}
.y71{bottom:277.410000px;}
.ya1{bottom:279.390000px;}
.y66{bottom:280.470000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y45{bottom:285.870000px;}
.ybe{bottom:289.830000px;}
.y13e{bottom:290.370000px;}
.y133{bottom:290.910000px;}
.y123{bottom:293.430000px;}
.y8d{bottom:301.170000px;}
.ya0{bottom:303.330000px;}
.yc5{bottom:306.390000px;}
.y44{bottom:306.570000px;}
.yec{bottom:308.010000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y13d{bottom:311.070000px;}
.y70{bottom:311.250000px;}
.y65{bottom:311.610000px;}
.y122{bottom:314.130000px;}
.ybd{bottom:320.790000px;}
.y101{bottom:321.870000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y9f{bottom:327.090000px;}
.y43{bottom:327.270000px;}
.y13c{bottom:331.815000px;}
.y8c{bottom:332.355000px;}
.y121{bottom:334.875000px;}
.yc4{bottom:337.395000px;}
.yeb{bottom:339.195000px;}
.y6f{bottom:342.255000px;}
.y64{bottom:342.615000px;}
.y42{bottom:348.015000px;}
.yd{bottom:348.133500px;}
.y9e{bottom:350.895000px;}
.ybc{bottom:351.975000px;}
.y13b{bottom:352.515000px;}
.y132{bottom:353.055000px;}
.y120{bottom:355.575000px;}
.y8b{bottom:363.315000px;}
.ycd{bottom:368.535000px;}
.y41{bottom:368.715000px;}
.yea{bottom:370.155000px;}
.yc3{bottom:370.695000px;}
.y13a{bottom:373.215000px;}
.y6e{bottom:373.395000px;}
.y63{bottom:373.755000px;}
.y9d{bottom:374.655000px;}
.y11f{bottom:376.275000px;}
.ybb{bottom:382.935000px;}
.y100{bottom:384.015000px;}
.yc{bottom:386.785499px;}
.y40{bottom:389.415000px;}
.y139{bottom:393.915000px;}
.y8a{bottom:394.455000px;}
.y11e{bottom:396.975000px;}
.y9c{bottom:398.595000px;}
.ycc{bottom:399.495000px;}
.ye9{bottom:401.295000px;}
.yf1{bottom:401.655000px;}
.y6d{bottom:404.355000px;}
.y62{bottom:404.715000px;}
.yba{bottom:406.875000px;}
.yb{bottom:408.044999px;}
.y3f{bottom:410.115000px;}
.y138{bottom:414.615000px;}
.y131{bottom:415.155000px;}
.y11d{bottom:417.675000px;}
.y9b{bottom:422.355000px;}
.y89{bottom:425.415000px;}
.ycb{bottom:430.635000px;}
.y3e{bottom:430.815000px;}
.ye8{bottom:432.255000px;}
.y137{bottom:435.315000px;}
.y61{bottom:435.855000px;}
.yb9{bottom:437.835000px;}
.y11c{bottom:438.375000px;}
.y9a{bottom:446.115000px;}
.y3d{bottom:451.515000px;}
.y88{bottom:456.555000px;}
.y11b{bottom:459.075000px;}
.yca{bottom:461.595000px;}
.ye7{bottom:463.395000px;}
.y60{bottom:466.815000px;}
.yb8{bottom:468.975000px;}
.y99{bottom:469.875000px;}
.y3c{bottom:472.215000px;}
.y136{bottom:473.835000px;}
.y130{bottom:477.255000px;}
.y11a{bottom:479.775000px;}
.ya{bottom:484.864502px;}
.y87{bottom:487.515000px;}
.yc9{bottom:492.735000px;}
.y98{bottom:493.815000px;}
.ye6{bottom:494.355000px;}
.y5f{bottom:497.955000px;}
.yb7{bottom:499.935000px;}
.y119{bottom:500.475000px;}
.y9{bottom:502.864502px;}
.yff{bottom:508.215000px;}
.y3b{bottom:513.615000px;}
.y97{bottom:517.575000px;}
.y86{bottom:518.655000px;}
.y8{bottom:520.864502px;}
.y118{bottom:521.175000px;}
.yb6{bottom:523.695000px;}
.ye5{bottom:525.495000px;}
.yc8{bottom:525.855000px;}
.y5e{bottom:528.915000px;}
.y3a{bottom:534.315000px;}
.y7{bottom:538.864499px;}
.y12f{bottom:539.355000px;}
.y96{bottom:541.335000px;}
.y117{bottom:541.875000px;}
.yb5{bottom:547.635000px;}
.y85{bottom:549.615000px;}
.ye4{bottom:556.455000px;}
.y6{bottom:556.864499px;}
.y5d{bottom:560.055000px;}
.y116{bottom:562.575000px;}
.y95{bottom:565.095000px;}
.yfe{bottom:570.315000px;}
.yb4{bottom:571.395000px;}
.y39{bottom:575.715000px;}
.y84{bottom:580.755000px;}
.y115{bottom:583.275000px;}
.ye3{bottom:587.595000px;}
.y94{bottom:588.855000px;}
.y5c{bottom:591.015000px;}
.yb3{bottom:595.185000px;}
.y38{bottom:596.445000px;}
.y12e{bottom:601.485000px;}
.y114{bottom:604.005000px;}
.y80{bottom:611.745000px;}
.y93{bottom:612.825000px;}
.y37{bottom:616.785000px;}
.ye2{bottom:618.585000px;}
.yb2{bottom:618.945000px;}
.y5b{bottom:622.005000px;}
.y113{bottom:624.705000px;}
.y7f{bottom:632.445000px;}
.y92{bottom:636.585000px;}
.y36{bottom:637.485000px;}
.y83{bottom:642.705000px;}
.y112{bottom:645.405000px;}
.ye1{bottom:649.725000px;}
.y5a{bottom:653.145000px;}
.y91{bottom:660.345000px;}
.y35{bottom:661.785000px;}
.y12d{bottom:663.405000px;}
.y111{bottom:666.105000px;}
.yb1{bottom:666.645000px;}
.y7e{bottom:673.845000px;}
.ye0{bottom:680.685000px;}
.y59{bottom:684.105000px;}
.y34{bottom:685.545000px;}
.y110{bottom:686.805000px;}
.yb0{bottom:690.405000px;}
.y7d{bottom:694.545000px;}
.y12c{bottom:704.805000px;}
.y33{bottom:706.245000px;}
.y82{bottom:706.965000px;}
.y10f{bottom:707.505000px;}
.ydf{bottom:711.825000px;}
.yaf{bottom:714.165000px;}
.y58{bottom:715.245000px;}
.yfd{bottom:725.505000px;}
.y5{bottom:726.298500px;}
.y32{bottom:726.945000px;}
.y10e{bottom:728.205000px;}
.y7c{bottom:735.945000px;}
.yae{bottom:737.925000px;}
.yde{bottom:742.785000px;}
.y81{bottom:743.145000px;}
.y57{bottom:746.205000px;}
.y31{bottom:747.645000px;}
.y10d{bottom:748.905000px;}
.y3{bottom:752.599495px;}
.y7b{bottom:756.645000px;}
.yfc{bottom:758.805000px;}
.yad{bottom:761.865000px;}
.y12b{bottom:766.905000px;}
.y30{bottom:768.345000px;}
.y10c{bottom:769.605000px;}
.ydd{bottom:773.925000px;}
.y56{bottom:777.345000px;}
.yac{bottom:785.625000px;}
.y12a{bottom:787.605000px;}
.y2f{bottom:789.045000px;}
.yfb{bottom:792.825000px;}
.ydc{bottom:794.265000px;}
.y7a{bottom:798.045000px;}
.y10b{bottom:808.125000px;}
.y55{bottom:808.305000px;}
.yab{bottom:809.385000px;}
.y2e{bottom:809.745000px;}
.ydb{bottom:813.345000px;}
.y79{bottom:818.745000px;}
.yfa{bottom:823.965000px;}
.y10a{bottom:829.005000px;}
.y2d{bottom:830.445000px;}
.yda{bottom:832.605000px;}
.yaa{bottom:833.145000px;}
.y54{bottom:839.445000px;}
.y109{bottom:849.705000px;}
.y2c{bottom:851.505000px;}
.yd9{bottom:853.305000px;}
.yf9{bottom:854.925000px;}
.ya9{bottom:857.085000px;}
.y78{bottom:860.145000px;}
.y53{bottom:870.450000px;}
.yd8{bottom:874.050000px;}
.y2b{bottom:875.670000px;}
.y2{bottom:879.369000px;}
.y77{bottom:880.890000px;}
.yf8{bottom:886.110000px;}
.y108{bottom:891.150000px;}
.yd7{bottom:894.750000px;}
.y52{bottom:901.590000px;}
.ya8{bottom:904.650000px;}
.y107{bottom:911.850000px;}
.y2a{bottom:912.390000px;}
.yd6{bottom:915.450000px;}
.yf7{bottom:917.070000px;}
.y76{bottom:922.290000px;}
.ya7{bottom:928.410000px;}
.y51{bottom:932.550000px;}
.yd5{bottom:936.150000px;}
.y75{bottom:942.990000px;}
.y29{bottom:949.290000px;}
.yf6{bottom:950.190000px;}
.ya6{bottom:952.350000px;}
.y106{bottom:953.250000px;}
.yd4{bottom:956.850000px;}
.y50{bottom:963.690000px;}
.y1{bottom:966.726000px;}
.y105{bottom:973.950000px;}
.y28{bottom:976.110000px;}
.yd3{bottom:977.190000px;}
.yf5{bottom:986.910000px;}
.y4f{bottom:994.650000px;}
.yd2{bottom:996.090000px;}
.y27{bottom:999.870000px;}
.yd1{bottom:1015.350000px;}
.yf4{bottom:1020.570000px;}
.y26{bottom:1023.630000px;}
.y4e{bottom:1025.790000px;}
.yd0{bottom:1036.050000px;}
.y25{bottom:1047.570000px;}
.yf3{bottom:1051.710000px;}
.y6c{bottom:1056.750000px;}
.y4d{bottom:1058.910000px;}
.y24{bottom:1071.330000px;}
.ycf{bottom:1077.450000px;}
.yf2{bottom:1084.830000px;}
.y6b{bottom:1087.890000px;}
.y23{bottom:1095.090000px;}
.yce{bottom:1098.150000px;}
.y22{bottom:1118.850000px;}
.y20{bottom:1195.380000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:52.066406px;}
.h2{height:55.080000px;}
.h9{height:59.439023px;}
.hf{height:65.010937px;}
.he{height:70.628906px;}
.ha{height:70.664062px;}
.hc{height:72.562500px;}
.h11{height:74.704922px;}
.h5{height:78.030000px;}
.h10{height:82.676953px;}
.hb{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:97.955987px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:127.655987px;}
.xf{left:157.349987px;}
.xc{left:170.129987px;}
.x4{left:203.484001px;}
.x7{left:231.509987px;}
.xa{left:275.969987px;}
.xb{left:293.474987px;}
.x6{left:313.634987px;}
.x9{left:375.194987px;}
.xe{left:427.034987px;}
.xd{left:431.534987px;}
.x8{left:446.474987px;}
.x3{left:454.959000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls10{letter-spacing:-2.560000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.ls27{letter-spacing:-1.472000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.133120pt;}
.ls20{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.239467pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.896000pt;}
.ls28{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls8{letter-spacing:6.400000pt;}
.ls12{letter-spacing:8.960000pt;}
.ls24{letter-spacing:9.600000pt;}
.ls17{letter-spacing:11.520000pt;}
.lsf{letter-spacing:13.440000pt;}
.ls11{letter-spacing:14.080000pt;}
.ls25{letter-spacing:89.600000pt;}
.ls2{letter-spacing:135.018667pt;}
.ls1{letter-spacing:998.538667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.416533pt;}
.ws18{word-spacing:-16.896000pt;}
.ws7{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.512000pt;}
.wsd{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws14{word-spacing:-15.616000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws17{word-spacing:-14.528000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.959467pt;}
.ws15{word-spacing:-10.521067pt;}
.ws12{word-spacing:-10.400000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-4.544000pt;}
._3{margin-left:-2.880000pt;}
._2{margin-left:-1.851307pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.970667pt;}
._d{width:2.090667pt;}
._6{width:3.008000pt;}
._4{width:4.032000pt;}
._5{width:5.216000pt;}
._e{width:6.698667pt;}
._f{width:7.616000pt;}
._12{width:9.002667pt;}
._13{width:10.346667pt;}
._a{width:11.456000pt;}
._b{width:12.832000pt;}
._15{width:14.122667pt;}
._16{width:15.061333pt;}
._14{width:17.472000pt;}
._8{width:18.496000pt;}
._9{width:20.240640pt;}
._19{width:21.568000pt;}
._1d{width:22.976000pt;}
._17{width:24.448000pt;}
._18{width:25.354667pt;}
._1e{width:26.304000pt;}
._21{width:27.461973pt;}
._10{width:28.586667pt;}
._11{width:29.589333pt;}
._1b{width:30.715307pt;}
._1a{width:31.850667pt;}
._1f{width:33.344000pt;}
._1c{width:35.227307pt;}
._c{width:41.152000pt;}
._20{width:1325.685333pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:50.720000pt;}
.y4c{bottom:67.232000pt;}
.y4{bottom:86.333337pt;}
.y1f{bottom:123.790666pt;}
.y6a{bottom:138.906667pt;}
.ya5{bottom:142.586667pt;}
.y4b{bottom:143.866667pt;}
.yc2{bottom:147.226667pt;}
.y144{bottom:147.706667pt;}
.y135{bottom:148.186667pt;}
.y129{bottom:150.426667pt;}
.y104{bottom:157.306667pt;}
.y74{bottom:161.946667pt;}
.y4a{bottom:162.266667pt;}
.yf0{bottom:163.546667pt;}
.ya4{bottom:163.706667pt;}
.y143{bottom:166.106667pt;}
.y69{bottom:166.586667pt;}
.y128{bottom:168.826667pt;}
.yc1{bottom:174.746667pt;}
.y16{bottom:175.052000pt;}
.y103{bottom:175.706667pt;}
.y49{bottom:180.666667pt;}
.y142{bottom:184.506667pt;}
.y90{bottom:184.986667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y127{bottom:187.226667pt;}
.y73{bottom:189.466667pt;}
.yef{bottom:191.066667pt;}
.y68{bottom:194.106667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y48{bottom:199.066667pt;}
.yc0{bottom:202.426667pt;}
.y141{bottom:202.906667pt;}
.y134{bottom:203.386667pt;}
.y126{bottom:205.626667pt;}
.ya3{bottom:206.106667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y8f{bottom:212.506667pt;}
.y72{bottom:216.826667pt;}
.yc7{bottom:217.146667pt;}
.y47{bottom:217.306667pt;}
.yee{bottom:218.586667pt;}
.y140{bottom:221.306667pt;}
.y67{bottom:221.786667pt;}
.y125{bottom:224.026667pt;}
.ya2{bottom:227.226667pt;}
.ybf{bottom:229.946667pt;}
.y102{bottom:230.906667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y46{bottom:235.706667pt;}
.y13f{bottom:239.706667pt;}
.y8e{bottom:240.186667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y124{bottom:242.426667pt;}
.yc6{bottom:244.666667pt;}
.yed{bottom:246.266667pt;}
.y71{bottom:246.586667pt;}
.ya1{bottom:248.346667pt;}
.y66{bottom:249.306667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y45{bottom:254.106667pt;}
.ybe{bottom:257.626667pt;}
.y13e{bottom:258.106667pt;}
.y133{bottom:258.586667pt;}
.y123{bottom:260.826667pt;}
.y8d{bottom:267.706667pt;}
.ya0{bottom:269.626667pt;}
.yc5{bottom:272.346667pt;}
.y44{bottom:272.506667pt;}
.yec{bottom:273.786667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y13d{bottom:276.506667pt;}
.y70{bottom:276.666667pt;}
.y65{bottom:276.986667pt;}
.y122{bottom:279.226667pt;}
.ybd{bottom:285.146667pt;}
.y101{bottom:286.106667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y9f{bottom:290.746667pt;}
.y43{bottom:290.906667pt;}
.y13c{bottom:294.946667pt;}
.y8c{bottom:295.426667pt;}
.y121{bottom:297.666667pt;}
.yc4{bottom:299.906667pt;}
.yeb{bottom:301.506667pt;}
.y6f{bottom:304.226667pt;}
.y64{bottom:304.546667pt;}
.y42{bottom:309.346667pt;}
.yd{bottom:309.452000pt;}
.y9e{bottom:311.906667pt;}
.ybc{bottom:312.866667pt;}
.y13b{bottom:313.346667pt;}
.y132{bottom:313.826667pt;}
.y120{bottom:316.066667pt;}
.y8b{bottom:322.946667pt;}
.ycd{bottom:327.586667pt;}
.y41{bottom:327.746667pt;}
.yea{bottom:329.026667pt;}
.yc3{bottom:329.506667pt;}
.y13a{bottom:331.746667pt;}
.y6e{bottom:331.906667pt;}
.y63{bottom:332.226667pt;}
.y9d{bottom:333.026667pt;}
.y11f{bottom:334.466667pt;}
.ybb{bottom:340.386667pt;}
.y100{bottom:341.346667pt;}
.yc{bottom:343.809333pt;}
.y40{bottom:346.146667pt;}
.y139{bottom:350.146667pt;}
.y8a{bottom:350.626667pt;}
.y11e{bottom:352.866667pt;}
.y9c{bottom:354.306667pt;}
.ycc{bottom:355.106667pt;}
.ye9{bottom:356.706667pt;}
.yf1{bottom:357.026667pt;}
.y6d{bottom:359.426667pt;}
.y62{bottom:359.746667pt;}
.yba{bottom:361.666667pt;}
.yb{bottom:362.706666pt;}
.y3f{bottom:364.546667pt;}
.y138{bottom:368.546667pt;}
.y131{bottom:369.026667pt;}
.y11d{bottom:371.266667pt;}
.y9b{bottom:375.426667pt;}
.y89{bottom:378.146667pt;}
.ycb{bottom:382.786667pt;}
.y3e{bottom:382.946667pt;}
.ye8{bottom:384.226667pt;}
.y137{bottom:386.946667pt;}
.y61{bottom:387.426667pt;}
.yb9{bottom:389.186667pt;}
.y11c{bottom:389.666667pt;}
.y9a{bottom:396.546667pt;}
.y3d{bottom:401.346667pt;}
.y88{bottom:405.826667pt;}
.y11b{bottom:408.066667pt;}
.yca{bottom:410.306667pt;}
.ye7{bottom:411.906667pt;}
.y60{bottom:414.946667pt;}
.yb8{bottom:416.866667pt;}
.y99{bottom:417.666667pt;}
.y3c{bottom:419.746667pt;}
.y136{bottom:421.186667pt;}
.y130{bottom:424.226667pt;}
.y11a{bottom:426.466667pt;}
.ya{bottom:430.990669pt;}
.y87{bottom:433.346667pt;}
.yc9{bottom:437.986667pt;}
.y98{bottom:438.946667pt;}
.ye6{bottom:439.426667pt;}
.y5f{bottom:442.626667pt;}
.yb7{bottom:444.386667pt;}
.y119{bottom:444.866667pt;}
.y9{bottom:446.990669pt;}
.yff{bottom:451.746667pt;}
.y3b{bottom:456.546667pt;}
.y97{bottom:460.066667pt;}
.y86{bottom:461.026667pt;}
.y8{bottom:462.990669pt;}
.y118{bottom:463.266667pt;}
.yb6{bottom:465.506667pt;}
.ye5{bottom:467.106667pt;}
.yc8{bottom:467.426667pt;}
.y5e{bottom:470.146667pt;}
.y3a{bottom:474.946667pt;}
.y7{bottom:478.990666pt;}
.y12f{bottom:479.426667pt;}
.y96{bottom:481.186667pt;}
.y117{bottom:481.666667pt;}
.yb5{bottom:486.786667pt;}
.y85{bottom:488.546667pt;}
.ye4{bottom:494.626667pt;}
.y6{bottom:494.990666pt;}
.y5d{bottom:497.826667pt;}
.y116{bottom:500.066667pt;}
.y95{bottom:502.306667pt;}
.yfe{bottom:506.946667pt;}
.yb4{bottom:507.906667pt;}
.y39{bottom:511.746667pt;}
.y84{bottom:516.226667pt;}
.y115{bottom:518.466667pt;}
.ye3{bottom:522.306667pt;}
.y94{bottom:523.426667pt;}
.y5c{bottom:525.346667pt;}
.yb3{bottom:529.053333pt;}
.y38{bottom:530.173333pt;}
.y12e{bottom:534.653333pt;}
.y114{bottom:536.893333pt;}
.y80{bottom:543.773333pt;}
.y93{bottom:544.733333pt;}
.y37{bottom:548.253333pt;}
.ye2{bottom:549.853333pt;}
.yb2{bottom:550.173333pt;}
.y5b{bottom:552.893333pt;}
.y113{bottom:555.293333pt;}
.y7f{bottom:562.173333pt;}
.y92{bottom:565.853333pt;}
.y36{bottom:566.653333pt;}
.y83{bottom:571.293333pt;}
.y112{bottom:573.693333pt;}
.ye1{bottom:577.533333pt;}
.y5a{bottom:580.573333pt;}
.y91{bottom:586.973333pt;}
.y35{bottom:588.253333pt;}
.y12d{bottom:589.693333pt;}
.y111{bottom:592.093333pt;}
.yb1{bottom:592.573333pt;}
.y7e{bottom:598.973333pt;}
.ye0{bottom:605.053333pt;}
.y59{bottom:608.093333pt;}
.y34{bottom:609.373333pt;}
.y110{bottom:610.493333pt;}
.yb0{bottom:613.693333pt;}
.y7d{bottom:617.373333pt;}
.y12c{bottom:626.493333pt;}
.y33{bottom:627.773333pt;}
.y82{bottom:628.413333pt;}
.y10f{bottom:628.893333pt;}
.ydf{bottom:632.733333pt;}
.yaf{bottom:634.813333pt;}
.y58{bottom:635.773333pt;}
.yfd{bottom:644.893333pt;}
.y5{bottom:645.598667pt;}
.y32{bottom:646.173333pt;}
.y10e{bottom:647.293333pt;}
.y7c{bottom:654.173333pt;}
.yae{bottom:655.933333pt;}
.yde{bottom:660.253333pt;}
.y81{bottom:660.573333pt;}
.y57{bottom:663.293333pt;}
.y31{bottom:664.573333pt;}
.y10d{bottom:665.693333pt;}
.y3{bottom:668.977329pt;}
.y7b{bottom:672.573333pt;}
.yfc{bottom:674.493333pt;}
.yad{bottom:677.213333pt;}
.y12b{bottom:681.693333pt;}
.y30{bottom:682.973333pt;}
.y10c{bottom:684.093333pt;}
.ydd{bottom:687.933333pt;}
.y56{bottom:690.973333pt;}
.yac{bottom:698.333333pt;}
.y12a{bottom:700.093333pt;}
.y2f{bottom:701.373333pt;}
.yfb{bottom:704.733333pt;}
.ydc{bottom:706.013333pt;}
.y7a{bottom:709.373333pt;}
.y10b{bottom:718.333333pt;}
.y55{bottom:718.493333pt;}
.yab{bottom:719.453333pt;}
.y2e{bottom:719.773333pt;}
.ydb{bottom:722.973333pt;}
.y79{bottom:727.773333pt;}
.yfa{bottom:732.413333pt;}
.y10a{bottom:736.893333pt;}
.y2d{bottom:738.173333pt;}
.yda{bottom:740.093333pt;}
.yaa{bottom:740.573333pt;}
.y54{bottom:746.173333pt;}
.y109{bottom:755.293333pt;}
.y2c{bottom:756.893333pt;}
.yd9{bottom:758.493333pt;}
.yf9{bottom:759.933333pt;}
.ya9{bottom:761.853333pt;}
.y78{bottom:764.573333pt;}
.y53{bottom:773.733333pt;}
.yd8{bottom:776.933333pt;}
.y2b{bottom:778.373333pt;}
.y2{bottom:781.661334pt;}
.y77{bottom:783.013333pt;}
.yf8{bottom:787.653333pt;}
.y108{bottom:792.133333pt;}
.yd7{bottom:795.333333pt;}
.y52{bottom:801.413333pt;}
.ya8{bottom:804.133333pt;}
.y107{bottom:810.533333pt;}
.y2a{bottom:811.013333pt;}
.yd6{bottom:813.733333pt;}
.yf7{bottom:815.173333pt;}
.y76{bottom:819.813333pt;}
.ya7{bottom:825.253333pt;}
.y51{bottom:828.933333pt;}
.yd5{bottom:832.133333pt;}
.y75{bottom:838.213333pt;}
.y29{bottom:843.813333pt;}
.yf6{bottom:844.613333pt;}
.ya6{bottom:846.533333pt;}
.y106{bottom:847.333333pt;}
.yd4{bottom:850.533333pt;}
.y50{bottom:856.613333pt;}
.y1{bottom:859.312000pt;}
.y105{bottom:865.733333pt;}
.y28{bottom:867.653333pt;}
.yd3{bottom:868.613333pt;}
.yf5{bottom:877.253333pt;}
.y4f{bottom:884.133333pt;}
.yd2{bottom:885.413333pt;}
.y27{bottom:888.773333pt;}
.yd1{bottom:902.533333pt;}
.yf4{bottom:907.173333pt;}
.y26{bottom:909.893333pt;}
.y4e{bottom:911.813333pt;}
.yd0{bottom:920.933333pt;}
.y25{bottom:931.173333pt;}
.yf3{bottom:934.853333pt;}
.y6c{bottom:939.333333pt;}
.y4d{bottom:941.253333pt;}
.y24{bottom:952.293333pt;}
.ycf{bottom:957.733333pt;}
.yf2{bottom:964.293333pt;}
.y6b{bottom:967.013333pt;}
.y23{bottom:973.413333pt;}
.yce{bottom:976.133333pt;}
.y22{bottom:994.533333pt;}
.y20{bottom:1062.560000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:46.281250pt;}
.h2{height:48.960000pt;}
.h9{height:52.834688pt;}
.hf{height:57.787500pt;}
.he{height:62.781250pt;}
.ha{height:62.812500pt;}
.hc{height:64.500000pt;}
.h11{height:66.404375pt;}
.h5{height:69.360000pt;}
.h10{height:73.490625pt;}
.hb{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:87.071988pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:113.471988pt;}
.xf{left:139.866655pt;}
.xc{left:151.226655pt;}
.x4{left:180.874667pt;}
.x7{left:205.786655pt;}
.xa{left:245.306655pt;}
.xb{left:260.866655pt;}
.x6{left:278.786655pt;}
.x9{left:333.506655pt;}
.xe{left:379.586655pt;}
.xd{left:383.586655pt;}
.x8{left:396.866655pt;}
.x3{left:404.408000pt;}
}




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