
    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_47d61276aa1f88260a795f64.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c9878d4ecc9a1486936268f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_932f538f73b7584bd683913d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_42e79778938b79428335509d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c4f0dd8822eeffcdb8ca7fd.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_713129d96f67f8d24b7130a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_b50a969f551b2ebb31b67067.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_aaea5d4c8d3527af8f37f2a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_5a010cc945afc53102eaa047.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.058320px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.460080px;}
.ls1a{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.106720px;}
.ls7{letter-spacing:2.340000px;}
.lse{letter-spacing:3.780000px;}
.lsd{letter-spacing:4.500000px;}
.ls9{letter-spacing:5.940000px;}
.ls14{letter-spacing:9.540000px;}
.ls1c{letter-spacing:13.140000px;}
.ls11{letter-spacing:13.860000px;}
.ls13{letter-spacing:21.060000px;}
.ls12{letter-spacing:31.140000px;}
.ls10{letter-spacing:31.602720px;}
.lsc{letter-spacing:31.626720px;}
.ls16{letter-spacing:98.520000px;}
.ls18{letter-spacing:149.220000px;}
.ls19{letter-spacing:316.236000px;}
.ls1{letter-spacing:1106.280000px;}
.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;}
}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:38.879760px;}
.ws5{word-spacing:67.680000px;}
.ws9{word-spacing:75.840000px;}
.ws8{word-spacing:91.680000px;}
.wsa{word-spacing:103.380000px;}
._1e{margin-left:-31.236480px;}
._1c{margin-left:-13.341600px;}
._9{margin-left:-3.645360px;}
._8{margin-left:-2.091600px;}
._3{margin-left:-1.075680px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._7{width:3.771120px;}
._6{width:4.927200px;}
._5{width:6.394320px;}
._a{width:7.589520px;}
._b{width:8.916240px;}
._c{width:10.278720px;}
._15{width:12.250800px;}
._16{width:13.266720px;}
._10{width:16.135200px;}
._12{width:17.808480px;}
._13{width:19.003680px;}
._14{width:20.198880px;}
._21{width:21.214800px;}
._18{width:22.888080px;}
._32{width:24.083280px;}
._17{width:25.577280px;}
._1b{width:26.832240px;}
._d{width:28.027440px;}
._1a{width:29.162880px;}
._31{width:30.362880px;}
._1d{width:31.373280px;}
._f{width:32.868000px;}
._e{width:33.943680px;}
._20{width:35.079120px;}
._19{width:36.214560px;}
._22{width:37.768320px;}
._33{width:40.398480px;}
._34{width:41.711760px;}
._2a{width:45.656640px;}
._29{width:46.851840px;}
._36{width:51.393600px;}
._1f{width:60.477120px;}
._24{width:65.616480px;}
._23{width:67.110480px;}
._11{width:73.564560px;}
._2f{width:93.303840px;}
._30{width:94.361040px;}
._2c{width:107.407680px;}
._2e{width:110.018160px;}
._2d{width:111.751200px;}
._26{width:121.740000px;}
._4{width:124.471920px;}
._2b{width:133.620000px;}
._35{width:149.818320px;}
._27{width:155.912640px;}
._25{width:179.724720px;}
._28{width:767.850240px;}
._0{width:798.090240px;}
._37{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:16.305000px;}
.yb5{bottom:47.415000px;}
.y2{bottom:56.160000px;}
.y119{bottom:82.830000px;}
.yad{bottom:83.160000px;}
.ydb{bottom:84.600000px;}
.y121{bottom:89.850000px;}
.yb6{bottom:90.285000px;}
.ye3{bottom:92.190000px;}
.y3f{bottom:92.520000px;}
.y117{bottom:93.960000px;}
.y11d{bottom:96.045000px;}
.yb1{bottom:96.630000px;}
.ydf{bottom:99.030000px;}
.y7e{bottom:105.660000px;}
.y7f{bottom:106.020000px;}
.y8b{bottom:109.620000px;}
.y3e{bottom:109.800000px;}
.y115{bottom:111.240000px;}
.y7d{bottom:123.300000px;}
.y8a{bottom:126.900000px;}
.y3d{bottom:127.080000px;}
.y114{bottom:128.520000px;}
.y11a{bottom:133.305000px;}
.yae{bottom:134.535000px;}
.ydc{bottom:139.755000px;}
.y122{bottom:140.295000px;}
.y7c{bottom:140.400000px;}
.yb7{bottom:141.660000px;}
.y89{bottom:144.180000px;}
.y3c{bottom:144.360000px;}
.y113{bottom:145.620000px;}
.y11e{bottom:146.490000px;}
.ye4{bottom:147.390000px;}
.yb2{bottom:147.960000px;}
.ye0{bottom:154.185000px;}
.y7b{bottom:157.680000px;}
.y88{bottom:161.490000px;}
.y3b{bottom:161.670000px;}
.y112{bottom:162.930000px;}
.y7a{bottom:174.990000px;}
.y87{bottom:178.770000px;}
.y3a{bottom:178.950000px;}
.y111{bottom:180.210000px;}
.y11b{bottom:183.750000px;}
.yaf{bottom:185.865000px;}
.y123{bottom:190.770000px;}
.y79{bottom:192.270000px;}
.yb8{bottom:192.990000px;}
.ydd{bottom:194.940000px;}
.y39{bottom:196.050000px;}
.y11f{bottom:196.950000px;}
.y110{bottom:197.490000px;}
.yb3{bottom:199.335000px;}
.ye5{bottom:202.575000px;}
.ye1{bottom:209.370000px;}
.y78{bottom:209.550000px;}
.y86{bottom:213.150000px;}
.y38{bottom:213.330000px;}
.y10f{bottom:214.770000px;}
.y77{bottom:226.830000px;}
.y85{bottom:230.430000px;}
.y37{bottom:230.610000px;}
.y10e{bottom:232.050000px;}
.y11c{bottom:234.210000px;}
.yb0{bottom:237.240000px;}
.y124{bottom:241.200000px;}
.y76{bottom:243.930000px;}
.yb9{bottom:244.365000px;}
.y120{bottom:247.395000px;}
.y36{bottom:247.530000px;}
.y84{bottom:247.710000px;}
.y10d{bottom:249.150000px;}
.yde{bottom:250.125000px;}
.yb4{bottom:250.665000px;}
.ye6{bottom:257.760000px;}
.y75{bottom:261.210000px;}
.y83{bottom:261.390000px;}
.ye2{bottom:264.570000px;}
.y35{bottom:265.170000px;}
.y10c{bottom:266.430000px;}
.y74{bottom:278.490000px;}
.y34{bottom:282.450000px;}
.y10b{bottom:283.710000px;}
.y73{bottom:295.770000px;}
.y33{bottom:299.550000px;}
.y10a{bottom:300.990000px;}
.y72{bottom:313.050000px;}
.y32{bottom:316.830000px;}
.y109{bottom:318.270000px;}
.y71{bottom:330.330000px;}
.y31{bottom:333.750000px;}
.y108{bottom:335.550000px;}
.y70{bottom:347.430000px;}
.y30{bottom:351.390000px;}
.y107{bottom:352.650000px;}
.y6f{bottom:364.710000px;}
.yd9{bottom:367.050000px;}
.y2f{bottom:368.670000px;}
.y106{bottom:369.930000px;}
.y6e{bottom:381.990000px;}
.yab{bottom:382.710000px;}
.yd8{bottom:384.150000px;}
.y2e{bottom:385.950000px;}
.y105{bottom:386.850000px;}
.y116{bottom:387.210000px;}
.y6d{bottom:399.270000px;}
.yaa{bottom:399.990000px;}
.yd7{bottom:401.430000px;}
.y2d{bottom:402.690000px;}
.y104{bottom:404.490000px;}
.y6c{bottom:416.595000px;}
.ya9{bottom:417.315000px;}
.yd6{bottom:418.755000px;}
.y2c{bottom:420.375000px;}
.y103{bottom:421.815000px;}
.y6b{bottom:433.695000px;}
.ya8{bottom:434.415000px;}
.yd5{bottom:436.035000px;}
.y2b{bottom:437.655000px;}
.y102{bottom:438.915000px;}
.y6a{bottom:450.975000px;}
.ya7{bottom:451.695000px;}
.yd4{bottom:453.315000px;}
.y2a{bottom:454.935000px;}
.y101{bottom:456.195000px;}
.y69{bottom:468.255000px;}
.ya6{bottom:468.975000px;}
.yd3{bottom:470.415000px;}
.y29{bottom:471.855000px;}
.y100{bottom:473.475000px;}
.y68{bottom:485.535000px;}
.ya5{bottom:486.255000px;}
.yd2{bottom:487.695000px;}
.y28{bottom:489.315000px;}
.yff{bottom:490.755000px;}
.y67{bottom:502.815000px;}
.ya4{bottom:503.535000px;}
.yd1{bottom:504.975000px;}
.y27{bottom:506.595000px;}
.yfe{bottom:508.035000px;}
.y66{bottom:520.095000px;}
.ya3{bottom:520.815000px;}
.yd0{bottom:522.255000px;}
.y26{bottom:523.875000px;}
.yfd{bottom:525.315000px;}
.y65{bottom:537.195000px;}
.ya2{bottom:537.915000px;}
.ycf{bottom:539.535000px;}
.y25{bottom:540.795000px;}
.yfc{bottom:542.415000px;}
.y64{bottom:554.475000px;}
.ya1{bottom:555.195000px;}
.yce{bottom:556.815000px;}
.y24{bottom:558.435000px;}
.yfb{bottom:559.695000px;}
.y63{bottom:571.755000px;}
.ya0{bottom:572.475000px;}
.ycd{bottom:573.915000px;}
.y23{bottom:575.715000px;}
.yfa{bottom:576.975000px;}
.y62{bottom:589.035000px;}
.y9f{bottom:589.755000px;}
.ycc{bottom:591.195000px;}
.y22{bottom:592.815000px;}
.yf9{bottom:594.255000px;}
.y14a{bottom:603.795000px;}
.y61{bottom:606.315000px;}
.y9e{bottom:607.035000px;}
.ycb{bottom:608.475000px;}
.y21{bottom:610.095000px;}
.yf8{bottom:611.535000px;}
.y132{bottom:621.435000px;}
.y60{bottom:623.595000px;}
.y9d{bottom:624.315000px;}
.yca{bottom:625.755000px;}
.y20{bottom:627.375000px;}
.yf7{bottom:628.815000px;}
.y131{bottom:638.715000px;}
.y5f{bottom:640.695000px;}
.y9c{bottom:641.415000px;}
.yc9{bottom:643.035000px;}
.y1f{bottom:644.295000px;}
.yf6{bottom:645.915000px;}
.y130{bottom:655.845000px;}
.y8c{bottom:657.645000px;}
.y5e{bottom:658.005000px;}
.y9b{bottom:658.725000px;}
.yc8{bottom:660.345000px;}
.yf5{bottom:663.225000px;}
.y12f{bottom:673.125000px;}
.y149{bottom:673.485000px;}
.y5d{bottom:675.285000px;}
.y9a{bottom:676.005000px;}
.yc7{bottom:677.445000px;}
.y1e{bottom:678.885000px;}
.yf4{bottom:680.505000px;}
.y12e{bottom:690.405000px;}
.y148{bottom:691.485000px;}
.y5c{bottom:692.565000px;}
.y99{bottom:693.285000px;}
.yc6{bottom:694.725000px;}
.y1d{bottom:695.985000px;}
.yf3{bottom:697.785000px;}
.y12d{bottom:707.685000px;}
.y147{bottom:708.765000px;}
.y5b{bottom:709.845000px;}
.y98{bottom:710.565000px;}
.yc5{bottom:712.005000px;}
.y1c{bottom:713.265000px;}
.yf2{bottom:715.065000px;}
.y12c{bottom:724.965000px;}
.y146{bottom:726.045000px;}
.y5a{bottom:726.945000px;}
.y97{bottom:727.845000px;}
.yc4{bottom:729.285000px;}
.y1b{bottom:730.545000px;}
.yf1{bottom:732.345000px;}
.y12b{bottom:742.605000px;}
.y145{bottom:743.145000px;}
.y59{bottom:744.225000px;}
.y96{bottom:744.945000px;}
.yc3{bottom:746.565000px;}
.y1a{bottom:748.185000px;}
.yf0{bottom:749.445000px;}
.y12a{bottom:760.425000px;}
.y58{bottom:761.505000px;}
.y95{bottom:762.225000px;}
.yc2{bottom:763.665000px;}
.y19{bottom:765.465000px;}
.yef{bottom:766.725000px;}
.y129{bottom:777.705000px;}
.y57{bottom:778.785000px;}
.y94{bottom:779.505000px;}
.yc1{bottom:780.945000px;}
.y18{bottom:782.205000px;}
.yee{bottom:784.005000px;}
.y128{bottom:794.985000px;}
.y56{bottom:796.065000px;}
.y93{bottom:796.785000px;}
.yc0{bottom:798.225000px;}
.y17{bottom:799.845000px;}
.yed{bottom:801.285000px;}
.y127{bottom:812.265000px;}
.y55{bottom:813.345000px;}
.y92{bottom:814.065000px;}
.ybf{bottom:815.505000px;}
.y16{bottom:817.125000px;}
.yec{bottom:818.565000px;}
.y126{bottom:829.545000px;}
.y54{bottom:830.445000px;}
.y91{bottom:831.165000px;}
.ybe{bottom:832.785000px;}
.y15{bottom:834.405000px;}
.yeb{bottom:835.665000px;}
.y144{bottom:846.645000px;}
.y125{bottom:847.005000px;}
.y53{bottom:847.725000px;}
.y90{bottom:848.445000px;}
.ybd{bottom:850.065000px;}
.y14{bottom:851.325000px;}
.yea{bottom:852.945000px;}
.y143{bottom:863.925000px;}
.y52{bottom:865.005000px;}
.y8f{bottom:865.725000px;}
.ybc{bottom:867.165000px;}
.y13{bottom:868.965000px;}
.ye9{bottom:870.225000px;}
.ybb{bottom:880.845000px;}
.y142{bottom:881.205000px;}
.y51{bottom:882.285000px;}
.yda{bottom:882.360000px;}
.y8e{bottom:883.005000px;}
.y12{bottom:886.065000px;}
.ye8{bottom:887.505000px;}
.y8d{bottom:896.730000px;}
.yac{bottom:897.660000px;}
.y141{bottom:898.530000px;}
.y50{bottom:899.610000px;}
.ye7{bottom:901.230000px;}
.y118{bottom:901.260000px;}
.y11{bottom:903.390000px;}
.y140{bottom:915.810000px;}
.y4f{bottom:916.890000px;}
.y10{bottom:920.310000px;}
.y13f{bottom:932.910000px;}
.y4e{bottom:933.990000px;}
.yf{bottom:937.950000px;}
.y13e{bottom:950.190000px;}
.y82{bottom:950.910000px;}
.y4d{bottom:951.270000px;}
.ye{bottom:955.230000px;}
.y13d{bottom:967.470000px;}
.y4c{bottom:968.550000px;}
.yd{bottom:972.510000px;}
.y4b{bottom:985.830000px;}
.yc{bottom:989.250000px;}
.y13c{bottom:1002.030000px;}
.y4a{bottom:1003.110000px;}
.yb{bottom:1006.890000px;}
.y13b{bottom:1019.310000px;}
.y49{bottom:1020.390000px;}
.ya{bottom:1024.170000px;}
.y13a{bottom:1036.410000px;}
.y48{bottom:1037.490000px;}
.y9{bottom:1041.450000px;}
.y139{bottom:1053.690000px;}
.y47{bottom:1054.770000px;}
.y8{bottom:1058.730000px;}
.y138{bottom:1070.970000px;}
.y46{bottom:1072.050000px;}
.y7{bottom:1075.650000px;}
.y137{bottom:1088.250000px;}
.y45{bottom:1088.970000px;}
.y80{bottom:1089.330000px;}
.y136{bottom:1105.530000px;}
.y44{bottom:1106.610000px;}
.y6{bottom:1110.030000px;}
.y135{bottom:1122.810000px;}
.y81{bottom:1123.350000px;}
.y43{bottom:1123.710000px;}
.y5{bottom:1127.310000px;}
.y134{bottom:1139.910000px;}
.y42{bottom:1141.020000px;}
.y4{bottom:1144.620000px;}
.y133{bottom:1157.580000px;}
.y41{bottom:1158.300000px;}
.y3{bottom:1164.780000px;}
.y40{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h3{height:52.998047px;}
.h8{height:53.077852px;}
.hc{height:53.252930px;}
.h9{height:53.573906px;}
.h6{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h4{height:81.949219px;}
.he{height:288.000000px;}
.hb{height:291.600000px;}
.hd{height:306.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:525.600000px;}
.w4{width:544.500000px;}
.w3{width:605.700000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:9.870000px;}
.x37{left:42.270000px;}
.x42{left:46.185000px;}
.x4e{left:54.150000px;}
.x43{left:66.600000px;}
.x36{left:68.040000px;}
.x39{left:81.900000px;}
.x1{left:106.415987px;}
.x2b{left:111.275987px;}
.x3b{left:114.335987px;}
.x38{left:123.225000px;}
.x4{left:124.775987px;}
.x12{left:132.335987px;}
.x25{left:136.115987px;}
.x5{left:140.975987px;}
.x2c{left:142.560000px;}
.x11{left:151.769987px;}
.x3d{left:174.060000px;}
.x46{left:183.060000px;}
.x34{left:251.790000px;}
.x28{left:270.029987px;}
.x2{left:272.729987px;}
.x47{left:274.830000px;}
.x49{left:276.270000px;}
.x48{left:278.715000px;}
.x2d{left:289.365000px;}
.x3c{left:291.494987px;}
.x3e{left:297.075000px;}
.x30{left:299.595000px;}
.x2f{left:302.430000px;}
.x3f{left:305.385000px;}
.x2e{left:309.810000px;}
.x29{left:346.754987px;}
.x45{left:371.594987px;}
.x13{left:386.714987px;}
.x4a{left:390.570000px;}
.x1d{left:400.934987px;}
.x1c{left:411.914987px;}
.x8{left:413.174987px;}
.xb{left:414.614987px;}
.x4d{left:422.430000px;}
.x16{left:442.874987px;}
.x19{left:454.034987px;}
.x10{left:457.094987px;}
.x3{left:461.414987px;}
.x1f{left:463.394987px;}
.x4c{left:467.610000px;}
.x21{left:474.014987px;}
.xf{left:475.094987px;}
.x41{left:481.935000px;}
.x4b{left:483.300000px;}
.x26{left:487.004987px;}
.x9{left:494.204987px;}
.x40{left:496.335000px;}
.xe{left:508.424987px;}
.x1a{left:519.944987px;}
.x33{left:533.700000px;}
.x23{left:537.944987px;}
.x15{left:539.204987px;}
.x17{left:544.604987px;}
.x32{left:546.405000px;}
.xa{left:551.444987px;}
.x31{left:565.770000px;}
.x7{left:606.704987px;}
.x22{left:643.064987px;}
.x18{left:646.844987px;}
.x27{left:659.264987px;}
.x1e{left:664.844987px;}
.xc{left:672.629987px;}
.x14{left:685.409987px;}
.x1b{left:693.149987px;}
.xd{left:697.469987px;}
.x20{left:701.249987px;}
.x44{left:709.889987px;}
.x6{left:711.689987px;}
.x3a{left:718.889987px;}
.x2a{left:750.389987px;}
.x24{left:786.749987px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.051840pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.408960pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:1.872640pt;}
.ls7{letter-spacing:2.080000pt;}
.lse{letter-spacing:3.360000pt;}
.lsd{letter-spacing:4.000000pt;}
.ls9{letter-spacing:5.280000pt;}
.ls14{letter-spacing:8.480000pt;}
.ls1c{letter-spacing:11.680000pt;}
.ls11{letter-spacing:12.320000pt;}
.ls13{letter-spacing:18.720000pt;}
.ls12{letter-spacing:27.680000pt;}
.ls10{letter-spacing:28.091307pt;}
.lsc{letter-spacing:28.112640pt;}
.ls16{letter-spacing:87.573333pt;}
.ls18{letter-spacing:132.640000pt;}
.ls19{letter-spacing:281.098667pt;}
.ls1{letter-spacing:983.360000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:34.559787pt;}
.ws5{word-spacing:60.160000pt;}
.ws9{word-spacing:67.413333pt;}
.ws8{word-spacing:81.493333pt;}
.wsa{word-spacing:91.893333pt;}
._1e{margin-left:-27.765760pt;}
._1c{margin-left:-11.859200pt;}
._9{margin-left:-3.240320pt;}
._8{margin-left:-1.859200pt;}
._3{margin-left:-0.956160pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._7{width:3.352107pt;}
._6{width:4.379733pt;}
._5{width:5.683840pt;}
._a{width:6.746240pt;}
._b{width:7.925547pt;}
._c{width:9.136640pt;}
._15{width:10.889600pt;}
._16{width:11.792640pt;}
._10{width:14.342400pt;}
._12{width:15.829760pt;}
._13{width:16.892160pt;}
._14{width:17.954560pt;}
._21{width:18.857600pt;}
._18{width:20.344960pt;}
._32{width:21.407360pt;}
._17{width:22.735360pt;}
._1b{width:23.850880pt;}
._d{width:24.913280pt;}
._1a{width:25.922560pt;}
._31{width:26.989227pt;}
._1d{width:27.887360pt;}
._f{width:29.216000pt;}
._e{width:30.172160pt;}
._20{width:31.181440pt;}
._19{width:32.190720pt;}
._22{width:33.571840pt;}
._33{width:35.909760pt;}
._34{width:37.077120pt;}
._2a{width:40.583680pt;}
._29{width:41.646080pt;}
._36{width:45.683200pt;}
._1f{width:53.757440pt;}
._24{width:58.325760pt;}
._23{width:59.653760pt;}
._11{width:65.390720pt;}
._2f{width:82.936747pt;}
._30{width:83.876480pt;}
._2c{width:95.473493pt;}
._2e{width:97.793920pt;}
._2d{width:99.334400pt;}
._26{width:108.213333pt;}
._4{width:110.641707pt;}
._2b{width:118.773333pt;}
._35{width:133.171840pt;}
._27{width:138.589013pt;}
._25{width:159.755307pt;}
._28{width:682.533547pt;}
._0{width:709.413547pt;}
._37{width:754.858667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:14.493333pt;}
.yb5{bottom:42.146667pt;}
.y2{bottom:49.920000pt;}
.y119{bottom:73.626667pt;}
.yad{bottom:73.920000pt;}
.ydb{bottom:75.200000pt;}
.y121{bottom:79.866667pt;}
.yb6{bottom:80.253333pt;}
.ye3{bottom:81.946667pt;}
.y3f{bottom:82.240000pt;}
.y117{bottom:83.520000pt;}
.y11d{bottom:85.373333pt;}
.yb1{bottom:85.893333pt;}
.ydf{bottom:88.026667pt;}
.y7e{bottom:93.920000pt;}
.y7f{bottom:94.240000pt;}
.y8b{bottom:97.440000pt;}
.y3e{bottom:97.600000pt;}
.y115{bottom:98.880000pt;}
.y7d{bottom:109.600000pt;}
.y8a{bottom:112.800000pt;}
.y3d{bottom:112.960000pt;}
.y114{bottom:114.240000pt;}
.y11a{bottom:118.493333pt;}
.yae{bottom:119.586667pt;}
.ydc{bottom:124.226667pt;}
.y122{bottom:124.706667pt;}
.y7c{bottom:124.800000pt;}
.yb7{bottom:125.920000pt;}
.y89{bottom:128.160000pt;}
.y3c{bottom:128.320000pt;}
.y113{bottom:129.440000pt;}
.y11e{bottom:130.213333pt;}
.ye4{bottom:131.013333pt;}
.yb2{bottom:131.520000pt;}
.ye0{bottom:137.053333pt;}
.y7b{bottom:140.160000pt;}
.y88{bottom:143.546667pt;}
.y3b{bottom:143.706667pt;}
.y112{bottom:144.826667pt;}
.y7a{bottom:155.546667pt;}
.y87{bottom:158.906667pt;}
.y3a{bottom:159.066667pt;}
.y111{bottom:160.186667pt;}
.y11b{bottom:163.333333pt;}
.yaf{bottom:165.213333pt;}
.y123{bottom:169.573333pt;}
.y79{bottom:170.906667pt;}
.yb8{bottom:171.546667pt;}
.ydd{bottom:173.280000pt;}
.y39{bottom:174.266667pt;}
.y11f{bottom:175.066667pt;}
.y110{bottom:175.546667pt;}
.yb3{bottom:177.186667pt;}
.ye5{bottom:180.066667pt;}
.ye1{bottom:186.106667pt;}
.y78{bottom:186.266667pt;}
.y86{bottom:189.466667pt;}
.y38{bottom:189.626667pt;}
.y10f{bottom:190.906667pt;}
.y77{bottom:201.626667pt;}
.y85{bottom:204.826667pt;}
.y37{bottom:204.986667pt;}
.y10e{bottom:206.266667pt;}
.y11c{bottom:208.186667pt;}
.yb0{bottom:210.880000pt;}
.y124{bottom:214.400000pt;}
.y76{bottom:216.826667pt;}
.yb9{bottom:217.213333pt;}
.y120{bottom:219.906667pt;}
.y36{bottom:220.026667pt;}
.y84{bottom:220.186667pt;}
.y10d{bottom:221.466667pt;}
.yde{bottom:222.333333pt;}
.yb4{bottom:222.813333pt;}
.ye6{bottom:229.120000pt;}
.y75{bottom:232.186667pt;}
.y83{bottom:232.346667pt;}
.ye2{bottom:235.173333pt;}
.y35{bottom:235.706667pt;}
.y10c{bottom:236.826667pt;}
.y74{bottom:247.546667pt;}
.y34{bottom:251.066667pt;}
.y10b{bottom:252.186667pt;}
.y73{bottom:262.906667pt;}
.y33{bottom:266.266667pt;}
.y10a{bottom:267.546667pt;}
.y72{bottom:278.266667pt;}
.y32{bottom:281.626667pt;}
.y109{bottom:282.906667pt;}
.y71{bottom:293.626667pt;}
.y31{bottom:296.666667pt;}
.y108{bottom:298.266667pt;}
.y70{bottom:308.826667pt;}
.y30{bottom:312.346667pt;}
.y107{bottom:313.466667pt;}
.y6f{bottom:324.186667pt;}
.yd9{bottom:326.266667pt;}
.y2f{bottom:327.706667pt;}
.y106{bottom:328.826667pt;}
.y6e{bottom:339.546667pt;}
.yab{bottom:340.186667pt;}
.yd8{bottom:341.466667pt;}
.y2e{bottom:343.066667pt;}
.y105{bottom:343.866667pt;}
.y116{bottom:344.186667pt;}
.y6d{bottom:354.906667pt;}
.yaa{bottom:355.546667pt;}
.yd7{bottom:356.826667pt;}
.y2d{bottom:357.946667pt;}
.y104{bottom:359.546667pt;}
.y6c{bottom:370.306667pt;}
.ya9{bottom:370.946667pt;}
.yd6{bottom:372.226667pt;}
.y2c{bottom:373.666667pt;}
.y103{bottom:374.946667pt;}
.y6b{bottom:385.506667pt;}
.ya8{bottom:386.146667pt;}
.yd5{bottom:387.586667pt;}
.y2b{bottom:389.026667pt;}
.y102{bottom:390.146667pt;}
.y6a{bottom:400.866667pt;}
.ya7{bottom:401.506667pt;}
.yd4{bottom:402.946667pt;}
.y2a{bottom:404.386667pt;}
.y101{bottom:405.506667pt;}
.y69{bottom:416.226667pt;}
.ya6{bottom:416.866667pt;}
.yd3{bottom:418.146667pt;}
.y29{bottom:419.426667pt;}
.y100{bottom:420.866667pt;}
.y68{bottom:431.586667pt;}
.ya5{bottom:432.226667pt;}
.yd2{bottom:433.506667pt;}
.y28{bottom:434.946667pt;}
.yff{bottom:436.226667pt;}
.y67{bottom:446.946667pt;}
.ya4{bottom:447.586667pt;}
.yd1{bottom:448.866667pt;}
.y27{bottom:450.306667pt;}
.yfe{bottom:451.586667pt;}
.y66{bottom:462.306667pt;}
.ya3{bottom:462.946667pt;}
.yd0{bottom:464.226667pt;}
.y26{bottom:465.666667pt;}
.yfd{bottom:466.946667pt;}
.y65{bottom:477.506667pt;}
.ya2{bottom:478.146667pt;}
.ycf{bottom:479.586667pt;}
.y25{bottom:480.706667pt;}
.yfc{bottom:482.146667pt;}
.y64{bottom:492.866667pt;}
.ya1{bottom:493.506667pt;}
.yce{bottom:494.946667pt;}
.y24{bottom:496.386667pt;}
.yfb{bottom:497.506667pt;}
.y63{bottom:508.226667pt;}
.ya0{bottom:508.866667pt;}
.ycd{bottom:510.146667pt;}
.y23{bottom:511.746667pt;}
.yfa{bottom:512.866667pt;}
.y62{bottom:523.586667pt;}
.y9f{bottom:524.226667pt;}
.ycc{bottom:525.506667pt;}
.y22{bottom:526.946667pt;}
.yf9{bottom:528.226667pt;}
.y14a{bottom:536.706667pt;}
.y61{bottom:538.946667pt;}
.y9e{bottom:539.586667pt;}
.ycb{bottom:540.866667pt;}
.y21{bottom:542.306667pt;}
.yf8{bottom:543.586667pt;}
.y132{bottom:552.386667pt;}
.y60{bottom:554.306667pt;}
.y9d{bottom:554.946667pt;}
.yca{bottom:556.226667pt;}
.y20{bottom:557.666667pt;}
.yf7{bottom:558.946667pt;}
.y131{bottom:567.746667pt;}
.y5f{bottom:569.506667pt;}
.y9c{bottom:570.146667pt;}
.yc9{bottom:571.586667pt;}
.y1f{bottom:572.706667pt;}
.yf6{bottom:574.146667pt;}
.y130{bottom:582.973333pt;}
.y8c{bottom:584.573333pt;}
.y5e{bottom:584.893333pt;}
.y9b{bottom:585.533333pt;}
.yc8{bottom:586.973333pt;}
.yf5{bottom:589.533333pt;}
.y12f{bottom:598.333333pt;}
.y149{bottom:598.653333pt;}
.y5d{bottom:600.253333pt;}
.y9a{bottom:600.893333pt;}
.yc7{bottom:602.173333pt;}
.y1e{bottom:603.453333pt;}
.yf4{bottom:604.893333pt;}
.y12e{bottom:613.693333pt;}
.y148{bottom:614.653333pt;}
.y5c{bottom:615.613333pt;}
.y99{bottom:616.253333pt;}
.yc6{bottom:617.533333pt;}
.y1d{bottom:618.653333pt;}
.yf3{bottom:620.253333pt;}
.y12d{bottom:629.053333pt;}
.y147{bottom:630.013333pt;}
.y5b{bottom:630.973333pt;}
.y98{bottom:631.613333pt;}
.yc5{bottom:632.893333pt;}
.y1c{bottom:634.013333pt;}
.yf2{bottom:635.613333pt;}
.y12c{bottom:644.413333pt;}
.y146{bottom:645.373333pt;}
.y5a{bottom:646.173333pt;}
.y97{bottom:646.973333pt;}
.yc4{bottom:648.253333pt;}
.y1b{bottom:649.373333pt;}
.yf1{bottom:650.973333pt;}
.y12b{bottom:660.093333pt;}
.y145{bottom:660.573333pt;}
.y59{bottom:661.533333pt;}
.y96{bottom:662.173333pt;}
.yc3{bottom:663.613333pt;}
.y1a{bottom:665.053333pt;}
.yf0{bottom:666.173333pt;}
.y12a{bottom:675.933333pt;}
.y58{bottom:676.893333pt;}
.y95{bottom:677.533333pt;}
.yc2{bottom:678.813333pt;}
.y19{bottom:680.413333pt;}
.yef{bottom:681.533333pt;}
.y129{bottom:691.293333pt;}
.y57{bottom:692.253333pt;}
.y94{bottom:692.893333pt;}
.yc1{bottom:694.173333pt;}
.y18{bottom:695.293333pt;}
.yee{bottom:696.893333pt;}
.y128{bottom:706.653333pt;}
.y56{bottom:707.613333pt;}
.y93{bottom:708.253333pt;}
.yc0{bottom:709.533333pt;}
.y17{bottom:710.973333pt;}
.yed{bottom:712.253333pt;}
.y127{bottom:722.013333pt;}
.y55{bottom:722.973333pt;}
.y92{bottom:723.613333pt;}
.ybf{bottom:724.893333pt;}
.y16{bottom:726.333333pt;}
.yec{bottom:727.613333pt;}
.y126{bottom:737.373333pt;}
.y54{bottom:738.173333pt;}
.y91{bottom:738.813333pt;}
.ybe{bottom:740.253333pt;}
.y15{bottom:741.693333pt;}
.yeb{bottom:742.813333pt;}
.y144{bottom:752.573333pt;}
.y125{bottom:752.893333pt;}
.y53{bottom:753.533333pt;}
.y90{bottom:754.173333pt;}
.ybd{bottom:755.613333pt;}
.y14{bottom:756.733333pt;}
.yea{bottom:758.173333pt;}
.y143{bottom:767.933333pt;}
.y52{bottom:768.893333pt;}
.y8f{bottom:769.533333pt;}
.ybc{bottom:770.813333pt;}
.y13{bottom:772.413333pt;}
.ye9{bottom:773.533333pt;}
.ybb{bottom:782.973333pt;}
.y142{bottom:783.293333pt;}
.y51{bottom:784.253333pt;}
.yda{bottom:784.320000pt;}
.y8e{bottom:784.893333pt;}
.y12{bottom:787.613333pt;}
.ye8{bottom:788.893333pt;}
.y8d{bottom:797.093333pt;}
.yac{bottom:797.920000pt;}
.y141{bottom:798.693333pt;}
.y50{bottom:799.653333pt;}
.ye7{bottom:801.093333pt;}
.y118{bottom:801.120000pt;}
.y11{bottom:803.013333pt;}
.y140{bottom:814.053333pt;}
.y4f{bottom:815.013333pt;}
.y10{bottom:818.053333pt;}
.y13f{bottom:829.253333pt;}
.y4e{bottom:830.213333pt;}
.yf{bottom:833.733333pt;}
.y13e{bottom:844.613333pt;}
.y82{bottom:845.253333pt;}
.y4d{bottom:845.573333pt;}
.ye{bottom:849.093333pt;}
.y13d{bottom:859.973333pt;}
.y4c{bottom:860.933333pt;}
.yd{bottom:864.453333pt;}
.y4b{bottom:876.293333pt;}
.yc{bottom:879.333333pt;}
.y13c{bottom:890.693333pt;}
.y4a{bottom:891.653333pt;}
.yb{bottom:895.013333pt;}
.y13b{bottom:906.053333pt;}
.y49{bottom:907.013333pt;}
.ya{bottom:910.373333pt;}
.y13a{bottom:921.253333pt;}
.y48{bottom:922.213333pt;}
.y9{bottom:925.733333pt;}
.y139{bottom:936.613333pt;}
.y47{bottom:937.573333pt;}
.y8{bottom:941.093333pt;}
.y138{bottom:951.973333pt;}
.y46{bottom:952.933333pt;}
.y7{bottom:956.133333pt;}
.y137{bottom:967.333333pt;}
.y45{bottom:967.973333pt;}
.y80{bottom:968.293333pt;}
.y136{bottom:982.693333pt;}
.y44{bottom:983.653333pt;}
.y6{bottom:986.693333pt;}
.y135{bottom:998.053333pt;}
.y81{bottom:998.533333pt;}
.y43{bottom:998.853333pt;}
.y5{bottom:1002.053333pt;}
.y134{bottom:1013.253333pt;}
.y42{bottom:1014.240000pt;}
.y4{bottom:1017.440000pt;}
.y133{bottom:1028.960000pt;}
.y41{bottom:1029.600000pt;}
.y3{bottom:1035.360000pt;}
.y40{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h3{height:47.109375pt;}
.h8{height:47.180312pt;}
.hc{height:47.335938pt;}
.h9{height:47.621250pt;}
.h6{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h4{height:72.843750pt;}
.he{height:256.000000pt;}
.hb{height:259.200000pt;}
.hd{height:272.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:467.200000pt;}
.w4{width:484.000000pt;}
.w3{width:538.400000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:8.773333pt;}
.x37{left:37.573333pt;}
.x42{left:41.053333pt;}
.x4e{left:48.133333pt;}
.x43{left:59.200000pt;}
.x36{left:60.480000pt;}
.x39{left:72.800000pt;}
.x1{left:94.591988pt;}
.x2b{left:98.911988pt;}
.x3b{left:101.631988pt;}
.x38{left:109.533333pt;}
.x4{left:110.911988pt;}
.x12{left:117.631988pt;}
.x25{left:120.991988pt;}
.x5{left:125.311988pt;}
.x2c{left:126.720000pt;}
.x11{left:134.906655pt;}
.x3d{left:154.720000pt;}
.x46{left:162.720000pt;}
.x34{left:223.813333pt;}
.x28{left:240.026655pt;}
.x2{left:242.426655pt;}
.x47{left:244.293333pt;}
.x49{left:245.573333pt;}
.x48{left:247.746667pt;}
.x2d{left:257.213333pt;}
.x3c{left:259.106655pt;}
.x3e{left:264.066667pt;}
.x30{left:266.306667pt;}
.x2f{left:268.826667pt;}
.x3f{left:271.453333pt;}
.x2e{left:275.386667pt;}
.x29{left:308.226655pt;}
.x45{left:330.306655pt;}
.x13{left:343.746655pt;}
.x4a{left:347.173333pt;}
.x1d{left:356.386655pt;}
.x1c{left:366.146655pt;}
.x8{left:367.266655pt;}
.xb{left:368.546655pt;}
.x4d{left:375.493333pt;}
.x16{left:393.666655pt;}
.x19{left:403.586655pt;}
.x10{left:406.306655pt;}
.x3{left:410.146655pt;}
.x1f{left:411.906655pt;}
.x4c{left:415.653333pt;}
.x21{left:421.346655pt;}
.xf{left:422.306655pt;}
.x41{left:428.386667pt;}
.x4b{left:429.600000pt;}
.x26{left:432.893322pt;}
.x9{left:439.293322pt;}
.x40{left:441.186667pt;}
.xe{left:451.933322pt;}
.x1a{left:462.173322pt;}
.x33{left:474.400000pt;}
.x23{left:478.173322pt;}
.x15{left:479.293322pt;}
.x17{left:484.093322pt;}
.x32{left:485.693333pt;}
.xa{left:490.173322pt;}
.x31{left:502.906667pt;}
.x7{left:539.293322pt;}
.x22{left:571.613322pt;}
.x18{left:574.973322pt;}
.x27{left:586.013322pt;}
.x1e{left:590.973322pt;}
.xc{left:597.893322pt;}
.x14{left:609.253322pt;}
.x1b{left:616.133322pt;}
.xd{left:619.973322pt;}
.x20{left:623.333322pt;}
.x44{left:631.013322pt;}
.x6{left:632.613322pt;}
.x3a{left:639.013322pt;}
.x2a{left:667.013322pt;}
.x24{left:699.333322pt;}
}




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