
    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_910441e2226e91245a0d06d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_2270e2ecfb0774bde64a3f6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_5b5755110a069722c2f2d890.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_7af2e8f3169c41fb1c314883.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d62f9f291c49d4e8fc7494dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.v2{vertical-align:-27.360009px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360009px;}
.v3{vertical-align:41.759996px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.059908px;}
.ls9{letter-spacing:0.286203px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.lsd{letter-spacing:34.055251px;}
.ls8{letter-spacing:64.085852px;}
.lsa{letter-spacing:116.639315px;}
.ls4{letter-spacing:156.239328px;}
.ls5{letter-spacing:250.559288px;}
.ls6{letter-spacing:282.239328px;}
.ls7{letter-spacing:382.319355px;}
.lsb{letter-spacing:391.679364px;}
.ls3{letter-spacing:410.399310px;}
.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:-59.762250px;}
.ws1{word-spacing:-18.000676px;}
.ws0{word-spacing:-16.554143px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-8.483662px;}
._7{margin-left:-7.423240px;}
._6{margin-left:-6.137288px;}
._4{margin-left:-5.040189px;}
._5{margin-left:-3.488464px;}
._2{margin-left:-1.549051px;}
._0{width:1.005144px;}
._1{width:2.238474px;}
.fc2{color:rgb(11,87,208);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs3{font-size:59.762250px;}
.fs1{font-size:72.002705px;}
.fs4{font-size:81.363150px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y84{bottom:2.520057px;}
.y69{bottom:3.959953px;}
.y40{bottom:3.959988px;}
.y2a{bottom:3.959996px;}
.y6b{bottom:3.960004px;}
.y72{bottom:3.960021px;}
.y36{bottom:3.960023px;}
.y13e{bottom:92.340088px;}
.ye5{bottom:97.380066px;}
.y116{bottom:101.340088px;}
.y15d{bottom:103.860077px;}
.y184{bottom:109.080093px;}
.y27{bottom:109.620072px;}
.y13d{bottom:113.040047px;}
.ye4{bottom:117.900055px;}
.y115{bottom:122.040047px;}
.y15c{bottom:124.560036px;}
.yc6{bottom:128.520058px;}
.y183{bottom:129.780052px;}
.y26{bottom:130.320099px;}
.y13c{bottom:133.740074px;}
.ye3{bottom:138.600083px;}
.ya8{bottom:140.400055px;}
.y114{bottom:142.740074px;}
.y15b{bottom:145.260064px;}
.y182{bottom:150.480079px;}
.y25{bottom:151.020058px;}
.y13b{bottom:154.440033px;}
.y8c{bottom:156.240074px;}
.yc5{bottom:158.220085px;}
.ye2{bottom:159.300041px;}
.y68{bottom:161.100083px;}
.y113{bottom:163.440033px;}
.ya7{bottom:165.060036px;}
.y15a{bottom:165.960091px;}
.y181{bottom:171.180039px;}
.y13a{bottom:175.140060px;}
.yc4{bottom:178.920043px;}
.y24{bottom:180.720085px;}
.y112{bottom:184.140060px;}
.y66{bottom:185.760064px;}
.y8b{bottom:185.940033px;}
.y159{bottom:186.660049px;}
.ye1{bottom:189.000068px;}
.y139{bottom:195.840088px;}
.ya6{bottom:196.020058px;}
.yc3{bottom:199.620072px;}
.y180{bottom:200.880066px;}
.y111{bottom:204.840088px;}
.y65{bottom:206.460091px;}
.y158{bottom:207.360077px;}
.ye0{bottom:209.700096px;}
.y23{bottom:210.420043px;}
.y138{bottom:216.540047px;}
.yc2{bottom:220.320099px;}
.y8a{bottom:224.640060px;}
.y110{bottom:225.540047px;}
.y64{bottom:227.160049px;}
.y157{bottom:228.060036px;}
.y17f{bottom:230.580093px;}
.y137{bottom:237.240074px;}
.ydf{bottom:239.400055px;}
.y22{bottom:240.120072px;}
.yc1{bottom:241.020058px;}
.y10f{bottom:246.240074px;}
.y63{bottom:247.860077px;}
.y156{bottom:248.760064px;}
.y17e{bottom:251.280052px;}
.y136{bottom:257.940033px;}
.yc0{bottom:261.720085px;}
.y89{bottom:263.340088px;}
.y10e{bottom:266.940033px;}
.y67{bottom:268.560036px;}
.yde{bottom:269.100083px;}
.y17d{bottom:271.980079px;}
.y135{bottom:278.640060px;}
.y21{bottom:278.820099px;}
.ybf{bottom:282.420043px;}
.ya5{bottom:287.100083px;}
.y10d{bottom:287.640060px;}
.ydd{bottom:289.800041px;}
.y155{bottom:290.520058px;}
.ya4{bottom:291.060036px;}
.y17c{bottom:292.680039px;}
.y134{bottom:299.340088px;}
.y20{bottom:299.520058px;}
.ya2{bottom:301.320099px;}
.y88{bottom:302.040047px;}
.y5d{bottom:307.800041px;}
.y10c{bottom:308.340088px;}
.ydc{bottom:310.500068px;}
.y154{bottom:311.220085px;}
.ya3{bottom:311.760064px;}
.ybe{bottom:312.120072px;}
.y17b{bottom:313.380066px;}
.y133{bottom:320.040047px;}
.y1f{bottom:320.220085px;}
.y62{bottom:322.020058px;}
.y87{bottom:322.740074px;}
.y10b{bottom:329.040047px;}
.ydb{bottom:331.200096px;}
.y153{bottom:331.920043px;}
.y5b{bottom:332.460091px;}
.y132{bottom:340.740074px;}
.y1e{bottom:340.920043px;}
.y61{bottom:342.720085px;}
.y17a{bottom:343.080093px;}
.y86{bottom:343.440033px;}
.ybd{bottom:346.500068px;}
.y10a{bottom:349.740074px;}
.yda{bottom:351.900055px;}
.y152{bottom:352.620072px;}
.y5a{bottom:353.160049px;}
.y131{bottom:361.440033px;}
.y60{bottom:363.420043px;}
.y85{bottom:364.140060px;}
.ya1{bottom:365.400055px;}
.y109{bottom:370.440033px;}
.yd9{bottom:372.600083px;}
.y179{bottom:372.780052px;}
.y151{bottom:373.320099px;}
.y59{bottom:373.860077px;}
.ybc{bottom:380.700096px;}
.y130{bottom:382.140060px;}
.y1d{bottom:382.500068px;}
.y5f{bottom:384.120072px;}
.ya0{bottom:386.100083px;}
.y108{bottom:391.140060px;}
.y83{bottom:393.300041px;}
.y178{bottom:393.480079px;}
.y150{bottom:394.020058px;}
.y58{bottom:394.560036px;}
.ybb{bottom:401.400055px;}
.y12f{bottom:402.840088px;}
.y5e{bottom:404.820099px;}
.y9f{bottom:406.800041px;}
.y107{bottom:411.840088px;}
.yd8{bottom:414.000068px;}
.y177{bottom:414.180039px;}
.y14f{bottom:414.720085px;}
.y5c{bottom:415.260064px;}
.y81{bottom:417.960091px;}
.yba{bottom:422.100083px;}
.y12e{bottom:423.540047px;}
.y1c{bottom:424.260064px;}
.y106{bottom:432.540047px;}
.yd7{bottom:434.700096px;}
.y176{bottom:434.880066px;}
.y14e{bottom:435.420043px;}
.y9e{bottom:436.500068px;}
.y80{bottom:438.660049px;}
.yb9{bottom:442.800041px;}
.y12d{bottom:444.240074px;}
.y1b{bottom:444.960091px;}
.y105{bottom:453.240074px;}
.y57{bottom:454.500068px;}
.y175{bottom:455.580093px;}
.y14d{bottom:456.120072px;}
.y56{bottom:458.460091px;}
.y7f{bottom:459.360077px;}
.yb8{bottom:463.500068px;}
.yd6{bottom:464.400055px;}
.y12c{bottom:464.940033px;}
.y1a{bottom:465.660049px;}
.y9d{bottom:466.200096px;}
.y104{bottom:473.940033px;}
.y174{bottom:476.280052px;}
.y14c{bottom:476.640060px;}
.y82{bottom:480.060036px;}
.yb7{bottom:484.200096px;}
.yd5{bottom:485.100083px;}
.y12b{bottom:485.640060px;}
.y19{bottom:486.360077px;}
.y55{bottom:491.400055px;}
.y103{bottom:494.640060px;}
.y9c{bottom:495.360077px;}
.y173{bottom:496.980079px;}
.y14b{bottom:497.340088px;}
.yb6{bottom:504.900055px;}
.y12a{bottom:506.340088px;}
.y18{bottom:507.060036px;}
.y54{bottom:512.100083px;}
.yd4{bottom:514.800041px;}
.y102{bottom:515.340088px;}
.y172{bottom:517.680039px;}
.y14a{bottom:518.040047px;}
.y7e{bottom:519.300041px;}
.y9b{bottom:520.020058px;}
.yb5{bottom:525.600083px;}
.y129{bottom:527.040047px;}
.y17{bottom:527.760064px;}
.y101{bottom:536.040047px;}
.y149{bottom:538.740074px;}
.y97{bottom:540.720085px;}
.y53{bottom:541.800041px;}
.y7d{bottom:543.960091px;}
.yb4{bottom:546.300041px;}
.y171{bottom:547.380066px;}
.y128{bottom:547.740074px;}
.y16{bottom:548.460091px;}
.y96{bottom:551.160049px;}
.yd3{bottom:553.500068px;}
.y100{bottom:556.740074px;}
.y148{bottom:559.440033px;}
.y9a{bottom:561.420043px;}
.y7a{bottom:564.660049px;}
.yb3{bottom:567.000068px;}
.y127{bottom:568.440033px;}
.y15{bottom:569.160049px;}
.y52{bottom:571.500068px;}
.yd2{bottom:574.200096px;}
.y170{bottom:577.080093px;}
.yff{bottom:577.440033px;}
.y99{bottom:582.120072px;}
.y7c{bottom:585.360077px;}
.yb2{bottom:587.700096px;}
.y14{bottom:589.860077px;}
.yd1{bottom:594.900055px;}
.y16f{bottom:597.780052px;}
.y126{bottom:598.140060px;}
.y4d{bottom:600.660049px;}
.y147{bottom:601.200096px;}
.y98{bottom:602.820099px;}
.y7b{bottom:606.060036px;}
.yfe{bottom:606.960091px;}
.yb1{bottom:608.400055px;}
.y13{bottom:610.560036px;}
.y16e{bottom:618.480079px;}
.y146{bottom:621.900055px;}
.yd0{bottom:624.600083px;}
.y4c{bottom:625.320099px;}
.yfd{bottom:627.840088px;}
.yb0{bottom:629.100083px;}
.y12{bottom:631.260064px;}
.y51{bottom:635.760064px;}
.y16d{bottom:639.180039px;}
.y95{bottom:642.060036px;}
.y79{bottom:645.300041px;}
.y49{bottom:646.020058px;}
.yfc{bottom:648.540047px;}
.yaf{bottom:649.800041px;}
.y11{bottom:651.960091px;}
.ycf{bottom:654.300041px;}
.y50{bottom:656.460091px;}
.y16c{bottom:659.880066px;}
.y145{bottom:664.020058px;}
.y48{bottom:666.720085px;}
.yfb{bottom:669.240074px;}
.y78{bottom:669.960091px;}
.y10{bottom:672.660049px;}
.y4f{bottom:677.160049px;}
.yae{bottom:679.500068px;}
.y16b{bottom:680.580093px;}
.ycd{bottom:683.460091px;}
.y47{bottom:687.420078px;}
.yfa{bottom:689.940067px;}
.y75{bottom:690.480079px;}
.yf{bottom:693.360077px;}
.y4e{bottom:697.860077px;}
.y16a{bottom:701.280052px;}
.y144{bottom:707.940067px;}
.y4b{bottom:708.120072px;}
.yad{bottom:709.200061px;}
.y125{bottom:710.640060px;}
.y74{bottom:711.180073px;}
.ye{bottom:714.060070px;}
.y93{bottom:718.560070px;}
.yf9{bottom:719.640060px;}
.y143{bottom:728.640060px;}
.y4a{bottom:728.820065px;}
.y169{bottom:730.980079px;}
.y124{bottom:731.340054px;}
.y73{bottom:731.880066px;}
.yd{bottom:734.760064px;}
.yac{bottom:738.900055px;}
.ycb{bottom:739.080059px;}
.yf8{bottom:749.340054px;}
.y94{bottom:749.520058px;}
.y123{bottom:752.040081px;}
.y77{bottom:752.580059px;}
.yc{bottom:755.460056px;}
.yce{bottom:759.780052px;}
.y168{bottom:760.680073px;}
.y3f{bottom:768.060070px;}
.yf7{bottom:770.040081px;}
.ycc{bottom:770.220051px;}
.y122{bottom:772.740074px;}
.y76{bottom:773.280052px;}
.yb{bottom:776.160049px;}
.y167{bottom:781.380066px;}
.y46{bottom:782.280052px;}
.y92{bottom:788.760064px;}
.yf6{bottom:790.740074px;}
.y3e{bottom:792.720051px;}
.y121{bottom:793.440067px;}
.ya{bottom:796.860077px;}
.y166{bottom:802.080059px;}
.y45{bottom:802.980079px;}
.yca{bottom:809.460056px;}
.yf5{bottom:811.440067px;}
.y71{bottom:812.520058px;}
.y3b{bottom:813.420078px;}
.y120{bottom:814.140060px;}
.y70{bottom:816.480079px;}
.y9{bottom:817.560070px;}
.y165{bottom:822.780052px;}
.y44{bottom:823.680073px;}
.yf4{bottom:832.140060px;}
.y3a{bottom:834.120072px;}
.y11f{bottom:834.840054px;}
.y164{bottom:843.480079px;}
.y43{bottom:844.380066px;}
.yf3{bottom:852.840054px;}
.y39{bottom:854.820065px;}
.y11e{bottom:855.540081px;}
.y8{bottom:856.260064px;}
.y163{bottom:864.180073px;}
.y42{bottom:865.080059px;}
.y6f{bottom:867.600083px;}
.yf2{bottom:873.540081px;}
.y3d{bottom:875.520058px;}
.y11d{bottom:876.240074px;}
.y162{bottom:884.880066px;}
.y41{bottom:885.780052px;}
.y6e{bottom:888.300076px;}
.yf1{bottom:894.240074px;}
.y7{bottom:894.960056px;}
.y3c{bottom:896.220051px;}
.y11c{bottom:896.940067px;}
.y161{bottom:914.580059px;}
.yab{bottom:914.760064px;}
.yf0{bottom:914.940067px;}
.yc9{bottom:916.920078px;}
.y11b{bottom:917.640060px;}
.y6d{bottom:918.000068px;}
.y35{bottom:935.460056px;}
.yef{bottom:935.640060px;}
.y6{bottom:938.340054px;}
.yaa{bottom:939.420078px;}
.y160{bottom:944.280053px;}
.y6c{bottom:947.700061px;}
.ya9{bottom:949.680073px;}
.yc8{bottom:956.160049px;}
.yee{bottom:956.340054px;}
.y11a{bottom:959.040081px;}
.y34{bottom:960.120072px;}
.y38{bottom:970.380066px;}
.y15f{bottom:973.980079px;}
.y6a{bottom:976.860060px;}
.yed{bottom:977.040064px;}
.y33{bottom:980.820065px;}
.y5{bottom:988.560070px;}
.y2d{bottom:991.080059px;}
.y119{bottom:997.740074px;}
.y32{bottom:1001.520058px;}
.yec{bottom:1006.740074px;}
.y2c{bottom:1011.780069px;}
.y15e{bottom:1015.740074px;}
.y118{bottom:1018.440067px;}
.y31{bottom:1022.220068px;}
.y4{bottom:1024.920061px;}
.y2b{bottom:1032.480063px;}
.yeb{bottom:1036.440067px;}
.y142{bottom:1039.140060px;}
.y30{bottom:1042.920061px;}
.y117{bottom:1048.140060px;}
.y37{bottom:1053.180073px;}
.yea{bottom:1057.140060px;}
.y141{bottom:1059.840070px;}
.y2f{bottom:1063.620072px;}
.y3{bottom:1066.680073px;}
.ye9{bottom:1077.840070px;}
.y91{bottom:1082.160067px;}
.y2e{bottom:1084.320065px;}
.y90{bottom:1086.120072px;}
.y140{bottom:1089.540064px;}
.y8e{bottom:1096.380066px;}
.ye8{bottom:1098.540064px;}
.yc7{bottom:1102.860060px;}
.y2{bottom:1106.640060px;}
.y8f{bottom:1106.820065px;}
.y13f{bottom:1110.240074px;}
.y8d{bottom:1117.080059px;}
.ye7{bottom:1119.240066px;}
.y29{bottom:1123.560070px;}
.y28{bottom:1127.520066px;}
.y1{bottom:1134.360068px;}
.ye6{bottom:1139.940067px;}
.hd{height:13.320030px;}
.ha{height:20.159981px;}
.h8{height:20.159998px;}
.h12{height:20.160006px;}
.hc{height:20.160015px;}
.h9{height:20.160016px;}
.hb{height:20.160049px;}
.h6{height:42.329353px;}
.h7{height:52.138677px;}
.h14{height:52.455095px;}
.h15{height:58.916773px;}
.h13{height:59.345979px;}
.h4{height:63.178154px;}
.h2{height:69.344443px;}
.h5{height:69.689362px;}
.h3{height:84.026948px;}
.hf{height:93.178655px;}
.he{height:93.898673px;}
.h11{height:93.898704px;}
.h10{height:93.898808px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:4.500000px;}
.w3f{width:4.680003px;}
.w39{width:4.680004px;}
.w9{width:5.939999px;}
.w21{width:6.120002px;}
.w2{width:9.000000px;}
.w31{width:13.140027px;}
.w33{width:14.039978px;}
.w25{width:14.039979px;}
.w1e{width:14.040012px;}
.w35{width:18.720017px;}
.w11{width:21.060001px;}
.w17{width:21.960022px;}
.w23{width:22.860008px;}
.w8{width:23.399987px;}
.w2f{width:24.839984px;}
.wc{width:25.920010px;}
.w20{width:30.959988px;}
.wa{width:32.040012px;}
.w15{width:35.099980px;}
.w36{width:35.100014px;}
.w26{width:35.640026px;}
.w3c{width:37.259994px;}
.wd{width:37.620002px;}
.w6{width:39.240004px;}
.w38{width:39.959988px;}
.w2c{width:41.039979px;}
.w12{width:41.939999px;}
.wb{width:46.079990px;}
.w32{width:46.259994px;}
.w5{width:46.439999px;}
.w37{width:46.980011px;}
.w28{width:47.879997px;}
.w16{width:48.060001px;}
.w13{width:48.420009px;}
.w3b{width:49.680004px;}
.w1c{width:50.940016px;}
.wf{width:52.920010px;}
.w1b{width:53.460022px;}
.w4{width:53.819997px;}
.w3a{width:56.879997px;}
.w3d{width:58.860009px;}
.w1f{width:63.000000px;}
.w2b{width:63.899985px;}
.w27{width:64.439999px;}
.w1d{width:65.159980px;}
.w3e{width:69.840019px;}
.w10{width:70.019989px;}
.w22{width:72.539979px;}
.w7{width:73.980011px;}
.w29{width:74.520024px;}
.w2d{width:76.500000px;}
.w24{width:80.279984px;}
.w2e{width:80.459988px;}
.w18{width:82.439998px;}
.w2a{width:82.439999px;}
.w14{width:90.000000px;}
.w30{width:97.019989px;}
.w40{width:98.459988px;}
.w19{width:99.539994px;}
.w1a{width:100.440016px;}
.we{width:120.779983px;}
.w34{width:134.819962px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2{left:102.599997px;}
.x62{left:111.959997px;}
.x63{left:138.959997px;}
.x3{left:211.139992px;}
.x4d{left:241.740006px;}
.x3f{left:243.719999px;}
.x19{left:244.800007px;}
.x2c{left:262.979994px;}
.x4{left:271.620002px;}
.x8{left:276.120002px;}
.x66{left:281.699993px;}
.x1e{left:297.720017px;}
.x1f{left:302.220017px;}
.x4e{left:310.680005px;}
.x40{left:312.660015px;}
.x32{left:313.920010px;}
.x67{left:316.620002px;}
.x33{left:318.420010px;}
.x68{left:321.120002px;}
.x6c{left:323.279983px;}
.x9{left:325.439999px;}
.xa{left:329.939999px;}
.x24{left:334.800007px;}
.x25{left:339.300007px;}
.x6a{left:343.079990px;}
.xe{left:345.420010px;}
.xf{left:349.560001px;}
.x30{left:362.519989px;}
.x1d{left:365.579990px;}
.x69{left:368.100014px;}
.x10{left:372.959988px;}
.x26{left:374.399987px;}
.xb{left:376.379998px;}
.x11{left:378.899987px;}
.xc{left:380.879998px;}
.x6d{left:382.139992px;}
.x34{left:383.399987px;}
.x6e{left:386.639992px;}
.x35{left:387.899987px;}
.x6b{left:392.759994px;}
.x20{left:397.800007px;}
.x21{left:402.300007px;}
.x36{left:406.439999px;}
.x12{left:410.939999px;}
.x41{left:412.199993px;}
.x13{left:415.439999px;}
.x4f{left:417.420010px;}
.xd{left:420.120002px;}
.x27{left:426.959988px;}
.x1a{left:429.300007px;}
.x28{left:431.459988px;}
.x42{left:435.060001px;}
.x43{left:439.560001px;}
.x57{left:442.259994px;}
.x22{left:444.240006px;}
.x2d{left:447.480011px;}
.x23{left:448.740006px;}
.x29{left:453.420010px;}
.x5{left:456.120002px;}
.x2a{left:457.920010px;}
.x4a{left:460.079990px;}
.x14{left:461.519989px;}
.x4b{left:464.579990px;}
.x15{left:466.019989px;}
.x37{left:469.439999px;}
.x38{left:473.939999px;}
.x49{left:476.639992px;}
.x50{left:481.319996px;}
.x51{left:485.819996px;}
.x16{left:491.939999px;}
.x4c{left:494.639992px;}
.x17{left:496.439999px;}
.x56{left:497.879998px;}
.x52{left:499.860008px;}
.x39{left:504.899987px;}
.x3a{left:511.019989px;}
.x3b{left:516.959988px;}
.x44{left:519.660015px;}
.x3c{left:521.459988px;}
.x45{left:524.160015px;}
.x3d{left:525.959988px;}
.x18{left:534.060001px;}
.x46{left:538.199993px;}
.x2b{left:540.360008px;}
.x47{left:542.699993px;}
.x58{left:543.779983px;}
.x53{left:545.399987px;}
.x59{left:548.279983px;}
.x54{left:549.899987px;}
.x6f{left:559.620002px;}
.x5a{left:561.240006px;}
.x5b{left:565.740006px;}
.x48{left:578.340019px;}
.x6{left:594.720017px;}
.x2e{left:601.019989px;}
.x1b{left:605.519989px;}
.x64{left:608.580025px;}
.x5c{left:611.820030px;}
.x5d{left:616.320030px;}
.x55{left:626.399987px;}
.x5e{left:630.360008px;}
.x5f{left:634.860008px;}
.x31{left:654.480011px;}
.x65{left:670.500000px;}
.x3e{left:673.559967px;}
.x7{left:732.240006px;}
.x2f{left:738.539978px;}
.x1c{left:743.039978px;}
.x60{left:769.679970px;}
.x61{left:788.399987px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.v3{vertical-align:37.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.053252pt;}
.ls9{letter-spacing:0.254403pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.lsd{letter-spacing:30.271334pt;}
.ls8{letter-spacing:56.965202pt;}
.lsa{letter-spacing:103.679391pt;}
.ls4{letter-spacing:138.879403pt;}
.ls5{letter-spacing:222.719367pt;}
.ls6{letter-spacing:250.879403pt;}
.ls7{letter-spacing:339.839427pt;}
.lsb{letter-spacing:348.159435pt;}
.ls3{letter-spacing:364.799387pt;}
.ws3{word-spacing:-53.122000pt;}
.ws1{word-spacing:-16.000601pt;}
.ws0{word-spacing:-14.714794pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-7.541033pt;}
._7{margin-left:-6.598435pt;}
._6{margin-left:-5.455367pt;}
._4{margin-left:-4.480168pt;}
._5{margin-left:-3.100857pt;}
._2{margin-left:-1.376934pt;}
._0{width:0.893461pt;}
._1{width:1.989755pt;}
.fs2{font-size:42.881600pt;}
.fs3{font-size:53.122000pt;}
.fs1{font-size:64.002404pt;}
.fs4{font-size:72.322800pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.240051pt;}
.y69{bottom:3.519958pt;}
.y40{bottom:3.519989pt;}
.y2a{bottom:3.519996pt;}
.y6b{bottom:3.520004pt;}
.y72{bottom:3.520019pt;}
.y36{bottom:3.520020pt;}
.y13e{bottom:82.080079pt;}
.ye5{bottom:86.560059pt;}
.y116{bottom:90.080079pt;}
.y15d{bottom:92.320069pt;}
.y184{bottom:96.960083pt;}
.y27{bottom:97.440064pt;}
.y13d{bottom:100.480042pt;}
.ye4{bottom:104.800049pt;}
.y115{bottom:108.480042pt;}
.y15c{bottom:110.720032pt;}
.yc6{bottom:114.240052pt;}
.y183{bottom:115.360047pt;}
.y26{bottom:115.840088pt;}
.y13c{bottom:118.880066pt;}
.ye3{bottom:123.200074pt;}
.ya8{bottom:124.800049pt;}
.y114{bottom:126.880066pt;}
.y15b{bottom:129.120057pt;}
.y182{bottom:133.760071pt;}
.y25{bottom:134.240052pt;}
.y13b{bottom:137.280030pt;}
.y8c{bottom:138.880066pt;}
.yc5{bottom:140.640076pt;}
.ye2{bottom:141.600037pt;}
.y68{bottom:143.200074pt;}
.y113{bottom:145.280030pt;}
.ya7{bottom:146.720032pt;}
.y15a{bottom:147.520081pt;}
.y181{bottom:152.160035pt;}
.y13a{bottom:155.680054pt;}
.yc4{bottom:159.040039pt;}
.y24{bottom:160.640076pt;}
.y112{bottom:163.680054pt;}
.y66{bottom:165.120057pt;}
.y8b{bottom:165.280030pt;}
.y159{bottom:165.920044pt;}
.ye1{bottom:168.000061pt;}
.y139{bottom:174.080079pt;}
.ya6{bottom:174.240052pt;}
.yc3{bottom:177.440064pt;}
.y180{bottom:178.560059pt;}
.y111{bottom:182.080079pt;}
.y65{bottom:183.520081pt;}
.y158{bottom:184.320069pt;}
.ye0{bottom:186.400086pt;}
.y23{bottom:187.040039pt;}
.y138{bottom:192.480042pt;}
.yc2{bottom:195.840088pt;}
.y8a{bottom:199.680054pt;}
.y110{bottom:200.480042pt;}
.y64{bottom:201.920044pt;}
.y157{bottom:202.720032pt;}
.y17f{bottom:204.960083pt;}
.y137{bottom:210.880066pt;}
.ydf{bottom:212.800049pt;}
.y22{bottom:213.440064pt;}
.yc1{bottom:214.240052pt;}
.y10f{bottom:218.880066pt;}
.y63{bottom:220.320069pt;}
.y156{bottom:221.120057pt;}
.y17e{bottom:223.360047pt;}
.y136{bottom:229.280030pt;}
.yc0{bottom:232.640076pt;}
.y89{bottom:234.080079pt;}
.y10e{bottom:237.280030pt;}
.y67{bottom:238.720032pt;}
.yde{bottom:239.200074pt;}
.y17d{bottom:241.760071pt;}
.y135{bottom:247.680054pt;}
.y21{bottom:247.840088pt;}
.ybf{bottom:251.040039pt;}
.ya5{bottom:255.200074pt;}
.y10d{bottom:255.680054pt;}
.ydd{bottom:257.600037pt;}
.y155{bottom:258.240052pt;}
.ya4{bottom:258.720032pt;}
.y17c{bottom:260.160035pt;}
.y134{bottom:266.080079pt;}
.y20{bottom:266.240052pt;}
.ya2{bottom:267.840088pt;}
.y88{bottom:268.480042pt;}
.y5d{bottom:273.600037pt;}
.y10c{bottom:274.080079pt;}
.ydc{bottom:276.000061pt;}
.y154{bottom:276.640076pt;}
.ya3{bottom:277.120057pt;}
.ybe{bottom:277.440064pt;}
.y17b{bottom:278.560059pt;}
.y133{bottom:284.480042pt;}
.y1f{bottom:284.640076pt;}
.y62{bottom:286.240052pt;}
.y87{bottom:286.880066pt;}
.y10b{bottom:292.480042pt;}
.ydb{bottom:294.400086pt;}
.y153{bottom:295.040039pt;}
.y5b{bottom:295.520081pt;}
.y132{bottom:302.880066pt;}
.y1e{bottom:303.040039pt;}
.y61{bottom:304.640076pt;}
.y17a{bottom:304.960083pt;}
.y86{bottom:305.280030pt;}
.ybd{bottom:308.000061pt;}
.y10a{bottom:310.880066pt;}
.yda{bottom:312.800049pt;}
.y152{bottom:313.440064pt;}
.y5a{bottom:313.920044pt;}
.y131{bottom:321.280030pt;}
.y60{bottom:323.040039pt;}
.y85{bottom:323.680054pt;}
.ya1{bottom:324.800049pt;}
.y109{bottom:329.280030pt;}
.yd9{bottom:331.200074pt;}
.y179{bottom:331.360047pt;}
.y151{bottom:331.840088pt;}
.y59{bottom:332.320069pt;}
.ybc{bottom:338.400086pt;}
.y130{bottom:339.680054pt;}
.y1d{bottom:340.000061pt;}
.y5f{bottom:341.440064pt;}
.ya0{bottom:343.200074pt;}
.y108{bottom:347.680054pt;}
.y83{bottom:349.600037pt;}
.y178{bottom:349.760071pt;}
.y150{bottom:350.240052pt;}
.y58{bottom:350.720032pt;}
.ybb{bottom:356.800049pt;}
.y12f{bottom:358.080079pt;}
.y5e{bottom:359.840088pt;}
.y9f{bottom:361.600037pt;}
.y107{bottom:366.080079pt;}
.yd8{bottom:368.000061pt;}
.y177{bottom:368.160035pt;}
.y14f{bottom:368.640076pt;}
.y5c{bottom:369.120057pt;}
.y81{bottom:371.520081pt;}
.yba{bottom:375.200074pt;}
.y12e{bottom:376.480042pt;}
.y1c{bottom:377.120057pt;}
.y106{bottom:384.480042pt;}
.yd7{bottom:386.400086pt;}
.y176{bottom:386.560059pt;}
.y14e{bottom:387.040039pt;}
.y9e{bottom:388.000061pt;}
.y80{bottom:389.920044pt;}
.yb9{bottom:393.600037pt;}
.y12d{bottom:394.880066pt;}
.y1b{bottom:395.520081pt;}
.y105{bottom:402.880066pt;}
.y57{bottom:404.000061pt;}
.y175{bottom:404.960083pt;}
.y14d{bottom:405.440064pt;}
.y56{bottom:407.520081pt;}
.y7f{bottom:408.320069pt;}
.yb8{bottom:412.000061pt;}
.yd6{bottom:412.800049pt;}
.y12c{bottom:413.280030pt;}
.y1a{bottom:413.920044pt;}
.y9d{bottom:414.400086pt;}
.y104{bottom:421.280030pt;}
.y174{bottom:423.360047pt;}
.y14c{bottom:423.680054pt;}
.y82{bottom:426.720032pt;}
.yb7{bottom:430.400086pt;}
.yd5{bottom:431.200074pt;}
.y12b{bottom:431.680054pt;}
.y19{bottom:432.320069pt;}
.y55{bottom:436.800049pt;}
.y103{bottom:439.680054pt;}
.y9c{bottom:440.320069pt;}
.y173{bottom:441.760071pt;}
.y14b{bottom:442.080079pt;}
.yb6{bottom:448.800049pt;}
.y12a{bottom:450.080079pt;}
.y18{bottom:450.720032pt;}
.y54{bottom:455.200074pt;}
.yd4{bottom:457.600037pt;}
.y102{bottom:458.080079pt;}
.y172{bottom:460.160035pt;}
.y14a{bottom:460.480042pt;}
.y7e{bottom:461.600037pt;}
.y9b{bottom:462.240052pt;}
.yb5{bottom:467.200074pt;}
.y129{bottom:468.480042pt;}
.y17{bottom:469.120057pt;}
.y101{bottom:476.480042pt;}
.y149{bottom:478.880066pt;}
.y97{bottom:480.640076pt;}
.y53{bottom:481.600037pt;}
.y7d{bottom:483.520081pt;}
.yb4{bottom:485.600037pt;}
.y171{bottom:486.560059pt;}
.y128{bottom:486.880066pt;}
.y16{bottom:487.520081pt;}
.y96{bottom:489.920044pt;}
.yd3{bottom:492.000061pt;}
.y100{bottom:494.880066pt;}
.y148{bottom:497.280030pt;}
.y9a{bottom:499.040039pt;}
.y7a{bottom:501.920044pt;}
.yb3{bottom:504.000061pt;}
.y127{bottom:505.280030pt;}
.y15{bottom:505.920044pt;}
.y52{bottom:508.000061pt;}
.yd2{bottom:510.400086pt;}
.y170{bottom:512.960083pt;}
.yff{bottom:513.280030pt;}
.y99{bottom:517.440064pt;}
.y7c{bottom:520.320069pt;}
.yb2{bottom:522.400086pt;}
.y14{bottom:524.320069pt;}
.yd1{bottom:528.800049pt;}
.y16f{bottom:531.360047pt;}
.y126{bottom:531.680054pt;}
.y4d{bottom:533.920044pt;}
.y147{bottom:534.400086pt;}
.y98{bottom:535.840088pt;}
.y7b{bottom:538.720032pt;}
.yfe{bottom:539.520081pt;}
.yb1{bottom:540.800049pt;}
.y13{bottom:542.720032pt;}
.y16e{bottom:549.760071pt;}
.y146{bottom:552.800049pt;}
.yd0{bottom:555.200074pt;}
.y4c{bottom:555.840088pt;}
.yfd{bottom:558.080079pt;}
.yb0{bottom:559.200074pt;}
.y12{bottom:561.120057pt;}
.y51{bottom:565.120057pt;}
.y16d{bottom:568.160035pt;}
.y95{bottom:570.720032pt;}
.y79{bottom:573.600037pt;}
.y49{bottom:574.240052pt;}
.yfc{bottom:576.480042pt;}
.yaf{bottom:577.600037pt;}
.y11{bottom:579.520081pt;}
.ycf{bottom:581.600037pt;}
.y50{bottom:583.520081pt;}
.y16c{bottom:586.560059pt;}
.y145{bottom:590.240052pt;}
.y48{bottom:592.640076pt;}
.yfb{bottom:594.880066pt;}
.y78{bottom:595.520081pt;}
.y10{bottom:597.920044pt;}
.y4f{bottom:601.920044pt;}
.yae{bottom:604.000061pt;}
.y16b{bottom:604.960083pt;}
.ycd{bottom:607.520081pt;}
.y47{bottom:611.040070pt;}
.yfa{bottom:613.280060pt;}
.y75{bottom:613.760071pt;}
.yf{bottom:616.320069pt;}
.y4e{bottom:620.320069pt;}
.y16a{bottom:623.360047pt;}
.y144{bottom:629.280060pt;}
.y4b{bottom:629.440064pt;}
.yad{bottom:630.400055pt;}
.y125{bottom:631.680054pt;}
.y74{bottom:632.160065pt;}
.ye{bottom:634.720063pt;}
.y93{bottom:638.720063pt;}
.yf9{bottom:639.680054pt;}
.y143{bottom:647.680054pt;}
.y4a{bottom:647.840058pt;}
.y169{bottom:649.760071pt;}
.y124{bottom:650.080048pt;}
.y73{bottom:650.560059pt;}
.yd{bottom:653.120057pt;}
.yac{bottom:656.800049pt;}
.ycb{bottom:656.960053pt;}
.yf8{bottom:666.080048pt;}
.y94{bottom:666.240052pt;}
.y123{bottom:668.480072pt;}
.y77{bottom:668.960053pt;}
.yc{bottom:671.520050pt;}
.yce{bottom:675.360047pt;}
.y168{bottom:676.160065pt;}
.y3f{bottom:682.720063pt;}
.yf7{bottom:684.480072pt;}
.ycc{bottom:684.640046pt;}
.y122{bottom:686.880066pt;}
.y76{bottom:687.360047pt;}
.yb{bottom:689.920044pt;}
.y167{bottom:694.560059pt;}
.y46{bottom:695.360047pt;}
.y92{bottom:701.120057pt;}
.yf6{bottom:702.880066pt;}
.y3e{bottom:704.640046pt;}
.y121{bottom:705.280060pt;}
.ya{bottom:708.320069pt;}
.y166{bottom:712.960053pt;}
.y45{bottom:713.760071pt;}
.yca{bottom:719.520050pt;}
.yf5{bottom:721.280060pt;}
.y71{bottom:722.240052pt;}
.y3b{bottom:723.040070pt;}
.y120{bottom:723.680054pt;}
.y70{bottom:725.760071pt;}
.y9{bottom:726.720063pt;}
.y165{bottom:731.360047pt;}
.y44{bottom:732.160065pt;}
.yf4{bottom:739.680054pt;}
.y3a{bottom:741.440064pt;}
.y11f{bottom:742.080048pt;}
.y164{bottom:749.760071pt;}
.y43{bottom:750.560059pt;}
.yf3{bottom:758.080048pt;}
.y39{bottom:759.840058pt;}
.y11e{bottom:760.480072pt;}
.y8{bottom:761.120057pt;}
.y163{bottom:768.160065pt;}
.y42{bottom:768.960053pt;}
.y6f{bottom:771.200074pt;}
.yf2{bottom:776.480072pt;}
.y3d{bottom:778.240052pt;}
.y11d{bottom:778.880066pt;}
.y162{bottom:786.560059pt;}
.y41{bottom:787.360047pt;}
.y6e{bottom:789.600068pt;}
.yf1{bottom:794.880066pt;}
.y7{bottom:795.520050pt;}
.y3c{bottom:796.640046pt;}
.y11c{bottom:797.280060pt;}
.y161{bottom:812.960053pt;}
.yab{bottom:813.120057pt;}
.yf0{bottom:813.280060pt;}
.yc9{bottom:815.040070pt;}
.y11b{bottom:815.680054pt;}
.y6d{bottom:816.000061pt;}
.y35{bottom:831.520050pt;}
.yef{bottom:831.680054pt;}
.y6{bottom:834.080048pt;}
.yaa{bottom:835.040070pt;}
.y160{bottom:839.360047pt;}
.y6c{bottom:842.400055pt;}
.ya9{bottom:844.160065pt;}
.yc8{bottom:849.920044pt;}
.yee{bottom:850.080048pt;}
.y11a{bottom:852.480072pt;}
.y34{bottom:853.440064pt;}
.y38{bottom:862.560059pt;}
.y15f{bottom:865.760071pt;}
.y6a{bottom:868.320054pt;}
.yed{bottom:868.480057pt;}
.y33{bottom:871.840058pt;}
.y5{bottom:878.720063pt;}
.y2d{bottom:880.960053pt;}
.y119{bottom:886.880066pt;}
.y32{bottom:890.240052pt;}
.yec{bottom:894.880066pt;}
.y2c{bottom:899.360062pt;}
.y15e{bottom:902.880066pt;}
.y118{bottom:905.280060pt;}
.y31{bottom:908.640061pt;}
.y4{bottom:911.040055pt;}
.y2b{bottom:917.760056pt;}
.yeb{bottom:921.280060pt;}
.y142{bottom:923.680054pt;}
.y30{bottom:927.040055pt;}
.y117{bottom:931.680054pt;}
.y37{bottom:936.160065pt;}
.yea{bottom:939.680054pt;}
.y141{bottom:942.080063pt;}
.y2f{bottom:945.440064pt;}
.y3{bottom:948.160065pt;}
.ye9{bottom:958.080063pt;}
.y91{bottom:961.920060pt;}
.y2e{bottom:963.840058pt;}
.y90{bottom:965.440064pt;}
.y140{bottom:968.480057pt;}
.y8e{bottom:974.560059pt;}
.ye8{bottom:976.480057pt;}
.yc7{bottom:980.320054pt;}
.y2{bottom:983.680054pt;}
.y8f{bottom:983.840058pt;}
.y13f{bottom:986.880066pt;}
.y8d{bottom:992.960053pt;}
.ye7{bottom:994.880059pt;}
.y29{bottom:998.720063pt;}
.y28{bottom:1002.240059pt;}
.y1{bottom:1008.320061pt;}
.ye6{bottom:1013.280060pt;}
.hd{height:11.840027pt;}
.ha{height:17.919983pt;}
.h8{height:17.919998pt;}
.h12{height:17.920005pt;}
.hc{height:17.920013pt;}
.h9{height:17.920014pt;}
.hb{height:17.920044pt;}
.h6{height:37.626091pt;}
.h7{height:46.345491pt;}
.h14{height:46.626751pt;}
.h15{height:52.370465pt;}
.h13{height:52.751981pt;}
.h4{height:56.158359pt;}
.h2{height:61.639505pt;}
.h5{height:61.946099pt;}
.h3{height:74.690620pt;}
.hf{height:82.825471pt;}
.he{height:83.465487pt;}
.h11{height:83.465515pt;}
.h10{height:83.465607pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:4.000000pt;}
.w3f{width:4.160003pt;}
.w39{width:4.160004pt;}
.w9{width:5.279999pt;}
.w21{width:5.440002pt;}
.w2{width:8.000000pt;}
.w31{width:11.680024pt;}
.w33{width:12.479980pt;}
.w25{width:12.479981pt;}
.w1e{width:12.480011pt;}
.w35{width:16.640015pt;}
.w11{width:18.720001pt;}
.w17{width:19.520020pt;}
.w23{width:20.320007pt;}
.w8{width:20.799988pt;}
.w2f{width:22.079986pt;}
.wc{width:23.040009pt;}
.w20{width:27.519989pt;}
.wa{width:28.480011pt;}
.w15{width:31.199982pt;}
.w36{width:31.200012pt;}
.w26{width:31.680023pt;}
.w3c{width:33.119995pt;}
.wd{width:33.440002pt;}
.w6{width:34.880004pt;}
.w38{width:35.519989pt;}
.w2c{width:36.479981pt;}
.w12{width:37.279999pt;}
.wb{width:40.959991pt;}
.w32{width:41.119995pt;}
.w5{width:41.279999pt;}
.w37{width:41.760010pt;}
.w28{width:42.559997pt;}
.w16{width:42.720001pt;}
.w13{width:43.040008pt;}
.w3b{width:44.160004pt;}
.w1c{width:45.280014pt;}
.wf{width:47.040009pt;}
.w1b{width:47.520020pt;}
.w4{width:47.839997pt;}
.w3a{width:50.559997pt;}
.w3d{width:52.320008pt;}
.w1f{width:56.000000pt;}
.w2b{width:56.799987pt;}
.w27{width:57.279999pt;}
.w1d{width:57.919982pt;}
.w3e{width:62.080017pt;}
.w10{width:62.239990pt;}
.w22{width:64.479981pt;}
.w7{width:65.760010pt;}
.w29{width:66.240021pt;}
.w2d{width:68.000000pt;}
.w24{width:71.359986pt;}
.w2e{width:71.519989pt;}
.w18{width:73.279998pt;}
.w2a{width:73.279999pt;}
.w14{width:80.000000pt;}
.w30{width:86.239990pt;}
.w40{width:87.519989pt;}
.w19{width:88.479995pt;}
.w1a{width:89.280014pt;}
.we{width:107.359985pt;}
.w34{width:119.839966pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2{left:91.199997pt;}
.x62{left:99.519997pt;}
.x63{left:123.519997pt;}
.x3{left:187.679993pt;}
.x4d{left:214.880005pt;}
.x3f{left:216.639999pt;}
.x19{left:217.600006pt;}
.x2c{left:233.759995pt;}
.x4{left:241.440002pt;}
.x8{left:245.440002pt;}
.x66{left:250.399994pt;}
.x1e{left:264.640015pt;}
.x1f{left:268.640015pt;}
.x4e{left:276.160004pt;}
.x40{left:277.920013pt;}
.x32{left:279.040009pt;}
.x67{left:281.440002pt;}
.x33{left:283.040009pt;}
.x68{left:285.440002pt;}
.x6c{left:287.359985pt;}
.x9{left:289.279999pt;}
.xa{left:293.279999pt;}
.x24{left:297.600006pt;}
.x25{left:301.600006pt;}
.x6a{left:304.959991pt;}
.xe{left:307.040009pt;}
.xf{left:310.720001pt;}
.x30{left:322.239990pt;}
.x1d{left:324.959991pt;}
.x69{left:327.200012pt;}
.x10{left:331.519989pt;}
.x26{left:332.799988pt;}
.xb{left:334.559998pt;}
.x11{left:336.799988pt;}
.xc{left:338.559998pt;}
.x6d{left:339.679993pt;}
.x34{left:340.799988pt;}
.x6e{left:343.679993pt;}
.x35{left:344.799988pt;}
.x6b{left:349.119995pt;}
.x20{left:353.600006pt;}
.x21{left:357.600006pt;}
.x36{left:361.279999pt;}
.x12{left:365.279999pt;}
.x41{left:366.399994pt;}
.x13{left:369.279999pt;}
.x4f{left:371.040009pt;}
.xd{left:373.440002pt;}
.x27{left:379.519989pt;}
.x1a{left:381.600006pt;}
.x28{left:383.519989pt;}
.x42{left:386.720001pt;}
.x43{left:390.720001pt;}
.x57{left:393.119995pt;}
.x22{left:394.880005pt;}
.x2d{left:397.760010pt;}
.x23{left:398.880005pt;}
.x29{left:403.040009pt;}
.x5{left:405.440002pt;}
.x2a{left:407.040009pt;}
.x4a{left:408.959991pt;}
.x14{left:410.239990pt;}
.x4b{left:412.959991pt;}
.x15{left:414.239990pt;}
.x37{left:417.279999pt;}
.x38{left:421.279999pt;}
.x49{left:423.679993pt;}
.x50{left:427.839996pt;}
.x51{left:431.839996pt;}
.x16{left:437.279999pt;}
.x4c{left:439.679993pt;}
.x17{left:441.279999pt;}
.x56{left:442.559998pt;}
.x52{left:444.320007pt;}
.x39{left:448.799988pt;}
.x3a{left:454.239990pt;}
.x3b{left:459.519989pt;}
.x44{left:461.920013pt;}
.x3c{left:463.519989pt;}
.x45{left:465.920013pt;}
.x3d{left:467.519989pt;}
.x18{left:474.720001pt;}
.x46{left:478.399994pt;}
.x2b{left:480.320007pt;}
.x47{left:482.399994pt;}
.x58{left:483.359985pt;}
.x53{left:484.799988pt;}
.x59{left:487.359985pt;}
.x54{left:488.799988pt;}
.x6f{left:497.440002pt;}
.x5a{left:498.880005pt;}
.x5b{left:502.880005pt;}
.x48{left:514.080017pt;}
.x6{left:528.640015pt;}
.x2e{left:534.239990pt;}
.x1b{left:538.239990pt;}
.x64{left:540.960022pt;}
.x5c{left:543.840027pt;}
.x5d{left:547.840027pt;}
.x55{left:556.799988pt;}
.x5e{left:560.320007pt;}
.x5f{left:564.320007pt;}
.x31{left:581.760010pt;}
.x65{left:596.000000pt;}
.x3e{left:598.719971pt;}
.x7{left:650.880005pt;}
.x2f{left:656.479980pt;}
.x1c{left:660.479980pt;}
.x60{left:684.159973pt;}
.x61{left:700.799988pt;}
}




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