
    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_e121335a0297b36093c345ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_4e3d91c71a6eefdbada391be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_9a6d44f2d1651cf93bbc5848.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_70008a11a333f97fe310426e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.208008;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_d55cb9e403e64fe20d633bb6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854492;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_dc911d98655109f2d28356cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_1af9718a109f3b28f051d3f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_b20f8404ac4e5b59b9df48be.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.977539;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_09bc4f34059360e14e75fa95.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854492;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.672000px;}
.lsf{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.414600px;}
.ls13{letter-spacing:-0.403200px;}
.lse{letter-spacing:-0.241800px;}
.ls7{letter-spacing:-0.207600px;}
.ls18{letter-spacing:-0.184200px;}
.ls8{letter-spacing:-0.172800px;}
.lsd{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.051840px;}
.ls15{letter-spacing:-0.043200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.lsb{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.075000px;}
.ls16{letter-spacing:0.089400px;}
.ls2{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.220200px;}
.lsa{letter-spacing:0.227400px;}
.ls9{letter-spacing:0.303120px;}
.ls10{letter-spacing:0.308400px;}
.ls1{letter-spacing:0.324000px;}
.ls17{letter-spacing:0.328200px;}
.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;}
}
.ws2{word-spacing:-23.904000px;}
.ws0{word-spacing:-18.753000px;}
.ws10{word-spacing:-14.901000px;}
.wsc{word-spacing:-14.881200px;}
.ws4{word-spacing:-14.673600px;}
.wsf{word-spacing:-14.662200px;}
.wsd{word-spacing:-14.647800px;}
.ws8{word-spacing:-14.621760px;}
.ws1{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.572800px;}
.wse{word-spacing:-14.529600px;}
.wsa{word-spacing:-14.463600px;}
.ws11{word-spacing:-14.388600px;}
.wsb{word-spacing:-14.331000px;}
.ws7{word-spacing:-12.204000px;}
.ws6{word-spacing:-10.840200px;}
.ws9{word-spacing:-10.527600px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-2.022960px;}
._0{margin-left:-1.013040px;}
._1{width:1.081680px;}
._c{width:2.555520px;}
._8{width:3.673680px;}
._7{width:4.976400px;}
._6{width:6.160320px;}
._e{width:7.457760px;}
._d{width:8.611200px;}
._a{width:9.671040px;}
._9{width:10.750320px;}
._18{width:12.334800px;}
._1c{width:13.369920px;}
._2{width:16.075440px;}
._3{width:17.178240px;}
._4{width:18.399120px;}
._5{width:19.691760px;}
._14{width:21.671280px;}
._f{width:23.515200px;}
._22{width:24.547680px;}
._10{width:25.568640px;}
._11{width:26.758560px;}
._1a{width:27.840240px;}
._19{width:28.951680px;}
._1f{width:30.030960px;}
._1e{width:31.113360px;}
._1d{width:32.344560px;}
._1b{width:34.171920px;}
._12{width:35.239680px;}
._13{width:36.689040px;}
._17{width:38.352960px;}
._25{width:39.962160px;}
._26{width:41.540160px;}
._21{width:42.935280px;}
._20{width:44.513280px;}
._15{width:47.494080px;}
._16{width:48.705840px;}
._24{width:51.402240px;}
._23{width:53.011440px;}
._b{width:989.968800px;}
.fc5{color:rgb(54,96,145);}
.fc4{color:rgb(200,16,46);}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(0,51,102);}
.fc6{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:131.760000px;}
.y134{bottom:-6.300000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:11.310000px;}
.ya6{bottom:11.670000px;}
.y24{bottom:40.500000px;}
.y29{bottom:46.260000px;}
.y2{bottom:46.620000px;}
.y1{bottom:65.196000px;}
.y23{bottom:74.736000px;}
.y26{bottom:84.240000px;}
.y22{bottom:111.096000px;}
.y12d{bottom:111.816000px;}
.yd0{bottom:112.896000px;}
.y88{bottom:114.336000px;}
.y21{bottom:114.876000px;}
.y11e{bottom:119.016000px;}
.y108{bottom:119.556000px;}
.y51{bottom:122.076000px;}
.yed{bottom:126.756000px;}
.y76{bottom:129.456000px;}
.y20{bottom:133.236000px;}
.yf9{bottom:134.136000px;}
.y131{bottom:134.676000px;}
.ycf{bottom:135.036000px;}
.y87{bottom:136.656000px;}
.yb1{bottom:137.196000px;}
.y50{bottom:144.396000px;}
.y12c{bottom:149.076000px;}
.y75{bottom:151.590000px;}
.yf8{bottom:156.270000px;}
.y107{bottom:156.810000px;}
.y86{bottom:158.790000px;}
.yb0{bottom:159.330000px;}
.yec{bottom:164.010000px;}
.y1f{bottom:165.270000px;}
.y9e{bottom:166.530000px;}
.y4f{bottom:166.710000px;}
.yce{bottom:172.290000px;}
.y74{bottom:173.910000px;}
.y11d{bottom:178.590000px;}
.y106{bottom:179.130000px;}
.y85{bottom:181.110000px;}
.ya4{bottom:181.650000px;}
.y12b{bottom:186.330000px;}
.y1e{bottom:187.410000px;}
.y4e{bottom:188.850000px;}
.yf7{bottom:193.530000px;}
.y130{bottom:194.070000px;}
.ycd{bottom:194.610000px;}
.y73{bottom:196.050000px;}
.yeb{bottom:201.270000px;}
.y98{bottom:203.430000px;}
.ya3{bottom:203.790000px;}
.y12a{bottom:208.650000px;}
.y1d{bottom:209.730000px;}
.y4d{bottom:211.170000px;}
.y11c{bottom:215.850000px;}
.y12f{bottom:216.390000px;}
.y72{bottom:218.370000px;}
.yea{bottom:223.590000px;}
.y97{bottom:225.570000px;}
.ya2{bottom:226.110000px;}
.yf6{bottom:230.790000px;}
.y1c{bottom:231.870000px;}
.y4c{bottom:233.310000px;}
.y105{bottom:238.530000px;}
.y71{bottom:240.510000px;}
.y129{bottom:245.730000px;}
.y96{bottom:247.890000px;}
.ya1{bottom:248.430000px;}
.y11b{bottom:253.110000px;}
.y12e{bottom:253.650000px;}
.ycc{bottom:254.010000px;}
.y9d{bottom:255.630000px;}
.ye9{bottom:260.850000px;}
.y70{bottom:262.830000px;}
.y1b{bottom:266.070000px;}
.yf5{bottom:268.050000px;}
.y95{bottom:270.030000px;}
.y4b{bottom:270.570000px;}
.y104{bottom:275.790000px;}
.y9c{bottom:277.770000px;}
.ye8{bottom:282.990000px;}
.y6f{bottom:285.150000px;}
.y11a{bottom:290.370000px;}
.ycb{bottom:291.270000px;}
.y94{bottom:292.350000px;}
.y4a{bottom:292.890000px;}
.y9b{bottom:300.090000px;}
.yf4{bottom:305.310000px;}
.y1a{bottom:307.110000px;}
.y6e{bottom:307.290000px;}
.y119{bottom:312.555000px;}
.y103{bottom:313.095000px;}
.yca{bottom:313.635000px;}
.y93{bottom:314.715000px;}
.y49{bottom:315.075000px;}
.ye7{bottom:320.295000px;}
.y9a{bottom:322.455000px;}
.y19{bottom:327.315000px;}
.y128{bottom:327.675000px;}
.y6d{bottom:329.655000px;}
.y118{bottom:334.875000px;}
.y102{bottom:335.415000px;}
.y92{bottom:336.855000px;}
.y48{bottom:337.395000px;}
.ye6{bottom:342.615000px;}
.y8f{bottom:344.595000px;}
.y18{bottom:347.475000px;}
.yc9{bottom:350.895000px;}
.y6c{bottom:351.795000px;}
.y91{bottom:359.175000px;}
.y47{bottom:359.715000px;}
.y127{bottom:364.755000px;}
.y8e{bottom:366.915000px;}
.y117{bottom:372.135000px;}
.y101{bottom:372.675000px;}
.y6b{bottom:374.115000px;}
.ye5{bottom:379.875000px;}
.y90{bottom:381.315000px;}
.y46{bottom:381.855000px;}
.y17{bottom:386.355000px;}
.yc8{bottom:388.155000px;}
.y8d{bottom:389.055000px;}
.y116{bottom:394.275000px;}
.y100{bottom:394.815000px;}
.y84{bottom:396.435000px;}
.ye4{bottom:402.015000px;}
.y45{bottom:404.175000px;}
.y6a{bottom:411.375000px;}
.yf3{bottom:417.135000px;}
.y83{bottom:418.575000px;}
.y126{bottom:424.335000px;}
.yc7{bottom:425.415000px;}
.y44{bottom:426.315000px;}
.y16{bottom:426.675000px;}
.y115{bottom:431.535000px;}
.yff{bottom:432.075000px;}
.y69{bottom:433.695000px;}
.ye3{bottom:439.275000px;}
.y82{bottom:440.895000px;}
.yc6{bottom:447.555000px;}
.y43{bottom:448.635000px;}
.yfe{bottom:454.395000px;}
.y68{bottom:455.835000px;}
.y125{bottom:461.595000px;}
.yad{bottom:463.035000px;}
.y15{bottom:466.815000px;}
.y114{bottom:468.795000px;}
.y42{bottom:470.775000px;}
.ye2{bottom:476.535000px;}
.y67{bottom:478.155000px;}
.y124{bottom:483.735000px;}
.yc5{bottom:484.815000px;}
.yac{bottom:485.355000px;}
.yfd{bottom:491.655000px;}
.y41{bottom:493.095000px;}
.y66{bottom:500.295000px;}
.y113{bottom:506.055000px;}
.y14{bottom:507.135000px;}
.yab{bottom:507.675000px;}
.ye1{bottom:513.795000px;}
.y40{bottom:515.415000px;}
.y123{bottom:520.995000px;}
.yc4{bottom:522.075000px;}
.y65{bottom:522.615000px;}
.y13{bottom:525.675000px;}
.y112{bottom:528.375000px;}
.yaa{bottom:529.815000px;}
.yf2{bottom:536.115000px;}
.y3f{bottom:537.555000px;}
.y122{bottom:543.315000px;}
.yc3{bottom:544.395000px;}
.y64{bottom:544.755000px;}
.ye0{bottom:551.055000px;}
.ybb{bottom:552.135000px;}
.y99{bottom:559.875000px;}
.y111{bottom:565.665000px;}
.y12{bottom:566.565000px;}
.y63{bottom:567.105000px;}
.ydf{bottom:573.405000px;}
.yba{bottom:574.305000px;}
.y3e{bottom:574.845000px;}
.y121{bottom:580.605000px;}
.yc2{bottom:581.685000px;}
.y8c{bottom:582.045000px;}
.y62{bottom:589.425000px;}
.yf1{bottom:595.545000px;}
.yb9{bottom:596.625000px;}
.y3d{bottom:597.165000px;}
.y110{bottom:602.745000px;}
.y11{bottom:603.825000px;}
.y8b{bottom:604.365000px;}
.yde{bottom:610.665000px;}
.y61{bottom:611.565000px;}
.y120{bottom:617.865000px;}
.yb8{bottom:618.765000px;}
.y3c{bottom:619.305000px;}
.yc1{bottom:626.145000px;}
.y8a{bottom:626.685000px;}
.ydd{bottom:632.805000px;}
.y60{bottom:633.885000px;}
.y10f{bottom:640.005000px;}
.yf{bottom:641.085000px;}
.y3b{bottom:641.625000px;}
.y10{bottom:644.865000px;}
.yfc{bottom:647.745000px;}
.yc0{bottom:648.285000px;}
.y89{bottom:648.825000px;}
.yf0{bottom:655.125000px;}
.y81{bottom:656.025000px;}
.ya0{bottom:663.765000px;}
.y3a{bottom:666.825000px;}
.ydc{bottom:670.065000px;}
.y5f{bottom:671.145000px;}
.ye{bottom:674.745000px;}
.y10e{bottom:677.265000px;}
.y80{bottom:678.345000px;}
.ybf{bottom:685.545000px;}
.y9f{bottom:686.085000px;}
.ydb{bottom:692.385000px;}
.y5e{bottom:693.285000px;}
.yd{bottom:699.945000px;}
.y7f{bottom:700.665000px;}
.yfb{bottom:707.325000px;}
.y39{bottom:708.405000px;}
.y10d{bottom:714.525000px;}
.y5d{bottom:715.605000px;}
.y7e{bottom:722.805000px;}
.yc{bottom:724.965000px;}
.yda{bottom:729.645000px;}
.y38{bottom:730.545000px;}
.y10c{bottom:736.845000px;}
.y5c{bottom:737.745000px;}
.y7d{bottom:745.125000px;}
.y133{bottom:751.785000px;}
.y37{bottom:752.865000px;}
.y5b{bottom:760.065000px;}
.yb{bottom:761.325000px;}
.yd9{bottom:766.725000px;}
.y7c{bottom:767.265000px;}
.y10b{bottom:774.105000px;}
.y36{bottom:775.005000px;}
.y5a{bottom:782.385000px;}
.yd8{bottom:789.045000px;}
.ya9{bottom:789.585000px;}
.y35{bottom:797.325000px;}
.ya{bottom:797.685000px;}
.yef{bottom:803.985000px;}
.y59{bottom:804.525000px;}
.y10a{bottom:811.410000px;}
.ya8{bottom:811.770000px;}
.y34{bottom:819.690000px;}
.yd7{bottom:826.350000px;}
.y58{bottom:826.890000px;}
.y109{bottom:833.550000px;}
.y9{bottom:834.090000px;}
.ybd{bottom:840.420000px;}
.ybe{bottom:841.320000px;}
.y33{bottom:841.830000px;}
.ybc{bottom:847.620000px;}
.yd6{bottom:848.670000px;}
.y57{bottom:849.030000px;}
.yb7{bottom:856.410000px;}
.yfa{bottom:860.220000px;}
.y32{bottom:864.150000px;}
.yd5{bottom:870.810000px;}
.y56{bottom:871.350000px;}
.yb6{bottom:878.550000px;}
.y8{bottom:881.430000px;}
.ya7{bottom:883.260000px;}
.yee{bottom:885.750000px;}
.y31{bottom:886.290000px;}
.y55{bottom:893.670000px;}
.yb5{bottom:900.870000px;}
.y11f{bottom:904.680000px;}
.y7{bottom:905.550000px;}
.yae{bottom:907.200000px;}
.yd4{bottom:908.070000px;}
.y30{bottom:908.610000px;}
.y7b{bottom:915.810000px;}
.yb4{bottom:923.010000px;}
.yd3{bottom:930.390000px;}
.y2f{bottom:930.750000px;}
.ya5{bottom:932.220000px;}
.y6{bottom:933.990000px;}
.y7a{bottom:938.130000px;}
.yb3{bottom:945.330000px;}
.y132{bottom:949.680000px;}
.y2e{bottom:953.070000px;}
.y79{bottom:960.270000px;}
.yb2{bottom:967.650000px;}
.y5{bottom:975.390000px;}
.y78{bottom:982.590000px;}
.yd2{bottom:989.790000px;}
.y2d{bottom:997.530000px;}
.y4{bottom:1004.190000px;}
.y77{bottom:1004.730000px;}
.y2c{bottom:1019.850000px;}
.yd1{bottom:1027.050000px;}
.y2b{bottom:1041.990000px;}
.y3{bottom:1048.650000px;}
.y2a{bottom:1064.340000px;}
.y25{bottom:1084.860000px;}
.y54{bottom:1089.720000px;}
.y53{bottom:1105.560000px;}
.y28{bottom:1108.620000px;}
.y52{bottom:1121.400000px;}
.y27{bottom:1122.660000px;}
.h13{height:12.060000px;}
.h12{height:29.700000px;}
.h11{height:29.880000px;}
.h9{height:35.357344px;}
.hb{height:38.481328px;}
.hf{height:40.843828px;}
.hd{height:43.057617px;}
.h1{height:47.745352px;}
.h10{height:53.446289px;}
.h7{height:56.084062px;}
.h6{height:59.147227px;}
.h2{height:65.560781px;}
.h4{height:83.376211px;}
.ha{height:86.255508px;}
.hc{height:88.200000px;}
.h5{height:91.441406px;}
.he{height:98.100000px;}
.h3{height:111.558516px;}
.h8{height:1187.997990px;}
.h0{height:1188.000000px;}
.w5{width:41.760000px;}
.w4{width:41.940000px;}
.w3{width:80.280000px;}
.w2{width:98.640000px;}
.w1{width:917.998125px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:11.160000px;}
.x15{left:14.190000px;}
.x17{left:40.140000px;}
.x1{left:108.036000px;}
.x8{left:111.276000px;}
.x1a{left:114.696000px;}
.x21{left:162.030000px;}
.x7{left:176.790000px;}
.x2{left:178.050000px;}
.x19{left:193.170000px;}
.xe{left:197.130000px;}
.x9{left:210.630000px;}
.x18{left:217.470000px;}
.x5{left:229.170000px;}
.x11{left:254.370000px;}
.x12{left:264.090000px;}
.xf{left:277.590000px;}
.x3{left:300.495000px;}
.x10{left:305.715000px;}
.x13{left:324.075000px;}
.x6{left:340.635000px;}
.xb{left:386.715000px;}
.x4{left:459.075000px;}
.x1b{left:502.305000px;}
.xc{left:526.603125px;}
.xd{left:531.285000px;}
.xa{left:810.150000px;}
.x14{left:818.100000px;}
.x1c{left:860.400000px;}
.x20{left:863.820000px;}
.x22{left:864.900000px;}
.x1e{left:866.160000px;}
.x16{left:867.600000px;}
.x1f{left:868.680000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.597333pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.368533pt;}
.ls13{letter-spacing:-0.358400pt;}
.lse{letter-spacing:-0.214933pt;}
.ls7{letter-spacing:-0.184533pt;}
.ls18{letter-spacing:-0.163733pt;}
.ls8{letter-spacing:-0.153600pt;}
.lsd{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.046080pt;}
.ls15{letter-spacing:-0.038400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.lsb{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.066667pt;}
.ls16{letter-spacing:0.079467pt;}
.ls2{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.195733pt;}
.lsa{letter-spacing:0.202133pt;}
.ls9{letter-spacing:0.269440pt;}
.ls10{letter-spacing:0.274133pt;}
.ls1{letter-spacing:0.288000pt;}
.ls17{letter-spacing:0.291733pt;}
.ws2{word-spacing:-21.248000pt;}
.ws0{word-spacing:-16.669333pt;}
.ws10{word-spacing:-13.245333pt;}
.wsc{word-spacing:-13.227733pt;}
.ws4{word-spacing:-13.043200pt;}
.wsf{word-spacing:-13.033067pt;}
.wsd{word-spacing:-13.020267pt;}
.ws8{word-spacing:-12.997120pt;}
.ws1{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.953600pt;}
.wse{word-spacing:-12.915200pt;}
.wsa{word-spacing:-12.856533pt;}
.ws11{word-spacing:-12.789867pt;}
.wsb{word-spacing:-12.738667pt;}
.ws7{word-spacing:-10.848000pt;}
.ws6{word-spacing:-9.635733pt;}
.ws9{word-spacing:-9.357867pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-1.798187pt;}
._0{margin-left:-0.900480pt;}
._1{width:0.961493pt;}
._c{width:2.271573pt;}
._8{width:3.265493pt;}
._7{width:4.423467pt;}
._6{width:5.475840pt;}
._e{width:6.629120pt;}
._d{width:7.654400pt;}
._a{width:8.596480pt;}
._9{width:9.555840pt;}
._18{width:10.964267pt;}
._1c{width:11.884373pt;}
._2{width:14.289280pt;}
._3{width:15.269547pt;}
._4{width:16.354773pt;}
._5{width:17.503787pt;}
._14{width:19.263360pt;}
._f{width:20.902400pt;}
._22{width:21.820160pt;}
._10{width:22.727680pt;}
._11{width:23.785387pt;}
._1a{width:24.746880pt;}
._19{width:25.734827pt;}
._1f{width:26.694187pt;}
._1e{width:27.656320pt;}
._1d{width:28.750720pt;}
._1b{width:30.375040pt;}
._12{width:31.324160pt;}
._13{width:32.612480pt;}
._17{width:34.091520pt;}
._25{width:35.521920pt;}
._26{width:36.924587pt;}
._21{width:38.164693pt;}
._20{width:39.567360pt;}
._15{width:42.216960pt;}
._16{width:43.294080pt;}
._24{width:45.690880pt;}
._23{width:47.121280pt;}
._b{width:879.972267pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:117.120000pt;}
.y134{bottom:-5.600000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:10.053333pt;}
.ya6{bottom:10.373333pt;}
.y24{bottom:36.000000pt;}
.y29{bottom:41.120000pt;}
.y2{bottom:41.440000pt;}
.y1{bottom:57.952000pt;}
.y23{bottom:66.432000pt;}
.y26{bottom:74.880000pt;}
.y22{bottom:98.752000pt;}
.y12d{bottom:99.392000pt;}
.yd0{bottom:100.352000pt;}
.y88{bottom:101.632000pt;}
.y21{bottom:102.112000pt;}
.y11e{bottom:105.792000pt;}
.y108{bottom:106.272000pt;}
.y51{bottom:108.512000pt;}
.yed{bottom:112.672000pt;}
.y76{bottom:115.072000pt;}
.y20{bottom:118.432000pt;}
.yf9{bottom:119.232000pt;}
.y131{bottom:119.712000pt;}
.ycf{bottom:120.032000pt;}
.y87{bottom:121.472000pt;}
.yb1{bottom:121.952000pt;}
.y50{bottom:128.352000pt;}
.y12c{bottom:132.512000pt;}
.y75{bottom:134.746667pt;}
.yf8{bottom:138.906667pt;}
.y107{bottom:139.386667pt;}
.y86{bottom:141.146667pt;}
.yb0{bottom:141.626667pt;}
.yec{bottom:145.786667pt;}
.y1f{bottom:146.906667pt;}
.y9e{bottom:148.026667pt;}
.y4f{bottom:148.186667pt;}
.yce{bottom:153.146667pt;}
.y74{bottom:154.586667pt;}
.y11d{bottom:158.746667pt;}
.y106{bottom:159.226667pt;}
.y85{bottom:160.986667pt;}
.ya4{bottom:161.466667pt;}
.y12b{bottom:165.626667pt;}
.y1e{bottom:166.586667pt;}
.y4e{bottom:167.866667pt;}
.yf7{bottom:172.026667pt;}
.y130{bottom:172.506667pt;}
.ycd{bottom:172.986667pt;}
.y73{bottom:174.266667pt;}
.yeb{bottom:178.906667pt;}
.y98{bottom:180.826667pt;}
.ya3{bottom:181.146667pt;}
.y12a{bottom:185.466667pt;}
.y1d{bottom:186.426667pt;}
.y4d{bottom:187.706667pt;}
.y11c{bottom:191.866667pt;}
.y12f{bottom:192.346667pt;}
.y72{bottom:194.106667pt;}
.yea{bottom:198.746667pt;}
.y97{bottom:200.506667pt;}
.ya2{bottom:200.986667pt;}
.yf6{bottom:205.146667pt;}
.y1c{bottom:206.106667pt;}
.y4c{bottom:207.386667pt;}
.y105{bottom:212.026667pt;}
.y71{bottom:213.786667pt;}
.y129{bottom:218.426667pt;}
.y96{bottom:220.346667pt;}
.ya1{bottom:220.826667pt;}
.y11b{bottom:224.986667pt;}
.y12e{bottom:225.466667pt;}
.ycc{bottom:225.786667pt;}
.y9d{bottom:227.226667pt;}
.ye9{bottom:231.866667pt;}
.y70{bottom:233.626667pt;}
.y1b{bottom:236.506667pt;}
.yf5{bottom:238.266667pt;}
.y95{bottom:240.026667pt;}
.y4b{bottom:240.506667pt;}
.y104{bottom:245.146667pt;}
.y9c{bottom:246.906667pt;}
.ye8{bottom:251.546667pt;}
.y6f{bottom:253.466667pt;}
.y11a{bottom:258.106667pt;}
.ycb{bottom:258.906667pt;}
.y94{bottom:259.866667pt;}
.y4a{bottom:260.346667pt;}
.y9b{bottom:266.746667pt;}
.yf4{bottom:271.386667pt;}
.y1a{bottom:272.986667pt;}
.y6e{bottom:273.146667pt;}
.y119{bottom:277.826667pt;}
.y103{bottom:278.306667pt;}
.yca{bottom:278.786667pt;}
.y93{bottom:279.746667pt;}
.y49{bottom:280.066667pt;}
.ye7{bottom:284.706667pt;}
.y9a{bottom:286.626667pt;}
.y19{bottom:290.946667pt;}
.y128{bottom:291.266667pt;}
.y6d{bottom:293.026667pt;}
.y118{bottom:297.666667pt;}
.y102{bottom:298.146667pt;}
.y92{bottom:299.426667pt;}
.y48{bottom:299.906667pt;}
.ye6{bottom:304.546667pt;}
.y8f{bottom:306.306667pt;}
.y18{bottom:308.866667pt;}
.yc9{bottom:311.906667pt;}
.y6c{bottom:312.706667pt;}
.y91{bottom:319.266667pt;}
.y47{bottom:319.746667pt;}
.y127{bottom:324.226667pt;}
.y8e{bottom:326.146667pt;}
.y117{bottom:330.786667pt;}
.y101{bottom:331.266667pt;}
.y6b{bottom:332.546667pt;}
.ye5{bottom:337.666667pt;}
.y90{bottom:338.946667pt;}
.y46{bottom:339.426667pt;}
.y17{bottom:343.426667pt;}
.yc8{bottom:345.026667pt;}
.y8d{bottom:345.826667pt;}
.y116{bottom:350.466667pt;}
.y100{bottom:350.946667pt;}
.y84{bottom:352.386667pt;}
.ye4{bottom:357.346667pt;}
.y45{bottom:359.266667pt;}
.y6a{bottom:365.666667pt;}
.yf3{bottom:370.786667pt;}
.y83{bottom:372.066667pt;}
.y126{bottom:377.186667pt;}
.yc7{bottom:378.146667pt;}
.y44{bottom:378.946667pt;}
.y16{bottom:379.266667pt;}
.y115{bottom:383.586667pt;}
.yff{bottom:384.066667pt;}
.y69{bottom:385.506667pt;}
.ye3{bottom:390.466667pt;}
.y82{bottom:391.906667pt;}
.yc6{bottom:397.826667pt;}
.y43{bottom:398.786667pt;}
.yfe{bottom:403.906667pt;}
.y68{bottom:405.186667pt;}
.y125{bottom:410.306667pt;}
.yad{bottom:411.586667pt;}
.y15{bottom:414.946667pt;}
.y114{bottom:416.706667pt;}
.y42{bottom:418.466667pt;}
.ye2{bottom:423.586667pt;}
.y67{bottom:425.026667pt;}
.y124{bottom:429.986667pt;}
.yc5{bottom:430.946667pt;}
.yac{bottom:431.426667pt;}
.yfd{bottom:437.026667pt;}
.y41{bottom:438.306667pt;}
.y66{bottom:444.706667pt;}
.y113{bottom:449.826667pt;}
.y14{bottom:450.786667pt;}
.yab{bottom:451.266667pt;}
.ye1{bottom:456.706667pt;}
.y40{bottom:458.146667pt;}
.y123{bottom:463.106667pt;}
.yc4{bottom:464.066667pt;}
.y65{bottom:464.546667pt;}
.y13{bottom:467.266667pt;}
.y112{bottom:469.666667pt;}
.yaa{bottom:470.946667pt;}
.yf2{bottom:476.546667pt;}
.y3f{bottom:477.826667pt;}
.y122{bottom:482.946667pt;}
.yc3{bottom:483.906667pt;}
.y64{bottom:484.226667pt;}
.ye0{bottom:489.826667pt;}
.ybb{bottom:490.786667pt;}
.y99{bottom:497.666667pt;}
.y111{bottom:502.813333pt;}
.y12{bottom:503.613333pt;}
.y63{bottom:504.093333pt;}
.ydf{bottom:509.693333pt;}
.yba{bottom:510.493333pt;}
.y3e{bottom:510.973333pt;}
.y121{bottom:516.093333pt;}
.yc2{bottom:517.053333pt;}
.y8c{bottom:517.373333pt;}
.y62{bottom:523.933333pt;}
.yf1{bottom:529.373333pt;}
.yb9{bottom:530.333333pt;}
.y3d{bottom:530.813333pt;}
.y110{bottom:535.773333pt;}
.y11{bottom:536.733333pt;}
.y8b{bottom:537.213333pt;}
.yde{bottom:542.813333pt;}
.y61{bottom:543.613333pt;}
.y120{bottom:549.213333pt;}
.yb8{bottom:550.013333pt;}
.y3c{bottom:550.493333pt;}
.yc1{bottom:556.573333pt;}
.y8a{bottom:557.053333pt;}
.ydd{bottom:562.493333pt;}
.y60{bottom:563.453333pt;}
.y10f{bottom:568.893333pt;}
.yf{bottom:569.853333pt;}
.y3b{bottom:570.333333pt;}
.y10{bottom:573.213333pt;}
.yfc{bottom:575.773333pt;}
.yc0{bottom:576.253333pt;}
.y89{bottom:576.733333pt;}
.yf0{bottom:582.333333pt;}
.y81{bottom:583.133333pt;}
.ya0{bottom:590.013333pt;}
.y3a{bottom:592.733333pt;}
.ydc{bottom:595.613333pt;}
.y5f{bottom:596.573333pt;}
.ye{bottom:599.773333pt;}
.y10e{bottom:602.013333pt;}
.y80{bottom:602.973333pt;}
.ybf{bottom:609.373333pt;}
.y9f{bottom:609.853333pt;}
.ydb{bottom:615.453333pt;}
.y5e{bottom:616.253333pt;}
.yd{bottom:622.173333pt;}
.y7f{bottom:622.813333pt;}
.yfb{bottom:628.733333pt;}
.y39{bottom:629.693333pt;}
.y10d{bottom:635.133333pt;}
.y5d{bottom:636.093333pt;}
.y7e{bottom:642.493333pt;}
.yc{bottom:644.413333pt;}
.yda{bottom:648.573333pt;}
.y38{bottom:649.373333pt;}
.y10c{bottom:654.973333pt;}
.y5c{bottom:655.773333pt;}
.y7d{bottom:662.333333pt;}
.y133{bottom:668.253333pt;}
.y37{bottom:669.213333pt;}
.y5b{bottom:675.613333pt;}
.yb{bottom:676.733333pt;}
.yd9{bottom:681.533333pt;}
.y7c{bottom:682.013333pt;}
.y10b{bottom:688.093333pt;}
.y36{bottom:688.893333pt;}
.y5a{bottom:695.453333pt;}
.yd8{bottom:701.373333pt;}
.ya9{bottom:701.853333pt;}
.y35{bottom:708.733333pt;}
.ya{bottom:709.053333pt;}
.yef{bottom:714.653333pt;}
.y59{bottom:715.133333pt;}
.y10a{bottom:721.253333pt;}
.ya8{bottom:721.573333pt;}
.y34{bottom:728.613333pt;}
.yd7{bottom:734.533333pt;}
.y58{bottom:735.013333pt;}
.y109{bottom:740.933333pt;}
.y9{bottom:741.413333pt;}
.ybd{bottom:747.040000pt;}
.ybe{bottom:747.840000pt;}
.y33{bottom:748.293333pt;}
.ybc{bottom:753.440000pt;}
.yd6{bottom:754.373333pt;}
.y57{bottom:754.693333pt;}
.yb7{bottom:761.253333pt;}
.yfa{bottom:764.640000pt;}
.y32{bottom:768.133333pt;}
.yd5{bottom:774.053333pt;}
.y56{bottom:774.533333pt;}
.yb6{bottom:780.933333pt;}
.y8{bottom:783.493333pt;}
.ya7{bottom:785.120000pt;}
.yee{bottom:787.333333pt;}
.y31{bottom:787.813333pt;}
.y55{bottom:794.373333pt;}
.yb5{bottom:800.773333pt;}
.y11f{bottom:804.160000pt;}
.y7{bottom:804.933333pt;}
.yae{bottom:806.400000pt;}
.yd4{bottom:807.173333pt;}
.y30{bottom:807.653333pt;}
.y7b{bottom:814.053333pt;}
.yb4{bottom:820.453333pt;}
.yd3{bottom:827.013333pt;}
.y2f{bottom:827.333333pt;}
.ya5{bottom:828.640000pt;}
.y6{bottom:830.213333pt;}
.y7a{bottom:833.893333pt;}
.yb3{bottom:840.293333pt;}
.y132{bottom:844.160000pt;}
.y2e{bottom:847.173333pt;}
.y79{bottom:853.573333pt;}
.yb2{bottom:860.133333pt;}
.y5{bottom:867.013333pt;}
.y78{bottom:873.413333pt;}
.yd2{bottom:879.813333pt;}
.y2d{bottom:886.693333pt;}
.y4{bottom:892.613333pt;}
.y77{bottom:893.093333pt;}
.y2c{bottom:906.533333pt;}
.yd1{bottom:912.933333pt;}
.y2b{bottom:926.213333pt;}
.y3{bottom:932.133333pt;}
.y2a{bottom:946.080000pt;}
.y25{bottom:964.320000pt;}
.y54{bottom:968.640000pt;}
.y53{bottom:982.720000pt;}
.y28{bottom:985.440000pt;}
.y52{bottom:996.800000pt;}
.y27{bottom:997.920000pt;}
.h13{height:10.720000pt;}
.h12{height:26.400000pt;}
.h11{height:26.560000pt;}
.h9{height:31.428750pt;}
.hb{height:34.205625pt;}
.hf{height:36.305625pt;}
.hd{height:38.273438pt;}
.h1{height:42.440312pt;}
.h10{height:47.507812pt;}
.h7{height:49.852500pt;}
.h6{height:52.575312pt;}
.h2{height:58.276250pt;}
.h4{height:74.112187pt;}
.ha{height:76.671562pt;}
.hc{height:78.400000pt;}
.h5{height:81.281250pt;}
.he{height:87.200000pt;}
.h3{height:99.163125pt;}
.h8{height:1055.998213pt;}
.h0{height:1056.000000pt;}
.w5{width:37.120000pt;}
.w4{width:37.280000pt;}
.w3{width:71.360000pt;}
.w2{width:87.680000pt;}
.w1{width:815.998333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:9.920000pt;}
.x15{left:12.613333pt;}
.x17{left:35.680000pt;}
.x1{left:96.032000pt;}
.x8{left:98.912000pt;}
.x1a{left:101.952000pt;}
.x21{left:144.026667pt;}
.x7{left:157.146667pt;}
.x2{left:158.266667pt;}
.x19{left:171.706667pt;}
.xe{left:175.226667pt;}
.x9{left:187.226667pt;}
.x18{left:193.306667pt;}
.x5{left:203.706667pt;}
.x11{left:226.106667pt;}
.x12{left:234.746667pt;}
.xf{left:246.746667pt;}
.x3{left:267.106667pt;}
.x10{left:271.746667pt;}
.x13{left:288.066667pt;}
.x6{left:302.786667pt;}
.xb{left:343.746667pt;}
.x4{left:408.066667pt;}
.x1b{left:446.493333pt;}
.xc{left:468.091667pt;}
.xd{left:472.253333pt;}
.xa{left:720.133333pt;}
.x14{left:727.200000pt;}
.x1c{left:764.800000pt;}
.x20{left:767.840000pt;}
.x22{left:768.800000pt;}
.x1e{left:769.920000pt;}
.x16{left:771.200000pt;}
.x1f{left:772.160000pt;}
}




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