
    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_97d3eced6488befec17ab427.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_3e4ff95a2668b28ad0c1dc8c.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_13c066cc34a2d06ed0dddba8.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_86fb68065162e47939f18435.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_b7eaa9bacacb72f253531b96.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_78cd5198c14d869048f9978f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_8ceb21f31d51194b0b8b7539.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985372;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_89ae3ce64833c4f100125c2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_34a5c1899146d6e75e186f37.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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;}
.v4{vertical-align:15.840085px;}
.v1{vertical-align:27.359941px;}
.v3{vertical-align:41.759996px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005836px;}
.ls10{letter-spacing:0.059908px;}
.lsf{letter-spacing:0.070903px;}
.lsc{letter-spacing:0.070907px;}
.lsa{letter-spacing:0.142582px;}
.ls8{letter-spacing:0.142650px;}
.ls9{letter-spacing:0.142681px;}
.ls4{letter-spacing:0.359064px;}
.ls0{letter-spacing:0.359109px;}
.ls1{letter-spacing:0.359114px;}
.lsb{letter-spacing:34.055251px;}
.lsd{letter-spacing:64.085848px;}
.ls5{letter-spacing:64.085852px;}
.ls3{letter-spacing:319.679297px;}
.lse{letter-spacing:488.879391px;}
.ls6{letter-spacing:537.839342px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(180,172,188),0 0.015em rgb(180,172,188),0.015em 0 rgb(180,172,188),0 -0.015em  rgb(180,172,188);}
.sc3{text-shadow:-0.015em 0 rgb(233,62,103),0 0.015em rgb(233,62,103),0.015em 0 rgb(233,62,103),0 -0.015em  rgb(233,62,103);}
.sc1{text-shadow:-0.015em 0 rgb(225,216,236),0 0.015em rgb(225,216,236),0.015em 0 rgb(225,216,236),0 -0.015em  rgb(225,216,236);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(180,172,188);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(233,62,103);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(225,216,236);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-81.363150px;}
.ws2{word-spacing:-72.002705px;}
.ws3{word-spacing:-59.762250px;}
.ws5{word-spacing:-35.863186px;}
.ws6{word-spacing:-35.857350px;}
.ws0{word-spacing:-18.000676px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-112.083016px;}
._2{margin-left:-8.483662px;}
._3{margin-left:-5.040189px;}
._4{margin-left:-3.723309px;}
._5{margin-left:-2.401039px;}
._0{margin-left:-1.314206px;}
._1{width:1.000513px;}
.fc9{color:rgb(181,89,8);}
.fc1{color:rgb(70,120,134);}
.fc7{color:rgb(132,48,206);}
.fc2{color:rgb(225,216,236);}
.fc4{color:rgb(233,62,103);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(180,172,188);}
.fcd{color:rgb(31,31,31);}
.fc5{color:rgb(27,28,29);}
.fca{color:rgb(153,105,0);}
.fc6{color:rgb(68,71,70);}
.fcc{color:rgb(25,103,210);}
.fc8{color:rgb(95,99,104);}
.fcb{color:rgb(24,128,56);}
.fs2{font-size:48.241800px;}
.fs5{font-size:59.762250px;}
.fs6{font-size:63.362250px;}
.fs3{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs0{font-size:81.363150px;}
.fs4{font-size:108.004050px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.959953px;}
.y23{bottom:3.959954px;}
.y39{bottom:3.959988px;}
.y2d{bottom:3.959996px;}
.y31{bottom:3.960005px;}
.y20{bottom:3.960021px;}
.y27{bottom:3.960022px;}
.yfb{bottom:90.720016px;}
.ybe{bottom:97.380066px;}
.y156{bottom:105.840088px;}
.yfa{bottom:107.640060px;}
.y8b{bottom:108.180039px;}
.y119{bottom:112.140060px;}
.ybd{bottom:114.480079px;}
.y118{bottom:116.100083px;}
.y139{bottom:121.140060px;}
.yf9{bottom:124.740074px;}
.y155{bottom:126.540047px;}
.y8a{bottom:128.880066px;}
.y170{bottom:129.600083px;}
.ybc{bottom:131.400055px;}
.y2a{bottom:133.020058px;}
.y18d{bottom:135.540047px;}
.y29{bottom:136.980079px;}
.y117{bottom:138.600083px;}
.yf8{bottom:141.660049px;}
.y138{bottom:141.840088px;}
.y2b{bottom:147.420043px;}
.y66{bottom:148.320099px;}
.ybb{bottom:148.500068px;}
.y89{bottom:149.580093px;}
.y16f{bottom:150.300041px;}
.y28{bottom:157.680039px;}
.yf7{bottom:158.580093px;}
.y137{bottom:162.540047px;}
.y154{bottom:165.240074px;}
.yba{bottom:165.420043px;}
.y88{bottom:170.280052px;}
.y65{bottom:171.540047px;}
.yf6{bottom:175.680039px;}
.y116{bottom:177.300041px;}
.y26{bottom:178.920043px;}
.y115{bottom:181.260064px;}
.yb9{bottom:182.340088px;}
.y25{bottom:182.880066px;}
.y136{bottom:183.240074px;}
.y153{bottom:185.940033px;}
.y16e{bottom:189.000068px;}
.y87{bottom:190.980079px;}
.yf5{bottom:192.600083px;}
.y18c{bottom:194.940033px;}
.yb8{bottom:199.440033px;}
.y24{bottom:203.580093px;}
.y114{bottom:203.760064px;}
.yf4{bottom:209.700096px;}
.y86{bottom:211.680039px;}
.y135{bottom:212.940033px;}
.y64{bottom:215.460091px;}
.y152{bottom:215.640060px;}
.yb7{bottom:216.360077px;}
.y18b{bottom:224.640060px;}
.y22{bottom:224.820099px;}
.yf3{bottom:226.620072px;}
.y21{bottom:228.780052px;}
.y16d{bottom:230.400055px;}
.y85{bottom:232.380066px;}
.yb6{bottom:233.460091px;}
.y134{bottom:233.640060px;}
.y63{bottom:236.160049px;}
.y113{bottom:242.640060px;}
.yf2{bottom:243.540047px;}
.y18a{bottom:245.340088px;}
.y1f{bottom:250.020058px;}
.yb5{bottom:250.380066px;}
.y16c{bottom:258.480079px;}
.yf1{bottom:260.640060px;}
.y133{bottom:263.340088px;}
.yb4{bottom:267.300041px;}
.y112{bottom:269.100083px;}
.y84{bottom:274.140060px;}
.y189{bottom:275.040047px;}
.yf0{bottom:277.560036px;}
.y62{bottom:277.920043px;}
.yb3{bottom:284.400055px;}
.y16b{bottom:284.940033px;}
.yef{bottom:294.660049px;}
.y83{bottom:294.840088px;}
.y61{bottom:297.900055px;}
.y1e{bottom:299.160049px;}
.yb2{bottom:301.320099px;}
.y60{bottom:301.860077px;}
.y111{bottom:303.300041px;}
.y188{bottom:304.740074px;}
.yee{bottom:311.580093px;}
.yb1{bottom:318.420043px;}
.y5f{bottom:323.100083px;}
.y16a{bottom:323.640060px;}
.y151{bottom:324.540047px;}
.y132{bottom:326.340088px;}
.y169{bottom:327.600083px;}
.yed{bottom:328.500068px;}
.y110{bottom:334.260064px;}
.y187{bottom:334.440033px;}
.yb0{bottom:335.340088px;}
.y82{bottom:336.960091px;}
.y5c{bottom:337.500068px;}
.y1d{bottom:340.740074px;}
.yec{bottom:345.600083px;}
.y131{bottom:347.040047px;}
.y5e{bottom:347.760064px;}
.y168{bottom:350.100083px;}
.yaf{bottom:352.260064px;}
.y5b{bottom:358.200096px;}
.y1c{bottom:361.440033px;}
.y10f{bottom:361.800041px;}
.yeb{bottom:362.520058px;}
.y5d{bottom:368.460091px;}
.yae{bottom:369.360077px;}
.y130{bottom:376.740074px;}
.yea{bottom:379.620072px;}
.y81{bottom:380.700096px;}
.yad{bottom:386.280052px;}
.y150{bottom:387.540047px;}
.y167{bottom:388.980079px;}
.y5a{bottom:389.700096px;}
.y166{bottom:392.940033px;}
.y59{bottom:393.660049px;}
.ye9{bottom:396.540047px;}
.y12f{bottom:397.440033px;}
.y80{bottom:401.400055px;}
.y1b{bottom:403.200096px;}
.yac{bottom:403.380066px;}
.y14f{bottom:408.240074px;}
.ye8{bottom:413.460091px;}
.y58{bottom:414.360077px;}
.y186{bottom:418.140060px;}
.yab{bottom:420.300041px;}
.y12e{bottom:427.140060px;}
.ye7{bottom:430.560036px;}
.y165{bottom:431.640060px;}
.y56{bottom:435.600083px;}
.yaa{bottom:437.220085px;}
.y14e{bottom:437.940033px;}
.y185{bottom:438.840088px;}
.y55{bottom:439.560036px;}
.y7f{bottom:443.160049px;}
.y1a{bottom:444.960091px;}
.ye6{bottom:447.480079px;}
.ya9{bottom:454.320099px;}
.y14d{bottom:458.640060px;}
.y54{bottom:460.260064px;}
.ye5{bottom:464.580093px;}
.y184{bottom:468.540047px;}
.ya8{bottom:471.240074px;}
.y53{bottom:481.500068px;}
.y7e{bottom:485.280052px;}
.y52{bottom:485.460091px;}
.y19{bottom:486.540047px;}
.y164{bottom:487.440033px;}
.ya7{bottom:488.340088px;}
.y183{bottom:489.240074px;}
.y12d{bottom:490.140060px;}
.ye4{bottom:498.420043px;}
.ya6{bottom:505.260064px;}
.y51{bottom:506.160049px;}
.y18{bottom:507.240074px;}
.y163{bottom:508.140060px;}
.y14c{bottom:509.040047px;}
.y182{bottom:509.940033px;}
.ye3{bottom:515.520058px;}
.ya5{bottom:522.180039px;}
.y50{bottom:527.400055px;}
.y17{bottom:527.940033px;}
.y12c{bottom:528.840088px;}
.y7d{bottom:529.200096px;}
.ye2{bottom:532.440033px;}
.y162{bottom:537.840088px;}
.y14b{bottom:538.740074px;}
.ya4{bottom:539.280052px;}
.y181{bottom:539.640060px;}
.y16{bottom:548.640060px;}
.y7c{bottom:549.180039px;}
.ye1{bottom:549.540047px;}
.ya3{bottom:556.200096px;}
.y180{bottom:560.340088px;}
.ye0{bottom:566.460091px;}
.y15{bottom:569.340088px;}
.y7b{bottom:569.880066px;}
.ya2{bottom:573.300041px;}
.y4f{bottom:576.540047px;}
.ydf{bottom:583.380066px;}
.y12b{bottom:588.240074px;}
.y14{bottom:590.040047px;}
.ya1{bottom:590.220085px;}
.y7a{bottom:595.080093px;}
.y4e{bottom:597.240074px;}
.yde{bottom:600.480079px;}
.y161{bottom:600.840088px;}
.y14a{bottom:601.740074px;}
.ya0{bottom:607.140060px;}
.y12a{bottom:608.940033px;}
.y13{bottom:610.740074px;}
.y79{bottom:615.780052px;}
.ydd{bottom:617.400055px;}
.y160{bottom:621.540047px;}
.y9f{bottom:624.240074px;}
.y149{bottom:627.480079px;}
.y10e{bottom:629.640060px;}
.y12{bottom:631.440033px;}
.ydc{bottom:634.500068px;}
.y129{bottom:638.640060px;}
.y4d{bottom:638.820099px;}
.y17f{bottom:640.440033px;}
.y78{bottom:640.980079px;}
.y9e{bottom:641.160049px;}
.y15f{bottom:642.240074px;}
.y10d{bottom:646.560036px;}
.ydb{bottom:651.420043px;}
.y11{bottom:652.140060px;}
.y9d{bottom:658.260064px;}
.y4c{bottom:658.980079px;}
.y128{bottom:659.340088px;}
.y77{bottom:661.680039px;}
.y4b{bottom:662.940033px;}
.y10c{bottom:663.660049px;}
.y148{bottom:667.980079px;}
.yda{bottom:668.340088px;}
.y15e{bottom:671.940033px;}
.y10{bottom:672.840088px;}
.y198{bottom:673.740074px;}
.y9c{bottom:675.180039px;}
.y10b{bottom:680.040047px;}
.y4a{bottom:684.180039px;}
.yd9{bottom:685.440033px;}
.y75{bottom:686.880066px;}
.y9b{bottom:692.100083px;}
.y15d{bottom:692.640060px;}
.yf{bottom:693.540081px;}
.y47{bottom:698.580059px;}
.y17e{bottom:699.480079px;}
.y76{bottom:701.280052px;}
.yd8{bottom:702.360077px;}
.y49{bottom:708.840054px;}
.y9a{bottom:709.200061px;}
.y127{bottom:709.740074px;}
.y74{bottom:711.540081px;}
.y197{bottom:712.440067px;}
.ye{bottom:714.240074px;}
.y46{bottom:719.280052px;}
.yd7{bottom:719.460056px;}
.y147{bottom:721.440067px;}
.y15c{bottom:722.340054px;}
.y99{bottom:726.120072px;}
.y48{bottom:729.540081px;}
.y126{bottom:730.440067px;}
.y17d{bottom:733.140060px;}
.yd{bottom:734.940067px;}
.yd6{bottom:736.380066px;}
.y146{bottom:742.140060px;}
.y10a{bottom:743.040081px;}
.y98{bottom:743.220051px;}
.y44{bottom:750.780052px;}
.y125{bottom:751.140060px;}
.yd5{bottom:753.300076px;}
.y17c{bottom:753.840054px;}
.y43{bottom:754.740074px;}
.yc{bottom:755.640060px;}
.y73{bottom:756.720051px;}
.y97{bottom:760.140060px;}
.y145{bottom:762.840054px;}
.yd4{bottom:770.400055px;}
.y42{bottom:771.480079px;}
.y124{bottom:771.840054px;}
.y17b{bottom:774.540081px;}
.y45{bottom:775.440067px;}
.yb{bottom:776.340054px;}
.y96{bottom:777.060070px;}
.y72{bottom:777.420078px;}
.y15b{bottom:780.840054px;}
.y144{bottom:783.540081px;}
.yd3{bottom:787.320065px;}
.y109{bottom:792.540081px;}
.y95{bottom:794.160049px;}
.y40{bottom:796.680073px;}
.ya{bottom:797.040081px;}
.y3f{bottom:800.640060px;}
.y123{bottom:801.540081px;}
.y143{bottom:804.240074px;}
.yd2{bottom:804.420078px;}
.y94{bottom:811.080059px;}
.y196{bottom:813.240074px;}
.y3e{bottom:817.380066px;}
.y9{bottom:817.740074px;}
.y71{bottom:820.260064px;}
.y41{bottom:821.340054px;}
.y17a{bottom:824.940067px;}
.y93{bottom:828.180073px;}
.y108{bottom:831.240074px;}
.y142{bottom:833.940067px;}
.yd1{bottom:838.260064px;}
.y3c{bottom:842.580059px;}
.y92{bottom:845.100083px;}
.y179{bottom:845.640060px;}
.y3b{bottom:846.540081px;}
.y107{bottom:851.940067px;}
.yd0{bottom:855.360077px;}
.y3d{bottom:856.980079px;}
.y8{bottom:859.500068px;}
.y91{bottom:860.940067px;}
.y195{bottom:863.640060px;}
.y141{bottom:865.440067px;}
.y70{bottom:867.060070px;}
.y3a{bottom:867.240074px;}
.ycf{bottom:872.280052px;}
.y106{bottom:872.640060px;}
.y178{bottom:875.340054px;}
.y194{bottom:884.340054px;}
.y6f{bottom:887.760064px;}
.y38{bottom:888.480079px;}
.yce{bottom:889.380066px;}
.y122{bottom:889.740074px;}
.y15a{bottom:890.640060px;}
.y7{bottom:901.800076px;}
.y90{bottom:901.980079px;}
.y105{bottom:902.340054px;}
.y177{bottom:905.040081px;}
.ycd{bottom:906.300076px;}
.y121{bottom:910.440067px;}
.y193{bottom:914.040081px;}
.y8f{bottom:922.680073px;}
.y104{bottom:923.040081px;}
.ycc{bottom:923.220051px;}
.y176{bottom:925.740074px;}
.y140{bottom:928.440067px;}
.y6e{bottom:929.340054px;}
.y120{bottom:931.140060px;}
.y192{bottom:934.740074px;}
.y37{bottom:937.440067px;}
.ycb{bottom:940.320065px;}
.y6{bottom:943.920078px;}
.y175{bottom:946.440067px;}
.y159{bottom:949.140060px;}
.y6d{bottom:950.040081px;}
.y8e{bottom:952.380066px;}
.y103{bottom:952.740074px;}
.yca{bottom:957.240074px;}
.y36{bottom:958.140060px;}
.y11f{bottom:960.840054px;}
.y191{bottom:964.440067px;}
.y158{bottom:969.840054px;}
.yc9{bottom:974.340054px;}
.y174{bottom:976.140060px;}
.y13f{bottom:977.940067px;}
.y35{bottom:978.840070px;}
.y102{bottom:982.440067px;}
.y11e{bottom:990.540064px;}
.yc8{bottom:991.260064px;}
.y6c{bottom:992.160067px;}
.y5{bottom:994.140060px;}
.y173{bottom:996.840070px;}
.y13e{bottom:998.640060px;}
.y157{bottom:999.540064px;}
.yc7{bottom:1008.180073px;}
.y101{bottom:1012.140060px;}
.y8d{bottom:1015.200061px;}
.y13d{bottom:1019.340070px;}
.y11d{bottom:1020.240074px;}
.y34{bottom:1020.600065px;}
.yc6{bottom:1025.280069px;}
.y172{bottom:1026.540064px;}
.y190{bottom:1027.440067px;}
.y4{bottom:1030.680073px;}
.y100{bottom:1032.840070px;}
.y6b{bottom:1036.080059px;}
.y33{bottom:1040.760064px;}
.y11c{bottom:1040.940067px;}
.yc5{bottom:1042.200061px;}
.y18f{bottom:1048.140060px;}
.y13c{bottom:1049.040064px;}
.y32{bottom:1054.980063px;}
.y171{bottom:1056.240074px;}
.y6a{bottom:1056.780069px;}
.yc4{bottom:1059.300058px;}
.yff{bottom:1062.540064px;}
.y18e{bottom:1068.840070px;}
.y13b{bottom:1069.740074px;}
.y11b{bottom:1070.640060px;}
.y3{bottom:1072.260064px;}
.yc3{bottom:1076.220068px;}
.y8c{bottom:1077.480063px;}
.yfe{bottom:1083.240074px;}
.y30{bottom:1086.660067px;}
.y2f{bottom:1090.620072px;}
.yc2{bottom:1093.140060px;}
.y69{bottom:1098.540064px;}
.y13a{bottom:1099.440067px;}
.yfd{bottom:1103.940067px;}
.yc1{bottom:1110.240074px;}
.y2e{bottom:1111.320065px;}
.y2{bottom:1114.380066px;}
.y68{bottom:1119.240066px;}
.yc0{bottom:1127.160067px;}
.y11a{bottom:1129.140069px;}
.y2c{bottom:1132.560070px;}
.yfc{bottom:1133.640069px;}
.y1{bottom:1137.780069px;}
.y67{bottom:1139.940067px;}
.ybf{bottom:1144.260064px;}
.h7{height:20.159981px;}
.h9{height:20.159998px;}
.hb{height:20.160015px;}
.h8{height:20.160049px;}
.hc{height:20.519989px;}
.h5{height:42.329353px;}
.h13{height:46.160389px;}
.h14{height:46.572535px;}
.hd{height:49.994065px;}
.h6{height:52.138677px;}
.h12{height:52.455095px;}
.h2{height:58.916773px;}
.h3{height:63.178154px;}
.hf{height:68.770997px;}
.h4{height:69.689294px;}
.he{height:78.208011px;}
.h10{height:79.018240px;}
.h11{height:79.018244px;}
.ha{height:104.938150px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w7{width:4.500000px;}
.w5{width:5.580007px;}
.w3{width:9.000000px;}
.w6{width:14.219999px;}
.w27{width:21.060001px;}
.w18{width:26.459988px;}
.w4{width:30.959988px;}
.w1b{width:41.939998px;}
.w1f{width:46.980003px;}
.w26{width:48.959988px;}
.w12{width:53.459988px;}
.w9{width:57.420009px;}
.w22{width:64.980011px;}
.w23{width:71.279984px;}
.w20{width:73.979993px;}
.w25{width:73.980003px;}
.w13{width:81.360008px;}
.w2{width:96.480010px;}
.wb{width:114.480010px;}
.w1d{width:129.419992px;}
.w10{width:138.420010px;}
.we{width:148.859991px;}
.w21{width:151.380006px;}
.w11{width:160.380014px;}
.wf{width:163.439965px;}
.wd{width:166.680003px;}
.wc{width:176.940016px;}
.w15{width:194.939998px;}
.w8{width:208.800007px;}
.w19{width:209.519989px;}
.w24{width:229.860008px;}
.w16{width:264.420009px;}
.w1a{width:331.919975px;}
.w1c{width:338.939981px;}
.w1e{width:349.919992px;}
.w17{width:352.620002px;}
.wa{width:363.240040px;}
.w14{width:432.720033px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:84.959997px;}
.x4{left:88.379998px;}
.x36{left:98.459997px;}
.x30{left:100.799998px;}
.x26{left:111.959997px;}
.x28{left:130.319996px;}
.x1{left:132.840002px;}
.xf{left:134.459997px;}
.x42{left:135.719999px;}
.x27{left:138.959997px;}
.x31{left:147.780001px;}
.xd{left:151.919992px;}
.x35{left:162.719999px;}
.x2d{left:165.960005px;}
.x2{left:174.240006px;}
.x34{left:178.740006px;}
.x5{left:184.860008px;}
.x20{left:188.460005px;}
.x10{left:191.340002px;}
.x2e{left:192.960005px;}
.x38{left:198.000000px;}
.x17{left:219.419992px;}
.x32{left:221.759994px;}
.x29{left:227.340002px;}
.x37{left:249.840002px;}
.x15{left:258.479994px;}
.x8{left:263.879998px;}
.x6{left:272.879998px;}
.x40{left:283.860008px;}
.x9{left:287.099997px;}
.x24{left:290.339985px;}
.x33{left:301.860008px;}
.x7{left:303.839985px;}
.x11{left:316.079990px;}
.x12{left:320.579990px;}
.xe{left:330.300007px;}
.x1b{left:334.079990px;}
.x3e{left:342.540012px;}
.x2b{left:356.759994px;}
.x39{left:362.339985px;}
.x43{left:363.600014px;}
.x3a{left:366.839985px;}
.x41{left:369.540012px;}
.x14{left:387.360008px;}
.x3f{left:391.500000px;}
.xa{left:402.300007px;}
.xb{left:406.800007px;}
.x1d{left:418.860008px;}
.x16{left:435.420010px;}
.x22{left:458.819996px;}
.x18{left:469.620002px;}
.x1c{left:472.500000px;}
.x19{left:474.120002px;}
.x1e{left:476.459988px;}
.x3b{left:492.480011px;}
.x3c{left:496.980011px;}
.x23{left:528.300007px;}
.x1f{left:557.819996px;}
.x2a{left:566.279983px;}
.x2c{left:577.259994px;}
.x25{left:595.799973px;}
.xc{left:615.600014px;}
.x1a{left:637.559967px;}
.x13{left:683.820030px;}
.x21{left:691.200027px;}
.x2f{left:722.519989px;}
.x3d{left:726.840019px;}
.x44{left:807.840019px;}
@media print{
.v2{vertical-align:-24.320008pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.080076pt;}
.v1{vertical-align:24.319948pt;}
.v3{vertical-align:37.119996pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005188pt;}
.ls10{letter-spacing:0.053252pt;}
.lsf{letter-spacing:0.063025pt;}
.lsc{letter-spacing:0.063029pt;}
.lsa{letter-spacing:0.126740pt;}
.ls8{letter-spacing:0.126800pt;}
.ls9{letter-spacing:0.126828pt;}
.ls4{letter-spacing:0.319168pt;}
.ls0{letter-spacing:0.319208pt;}
.ls1{letter-spacing:0.319212pt;}
.lsb{letter-spacing:30.271334pt;}
.lsd{letter-spacing:56.965198pt;}
.ls5{letter-spacing:56.965202pt;}
.ls3{letter-spacing:284.159375pt;}
.lse{letter-spacing:434.559459pt;}
.ls6{letter-spacing:478.079415pt;}
.ws4{word-spacing:-72.322800pt;}
.ws2{word-spacing:-64.002404pt;}
.ws3{word-spacing:-53.122000pt;}
.ws5{word-spacing:-31.878388pt;}
.ws6{word-spacing:-31.873200pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-99.629347pt;}
._2{margin-left:-7.541033pt;}
._3{margin-left:-4.480168pt;}
._4{margin-left:-3.309608pt;}
._5{margin-left:-2.134257pt;}
._0{margin-left:-1.168183pt;}
._1{width:0.889345pt;}
.fs2{font-size:42.881600pt;}
.fs5{font-size:53.122000pt;}
.fs6{font-size:56.322000pt;}
.fs3{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs0{font-size:72.322800pt;}
.fs4{font-size:96.003600pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.519958pt;}
.y23{bottom:3.519959pt;}
.y39{bottom:3.519989pt;}
.y2d{bottom:3.519996pt;}
.y31{bottom:3.520004pt;}
.y20{bottom:3.520019pt;}
.y27{bottom:3.520020pt;}
.yfb{bottom:80.640015pt;}
.ybe{bottom:86.560059pt;}
.y156{bottom:94.080079pt;}
.yfa{bottom:95.680054pt;}
.y8b{bottom:96.160035pt;}
.y119{bottom:99.680054pt;}
.ybd{bottom:101.760071pt;}
.y118{bottom:103.200074pt;}
.y139{bottom:107.680054pt;}
.yf9{bottom:110.880066pt;}
.y155{bottom:112.480042pt;}
.y8a{bottom:114.560059pt;}
.y170{bottom:115.200074pt;}
.ybc{bottom:116.800049pt;}
.y2a{bottom:118.240052pt;}
.y18d{bottom:120.480042pt;}
.y29{bottom:121.760071pt;}
.y117{bottom:123.200074pt;}
.yf8{bottom:125.920044pt;}
.y138{bottom:126.080079pt;}
.y2b{bottom:131.040039pt;}
.y66{bottom:131.840088pt;}
.ybb{bottom:132.000061pt;}
.y89{bottom:132.960083pt;}
.y16f{bottom:133.600037pt;}
.y28{bottom:140.160035pt;}
.yf7{bottom:140.960083pt;}
.y137{bottom:144.480042pt;}
.y154{bottom:146.880066pt;}
.yba{bottom:147.040039pt;}
.y88{bottom:151.360047pt;}
.y65{bottom:152.480042pt;}
.yf6{bottom:156.160035pt;}
.y116{bottom:157.600037pt;}
.y26{bottom:159.040039pt;}
.y115{bottom:161.120057pt;}
.yb9{bottom:162.080079pt;}
.y25{bottom:162.560059pt;}
.y136{bottom:162.880066pt;}
.y153{bottom:165.280030pt;}
.y16e{bottom:168.000061pt;}
.y87{bottom:169.760071pt;}
.yf5{bottom:171.200074pt;}
.y18c{bottom:173.280030pt;}
.yb8{bottom:177.280030pt;}
.y24{bottom:180.960083pt;}
.y114{bottom:181.120057pt;}
.yf4{bottom:186.400086pt;}
.y86{bottom:188.160035pt;}
.y135{bottom:189.280030pt;}
.y64{bottom:191.520081pt;}
.y152{bottom:191.680054pt;}
.yb7{bottom:192.320069pt;}
.y18b{bottom:199.680054pt;}
.y22{bottom:199.840088pt;}
.yf3{bottom:201.440064pt;}
.y21{bottom:203.360047pt;}
.y16d{bottom:204.800049pt;}
.y85{bottom:206.560059pt;}
.yb6{bottom:207.520081pt;}
.y134{bottom:207.680054pt;}
.y63{bottom:209.920044pt;}
.y113{bottom:215.680054pt;}
.yf2{bottom:216.480042pt;}
.y18a{bottom:218.080079pt;}
.y1f{bottom:222.240052pt;}
.yb5{bottom:222.560059pt;}
.y16c{bottom:229.760071pt;}
.yf1{bottom:231.680054pt;}
.y133{bottom:234.080079pt;}
.yb4{bottom:237.600037pt;}
.y112{bottom:239.200074pt;}
.y84{bottom:243.680054pt;}
.y189{bottom:244.480042pt;}
.yf0{bottom:246.720032pt;}
.y62{bottom:247.040039pt;}
.yb3{bottom:252.800049pt;}
.y16b{bottom:253.280030pt;}
.yef{bottom:261.920044pt;}
.y83{bottom:262.080079pt;}
.y61{bottom:264.800049pt;}
.y1e{bottom:265.920044pt;}
.yb2{bottom:267.840088pt;}
.y60{bottom:268.320069pt;}
.y111{bottom:269.600037pt;}
.y188{bottom:270.880066pt;}
.yee{bottom:276.960083pt;}
.yb1{bottom:283.040039pt;}
.y5f{bottom:287.200074pt;}
.y16a{bottom:287.680054pt;}
.y151{bottom:288.480042pt;}
.y132{bottom:290.080079pt;}
.y169{bottom:291.200074pt;}
.yed{bottom:292.000061pt;}
.y110{bottom:297.120057pt;}
.y187{bottom:297.280030pt;}
.yb0{bottom:298.080079pt;}
.y82{bottom:299.520081pt;}
.y5c{bottom:300.000061pt;}
.y1d{bottom:302.880066pt;}
.yec{bottom:307.200074pt;}
.y131{bottom:308.480042pt;}
.y5e{bottom:309.120057pt;}
.y168{bottom:311.200074pt;}
.yaf{bottom:313.120057pt;}
.y5b{bottom:318.400086pt;}
.y1c{bottom:321.280030pt;}
.y10f{bottom:321.600037pt;}
.yeb{bottom:322.240052pt;}
.y5d{bottom:327.520081pt;}
.yae{bottom:328.320069pt;}
.y130{bottom:334.880066pt;}
.yea{bottom:337.440064pt;}
.y81{bottom:338.400086pt;}
.yad{bottom:343.360047pt;}
.y150{bottom:344.480042pt;}
.y167{bottom:345.760071pt;}
.y5a{bottom:346.400086pt;}
.y166{bottom:349.280030pt;}
.y59{bottom:349.920044pt;}
.ye9{bottom:352.480042pt;}
.y12f{bottom:353.280030pt;}
.y80{bottom:356.800049pt;}
.y1b{bottom:358.400086pt;}
.yac{bottom:358.560059pt;}
.y14f{bottom:362.880066pt;}
.ye8{bottom:367.520081pt;}
.y58{bottom:368.320069pt;}
.y186{bottom:371.680054pt;}
.yab{bottom:373.600037pt;}
.y12e{bottom:379.680054pt;}
.ye7{bottom:382.720032pt;}
.y165{bottom:383.680054pt;}
.y56{bottom:387.200074pt;}
.yaa{bottom:388.640076pt;}
.y14e{bottom:389.280030pt;}
.y185{bottom:390.080079pt;}
.y55{bottom:390.720032pt;}
.y7f{bottom:393.920044pt;}
.y1a{bottom:395.520081pt;}
.ye6{bottom:397.760071pt;}
.ya9{bottom:403.840088pt;}
.y14d{bottom:407.680054pt;}
.y54{bottom:409.120057pt;}
.ye5{bottom:412.960083pt;}
.y184{bottom:416.480042pt;}
.ya8{bottom:418.880066pt;}
.y53{bottom:428.000061pt;}
.y7e{bottom:431.360047pt;}
.y52{bottom:431.520081pt;}
.y19{bottom:432.480042pt;}
.y164{bottom:433.280030pt;}
.ya7{bottom:434.080079pt;}
.y183{bottom:434.880066pt;}
.y12d{bottom:435.680054pt;}
.ye4{bottom:443.040039pt;}
.ya6{bottom:449.120057pt;}
.y51{bottom:449.920044pt;}
.y18{bottom:450.880066pt;}
.y163{bottom:451.680054pt;}
.y14c{bottom:452.480042pt;}
.y182{bottom:453.280030pt;}
.ye3{bottom:458.240052pt;}
.ya5{bottom:464.160035pt;}
.y50{bottom:468.800049pt;}
.y17{bottom:469.280030pt;}
.y12c{bottom:470.080079pt;}
.y7d{bottom:470.400086pt;}
.ye2{bottom:473.280030pt;}
.y162{bottom:478.080079pt;}
.y14b{bottom:478.880066pt;}
.ya4{bottom:479.360047pt;}
.y181{bottom:479.680054pt;}
.y16{bottom:487.680054pt;}
.y7c{bottom:488.160035pt;}
.ye1{bottom:488.480042pt;}
.ya3{bottom:494.400086pt;}
.y180{bottom:498.080079pt;}
.ye0{bottom:503.520081pt;}
.y15{bottom:506.080079pt;}
.y7b{bottom:506.560059pt;}
.ya2{bottom:509.600037pt;}
.y4f{bottom:512.480042pt;}
.ydf{bottom:518.560059pt;}
.y12b{bottom:522.880066pt;}
.y14{bottom:524.480042pt;}
.ya1{bottom:524.640076pt;}
.y7a{bottom:528.960083pt;}
.y4e{bottom:530.880066pt;}
.yde{bottom:533.760071pt;}
.y161{bottom:534.080079pt;}
.y14a{bottom:534.880066pt;}
.ya0{bottom:539.680054pt;}
.y12a{bottom:541.280030pt;}
.y13{bottom:542.880066pt;}
.y79{bottom:547.360047pt;}
.ydd{bottom:548.800049pt;}
.y160{bottom:552.480042pt;}
.y9f{bottom:554.880066pt;}
.y149{bottom:557.760071pt;}
.y10e{bottom:559.680054pt;}
.y12{bottom:561.280030pt;}
.ydc{bottom:564.000061pt;}
.y129{bottom:567.680054pt;}
.y4d{bottom:567.840088pt;}
.y17f{bottom:569.280030pt;}
.y78{bottom:569.760071pt;}
.y9e{bottom:569.920044pt;}
.y15f{bottom:570.880066pt;}
.y10d{bottom:574.720032pt;}
.ydb{bottom:579.040039pt;}
.y11{bottom:579.680054pt;}
.y9d{bottom:585.120057pt;}
.y4c{bottom:585.760071pt;}
.y128{bottom:586.080079pt;}
.y77{bottom:588.160035pt;}
.y4b{bottom:589.280030pt;}
.y10c{bottom:589.920044pt;}
.y148{bottom:593.760071pt;}
.yda{bottom:594.080079pt;}
.y15e{bottom:597.280030pt;}
.y10{bottom:598.080079pt;}
.y198{bottom:598.880066pt;}
.y9c{bottom:600.160035pt;}
.y10b{bottom:604.480042pt;}
.y4a{bottom:608.160035pt;}
.yd9{bottom:609.280030pt;}
.y75{bottom:610.560059pt;}
.y9b{bottom:615.200074pt;}
.y15d{bottom:615.680054pt;}
.yf{bottom:616.480072pt;}
.y47{bottom:620.960053pt;}
.y17e{bottom:621.760071pt;}
.y76{bottom:623.360047pt;}
.yd8{bottom:624.320069pt;}
.y49{bottom:630.080048pt;}
.y9a{bottom:630.400055pt;}
.y127{bottom:630.880066pt;}
.y74{bottom:632.480072pt;}
.y197{bottom:633.280060pt;}
.ye{bottom:634.880066pt;}
.y46{bottom:639.360047pt;}
.yd7{bottom:639.520050pt;}
.y147{bottom:641.280060pt;}
.y15c{bottom:642.080048pt;}
.y99{bottom:645.440064pt;}
.y48{bottom:648.480072pt;}
.y126{bottom:649.280060pt;}
.y17d{bottom:651.680054pt;}
.yd{bottom:653.280060pt;}
.yd6{bottom:654.560059pt;}
.y146{bottom:659.680054pt;}
.y10a{bottom:660.480072pt;}
.y98{bottom:660.640046pt;}
.y44{bottom:667.360047pt;}
.y125{bottom:667.680054pt;}
.yd5{bottom:669.600068pt;}
.y17c{bottom:670.080048pt;}
.y43{bottom:670.880066pt;}
.yc{bottom:671.680054pt;}
.y73{bottom:672.640046pt;}
.y97{bottom:675.680054pt;}
.y145{bottom:678.080048pt;}
.yd4{bottom:684.800049pt;}
.y42{bottom:685.760071pt;}
.y124{bottom:686.080048pt;}
.y17b{bottom:688.480072pt;}
.y45{bottom:689.280060pt;}
.yb{bottom:690.080048pt;}
.y96{bottom:690.720063pt;}
.y72{bottom:691.040070pt;}
.y15b{bottom:694.080048pt;}
.y144{bottom:696.480072pt;}
.yd3{bottom:699.840058pt;}
.y109{bottom:704.480072pt;}
.y95{bottom:705.920044pt;}
.y40{bottom:708.160065pt;}
.ya{bottom:708.480072pt;}
.y3f{bottom:711.680054pt;}
.y123{bottom:712.480072pt;}
.y143{bottom:714.880066pt;}
.yd2{bottom:715.040070pt;}
.y94{bottom:720.960053pt;}
.y196{bottom:722.880066pt;}
.y3e{bottom:726.560059pt;}
.y9{bottom:726.880066pt;}
.y71{bottom:729.120057pt;}
.y41{bottom:730.080048pt;}
.y17a{bottom:733.280060pt;}
.y93{bottom:736.160065pt;}
.y108{bottom:738.880066pt;}
.y142{bottom:741.280060pt;}
.yd1{bottom:745.120057pt;}
.y3c{bottom:748.960053pt;}
.y92{bottom:751.200074pt;}
.y179{bottom:751.680054pt;}
.y3b{bottom:752.480072pt;}
.y107{bottom:757.280060pt;}
.yd0{bottom:760.320069pt;}
.y3d{bottom:761.760071pt;}
.y8{bottom:764.000061pt;}
.y91{bottom:765.280060pt;}
.y195{bottom:767.680054pt;}
.y141{bottom:769.280060pt;}
.y70{bottom:770.720063pt;}
.y3a{bottom:770.880066pt;}
.ycf{bottom:775.360047pt;}
.y106{bottom:775.680054pt;}
.y178{bottom:778.080048pt;}
.y194{bottom:786.080048pt;}
.y6f{bottom:789.120057pt;}
.y38{bottom:789.760071pt;}
.yce{bottom:790.560059pt;}
.y122{bottom:790.880066pt;}
.y15a{bottom:791.680054pt;}
.y7{bottom:801.600068pt;}
.y90{bottom:801.760071pt;}
.y105{bottom:802.080048pt;}
.y177{bottom:804.480072pt;}
.ycd{bottom:805.600068pt;}
.y121{bottom:809.280060pt;}
.y193{bottom:812.480072pt;}
.y8f{bottom:820.160065pt;}
.y104{bottom:820.480072pt;}
.ycc{bottom:820.640046pt;}
.y176{bottom:822.880066pt;}
.y140{bottom:825.280060pt;}
.y6e{bottom:826.080048pt;}
.y120{bottom:827.680054pt;}
.y192{bottom:830.880066pt;}
.y37{bottom:833.280060pt;}
.ycb{bottom:835.840058pt;}
.y6{bottom:839.040070pt;}
.y175{bottom:841.280060pt;}
.y159{bottom:843.680054pt;}
.y6d{bottom:844.480072pt;}
.y8e{bottom:846.560059pt;}
.y103{bottom:846.880066pt;}
.yca{bottom:850.880066pt;}
.y36{bottom:851.680054pt;}
.y11f{bottom:854.080048pt;}
.y191{bottom:857.280060pt;}
.y158{bottom:862.080048pt;}
.yc9{bottom:866.080048pt;}
.y174{bottom:867.680054pt;}
.y13f{bottom:869.280060pt;}
.y35{bottom:870.080063pt;}
.y102{bottom:873.280060pt;}
.y11e{bottom:880.480057pt;}
.yc8{bottom:881.120057pt;}
.y6c{bottom:881.920060pt;}
.y5{bottom:883.680054pt;}
.y173{bottom:886.080063pt;}
.y13e{bottom:887.680054pt;}
.y157{bottom:888.480057pt;}
.yc7{bottom:896.160065pt;}
.y101{bottom:899.680054pt;}
.y8d{bottom:902.400055pt;}
.y13d{bottom:906.080063pt;}
.y11d{bottom:906.880066pt;}
.y34{bottom:907.200058pt;}
.yc6{bottom:911.360062pt;}
.y172{bottom:912.480057pt;}
.y190{bottom:913.280060pt;}
.y4{bottom:916.160065pt;}
.y100{bottom:918.080063pt;}
.y6b{bottom:920.960053pt;}
.y33{bottom:925.120057pt;}
.y11c{bottom:925.280060pt;}
.yc5{bottom:926.400055pt;}
.y18f{bottom:931.680054pt;}
.y13c{bottom:932.480057pt;}
.y32{bottom:937.760056pt;}
.y171{bottom:938.880066pt;}
.y6a{bottom:939.360062pt;}
.yc4{bottom:941.600052pt;}
.yff{bottom:944.480057pt;}
.y18e{bottom:950.080063pt;}
.y13b{bottom:950.880066pt;}
.y11b{bottom:951.680054pt;}
.y3{bottom:953.120057pt;}
.yc3{bottom:956.640061pt;}
.y8c{bottom:957.760056pt;}
.yfe{bottom:962.880066pt;}
.y30{bottom:965.920060pt;}
.y2f{bottom:969.440064pt;}
.yc2{bottom:971.680054pt;}
.y69{bottom:976.480057pt;}
.y13a{bottom:977.280060pt;}
.yfd{bottom:981.280060pt;}
.yc1{bottom:986.880066pt;}
.y2e{bottom:987.840058pt;}
.y2{bottom:990.560059pt;}
.y68{bottom:994.880059pt;}
.yc0{bottom:1001.920060pt;}
.y11a{bottom:1003.680062pt;}
.y2c{bottom:1006.720063pt;}
.yfc{bottom:1007.680062pt;}
.y1{bottom:1011.360062pt;}
.y67{bottom:1013.280060pt;}
.ybf{bottom:1017.120057pt;}
.h7{height:17.919983pt;}
.h9{height:17.919998pt;}
.hb{height:17.920013pt;}
.h8{height:17.920044pt;}
.hc{height:18.239990pt;}
.h5{height:37.626091pt;}
.h13{height:41.031457pt;}
.h14{height:41.397809pt;}
.hd{height:44.439169pt;}
.h6{height:46.345491pt;}
.h12{height:46.626751pt;}
.h2{height:52.370465pt;}
.h3{height:56.158359pt;}
.hf{height:61.129776pt;}
.h4{height:61.946039pt;}
.he{height:69.518232pt;}
.h10{height:70.238435pt;}
.h11{height:70.238439pt;}
.ha{height:93.278355pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w7{width:4.000000pt;}
.w5{width:4.960006pt;}
.w3{width:8.000000pt;}
.w6{width:12.639999pt;}
.w27{width:18.720001pt;}
.w18{width:23.519989pt;}
.w4{width:27.519989pt;}
.w1b{width:37.279998pt;}
.w1f{width:41.760003pt;}
.w26{width:43.519989pt;}
.w12{width:47.519989pt;}
.w9{width:51.040008pt;}
.w22{width:57.760010pt;}
.w23{width:63.359986pt;}
.w20{width:65.759994pt;}
.w25{width:65.760003pt;}
.w13{width:72.320007pt;}
.w2{width:85.760009pt;}
.wb{width:101.760009pt;}
.w1d{width:115.039993pt;}
.w10{width:123.040009pt;}
.we{width:132.319992pt;}
.w21{width:134.560005pt;}
.w11{width:142.560012pt;}
.wf{width:145.279969pt;}
.wd{width:148.160003pt;}
.wc{width:157.280014pt;}
.w15{width:173.279998pt;}
.w8{width:185.600006pt;}
.w19{width:186.239990pt;}
.w24{width:204.320007pt;}
.w16{width:235.040008pt;}
.w1a{width:295.039978pt;}
.w1c{width:301.279983pt;}
.w1e{width:311.039993pt;}
.w17{width:313.440002pt;}
.wa{width:322.880036pt;}
.w14{width:384.640029pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.519997pt;}
.x4{left:78.559998pt;}
.x36{left:87.519997pt;}
.x30{left:89.599998pt;}
.x26{left:99.519997pt;}
.x28{left:115.839996pt;}
.x1{left:118.080002pt;}
.xf{left:119.519997pt;}
.x42{left:120.639999pt;}
.x27{left:123.519997pt;}
.x31{left:131.360001pt;}
.xd{left:135.039993pt;}
.x35{left:144.639999pt;}
.x2d{left:147.520004pt;}
.x2{left:154.880005pt;}
.x34{left:158.880005pt;}
.x5{left:164.320007pt;}
.x20{left:167.520004pt;}
.x10{left:170.080002pt;}
.x2e{left:171.520004pt;}
.x38{left:176.000000pt;}
.x17{left:195.039993pt;}
.x32{left:197.119995pt;}
.x29{left:202.080002pt;}
.x37{left:222.080002pt;}
.x15{left:229.759995pt;}
.x8{left:234.559998pt;}
.x6{left:242.559998pt;}
.x40{left:252.320007pt;}
.x9{left:255.199997pt;}
.x24{left:258.079987pt;}
.x33{left:268.320007pt;}
.x7{left:270.079987pt;}
.x11{left:280.959991pt;}
.x12{left:284.959991pt;}
.xe{left:293.600006pt;}
.x1b{left:296.959991pt;}
.x3e{left:304.480011pt;}
.x2b{left:317.119995pt;}
.x39{left:322.079987pt;}
.x43{left:323.200012pt;}
.x3a{left:326.079987pt;}
.x41{left:328.480011pt;}
.x14{left:344.320007pt;}
.x3f{left:348.000000pt;}
.xa{left:357.600006pt;}
.xb{left:361.600006pt;}
.x1d{left:372.320007pt;}
.x16{left:387.040009pt;}
.x22{left:407.839996pt;}
.x18{left:417.440002pt;}
.x1c{left:420.000000pt;}
.x19{left:421.440002pt;}
.x1e{left:423.519989pt;}
.x3b{left:437.760010pt;}
.x3c{left:441.760010pt;}
.x23{left:469.600006pt;}
.x1f{left:495.839996pt;}
.x2a{left:503.359985pt;}
.x2c{left:513.119995pt;}
.x25{left:529.599976pt;}
.xc{left:547.200012pt;}
.x1a{left:566.719971pt;}
.x13{left:607.840027pt;}
.x21{left:614.400024pt;}
.x2f{left:642.239990pt;}
.x3d{left:646.080017pt;}
.x44{left:718.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; }
  