
    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_87152824ae80e4d37e83b257.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_ec66b8365011e2a0f5ff96d8.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_3d1b4307db73e3e5a9f2eeb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_e02ec304b2a8f3ebb271c632.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_dca00510b80c9bdbe68131d4.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a494ed262fa75f801c76419e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_74d5fd1d332cbb8f966ca28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000563px;}
.lsa{letter-spacing:0.142650px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.ls9{letter-spacing:0.718594px;}
.ls7{letter-spacing:0.718661px;}
.ls8{letter-spacing:0.718666px;}
.ls4{letter-spacing:34.055251px;}
.lsb{letter-spacing:55.445857px;}
.ls2{letter-spacing:64.085852px;}
.ls5{letter-spacing:1036.079418px;}
.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;}
}
.ws1{word-spacing:-59.762250px;}
.ws0{word-spacing:-18.000676px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-1577.520595px;}
._3{margin-left:-8.483662px;}
._4{margin-left:-5.040189px;}
._5{margin-left:-3.466112px;}
._2{margin-left:-1.571403px;}
._0{width:1.163004px;}
._1{width:2.183859px;}
._b{width:3.229981px;}
._7{width:4.563171px;}
._8{width:5.786092px;}
._6{width:8.821175px;}
._9{width:10.201321px;}
._a{width:11.496244px;}
._d{width:110.656884px;}
._c{width:194.615197px;}
._e{width:307.294400px;}
.fcb{color:rgb(0,0,255);}
.fc9{color:rgb(24,128,56);}
.fc5{color:rgb(95,99,104);}
.fca{color:rgb(70,120,134);}
.fc4{color:rgb(132,48,206);}
.fc8{color:rgb(25,103,210);}
.fc3{color:rgb(68,71,70);}
.fc2{color:transparent;}
.fc7{color:rgb(153,105,0);}
.fc6{color:rgb(181,89,8);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.241800px;}
.fs4{font-size:59.762250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.959988px;}
.y7e{bottom:3.960004px;}
.y8b{bottom:3.960022px;}
.yeb{bottom:92.340088px;}
.yac{bottom:102.060104px;}
.y141{bottom:102.780121px;}
.y168{bottom:104.940033px;}
.y58{bottom:113.040047px;}
.y28{bottom:114.300041px;}
.yd2{bottom:118.440033px;}
.yab{bottom:122.760064px;}
.y117{bottom:123.480079px;}
.y167{bottom:125.640060px;}
.y171{bottom:129.780052px;}
.yea{bottom:133.740074px;}
.y27{bottom:135.000068px;}
.yaa{bottom:143.460091px;}
.y140{bottom:144.180039px;}
.y166{bottom:146.340088px;}
.y7c{bottom:146.880066px;}
.yd1{bottom:148.140060px;}
.y170{bottom:150.480079px;}
.y105{bottom:150.840088px;}
.y57{bottom:151.740074px;}
.ye9{bottom:154.440033px;}
.y26{bottom:155.700096px;}
.y116{bottom:162.180039px;}
.y13f{bottom:164.880066px;}
.y165{bottom:167.040047px;}
.y7b{bottom:167.580093px;}
.yd0{bottom:168.840088px;}
.y16f{bottom:171.180039px;}
.y104{bottom:171.540047px;}
.y56{bottom:172.440033px;}
.ye8{bottom:175.140060px;}
.y25{bottom:176.400055px;}
.ya9{bottom:185.220085px;}
.y13e{bottom:185.580093px;}
.y164{bottom:187.740074px;}
.ycf{bottom:189.540047px;}
.y16e{bottom:191.880066px;}
.y103{bottom:192.240074px;}
.y55{bottom:193.140060px;}
.y24{bottom:197.100083px;}
.y115{bottom:203.940033px;}
.ye7{bottom:204.840088px;}
.ya8{bottom:205.920043px;}
.y13d{bottom:206.280052px;}
.y163{bottom:208.440033px;}
.y7a{bottom:209.340088px;}
.yce{bottom:210.240074px;}
.y16d{bottom:212.580093px;}
.y102{bottom:212.940033px;}
.y54{bottom:213.840088px;}
.y23{bottom:217.800041px;}
.y114{bottom:224.640060px;}
.ya7{bottom:226.620072px;}
.y13c{bottom:226.980079px;}
.y162{bottom:229.140060px;}
.ycd{bottom:230.940033px;}
.y101{bottom:233.640060px;}
.y53{bottom:234.540047px;}
.y22{bottom:238.500068px;}
.y113{bottom:245.340088px;}
.y13b{bottom:247.680039px;}
.y161{bottom:249.840088px;}
.y79{bottom:251.100083px;}
.ycc{bottom:251.640060px;}
.y100{bottom:254.340088px;}
.y52{bottom:255.240074px;}
.y21{bottom:259.200096px;}
.y112{bottom:266.040047px;}
.ya6{bottom:268.200096px;}
.y13a{bottom:268.380066px;}
.y160{bottom:270.540047px;}
.y78{bottom:271.800041px;}
.ycb{bottom:272.340088px;}
.yff{bottom:275.040047px;}
.y51{bottom:275.940033px;}
.y20{bottom:279.900055px;}
.y111{bottom:286.740074px;}
.ya5{bottom:288.900055px;}
.y139{bottom:289.080093px;}
.y15f{bottom:291.240074px;}
.y77{bottom:292.500068px;}
.yca{bottom:293.040047px;}
.yfe{bottom:295.740074px;}
.y50{bottom:296.640060px;}
.y1f{bottom:300.600083px;}
.y110{bottom:307.440033px;}
.ya4{bottom:309.600083px;}
.y138{bottom:309.780052px;}
.y15e{bottom:311.940033px;}
.yc9{bottom:313.740074px;}
.yfd{bottom:316.440033px;}
.y4f{bottom:317.340088px;}
.y1e{bottom:321.300041px;}
.ya3{bottom:330.300041px;}
.y137{bottom:330.480079px;}
.y15d{bottom:332.640060px;}
.y76{bottom:334.080093px;}
.yc8{bottom:334.440033px;}
.yfc{bottom:337.140060px;}
.y16c{bottom:337.500068px;}
.y4e{bottom:338.040047px;}
.y1d{bottom:342.000068px;}
.y10f{bottom:349.200096px;}
.ya2{bottom:351.000068px;}
.y136{bottom:351.180039px;}
.y15c{bottom:353.340088px;}
.yc7{bottom:355.140060px;}
.y4d{bottom:358.740074px;}
.y1c{bottom:362.700096px;}
.yfb{bottom:366.840088px;}
.y10e{bottom:369.900055px;}
.ya1{bottom:371.700096px;}
.y135{bottom:371.880066px;}
.y15b{bottom:374.040047px;}
.y75{bottom:375.840088px;}
.y16b{bottom:379.080093px;}
.y4c{bottom:379.440033px;}
.y10d{bottom:390.600083px;}
.y1b{bottom:392.400055px;}
.y134{bottom:392.580093px;}
.y189{bottom:392.940033px;}
.y15a{bottom:394.740074px;}
.y74{bottom:396.540047px;}
.y4b{bottom:400.140060px;}
.yfa{bottom:405.540047px;}
.y10c{bottom:411.300041px;}
.y1a{bottom:413.100083px;}
.y133{bottom:413.280052px;}
.y188{bottom:413.640060px;}
.y159{bottom:415.440033px;}
.y73{bottom:417.240074px;}
.y4a{bottom:420.840088px;}
.yf9{bottom:426.240074px;}
.y10b{bottom:432.000068px;}
.y19{bottom:433.800041px;}
.y132{bottom:433.980079px;}
.y187{bottom:434.340088px;}
.y158{bottom:436.140060px;}
.y72{bottom:437.940033px;}
.y49{bottom:441.540047px;}
.yc6{bottom:446.940033px;}
.y18{bottom:454.500068px;}
.y131{bottom:454.680039px;}
.y186{bottom:455.040047px;}
.yf8{bottom:455.940033px;}
.y157{bottom:456.840088px;}
.y48{bottom:462.240074px;}
.yc5{bottom:467.640060px;}
.ye6{bottom:471.240074px;}
.y10a{bottom:473.580093px;}
.y17{bottom:475.200096px;}
.y130{bottom:475.380066px;}
.y185{bottom:475.740074px;}
.y71{bottom:476.640060px;}
.y156{bottom:477.540047px;}
.y47{bottom:482.940033px;}
.yf7{bottom:494.640060px;}
.y12f{bottom:496.080093px;}
.y70{bottom:497.340088px;}
.y155{bottom:498.240074px;}
.y46{bottom:503.640060px;}
.y16{bottom:504.900055px;}
.ye5{bottom:509.940033px;}
.yf6{bottom:515.340088px;}
.ya0{bottom:516.960091px;}
.y184{bottom:517.320099px;}
.y6f{bottom:518.040047px;}
.y154{bottom:518.940033px;}
.y45{bottom:524.340088px;}
.ye4{bottom:530.640060px;}
.yf5{bottom:536.040047px;}
.y9f{bottom:537.660049px;}
.y12e{bottom:537.840088px;}
.y6e{bottom:538.740074px;}
.y153{bottom:539.640060px;}
.y44{bottom:545.040047px;}
.y15{bottom:546.660049px;}
.ye3{bottom:551.340088px;}
.yf4{bottom:556.740074px;}
.y9e{bottom:558.360077px;}
.y12d{bottom:558.540047px;}
.y183{bottom:559.080093px;}
.yc4{bottom:559.440033px;}
.y152{bottom:560.340088px;}
.y43{bottom:565.740074px;}
.y6d{bottom:568.440033px;}
.ye2{bottom:572.040047px;}
.yf3{bottom:577.440033px;}
.y12c{bottom:579.240074px;}
.y182{bottom:579.780052px;}
.yc3{bottom:580.140060px;}
.y151{bottom:581.040047px;}
.y42{bottom:586.440033px;}
.y14{bottom:588.420043px;}
.ye1{bottom:592.740074px;}
.y6c{bottom:598.140060px;}
.y12b{bottom:599.940033px;}
.y9d{bottom:600.120072px;}
.y181{bottom:600.480079px;}
.yc2{bottom:600.840088px;}
.y150{bottom:601.740074px;}
.y41{bottom:607.140060px;}
.y13{bottom:609.120072px;}
.ye0{bottom:613.440033px;}
.y6b{bottom:618.840088px;}
.y12a{bottom:620.640060px;}
.y9c{bottom:620.820099px;}
.y180{bottom:621.180039px;}
.yc1{bottom:621.540047px;}
.y14f{bottom:622.440033px;}
.y40{bottom:627.840088px;}
.y12{bottom:629.820099px;}
.ydf{bottom:634.140060px;}
.y6a{bottom:639.540047px;}
.y9b{bottom:641.520058px;}
.y17f{bottom:641.880066px;}
.yc0{bottom:642.240074px;}
.y14e{bottom:643.140060px;}
.y3f{bottom:648.540047px;}
.y11{bottom:650.520058px;}
.yde{bottom:654.840088px;}
.y69{bottom:660.240074px;}
.y129{bottom:662.220085px;}
.y17e{bottom:662.580093px;}
.ybf{bottom:662.940033px;}
.y14d{bottom:663.840088px;}
.y3e{bottom:669.240074px;}
.y10{bottom:671.220085px;}
.ydd{bottom:675.540047px;}
.y68{bottom:680.940033px;}
.y128{bottom:682.920043px;}
.y9a{bottom:683.100083px;}
.y17d{bottom:683.280052px;}
.ybe{bottom:683.640060px;}
.y14c{bottom:684.540047px;}
.y3d{bottom:689.940067px;}
.yf{bottom:691.920078px;}
.ydc{bottom:696.240074px;}
.y67{bottom:701.640060px;}
.y127{bottom:703.620072px;}
.y17c{bottom:703.980079px;}
.y99{bottom:704.340054px;}
.y14b{bottom:705.240074px;}
.y3c{bottom:710.640060px;}
.ye{bottom:712.620072px;}
.ydb{bottom:716.940067px;}
.y66{bottom:722.340054px;}
.y126{bottom:724.320065px;}
.y17b{bottom:724.680073px;}
.ybd{bottom:725.040081px;}
.y14a{bottom:725.940067px;}
.y95{bottom:727.020058px;}
.y98{bottom:729.000068px;}
.y3b{bottom:731.340054px;}
.yd{bottom:733.140060px;}
.yda{bottom:737.640060px;}
.y16a{bottom:740.340054px;}
.y65{bottom:743.040081px;}
.y125{bottom:745.020058px;}
.y17a{bottom:745.380066px;}
.y149{bottom:746.640060px;}
.y94{bottom:749.700061px;}
.yc{bottom:753.840054px;}
.yd9{bottom:758.340054px;}
.y3a{bottom:761.040081px;}
.y64{bottom:763.740074px;}
.y124{bottom:765.720051px;}
.y179{bottom:766.080059px;}
.ybc{bottom:766.620072px;}
.y148{bottom:767.340054px;}
.y169{bottom:770.040081px;}
.y93{bottom:770.400055px;}
.yf2{bottom:772.740074px;}
.yb{bottom:774.540081px;}
.yd8{bottom:779.040081px;}
.y39{bottom:781.740074px;}
.y109{bottom:784.440067px;}
.y123{bottom:786.420078px;}
.y178{bottom:786.780052px;}
.ybb{bottom:787.320065px;}
.y147{bottom:788.040081px;}
.y97{bottom:791.100083px;}
.y63{bottom:793.440067px;}
.ya{bottom:795.240074px;}
.yd7{bottom:799.740074px;}
.y38{bottom:802.440067px;}
.y108{bottom:805.140060px;}
.y122{bottom:807.120072px;}
.y146{bottom:808.740074px;}
.y96{bottom:811.800076px;}
.y62{bottom:814.140060px;}
.y9{bottom:815.940067px;}
.yd6{bottom:820.440067px;}
.y37{bottom:823.140060px;}
.y107{bottom:825.840054px;}
.y177{bottom:828.540081px;}
.yba{bottom:829.080059px;}
.y145{bottom:829.440067px;}
.y92{bottom:835.380066px;}
.y8{bottom:836.640060px;}
.yd5{bottom:841.140060px;}
.y36{bottom:843.840054px;}
.y121{bottom:848.880066px;}
.y8e{bottom:849.600083px;}
.yb9{bottom:849.780052px;}
.y144{bottom:850.140060px;}
.y106{bottom:855.540081px;}
.y91{bottom:860.040081px;}
.yd4{bottom:861.840054px;}
.yf1{bottom:864.540081px;}
.y120{bottom:869.580059px;}
.y176{bottom:870.120072px;}
.y8c{bottom:870.300076px;}
.yb8{bottom:870.480079px;}
.y143{bottom:870.840054px;}
.y35{bottom:873.540081px;}
.y7{bottom:878.400055px;}
.y90{bottom:880.740074px;}
.yd3{bottom:882.540081px;}
.yf0{bottom:885.240074px;}
.y11f{bottom:890.280052px;}
.y175{bottom:890.820065px;}
.y8d{bottom:891.000068px;}
.y142{bottom:891.540081px;}
.y61{bottom:894.240074px;}
.y8f{bottom:901.440067px;}
.y34{bottom:903.240074px;}
.yef{bottom:905.940067px;}
.y11e{bottom:910.980079px;}
.y174{bottom:911.520058px;}
.yb7{bottom:912.240074px;}
.y60{bottom:914.940067px;}
.y6{bottom:920.880066px;}
.y33{bottom:923.940067px;}
.y8a{bottom:924.840054px;}
.yee{bottom:926.640060px;}
.y173{bottom:932.220051px;}
.yb6{bottom:932.940067px;}
.y5f{bottom:935.640060px;}
.y32{bottom:944.640060px;}
.yed{bottom:947.340054px;}
.y88{bottom:949.500068px;}
.y11d{bottom:952.740074px;}
.yb5{bottom:953.640060px;}
.y5e{bottom:956.340054px;}
.y5{bottom:962.820065px;}
.y31{bottom:965.340054px;}
.yec{bottom:968.040081px;}
.y89{bottom:970.200061px;}
.y172{bottom:973.980079px;}
.yb4{bottom:974.340054px;}
.y5d{bottom:977.040064px;}
.y30{bottom:986.040064px;}
.y87{bottom:993.780069px;}
.y11c{bottom:994.320065px;}
.yb3{bottom:995.040064px;}
.y5c{bottom:997.740074px;}
.y2f{bottom:1006.740074px;}
.y86{bottom:1008.000068px;}
.y4{bottom:1013.040064px;}
.y11b{bottom:1015.020058px;}
.yb2{bottom:1015.740074px;}
.y5b{bottom:1018.440067px;}
.y2e{bottom:1027.440067px;}
.y11a{bottom:1035.720068px;}
.yb1{bottom:1036.440067px;}
.y5a{bottom:1039.140060px;}
.y84{bottom:1041.840070px;}
.y2d{bottom:1048.140060px;}
.y3{bottom:1049.580059px;}
.y119{bottom:1056.420061px;}
.yb0{bottom:1057.140060px;}
.y59{bottom:1059.840070px;}
.y82{bottom:1066.500068px;}
.y2c{bottom:1068.840070px;}
.yaf{bottom:1077.840070px;}
.y83{bottom:1087.200061px;}
.y2b{bottom:1089.540064px;}
.y2{bottom:1091.340070px;}
.y118{bottom:1098.180073px;}
.yae{bottom:1098.540064px;}
.y2a{bottom:1110.240074px;}
.y80{bottom:1110.780069px;}
.y7f{bottom:1114.740074px;}
.yad{bottom:1119.240066px;}
.y81{bottom:1125.000068px;}
.y7d{bottom:1131.480063px;}
.y1{bottom:1134.360068px;}
.y29{bottom:1139.940067px;}
.h8{height:20.159998px;}
.ha{height:20.160015px;}
.h7{height:20.520006px;}
.h5{height:42.329353px;}
.h6{height:52.138677px;}
.hb{height:59.345979px;}
.h3{height:63.178154px;}
.h2{height:69.344443px;}
.h4{height:69.689362px;}
.h9{height:104.938150px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w6{width:5.039979px;}
.w3{width:9.000000px;}
.w9{width:10.439998px;}
.w8{width:60.120003px;}
.wb{width:64.439964px;}
.wc{width:74.519989px;}
.wa{width:96.480011px;}
.w4{width:97.559967px;}
.w2{width:101.519989px;}
.w5{width:139.500000px;}
.w7{width:142.739988px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.959997px;}
.x5{left:90.180005px;}
.x3{left:111.959997px;}
.x1{left:115.920001px;}
.x4{left:138.959997px;}
.x11{left:165.960005px;}
.x12{left:192.960005px;}
.x6{left:197.280001px;}
.xa{left:340.019989px;}
.xb{left:400.139992px;}
.xc{left:410.579990px;}
.xf{left:587.159981px;}
.x7{left:659.340019px;}
.xe{left:723.779983px;}
.x10{left:733.860008px;}
.xd{left:755.820030px;}
.x8{left:756.899987px;}
.x9{left:798.840019px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320008pt;}
.v3{vertical-align:37.119996pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000500pt;}
.lsa{letter-spacing:0.126800pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.ls9{letter-spacing:0.638750pt;}
.ls7{letter-spacing:0.638810pt;}
.ls8{letter-spacing:0.638814pt;}
.ls4{letter-spacing:30.271334pt;}
.lsb{letter-spacing:49.285206pt;}
.ls2{letter-spacing:56.965202pt;}
.ls5{letter-spacing:920.959483pt;}
.ws1{word-spacing:-53.122000pt;}
.ws0{word-spacing:-16.000601pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-1402.240529pt;}
._3{margin-left:-7.541033pt;}
._4{margin-left:-4.480168pt;}
._5{margin-left:-3.080988pt;}
._2{margin-left:-1.396802pt;}
._0{width:1.033781pt;}
._1{width:1.941208pt;}
._b{width:2.871094pt;}
._7{width:4.056152pt;}
._8{width:5.143193pt;}
._6{width:7.841044pt;}
._9{width:9.067841pt;}
._a{width:10.218884pt;}
._d{width:98.361674pt;}
._c{width:172.991286pt;}
._e{width:273.150578pt;}
.fs2{font-size:42.881600pt;}
.fs4{font-size:53.122000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.519989pt;}
.y7e{bottom:3.520004pt;}
.y8b{bottom:3.520020pt;}
.yeb{bottom:82.080079pt;}
.yac{bottom:90.720093pt;}
.y141{bottom:91.360108pt;}
.y168{bottom:93.280030pt;}
.y58{bottom:100.480042pt;}
.y28{bottom:101.600037pt;}
.yd2{bottom:105.280030pt;}
.yab{bottom:109.120057pt;}
.y117{bottom:109.760071pt;}
.y167{bottom:111.680054pt;}
.y171{bottom:115.360047pt;}
.yea{bottom:118.880066pt;}
.y27{bottom:120.000061pt;}
.yaa{bottom:127.520081pt;}
.y140{bottom:128.160035pt;}
.y166{bottom:130.080079pt;}
.y7c{bottom:130.560059pt;}
.yd1{bottom:131.680054pt;}
.y170{bottom:133.760071pt;}
.y105{bottom:134.080079pt;}
.y57{bottom:134.880066pt;}
.ye9{bottom:137.280030pt;}
.y26{bottom:138.400086pt;}
.y116{bottom:144.160035pt;}
.y13f{bottom:146.560059pt;}
.y165{bottom:148.480042pt;}
.y7b{bottom:148.960083pt;}
.yd0{bottom:150.080079pt;}
.y16f{bottom:152.160035pt;}
.y104{bottom:152.480042pt;}
.y56{bottom:153.280030pt;}
.ye8{bottom:155.680054pt;}
.y25{bottom:156.800049pt;}
.ya9{bottom:164.640076pt;}
.y13e{bottom:164.960083pt;}
.y164{bottom:166.880066pt;}
.ycf{bottom:168.480042pt;}
.y16e{bottom:170.560059pt;}
.y103{bottom:170.880066pt;}
.y55{bottom:171.680054pt;}
.y24{bottom:175.200074pt;}
.y115{bottom:181.280030pt;}
.ye7{bottom:182.080079pt;}
.ya8{bottom:183.040039pt;}
.y13d{bottom:183.360047pt;}
.y163{bottom:185.280030pt;}
.y7a{bottom:186.080079pt;}
.yce{bottom:186.880066pt;}
.y16d{bottom:188.960083pt;}
.y102{bottom:189.280030pt;}
.y54{bottom:190.080079pt;}
.y23{bottom:193.600037pt;}
.y114{bottom:199.680054pt;}
.ya7{bottom:201.440064pt;}
.y13c{bottom:201.760071pt;}
.y162{bottom:203.680054pt;}
.ycd{bottom:205.280030pt;}
.y101{bottom:207.680054pt;}
.y53{bottom:208.480042pt;}
.y22{bottom:212.000061pt;}
.y113{bottom:218.080079pt;}
.y13b{bottom:220.160035pt;}
.y161{bottom:222.080079pt;}
.y79{bottom:223.200074pt;}
.ycc{bottom:223.680054pt;}
.y100{bottom:226.080079pt;}
.y52{bottom:226.880066pt;}
.y21{bottom:230.400086pt;}
.y112{bottom:236.480042pt;}
.ya6{bottom:238.400086pt;}
.y13a{bottom:238.560059pt;}
.y160{bottom:240.480042pt;}
.y78{bottom:241.600037pt;}
.ycb{bottom:242.080079pt;}
.yff{bottom:244.480042pt;}
.y51{bottom:245.280030pt;}
.y20{bottom:248.800049pt;}
.y111{bottom:254.880066pt;}
.ya5{bottom:256.800049pt;}
.y139{bottom:256.960083pt;}
.y15f{bottom:258.880066pt;}
.y77{bottom:260.000061pt;}
.yca{bottom:260.480042pt;}
.yfe{bottom:262.880066pt;}
.y50{bottom:263.680054pt;}
.y1f{bottom:267.200074pt;}
.y110{bottom:273.280030pt;}
.ya4{bottom:275.200074pt;}
.y138{bottom:275.360047pt;}
.y15e{bottom:277.280030pt;}
.yc9{bottom:278.880066pt;}
.yfd{bottom:281.280030pt;}
.y4f{bottom:282.080079pt;}
.y1e{bottom:285.600037pt;}
.ya3{bottom:293.600037pt;}
.y137{bottom:293.760071pt;}
.y15d{bottom:295.680054pt;}
.y76{bottom:296.960083pt;}
.yc8{bottom:297.280030pt;}
.yfc{bottom:299.680054pt;}
.y16c{bottom:300.000061pt;}
.y4e{bottom:300.480042pt;}
.y1d{bottom:304.000061pt;}
.y10f{bottom:310.400086pt;}
.ya2{bottom:312.000061pt;}
.y136{bottom:312.160035pt;}
.y15c{bottom:314.080079pt;}
.yc7{bottom:315.680054pt;}
.y4d{bottom:318.880066pt;}
.y1c{bottom:322.400086pt;}
.yfb{bottom:326.080079pt;}
.y10e{bottom:328.800049pt;}
.ya1{bottom:330.400086pt;}
.y135{bottom:330.560059pt;}
.y15b{bottom:332.480042pt;}
.y75{bottom:334.080079pt;}
.y16b{bottom:336.960083pt;}
.y4c{bottom:337.280030pt;}
.y10d{bottom:347.200074pt;}
.y1b{bottom:348.800049pt;}
.y134{bottom:348.960083pt;}
.y189{bottom:349.280030pt;}
.y15a{bottom:350.880066pt;}
.y74{bottom:352.480042pt;}
.y4b{bottom:355.680054pt;}
.yfa{bottom:360.480042pt;}
.y10c{bottom:365.600037pt;}
.y1a{bottom:367.200074pt;}
.y133{bottom:367.360047pt;}
.y188{bottom:367.680054pt;}
.y159{bottom:369.280030pt;}
.y73{bottom:370.880066pt;}
.y4a{bottom:374.080079pt;}
.yf9{bottom:378.880066pt;}
.y10b{bottom:384.000061pt;}
.y19{bottom:385.600037pt;}
.y132{bottom:385.760071pt;}
.y187{bottom:386.080079pt;}
.y158{bottom:387.680054pt;}
.y72{bottom:389.280030pt;}
.y49{bottom:392.480042pt;}
.yc6{bottom:397.280030pt;}
.y18{bottom:404.000061pt;}
.y131{bottom:404.160035pt;}
.y186{bottom:404.480042pt;}
.yf8{bottom:405.280030pt;}
.y157{bottom:406.080079pt;}
.y48{bottom:410.880066pt;}
.yc5{bottom:415.680054pt;}
.ye6{bottom:418.880066pt;}
.y10a{bottom:420.960083pt;}
.y17{bottom:422.400086pt;}
.y130{bottom:422.560059pt;}
.y185{bottom:422.880066pt;}
.y71{bottom:423.680054pt;}
.y156{bottom:424.480042pt;}
.y47{bottom:429.280030pt;}
.yf7{bottom:439.680054pt;}
.y12f{bottom:440.960083pt;}
.y70{bottom:442.080079pt;}
.y155{bottom:442.880066pt;}
.y46{bottom:447.680054pt;}
.y16{bottom:448.800049pt;}
.ye5{bottom:453.280030pt;}
.yf6{bottom:458.080079pt;}
.ya0{bottom:459.520081pt;}
.y184{bottom:459.840088pt;}
.y6f{bottom:460.480042pt;}
.y154{bottom:461.280030pt;}
.y45{bottom:466.080079pt;}
.ye4{bottom:471.680054pt;}
.yf5{bottom:476.480042pt;}
.y9f{bottom:477.920044pt;}
.y12e{bottom:478.080079pt;}
.y6e{bottom:478.880066pt;}
.y153{bottom:479.680054pt;}
.y44{bottom:484.480042pt;}
.y15{bottom:485.920044pt;}
.ye3{bottom:490.080079pt;}
.yf4{bottom:494.880066pt;}
.y9e{bottom:496.320069pt;}
.y12d{bottom:496.480042pt;}
.y183{bottom:496.960083pt;}
.yc4{bottom:497.280030pt;}
.y152{bottom:498.080079pt;}
.y43{bottom:502.880066pt;}
.y6d{bottom:505.280030pt;}
.ye2{bottom:508.480042pt;}
.yf3{bottom:513.280030pt;}
.y12c{bottom:514.880066pt;}
.y182{bottom:515.360047pt;}
.yc3{bottom:515.680054pt;}
.y151{bottom:516.480042pt;}
.y42{bottom:521.280030pt;}
.y14{bottom:523.040039pt;}
.ye1{bottom:526.880066pt;}
.y6c{bottom:531.680054pt;}
.y12b{bottom:533.280030pt;}
.y9d{bottom:533.440064pt;}
.y181{bottom:533.760071pt;}
.yc2{bottom:534.080079pt;}
.y150{bottom:534.880066pt;}
.y41{bottom:539.680054pt;}
.y13{bottom:541.440064pt;}
.ye0{bottom:545.280030pt;}
.y6b{bottom:550.080079pt;}
.y12a{bottom:551.680054pt;}
.y9c{bottom:551.840088pt;}
.y180{bottom:552.160035pt;}
.yc1{bottom:552.480042pt;}
.y14f{bottom:553.280030pt;}
.y40{bottom:558.080079pt;}
.y12{bottom:559.840088pt;}
.ydf{bottom:563.680054pt;}
.y6a{bottom:568.480042pt;}
.y9b{bottom:570.240052pt;}
.y17f{bottom:570.560059pt;}
.yc0{bottom:570.880066pt;}
.y14e{bottom:571.680054pt;}
.y3f{bottom:576.480042pt;}
.y11{bottom:578.240052pt;}
.yde{bottom:582.080079pt;}
.y69{bottom:586.880066pt;}
.y129{bottom:588.640076pt;}
.y17e{bottom:588.960083pt;}
.ybf{bottom:589.280030pt;}
.y14d{bottom:590.080079pt;}
.y3e{bottom:594.880066pt;}
.y10{bottom:596.640076pt;}
.ydd{bottom:600.480042pt;}
.y68{bottom:605.280030pt;}
.y128{bottom:607.040039pt;}
.y9a{bottom:607.200074pt;}
.y17d{bottom:607.360047pt;}
.ybe{bottom:607.680054pt;}
.y14c{bottom:608.480042pt;}
.y3d{bottom:613.280060pt;}
.yf{bottom:615.040070pt;}
.ydc{bottom:618.880066pt;}
.y67{bottom:623.680054pt;}
.y127{bottom:625.440064pt;}
.y17c{bottom:625.760071pt;}
.y99{bottom:626.080048pt;}
.y14b{bottom:626.880066pt;}
.y3c{bottom:631.680054pt;}
.ye{bottom:633.440064pt;}
.ydb{bottom:637.280060pt;}
.y66{bottom:642.080048pt;}
.y126{bottom:643.840058pt;}
.y17b{bottom:644.160065pt;}
.ybd{bottom:644.480072pt;}
.y14a{bottom:645.280060pt;}
.y95{bottom:646.240052pt;}
.y98{bottom:648.000061pt;}
.y3b{bottom:650.080048pt;}
.yd{bottom:651.680054pt;}
.yda{bottom:655.680054pt;}
.y16a{bottom:658.080048pt;}
.y65{bottom:660.480072pt;}
.y125{bottom:662.240052pt;}
.y17a{bottom:662.560059pt;}
.y149{bottom:663.680054pt;}
.y94{bottom:666.400055pt;}
.yc{bottom:670.080048pt;}
.yd9{bottom:674.080048pt;}
.y3a{bottom:676.480072pt;}
.y64{bottom:678.880066pt;}
.y124{bottom:680.640046pt;}
.y179{bottom:680.960053pt;}
.ybc{bottom:681.440064pt;}
.y148{bottom:682.080048pt;}
.y169{bottom:684.480072pt;}
.y93{bottom:684.800049pt;}
.yf2{bottom:686.880066pt;}
.yb{bottom:688.480072pt;}
.yd8{bottom:692.480072pt;}
.y39{bottom:694.880066pt;}
.y109{bottom:697.280060pt;}
.y123{bottom:699.040070pt;}
.y178{bottom:699.360047pt;}
.ybb{bottom:699.840058pt;}
.y147{bottom:700.480072pt;}
.y97{bottom:703.200074pt;}
.y63{bottom:705.280060pt;}
.ya{bottom:706.880066pt;}
.yd7{bottom:710.880066pt;}
.y38{bottom:713.280060pt;}
.y108{bottom:715.680054pt;}
.y122{bottom:717.440064pt;}
.y146{bottom:718.880066pt;}
.y96{bottom:721.600068pt;}
.y62{bottom:723.680054pt;}
.y9{bottom:725.280060pt;}
.yd6{bottom:729.280060pt;}
.y37{bottom:731.680054pt;}
.y107{bottom:734.080048pt;}
.y177{bottom:736.480072pt;}
.yba{bottom:736.960053pt;}
.y145{bottom:737.280060pt;}
.y92{bottom:742.560059pt;}
.y8{bottom:743.680054pt;}
.yd5{bottom:747.680054pt;}
.y36{bottom:750.080048pt;}
.y121{bottom:754.560059pt;}
.y8e{bottom:755.200074pt;}
.yb9{bottom:755.360047pt;}
.y144{bottom:755.680054pt;}
.y106{bottom:760.480072pt;}
.y91{bottom:764.480072pt;}
.yd4{bottom:766.080048pt;}
.yf1{bottom:768.480072pt;}
.y120{bottom:772.960053pt;}
.y176{bottom:773.440064pt;}
.y8c{bottom:773.600068pt;}
.yb8{bottom:773.760071pt;}
.y143{bottom:774.080048pt;}
.y35{bottom:776.480072pt;}
.y7{bottom:780.800049pt;}
.y90{bottom:782.880066pt;}
.yd3{bottom:784.480072pt;}
.yf0{bottom:786.880066pt;}
.y11f{bottom:791.360047pt;}
.y175{bottom:791.840058pt;}
.y8d{bottom:792.000061pt;}
.y142{bottom:792.480072pt;}
.y61{bottom:794.880066pt;}
.y8f{bottom:801.280060pt;}
.y34{bottom:802.880066pt;}
.yef{bottom:805.280060pt;}
.y11e{bottom:809.760071pt;}
.y174{bottom:810.240052pt;}
.yb7{bottom:810.880066pt;}
.y60{bottom:813.280060pt;}
.y6{bottom:818.560059pt;}
.y33{bottom:821.280060pt;}
.y8a{bottom:822.080048pt;}
.yee{bottom:823.680054pt;}
.y173{bottom:828.640046pt;}
.yb6{bottom:829.280060pt;}
.y5f{bottom:831.680054pt;}
.y32{bottom:839.680054pt;}
.yed{bottom:842.080048pt;}
.y88{bottom:844.000061pt;}
.y11d{bottom:846.880066pt;}
.yb5{bottom:847.680054pt;}
.y5e{bottom:850.080048pt;}
.y5{bottom:855.840058pt;}
.y31{bottom:858.080048pt;}
.yec{bottom:860.480072pt;}
.y89{bottom:862.400055pt;}
.y172{bottom:865.760071pt;}
.yb4{bottom:866.080048pt;}
.y5d{bottom:868.480057pt;}
.y30{bottom:876.480057pt;}
.y87{bottom:883.360062pt;}
.y11c{bottom:883.840058pt;}
.yb3{bottom:884.480057pt;}
.y5c{bottom:886.880066pt;}
.y2f{bottom:894.880066pt;}
.y86{bottom:896.000061pt;}
.y4{bottom:900.480057pt;}
.y11b{bottom:902.240052pt;}
.yb2{bottom:902.880066pt;}
.y5b{bottom:905.280060pt;}
.y2e{bottom:913.280060pt;}
.y11a{bottom:920.640061pt;}
.yb1{bottom:921.280060pt;}
.y5a{bottom:923.680054pt;}
.y84{bottom:926.080063pt;}
.y2d{bottom:931.680054pt;}
.y3{bottom:932.960053pt;}
.y119{bottom:939.040055pt;}
.yb0{bottom:939.680054pt;}
.y59{bottom:942.080063pt;}
.y82{bottom:948.000061pt;}
.y2c{bottom:950.080063pt;}
.yaf{bottom:958.080063pt;}
.y83{bottom:966.400055pt;}
.y2b{bottom:968.480057pt;}
.y2{bottom:970.080063pt;}
.y118{bottom:976.160065pt;}
.yae{bottom:976.480057pt;}
.y2a{bottom:986.880066pt;}
.y80{bottom:987.360062pt;}
.y7f{bottom:990.880066pt;}
.yad{bottom:994.880059pt;}
.y81{bottom:1000.000061pt;}
.y7d{bottom:1005.760056pt;}
.y1{bottom:1008.320061pt;}
.y29{bottom:1013.280060pt;}
.h8{height:17.919998pt;}
.ha{height:17.920013pt;}
.h7{height:18.240005pt;}
.h5{height:37.626091pt;}
.h6{height:46.345491pt;}
.hb{height:52.751981pt;}
.h3{height:56.158359pt;}
.h2{height:61.639505pt;}
.h4{height:61.946099pt;}
.h9{height:93.278355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w6{width:4.479981pt;}
.w3{width:8.000000pt;}
.w9{width:9.279998pt;}
.w8{width:53.440003pt;}
.wb{width:57.279968pt;}
.wc{width:66.239990pt;}
.wa{width:85.760010pt;}
.w4{width:86.719971pt;}
.w2{width:90.239990pt;}
.w5{width:124.000000pt;}
.w7{width:126.879989pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.519997pt;}
.x5{left:80.160004pt;}
.x3{left:99.519997pt;}
.x1{left:103.040001pt;}
.x4{left:123.519997pt;}
.x11{left:147.520004pt;}
.x12{left:171.520004pt;}
.x6{left:175.360001pt;}
.xa{left:302.239990pt;}
.xb{left:355.679993pt;}
.xc{left:364.959991pt;}
.xf{left:521.919983pt;}
.x7{left:586.080017pt;}
.xe{left:643.359985pt;}
.x10{left:652.320007pt;}
.xd{left:671.840027pt;}
.x8{left:672.799988pt;}
.x9{left:710.080017pt;}
}




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