
    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_50af0caa04f9202f011b6de5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_f4f29742b10ccfbb27141d37.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_261c36adf47d8980d898f675.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_9d013f0310489274061d8925.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_dc0e470e2452214154bd5630.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_1853793ea1907337b4874b7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_48ae465c38bed822864aea18.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.115234;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsf{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.450600px;}
.ls2{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.181200px;}
.ls3{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.538800px;}
.lsd{letter-spacing:0.936000px;}
.ls8{letter-spacing:1.080000px;}
.ls6{letter-spacing:5.309280px;}
.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;}
}
.ws9{word-spacing:-21.600000px;}
.wsb{word-spacing:-20.952000px;}
.ws3{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.440000px;}
.ws6{word-spacing:-13.949520px;}
.ws4{word-spacing:-13.410720px;}
.ws5{word-spacing:-13.229520px;}
.wsc{word-spacing:-12.510720px;}
.ws8{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._23{margin-left:-2.544000px;}
._0{margin-left:-1.296000px;}
._1{width:1.080000px;}
._4{width:2.196000px;}
._3{width:3.504000px;}
._a{width:5.400000px;}
._5{width:6.768000px;}
._d{width:8.064000px;}
._18{width:9.120000px;}
._e{width:10.632000px;}
._17{width:11.784000px;}
._11{width:13.032000px;}
._c{width:14.544000px;}
._b{width:15.624000px;}
._14{width:16.632000px;}
._12{width:17.856000px;}
._10{width:18.936000px;}
._f{width:21.600000px;}
._2{width:23.592000px;}
._1a{width:25.200000px;}
._16{width:26.784000px;}
._15{width:27.864000px;}
._6{width:29.664000px;}
._7{width:30.744000px;}
._13{width:32.040000px;}
._22{width:33.048000px;}
._1e{width:34.200000px;}
._1d{width:35.424000px;}
._1c{width:36.432000px;}
._25{width:38.592000px;}
._27{width:39.816000px;}
._26{width:40.968000px;}
._8{width:42.600000px;}
._9{width:44.088000px;}
._1b{width:45.432000px;}
._29{width:47.304000px;}
._2a{width:87.888000px;}
._2c{width:91.416000px;}
._21{width:99.310080px;}
._28{width:107.904000px;}
._20{width:115.344000px;}
._24{width:127.488000px;}
._2b{width:131.736000px;}
._1f{width:135.504000px;}
._19{width:155.664000px;}
._2e{width:239.976000px;}
._2d{width:240.984000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:24.825000px;}
.yb2{bottom:24.840000px;}
.ybd{bottom:24.870000px;}
.ye7{bottom:24.885000px;}
.yd3{bottom:25.005000px;}
.yc9{bottom:25.020000px;}
.yd1{bottom:25.050000px;}
.ye5{bottom:45.180000px;}
.yb4{bottom:45.540000px;}
.yd8{bottom:45.900000px;}
.yc7{bottom:46.260000px;}
.yf4{bottom:46.290000px;}
.yb3{bottom:66.240000px;}
.yb7{bottom:66.285000px;}
.yb0{bottom:66.600000px;}
.ye4{bottom:86.940000px;}
.ye2{bottom:107.640000px;}
.ya4{bottom:116.676000px;}
.y10a{bottom:118.296000px;}
.yae{bottom:120.276000px;}
.yf8{bottom:135.396000px;}
.y65{bottom:135.756000px;}
.y138{bottom:137.376000px;}
.y2d{bottom:139.176000px;}
.y74{bottom:143.316000px;}
.y8d{bottom:146.376000px;}
.ye0{bottom:151.230000px;}
.yf7{bottom:152.685000px;}
.ya3{bottom:158.070000px;}
.y109{bottom:159.690000px;}
.yad{bottom:161.670000px;}
.y120{bottom:167.070000px;}
.ydf{bottom:168.705000px;}
.y64{bottom:177.150000px;}
.y137{bottom:178.770000px;}
.y2c{bottom:180.570000px;}
.y73{bottom:184.710000px;}
.y8c{bottom:187.770000px;}
.y8a{bottom:192.810000px;}
.yf6{bottom:195.165000px;}
.ya2{bottom:199.470000px;}
.y108{bottom:201.090000px;}
.yac{bottom:203.070000px;}
.y11f{bottom:208.470000px;}
.y15{bottom:210.630000px;}
.ydd{bottom:210.825000px;}
.y63{bottom:218.370000px;}
.y136{bottom:220.170000px;}
.y72{bottom:226.110000px;}
.y2b{bottom:226.470000px;}
.yd2{bottom:228.825000px;}
.y8b{bottom:229.170000px;}
.y89{bottom:234.210000px;}
.yf3{bottom:237.465000px;}
.ya1{bottom:240.870000px;}
.y107{bottom:242.490000px;}
.yab{bottom:244.470000px;}
.y43{bottom:248.070000px;}
.y11e{bottom:249.870000px;}
.ydc{bottom:252.945000px;}
.y14{bottom:256.530000px;}
.y62{bottom:259.770000px;}
.y135{bottom:261.570000px;}
.y2a{bottom:267.870000px;}
.y71{bottom:270.570000px;}
.yd0{bottom:271.125000px;}
.y88{bottom:275.655000px;}
.yf5{bottom:279.975000px;}
.ya0{bottom:282.315000px;}
.y106{bottom:283.935000px;}
.yaa{bottom:285.915000px;}
.y11d{bottom:291.315000px;}
.ydb{bottom:295.095000px;}
.y13{bottom:298.335000px;}
.y61{bottom:301.215000px;}
.y134{bottom:303.015000px;}
.y42{bottom:307.515000px;}
.y29{bottom:309.315000px;}
.y70{bottom:312.015000px;}
.ycf{bottom:313.635000px;}
.y87{bottom:317.055000px;}
.y9f{bottom:323.715000px;}
.y105{bottom:325.335000px;}
.ya9{bottom:327.315000px;}
.y11c{bottom:332.715000px;}
.yda{bottom:337.215000px;}
.y12{bottom:339.735000px;}
.y60{bottom:342.615000px;}
.y133{bottom:344.415000px;}
.yf2{bottom:347.295000px;}
.y41{bottom:348.915000px;}
.y28{bottom:350.535000px;}
.y6f{bottom:353.415000px;}
.yce{bottom:355.935000px;}
.y86{bottom:362.955000px;}
.y9e{bottom:365.115000px;}
.y104{bottom:366.555000px;}
.ya8{bottom:368.715000px;}
.y11b{bottom:374.115000px;}
.yd9{bottom:379.335000px;}
.y11{bottom:381.135000px;}
.y5f{bottom:384.015000px;}
.y132{bottom:385.815000px;}
.yf1{bottom:388.695000px;}
.y40{bottom:390.315000px;}
.y27{bottom:391.935000px;}
.y6e{bottom:394.815000px;}
.ycd{bottom:398.415000px;}
.y9d{bottom:406.515000px;}
.y103{bottom:407.955000px;}
.ya7{bottom:410.115000px;}
.y11a{bottom:415.515000px;}
.yd7{bottom:421.635000px;}
.y85{bottom:422.355000px;}
.y10{bottom:422.535000px;}
.y5e{bottom:425.415000px;}
.y131{bottom:427.215000px;}
.yf0{bottom:430.095000px;}
.y3f{bottom:431.535000px;}
.y6d{bottom:436.035000px;}
.yc0{bottom:439.635000px;}
.ycc{bottom:440.715000px;}
.y9c{bottom:447.915000px;}
.y102{bottom:449.355000px;}
.y26{bottom:451.335000px;}
.ya6{bottom:451.515000px;}
.y119{bottom:456.735000px;}
.y84{bottom:463.755000px;}
.yf{bottom:463.935000px;}
.y5d{bottom:466.815000px;}
.y130{bottom:468.615000px;}
.yef{bottom:471.495000px;}
.y3e{bottom:472.935000px;}
.y6c{bottom:477.435000px;}
.ybf{bottom:481.035000px;}
.ycb{bottom:483.015000px;}
.y9b{bottom:489.315000px;}
.y101{bottom:490.755000px;}
.y25{bottom:492.735000px;}
.y118{bottom:498.135000px;}
.ybe{bottom:498.315000px;}
.ya5{bottom:499.395000px;}
.y83{bottom:505.155000px;}
.ye{bottom:505.335000px;}
.y5c{bottom:508.215000px;}
.y12f{bottom:510.015000px;}
.yee{bottom:512.895000px;}
.y3d{bottom:514.335000px;}
.y6b{bottom:518.835000px;}
.yca{bottom:525.495000px;}
.y9a{bottom:530.715000px;}
.y24{bottom:534.135000px;}
.y100{bottom:536.655000px;}
.y117{bottom:539.535000px;}
.ybc{bottom:540.435000px;}
.y82{bottom:546.555000px;}
.yd{bottom:546.735000px;}
.y5b{bottom:549.615000px;}
.y12e{bottom:551.415000px;}
.yed{bottom:554.295000px;}
.y3c{bottom:555.765000px;}
.y6a{bottom:560.265000px;}
.yc6{bottom:567.825000px;}
.y99{bottom:572.145000px;}
.yd6{bottom:572.325000px;}
.y116{bottom:580.965000px;}
.ybb{bottom:582.585000px;}
.y81{bottom:587.985000px;}
.yc{bottom:588.165000px;}
.y5a{bottom:591.045000px;}
.y12d{bottom:592.845000px;}
.y23{bottom:593.565000px;}
.yec{bottom:595.725000px;}
.yff{bottom:596.085000px;}
.y3b{bottom:597.165000px;}
.y69{bottom:601.665000px;}
.yc8{bottom:610.305000px;}
.yeb{bottom:613.005000px;}
.y98{bottom:613.545000px;}
.yd5{bottom:613.725000px;}
.y115{bottom:622.365000px;}
.yba{bottom:624.885000px;}
.y80{bottom:629.385000px;}
.yb{bottom:629.565000px;}
.y59{bottom:632.445000px;}
.y12c{bottom:634.245000px;}
.y22{bottom:634.965000px;}
.y3a{bottom:638.565000px;}
.y68{bottom:643.065000px;}
.y97{bottom:654.945000px;}
.yd4{bottom:655.125000px;}
.yfe{bottom:655.485000px;}
.y114{bottom:663.765000px;}
.y13b{bottom:664.125000px;}
.yb9{bottom:667.005000px;}
.y7f{bottom:670.785000px;}
.ya{bottom:670.965000px;}
.yfc{bottom:671.505000px;}
.y58{bottom:673.845000px;}
.y12b{bottom:675.645000px;}
.y21{bottom:676.365000px;}
.yc5{bottom:677.445000px;}
.y39{bottom:679.965000px;}
.y67{bottom:684.465000px;}
.y96{bottom:696.345000px;}
.yea{bottom:697.245000px;}
.yfd{bottom:697.425000px;}
.y113{bottom:705.165000px;}
.yb8{bottom:709.125000px;}
.y7e{bottom:712.185000px;}
.y9{bottom:712.365000px;}
.yfb{bottom:712.905000px;}
.y57{bottom:715.245000px;}
.y12a{bottom:717.045000px;}
.yc4{bottom:718.845000px;}
.y38{bottom:721.365000px;}
.y66{bottom:725.865000px;}
.y20{bottom:735.765000px;}
.y95{bottom:737.745000px;}
.ye9{bottom:739.545000px;}
.y112{bottom:746.565000px;}
.y7d{bottom:753.585000px;}
.y8{bottom:753.765000px;}
.yfa{bottom:754.305000px;}
.y56{bottom:756.645000px;}
.y129{bottom:758.445000px;}
.yc3{bottom:760.245000px;}
.y37{bottom:762.765000px;}
.y4c{bottom:767.265000px;}
.y1f{bottom:777.165000px;}
.y94{bottom:779.145000px;}
.ye8{bottom:781.665000px;}
.y111{bottom:787.965000px;}
.yb6{bottom:792.645000px;}
.y7c{bottom:794.985000px;}
.y7{bottom:795.165000px;}
.yf9{bottom:795.705000px;}
.y55{bottom:798.045000px;}
.y128{bottom:799.845000px;}
.yc2{bottom:801.645000px;}
.y36{bottom:804.165000px;}
.y4b{bottom:808.665000px;}
.y1e{bottom:818.565000px;}
.y93{bottom:820.545000px;}
.ye6{bottom:823.785000px;}
.y110{bottom:829.365000px;}
.y7b{bottom:836.385000px;}
.y6{bottom:836.565000px;}
.yc1{bottom:838.950000px;}
.y54{bottom:839.490000px;}
.y127{bottom:841.290000px;}
.y35{bottom:845.610000px;}
.y4a{bottom:850.110000px;}
.y1d{bottom:860.010000px;}
.y92{bottom:861.990000px;}
.ye1{bottom:865.950000px;}
.y10f{bottom:870.810000px;}
.yb5{bottom:876.210000px;}
.y7a{bottom:877.830000px;}
.y5{bottom:878.010000px;}
.y53{bottom:880.890000px;}
.y126{bottom:882.690000px;}
.y34{bottom:887.010000px;}
.y49{bottom:891.510000px;}
.y1c{bottom:901.410000px;}
.y91{bottom:903.390000px;}
.y10e{bottom:912.210000px;}
.y79{bottom:919.230000px;}
.y4{bottom:919.410000px;}
.y52{bottom:922.290000px;}
.y125{bottom:924.090000px;}
.y33{bottom:928.410000px;}
.y48{bottom:932.910000px;}
.y1b{bottom:942.810000px;}
.y90{bottom:944.790000px;}
.ye3{bottom:948.750000px;}
.y10d{bottom:953.610000px;}
.yaf{bottom:959.730000px;}
.y3{bottom:960.810000px;}
.y51{bottom:963.690000px;}
.y78{bottom:965.130000px;}
.y124{bottom:965.490000px;}
.y32{bottom:969.810000px;}
.y47{bottom:974.310000px;}
.y1a{bottom:984.210000px;}
.y8f{bottom:986.190000px;}
.y10c{bottom:995.010000px;}
.y2{bottom:1002.210000px;}
.y50{bottom:1005.090000px;}
.y123{bottom:1006.890000px;}
.y31{bottom:1011.210000px;}
.y46{bottom:1015.710000px;}
.y77{bottom:1024.530000px;}
.y19{bottom:1025.610000px;}
.y8e{bottom:1027.590000px;}
.y10b{bottom:1036.410000px;}
.y1{bottom:1039.650000px;}
.yb1{bottom:1043.250000px;}
.y4f{bottom:1046.490000px;}
.y122{bottom:1048.290000px;}
.y30{bottom:1052.610000px;}
.y45{bottom:1057.110000px;}
.y18{bottom:1067.010000px;}
.y76{bottom:1068.990000px;}
.y13a{bottom:1077.810000px;}
.y121{bottom:1089.690000px;}
.y4e{bottom:1092.390000px;}
.y2f{bottom:1094.010000px;}
.y44{bottom:1098.510000px;}
.y75{bottom:1110.390000px;}
.y139{bottom:1119.210000px;}
.y17{bottom:1126.440000px;}
.y2e{bottom:1139.940000px;}
.y4d{bottom:1151.820000px;}
.y16{bottom:1193.220000px;}
.h8{height:41.385000px;}
.hc{height:41.400000px;}
.h16{height:41.421000px;}
.h19{height:41.422500px;}
.hd{height:41.430000px;}
.h13{height:41.565000px;}
.hf{height:41.580000px;}
.h11{height:41.610000px;}
.h12{height:41.745000px;}
.h10{height:41.760000px;}
.h14{height:41.781000px;}
.h3{height:64.546875px;}
.h1b{height:74.004654px;}
.h2{height:75.093750px;}
.h6{height:81.101250px;}
.h18{height:82.065000px;}
.h9{height:82.785000px;}
.hb{height:82.800000px;}
.ha{height:82.822500px;}
.h4{height:83.432813px;}
.h15{height:83.505000px;}
.h5{height:83.612812px;}
.he{height:84.060000px;}
.h1a{height:84.261000px;}
.h17{height:124.185000px;}
.h7{height:124.905000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:84.045000px;}
.w5{width:91.245000px;}
.w1d{width:108.201000px;}
.w2{width:124.369500px;}
.w3{width:125.481000px;}
.w15{width:129.621000px;}
.w18{width:134.805000px;}
.w16{width:137.361000px;}
.w1c{width:137.376000px;}
.w17{width:137.556000px;}
.w1b{width:147.960000px;}
.wf{width:148.161000px;}
.wa{width:155.715000px;}
.w13{width:156.255000px;}
.we{width:158.788500px;}
.wc{width:158.790000px;}
.w7{width:164.895000px;}
.w6{width:165.450000px;}
.w19{width:169.215000px;}
.wb{width:169.395000px;}
.w12{width:169.410000px;}
.w8{width:188.128500px;}
.w10{width:326.415000px;}
.w9{width:328.920000px;}
.w4{width:331.095000px;}
.w1e{width:334.639500px;}
.w1f{width:334.875000px;}
.w1a{width:395.175000px;}
.w14{width:411.360000px;}
.wd{width:674.235000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:8.089500px;}
.x1e{left:9.169500px;}
.x16{left:12.045000px;}
.x1d{left:13.125000px;}
.x1a{left:15.120000px;}
.x25{left:17.265000px;}
.x3b{left:19.440000px;}
.x4d{left:20.505000px;}
.x21{left:21.589500px;}
.x14{left:22.669500px;}
.x30{left:25.414500px;}
.x1f{left:27.705000px;}
.x44{left:29.865000px;}
.x2e{left:32.074500px;}
.x31{left:33.825000px;}
.x2f{left:36.345000px;}
.x34{left:37.474500px;}
.x41{left:38.685000px;}
.x22{left:40.305000px;}
.x33{left:41.385000px;}
.x24{left:42.660000px;}
.x49{left:43.920000px;}
.x20{left:45.165000px;}
.x2d{left:50.430000px;}
.x2c{left:53.130000px;}
.x28{left:54.568500px;}
.x3c{left:55.828500px;}
.x23{left:59.790000px;}
.x4c{left:62.085000px;}
.x45{left:65.730000px;}
.x46{left:67.354500px;}
.x1b{left:69.480000px;}
.x3d{left:74.701500px;}
.x3f{left:88.050000px;}
.x35{left:95.941500px;}
.x27{left:98.641500px;}
.x12{left:100.656000px;}
.xe{left:106.416000px;}
.x13{left:119.926500px;}
.xa{left:127.656000px;}
.x9{left:132.876000px;}
.x38{left:141.690000px;}
.x18{left:143.850000px;}
.x47{left:153.405000px;}
.x11{left:154.650000px;}
.x3{left:203.430000px;}
.x52{left:218.190000px;}
.x6{left:224.130000px;}
.x3e{left:234.405000px;}
.x8{left:237.270000px;}
.x51{left:242.670000px;}
.x15{left:245.025000px;}
.x2b{left:254.233500px;}
.x36{left:255.645000px;}
.x4{left:272.550000px;}
.x29{left:287.505000px;}
.x32{left:314.173500px;}
.x48{left:323.355000px;}
.x5{left:337.215000px;}
.x7{left:349.095000px;}
.x54{left:351.255000px;}
.x53{left:354.315000px;}
.x17{left:371.415000px;}
.x42{left:372.675000px;}
.xf{left:399.315000px;}
.x37{left:404.535000px;}
.xb{left:411.195000px;}
.xd{left:421.635000px;}
.x50{left:454.215000px;}
.x2{left:457.095000px;}
.x4a{left:472.035000px;}
.x43{left:510.960000px;}
.x1c{left:537.600000px;}
.x3a{left:574.680000px;}
.x4b{left:610.320000px;}
.x2a{left:617.160000px;}
.x1{left:636.225000px;}
.x40{left:646.500000px;}
.x19{left:703.230000px;}
.x39{left:731.670000px;}
.x26{left:754.530000px;}
.x55{left:764.070000px;}
.x4e{left:766.770000px;}
.x10{left:777.210000px;}
.xc{left:785.310000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.400533pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.161067pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.478933pt;}
.lsd{letter-spacing:0.832000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls6{letter-spacing:4.719360pt;}
.ws9{word-spacing:-19.200000pt;}
.wsb{word-spacing:-18.624000pt;}
.ws3{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.280000pt;}
.ws6{word-spacing:-12.399573pt;}
.ws4{word-spacing:-11.920640pt;}
.ws5{word-spacing:-11.759573pt;}
.wsc{word-spacing:-11.120640pt;}
.ws8{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._23{margin-left:-2.261333pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.960000pt;}
._4{width:1.952000pt;}
._3{width:3.114667pt;}
._a{width:4.800000pt;}
._5{width:6.016000pt;}
._d{width:7.168000pt;}
._18{width:8.106667pt;}
._e{width:9.450667pt;}
._17{width:10.474667pt;}
._11{width:11.584000pt;}
._c{width:12.928000pt;}
._b{width:13.888000pt;}
._14{width:14.784000pt;}
._12{width:15.872000pt;}
._10{width:16.832000pt;}
._f{width:19.200000pt;}
._2{width:20.970667pt;}
._1a{width:22.400000pt;}
._16{width:23.808000pt;}
._15{width:24.768000pt;}
._6{width:26.368000pt;}
._7{width:27.328000pt;}
._13{width:28.480000pt;}
._22{width:29.376000pt;}
._1e{width:30.400000pt;}
._1d{width:31.488000pt;}
._1c{width:32.384000pt;}
._25{width:34.304000pt;}
._27{width:35.392000pt;}
._26{width:36.416000pt;}
._8{width:37.866667pt;}
._9{width:39.189333pt;}
._1b{width:40.384000pt;}
._29{width:42.048000pt;}
._2a{width:78.122667pt;}
._2c{width:81.258667pt;}
._21{width:88.275627pt;}
._28{width:95.914667pt;}
._20{width:102.528000pt;}
._24{width:113.322667pt;}
._2b{width:117.098667pt;}
._1f{width:120.448000pt;}
._19{width:138.368000pt;}
._2e{width:213.312000pt;}
._2d{width:214.208000pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:22.066667pt;}
.yb2{bottom:22.080000pt;}
.ybd{bottom:22.106667pt;}
.ye7{bottom:22.120000pt;}
.yd3{bottom:22.226667pt;}
.yc9{bottom:22.240000pt;}
.yd1{bottom:22.266667pt;}
.ye5{bottom:40.160000pt;}
.yb4{bottom:40.480000pt;}
.yd8{bottom:40.800000pt;}
.yc7{bottom:41.120000pt;}
.yf4{bottom:41.146667pt;}
.yb3{bottom:58.880000pt;}
.yb7{bottom:58.920000pt;}
.yb0{bottom:59.200000pt;}
.ye4{bottom:77.280000pt;}
.ye2{bottom:95.680000pt;}
.ya4{bottom:103.712000pt;}
.y10a{bottom:105.152000pt;}
.yae{bottom:106.912000pt;}
.yf8{bottom:120.352000pt;}
.y65{bottom:120.672000pt;}
.y138{bottom:122.112000pt;}
.y2d{bottom:123.712000pt;}
.y74{bottom:127.392000pt;}
.y8d{bottom:130.112000pt;}
.ye0{bottom:134.426667pt;}
.yf7{bottom:135.720000pt;}
.ya3{bottom:140.506667pt;}
.y109{bottom:141.946667pt;}
.yad{bottom:143.706667pt;}
.y120{bottom:148.506667pt;}
.ydf{bottom:149.960000pt;}
.y64{bottom:157.466667pt;}
.y137{bottom:158.906667pt;}
.y2c{bottom:160.506667pt;}
.y73{bottom:164.186667pt;}
.y8c{bottom:166.906667pt;}
.y8a{bottom:171.386667pt;}
.yf6{bottom:173.480000pt;}
.ya2{bottom:177.306667pt;}
.y108{bottom:178.746667pt;}
.yac{bottom:180.506667pt;}
.y11f{bottom:185.306667pt;}
.y15{bottom:187.226667pt;}
.ydd{bottom:187.400000pt;}
.y63{bottom:194.106667pt;}
.y136{bottom:195.706667pt;}
.y72{bottom:200.986667pt;}
.y2b{bottom:201.306667pt;}
.yd2{bottom:203.400000pt;}
.y8b{bottom:203.706667pt;}
.y89{bottom:208.186667pt;}
.yf3{bottom:211.080000pt;}
.ya1{bottom:214.106667pt;}
.y107{bottom:215.546667pt;}
.yab{bottom:217.306667pt;}
.y43{bottom:220.506667pt;}
.y11e{bottom:222.106667pt;}
.ydc{bottom:224.840000pt;}
.y14{bottom:228.026667pt;}
.y62{bottom:230.906667pt;}
.y135{bottom:232.506667pt;}
.y2a{bottom:238.106667pt;}
.y71{bottom:240.506667pt;}
.yd0{bottom:241.000000pt;}
.y88{bottom:245.026667pt;}
.yf5{bottom:248.866667pt;}
.ya0{bottom:250.946667pt;}
.y106{bottom:252.386667pt;}
.yaa{bottom:254.146667pt;}
.y11d{bottom:258.946667pt;}
.ydb{bottom:262.306667pt;}
.y13{bottom:265.186667pt;}
.y61{bottom:267.746667pt;}
.y134{bottom:269.346667pt;}
.y42{bottom:273.346667pt;}
.y29{bottom:274.946667pt;}
.y70{bottom:277.346667pt;}
.ycf{bottom:278.786667pt;}
.y87{bottom:281.826667pt;}
.y9f{bottom:287.746667pt;}
.y105{bottom:289.186667pt;}
.ya9{bottom:290.946667pt;}
.y11c{bottom:295.746667pt;}
.yda{bottom:299.746667pt;}
.y12{bottom:301.986667pt;}
.y60{bottom:304.546667pt;}
.y133{bottom:306.146667pt;}
.yf2{bottom:308.706667pt;}
.y41{bottom:310.146667pt;}
.y28{bottom:311.586667pt;}
.y6f{bottom:314.146667pt;}
.yce{bottom:316.386667pt;}
.y86{bottom:322.626667pt;}
.y9e{bottom:324.546667pt;}
.y104{bottom:325.826667pt;}
.ya8{bottom:327.746667pt;}
.y11b{bottom:332.546667pt;}
.yd9{bottom:337.186667pt;}
.y11{bottom:338.786667pt;}
.y5f{bottom:341.346667pt;}
.y132{bottom:342.946667pt;}
.yf1{bottom:345.506667pt;}
.y40{bottom:346.946667pt;}
.y27{bottom:348.386667pt;}
.y6e{bottom:350.946667pt;}
.ycd{bottom:354.146667pt;}
.y9d{bottom:361.346667pt;}
.y103{bottom:362.626667pt;}
.ya7{bottom:364.546667pt;}
.y11a{bottom:369.346667pt;}
.yd7{bottom:374.786667pt;}
.y85{bottom:375.426667pt;}
.y10{bottom:375.586667pt;}
.y5e{bottom:378.146667pt;}
.y131{bottom:379.746667pt;}
.yf0{bottom:382.306667pt;}
.y3f{bottom:383.586667pt;}
.y6d{bottom:387.586667pt;}
.yc0{bottom:390.786667pt;}
.ycc{bottom:391.746667pt;}
.y9c{bottom:398.146667pt;}
.y102{bottom:399.426667pt;}
.y26{bottom:401.186667pt;}
.ya6{bottom:401.346667pt;}
.y119{bottom:405.986667pt;}
.y84{bottom:412.226667pt;}
.yf{bottom:412.386667pt;}
.y5d{bottom:414.946667pt;}
.y130{bottom:416.546667pt;}
.yef{bottom:419.106667pt;}
.y3e{bottom:420.386667pt;}
.y6c{bottom:424.386667pt;}
.ybf{bottom:427.586667pt;}
.ycb{bottom:429.346667pt;}
.y9b{bottom:434.946667pt;}
.y101{bottom:436.226667pt;}
.y25{bottom:437.986667pt;}
.y118{bottom:442.786667pt;}
.ybe{bottom:442.946667pt;}
.ya5{bottom:443.906667pt;}
.y83{bottom:449.026667pt;}
.ye{bottom:449.186667pt;}
.y5c{bottom:451.746667pt;}
.y12f{bottom:453.346667pt;}
.yee{bottom:455.906667pt;}
.y3d{bottom:457.186667pt;}
.y6b{bottom:461.186667pt;}
.yca{bottom:467.106667pt;}
.y9a{bottom:471.746667pt;}
.y24{bottom:474.786667pt;}
.y100{bottom:477.026667pt;}
.y117{bottom:479.586667pt;}
.ybc{bottom:480.386667pt;}
.y82{bottom:485.826667pt;}
.yd{bottom:485.986667pt;}
.y5b{bottom:488.546667pt;}
.y12e{bottom:490.146667pt;}
.yed{bottom:492.706667pt;}
.y3c{bottom:494.013333pt;}
.y6a{bottom:498.013333pt;}
.yc6{bottom:504.733333pt;}
.y99{bottom:508.573333pt;}
.yd6{bottom:508.733333pt;}
.y116{bottom:516.413333pt;}
.ybb{bottom:517.853333pt;}
.y81{bottom:522.653333pt;}
.yc{bottom:522.813333pt;}
.y5a{bottom:525.373333pt;}
.y12d{bottom:526.973333pt;}
.y23{bottom:527.613333pt;}
.yec{bottom:529.533333pt;}
.yff{bottom:529.853333pt;}
.y3b{bottom:530.813333pt;}
.y69{bottom:534.813333pt;}
.yc8{bottom:542.493333pt;}
.yeb{bottom:544.893333pt;}
.y98{bottom:545.373333pt;}
.yd5{bottom:545.533333pt;}
.y115{bottom:553.213333pt;}
.yba{bottom:555.453333pt;}
.y80{bottom:559.453333pt;}
.yb{bottom:559.613333pt;}
.y59{bottom:562.173333pt;}
.y12c{bottom:563.773333pt;}
.y22{bottom:564.413333pt;}
.y3a{bottom:567.613333pt;}
.y68{bottom:571.613333pt;}
.y97{bottom:582.173333pt;}
.yd4{bottom:582.333333pt;}
.yfe{bottom:582.653333pt;}
.y114{bottom:590.013333pt;}
.y13b{bottom:590.333333pt;}
.yb9{bottom:592.893333pt;}
.y7f{bottom:596.253333pt;}
.ya{bottom:596.413333pt;}
.yfc{bottom:596.893333pt;}
.y58{bottom:598.973333pt;}
.y12b{bottom:600.573333pt;}
.y21{bottom:601.213333pt;}
.yc5{bottom:602.173333pt;}
.y39{bottom:604.413333pt;}
.y67{bottom:608.413333pt;}
.y96{bottom:618.973333pt;}
.yea{bottom:619.773333pt;}
.yfd{bottom:619.933333pt;}
.y113{bottom:626.813333pt;}
.yb8{bottom:630.333333pt;}
.y7e{bottom:633.053333pt;}
.y9{bottom:633.213333pt;}
.yfb{bottom:633.693333pt;}
.y57{bottom:635.773333pt;}
.y12a{bottom:637.373333pt;}
.yc4{bottom:638.973333pt;}
.y38{bottom:641.213333pt;}
.y66{bottom:645.213333pt;}
.y20{bottom:654.013333pt;}
.y95{bottom:655.773333pt;}
.ye9{bottom:657.373333pt;}
.y112{bottom:663.613333pt;}
.y7d{bottom:669.853333pt;}
.y8{bottom:670.013333pt;}
.yfa{bottom:670.493333pt;}
.y56{bottom:672.573333pt;}
.y129{bottom:674.173333pt;}
.yc3{bottom:675.773333pt;}
.y37{bottom:678.013333pt;}
.y4c{bottom:682.013333pt;}
.y1f{bottom:690.813333pt;}
.y94{bottom:692.573333pt;}
.ye8{bottom:694.813333pt;}
.y111{bottom:700.413333pt;}
.yb6{bottom:704.573333pt;}
.y7c{bottom:706.653333pt;}
.y7{bottom:706.813333pt;}
.yf9{bottom:707.293333pt;}
.y55{bottom:709.373333pt;}
.y128{bottom:710.973333pt;}
.yc2{bottom:712.573333pt;}
.y36{bottom:714.813333pt;}
.y4b{bottom:718.813333pt;}
.y1e{bottom:727.613333pt;}
.y93{bottom:729.373333pt;}
.ye6{bottom:732.253333pt;}
.y110{bottom:737.213333pt;}
.y7b{bottom:743.453333pt;}
.y6{bottom:743.613333pt;}
.yc1{bottom:745.733333pt;}
.y54{bottom:746.213333pt;}
.y127{bottom:747.813333pt;}
.y35{bottom:751.653333pt;}
.y4a{bottom:755.653333pt;}
.y1d{bottom:764.453333pt;}
.y92{bottom:766.213333pt;}
.ye1{bottom:769.733333pt;}
.y10f{bottom:774.053333pt;}
.yb5{bottom:778.853333pt;}
.y7a{bottom:780.293333pt;}
.y5{bottom:780.453333pt;}
.y53{bottom:783.013333pt;}
.y126{bottom:784.613333pt;}
.y34{bottom:788.453333pt;}
.y49{bottom:792.453333pt;}
.y1c{bottom:801.253333pt;}
.y91{bottom:803.013333pt;}
.y10e{bottom:810.853333pt;}
.y79{bottom:817.093333pt;}
.y4{bottom:817.253333pt;}
.y52{bottom:819.813333pt;}
.y125{bottom:821.413333pt;}
.y33{bottom:825.253333pt;}
.y48{bottom:829.253333pt;}
.y1b{bottom:838.053333pt;}
.y90{bottom:839.813333pt;}
.ye3{bottom:843.333333pt;}
.y10d{bottom:847.653333pt;}
.yaf{bottom:853.093333pt;}
.y3{bottom:854.053333pt;}
.y51{bottom:856.613333pt;}
.y78{bottom:857.893333pt;}
.y124{bottom:858.213333pt;}
.y32{bottom:862.053333pt;}
.y47{bottom:866.053333pt;}
.y1a{bottom:874.853333pt;}
.y8f{bottom:876.613333pt;}
.y10c{bottom:884.453333pt;}
.y2{bottom:890.853333pt;}
.y50{bottom:893.413333pt;}
.y123{bottom:895.013333pt;}
.y31{bottom:898.853333pt;}
.y46{bottom:902.853333pt;}
.y77{bottom:910.693333pt;}
.y19{bottom:911.653333pt;}
.y8e{bottom:913.413333pt;}
.y10b{bottom:921.253333pt;}
.y1{bottom:924.133333pt;}
.yb1{bottom:927.333333pt;}
.y4f{bottom:930.213333pt;}
.y122{bottom:931.813333pt;}
.y30{bottom:935.653333pt;}
.y45{bottom:939.653333pt;}
.y18{bottom:948.453333pt;}
.y76{bottom:950.213333pt;}
.y13a{bottom:958.053333pt;}
.y121{bottom:968.613333pt;}
.y4e{bottom:971.013333pt;}
.y2f{bottom:972.453333pt;}
.y44{bottom:976.453333pt;}
.y75{bottom:987.013333pt;}
.y139{bottom:994.853333pt;}
.y17{bottom:1001.280000pt;}
.y2e{bottom:1013.280000pt;}
.y4d{bottom:1023.840000pt;}
.y16{bottom:1060.640000pt;}
.h8{height:36.786667pt;}
.hc{height:36.800000pt;}
.h16{height:36.818667pt;}
.h19{height:36.820000pt;}
.hd{height:36.826667pt;}
.h13{height:36.946667pt;}
.hf{height:36.960000pt;}
.h11{height:36.986667pt;}
.h12{height:37.106667pt;}
.h10{height:37.120000pt;}
.h14{height:37.138667pt;}
.h3{height:57.375000pt;}
.h1b{height:65.781915pt;}
.h2{height:66.750000pt;}
.h6{height:72.090000pt;}
.h18{height:72.946667pt;}
.h9{height:73.586667pt;}
.hb{height:73.600000pt;}
.ha{height:73.620000pt;}
.h4{height:74.162500pt;}
.h15{height:74.226667pt;}
.h5{height:74.322500pt;}
.he{height:74.720000pt;}
.h1a{height:74.898667pt;}
.h17{height:110.386667pt;}
.h7{height:111.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:74.706667pt;}
.w5{width:81.106667pt;}
.w1d{width:96.178667pt;}
.w2{width:110.550667pt;}
.w3{width:111.538667pt;}
.w15{width:115.218667pt;}
.w18{width:119.826667pt;}
.w16{width:122.098667pt;}
.w1c{width:122.112000pt;}
.w17{width:122.272000pt;}
.w1b{width:131.520000pt;}
.wf{width:131.698667pt;}
.wa{width:138.413333pt;}
.w13{width:138.893333pt;}
.we{width:141.145333pt;}
.wc{width:141.146667pt;}
.w7{width:146.573333pt;}
.w6{width:147.066667pt;}
.w19{width:150.413333pt;}
.wb{width:150.573333pt;}
.w12{width:150.586667pt;}
.w8{width:167.225333pt;}
.w10{width:290.146667pt;}
.w9{width:292.373333pt;}
.w4{width:294.306667pt;}
.w1e{width:297.457333pt;}
.w1f{width:297.666667pt;}
.w1a{width:351.266667pt;}
.w14{width:365.653333pt;}
.wd{width:599.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:7.190667pt;}
.x1e{left:8.150667pt;}
.x16{left:10.706667pt;}
.x1d{left:11.666667pt;}
.x1a{left:13.440000pt;}
.x25{left:15.346667pt;}
.x3b{left:17.280000pt;}
.x4d{left:18.226667pt;}
.x21{left:19.190667pt;}
.x14{left:20.150667pt;}
.x30{left:22.590667pt;}
.x1f{left:24.626667pt;}
.x44{left:26.546667pt;}
.x2e{left:28.510667pt;}
.x31{left:30.066667pt;}
.x2f{left:32.306667pt;}
.x34{left:33.310667pt;}
.x41{left:34.386667pt;}
.x22{left:35.826667pt;}
.x33{left:36.786667pt;}
.x24{left:37.920000pt;}
.x49{left:39.040000pt;}
.x20{left:40.146667pt;}
.x2d{left:44.826667pt;}
.x2c{left:47.226667pt;}
.x28{left:48.505333pt;}
.x3c{left:49.625333pt;}
.x23{left:53.146667pt;}
.x4c{left:55.186667pt;}
.x45{left:58.426667pt;}
.x46{left:59.870667pt;}
.x1b{left:61.760000pt;}
.x3d{left:66.401333pt;}
.x3f{left:78.266667pt;}
.x35{left:85.281333pt;}
.x27{left:87.681333pt;}
.x12{left:89.472000pt;}
.xe{left:94.592000pt;}
.x13{left:106.601333pt;}
.xa{left:113.472000pt;}
.x9{left:118.112000pt;}
.x38{left:125.946667pt;}
.x18{left:127.866667pt;}
.x47{left:136.360000pt;}
.x11{left:137.466667pt;}
.x3{left:180.826667pt;}
.x52{left:193.946667pt;}
.x6{left:199.226667pt;}
.x3e{left:208.360000pt;}
.x8{left:210.906667pt;}
.x51{left:215.706667pt;}
.x15{left:217.800000pt;}
.x2b{left:225.985333pt;}
.x36{left:227.240000pt;}
.x4{left:242.266667pt;}
.x29{left:255.560000pt;}
.x32{left:279.265333pt;}
.x48{left:287.426667pt;}
.x5{left:299.746667pt;}
.x7{left:310.306667pt;}
.x54{left:312.226667pt;}
.x53{left:314.946667pt;}
.x17{left:330.146667pt;}
.x42{left:331.266667pt;}
.xf{left:354.946667pt;}
.x37{left:359.586667pt;}
.xb{left:365.506667pt;}
.xd{left:374.786667pt;}
.x50{left:403.746667pt;}
.x2{left:406.306667pt;}
.x4a{left:419.586667pt;}
.x43{left:454.186667pt;}
.x1c{left:477.866667pt;}
.x3a{left:510.826667pt;}
.x4b{left:542.506667pt;}
.x2a{left:548.586667pt;}
.x1{left:565.533333pt;}
.x40{left:574.666667pt;}
.x19{left:625.093333pt;}
.x39{left:650.373333pt;}
.x26{left:670.693333pt;}
.x55{left:679.173333pt;}
.x4e{left:681.573333pt;}
.x10{left:690.853333pt;}
.xc{left:698.053333pt;}
}




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