
    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_a7ea01d217068d47751ff52e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_eaba61d826f69e8a79cb18d7.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_64ee16fd15fa9a64536caf8b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_cb8676c319cf214351b21e50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_b00fad19e8db4d1604cc378f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9bb76749ffe3fa0a1a70c04.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_dcc6233338a4dd116602e0bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.114746;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_83c6af03ff560399afa8916d.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;}
.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);}
.v4{vertical-align:-30.240144px;}
.v2{vertical-align:-27.360077px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.239865px;}
.v1{vertical-align:33.119932px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004916px;}
.lsd{letter-spacing:0.173736px;}
.ls9{letter-spacing:0.179370px;}
.ls7{letter-spacing:0.358839px;}
.ls8{letter-spacing:0.359046px;}
.ls2{letter-spacing:0.359109px;}
.ls4{letter-spacing:0.359114px;}
.lsb{letter-spacing:0.719202px;}
.lsa{letter-spacing:4.319423px;}
.ls1{letter-spacing:34.055251px;}
.ls5{letter-spacing:194.399310px;}
.lsc{letter-spacing:194.407302px;}
.ls6{letter-spacing:195.839311px;}
.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;}
}
.ws2{word-spacing:-18.000676px;}
.ws8{word-spacing:-16.560675px;}
.ws7{word-spacing:-14.940563px;}
.ws5{word-spacing:-12.060450px;}
.ws4{word-spacing:-10.440405px;}
.ws3{word-spacing:-9.720371px;}
.ws6{word-spacing:-8.787216px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:35.995500px;}
._2e{margin-left:-195.000349px;}
._1c{margin-left:-13.130355px;}
._15{margin-left:-11.380891px;}
._1b{margin-left:-7.088369px;}
._1e{margin-left:-4.375671px;}
._2d{margin-left:-3.115726px;}
._7{margin-left:-2.019222px;}
._0{margin-left:-1.008063px;}
._1{width:1.357285px;}
._2{width:2.569985px;}
._b{width:4.240849px;}
._4{width:5.302915px;}
._3{width:6.601229px;}
._6{width:8.114619px;}
._5{width:9.219384px;}
._8{width:10.383121px;}
._9{width:11.757399px;}
._e{width:12.983347px;}
._f{width:14.238175px;}
._10{width:15.999507px;}
._17{width:17.649157px;}
._a{width:19.097538px;}
._16{width:20.308027px;}
._11{width:21.483807px;}
._14{width:22.497160px;}
._12{width:23.503986px;}
._c{width:24.985489px;}
._d{width:26.622872px;}
._27{width:28.016212px;}
._22{width:29.438700px;}
._23{width:30.839815px;}
._28{width:31.853727px;}
._24{width:32.978364px;}
._26{width:34.019106px;}
._25{width:35.511044px;}
._21{width:36.571139px;}
._1a{width:38.384281px;}
._18{width:39.470558px;}
._19{width:40.704441px;}
._29{width:41.829959px;}
._2b{width:46.604586px;}
._2a{width:47.672491px;}
._1f{width:68.363793px;}
._2c{width:176.406626px;}
._1d{width:188.302542px;}
._13{width:194.407302px;}
._20{width:196.078392px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.881485px;}
.fs7{font-size:41.761620px;}
.fs3{font-size:48.241800px;}
.fs6{font-size:59.762250px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.fs0{font-size:72.004500px;}
.y0{bottom:0.000000px;}
.y5f{bottom:109.980011px;}
.y1c6{bottom:110.340088px;}
.y42{bottom:116.640060px;}
.ydc{bottom:122.940033px;}
.yc1{bottom:124.920043px;}
.y5e{bottom:127.260064px;}
.y1c5{bottom:128.340088px;}
.y16f{bottom:131.040047px;}
.y1e{bottom:131.220000px;}
.y16a{bottom:131.760064px;}
.y94{bottom:134.100083px;}
.y10b{bottom:142.380066px;}
.y5d{bottom:144.540047px;}
.ya0{bottom:145.440033px;}
.y1c4{bottom:145.620072px;}
.y130{bottom:147.600083px;}
.y41{bottom:147.780052px;}
.yf9{bottom:151.380066px;}
.ydb{bottom:153.900055px;}
.y1e2{bottom:154.440033px;}
.yc0{bottom:156.060036px;}
.y10a{bottom:159.480079px;}
.y5c{bottom:161.820099px;}
.y1d{bottom:162.360000px;}
.y149{bottom:162.720085px;}
.y1c3{bottom:169.740074px;}
.y1e1{bottom:175.140060px;}
.y12f{bottom:176.040047px;}
.y9f{bottom:176.760064px;}
.y40{bottom:178.740074px;}
.y5b{bottom:179.100083px;}
.y14d{bottom:179.820099px;}
.y125{bottom:180.000068px;}
.y1c2{bottom:180.180039px;}
.yda{bottom:185.040047px;}
.yf8{bottom:185.940033px;}
.y148{bottom:186.480079px;}
.ybf{bottom:187.020058px;}
.y16e{bottom:187.920043px;}
.y120{bottom:190.620072px;}
.y1c{bottom:193.320000px;}
.y169{bottom:193.860077px;}
.y7c{bottom:196.380066px;}
.yf7{bottom:197.280052px;}
.y1cc{bottom:198.360077px;}
.y109{bottom:201.960091px;}
.y5a{bottom:203.220085px;}
.y12e{bottom:204.660049px;}
.y1e0{bottom:204.840088px;}
.y1ad{bottom:205.200096px;}
.y9e{bottom:207.720085px;}
.y3f{bottom:209.880066px;}
.y14c{bottom:210.960091px;}
.y108{bottom:212.400055px;}
.y7b{bottom:213.480079px;}
.y59{bottom:214.380066px;}
.y1c1{bottom:214.560036px;}
.yd9{bottom:216.000068px;}
.y16d{bottom:216.540047px;}
.y147{bottom:217.620072px;}
.y11f{bottom:219.060036px;}
.y93{bottom:220.320099px;}
.y1b{bottom:224.280000px;}
.y124{bottom:224.820099px;}
.y1df{bottom:225.540047px;}
.y107{bottom:229.680039px;}
.y7a{bottom:230.760064px;}
.y11b{bottom:231.660049px;}
.y1c0{bottom:231.840088px;}
.ybe{bottom:233.100083px;}
.ye8{bottom:234.540047px;}
.y1ac{bottom:236.160049px;}
.y186{bottom:237.600083px;}
.y9d{bottom:238.860077px;}
.y3e{bottom:240.840088px;}
.y14b{bottom:241.920043px;}
.y16c{bottom:244.980079px;}
.y168{bottom:246.060036px;}
.yd8{bottom:247.140060px;}
.y11e{bottom:247.500068px;}
.y79{bottom:248.040047px;}
.y146{bottom:248.580093px;}
.y1be{bottom:248.940033px;}
.y1bf{bottom:250.020058px;}
.y106{bottom:253.620072px;}
.y19a{bottom:254.880066px;}
.y1de{bottom:255.240074px;}
.y1a{bottom:255.420000px;}
.y123{bottom:255.960091px;}
.y12d{bottom:261.540047px;}
.ybd{bottom:264.240074px;}
.y105{bottom:264.960091px;}
.y78{bottom:265.320099px;}
.ye7{bottom:265.680039px;}
.y199{bottom:266.220085px;}
.y9c{bottom:269.820099px;}
.y3d{bottom:271.980079px;}
.y114{bottom:272.160049px;}
.y14a{bottom:273.060036px;}
.y16b{bottom:273.420043px;}
.y11d{bottom:275.940033px;}
.y167{bottom:277.200096px;}
.yd7{bottom:278.100083px;}
.y145{bottom:279.720085px;}
.y1ab{bottom:281.160049px;}
.yf6{bottom:282.600083px;}
.y92{bottom:283.500068px;}
.y19{bottom:286.380000px;}
.y122{bottom:286.920043px;}
.y58{bottom:288.000068px;}
.y77{bottom:289.440033px;}
.ybc{bottom:295.200096px;}
.ye6{bottom:296.640060px;}
.y113{bottom:299.700096px;}
.y76{bottom:300.780052px;}
.y9b{bottom:300.960091px;}
.y11a{bottom:301.860077px;}
.y153{bottom:302.400055px;}
.y3c{bottom:302.940033px;}
.y104{bottom:303.480079px;}
.y11c{bottom:304.380066px;}
.y12c{bottom:304.920043px;}
.y1dd{bottom:305.640060px;}
.yf5{bottom:306.540047px;}
.y166{bottom:308.160049px;}
.yd6{bottom:309.240074px;}
.y1aa{bottom:309.600083px;}
.y144{bottom:310.680039px;}
.y112{bottom:316.980079px;}
.y18{bottom:317.520000px;}
.yf4{bottom:317.880066px;}
.y121{bottom:318.060036px;}
.y57{bottom:318.960091px;}
.ybb{bottom:326.340088px;}
.ye5{bottom:327.780052px;}
.y152{bottom:330.840088px;}
.y1a7{bottom:331.380066px;}
.y198{bottom:331.920043px;}
.y119{bottom:333.000068px;}
.y12b{bottom:333.360077px;}
.y3b{bottom:334.080093px;}
.y103{bottom:334.620072px;}
.y1dc{bottom:335.340088px;}
.y1a9{bottom:338.040047px;}
.y165{bottom:339.300041px;}
.y111{bottom:341.100083px;}
.y143{bottom:341.820099px;}
.y9a{bottom:345.780052px;}
.y17{bottom:348.480000px;}
.yf1{bottom:349.020058px;}
.y56{bottom:350.100083px;}
.y110{bottom:352.440033px;}
.yd5{bottom:354.060036px;}
.y1db{bottom:356.040047px;}
.yba{bottom:357.300041px;}
.ye4{bottom:358.740074px;}
.y151{bottom:359.280052px;}
.y12a{bottom:361.800041px;}
.y1a6{bottom:362.520058px;}
.y197{bottom:363.060036px;}
.y118{bottom:363.960091px;}
.y3a{bottom:365.040047px;}
.y1a8{bottom:366.480079px;}
.y164{bottom:370.260064px;}
.y142{bottom:372.780052px;}
.y99{bottom:374.220085px;}
.y75{bottom:376.920043px;}
.y102{bottom:379.440033px;}
.y16{bottom:379.620000px;}
.yf0{bottom:380.160049px;}
.y55{bottom:381.060036px;}
.yd4{bottom:382.500068px;}
.y1da{bottom:385.740074px;}
.y150{bottom:387.720085px;}
.yb9{bottom:388.440033px;}
.ye3{bottom:389.880066px;}
.y129{bottom:390.420043px;}
.y1a5{bottom:393.480079px;}
.y196{bottom:394.020058px;}
.y91{bottom:395.100083px;}
.y185{bottom:396.000068px;}
.y39{bottom:396.180039px;}
.y163{bottom:401.400055px;}
.y98{bottom:402.840088px;}
.y141{bottom:403.920043px;}
.y74{bottom:405.360077px;}
.y1d9{bottom:406.440033px;}
.y101{bottom:407.880066px;}
.y15{bottom:410.580000px;}
.yd3{bottom:411.120072px;}
.y54{bottom:412.200096px;}
.y14f{bottom:416.160049px;}
.y128{bottom:418.860077px;}
.yb8{bottom:419.400055px;}
.ye2{bottom:420.840088px;}
.y184{bottom:424.440033px;}
.y1a4{bottom:424.620072px;}
.y195{bottom:425.160049px;}
.y117{bottom:426.060036px;}
.y90{bottom:426.240074px;}
.y38{bottom:427.140060px;}
.y97{bottom:431.280052px;}
.y162{bottom:432.360077px;}
.y73{bottom:433.800041px;}
.y140{bottom:434.880066px;}
.y1d8{bottom:436.140060px;}
.y100{bottom:436.320099px;}
.yd2{bottom:439.560036px;}
.y14{bottom:441.720000px;}
.yef{bottom:442.260064px;}
.y53{bottom:443.160049px;}
.y14e{bottom:444.600083px;}
.y127{bottom:447.300041px;}
.yb7{bottom:450.540047px;}
.ye1{bottom:451.980079px;}
.y1a3{bottom:455.580093px;}
.y194{bottom:456.120072px;}
.y1d7{bottom:456.840088px;}
.y8f{bottom:457.200096px;}
.y37{bottom:458.280052px;}
.y96{bottom:459.720085px;}
.y72{bottom:462.240074px;}
.yff{bottom:464.760064px;}
.y13f{bottom:466.020058px;}
.yd1{bottom:468.000068px;}
.y183{bottom:469.080093px;}
.y13{bottom:472.680000px;}
.yee{bottom:473.220085px;}
.y52{bottom:474.300041px;}
.y126{bottom:475.740074px;}
.y161{bottom:477.180039px;}
.y1d6{bottom:477.540047px;}
.y1bb{bottom:478.440033px;}
.y1fc{bottom:479.880066px;}
.yb6{bottom:481.500068px;}
.ye0{bottom:482.940033px;}
.y1a2{bottom:486.720085px;}
.y193{bottom:487.260064px;}
.y116{bottom:488.160049px;}
.y8e{bottom:488.340088px;}
.yf3{bottom:489.240074px;}
.y36{bottom:489.420043px;}
.y71{bottom:490.680039px;}
.yfe{bottom:493.380066px;}
.yd0{bottom:496.440033px;}
.y13e{bottom:496.980079px;}
.y1d5{bottom:498.240074px;}
.y182{bottom:500.220085px;}
.y12{bottom:503.820000px;}
.y95{bottom:504.360077px;}
.y51{bottom:505.260064px;}
.y160{bottom:505.800041px;}
.y1ba{bottom:509.400055px;}
.y1fb{bottom:510.120072px;}
.yb5{bottom:512.640060px;}
.y1a1{bottom:517.680039px;}
.y192{bottom:518.220085px;}
.y70{bottom:519.120072px;}
.y8d{bottom:519.300041px;}
.yf2{bottom:520.380066px;}
.ydf{bottom:521.820099px;}
.y1d4{bottom:527.940033px;}
.y13d{bottom:528.120072px;}
.y181{bottom:531.180039px;}
.y15f{bottom:534.240074px;}
.y35{bottom:535.320099px;}
.y1bd{bottom:536.400055px;}
.y1b9{bottom:540.540047px;}
.ycf{bottom:541.080093px;}
.yb4{bottom:543.600083px;}
.yde{bottom:545.580093px;}
.y6f{bottom:547.560036px;}
.y1a0{bottom:548.820099px;}
.y11{bottom:549.900000px;}
.y115{bottom:550.260064px;}
.y8c{bottom:550.440033px;}
.y50{bottom:551.340088px;}
.y1fa{bottom:556.200096px;}
.y1d3{bottom:557.640060px;}
.y13c{bottom:559.080093px;}
.y180{bottom:562.320099px;}
.y15e{bottom:562.680039px;}
.y1cb{bottom:563.220085px;}
.y191{bottom:564.300041px;}
.y34{bottom:566.460091px;}
.y1bc{bottom:567.360077px;}
.y1b8{bottom:571.500068px;}
.yce{bottom:572.040047px;}
.yb3{bottom:574.740074px;}
.y6e{bottom:576.180039px;}
.y1d2{bottom:578.340088px;}
.y19f{bottom:579.780052px;}
.y10{bottom:580.860000px;}
.y10f{bottom:581.400055px;}
.y4f{bottom:582.480079px;}
.ydd{bottom:583.920043px;}
.y1f9{bottom:586.080093px;}
.y13b{bottom:590.220085px;}
.y15d{bottom:591.120072px;}
.y1ca{bottom:591.660049px;}
.y17f{bottom:593.280052px;}
.y190{bottom:595.440033px;}
.y8b{bottom:596.340088px;}
.y33{bottom:597.420043px;}
.y1b7{bottom:602.640060px;}
.ycd{bottom:603.180039px;}
.y6d{bottom:604.620072px;}
.yb2{bottom:605.700096px;}
.y1f8{bottom:606.780052px;}
.y1d1{bottom:608.040047px;}
.y19e{bottom:610.920043px;}
.yf{bottom:612.000000px;}
.y10e{bottom:612.360077px;}
.y4e{bottom:613.440033px;}
.y15c{bottom:619.560036px;}
.y1c9{bottom:620.100083px;}
.y13a{bottom:621.180039px;}
.y17e{bottom:624.420043px;}
.y18f{bottom:626.400055px;}
.y32{bottom:628.380066px;}
.y6c{bottom:633.060036px;}
.y1b6{bottom:633.600083px;}
.ycc{bottom:634.140060px;}
.y1f7{bottom:636.480079px;}
.yb1{bottom:636.840088px;}
.y1d0{bottom:637.740074px;}
.y8a{bottom:642.420043px;}
.ye{bottom:642.960000px;}
.y10d{bottom:643.500068px;}
.y4d{bottom:644.580093px;}
.y15b{bottom:648.000068px;}
.y1c8{bottom:648.540047px;}
.y139{bottom:652.320099px;}
.y19d{bottom:655.740074px;}
.y1f6{bottom:657.180039px;}
.y18e{bottom:657.540047px;}
.y31{bottom:659.520058px;}
.y6b{bottom:661.500068px;}
.y1b5{bottom:664.740074px;}
.ycb{bottom:665.280052px;}
.y1cf{bottom:667.440033px;}
.yb0{bottom:667.800041px;}
.y17d{bottom:669.240074px;}
.yd{bottom:674.100000px;}
.y10c{bottom:674.460091px;}
.y4c{bottom:675.540047px;}
.y15a{bottom:676.440033px;}
.y1c7{bottom:676.980079px;}
.y138{bottom:683.280052px;}
.y19c{bottom:684.180039px;}
.y1f5{bottom:686.880066px;}
.y89{bottom:688.500068px;}
.y6a{bottom:689.940067px;}
.y30{bottom:690.480079px;}
.y1b4{bottom:695.700061px;}
.yca{bottom:696.240074px;}
.y17c{bottom:697.680073px;}
.yaf{bottom:698.760064px;}
.y159{bottom:704.880066px;}
.yc{bottom:705.060000px;}
.yfd{bottom:705.600083px;}
.y1ce{bottom:706.140060px;}
.y4b{bottom:706.680073px;}
.y19b{bottom:712.620072px;}
.y137{bottom:714.420078px;}
.y1f4{bottom:716.580059px;}
.y69{bottom:718.380066px;}
.y88{bottom:719.460056px;}
.y2f{bottom:721.620072px;}
.y17b{bottom:726.120072px;}
.y1b3{bottom:726.840054px;}
.yae{bottom:729.900055px;}
.y158{bottom:733.320065px;}
.yb{bottom:736.200000px;}
.yfc{bottom:736.560070px;}
.y4a{bottom:737.640060px;}
.yc9{bottom:741.240074px;}
.y1cd{bottom:744.840054px;}
.y136{bottom:745.380066px;}
.y1f3{bottom:746.280052px;}
.y68{bottom:746.820065px;}
.y87{bottom:750.600083px;}
.y2e{bottom:752.580059px;}
.y17a{bottom:754.560070px;}
.y1b2{bottom:757.800076px;}
.yad{bottom:760.860077px;}
.y157{bottom:761.940067px;}
.ya{bottom:767.160000px;}
.yfb{bottom:767.700061px;}
.y49{bottom:768.780052px;}
.yc8{bottom:769.680073px;}
.y67{bottom:775.260064px;}
.y1f2{bottom:775.980079px;}
.y135{bottom:776.520058px;}
.y86{bottom:781.560070px;}
.y179{bottom:783.000068px;}
.y2d{bottom:783.720051px;}
.y1b1{bottom:788.940067px;}
.y156{bottom:790.380066px;}
.yac{bottom:792.000068px;}
.y1f1{bottom:796.680073px;}
.yc7{bottom:798.120072px;}
.y9{bottom:798.300000px;}
.yfa{bottom:798.660049px;}
.y48{bottom:799.740074px;}
.y66{bottom:803.700061px;}
.y134{bottom:807.480079px;}
.y178{bottom:811.620072px;}
.y85{bottom:812.700061px;}
.y2c{bottom:814.680073px;}
.y1f0{bottom:817.380066px;}
.y155{bottom:818.820065px;}
.y1b0{bottom:819.900055px;}
.yab{bottom:822.960056px;}
.yc6{bottom:826.560070px;}
.y18d{bottom:828.540081px;}
.y8{bottom:829.260000px;}
.yed{bottom:829.800076px;}
.y47{bottom:830.880066px;}
.y65{bottom:832.320065px;}
.y177{bottom:840.060070px;}
.y84{bottom:843.660049px;}
.y2b{bottom:845.820065px;}
.y1ef{bottom:847.080059px;}
.y154{bottom:847.260064px;}
.y1af{bottom:851.040081px;}
.y133{bottom:852.480079px;}
.yaa{bottom:854.100083px;}
.yc5{bottom:855.000068px;}
.y18c{bottom:856.980079px;}
.y7{bottom:860.400000px;}
.yec{bottom:860.760064px;}
.y46{bottom:861.840054px;}
.y1ee{bottom:867.780052px;}
.y176{bottom:868.500068px;}
.y83{bottom:874.800076px;}
.y2a{bottom:876.780052px;}
.y132{bottom:880.920078px;}
.y1ae{bottom:882.000068px;}
.yc4{bottom:883.440067px;}
.y18b{bottom:885.600083px;}
.y6{bottom:891.360000px;}
.yeb{bottom:891.900055px;}
.y45{bottom:892.980079px;}
.y1ed{bottom:897.480079px;}
.ya9{bottom:898.920078px;}
.y82{bottom:905.760064px;}
.y29{bottom:907.920078px;}
.y131{bottom:909.360077px;}
.yc3{bottom:911.880066px;}
.y175{bottom:913.140060px;}
.y18a{bottom:914.040081px;}
.y1ec{bottom:918.180073px;}
.y5{bottom:922.320000px;}
.yea{bottom:922.860077px;}
.y44{bottom:923.580059px;}
.ya8{bottom:927.360077px;}
.y64{bottom:938.880066px;}
.y28{bottom:939.060070px;}
.yc2{bottom:940.320065px;}
.y189{bottom:942.480079px;}
.y174{bottom:944.100083px;}
.y1eb{bottom:947.880066px;}
.y81{bottom:950.760064px;}
.ye9{bottom:954.000068px;}
.ya7{bottom:955.980079px;}
.y4{bottom:961.200000px;}
.y1ea{bottom:968.580059px;}
.y43{bottom:969.840054px;}
.y63{bottom:970.020058px;}
.y188{bottom:970.920078px;}
.y173{bottom:975.240074px;}
.y80{bottom:979.200061px;}
.ya6{bottom:984.420061px;}
.y27{bottom:984.960074px;}
.y1e9{bottom:989.280069px;}
.y187{bottom:999.360060px;}
.y62{bottom:1000.980063px;}
.y172{bottom:1006.200061px;}
.y7f{bottom:1007.640060px;}
.y1e8{bottom:1009.980063px;}
.y26{bottom:1016.100065px;}
.ya5{bottom:1027.800058px;}
.y61{bottom:1032.120072px;}
.y7e{bottom:1036.080059px;}
.y171{bottom:1037.340070px;}
.y1e7{bottom:1039.680073px;}
.y25{bottom:1047.060070px;}
.ya4{bottom:1056.240074px;}
.y1e6{bottom:1060.380066px;}
.y60{bottom:1063.080059px;}
.y7d{bottom:1064.520058px;}
.y170{bottom:1068.300058px;}
.y3{bottom:1077.660000px;}
.y24{bottom:1078.200061px;}
.ya3{bottom:1084.680073px;}
.y1e5{bottom:1090.080059px;}
.y23{bottom:1109.160067px;}
.ya2{bottom:1113.120072px;}
.y2{bottom:1116.360000px;}
.y1e4{bottom:1119.780069px;}
.y1{bottom:1140.300000px;}
.y22{bottom:1140.300067px;}
.y1e3{bottom:1140.480063px;}
.ya1{bottom:1141.740066px;}
.y21{bottom:1182.301500px;}
.y20{bottom:1202.101500px;}
.y1f{bottom:1221.901500px;}
.h8{height:34.856644px;}
.h12{height:38.672649px;}
.h5{height:52.419938px;}
.h9{height:53.575923px;}
.h1a{height:54.880968px;}
.h3{height:57.911133px;}
.ha{height:59.385546px;}
.h19{height:59.441261px;}
.h4{height:64.549300px;}
.h2{height:64.550909px;}
.h7{height:65.886904px;}
.hb{height:67.678505px;}
.h14{height:67.678509px;}
.h16{height:67.678608px;}
.hc{height:67.678644px;}
.h17{height:67.678649px;}
.h11{height:67.678779px;}
.h18{height:67.678784px;}
.h6{height:76.367952px;}
.h10{height:76.367957px;}
.he{height:76.368020px;}
.hd{height:76.368024px;}
.h13{height:76.368087px;}
.hf{height:76.368227px;}
.h15{height:76.368231px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:79.849500px;}
.x6{left:127.620000px;}
.x1{left:139.320000px;}
.x4{left:154.620000px;}
.x5{left:180.720000px;}
.x9{left:187.020006px;}
.xa{left:207.719999px;}
.x8{left:233.639992px;}
.x2{left:281.700000px;}
.x3{left:392.220000px;}
@media print{
.v4{vertical-align:-26.880128pt;}
.v2{vertical-align:-24.320068pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.879880pt;}
.v1{vertical-align:29.439940pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004370pt;}
.lsd{letter-spacing:0.154432pt;}
.ls9{letter-spacing:0.159440pt;}
.ls7{letter-spacing:0.318968pt;}
.ls8{letter-spacing:0.319152pt;}
.ls2{letter-spacing:0.319208pt;}
.ls4{letter-spacing:0.319212pt;}
.lsb{letter-spacing:0.639291pt;}
.lsa{letter-spacing:3.839487pt;}
.ls1{letter-spacing:30.271334pt;}
.ls5{letter-spacing:172.799387pt;}
.lsc{letter-spacing:172.806491pt;}
.ls6{letter-spacing:174.079388pt;}
.ws2{word-spacing:-16.000601pt;}
.ws8{word-spacing:-14.720600pt;}
.ws7{word-spacing:-13.280500pt;}
.ws5{word-spacing:-10.720400pt;}
.ws4{word-spacing:-9.280360pt;}
.ws3{word-spacing:-8.640330pt;}
.ws6{word-spacing:-7.810858pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:31.996000pt;}
._2e{margin-left:-173.333643pt;}
._1c{margin-left:-11.671427pt;}
._15{margin-left:-10.116347pt;}
._1b{margin-left:-6.300772pt;}
._1e{margin-left:-3.889485pt;}
._2d{margin-left:-2.769534pt;}
._7{margin-left:-1.794864pt;}
._0{margin-left:-0.896056pt;}
._1{width:1.206475pt;}
._2{width:2.284431pt;}
._b{width:3.769644pt;}
._4{width:4.713703pt;}
._3{width:5.867759pt;}
._6{width:7.212995pt;}
._5{width:8.195008pt;}
._8{width:9.229441pt;}
._9{width:10.451021pt;}
._e{width:11.540753pt;}
._f{width:12.656156pt;}
._10{width:14.221784pt;}
._17{width:15.688140pt;}
._a{width:16.975589pt;}
._16{width:18.051580pt;}
._11{width:19.096717pt;}
._14{width:19.997476pt;}
._12{width:20.892432pt;}
._c{width:22.209324pt;}
._d{width:23.664775pt;}
._27{width:24.903299pt;}
._22{width:26.167733pt;}
._23{width:27.413169pt;}
._28{width:28.314424pt;}
._24{width:29.314101pt;}
._26{width:30.239206pt;}
._25{width:31.565372pt;}
._21{width:32.507679pt;}
._1a{width:34.119361pt;}
._18{width:35.084940pt;}
._19{width:36.181726pt;}
._29{width:37.182186pt;}
._2b{width:41.426298pt;}
._2a{width:42.375547pt;}
._1f{width:60.767816pt;}
._2c{width:156.805890pt;}
._1d{width:167.380037pt;}
._13{width:172.806491pt;}
._20{width:174.291904pt;}
.fs5{font-size:34.561320pt;}
.fs7{font-size:37.121440pt;}
.fs3{font-size:42.881600pt;}
.fs6{font-size:53.122000pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.fs0{font-size:64.004000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:97.760010pt;}
.y1c6{bottom:98.080079pt;}
.y42{bottom:103.680054pt;}
.ydc{bottom:109.280030pt;}
.yc1{bottom:111.040039pt;}
.y5e{bottom:113.120057pt;}
.y1c5{bottom:114.080079pt;}
.y16f{bottom:116.480042pt;}
.y1e{bottom:116.640000pt;}
.y16a{bottom:117.120057pt;}
.y94{bottom:119.200074pt;}
.y10b{bottom:126.560059pt;}
.y5d{bottom:128.480042pt;}
.ya0{bottom:129.280030pt;}
.y1c4{bottom:129.440064pt;}
.y130{bottom:131.200074pt;}
.y41{bottom:131.360047pt;}
.yf9{bottom:134.560059pt;}
.ydb{bottom:136.800049pt;}
.y1e2{bottom:137.280030pt;}
.yc0{bottom:138.720032pt;}
.y10a{bottom:141.760071pt;}
.y5c{bottom:143.840088pt;}
.y1d{bottom:144.320000pt;}
.y149{bottom:144.640076pt;}
.y1c3{bottom:150.880066pt;}
.y1e1{bottom:155.680054pt;}
.y12f{bottom:156.480042pt;}
.y9f{bottom:157.120057pt;}
.y40{bottom:158.880066pt;}
.y5b{bottom:159.200074pt;}
.y14d{bottom:159.840088pt;}
.y125{bottom:160.000061pt;}
.y1c2{bottom:160.160035pt;}
.yda{bottom:164.480042pt;}
.yf8{bottom:165.280030pt;}
.y148{bottom:165.760071pt;}
.ybf{bottom:166.240052pt;}
.y16e{bottom:167.040039pt;}
.y120{bottom:169.440064pt;}
.y1c{bottom:171.840000pt;}
.y169{bottom:172.320069pt;}
.y7c{bottom:174.560059pt;}
.yf7{bottom:175.360047pt;}
.y1cc{bottom:176.320069pt;}
.y109{bottom:179.520081pt;}
.y5a{bottom:180.640076pt;}
.y12e{bottom:181.920044pt;}
.y1e0{bottom:182.080079pt;}
.y1ad{bottom:182.400086pt;}
.y9e{bottom:184.640076pt;}
.y3f{bottom:186.560059pt;}
.y14c{bottom:187.520081pt;}
.y108{bottom:188.800049pt;}
.y7b{bottom:189.760071pt;}
.y59{bottom:190.560059pt;}
.y1c1{bottom:190.720032pt;}
.yd9{bottom:192.000061pt;}
.y16d{bottom:192.480042pt;}
.y147{bottom:193.440064pt;}
.y11f{bottom:194.720032pt;}
.y93{bottom:195.840088pt;}
.y1b{bottom:199.360000pt;}
.y124{bottom:199.840088pt;}
.y1df{bottom:200.480042pt;}
.y107{bottom:204.160035pt;}
.y7a{bottom:205.120057pt;}
.y11b{bottom:205.920044pt;}
.y1c0{bottom:206.080079pt;}
.ybe{bottom:207.200074pt;}
.ye8{bottom:208.480042pt;}
.y1ac{bottom:209.920044pt;}
.y186{bottom:211.200074pt;}
.y9d{bottom:212.320069pt;}
.y3e{bottom:214.080079pt;}
.y14b{bottom:215.040039pt;}
.y16c{bottom:217.760071pt;}
.y168{bottom:218.720032pt;}
.yd8{bottom:219.680054pt;}
.y11e{bottom:220.000061pt;}
.y79{bottom:220.480042pt;}
.y146{bottom:220.960083pt;}
.y1be{bottom:221.280030pt;}
.y1bf{bottom:222.240052pt;}
.y106{bottom:225.440064pt;}
.y19a{bottom:226.560059pt;}
.y1de{bottom:226.880066pt;}
.y1a{bottom:227.040000pt;}
.y123{bottom:227.520081pt;}
.y12d{bottom:232.480042pt;}
.ybd{bottom:234.880066pt;}
.y105{bottom:235.520081pt;}
.y78{bottom:235.840088pt;}
.ye7{bottom:236.160035pt;}
.y199{bottom:236.640076pt;}
.y9c{bottom:239.840088pt;}
.y3d{bottom:241.760071pt;}
.y114{bottom:241.920044pt;}
.y14a{bottom:242.720032pt;}
.y16b{bottom:243.040039pt;}
.y11d{bottom:245.280030pt;}
.y167{bottom:246.400086pt;}
.yd7{bottom:247.200074pt;}
.y145{bottom:248.640076pt;}
.y1ab{bottom:249.920044pt;}
.yf6{bottom:251.200074pt;}
.y92{bottom:252.000061pt;}
.y19{bottom:254.560000pt;}
.y122{bottom:255.040039pt;}
.y58{bottom:256.000061pt;}
.y77{bottom:257.280030pt;}
.ybc{bottom:262.400086pt;}
.ye6{bottom:263.680054pt;}
.y113{bottom:266.400086pt;}
.y76{bottom:267.360047pt;}
.y9b{bottom:267.520081pt;}
.y11a{bottom:268.320069pt;}
.y153{bottom:268.800049pt;}
.y3c{bottom:269.280030pt;}
.y104{bottom:269.760071pt;}
.y11c{bottom:270.560059pt;}
.y12c{bottom:271.040039pt;}
.y1dd{bottom:271.680054pt;}
.yf5{bottom:272.480042pt;}
.y166{bottom:273.920044pt;}
.yd6{bottom:274.880066pt;}
.y1aa{bottom:275.200074pt;}
.y144{bottom:276.160035pt;}
.y112{bottom:281.760071pt;}
.y18{bottom:282.240000pt;}
.yf4{bottom:282.560059pt;}
.y121{bottom:282.720032pt;}
.y57{bottom:283.520081pt;}
.ybb{bottom:290.080079pt;}
.ye5{bottom:291.360047pt;}
.y152{bottom:294.080079pt;}
.y1a7{bottom:294.560059pt;}
.y198{bottom:295.040039pt;}
.y119{bottom:296.000061pt;}
.y12b{bottom:296.320069pt;}
.y3b{bottom:296.960083pt;}
.y103{bottom:297.440064pt;}
.y1dc{bottom:298.080079pt;}
.y1a9{bottom:300.480042pt;}
.y165{bottom:301.600037pt;}
.y111{bottom:303.200074pt;}
.y143{bottom:303.840088pt;}
.y9a{bottom:307.360047pt;}
.y17{bottom:309.760000pt;}
.yf1{bottom:310.240052pt;}
.y56{bottom:311.200074pt;}
.y110{bottom:313.280030pt;}
.yd5{bottom:314.720032pt;}
.y1db{bottom:316.480042pt;}
.yba{bottom:317.600037pt;}
.ye4{bottom:318.880066pt;}
.y151{bottom:319.360047pt;}
.y12a{bottom:321.600037pt;}
.y1a6{bottom:322.240052pt;}
.y197{bottom:322.720032pt;}
.y118{bottom:323.520081pt;}
.y3a{bottom:324.480042pt;}
.y1a8{bottom:325.760071pt;}
.y164{bottom:329.120057pt;}
.y142{bottom:331.360047pt;}
.y99{bottom:332.640076pt;}
.y75{bottom:335.040039pt;}
.y102{bottom:337.280030pt;}
.y16{bottom:337.440000pt;}
.yf0{bottom:337.920044pt;}
.y55{bottom:338.720032pt;}
.yd4{bottom:340.000061pt;}
.y1da{bottom:342.880066pt;}
.y150{bottom:344.640076pt;}
.yb9{bottom:345.280030pt;}
.ye3{bottom:346.560059pt;}
.y129{bottom:347.040039pt;}
.y1a5{bottom:349.760071pt;}
.y196{bottom:350.240052pt;}
.y91{bottom:351.200074pt;}
.y185{bottom:352.000061pt;}
.y39{bottom:352.160035pt;}
.y163{bottom:356.800049pt;}
.y98{bottom:358.080079pt;}
.y141{bottom:359.040039pt;}
.y74{bottom:360.320069pt;}
.y1d9{bottom:361.280030pt;}
.y101{bottom:362.560059pt;}
.y15{bottom:364.960000pt;}
.yd3{bottom:365.440064pt;}
.y54{bottom:366.400086pt;}
.y14f{bottom:369.920044pt;}
.y128{bottom:372.320069pt;}
.yb8{bottom:372.800049pt;}
.ye2{bottom:374.080079pt;}
.y184{bottom:377.280030pt;}
.y1a4{bottom:377.440064pt;}
.y195{bottom:377.920044pt;}
.y117{bottom:378.720032pt;}
.y90{bottom:378.880066pt;}
.y38{bottom:379.680054pt;}
.y97{bottom:383.360047pt;}
.y162{bottom:384.320069pt;}
.y73{bottom:385.600037pt;}
.y140{bottom:386.560059pt;}
.y1d8{bottom:387.680054pt;}
.y100{bottom:387.840088pt;}
.yd2{bottom:390.720032pt;}
.y14{bottom:392.640000pt;}
.yef{bottom:393.120057pt;}
.y53{bottom:393.920044pt;}
.y14e{bottom:395.200074pt;}
.y127{bottom:397.600037pt;}
.yb7{bottom:400.480042pt;}
.ye1{bottom:401.760071pt;}
.y1a3{bottom:404.960083pt;}
.y194{bottom:405.440064pt;}
.y1d7{bottom:406.080079pt;}
.y8f{bottom:406.400086pt;}
.y37{bottom:407.360047pt;}
.y96{bottom:408.640076pt;}
.y72{bottom:410.880066pt;}
.yff{bottom:413.120057pt;}
.y13f{bottom:414.240052pt;}
.yd1{bottom:416.000061pt;}
.y183{bottom:416.960083pt;}
.y13{bottom:420.160000pt;}
.yee{bottom:420.640076pt;}
.y52{bottom:421.600037pt;}
.y126{bottom:422.880066pt;}
.y161{bottom:424.160035pt;}
.y1d6{bottom:424.480042pt;}
.y1bb{bottom:425.280030pt;}
.y1fc{bottom:426.560059pt;}
.yb6{bottom:428.000061pt;}
.ye0{bottom:429.280030pt;}
.y1a2{bottom:432.640076pt;}
.y193{bottom:433.120057pt;}
.y116{bottom:433.920044pt;}
.y8e{bottom:434.080079pt;}
.yf3{bottom:434.880066pt;}
.y36{bottom:435.040039pt;}
.y71{bottom:436.160035pt;}
.yfe{bottom:438.560059pt;}
.yd0{bottom:441.280030pt;}
.y13e{bottom:441.760071pt;}
.y1d5{bottom:442.880066pt;}
.y182{bottom:444.640076pt;}
.y12{bottom:447.840000pt;}
.y95{bottom:448.320069pt;}
.y51{bottom:449.120057pt;}
.y160{bottom:449.600037pt;}
.y1ba{bottom:452.800049pt;}
.y1fb{bottom:453.440064pt;}
.yb5{bottom:455.680054pt;}
.y1a1{bottom:460.160035pt;}
.y192{bottom:460.640076pt;}
.y70{bottom:461.440064pt;}
.y8d{bottom:461.600037pt;}
.yf2{bottom:462.560059pt;}
.ydf{bottom:463.840088pt;}
.y1d4{bottom:469.280030pt;}
.y13d{bottom:469.440064pt;}
.y181{bottom:472.160035pt;}
.y15f{bottom:474.880066pt;}
.y35{bottom:475.840088pt;}
.y1bd{bottom:476.800049pt;}
.y1b9{bottom:480.480042pt;}
.ycf{bottom:480.960083pt;}
.yb4{bottom:483.200074pt;}
.yde{bottom:484.960083pt;}
.y6f{bottom:486.720032pt;}
.y1a0{bottom:487.840088pt;}
.y11{bottom:488.800000pt;}
.y115{bottom:489.120057pt;}
.y8c{bottom:489.280030pt;}
.y50{bottom:490.080079pt;}
.y1fa{bottom:494.400086pt;}
.y1d3{bottom:495.680054pt;}
.y13c{bottom:496.960083pt;}
.y180{bottom:499.840088pt;}
.y15e{bottom:500.160035pt;}
.y1cb{bottom:500.640076pt;}
.y191{bottom:501.600037pt;}
.y34{bottom:503.520081pt;}
.y1bc{bottom:504.320069pt;}
.y1b8{bottom:508.000061pt;}
.yce{bottom:508.480042pt;}
.yb3{bottom:510.880066pt;}
.y6e{bottom:512.160035pt;}
.y1d2{bottom:514.080079pt;}
.y19f{bottom:515.360047pt;}
.y10{bottom:516.320000pt;}
.y10f{bottom:516.800049pt;}
.y4f{bottom:517.760071pt;}
.ydd{bottom:519.040039pt;}
.y1f9{bottom:520.960083pt;}
.y13b{bottom:524.640076pt;}
.y15d{bottom:525.440064pt;}
.y1ca{bottom:525.920044pt;}
.y17f{bottom:527.360047pt;}
.y190{bottom:529.280030pt;}
.y8b{bottom:530.080079pt;}
.y33{bottom:531.040039pt;}
.y1b7{bottom:535.680054pt;}
.ycd{bottom:536.160035pt;}
.y6d{bottom:537.440064pt;}
.yb2{bottom:538.400086pt;}
.y1f8{bottom:539.360047pt;}
.y1d1{bottom:540.480042pt;}
.y19e{bottom:543.040039pt;}
.yf{bottom:544.000000pt;}
.y10e{bottom:544.320069pt;}
.y4e{bottom:545.280030pt;}
.y15c{bottom:550.720032pt;}
.y1c9{bottom:551.200074pt;}
.y13a{bottom:552.160035pt;}
.y17e{bottom:555.040039pt;}
.y18f{bottom:556.800049pt;}
.y32{bottom:558.560059pt;}
.y6c{bottom:562.720032pt;}
.y1b6{bottom:563.200074pt;}
.ycc{bottom:563.680054pt;}
.y1f7{bottom:565.760071pt;}
.yb1{bottom:566.080079pt;}
.y1d0{bottom:566.880066pt;}
.y8a{bottom:571.040039pt;}
.ye{bottom:571.520000pt;}
.y10d{bottom:572.000061pt;}
.y4d{bottom:572.960083pt;}
.y15b{bottom:576.000061pt;}
.y1c8{bottom:576.480042pt;}
.y139{bottom:579.840088pt;}
.y19d{bottom:582.880066pt;}
.y1f6{bottom:584.160035pt;}
.y18e{bottom:584.480042pt;}
.y31{bottom:586.240052pt;}
.y6b{bottom:588.000061pt;}
.y1b5{bottom:590.880066pt;}
.ycb{bottom:591.360047pt;}
.y1cf{bottom:593.280030pt;}
.yb0{bottom:593.600037pt;}
.y17d{bottom:594.880066pt;}
.yd{bottom:599.200000pt;}
.y10c{bottom:599.520081pt;}
.y4c{bottom:600.480042pt;}
.y15a{bottom:601.280030pt;}
.y1c7{bottom:601.760071pt;}
.y138{bottom:607.360047pt;}
.y19c{bottom:608.160035pt;}
.y1f5{bottom:610.560059pt;}
.y89{bottom:612.000061pt;}
.y6a{bottom:613.280060pt;}
.y30{bottom:613.760071pt;}
.y1b4{bottom:618.400055pt;}
.yca{bottom:618.880066pt;}
.y17c{bottom:620.160065pt;}
.yaf{bottom:621.120057pt;}
.y159{bottom:626.560059pt;}
.yc{bottom:626.720000pt;}
.yfd{bottom:627.200074pt;}
.y1ce{bottom:627.680054pt;}
.y4b{bottom:628.160065pt;}
.y19b{bottom:633.440064pt;}
.y137{bottom:635.040070pt;}
.y1f4{bottom:636.960053pt;}
.y69{bottom:638.560059pt;}
.y88{bottom:639.520050pt;}
.y2f{bottom:641.440064pt;}
.y17b{bottom:645.440064pt;}
.y1b3{bottom:646.080048pt;}
.yae{bottom:648.800049pt;}
.y158{bottom:651.840058pt;}
.yb{bottom:654.400000pt;}
.yfc{bottom:654.720063pt;}
.y4a{bottom:655.680054pt;}
.yc9{bottom:658.880066pt;}
.y1cd{bottom:662.080048pt;}
.y136{bottom:662.560059pt;}
.y1f3{bottom:663.360047pt;}
.y68{bottom:663.840058pt;}
.y87{bottom:667.200074pt;}
.y2e{bottom:668.960053pt;}
.y17a{bottom:670.720063pt;}
.y1b2{bottom:673.600068pt;}
.yad{bottom:676.320069pt;}
.y157{bottom:677.280060pt;}
.ya{bottom:681.920000pt;}
.yfb{bottom:682.400055pt;}
.y49{bottom:683.360047pt;}
.yc8{bottom:684.160065pt;}
.y67{bottom:689.120057pt;}
.y1f2{bottom:689.760071pt;}
.y135{bottom:690.240052pt;}
.y86{bottom:694.720063pt;}
.y179{bottom:696.000061pt;}
.y2d{bottom:696.640046pt;}
.y1b1{bottom:701.280060pt;}
.y156{bottom:702.560059pt;}
.yac{bottom:704.000061pt;}
.y1f1{bottom:708.160065pt;}
.yc7{bottom:709.440064pt;}
.y9{bottom:709.600000pt;}
.yfa{bottom:709.920044pt;}
.y48{bottom:710.880066pt;}
.y66{bottom:714.400055pt;}
.y134{bottom:717.760071pt;}
.y178{bottom:721.440064pt;}
.y85{bottom:722.400055pt;}
.y2c{bottom:724.160065pt;}
.y1f0{bottom:726.560059pt;}
.y155{bottom:727.840058pt;}
.y1b0{bottom:728.800049pt;}
.yab{bottom:731.520050pt;}
.yc6{bottom:734.720063pt;}
.y18d{bottom:736.480072pt;}
.y8{bottom:737.120000pt;}
.yed{bottom:737.600068pt;}
.y47{bottom:738.560059pt;}
.y65{bottom:739.840058pt;}
.y177{bottom:746.720063pt;}
.y84{bottom:749.920044pt;}
.y2b{bottom:751.840058pt;}
.y1ef{bottom:752.960053pt;}
.y154{bottom:753.120057pt;}
.y1af{bottom:756.480072pt;}
.y133{bottom:757.760071pt;}
.yaa{bottom:759.200074pt;}
.yc5{bottom:760.000061pt;}
.y18c{bottom:761.760071pt;}
.y7{bottom:764.800000pt;}
.yec{bottom:765.120057pt;}
.y46{bottom:766.080048pt;}
.y1ee{bottom:771.360047pt;}
.y176{bottom:772.000061pt;}
.y83{bottom:777.600068pt;}
.y2a{bottom:779.360047pt;}
.y132{bottom:783.040070pt;}
.y1ae{bottom:784.000061pt;}
.yc4{bottom:785.280060pt;}
.y18b{bottom:787.200074pt;}
.y6{bottom:792.320000pt;}
.yeb{bottom:792.800049pt;}
.y45{bottom:793.760071pt;}
.y1ed{bottom:797.760071pt;}
.ya9{bottom:799.040070pt;}
.y82{bottom:805.120057pt;}
.y29{bottom:807.040070pt;}
.y131{bottom:808.320069pt;}
.yc3{bottom:810.560059pt;}
.y175{bottom:811.680054pt;}
.y18a{bottom:812.480072pt;}
.y1ec{bottom:816.160065pt;}
.y5{bottom:819.840000pt;}
.yea{bottom:820.320069pt;}
.y44{bottom:820.960053pt;}
.ya8{bottom:824.320069pt;}
.y64{bottom:834.560059pt;}
.y28{bottom:834.720063pt;}
.yc2{bottom:835.840058pt;}
.y189{bottom:837.760071pt;}
.y174{bottom:839.200074pt;}
.y1eb{bottom:842.560059pt;}
.y81{bottom:845.120057pt;}
.ye9{bottom:848.000061pt;}
.ya7{bottom:849.760071pt;}
.y4{bottom:854.400000pt;}
.y1ea{bottom:860.960053pt;}
.y43{bottom:862.080048pt;}
.y63{bottom:862.240052pt;}
.y188{bottom:863.040070pt;}
.y173{bottom:866.880066pt;}
.y80{bottom:870.400055pt;}
.ya6{bottom:875.040055pt;}
.y27{bottom:875.520066pt;}
.y1e9{bottom:879.360062pt;}
.y187{bottom:888.320054pt;}
.y62{bottom:889.760056pt;}
.y172{bottom:894.400055pt;}
.y7f{bottom:895.680054pt;}
.y1e8{bottom:897.760056pt;}
.y26{bottom:903.200058pt;}
.ya5{bottom:913.600052pt;}
.y61{bottom:917.440064pt;}
.y7e{bottom:920.960053pt;}
.y171{bottom:922.080063pt;}
.y1e7{bottom:924.160065pt;}
.y25{bottom:930.720063pt;}
.ya4{bottom:938.880066pt;}
.y1e6{bottom:942.560059pt;}
.y60{bottom:944.960053pt;}
.y7d{bottom:946.240052pt;}
.y170{bottom:949.600052pt;}
.y3{bottom:957.920000pt;}
.y24{bottom:958.400055pt;}
.ya3{bottom:964.160065pt;}
.y1e5{bottom:968.960053pt;}
.y23{bottom:985.920060pt;}
.ya2{bottom:989.440064pt;}
.y2{bottom:992.320000pt;}
.y1e4{bottom:995.360062pt;}
.y1{bottom:1013.600000pt;}
.y22{bottom:1013.600060pt;}
.y1e3{bottom:1013.760056pt;}
.ya1{bottom:1014.880059pt;}
.y21{bottom:1050.934667pt;}
.y20{bottom:1068.534667pt;}
.y1f{bottom:1086.134667pt;}
.h8{height:30.983683pt;}
.h12{height:34.375688pt;}
.h5{height:46.595500pt;}
.h9{height:47.623043pt;}
.h1a{height:48.783082pt;}
.h3{height:51.476562pt;}
.ha{height:52.787152pt;}
.h19{height:52.836677pt;}
.h4{height:57.377155pt;}
.h2{height:57.378586pt;}
.h7{height:58.566137pt;}
.hb{height:60.158671pt;}
.h14{height:60.158675pt;}
.h16{height:60.158763pt;}
.hc{height:60.158795pt;}
.h17{height:60.158799pt;}
.h11{height:60.158915pt;}
.h18{height:60.158919pt;}
.h6{height:67.882624pt;}
.h10{height:67.882628pt;}
.he{height:67.882684pt;}
.hd{height:67.882688pt;}
.h13{height:67.882744pt;}
.hf{height:67.882868pt;}
.h15{height:67.882872pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:70.977333pt;}
.x6{left:113.440000pt;}
.x1{left:123.840000pt;}
.x4{left:137.440000pt;}
.x5{left:160.640000pt;}
.x9{left:166.240005pt;}
.xa{left:184.639999pt;}
.x8{left:207.679993pt;}
.x2{left:250.400000pt;}
.x3{left:348.640000pt;}
}




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