
    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_917d032dc0e77bf1967ad953.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_10481c33f38ce9c089c60bc9.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_ca03b9750547a457cc5bde87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_37b0cc5cc376c4ad19ec3046.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_341879e06f5639f365a89b0b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4580645312219bd7908d7102.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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(0.250228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250228,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.131308px;}
.ls10{letter-spacing:-0.069551px;}
.lsf{letter-spacing:-0.058279px;}
.ls2{letter-spacing:-0.025920px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.274607px;}
.ls7{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.350400px;}
.ls12{letter-spacing:0.864000px;}
.lsd{letter-spacing:5.904000px;}
.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;}
}
.ws6{word-spacing:-23.769120px;}
.ws5{word-spacing:-20.304000px;}
.ws7{word-spacing:-20.232000px;}
.ws0{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.800000px;}
.ws2{word-spacing:-19.584000px;}
.ws1{word-spacing:-19.152000px;}
.ws8{word-spacing:-13.496279px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-14.573760px;}
._2f{margin-left:-8.719920px;}
._2b{margin-left:-7.272000px;}
._30{margin-left:-6.174480px;}
._4{margin-left:-5.054400px;}
._2{margin-left:-3.927120px;}
._16{margin-left:-2.293200px;}
._0{margin-left:-1.104000px;}
._1{width:1.050000px;}
._3{width:2.302560px;}
._9{width:3.648000px;}
._8{width:5.016000px;}
._10{width:6.696000px;}
._a{width:7.704000px;}
._b{width:8.916000px;}
._f{width:10.344000px;}
._7{width:11.448000px;}
._6{width:13.104000px;}
._5{width:14.592000px;}
._c{width:16.128000px;}
._d{width:17.142000px;}
._e{width:18.588000px;}
._2c{width:21.062400px;}
._18{width:22.104000px;}
._19{width:23.317200px;}
._17{width:24.331200px;}
._12{width:26.112000px;}
._11{width:27.264000px;}
._26{width:28.322400px;}
._1f{width:29.341200px;}
._1e{width:30.936000px;}
._13{width:31.968000px;}
._14{width:33.096000px;}
._24{width:34.296000px;}
._1a{width:36.288000px;}
._1b{width:37.656000px;}
._25{width:38.888400px;}
._23{width:39.960000px;}
._15{width:41.256000px;}
._29{width:42.613200px;}
._28{width:43.992000px;}
._2a{width:45.109200px;}
._27{width:47.088000px;}
._22{width:51.984000px;}
._21{width:53.280000px;}
._1c{width:56.232000px;}
._2e{width:70.080000px;}
._2d{width:71.712000px;}
._20{width:89.280000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.718050px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:59.861949px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:4.125000px;}
.yb9{bottom:4.140000px;}
.ydc{bottom:4.155000px;}
.ybb{bottom:6.840000px;}
.y131{bottom:20.361397px;}
.ye1{bottom:24.825000px;}
.yb8{bottom:24.840000px;}
.ydb{bottom:24.855000px;}
.y130{bottom:38.708508px;}
.ye0{bottom:45.525000px;}
.yc5{bottom:45.540000px;}
.yda{bottom:45.555000px;}
.yd0{bottom:45.570000px;}
.yb6{bottom:46.260000px;}
.y129{bottom:62.631703px;}
.ydf{bottom:66.225000px;}
.yc4{bottom:66.240000px;}
.yd9{bottom:66.255000px;}
.ycf{bottom:66.270000px;}
.y134{bottom:85.475656px;}
.yde{bottom:86.925000px;}
.yd7{bottom:86.955000px;}
.yce{bottom:86.970000px;}
.yc3{bottom:86.985000px;}
.y12a{bottom:87.670114px;}
.yed{bottom:107.625000px;}
.yd6{bottom:107.655000px;}
.ycd{bottom:107.670000px;}
.yc2{bottom:107.685000px;}
.y133{bottom:112.600601px;}
.y12b{bottom:112.708525px;}
.yec{bottom:128.325000px;}
.yd5{bottom:128.355000px;}
.ycc{bottom:128.370000px;}
.yc1{bottom:128.385000px;}
.y2{bottom:131.436000px;}
.y12c{bottom:137.782911px;}
.y132{bottom:139.725547px;}
.yeb{bottom:149.025000px;}
.yd8{bottom:149.040000px;}
.yd4{bottom:149.055000px;}
.ycb{bottom:149.070000px;}
.yc0{bottom:149.085000px;}
.y12d{bottom:162.825819px;}
.yea{bottom:169.725000px;}
.yd2{bottom:169.740000px;}
.yca{bottom:169.770000px;}
.ybf{bottom:169.785000px;}
.y12e{bottom:187.903203px;}
.yc9{bottom:190.470000px;}
.ybe{bottom:190.485000px;}
.ydd{bottom:191.205000px;}
.y127{bottom:191.550000px;}
.y100{bottom:198.750000px;}
.y44{bottom:201.990000px;}
.y91{bottom:203.070000px;}
.y14b{bottom:207.750000px;}
.yc8{bottom:211.170000px;}
.ybd{bottom:211.185000px;}
.y126{bottom:212.250000px;}
.y12f{bottom:212.935618px;}
.yb4{bottom:216.930000px;}
.yff{bottom:219.450000px;}
.y43{bottom:222.690000px;}
.y90{bottom:223.770000px;}
.y14a{bottom:228.450000px;}
.yc7{bottom:231.870000px;}
.y125{bottom:232.950000px;}
.y168{bottom:239.430000px;}
.yfe{bottom:240.150000px;}
.y42{bottom:243.390000px;}
.y8f{bottom:244.470000px;}
.yb3{bottom:246.630000px;}
.y149{bottom:249.150000px;}
.ye9{bottom:252.570000px;}
.y124{bottom:253.650000px;}
.y6a{bottom:256.530000px;}
.y167{bottom:260.310000px;}
.y1d{bottom:260.670000px;}
.yfd{bottom:260.850000px;}
.y41{bottom:264.090000px;}
.y8e{bottom:265.170000px;}
.yb2{bottom:267.330000px;}
.ye8{bottom:273.270000px;}
.y123{bottom:274.350000px;}
.y69{bottom:277.230000px;}
.y148{bottom:278.850000px;}
.y1c{bottom:281.190000px;}
.yfc{bottom:281.550000px;}
.y8d{bottom:285.870000px;}
.yb1{bottom:288.075000px;}
.ye7{bottom:293.970000px;}
.y40{bottom:294.375000px;}
.y122{bottom:295.095000px;}
.y68{bottom:297.975000px;}
.y166{bottom:298.155000px;}
.y147{bottom:299.595000px;}
.y1b{bottom:301.935000px;}
.yfb{bottom:302.295000px;}
.y8c{bottom:306.615000px;}
.yb0{bottom:308.775000px;}
.ye6{bottom:314.670000px;}
.y121{bottom:315.795000px;}
.y67{bottom:318.675000px;}
.y165{bottom:318.855000px;}
.y146{bottom:320.295000px;}
.y1a{bottom:322.635000px;}
.y8b{bottom:327.135000px;}
.yaf{bottom:329.475000px;}
.yfa{bottom:332.535000px;}
.y3f{bottom:335.955000px;}
.y120{bottom:336.495000px;}
.yd3{bottom:336.840000px;}
.yd1{bottom:336.855000px;}
.y66{bottom:339.375000px;}
.y145{bottom:340.995000px;}
.y19{bottom:343.335000px;}
.y8a{bottom:347.835000px;}
.yae{bottom:350.175000px;}
.y164{bottom:356.295000px;}
.y3e{bottom:356.655000px;}
.y11f{bottom:357.195000px;}
.y65{bottom:360.075000px;}
.y144{bottom:361.695000px;}
.y18{bottom:364.035000px;}
.y89{bottom:368.535000px;}
.yad{bottom:370.875000px;}
.y163{bottom:377.175000px;}
.y3d{bottom:377.355000px;}
.y11e{bottom:377.895000px;}
.y64{bottom:380.775000px;}
.y143{bottom:382.395000px;}
.yf9{bottom:383.115000px;}
.y17{bottom:384.735000px;}
.y88{bottom:389.235000px;}
.y162{bottom:397.875000px;}
.y3c{bottom:398.055000px;}
.y11d{bottom:398.595000px;}
.yac{bottom:400.575000px;}
.y63{bottom:401.475000px;}
.y142{bottom:403.095000px;}
.yf8{bottom:403.815000px;}
.y16{bottom:405.435000px;}
.y87{bottom:409.935000px;}
.y3b{bottom:418.755000px;}
.y11c{bottom:419.295000px;}
.yab{bottom:421.275000px;}
.y62{bottom:422.175000px;}
.yf7{bottom:424.515000px;}
.y15{bottom:426.135000px;}
.y86{bottom:430.635000px;}
.y141{bottom:432.795000px;}
.y161{bottom:435.675000px;}
.y3a{bottom:439.455000px;}
.y11b{bottom:439.995000px;}
.yaa{bottom:441.975000px;}
.y61{bottom:442.875000px;}
.yf6{bottom:445.395000px;}
.y14{bottom:446.835000px;}
.y85{bottom:451.335000px;}
.y140{bottom:453.495000px;}
.y160{bottom:456.375000px;}
.y39{bottom:460.155000px;}
.y11a{bottom:460.695000px;}
.ya9{bottom:462.675000px;}
.y60{bottom:463.575000px;}
.yf5{bottom:465.915000px;}
.y13{bottom:467.355000px;}
.y84{bottom:472.035000px;}
.y13f{bottom:474.195000px;}
.y15f{bottom:476.895000px;}
.y38{bottom:480.855000px;}
.y119{bottom:481.395000px;}
.ya8{bottom:483.375000px;}
.y5f{bottom:484.275000px;}
.yf4{bottom:486.615000px;}
.y12{bottom:488.055000px;}
.y83{bottom:492.735000px;}
.y13e{bottom:494.895000px;}
.y15e{bottom:497.595000px;}
.y37{bottom:501.555000px;}
.y118{bottom:502.095000px;}
.ya7{bottom:504.075000px;}
.y5e{bottom:504.975000px;}
.yf3{bottom:507.495000px;}
.y11{bottom:508.755000px;}
.y82{bottom:513.435000px;}
.y36{bottom:522.255000px;}
.y117{bottom:522.795000px;}
.yc6{bottom:523.875000px;}
.ya6{bottom:524.775000px;}
.y5d{bottom:525.675000px;}
.y13d{bottom:525.855000px;}
.yf2{bottom:528.015000px;}
.y10{bottom:529.455000px;}
.y81{bottom:534.135000px;}
.y15d{bottom:535.575000px;}
.y35{bottom:542.955000px;}
.y116{bottom:543.495000px;}
.ya5{bottom:545.475000px;}
.y5c{bottom:546.375000px;}
.yf1{bottom:548.715000px;}
.yf{bottom:550.155000px;}
.y80{bottom:555.015000px;}
.y15c{bottom:556.095000px;}
.y34{bottom:563.655000px;}
.y115{bottom:564.195000px;}
.ya4{bottom:566.205000px;}
.y5b{bottom:567.105000px;}
.yf0{bottom:569.445000px;}
.y15b{bottom:576.645000px;}
.y13c{bottom:579.165000px;}
.y33{bottom:584.385000px;}
.y114{bottom:584.925000px;}
.y7f{bottom:586.005000px;}
.ya3{bottom:586.905000px;}
.y5a{bottom:587.805000px;}
.ye{bottom:587.985000px;}
.y13b{bottom:599.865000px;}
.yef{bottom:600.585000px;}
.y32{bottom:605.085000px;}
.y113{bottom:605.625000px;}
.ya2{bottom:607.605000px;}
.y59{bottom:608.505000px;}
.y15a{bottom:614.625000px;}
.y13a{bottom:620.565000px;}
.yd{bottom:625.605000px;}
.y31{bottom:625.785000px;}
.y112{bottom:626.325000px;}
.ya1{bottom:628.305000px;}
.y58{bottom:629.205000px;}
.y7e{bottom:630.285000px;}
.y159{bottom:635.325000px;}
.y139{bottom:641.265000px;}
.y30{bottom:646.485000px;}
.y111{bottom:647.025000px;}
.y57{bottom:649.905000px;}
.y7d{bottom:650.985000px;}
.yee{bottom:653.865000px;}
.ya0{bottom:658.005000px;}
.y138{bottom:661.965000px;}
.yc{bottom:663.405000px;}
.y2f{bottom:667.185000px;}
.y110{bottom:667.725000px;}
.y56{bottom:670.605000px;}
.ye5{bottom:671.160000px;}
.y7c{bottom:671.685000px;}
.y158{bottom:672.945000px;}
.y9f{bottom:678.705000px;}
.y137{bottom:682.665000px;}
.y2e{bottom:687.885000px;}
.y10f{bottom:688.425000px;}
.y7b{bottom:692.385000px;}
.y157{bottom:693.825000px;}
.y9e{bottom:699.405000px;}
.yb{bottom:702.645000px;}
.y136{bottom:703.365000px;}
.y2d{bottom:708.585000px;}
.y10e{bottom:709.125000px;}
.y7a{bottom:713.085000px;}
.y156{bottom:714.525000px;}
.y55{bottom:717.945000px;}
.y9d{bottom:720.105000px;}
.ya{bottom:723.705000px;}
.y135{bottom:729.105000px;}
.y2c{bottom:729.285000px;}
.y10d{bottom:729.825000px;}
.y79{bottom:733.785000px;}
.y128{bottom:734.491006px;}
.y155{bottom:734.865000px;}
.y9c{bottom:740.805000px;}
.y9{bottom:744.225000px;}
.y2b{bottom:749.985000px;}
.y10c{bottom:750.525000px;}
.y78{bottom:754.485000px;}
.y54{bottom:759.525000px;}
.y8{bottom:764.925000px;}
.y9b{bottom:770.505000px;}
.y2a{bottom:770.685000px;}
.y10b{bottom:771.225000px;}
.y154{bottom:772.845000px;}
.ybc{bottom:773.025000px;}
.y77{bottom:775.185000px;}
.y53{bottom:780.225000px;}
.y9a{bottom:791.205000px;}
.y29{bottom:791.385000px;}
.y10a{bottom:791.925000px;}
.y76{bottom:795.885000px;}
.y52{bottom:800.925000px;}
.y7{bottom:808.845000px;}
.y153{bottom:810.645000px;}
.y99{bottom:811.905000px;}
.y28{bottom:812.085000px;}
.y109{bottom:812.625000px;}
.y75{bottom:816.405000px;}
.y51{bottom:821.625000px;}
.y152{bottom:830.985000px;}
.y98{bottom:832.605000px;}
.y27{bottom:832.785000px;}
.y108{bottom:833.325000px;}
.y6{bottom:834.045000px;}
.y50{bottom:842.325000px;}
.y97{bottom:853.350000px;}
.y26{bottom:853.530000px;}
.y107{bottom:854.070000px;}
.y74{bottom:854.250000px;}
.y5{bottom:859.290000px;}
.y4f{bottom:863.070000px;}
.y151{bottom:869.010000px;}
.y96{bottom:874.050000px;}
.y25{bottom:874.230000px;}
.y106{bottom:874.770000px;}
.y73{bottom:874.950000px;}
.y4e{bottom:883.770000px;}
.y4{bottom:889.170000px;}
.y150{bottom:889.710000px;}
.y95{bottom:894.750000px;}
.y24{bottom:894.930000px;}
.y105{bottom:895.470000px;}
.y72{bottom:895.650000px;}
.y4d{bottom:904.470000px;}
.y14f{bottom:910.230000px;}
.y3{bottom:911.490000px;}
.y94{bottom:915.450000px;}
.y23{bottom:915.630000px;}
.y104{bottom:916.170000px;}
.y71{bottom:916.350000px;}
.y4c{bottom:925.170000px;}
.y93{bottom:936.150000px;}
.y22{bottom:936.330000px;}
.y103{bottom:936.870000px;}
.y70{bottom:937.050000px;}
.y4b{bottom:945.870000px;}
.y14e{bottom:948.210000px;}
.y21{bottom:957.030000px;}
.y102{bottom:957.570000px;}
.y6f{bottom:957.750000px;}
.y92{bottom:966.390000px;}
.y4a{bottom:966.570000px;}
.y14d{bottom:968.910000px;}
.y20{bottom:977.730000px;}
.y101{bottom:978.270000px;}
.y6e{bottom:978.450000px;}
.y49{bottom:987.270000px;}
.y1f{bottom:998.430000px;}
.y6d{bottom:999.150000px;}
.yba{bottom:1001.490000px;}
.ye4{bottom:1003.095000px;}
.ye3{bottom:1003.110000px;}
.y48{bottom:1007.970000px;}
.y14c{bottom:1016.790000px;}
.y6c{bottom:1019.850000px;}
.yb5{bottom:1023.090000px;}
.y47{bottom:1028.670000px;}
.yb7{bottom:1044.510000px;}
.y1e{bottom:1046.490000px;}
.y46{bottom:1049.370000px;}
.y6b{bottom:1067.190000px;}
.y45{bottom:1070.070000px;}
.y1{bottom:1104.810000px;}
.h8{height:20.685000px;}
.h7{height:41.385000px;}
.h18{height:49.249895px;}
.h19{height:49.368570px;}
.h1a{height:53.062725px;}
.h9{height:62.327813px;}
.h6{height:62.805000px;}
.h16{height:64.546875px;}
.h3{height:75.093750px;}
.h4{height:81.101250px;}
.h13{height:82.785000px;}
.h11{height:82.791000px;}
.h12{height:82.800000px;}
.h2{height:87.859687px;}
.h1d{height:99.829872px;}
.h5{height:99.874688px;}
.h1c{height:126.810919px;}
.hf{height:144.921000px;}
.h10{height:144.922500px;}
.h1b{height:153.971839px;}
.hd{height:186.285000px;}
.he{height:186.300000px;}
.ha{height:227.730000px;}
.h17{height:233.835737px;}
.hb{height:248.430000px;}
.hc{height:248.445000px;}
.h14{height:331.215000px;}
.h15{height:331.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:28.986064px;}
.w11{width:37.987944px;}
.w2{width:60.471000px;}
.wb{width:60.480000px;}
.w12{width:78.856484px;}
.wf{width:91.999228px;}
.we{width:92.179266px;}
.wc{width:137.541000px;}
.w6{width:137.542500px;}
.w7{width:148.135500px;}
.w8{width:148.140000px;}
.w4{width:148.176000px;}
.w9{width:148.185000px;}
.w5{width:161.475000px;}
.wa{width:161.490000px;}
.w3{width:286.395000px;}
.wd{width:607.626992px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.731000px;}
.x1b{left:9.361957px;}
.xf{left:16.455444px;}
.x11{left:18.291823px;}
.xe{left:24.053034px;}
.x12{left:42.236828px;}
.x6{left:119.925000px;}
.x1{left:127.656000px;}
.xd{left:133.681232px;}
.x3{left:138.456000px;}
.x10{left:161.407033px;}
.xc{left:170.130000px;}
.x8{left:181.125000px;}
.x5{left:191.550000px;}
.x4{left:210.810000px;}
.x13{left:217.758810px;}
.x14{left:273.930549px;}
.xb{left:319.395000px;}
.x15{left:330.282325px;}
.x16{left:386.634101px;}
.x1d{left:425.595000px;}
.x2{left:430.455000px;}
.x17{left:442.985878px;}
.x9{left:468.255000px;}
.x18{left:499.157617px;}
.x19{left:555.509393px;}
.xa{left:617.160000px;}
.x1a{left:656.330458px;}
.x1c{left:746.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.116718pt;}
.ls10{letter-spacing:-0.061823pt;}
.lsf{letter-spacing:-0.051804pt;}
.ls2{letter-spacing:-0.023040pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.244095pt;}
.ls7{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.311467pt;}
.ls12{letter-spacing:0.768000pt;}
.lsd{letter-spacing:5.248000pt;}
.ws6{word-spacing:-21.128107pt;}
.ws5{word-spacing:-18.048000pt;}
.ws7{word-spacing:-17.984000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.600000pt;}
.ws2{word-spacing:-17.408000pt;}
.ws1{word-spacing:-17.024000pt;}
.ws8{word-spacing:-11.996693pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-12.954453pt;}
._2f{margin-left:-7.751040pt;}
._2b{margin-left:-6.464000pt;}
._30{margin-left:-5.488427pt;}
._4{margin-left:-4.492800pt;}
._2{margin-left:-3.490773pt;}
._16{margin-left:-2.038400pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.933333pt;}
._3{width:2.046720pt;}
._9{width:3.242667pt;}
._8{width:4.458667pt;}
._10{width:5.952000pt;}
._a{width:6.848000pt;}
._b{width:7.925333pt;}
._f{width:9.194667pt;}
._7{width:10.176000pt;}
._6{width:11.648000pt;}
._5{width:12.970667pt;}
._c{width:14.336000pt;}
._d{width:15.237333pt;}
._e{width:16.522667pt;}
._2c{width:18.722133pt;}
._18{width:19.648000pt;}
._19{width:20.726400pt;}
._17{width:21.627733pt;}
._12{width:23.210667pt;}
._11{width:24.234667pt;}
._26{width:25.175467pt;}
._1f{width:26.081067pt;}
._1e{width:27.498667pt;}
._13{width:28.416000pt;}
._14{width:29.418667pt;}
._24{width:30.485333pt;}
._1a{width:32.256000pt;}
._1b{width:33.472000pt;}
._25{width:34.567467pt;}
._23{width:35.520000pt;}
._15{width:36.672000pt;}
._29{width:37.878400pt;}
._28{width:39.104000pt;}
._2a{width:40.097067pt;}
._27{width:41.856000pt;}
._22{width:46.208000pt;}
._21{width:47.360000pt;}
._1c{width:49.984000pt;}
._2e{width:62.293333pt;}
._2d{width:63.744000pt;}
._20{width:79.360000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.082711pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:53.210621pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.666667pt;}
.yb9{bottom:3.680000pt;}
.ydc{bottom:3.693333pt;}
.ybb{bottom:6.080000pt;}
.y131{bottom:18.099019pt;}
.ye1{bottom:22.066667pt;}
.yb8{bottom:22.080000pt;}
.ydb{bottom:22.093333pt;}
.y130{bottom:34.407563pt;}
.ye0{bottom:40.466667pt;}
.yc5{bottom:40.480000pt;}
.yda{bottom:40.493333pt;}
.yd0{bottom:40.506667pt;}
.yb6{bottom:41.120000pt;}
.y129{bottom:55.672625pt;}
.ydf{bottom:58.866667pt;}
.yc4{bottom:58.880000pt;}
.yd9{bottom:58.893333pt;}
.ycf{bottom:58.906667pt;}
.y134{bottom:75.978361pt;}
.yde{bottom:77.266667pt;}
.yd7{bottom:77.293333pt;}
.yce{bottom:77.306667pt;}
.yc3{bottom:77.320000pt;}
.y12a{bottom:77.928990pt;}
.yed{bottom:95.666667pt;}
.yd6{bottom:95.693333pt;}
.ycd{bottom:95.706667pt;}
.yc2{bottom:95.720000pt;}
.y133{bottom:100.089423pt;}
.y12b{bottom:100.185356pt;}
.yec{bottom:114.066667pt;}
.yd5{bottom:114.093333pt;}
.ycc{bottom:114.106667pt;}
.yc1{bottom:114.120000pt;}
.y2{bottom:116.832000pt;}
.y12c{bottom:122.473699pt;}
.y132{bottom:124.200486pt;}
.yeb{bottom:132.466667pt;}
.yd8{bottom:132.480000pt;}
.yd4{bottom:132.493333pt;}
.ycb{bottom:132.506667pt;}
.yc0{bottom:132.520000pt;}
.y12d{bottom:144.734062pt;}
.yea{bottom:150.866667pt;}
.yd2{bottom:150.880000pt;}
.yca{bottom:150.906667pt;}
.ybf{bottom:150.920000pt;}
.y12e{bottom:167.025069pt;}
.yc9{bottom:169.306667pt;}
.ybe{bottom:169.320000pt;}
.ydd{bottom:169.960000pt;}
.y127{bottom:170.266667pt;}
.y100{bottom:176.666667pt;}
.y44{bottom:179.546667pt;}
.y91{bottom:180.506667pt;}
.y14b{bottom:184.666667pt;}
.yc8{bottom:187.706667pt;}
.ybd{bottom:187.720000pt;}
.y126{bottom:188.666667pt;}
.y12f{bottom:189.276105pt;}
.yb4{bottom:192.826667pt;}
.yff{bottom:195.066667pt;}
.y43{bottom:197.946667pt;}
.y90{bottom:198.906667pt;}
.y14a{bottom:203.066667pt;}
.yc7{bottom:206.106667pt;}
.y125{bottom:207.066667pt;}
.y168{bottom:212.826667pt;}
.yfe{bottom:213.466667pt;}
.y42{bottom:216.346667pt;}
.y8f{bottom:217.306667pt;}
.yb3{bottom:219.226667pt;}
.y149{bottom:221.466667pt;}
.ye9{bottom:224.506667pt;}
.y124{bottom:225.466667pt;}
.y6a{bottom:228.026667pt;}
.y167{bottom:231.386667pt;}
.y1d{bottom:231.706667pt;}
.yfd{bottom:231.866667pt;}
.y41{bottom:234.746667pt;}
.y8e{bottom:235.706667pt;}
.yb2{bottom:237.626667pt;}
.ye8{bottom:242.906667pt;}
.y123{bottom:243.866667pt;}
.y69{bottom:246.426667pt;}
.y148{bottom:247.866667pt;}
.y1c{bottom:249.946667pt;}
.yfc{bottom:250.266667pt;}
.y8d{bottom:254.106667pt;}
.yb1{bottom:256.066667pt;}
.ye7{bottom:261.306667pt;}
.y40{bottom:261.666667pt;}
.y122{bottom:262.306667pt;}
.y68{bottom:264.866667pt;}
.y166{bottom:265.026667pt;}
.y147{bottom:266.306667pt;}
.y1b{bottom:268.386667pt;}
.yfb{bottom:268.706667pt;}
.y8c{bottom:272.546667pt;}
.yb0{bottom:274.466667pt;}
.ye6{bottom:279.706667pt;}
.y121{bottom:280.706667pt;}
.y67{bottom:283.266667pt;}
.y165{bottom:283.426667pt;}
.y146{bottom:284.706667pt;}
.y1a{bottom:286.786667pt;}
.y8b{bottom:290.786667pt;}
.yaf{bottom:292.866667pt;}
.yfa{bottom:295.586667pt;}
.y3f{bottom:298.626667pt;}
.y120{bottom:299.106667pt;}
.yd3{bottom:299.413333pt;}
.yd1{bottom:299.426667pt;}
.y66{bottom:301.666667pt;}
.y145{bottom:303.106667pt;}
.y19{bottom:305.186667pt;}
.y8a{bottom:309.186667pt;}
.yae{bottom:311.266667pt;}
.y164{bottom:316.706667pt;}
.y3e{bottom:317.026667pt;}
.y11f{bottom:317.506667pt;}
.y65{bottom:320.066667pt;}
.y144{bottom:321.506667pt;}
.y18{bottom:323.586667pt;}
.y89{bottom:327.586667pt;}
.yad{bottom:329.666667pt;}
.y163{bottom:335.266667pt;}
.y3d{bottom:335.426667pt;}
.y11e{bottom:335.906667pt;}
.y64{bottom:338.466667pt;}
.y143{bottom:339.906667pt;}
.yf9{bottom:340.546667pt;}
.y17{bottom:341.986667pt;}
.y88{bottom:345.986667pt;}
.y162{bottom:353.666667pt;}
.y3c{bottom:353.826667pt;}
.y11d{bottom:354.306667pt;}
.yac{bottom:356.066667pt;}
.y63{bottom:356.866667pt;}
.y142{bottom:358.306667pt;}
.yf8{bottom:358.946667pt;}
.y16{bottom:360.386667pt;}
.y87{bottom:364.386667pt;}
.y3b{bottom:372.226667pt;}
.y11c{bottom:372.706667pt;}
.yab{bottom:374.466667pt;}
.y62{bottom:375.266667pt;}
.yf7{bottom:377.346667pt;}
.y15{bottom:378.786667pt;}
.y86{bottom:382.786667pt;}
.y141{bottom:384.706667pt;}
.y161{bottom:387.266667pt;}
.y3a{bottom:390.626667pt;}
.y11b{bottom:391.106667pt;}
.yaa{bottom:392.866667pt;}
.y61{bottom:393.666667pt;}
.yf6{bottom:395.906667pt;}
.y14{bottom:397.186667pt;}
.y85{bottom:401.186667pt;}
.y140{bottom:403.106667pt;}
.y160{bottom:405.666667pt;}
.y39{bottom:409.026667pt;}
.y11a{bottom:409.506667pt;}
.ya9{bottom:411.266667pt;}
.y60{bottom:412.066667pt;}
.yf5{bottom:414.146667pt;}
.y13{bottom:415.426667pt;}
.y84{bottom:419.586667pt;}
.y13f{bottom:421.506667pt;}
.y15f{bottom:423.906667pt;}
.y38{bottom:427.426667pt;}
.y119{bottom:427.906667pt;}
.ya8{bottom:429.666667pt;}
.y5f{bottom:430.466667pt;}
.yf4{bottom:432.546667pt;}
.y12{bottom:433.826667pt;}
.y83{bottom:437.986667pt;}
.y13e{bottom:439.906667pt;}
.y15e{bottom:442.306667pt;}
.y37{bottom:445.826667pt;}
.y118{bottom:446.306667pt;}
.ya7{bottom:448.066667pt;}
.y5e{bottom:448.866667pt;}
.yf3{bottom:451.106667pt;}
.y11{bottom:452.226667pt;}
.y82{bottom:456.386667pt;}
.y36{bottom:464.226667pt;}
.y117{bottom:464.706667pt;}
.yc6{bottom:465.666667pt;}
.ya6{bottom:466.466667pt;}
.y5d{bottom:467.266667pt;}
.y13d{bottom:467.426667pt;}
.yf2{bottom:469.346667pt;}
.y10{bottom:470.626667pt;}
.y81{bottom:474.786667pt;}
.y15d{bottom:476.066667pt;}
.y35{bottom:482.626667pt;}
.y116{bottom:483.106667pt;}
.ya5{bottom:484.866667pt;}
.y5c{bottom:485.666667pt;}
.yf1{bottom:487.746667pt;}
.yf{bottom:489.026667pt;}
.y80{bottom:493.346667pt;}
.y15c{bottom:494.306667pt;}
.y34{bottom:501.026667pt;}
.y115{bottom:501.506667pt;}
.ya4{bottom:503.293333pt;}
.y5b{bottom:504.093333pt;}
.yf0{bottom:506.173333pt;}
.y15b{bottom:512.573333pt;}
.y13c{bottom:514.813333pt;}
.y33{bottom:519.453333pt;}
.y114{bottom:519.933333pt;}
.y7f{bottom:520.893333pt;}
.ya3{bottom:521.693333pt;}
.y5a{bottom:522.493333pt;}
.ye{bottom:522.653333pt;}
.y13b{bottom:533.213333pt;}
.yef{bottom:533.853333pt;}
.y32{bottom:537.853333pt;}
.y113{bottom:538.333333pt;}
.ya2{bottom:540.093333pt;}
.y59{bottom:540.893333pt;}
.y15a{bottom:546.333333pt;}
.y13a{bottom:551.613333pt;}
.yd{bottom:556.093333pt;}
.y31{bottom:556.253333pt;}
.y112{bottom:556.733333pt;}
.ya1{bottom:558.493333pt;}
.y58{bottom:559.293333pt;}
.y7e{bottom:560.253333pt;}
.y159{bottom:564.733333pt;}
.y139{bottom:570.013333pt;}
.y30{bottom:574.653333pt;}
.y111{bottom:575.133333pt;}
.y57{bottom:577.693333pt;}
.y7d{bottom:578.653333pt;}
.yee{bottom:581.213333pt;}
.ya0{bottom:584.893333pt;}
.y138{bottom:588.413333pt;}
.yc{bottom:589.693333pt;}
.y2f{bottom:593.053333pt;}
.y110{bottom:593.533333pt;}
.y56{bottom:596.093333pt;}
.ye5{bottom:596.586667pt;}
.y7c{bottom:597.053333pt;}
.y158{bottom:598.173333pt;}
.y9f{bottom:603.293333pt;}
.y137{bottom:606.813333pt;}
.y2e{bottom:611.453333pt;}
.y10f{bottom:611.933333pt;}
.y7b{bottom:615.453333pt;}
.y157{bottom:616.733333pt;}
.y9e{bottom:621.693333pt;}
.yb{bottom:624.573333pt;}
.y136{bottom:625.213333pt;}
.y2d{bottom:629.853333pt;}
.y10e{bottom:630.333333pt;}
.y7a{bottom:633.853333pt;}
.y156{bottom:635.133333pt;}
.y55{bottom:638.173333pt;}
.y9d{bottom:640.093333pt;}
.ya{bottom:643.293333pt;}
.y135{bottom:648.093333pt;}
.y2c{bottom:648.253333pt;}
.y10d{bottom:648.733333pt;}
.y79{bottom:652.253333pt;}
.y128{bottom:652.880894pt;}
.y155{bottom:653.213333pt;}
.y9c{bottom:658.493333pt;}
.y9{bottom:661.533333pt;}
.y2b{bottom:666.653333pt;}
.y10c{bottom:667.133333pt;}
.y78{bottom:670.653333pt;}
.y54{bottom:675.133333pt;}
.y8{bottom:679.933333pt;}
.y9b{bottom:684.893333pt;}
.y2a{bottom:685.053333pt;}
.y10b{bottom:685.533333pt;}
.y154{bottom:686.973333pt;}
.ybc{bottom:687.133333pt;}
.y77{bottom:689.053333pt;}
.y53{bottom:693.533333pt;}
.y9a{bottom:703.293333pt;}
.y29{bottom:703.453333pt;}
.y10a{bottom:703.933333pt;}
.y76{bottom:707.453333pt;}
.y52{bottom:711.933333pt;}
.y7{bottom:718.973333pt;}
.y153{bottom:720.573333pt;}
.y99{bottom:721.693333pt;}
.y28{bottom:721.853333pt;}
.y109{bottom:722.333333pt;}
.y75{bottom:725.693333pt;}
.y51{bottom:730.333333pt;}
.y152{bottom:738.653333pt;}
.y98{bottom:740.093333pt;}
.y27{bottom:740.253333pt;}
.y108{bottom:740.733333pt;}
.y6{bottom:741.373333pt;}
.y50{bottom:748.733333pt;}
.y97{bottom:758.533333pt;}
.y26{bottom:758.693333pt;}
.y107{bottom:759.173333pt;}
.y74{bottom:759.333333pt;}
.y5{bottom:763.813333pt;}
.y4f{bottom:767.173333pt;}
.y151{bottom:772.453333pt;}
.y96{bottom:776.933333pt;}
.y25{bottom:777.093333pt;}
.y106{bottom:777.573333pt;}
.y73{bottom:777.733333pt;}
.y4e{bottom:785.573333pt;}
.y4{bottom:790.373333pt;}
.y150{bottom:790.853333pt;}
.y95{bottom:795.333333pt;}
.y24{bottom:795.493333pt;}
.y105{bottom:795.973333pt;}
.y72{bottom:796.133333pt;}
.y4d{bottom:803.973333pt;}
.y14f{bottom:809.093333pt;}
.y3{bottom:810.213333pt;}
.y94{bottom:813.733333pt;}
.y23{bottom:813.893333pt;}
.y104{bottom:814.373333pt;}
.y71{bottom:814.533333pt;}
.y4c{bottom:822.373333pt;}
.y93{bottom:832.133333pt;}
.y22{bottom:832.293333pt;}
.y103{bottom:832.773333pt;}
.y70{bottom:832.933333pt;}
.y4b{bottom:840.773333pt;}
.y14e{bottom:842.853333pt;}
.y21{bottom:850.693333pt;}
.y102{bottom:851.173333pt;}
.y6f{bottom:851.333333pt;}
.y92{bottom:859.013333pt;}
.y4a{bottom:859.173333pt;}
.y14d{bottom:861.253333pt;}
.y20{bottom:869.093333pt;}
.y101{bottom:869.573333pt;}
.y6e{bottom:869.733333pt;}
.y49{bottom:877.573333pt;}
.y1f{bottom:887.493333pt;}
.y6d{bottom:888.133333pt;}
.yba{bottom:890.213333pt;}
.ye4{bottom:891.640000pt;}
.ye3{bottom:891.653333pt;}
.y48{bottom:895.973333pt;}
.y14c{bottom:903.813333pt;}
.y6c{bottom:906.533333pt;}
.yb5{bottom:909.413333pt;}
.y47{bottom:914.373333pt;}
.yb7{bottom:928.453333pt;}
.y1e{bottom:930.213333pt;}
.y46{bottom:932.773333pt;}
.y6b{bottom:948.613333pt;}
.y45{bottom:951.173333pt;}
.y1{bottom:982.053333pt;}
.h8{height:18.386667pt;}
.h7{height:36.786667pt;}
.h18{height:43.777685pt;}
.h19{height:43.883173pt;}
.h1a{height:47.166867pt;}
.h9{height:55.402500pt;}
.h6{height:55.826667pt;}
.h16{height:57.375000pt;}
.h3{height:66.750000pt;}
.h4{height:72.090000pt;}
.h13{height:73.586667pt;}
.h11{height:73.592000pt;}
.h12{height:73.600000pt;}
.h2{height:78.097500pt;}
.h1d{height:88.737664pt;}
.h5{height:88.777500pt;}
.h1c{height:112.720817pt;}
.hf{height:128.818667pt;}
.h10{height:128.820000pt;}
.h1b{height:136.863857pt;}
.hd{height:165.586667pt;}
.he{height:165.600000pt;}
.ha{height:202.426667pt;}
.h17{height:207.853988pt;}
.hb{height:220.826667pt;}
.hc{height:220.840000pt;}
.h14{height:294.413333pt;}
.h15{height:294.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:25.765390pt;}
.w11{width:33.767061pt;}
.w2{width:53.752000pt;}
.wb{width:53.760000pt;}
.w12{width:70.094652pt;}
.wf{width:81.777092pt;}
.we{width:81.937125pt;}
.wc{width:122.258667pt;}
.w6{width:122.260000pt;}
.w7{width:131.676000pt;}
.w8{width:131.680000pt;}
.w4{width:131.712000pt;}
.w9{width:131.720000pt;}
.w5{width:143.533333pt;}
.wa{width:143.546667pt;}
.w3{width:254.573333pt;}
.wd{width:540.112882pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.872000pt;}
.x1b{left:8.321740pt;}
.xf{left:14.627061pt;}
.x11{left:16.259398pt;}
.xe{left:21.380474pt;}
.x12{left:37.543847pt;}
.x6{left:106.600000pt;}
.x1{left:113.472000pt;}
.xd{left:118.827762pt;}
.x3{left:123.072000pt;}
.x10{left:143.472919pt;}
.xc{left:151.226667pt;}
.x8{left:161.000000pt;}
.x5{left:170.266667pt;}
.x4{left:187.386667pt;}
.x13{left:193.563386pt;}
.x14{left:243.493821pt;}
.xb{left:283.906667pt;}
.x15{left:293.584289pt;}
.x16{left:343.674757pt;}
.x1d{left:378.306667pt;}
.x2{left:382.626667pt;}
.x17{left:393.765225pt;}
.x9{left:416.226667pt;}
.x18{left:443.695659pt;}
.x19{left:493.786127pt;}
.xa{left:548.586667pt;}
.x1a{left:583.404852pt;}
.x1c{left:663.813333pt;}
}




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