
    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_c47eb0cceca78a6f9add81bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3e22a0874e90a3c8e6c24ac7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c4a9dbf0cb4102c8e42fcae5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.892578;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_3d99956a806607f9a0c46e3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.139160;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_cf15f698ca10993d6697ffa8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151855;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_658e4399744af89c70ab9eee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.137695;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_26e7ab910f94a2673861a543.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec529ed9c92a69fccdcbb994.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_67cf6732d8eb240c145d0dd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.128917;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.082800px;}
.ls3{letter-spacing:0.478181px;}
.ls0{letter-spacing:64.085884px;}
.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;}
.ws5{word-spacing:-14.821038px;}
.ws2{word-spacing:-14.701514px;}
.ws3{word-spacing:-14.641751px;}
.ws0{word-spacing:-9.000349px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.245414px;}
._1{width:1.607622px;}
._5{width:63.030962px;}
._c{width:70.638979px;}
._d{width:113.070177px;}
._9{width:263.101481px;}
._6{width:310.553228px;}
._8{width:317.475207px;}
._3{width:326.804319px;}
._7{width:339.202477px;}
._2{width:346.617450px;}
._a{width:354.509161px;}
._4{width:358.491194px;}
._b{width:1311.900912px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(233,44,48);}
.fc6{color:rgb(13,13,13);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:36.001395px;}
.fs2{font-size:48.241800px;}
.fs3{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs5{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y68{bottom:0.179970px;}
.y10{bottom:0.720017px;}
.y8d{bottom:1.620003px;}
.y94{bottom:2.519989px;}
.y3f{bottom:3.240006px;}
.yd{bottom:3.419975px;}
.y44{bottom:3.779983px;}
.y3b{bottom:3.780018px;}
.yc1{bottom:3.780052px;}
.yd6{bottom:3.780121px;}
.y5{bottom:22.500000px;}
.y4{bottom:57.960022px;}
.y57{bottom:94.860077px;}
.y9c{bottom:95.940033px;}
.yd4{bottom:97.020127px;}
.yd5{bottom:99.000000px;}
.y165{bottom:99.360077px;}
.y139{bottom:102.420043px;}
.y8a{bottom:102.780121px;}
.y56{bottom:112.860077px;}
.y9b{bottom:113.940033px;}
.yd3{bottom:115.020058px;}
.y10e{bottom:117.000068px;}
.y164{bottom:117.360077px;}
.y138{bottom:120.420043px;}
.y89{bottom:120.780052px;}
.y55{bottom:131.040047px;}
.y9a{bottom:131.940033px;}
.yd2{bottom:133.020058px;}
.y10d{bottom:135.000068px;}
.y163{bottom:136.260064px;}
.y137{bottom:138.420043px;}
.y88{bottom:138.780052px;}
.y54{bottom:149.040047px;}
.y99{bottom:149.940033px;}
.yd1{bottom:151.200096px;}
.y10c{bottom:153.900055px;}
.y162{bottom:154.260064px;}
.y193{bottom:154.800041px;}
.y70{bottom:156.600083px;}
.y87{bottom:156.780052px;}
.y136{bottom:157.140060px;}
.y53{bottom:167.040047px;}
.y98{bottom:167.940033px;}
.ye0{bottom:168.840088px;}
.yd0{bottom:169.200096px;}
.y6d{bottom:171.720085px;}
.y10b{bottom:171.900055px;}
.y6f{bottom:172.260064px;}
.y86{bottom:174.780052px;}
.y135{bottom:175.140060px;}
.y52{bottom:185.040047px;}
.y97{bottom:186.840088px;}
.ycf{bottom:187.200096px;}
.y10a{bottom:190.800041px;}
.y161{bottom:191.160049px;}
.y85{bottom:192.780052px;}
.y134{bottom:193.680039px;}
.yde{bottom:201.780052px;}
.y192{bottom:202.860077px;}
.y51{bottom:203.040047px;}
.y96{bottom:204.840088px;}
.yce{bottom:205.200096px;}
.y160{bottom:209.160049px;}
.y109{bottom:209.520058px;}
.y133{bottom:210.600083px;}
.y84{bottom:210.780052px;}
.y93{bottom:219.780052px;}
.y50{bottom:221.040047px;}
.ycd{bottom:223.200096px;}
.y132{bottom:227.160049px;}
.y108{bottom:227.520058px;}
.y83{bottom:228.780052px;}
.y39{bottom:238.860077px;}
.y4f{bottom:239.040047px;}
.y191{bottom:240.660049px;}
.ycc{bottom:241.200096px;}
.y131{bottom:245.160049px;}
.y15f{bottom:245.880066px;}
.y107{bottom:246.420043px;}
.y82{bottom:246.780052px;}
.y38{bottom:256.860077px;}
.y4e{bottom:257.040047px;}
.ycb{bottom:259.200096px;}
.y190{bottom:260.460091px;}
.y130{bottom:263.880066px;}
.y106{bottom:264.420043px;}
.y81{bottom:264.780052px;}
.y37{bottom:274.860077px;}
.y4d{bottom:275.040047px;}
.yca{bottom:277.200096px;}
.y18f{bottom:280.260064px;}
.y12f{bottom:281.880066px;}
.y80{bottom:282.780052px;}
.y105{bottom:283.320099px;}
.y36{bottom:292.860077px;}
.y4c{bottom:293.040047px;}
.yc9{bottom:295.200096px;}
.y18e{bottom:296.820099px;}
.y12e{bottom:299.880066px;}
.y7f{bottom:300.780052px;}
.y104{bottom:301.320099px;}
.ybc{bottom:308.340088px;}
.y35{bottom:310.860077px;}
.y4b{bottom:311.040047px;}
.yc8{bottom:313.200096px;}
.y18d{bottom:314.820099px;}
.y12d{bottom:317.880066px;}
.y7e{bottom:318.780052px;}
.y103{bottom:320.040047px;}
.ybb{bottom:326.340088px;}
.y34{bottom:328.860077px;}
.y4a{bottom:329.040047px;}
.yc7{bottom:331.200096px;}
.y18c{bottom:333.720085px;}
.y6e{bottom:334.800041px;}
.y7d{bottom:336.780052px;}
.y102{bottom:338.400055px;}
.yba{bottom:344.340088px;}
.y33{bottom:346.860077px;}
.y49{bottom:347.040047px;}
.yc6{bottom:349.200096px;}
.y18b{bottom:351.720085px;}
.y6c{bottom:353.520058px;}
.y7c{bottom:354.780052px;}
.y101{bottom:355.500068px;}
.y15e{bottom:355.680039px;}
.yb9{bottom:362.340088px;}
.y32{bottom:364.860077px;}
.y48{bottom:365.040047px;}
.yc5{bottom:367.200096px;}
.y6a{bottom:368.460091px;}
.y18a{bottom:370.440033px;}
.y100{bottom:372.060036px;}
.y7b{bottom:372.780052px;}
.y15d{bottom:373.680039px;}
.yb8{bottom:380.340088px;}
.y31{bottom:382.860077px;}
.y47{bottom:383.760064px;}
.yc4{bottom:385.200096px;}
.y189{bottom:388.440033px;}
.yff{bottom:390.060036px;}
.y7a{bottom:390.780052px;}
.y15c{bottom:391.680039px;}
.yb7{bottom:398.340088px;}
.y30{bottom:400.860077px;}
.y46{bottom:401.760064px;}
.yc3{bottom:403.920043px;}
.y77{bottom:405.720085px;}
.y188{bottom:407.340088px;}
.y79{bottom:408.780052px;}
.y12c{bottom:409.680039px;}
.y15b{bottom:410.400055px;}
.yb6{bottom:416.340088px;}
.y45{bottom:416.880066px;}
.y2f{bottom:418.860077px;}
.yc2{bottom:419.040047px;}
.y187{bottom:425.340088px;}
.ydf{bottom:425.520058px;}
.yfe{bottom:426.780052px;}
.y12b{bottom:427.680039px;}
.y15a{bottom:428.400055px;}
.y41{bottom:432.180039px;}
.yb5{bottom:434.340088px;}
.y2e{bottom:436.860077px;}
.y186{bottom:443.340088px;}
.y95{bottom:443.520058px;}
.ydd{bottom:444.240074px;}
.yfd{bottom:445.680039px;}
.y159{bottom:446.400055px;}
.y43{bottom:448.380066px;}
.yc0{bottom:450.540047px;}
.yb4{bottom:452.340088px;}
.y2d{bottom:454.860077px;}
.yda{bottom:459.360077px;}
.y185{bottom:462.060036px;}
.y92{bottom:462.240074px;}
.ydc{bottom:463.140060px;}
.yfc{bottom:463.680039px;}
.y158{bottom:464.400055px;}
.yb3{bottom:470.340088px;}
.y2c{bottom:472.860077px;}
.y8f{bottom:477.360077px;}
.y184{bottom:480.060036px;}
.y91{bottom:481.140060px;}
.y12a{bottom:481.680039px;}
.yfb{bottom:482.400055px;}
.y157{bottom:482.940033px;}
.yb2{bottom:488.340088px;}
.y2b{bottom:490.860077px;}
.y183{bottom:498.060036px;}
.y156{bottom:499.860077px;}
.yfa{bottom:500.400055px;}
.yb1{bottom:506.340088px;}
.y2a{bottom:508.860077px;}
.y155{bottom:516.420043px;}
.y182{bottom:516.960091px;}
.yf9{bottom:518.400055px;}
.yb0{bottom:524.340088px;}
.y29{bottom:526.860077px;}
.y154{bottom:534.420043px;}
.y181{bottom:534.960091px;}
.y129{bottom:536.400055px;}
.yf8{bottom:537.300041px;}
.yaf{bottom:542.340088px;}
.y28{bottom:545.580093px;}
.y180{bottom:552.960091px;}
.y153{bottom:553.140060px;}
.y128{bottom:554.400055px;}
.yf7{bottom:555.300041px;}
.yae{bottom:560.340088px;}
.y27{bottom:563.760064px;}
.y17f{bottom:570.960091px;}
.y152{bottom:571.140060px;}
.y127{bottom:572.400055px;}
.yf6{bottom:574.200096px;}
.yad{bottom:578.340088px;}
.y78{bottom:580.500068px;}
.y26{bottom:581.760064px;}
.y151{bottom:589.140060px;}
.y17e{bottom:589.860077px;}
.y6b{bottom:590.580093px;}
.y126{bottom:591.300041px;}
.yf5{bottom:592.200096px;}
.yac{bottom:597.240074px;}
.y76{bottom:599.220085px;}
.y25{bottom:599.760064px;}
.y150{bottom:607.140060px;}
.y17d{bottom:607.860077px;}
.y69{bottom:609.300041px;}
.yf4{bottom:610.920043px;}
.y73{bottom:614.340088px;}
.yab{bottom:615.240074px;}
.y24{bottom:617.760064px;}
.y66{bottom:624.240074px;}
.y14f{bottom:626.040047px;}
.y17c{bottom:626.580093px;}
.y125{bottom:627.300041px;}
.yf3{bottom:628.920043px;}
.yaa{bottom:633.240074px;}
.y23{bottom:635.760064px;}
.y14e{bottom:644.040047px;}
.y17b{bottom:644.580093px;}
.y124{bottom:645.300041px;}
.yf2{bottom:647.820099px;}
.y75{bottom:648.360077px;}
.ya9{bottom:651.240074px;}
.y22{bottom:653.760064px;}
.y14d{bottom:662.040047px;}
.y123{bottom:663.300041px;}
.y17a{bottom:663.480079px;}
.yf1{bottom:665.820099px;}
.ya8{bottom:669.240074px;}
.y21{bottom:671.760064px;}
.y14c{bottom:680.040047px;}
.ydb{bottom:680.580093px;}
.y122{bottom:681.300041px;}
.y179{bottom:681.480079px;}
.yf0{bottom:683.820099px;}
.ya7{bottom:687.240074px;}
.y20{bottom:689.760064px;}
.y90{bottom:698.580059px;}
.y14b{bottom:698.940067px;}
.yd9{bottom:699.300076px;}
.y178{bottom:699.480079px;}
.yef{bottom:702.720051px;}
.ya6{bottom:705.240074px;}
.y1f{bottom:708.840054px;}
.yd7{bottom:714.240074px;}
.y14a{bottom:716.940067px;}
.y8e{bottom:717.300076px;}
.y177{bottom:718.380066px;}
.yee{bottom:720.720051px;}
.ya5{bottom:723.240074px;}
.y1e{bottom:725.040081px;}
.y8b{bottom:732.240074px;}
.y149{bottom:734.940067px;}
.y121{bottom:736.200061px;}
.y176{bottom:736.380066px;}
.yed{bottom:739.440067px;}
.ya4{bottom:741.240074px;}
.y1d{bottom:742.140060px;}
.y148{bottom:752.940067px;}
.y120{bottom:754.200061px;}
.y175{bottom:755.100083px;}
.yec{bottom:757.800076px;}
.ya3{bottom:759.600083px;}
.y1c{bottom:763.740074px;}
.y147{bottom:770.940067px;}
.y11f{bottom:772.200061px;}
.y174{bottom:773.100083px;}
.yeb{bottom:774.900055px;}
.ya2{bottom:776.700061px;}
.y1b{bottom:781.740074px;}
.y146{bottom:789.660049px;}
.y11e{bottom:790.200061px;}
.y173{bottom:791.100083px;}
.yea{bottom:791.460056px;}
.ya1{bottom:793.620072px;}
.y1a{bottom:799.740074px;}
.y42{bottom:804.960056px;}
.ybf{bottom:807.120072px;}
.y145{bottom:807.660049px;}
.y11d{bottom:808.200061px;}
.y172{bottom:809.100083px;}
.ye9{bottom:809.460056px;}
.y74{bottom:809.820065px;}
.ya0{bottom:810.180073px;}
.y19{bottom:818.100083px;}
.y144{bottom:825.660049px;}
.ybe{bottom:825.840054px;}
.y11c{bottom:826.200061px;}
.ye8{bottom:827.460056px;}
.y171{bottom:828.000068px;}
.y9f{bottom:828.180073px;}
.y72{bottom:828.540081px;}
.y18{bottom:835.020058px;}
.y40{bottom:842.400055px;}
.y71{bottom:843.480079px;}
.y143{bottom:843.660049px;}
.ybd{bottom:843.840054px;}
.y11b{bottom:845.100083px;}
.y67{bottom:845.460056px;}
.y170{bottom:846.000068px;}
.y9e{bottom:846.180073px;}
.y17{bottom:851.220051px;}
.y3e{bottom:858.960056px;}
.y142{bottom:862.560070px;}
.y11a{bottom:863.100083px;}
.ye7{bottom:863.460056px;}
.y65{bottom:864.180073px;}
.y16f{bottom:864.900055px;}
.y16{bottom:867.420078px;}
.y3d{bottom:874.260064px;}
.y141{bottom:880.560070px;}
.y119{bottom:881.100083px;}
.ye6{bottom:881.460056px;}
.y64{bottom:882.180073px;}
.y16e{bottom:882.900055px;}
.y15{bottom:883.620072px;}
.y3a{bottom:896.580059px;}
.y13{bottom:898.020058px;}
.y140{bottom:898.560070px;}
.y118{bottom:899.100083px;}
.ye5{bottom:899.460056px;}
.y63{bottom:900.180073px;}
.y14{bottom:900.720051px;}
.y16d{bottom:901.620072px;}
.y13f{bottom:916.560070px;}
.y117{bottom:917.100083px;}
.ye4{bottom:917.460056px;}
.y12{bottom:917.640060px;}
.y62{bottom:918.180073px;}
.y16c{bottom:919.620072px;}
.yf{bottom:931.140060px;}
.y11{bottom:934.560070px;}
.yd8{bottom:935.460056px;}
.y116{bottom:935.820065px;}
.y61{bottom:936.180073px;}
.y16b{bottom:938.520058px;}
.ye{bottom:951.480079px;}
.y13e{bottom:952.560070px;}
.y8c{bottom:953.460056px;}
.y115{bottom:953.820065px;}
.y60{bottom:954.180073px;}
.y16a{bottom:956.520058px;}
.yc{bottom:964.980079px;}
.yb{bottom:968.400055px;}
.y13d{bottom:970.560070px;}
.ye3{bottom:971.460056px;}
.y5f{bottom:972.180073px;}
.y169{bottom:975.240074px;}
.ya{bottom:985.320065px;}
.y114{bottom:989.280069px;}
.ye2{bottom:989.460074px;}
.y5e{bottom:990.180073px;}
.y168{bottom:992.880066px;}
.y9{bottom:1001.520058px;}
.y113{bottom:1005.840070px;}
.ye1{bottom:1007.460074px;}
.y5d{bottom:1008.180073px;}
.y167{bottom:1009.980063px;}
.y8{bottom:1018.620072px;}
.y112{bottom:1023.840070px;}
.y13c{bottom:1025.460074px;}
.y5c{bottom:1026.180073px;}
.y166{bottom:1026.900072px;}
.y111{bottom:1042.560070px;}
.y13b{bottom:1043.460074px;}
.y5b{bottom:1044.180073px;}
.y9d{bottom:1044.540064px;}
.y7{bottom:1053.000068px;}
.y110{bottom:1060.560070px;}
.y13a{bottom:1061.460074px;}
.y5a{bottom:1062.180073px;}
.y10f{bottom:1079.460074px;}
.y6{bottom:1079.640060px;}
.y59{bottom:1080.180073px;}
.y3c{bottom:1097.460074px;}
.y58{bottom:1098.180073px;}
.y3{bottom:1135.800067px;}
.y2{bottom:1173.960065px;}
.y1{bottom:1194.120067px;}
.h6{height:13.500000px;}
.h10{height:14.219947px;}
.he{height:14.219948px;}
.hf{height:14.219982px;}
.h9{height:14.220016px;}
.hc{height:14.220017px;}
.hd{height:14.399987px;}
.ha{height:14.580025px;}
.h11{height:15.839985px;}
.h5{height:16.199993px;}
.h12{height:16.740006px;}
.h8{height:18.000000px;}
.h14{height:19.620072px;}
.h13{height:43.216744px;}
.hb{height:47.982689px;}
.h4{height:49.809693px;}
.h7{height:55.122505px;}
.h3{height:60.711693px;}
.h15{height:61.099834px;}
.h2{height:65.886904px;}
.h16{height:87.767713px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:3.420001px;}
.w1b{width:5.939964px;}
.wf{width:5.939965px;}
.w8{width:5.939999px;}
.w1e{width:5.940033px;}
.wa{width:5.940034px;}
.w16{width:7.740006px;}
.wb{width:7.920010px;}
.w15{width:7.920044px;}
.w6{width:8.100014px;}
.w2{width:8.279983px;}
.w12{width:8.280018px;}
.w14{width:8.280052px;}
.w18{width:8.460021px;}
.w5{width:8.640027px;}
.w13{width:9.000000px;}
.w17{width:9.180038px;}
.w11{width:9.360008px;}
.w10{width:9.360009px;}
.w4{width:9.719999px;}
.w1f{width:9.720016px;}
.wc{width:46.800007px;}
.w1a{width:105.840019px;}
.w19{width:145.619985px;}
.w7{width:150.840019px;}
.w1d{width:154.439999px;}
.w1c{width:169.379981px;}
.wd{width:192.599997px;}
.w9{width:205.199993px;}
.we{width:239.399985px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.379998px;}
.x4{left:114.480002px;}
.x7{left:115.920001px;}
.x8{left:119.340002px;}
.x19{left:122.939999px;}
.xb{left:141.480002px;}
.x13{left:160.919992px;}
.x1d{left:196.020006px;}
.xe{left:205.199993px;}
.x14{left:207.719999px;}
.x3{left:212.400003px;}
.x5{left:242.099997px;}
.x9{left:243.539996px;}
.x1a{left:353.519989px;}
.xf{left:356.040012px;}
.x1e{left:365.399987px;}
.x15{left:400.319996px;}
.xc{left:437.579990px;}
.xa{left:454.680005px;}
.x10{left:457.199993px;}
.x16{left:513.720017px;}
.x11{left:530.819996px;}
.x21{left:540.899987px;}
.x1f{left:556.199993px;}
.x1b{left:580.500000px;}
.x1c{left:686.340019px;}
.x20{left:710.639992px;}
.x12{left:736.019989px;}
.x17{left:753.120002px;}
.x22{left:777.600014px;}
.x2{left:783.539978px;}
.x18{left:789.480011px;}
.xd{left:790.740006px;}
.x6{left:799.379998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.073600pt;}
.ls3{letter-spacing:0.425050pt;}
.ls0{letter-spacing:56.965230pt;}
.ws1{word-spacing:-53.122000pt;}
.ws5{word-spacing:-13.174256pt;}
.ws2{word-spacing:-13.068012pt;}
.ws3{word-spacing:-13.014890pt;}
.ws0{word-spacing:-8.000310pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.107035pt;}
._1{width:1.428997pt;}
._5{width:56.027522pt;}
._c{width:62.790204pt;}
._d{width:100.506824pt;}
._9{width:233.867983pt;}
._6{width:276.047314pt;}
._8{width:282.200184pt;}
._3{width:290.492728pt;}
._7{width:301.513313pt;}
._2{width:308.104400pt;}
._a{width:315.119255pt;}
._4{width:318.658839pt;}
._b{width:1166.134144pt;}
.fs1{font-size:32.001240pt;}
.fs2{font-size:42.881600pt;}
.fs3{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs5{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:0.159973pt;}
.y10{bottom:0.640015pt;}
.y8d{bottom:1.440003pt;}
.y94{bottom:2.239990pt;}
.y3f{bottom:2.880005pt;}
.yd{bottom:3.039978pt;}
.y44{bottom:3.359985pt;}
.y3b{bottom:3.360016pt;}
.yc1{bottom:3.360046pt;}
.yd6{bottom:3.360108pt;}
.y5{bottom:20.000000pt;}
.y4{bottom:51.520020pt;}
.y57{bottom:84.320069pt;}
.y9c{bottom:85.280030pt;}
.yd4{bottom:86.240113pt;}
.yd5{bottom:88.000000pt;}
.y165{bottom:88.320069pt;}
.y139{bottom:91.040039pt;}
.y8a{bottom:91.360108pt;}
.y56{bottom:100.320069pt;}
.y9b{bottom:101.280030pt;}
.yd3{bottom:102.240052pt;}
.y10e{bottom:104.000061pt;}
.y164{bottom:104.320069pt;}
.y138{bottom:107.040039pt;}
.y89{bottom:107.360047pt;}
.y55{bottom:116.480042pt;}
.y9a{bottom:117.280030pt;}
.yd2{bottom:118.240052pt;}
.y10d{bottom:120.000061pt;}
.y163{bottom:121.120057pt;}
.y137{bottom:123.040039pt;}
.y88{bottom:123.360047pt;}
.y54{bottom:132.480042pt;}
.y99{bottom:133.280030pt;}
.yd1{bottom:134.400086pt;}
.y10c{bottom:136.800049pt;}
.y162{bottom:137.120057pt;}
.y193{bottom:137.600037pt;}
.y70{bottom:139.200074pt;}
.y87{bottom:139.360047pt;}
.y136{bottom:139.680054pt;}
.y53{bottom:148.480042pt;}
.y98{bottom:149.280030pt;}
.ye0{bottom:150.080079pt;}
.yd0{bottom:150.400086pt;}
.y6d{bottom:152.640076pt;}
.y10b{bottom:152.800049pt;}
.y6f{bottom:153.120057pt;}
.y86{bottom:155.360047pt;}
.y135{bottom:155.680054pt;}
.y52{bottom:164.480042pt;}
.y97{bottom:166.080079pt;}
.ycf{bottom:166.400086pt;}
.y10a{bottom:169.600037pt;}
.y161{bottom:169.920044pt;}
.y85{bottom:171.360047pt;}
.y134{bottom:172.160035pt;}
.yde{bottom:179.360047pt;}
.y192{bottom:180.320069pt;}
.y51{bottom:180.480042pt;}
.y96{bottom:182.080079pt;}
.yce{bottom:182.400086pt;}
.y160{bottom:185.920044pt;}
.y109{bottom:186.240052pt;}
.y133{bottom:187.200074pt;}
.y84{bottom:187.360047pt;}
.y93{bottom:195.360047pt;}
.y50{bottom:196.480042pt;}
.ycd{bottom:198.400086pt;}
.y132{bottom:201.920044pt;}
.y108{bottom:202.240052pt;}
.y83{bottom:203.360047pt;}
.y39{bottom:212.320069pt;}
.y4f{bottom:212.480042pt;}
.y191{bottom:213.920044pt;}
.ycc{bottom:214.400086pt;}
.y131{bottom:217.920044pt;}
.y15f{bottom:218.560059pt;}
.y107{bottom:219.040039pt;}
.y82{bottom:219.360047pt;}
.y38{bottom:228.320069pt;}
.y4e{bottom:228.480042pt;}
.ycb{bottom:230.400086pt;}
.y190{bottom:231.520081pt;}
.y130{bottom:234.560059pt;}
.y106{bottom:235.040039pt;}
.y81{bottom:235.360047pt;}
.y37{bottom:244.320069pt;}
.y4d{bottom:244.480042pt;}
.yca{bottom:246.400086pt;}
.y18f{bottom:249.120057pt;}
.y12f{bottom:250.560059pt;}
.y80{bottom:251.360047pt;}
.y105{bottom:251.840088pt;}
.y36{bottom:260.320069pt;}
.y4c{bottom:260.480042pt;}
.yc9{bottom:262.400086pt;}
.y18e{bottom:263.840088pt;}
.y12e{bottom:266.560059pt;}
.y7f{bottom:267.360047pt;}
.y104{bottom:267.840088pt;}
.ybc{bottom:274.080079pt;}
.y35{bottom:276.320069pt;}
.y4b{bottom:276.480042pt;}
.yc8{bottom:278.400086pt;}
.y18d{bottom:279.840088pt;}
.y12d{bottom:282.560059pt;}
.y7e{bottom:283.360047pt;}
.y103{bottom:284.480042pt;}
.ybb{bottom:290.080079pt;}
.y34{bottom:292.320069pt;}
.y4a{bottom:292.480042pt;}
.yc7{bottom:294.400086pt;}
.y18c{bottom:296.640076pt;}
.y6e{bottom:297.600037pt;}
.y7d{bottom:299.360047pt;}
.y102{bottom:300.800049pt;}
.yba{bottom:306.080079pt;}
.y33{bottom:308.320069pt;}
.y49{bottom:308.480042pt;}
.yc6{bottom:310.400086pt;}
.y18b{bottom:312.640076pt;}
.y6c{bottom:314.240052pt;}
.y7c{bottom:315.360047pt;}
.y101{bottom:316.000061pt;}
.y15e{bottom:316.160035pt;}
.yb9{bottom:322.080079pt;}
.y32{bottom:324.320069pt;}
.y48{bottom:324.480042pt;}
.yc5{bottom:326.400086pt;}
.y6a{bottom:327.520081pt;}
.y18a{bottom:329.280030pt;}
.y100{bottom:330.720032pt;}
.y7b{bottom:331.360047pt;}
.y15d{bottom:332.160035pt;}
.yb8{bottom:338.080079pt;}
.y31{bottom:340.320069pt;}
.y47{bottom:341.120057pt;}
.yc4{bottom:342.400086pt;}
.y189{bottom:345.280030pt;}
.yff{bottom:346.720032pt;}
.y7a{bottom:347.360047pt;}
.y15c{bottom:348.160035pt;}
.yb7{bottom:354.080079pt;}
.y30{bottom:356.320069pt;}
.y46{bottom:357.120057pt;}
.yc3{bottom:359.040039pt;}
.y77{bottom:360.640076pt;}
.y188{bottom:362.080079pt;}
.y79{bottom:363.360047pt;}
.y12c{bottom:364.160035pt;}
.y15b{bottom:364.800049pt;}
.yb6{bottom:370.080079pt;}
.y45{bottom:370.560059pt;}
.y2f{bottom:372.320069pt;}
.yc2{bottom:372.480042pt;}
.y187{bottom:378.080079pt;}
.ydf{bottom:378.240052pt;}
.yfe{bottom:379.360047pt;}
.y12b{bottom:380.160035pt;}
.y15a{bottom:380.800049pt;}
.y41{bottom:384.160035pt;}
.yb5{bottom:386.080079pt;}
.y2e{bottom:388.320069pt;}
.y186{bottom:394.080079pt;}
.y95{bottom:394.240052pt;}
.ydd{bottom:394.880066pt;}
.yfd{bottom:396.160035pt;}
.y159{bottom:396.800049pt;}
.y43{bottom:398.560059pt;}
.yc0{bottom:400.480042pt;}
.yb4{bottom:402.080079pt;}
.y2d{bottom:404.320069pt;}
.yda{bottom:408.320069pt;}
.y185{bottom:410.720032pt;}
.y92{bottom:410.880066pt;}
.ydc{bottom:411.680054pt;}
.yfc{bottom:412.160035pt;}
.y158{bottom:412.800049pt;}
.yb3{bottom:418.080079pt;}
.y2c{bottom:420.320069pt;}
.y8f{bottom:424.320069pt;}
.y184{bottom:426.720032pt;}
.y91{bottom:427.680054pt;}
.y12a{bottom:428.160035pt;}
.yfb{bottom:428.800049pt;}
.y157{bottom:429.280030pt;}
.yb2{bottom:434.080079pt;}
.y2b{bottom:436.320069pt;}
.y183{bottom:442.720032pt;}
.y156{bottom:444.320069pt;}
.yfa{bottom:444.800049pt;}
.yb1{bottom:450.080079pt;}
.y2a{bottom:452.320069pt;}
.y155{bottom:459.040039pt;}
.y182{bottom:459.520081pt;}
.yf9{bottom:460.800049pt;}
.yb0{bottom:466.080079pt;}
.y29{bottom:468.320069pt;}
.y154{bottom:475.040039pt;}
.y181{bottom:475.520081pt;}
.y129{bottom:476.800049pt;}
.yf8{bottom:477.600037pt;}
.yaf{bottom:482.080079pt;}
.y28{bottom:484.960083pt;}
.y180{bottom:491.520081pt;}
.y153{bottom:491.680054pt;}
.y128{bottom:492.800049pt;}
.yf7{bottom:493.600037pt;}
.yae{bottom:498.080079pt;}
.y27{bottom:501.120057pt;}
.y17f{bottom:507.520081pt;}
.y152{bottom:507.680054pt;}
.y127{bottom:508.800049pt;}
.yf6{bottom:510.400086pt;}
.yad{bottom:514.080079pt;}
.y78{bottom:516.000061pt;}
.y26{bottom:517.120057pt;}
.y151{bottom:523.680054pt;}
.y17e{bottom:524.320069pt;}
.y6b{bottom:524.960083pt;}
.y126{bottom:525.600037pt;}
.yf5{bottom:526.400086pt;}
.yac{bottom:530.880066pt;}
.y76{bottom:532.640076pt;}
.y25{bottom:533.120057pt;}
.y150{bottom:539.680054pt;}
.y17d{bottom:540.320069pt;}
.y69{bottom:541.600037pt;}
.yf4{bottom:543.040039pt;}
.y73{bottom:546.080079pt;}
.yab{bottom:546.880066pt;}
.y24{bottom:549.120057pt;}
.y66{bottom:554.880066pt;}
.y14f{bottom:556.480042pt;}
.y17c{bottom:556.960083pt;}
.y125{bottom:557.600037pt;}
.yf3{bottom:559.040039pt;}
.yaa{bottom:562.880066pt;}
.y23{bottom:565.120057pt;}
.y14e{bottom:572.480042pt;}
.y17b{bottom:572.960083pt;}
.y124{bottom:573.600037pt;}
.yf2{bottom:575.840088pt;}
.y75{bottom:576.320069pt;}
.ya9{bottom:578.880066pt;}
.y22{bottom:581.120057pt;}
.y14d{bottom:588.480042pt;}
.y123{bottom:589.600037pt;}
.y17a{bottom:589.760071pt;}
.yf1{bottom:591.840088pt;}
.ya8{bottom:594.880066pt;}
.y21{bottom:597.120057pt;}
.y14c{bottom:604.480042pt;}
.ydb{bottom:604.960083pt;}
.y122{bottom:605.600037pt;}
.y179{bottom:605.760071pt;}
.yf0{bottom:607.840088pt;}
.ya7{bottom:610.880066pt;}
.y20{bottom:613.120057pt;}
.y90{bottom:620.960053pt;}
.y14b{bottom:621.280060pt;}
.yd9{bottom:621.600068pt;}
.y178{bottom:621.760071pt;}
.yef{bottom:624.640046pt;}
.ya6{bottom:626.880066pt;}
.y1f{bottom:630.080048pt;}
.yd7{bottom:634.880066pt;}
.y14a{bottom:637.280060pt;}
.y8e{bottom:637.600068pt;}
.y177{bottom:638.560059pt;}
.yee{bottom:640.640046pt;}
.ya5{bottom:642.880066pt;}
.y1e{bottom:644.480072pt;}
.y8b{bottom:650.880066pt;}
.y149{bottom:653.280060pt;}
.y121{bottom:654.400055pt;}
.y176{bottom:654.560059pt;}
.yed{bottom:657.280060pt;}
.ya4{bottom:658.880066pt;}
.y1d{bottom:659.680054pt;}
.y148{bottom:669.280060pt;}
.y120{bottom:670.400055pt;}
.y175{bottom:671.200074pt;}
.yec{bottom:673.600068pt;}
.ya3{bottom:675.200074pt;}
.y1c{bottom:678.880066pt;}
.y147{bottom:685.280060pt;}
.y11f{bottom:686.400055pt;}
.y174{bottom:687.200074pt;}
.yeb{bottom:688.800049pt;}
.ya2{bottom:690.400055pt;}
.y1b{bottom:694.880066pt;}
.y146{bottom:701.920044pt;}
.y11e{bottom:702.400055pt;}
.y173{bottom:703.200074pt;}
.yea{bottom:703.520050pt;}
.ya1{bottom:705.440064pt;}
.y1a{bottom:710.880066pt;}
.y42{bottom:715.520050pt;}
.ybf{bottom:717.440064pt;}
.y145{bottom:717.920044pt;}
.y11d{bottom:718.400055pt;}
.y172{bottom:719.200074pt;}
.ye9{bottom:719.520050pt;}
.y74{bottom:719.840058pt;}
.ya0{bottom:720.160065pt;}
.y19{bottom:727.200074pt;}
.y144{bottom:733.920044pt;}
.ybe{bottom:734.080048pt;}
.y11c{bottom:734.400055pt;}
.ye8{bottom:735.520050pt;}
.y171{bottom:736.000061pt;}
.y9f{bottom:736.160065pt;}
.y72{bottom:736.480072pt;}
.y18{bottom:742.240052pt;}
.y40{bottom:748.800049pt;}
.y71{bottom:749.760071pt;}
.y143{bottom:749.920044pt;}
.ybd{bottom:750.080048pt;}
.y11b{bottom:751.200074pt;}
.y67{bottom:751.520050pt;}
.y170{bottom:752.000061pt;}
.y9e{bottom:752.160065pt;}
.y17{bottom:756.640046pt;}
.y3e{bottom:763.520050pt;}
.y142{bottom:766.720063pt;}
.y11a{bottom:767.200074pt;}
.ye7{bottom:767.520050pt;}
.y65{bottom:768.160065pt;}
.y16f{bottom:768.800049pt;}
.y16{bottom:771.040070pt;}
.y3d{bottom:777.120057pt;}
.y141{bottom:782.720063pt;}
.y119{bottom:783.200074pt;}
.ye6{bottom:783.520050pt;}
.y64{bottom:784.160065pt;}
.y16e{bottom:784.800049pt;}
.y15{bottom:785.440064pt;}
.y3a{bottom:796.960053pt;}
.y13{bottom:798.240052pt;}
.y140{bottom:798.720063pt;}
.y118{bottom:799.200074pt;}
.ye5{bottom:799.520050pt;}
.y63{bottom:800.160065pt;}
.y14{bottom:800.640046pt;}
.y16d{bottom:801.440064pt;}
.y13f{bottom:814.720063pt;}
.y117{bottom:815.200074pt;}
.ye4{bottom:815.520050pt;}
.y12{bottom:815.680054pt;}
.y62{bottom:816.160065pt;}
.y16c{bottom:817.440064pt;}
.yf{bottom:827.680054pt;}
.y11{bottom:830.720063pt;}
.yd8{bottom:831.520050pt;}
.y116{bottom:831.840058pt;}
.y61{bottom:832.160065pt;}
.y16b{bottom:834.240052pt;}
.ye{bottom:845.760071pt;}
.y13e{bottom:846.720063pt;}
.y8c{bottom:847.520050pt;}
.y115{bottom:847.840058pt;}
.y60{bottom:848.160065pt;}
.y16a{bottom:850.240052pt;}
.yc{bottom:857.760071pt;}
.yb{bottom:860.800049pt;}
.y13d{bottom:862.720063pt;}
.ye3{bottom:863.520050pt;}
.y5f{bottom:864.160065pt;}
.y169{bottom:866.880066pt;}
.ya{bottom:875.840058pt;}
.y114{bottom:879.360062pt;}
.ye2{bottom:879.520066pt;}
.y5e{bottom:880.160065pt;}
.y168{bottom:882.560059pt;}
.y9{bottom:890.240052pt;}
.y113{bottom:894.080063pt;}
.ye1{bottom:895.520066pt;}
.y5d{bottom:896.160065pt;}
.y167{bottom:897.760056pt;}
.y8{bottom:905.440064pt;}
.y112{bottom:910.080063pt;}
.y13c{bottom:911.520066pt;}
.y5c{bottom:912.160065pt;}
.y166{bottom:912.800064pt;}
.y111{bottom:926.720063pt;}
.y13b{bottom:927.520066pt;}
.y5b{bottom:928.160065pt;}
.y9d{bottom:928.480057pt;}
.y7{bottom:936.000061pt;}
.y110{bottom:942.720063pt;}
.y13a{bottom:943.520066pt;}
.y5a{bottom:944.160065pt;}
.y10f{bottom:959.520066pt;}
.y6{bottom:959.680054pt;}
.y59{bottom:960.160065pt;}
.y3c{bottom:975.520066pt;}
.y58{bottom:976.160065pt;}
.y3{bottom:1009.600060pt;}
.y2{bottom:1043.520058pt;}
.y1{bottom:1061.440060pt;}
.h6{height:12.000000pt;}
.h10{height:12.639953pt;}
.he{height:12.639954pt;}
.hf{height:12.639984pt;}
.h9{height:12.640014pt;}
.hc{height:12.640015pt;}
.hd{height:12.799988pt;}
.ha{height:12.960022pt;}
.h11{height:14.079987pt;}
.h5{height:14.399994pt;}
.h12{height:14.880005pt;}
.h8{height:16.000000pt;}
.h14{height:17.440064pt;}
.h13{height:38.414884pt;}
.hb{height:42.651279pt;}
.h4{height:44.275282pt;}
.h7{height:48.997782pt;}
.h3{height:53.965950pt;}
.h15{height:54.310964pt;}
.h2{height:58.566137pt;}
.h16{height:78.015745pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:3.040001pt;}
.w1b{width:5.279968pt;}
.wf{width:5.279969pt;}
.w8{width:5.279999pt;}
.w1e{width:5.280029pt;}
.wa{width:5.280030pt;}
.w16{width:6.880005pt;}
.wb{width:7.040009pt;}
.w15{width:7.040039pt;}
.w6{width:7.200012pt;}
.w2{width:7.359985pt;}
.w12{width:7.360016pt;}
.w14{width:7.360046pt;}
.w18{width:7.520019pt;}
.w5{width:7.680024pt;}
.w13{width:8.000000pt;}
.w17{width:8.160034pt;}
.w11{width:8.320007pt;}
.w10{width:8.320008pt;}
.w4{width:8.639999pt;}
.w1f{width:8.640014pt;}
.wc{width:41.600006pt;}
.w1a{width:94.080017pt;}
.w19{width:129.439987pt;}
.w7{width:134.080017pt;}
.w1d{width:137.279999pt;}
.w1c{width:150.559983pt;}
.wd{width:171.199997pt;}
.w9{width:182.399994pt;}
.we{width:212.799987pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.559998pt;}
.x4{left:101.760002pt;}
.x7{left:103.040001pt;}
.x8{left:106.080002pt;}
.x19{left:109.279999pt;}
.xb{left:125.760002pt;}
.x13{left:143.039993pt;}
.x1d{left:174.240005pt;}
.xe{left:182.399994pt;}
.x14{left:184.639999pt;}
.x3{left:188.800003pt;}
.x5{left:215.199997pt;}
.x9{left:216.479996pt;}
.x1a{left:314.239990pt;}
.xf{left:316.480011pt;}
.x1e{left:324.799988pt;}
.x15{left:355.839996pt;}
.xc{left:388.959991pt;}
.xa{left:404.160004pt;}
.x10{left:406.399994pt;}
.x16{left:456.640015pt;}
.x11{left:471.839996pt;}
.x21{left:480.799988pt;}
.x1f{left:494.399994pt;}
.x1b{left:516.000000pt;}
.x1c{left:610.080017pt;}
.x20{left:631.679993pt;}
.x12{left:654.239990pt;}
.x17{left:669.440002pt;}
.x22{left:691.200012pt;}
.x2{left:696.479980pt;}
.x18{left:701.760010pt;}
.xd{left:702.880005pt;}
.x6{left:710.559998pt;}
}




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