
    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_e74b797c2f41829e62e390a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_68da88d9e4db8fa9a719a14a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_d7fe2bfda3f3e0a280a770a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_a1543c7497db852594803370.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_f79396e6d1a7f94edd12bedd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3aea7941c2e8a160978487e1.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;}
.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);}
.m1{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-20.880063px;}
.v4{vertical-align:-4.319996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.319996px;}
.v2{vertical-align:8.639991px;}
.v5{vertical-align:16.560005px;}
.v1{vertical-align:18.720013px;}
.v6{vertical-align:20.879996px;}
.ls13{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.036572px;}
.ls6{letter-spacing:0.036681px;}
.ls3{letter-spacing:0.036685px;}
.lsd{letter-spacing:0.036702px;}
.ls10{letter-spacing:0.036774px;}
.ls0{letter-spacing:0.036820px;}
.ls4{letter-spacing:0.036825px;}
.lse{letter-spacing:0.036842px;}
.ls7{letter-spacing:0.036846px;}
.ls2{letter-spacing:0.112219px;}
.ls12{letter-spacing:0.202842px;}
.ls15{letter-spacing:0.202847px;}
.ls17{letter-spacing:0.202981px;}
.lsa{letter-spacing:0.208417px;}
.ls8{letter-spacing:0.208422px;}
.ls9{letter-spacing:0.378360px;}
.lsb{letter-spacing:0.378365px;}
.lsf{letter-spacing:0.756725px;}
.ls5{letter-spacing:0.756838px;}
.ls1{letter-spacing:0.756978px;}
.ls18{letter-spacing:21.637874px;}
.ls19{letter-spacing:21.637941px;}
.ls11{letter-spacing:46.117883px;}
.ls14{letter-spacing:46.117950px;}
.ls16{letter-spacing:55.477892px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.894663px;}
.ws4{word-spacing:-14.911650px;}
.ws2{word-spacing:-13.474463px;}
.ws0{word-spacing:-12.037163px;}
.ws1{word-spacing:-7.545679px;}
.ws5{word-spacing:0.000000px;}
._48{margin-left:-9.088534px;}
._26{margin-left:-4.018236px;}
._7{margin-left:-2.609613px;}
._2{margin-left:-1.133289px;}
._0{width:1.195190px;}
._1{width:2.450139px;}
._19{width:3.560565px;}
._6{width:4.640158px;}
._5{width:5.844901px;}
._a{width:7.207220px;}
._9{width:8.746221px;}
._3{width:10.105350px;}
._4{width:11.383486px;}
._28{width:12.399043px;}
._b{width:13.457215px;}
._8{width:16.570410px;}
._f{width:17.828492px;}
._10{width:19.023682px;}
._c{width:20.841738px;}
._23{width:22.205921px;}
._22{width:23.230792px;}
._d{width:24.273908px;}
._e{width:25.377620px;}
._1c{width:26.637788px;}
._16{width:27.773020px;}
._18{width:28.859868px;}
._17{width:30.030504px;}
._29{width:31.344127px;}
._1b{width:32.684079px;}
._1a{width:34.324127px;}
._15{width:36.044326px;}
._21{width:37.595604px;}
._24{width:38.648273px;}
._2e{width:39.809840px;}
._1d{width:40.974956px;}
._1e{width:42.010384px;}
._20{width:43.767882px;}
._1f{width:44.941222px;}
._12{width:47.091224px;}
._11{width:48.639311px;}
._14{width:50.220649px;}
._13{width:51.572480px;}
._27{width:52.874686px;}
._41{width:54.028941px;}
._2d{width:55.886606px;}
._2b{width:57.268497px;}
._2a{width:60.121515px;}
._2c{width:61.832161px;}
._31{width:63.760962px;}
._40{width:67.746727px;}
._25{width:78.423934px;}
._43{width:81.224135px;}
._47{width:83.229840px;}
._30{width:84.485520px;}
._3b{width:86.261230px;}
._49{width:89.210882px;}
._3a{width:98.821746px;}
._46{width:102.547095px;}
._42{width:114.929196px;}
._3f{width:129.324767px;}
._4c{width:130.447114px;}
._4b{width:131.841803px;}
._39{width:140.625785px;}
._45{width:146.699720px;}
._44{width:148.288815px;}
._34{width:189.181454px;}
._35{width:198.595471px;}
._3e{width:226.758608px;}
._2f{width:235.200202px;}
._33{width:251.702959px;}
._3c{width:265.060189px;}
._37{width:267.449764px;}
._32{width:276.640400px;}
._3d{width:300.632770px;}
._4a{width:312.982236px;}
._38{width:376.506187px;}
._36{width:521.784665px;}
.fc2{color:rgb(0,51,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.182715px;}
.fs4{font-size:35.931825px;}
.fs8{font-size:38.806380px;}
.fs2{font-size:48.148650px;}
.fs5{font-size:53.897850px;}
.fs0{font-size:59.646600px;}
.fs1{font-size:59.759492px;}
.fsa{font-size:66.114450px;}
.fs9{font-size:71.863650px;}
.fs7{font-size:77.612846px;}
.fs6{font-size:95.578650px;}
.y0{bottom:0.000000px;}
.y149{bottom:2.879997px;}
.y14d{bottom:2.879998px;}
.y167{bottom:3.060001px;}
.ya{bottom:34.920044px;}
.y9{bottom:49.500000px;}
.y8{bottom:63.360008px;}
.y11d{bottom:85.139992px;}
.ye4{bottom:87.120002px;}
.yca{bottom:89.460022px;}
.y162{bottom:90.539977px;}
.y13a{bottom:93.240006px;}
.y126{bottom:94.139992px;}
.y9c{bottom:97.740006px;}
.y40{bottom:98.279983px;}
.y186{bottom:99.000000px;}
.y1ad{bottom:102.240006px;}
.y11c{bottom:102.419975px;}
.ye3{bottom:104.399986px;}
.y69{bottom:106.200027px;}
.yc9{bottom:106.740006px;}
.y3d{bottom:107.279983px;}
.y161{bottom:107.820030px;}
.y139{bottom:110.340019px;}
.y125{bottom:111.419975px;}
.y9b{bottom:114.840019px;}
.y3f{bottom:115.559967px;}
.y185{bottom:116.279983px;}
.y1ac{bottom:119.340019px;}
.y11b{bottom:119.519989px;}
.ye2{bottom:121.679970px;}
.y68{bottom:123.299973px;}
.yc8{bottom:123.840019px;}
.y3c{bottom:124.559967px;}
.y160{bottom:124.919975px;}
.y138{bottom:127.620002px;}
.y124{bottom:128.700027px;}
.y9a{bottom:132.120002px;}
.y3e{bottom:132.840019px;}
.y184{bottom:133.559967px;}
.y1ab{bottom:136.620002px;}
.y11a{bottom:136.799973px;}
.ye1{bottom:138.960022px;}
.y67{bottom:140.580025px;}
.yc7{bottom:141.120002px;}
.y3b{bottom:141.840019px;}
.y15f{bottom:142.200027px;}
.y137{bottom:144.899986px;}
.y123{bottom:145.799973px;}
.y99{bottom:149.399986px;}
.y183{bottom:150.840019px;}
.y15b{bottom:153.539977px;}
.y1aa{bottom:153.899986px;}
.y119{bottom:154.080025px;}
.ye0{bottom:156.240006px;}
.y66{bottom:157.860008px;}
.yc6{bottom:158.399986px;}
.y3a{bottom:158.940033px;}
.y15e{bottom:159.480011px;}
.y136{bottom:162.179970px;}
.y122{bottom:163.080025px;}
.y109{bottom:164.340019px;}
.y98{bottom:166.679970px;}
.y1a9{bottom:171.179970px;}
.y118{bottom:171.360008px;}
.ydf{bottom:173.340019px;}
.y182{bottom:173.879998px;}
.y65{bottom:175.139992px;}
.yc5{bottom:175.679970px;}
.y39{bottom:176.220017px;}
.y135{bottom:179.460022px;}
.y121{bottom:180.360008px;}
.y108{bottom:181.620002px;}
.y97{bottom:183.960022px;}
.y1a8{bottom:188.460022px;}
.y117{bottom:188.639992px;}
.yde{bottom:190.620002px;}
.y15d{bottom:191.340019px;}
.y64{bottom:192.419975px;}
.yc4{bottom:192.960022px;}
.y38{bottom:193.500000px;}
.y134{bottom:196.740006px;}
.y120{bottom:197.639992px;}
.y107{bottom:198.899986px;}
.y96{bottom:201.240006px;}
.y1a7{bottom:205.740006px;}
.y116{bottom:205.919975px;}
.ydd{bottom:207.899986px;}
.y63{bottom:209.700027px;}
.yc3{bottom:210.240006px;}
.y37{bottom:210.779983px;}
.y133{bottom:213.840019px;}
.y106{bottom:216.179970px;}
.y95{bottom:218.340019px;}
.y1a6{bottom:222.840019px;}
.y115{bottom:223.019989px;}
.y11f{bottom:223.559967px;}
.y181{bottom:224.279983px;}
.ydc{bottom:225.179970px;}
.y62{bottom:226.799973px;}
.yc2{bottom:227.340019px;}
.y36{bottom:228.059967px;}
.y132{bottom:231.120002px;}
.y105{bottom:233.460022px;}
.y94{bottom:235.620002px;}
.y11e{bottom:236.159981px;}
.y1a5{bottom:240.120002px;}
.y114{bottom:240.299973px;}
.ydb{bottom:242.460022px;}
.y61{bottom:244.080025px;}
.yc1{bottom:244.620002px;}
.y35{bottom:245.340019px;}
.y131{bottom:248.399986px;}
.y104{bottom:250.740006px;}
.y93{bottom:252.899986px;}
.y180{bottom:253.440033px;}
.y1a4{bottom:257.399986px;}
.y113{bottom:257.580025px;}
.yda{bottom:259.740006px;}
.y60{bottom:261.360008px;}
.yc0{bottom:261.899986px;}
.y34{bottom:262.440033px;}
.y130{bottom:265.679970px;}
.y103{bottom:267.840019px;}
.y92{bottom:270.179970px;}
.y17f{bottom:271.799973px;}
.y1a3{bottom:274.679970px;}
.y112{bottom:274.860008px;}
.yd9{bottom:276.840019px;}
.y5f{bottom:278.639992px;}
.ybf{bottom:279.179970px;}
.y33{bottom:279.720017px;}
.y12f{bottom:282.960022px;}
.y102{bottom:285.120002px;}
.y91{bottom:287.460022px;}
.y1a2{bottom:291.960022px;}
.y111{bottom:292.139992px;}
.yd8{bottom:294.120002px;}
.y5e{bottom:295.919975px;}
.ybe{bottom:296.460022px;}
.y32{bottom:297.000000px;}
.y12e{bottom:300.240006px;}
.y17e{bottom:300.960022px;}
.y101{bottom:302.399986px;}
.y90{bottom:304.559967px;}
.y1a1{bottom:309.240006px;}
.y110{bottom:309.419975px;}
.yd7{bottom:311.399986px;}
.y5d{bottom:313.019989px;}
.ybd{bottom:313.559967px;}
.y31{bottom:314.279983px;}
.y12d{bottom:317.340019px;}
.y15a{bottom:318.059967px;}
.y8f{bottom:321.840019px;}
.y1a0{bottom:326.340019px;}
.y10f{bottom:326.519989px;}
.yd6{bottom:328.679970px;}
.y5c{bottom:330.299973px;}
.ybc{bottom:330.840019px;}
.y30{bottom:331.559967px;}
.y100{bottom:334.620002px;}
.y159{bottom:335.340019px;}
.y17d{bottom:335.879998px;}
.y8e{bottom:339.120002px;}
.y19f{bottom:343.620002px;}
.y10e{bottom:343.799973px;}
.yd5{bottom:345.960022px;}
.ybb{bottom:348.120002px;}
.y2f{bottom:348.659981px;}
.yff{bottom:351.899986px;}
.y158{bottom:352.620002px;}
.y8d{bottom:356.399986px;}
.y19e{bottom:360.899986px;}
.y10d{bottom:361.080025px;}
.y5b{bottom:362.519989px;}
.yd4{bottom:363.059967px;}
.yba{bottom:365.399986px;}
.y2e{bottom:365.940033px;}
.y17c{bottom:366.299973px;}
.yfe{bottom:369.179970px;}
.y157{bottom:369.899986px;}
.y8c{bottom:373.679970px;}
.y15c{bottom:374.759994px;}
.y19d{bottom:378.179970px;}
.y10c{bottom:378.360008px;}
.y5a{bottom:379.799973px;}
.yd3{bottom:380.340019px;}
.y17b{bottom:382.320030px;}
.yb9{bottom:382.679970px;}
.yfd{bottom:386.460022px;}
.y156{bottom:387.000000px;}
.y8b{bottom:390.960022px;}
.y2d{bottom:392.220017px;}
.y19c{bottom:395.460022px;}
.y59{bottom:397.080025px;}
.yd2{bottom:397.620002px;}
.y17a{bottom:399.600013px;}
.yb8{bottom:399.960022px;}
.yfc{bottom:403.559967px;}
.y10b{bottom:404.279983px;}
.y8a{bottom:408.059967px;}
.y2c{bottom:409.500000px;}
.y19b{bottom:412.559967px;}
.y58{bottom:414.360008px;}
.yd1{bottom:414.899986px;}
.y179{bottom:416.700027px;}
.y10a{bottom:416.879998px;}
.yb7{bottom:417.059967px;}
.yfb{bottom:420.840019px;}
.y155{bottom:421.559967px;}
.y89{bottom:425.340019px;}
.y2b{bottom:426.779983px;}
.y19a{bottom:429.840019px;}
.y57{bottom:431.639992px;}
.yd0{bottom:432.179970px;}
.y178{bottom:433.980011px;}
.yb6{bottom:434.340019px;}
.y12c{bottom:438.120002px;}
.y154{bottom:438.840019px;}
.y88{bottom:442.620002px;}
.y2a{bottom:444.059967px;}
.yfa{bottom:447.120002px;}
.ycf{bottom:449.460022px;}
.y177{bottom:451.259994px;}
.yb5{bottom:451.620002px;}
.y12b{bottom:455.399986px;}
.y153{bottom:456.120002px;}
.y87{bottom:459.899986px;}
.y29{bottom:461.159981px;}
.y56{bottom:463.860008px;}
.yf9{bottom:464.399986px;}
.yce{bottom:466.559967px;}
.y176{bottom:468.539977px;}
.y12a{bottom:472.679970px;}
.y152{bottom:473.220017px;}
.y86{bottom:477.179970px;}
.y28{bottom:478.440033px;}
.y55{bottom:481.139992px;}
.yf8{bottom:481.679970px;}
.yb4{bottom:483.840019px;}
.y175{bottom:485.820030px;}
.y129{bottom:489.960022px;}
.y151{bottom:490.500000px;}
.y85{bottom:494.460022px;}
.y27{bottom:495.720017px;}
.y54{bottom:498.419975px;}
.yf7{bottom:498.960022px;}
.yb3{bottom:501.120002px;}
.y174{bottom:502.919975px;}
.y128{bottom:507.059967px;}
.y150{bottom:507.779983px;}
.y84{bottom:511.559967px;}
.y26{bottom:513.000000px;}
.y53{bottom:515.519989px;}
.yf6{bottom:516.059967px;}
.yb2{bottom:518.399986px;}
.y173{bottom:520.200027px;}
.y127{bottom:524.340019px;}
.y14f{bottom:525.059967px;}
.y83{bottom:528.840019px;}
.y25{bottom:530.279983px;}
.y52{bottom:532.799973px;}
.yf5{bottom:533.340019px;}
.yb1{bottom:535.679970px;}
.y172{bottom:537.480011px;}
.y199{bottom:541.620002px;}
.y82{bottom:546.120002px;}
.y24{bottom:547.559967px;}
.y51{bottom:550.080025px;}
.yf4{bottom:550.620002px;}
.yb0{bottom:552.960022px;}
.y171{bottom:554.759994px;}
.y198{bottom:558.899986px;}
.y81{bottom:563.399986px;}
.y23{bottom:564.659981px;}
.y50{bottom:567.360008px;}
.yf3{bottom:567.899986px;}
.yaf{bottom:570.059967px;}
.y14e{bottom:571.679970px;}
.y170{bottom:572.039977px;}
.y197{bottom:576.179970px;}
.y80{bottom:580.679970px;}
.y22{bottom:581.940033px;}
.yf2{bottom:585.179970px;}
.yae{bottom:587.340019px;}
.y16f{bottom:589.320030px;}
.y4f{bottom:593.279983px;}
.y196{bottom:593.460022px;}
.y7f{bottom:597.960022px;}
.y21{bottom:599.220017px;}
.y14c{bottom:600.840019px;}
.yf1{bottom:602.460022px;}
.yad{bottom:604.620002px;}
.y16e{bottom:606.419975px;}
.y195{bottom:610.559967px;}
.y7e{bottom:615.060001px;}
.y20{bottom:616.500000px;}
.yf0{bottom:619.560001px;}
.y4e{bottom:620.819995px;}
.yac{bottom:621.899986px;}
.y16d{bottom:623.699993px;}
.y194{bottom:627.839985px;}
.y7d{bottom:632.339985px;}
.y14b{bottom:632.879998px;}
.y1f{bottom:633.779983px;}
.yef{bottom:636.839985px;}
.yab{bottom:639.180004px;}
.y16c{bottom:640.980011px;}
.y193{bottom:645.120002px;}
.y7c{bottom:649.620002px;}
.y1e{bottom:651.060001px;}
.y14a{bottom:651.240006px;}
.yee{bottom:654.120002px;}
.yaa{bottom:656.459988px;}
.y16b{bottom:658.259994px;}
.y192{bottom:662.399986px;}
.y7b{bottom:666.899986px;}
.y1d{bottom:668.160015px;}
.yed{bottom:671.399986px;}
.ya9{bottom:673.560001px;}
.y191{bottom:679.680004px;}
.y148{bottom:680.399986px;}
.y7a{bottom:684.180004px;}
.y1c{bottom:685.439999px;}
.yec{bottom:688.680004px;}
.ya8{bottom:690.839985px;}
.y190{bottom:696.779983px;}
.y147{bottom:698.759994px;}
.y79{bottom:701.279983px;}
.y16a{bottom:701.459988px;}
.y1b{bottom:702.720017px;}
.yeb{bottom:705.779983px;}
.ya7{bottom:708.120002px;}
.y18f{bottom:714.060001px;}
.yea{bottom:723.060001px;}
.y1a{bottom:725.220017px;}
.ya6{bottom:725.399986px;}
.y169{bottom:730.439999px;}
.y146{bottom:731.160015px;}
.y18e{bottom:731.339985px;}
.y78{bottom:733.500000px;}
.y19{bottom:737.279983px;}
.ye9{bottom:740.339985px;}
.ya5{bottom:742.680004px;}
.y18d{bottom:748.620002px;}
.y77{bottom:750.779983px;}
.ye8{bottom:757.620002px;}
.y145{bottom:758.160015px;}
.y18{bottom:759.600013px;}
.ya4{bottom:759.779983px;}
.y168{bottom:762.480011px;}
.y18c{bottom:765.899986px;}
.y76{bottom:768.060001px;}
.y17{bottom:771.660015px;}
.ye7{bottom:774.899986px;}
.ya3{bottom:777.060001px;}
.y18b{bottom:783.180004px;}
.y144{bottom:783.540012px;}
.y75{bottom:785.339985px;}
.ye6{bottom:792.180004px;}
.y16{bottom:794.160015px;}
.ya2{bottom:794.339985px;}
.y166{bottom:794.519989px;}
.y18a{bottom:800.279983px;}
.y74{bottom:802.620002px;}
.y15{bottom:806.220017px;}
.ye5{bottom:809.279983px;}
.ya1{bottom:811.620002px;}
.y143{bottom:817.560001px;}
.y73{bottom:819.899986px;}
.y4d{bottom:826.560001px;}
.y14{bottom:828.720017px;}
.ya0{bottom:828.899986px;}
.y165{bottom:829.800007px;}
.y142{bottom:834.839985px;}
.y72{bottom:837.180004px;}
.y13{bottom:840.779983px;}
.y4c{bottom:843.839985px;}
.y9f{bottom:846.180004px;}
.y141{bottom:852.120002px;}
.y71{bottom:854.279983px;}
.y164{bottom:856.079990px;}
.y4b{bottom:861.120002px;}
.y12{bottom:863.100013px;}
.y9e{bottom:863.279983px;}
.y140{bottom:869.399987px;}
.y70{bottom:871.560001px;}
.y4a{bottom:878.399987px;}
.y163{bottom:878.759994px;}
.y11{bottom:879.660015px;}
.ycd{bottom:880.560001px;}
.y13f{bottom:886.680004px;}
.y6f{bottom:888.839985px;}
.y9d{bottom:895.500000px;}
.y49{bottom:895.680004px;}
.y10{bottom:896.939999px;}
.ycc{bottom:897.839985px;}
.y13e{bottom:903.780001px;}
.y6e{bottom:906.120002px;}
.y48{bottom:912.780001px;}
.ycb{bottom:915.120002px;}
.y13d{bottom:921.060001px;}
.yf{bottom:923.219999px;}
.y6d{bottom:923.400003px;}
.y47{bottom:930.060001px;}
.y13c{bottom:938.340002px;}
.y6c{bottom:940.680004px;}
.ye{bottom:942.479994px;}
.y46{bottom:947.340002px;}
.y13b{bottom:955.620002px;}
.y6b{bottom:957.780001px;}
.y45{bottom:964.620002px;}
.yd{bottom:970.020006px;}
.y189{bottom:972.900003px;}
.y44{bottom:981.900003px;}
.y6a{bottom:984.060001px;}
.y188{bottom:990.180004px;}
.yc{bottom:997.740006px;}
.y43{bottom:999.180004px;}
.y187{bottom:1007.280001px;}
.y42{bottom:1016.280001px;}
.yb{bottom:1025.280001px;}
.y41{bottom:1033.560001px;}
.y7{bottom:1054.799998px;}
.y6{bottom:1067.219999px;}
.y5{bottom:1079.459997px;}
.y4{bottom:1091.340002px;}
.y3{bottom:1105.379998px;}
.y2{bottom:1119.960843px;}
.y1{bottom:1120.860000px;}
.h16{height:14.939964px;}
.h1b{height:14.939965px;}
.h15{height:14.939998px;}
.h14{height:14.939999px;}
.h1c{height:14.940033px;}
.h19{height:15.120002px;}
.h18{height:15.120003px;}
.h7{height:21.074845px;}
.hc{height:27.096252px;}
.h8{height:33.619419px;}
.h5{height:35.738832px;}
.h13{height:37.633753px;}
.h17{height:38.028512px;}
.h12{height:39.397012px;}
.h3{height:39.794858px;}
.h1{height:41.647772px;}
.h6{height:41.954845px;}
.hf{height:42.084637px;}
.h2{height:42.164290px;}
.h11{height:43.424356px;}
.h10{height:43.599102px;}
.h4{height:44.378823px;}
.h1a{height:46.648135px;}
.he{height:47.976184px;}
.hb{height:48.260411px;}
.ha{height:48.260474px;}
.hd{height:50.178232px;}
.h9{height:66.737046px;}
.h0{height:1188.000000px;}
.w19{width:4.319997px;}
.w2{width:4.500000px;}
.w16{width:6.839951px;}
.w9{width:6.839984px;}
.we{width:6.839985px;}
.w7{width:6.840002px;}
.w5{width:6.840019px;}
.w13{width:6.840020px;}
.w6{width:14.939999px;}
.w4{width:17.819996px;}
.w1{width:18.000000px;}
.w1c{width:27.179970px;}
.w1a{width:27.360008px;}
.wa{width:30.419975px;}
.wc{width:30.420010px;}
.w12{width:43.379997px;}
.w11{width:43.380031px;}
.w18{width:48.240006px;}
.w8{width:63.000000px;}
.w3{width:65.520006px;}
.wf{width:65.699993px;}
.wb{width:68.579991px;}
.w14{width:79.919992px;}
.wd{width:81.360008px;}
.w1b{width:104.400020px;}
.w15{width:130.500034px;}
.w17{width:132.659998px;}
.w10{width:187.380013px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:134.819996px;}
.x3e{left:143.280001px;}
.xe{left:145.080008px;}
.xc{left:154.439999px;}
.x9{left:158.580008px;}
.x1d{left:162.000000px;}
.x10{left:163.080008px;}
.x1b{left:165.780001px;}
.x12{left:166.860008px;}
.x20{left:173.340002px;}
.x8{left:178.919992px;}
.x15{left:181.439999px;}
.x16{left:188.460005px;}
.x2f{left:191.520006px;}
.x22{left:197.099997px;}
.x18{left:209.340002px;}
.x27{left:212.039996px;}
.x23{left:215.099997px;}
.x24{left:219.599997px;}
.x42{left:223.199993px;}
.x33{left:226.800007px;}
.x11{left:237.780001px;}
.x1{left:246.599997px;}
.xd{left:255.960005px;}
.x14{left:270.180005px;}
.x44{left:275.939999px;}
.x21{left:285.840002px;}
.x25{left:289.439999px;}
.x3b{left:292.500000px;}
.x34{left:295.379998px;}
.x32{left:302.220017px;}
.xf{left:307.259994px;}
.x13{left:314.100013px;}
.x7{left:315.899987px;}
.x3f{left:330.660015px;}
.x26{left:346.680005px;}
.x3d{left:358.920010px;}
.xa{left:382.319996px;}
.x2{left:383.579990px;}
.x35{left:388.800007px;}
.x3{left:399.420010px;}
.x40{left:402.660015px;}
.x45{left:407.519989px;}
.x28{left:409.680005px;}
.x46{left:411.839985px;}
.x17{left:418.139992px;}
.x36{left:419.220017px;}
.x47{left:439.199993px;}
.x6{left:443.879998px;}
.x1a{left:447.660015px;}
.xb{left:459.000000px;}
.x29{left:462.600014px;}
.x19{left:469.800007px;}
.x1f{left:487.620002px;}
.x37{left:489.060001px;}
.x2a{left:493.019989px;}
.x1e{left:496.800007px;}
.x38{left:519.480011px;}
.x1c{left:523.800007px;}
.x31{left:527.220017px;}
.x41{left:532.079990px;}
.x3c{left:533.339985px;}
.x30{left:535.139992px;}
.x2b{left:559.259994px;}
.x2c{left:589.679970px;}
.x48{left:593.100014px;}
.x39{left:598.139992px;}
.x43{left:619.200027px;}
.x49{left:624.779983px;}
.x3a{left:628.559967px;}
.x2d{left:640.259994px;}
.x2e{left:670.679970px;}
.x4{left:783.000000px;}
@media print{
.v7{vertical-align:-18.560056pt;}
.v4{vertical-align:-3.839996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.839996pt;}
.v2{vertical-align:7.679992pt;}
.v5{vertical-align:14.720004pt;}
.v1{vertical-align:16.640012pt;}
.v6{vertical-align:18.559996pt;}
.ls13{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.032508pt;}
.ls6{letter-spacing:0.032605pt;}
.ls3{letter-spacing:0.032609pt;}
.lsd{letter-spacing:0.032624pt;}
.ls10{letter-spacing:0.032688pt;}
.ls0{letter-spacing:0.032729pt;}
.ls4{letter-spacing:0.032733pt;}
.lse{letter-spacing:0.032748pt;}
.ls7{letter-spacing:0.032752pt;}
.ls2{letter-spacing:0.099750pt;}
.ls12{letter-spacing:0.180304pt;}
.ls15{letter-spacing:0.180308pt;}
.ls17{letter-spacing:0.180428pt;}
.lsa{letter-spacing:0.185260pt;}
.ls8{letter-spacing:0.185264pt;}
.ls9{letter-spacing:0.336320pt;}
.lsb{letter-spacing:0.336324pt;}
.lsf{letter-spacing:0.672644pt;}
.ls5{letter-spacing:0.672745pt;}
.ls1{letter-spacing:0.672869pt;}
.ls18{letter-spacing:19.233666pt;}
.ls19{letter-spacing:19.233726pt;}
.ls11{letter-spacing:40.993674pt;}
.ls14{letter-spacing:40.993734pt;}
.ls16{letter-spacing:49.313682pt;}
.ws3{word-spacing:-21.239700pt;}
.ws4{word-spacing:-13.254800pt;}
.ws2{word-spacing:-11.977300pt;}
.ws0{word-spacing:-10.699700pt;}
.ws1{word-spacing:-6.707270pt;}
.ws5{word-spacing:0.000000pt;}
._48{margin-left:-8.078697pt;}
._26{margin-left:-3.571765pt;}
._7{margin-left:-2.319656pt;}
._2{margin-left:-1.007368pt;}
._0{width:1.062391pt;}
._1{width:2.177901pt;}
._19{width:3.164947pt;}
._6{width:4.124585pt;}
._5{width:5.195467pt;}
._a{width:6.406418pt;}
._9{width:7.774418pt;}
._3{width:8.982533pt;}
._4{width:10.118654pt;}
._28{width:11.021371pt;}
._b{width:11.961969pt;}
._8{width:14.729253pt;}
._f{width:15.847548pt;}
._10{width:16.909939pt;}
._c{width:18.525989pt;}
._23{width:19.738596pt;}
._22{width:20.649593pt;}
._d{width:21.576807pt;}
._e{width:22.557885pt;}
._1c{width:23.678033pt;}
._16{width:24.687129pt;}
._18{width:25.653216pt;}
._17{width:26.693782pt;}
._29{width:27.861447pt;}
._1b{width:29.052515pt;}
._1a{width:30.510335pt;}
._15{width:32.039401pt;}
._21{width:33.418314pt;}
._24{width:34.354020pt;}
._2e{width:35.386524pt;}
._1d{width:36.422183pt;}
._1e{width:37.342564pt;}
._20{width:38.904784pt;}
._1f{width:39.947753pt;}
._12{width:41.858865pt;}
._11{width:43.234943pt;}
._14{width:44.640577pt;}
._13{width:45.842204pt;}
._27{width:46.999721pt;}
._41{width:48.025725pt;}
._2d{width:49.676983pt;}
._2b{width:50.905331pt;}
._2a{width:53.441347pt;}
._2c{width:54.961921pt;}
._31{width:56.676410pt;}
._40{width:60.219313pt;}
._25{width:69.710164pt;}
._43{width:72.199231pt;}
._47{width:73.982080pt;}
._30{width:75.098240pt;}
._3b{width:76.676649pt;}
._49{width:79.298562pt;}
._3a{width:87.841552pt;}
._46{width:91.152974pt;}
._42{width:102.159286pt;}
._3f{width:114.955349pt;}
._4c{width:115.952990pt;}
._4b{width:117.192714pt;}
._39{width:125.000698pt;}
._45{width:130.399751pt;}
._44{width:131.812280pt;}
._34{width:168.161292pt;}
._35{width:176.529308pt;}
._3e{width:201.563208pt;}
._2f{width:209.066846pt;}
._33{width:223.735964pt;}
._3c{width:235.609057pt;}
._37{width:237.733123pt;}
._32{width:245.902578pt;}
._3d{width:267.229129pt;}
._4a{width:278.206432pt;}
._38{width:334.672166pt;}
._36{width:463.808591pt;}
.fs3{font-size:26.829080pt;}
.fs4{font-size:31.939400pt;}
.fs8{font-size:34.494560pt;}
.fs2{font-size:42.798800pt;}
.fs5{font-size:47.909200pt;}
.fs0{font-size:53.019200pt;}
.fs1{font-size:53.119548pt;}
.fsa{font-size:58.768400pt;}
.fs9{font-size:63.878800pt;}
.fs7{font-size:68.989196pt;}
.fs6{font-size:84.958800pt;}
.y0{bottom:0.000000pt;}
.y149{bottom:2.559997pt;}
.y14d{bottom:2.559998pt;}
.y167{bottom:2.720001pt;}
.ya{bottom:31.040039pt;}
.y9{bottom:44.000000pt;}
.y8{bottom:56.320007pt;}
.y11d{bottom:75.679993pt;}
.ye4{bottom:77.440002pt;}
.yca{bottom:79.520020pt;}
.y162{bottom:80.479980pt;}
.y13a{bottom:82.880005pt;}
.y126{bottom:83.679993pt;}
.y9c{bottom:86.880005pt;}
.y40{bottom:87.359985pt;}
.y186{bottom:88.000000pt;}
.y1ad{bottom:90.880005pt;}
.y11c{bottom:91.039978pt;}
.ye3{bottom:92.799988pt;}
.y69{bottom:94.400024pt;}
.yc9{bottom:94.880005pt;}
.y3d{bottom:95.359985pt;}
.y161{bottom:95.840027pt;}
.y139{bottom:98.080017pt;}
.y125{bottom:99.039978pt;}
.y9b{bottom:102.080017pt;}
.y3f{bottom:102.719971pt;}
.y185{bottom:103.359985pt;}
.y1ac{bottom:106.080017pt;}
.y11b{bottom:106.239990pt;}
.ye2{bottom:108.159973pt;}
.y68{bottom:109.599976pt;}
.yc8{bottom:110.080017pt;}
.y3c{bottom:110.719971pt;}
.y160{bottom:111.039978pt;}
.y138{bottom:113.440002pt;}
.y124{bottom:114.400024pt;}
.y9a{bottom:117.440002pt;}
.y3e{bottom:118.080017pt;}
.y184{bottom:118.719971pt;}
.y1ab{bottom:121.440002pt;}
.y11a{bottom:121.599976pt;}
.ye1{bottom:123.520020pt;}
.y67{bottom:124.960022pt;}
.yc7{bottom:125.440002pt;}
.y3b{bottom:126.080017pt;}
.y15f{bottom:126.400024pt;}
.y137{bottom:128.799988pt;}
.y123{bottom:129.599976pt;}
.y99{bottom:132.799988pt;}
.y183{bottom:134.080017pt;}
.y15b{bottom:136.479980pt;}
.y1aa{bottom:136.799988pt;}
.y119{bottom:136.960022pt;}
.ye0{bottom:138.880005pt;}
.y66{bottom:140.320007pt;}
.yc6{bottom:140.799988pt;}
.y3a{bottom:141.280029pt;}
.y15e{bottom:141.760010pt;}
.y136{bottom:144.159973pt;}
.y122{bottom:144.960022pt;}
.y109{bottom:146.080017pt;}
.y98{bottom:148.159973pt;}
.y1a9{bottom:152.159973pt;}
.y118{bottom:152.320007pt;}
.ydf{bottom:154.080017pt;}
.y182{bottom:154.559998pt;}
.y65{bottom:155.679993pt;}
.yc5{bottom:156.159973pt;}
.y39{bottom:156.640015pt;}
.y135{bottom:159.520020pt;}
.y121{bottom:160.320007pt;}
.y108{bottom:161.440002pt;}
.y97{bottom:163.520020pt;}
.y1a8{bottom:167.520020pt;}
.y117{bottom:167.679993pt;}
.yde{bottom:169.440002pt;}
.y15d{bottom:170.080017pt;}
.y64{bottom:171.039978pt;}
.yc4{bottom:171.520020pt;}
.y38{bottom:172.000000pt;}
.y134{bottom:174.880005pt;}
.y120{bottom:175.679993pt;}
.y107{bottom:176.799988pt;}
.y96{bottom:178.880005pt;}
.y1a7{bottom:182.880005pt;}
.y116{bottom:183.039978pt;}
.ydd{bottom:184.799988pt;}
.y63{bottom:186.400024pt;}
.yc3{bottom:186.880005pt;}
.y37{bottom:187.359985pt;}
.y133{bottom:190.080017pt;}
.y106{bottom:192.159973pt;}
.y95{bottom:194.080017pt;}
.y1a6{bottom:198.080017pt;}
.y115{bottom:198.239990pt;}
.y11f{bottom:198.719971pt;}
.y181{bottom:199.359985pt;}
.ydc{bottom:200.159973pt;}
.y62{bottom:201.599976pt;}
.yc2{bottom:202.080017pt;}
.y36{bottom:202.719971pt;}
.y132{bottom:205.440002pt;}
.y105{bottom:207.520020pt;}
.y94{bottom:209.440002pt;}
.y11e{bottom:209.919983pt;}
.y1a5{bottom:213.440002pt;}
.y114{bottom:213.599976pt;}
.ydb{bottom:215.520020pt;}
.y61{bottom:216.960022pt;}
.yc1{bottom:217.440002pt;}
.y35{bottom:218.080017pt;}
.y131{bottom:220.799988pt;}
.y104{bottom:222.880005pt;}
.y93{bottom:224.799988pt;}
.y180{bottom:225.280029pt;}
.y1a4{bottom:228.799988pt;}
.y113{bottom:228.960022pt;}
.yda{bottom:230.880005pt;}
.y60{bottom:232.320007pt;}
.yc0{bottom:232.799988pt;}
.y34{bottom:233.280029pt;}
.y130{bottom:236.159973pt;}
.y103{bottom:238.080017pt;}
.y92{bottom:240.159973pt;}
.y17f{bottom:241.599976pt;}
.y1a3{bottom:244.159973pt;}
.y112{bottom:244.320007pt;}
.yd9{bottom:246.080017pt;}
.y5f{bottom:247.679993pt;}
.ybf{bottom:248.159973pt;}
.y33{bottom:248.640015pt;}
.y12f{bottom:251.520020pt;}
.y102{bottom:253.440002pt;}
.y91{bottom:255.520020pt;}
.y1a2{bottom:259.520020pt;}
.y111{bottom:259.679993pt;}
.yd8{bottom:261.440002pt;}
.y5e{bottom:263.039978pt;}
.ybe{bottom:263.520020pt;}
.y32{bottom:264.000000pt;}
.y12e{bottom:266.880005pt;}
.y17e{bottom:267.520020pt;}
.y101{bottom:268.799988pt;}
.y90{bottom:270.719971pt;}
.y1a1{bottom:274.880005pt;}
.y110{bottom:275.039978pt;}
.yd7{bottom:276.799988pt;}
.y5d{bottom:278.239990pt;}
.ybd{bottom:278.719971pt;}
.y31{bottom:279.359985pt;}
.y12d{bottom:282.080017pt;}
.y15a{bottom:282.719971pt;}
.y8f{bottom:286.080017pt;}
.y1a0{bottom:290.080017pt;}
.y10f{bottom:290.239990pt;}
.yd6{bottom:292.159973pt;}
.y5c{bottom:293.599976pt;}
.ybc{bottom:294.080017pt;}
.y30{bottom:294.719971pt;}
.y100{bottom:297.440002pt;}
.y159{bottom:298.080017pt;}
.y17d{bottom:298.559998pt;}
.y8e{bottom:301.440002pt;}
.y19f{bottom:305.440002pt;}
.y10e{bottom:305.599976pt;}
.yd5{bottom:307.520020pt;}
.ybb{bottom:309.440002pt;}
.y2f{bottom:309.919983pt;}
.yff{bottom:312.799988pt;}
.y158{bottom:313.440002pt;}
.y8d{bottom:316.799988pt;}
.y19e{bottom:320.799988pt;}
.y10d{bottom:320.960022pt;}
.y5b{bottom:322.239990pt;}
.yd4{bottom:322.719971pt;}
.yba{bottom:324.799988pt;}
.y2e{bottom:325.280029pt;}
.y17c{bottom:325.599976pt;}
.yfe{bottom:328.159973pt;}
.y157{bottom:328.799988pt;}
.y8c{bottom:332.159973pt;}
.y15c{bottom:333.119995pt;}
.y19d{bottom:336.159973pt;}
.y10c{bottom:336.320007pt;}
.y5a{bottom:337.599976pt;}
.yd3{bottom:338.080017pt;}
.y17b{bottom:339.840027pt;}
.yb9{bottom:340.159973pt;}
.yfd{bottom:343.520020pt;}
.y156{bottom:344.000000pt;}
.y8b{bottom:347.520020pt;}
.y2d{bottom:348.640015pt;}
.y19c{bottom:351.520020pt;}
.y59{bottom:352.960022pt;}
.yd2{bottom:353.440002pt;}
.y17a{bottom:355.200012pt;}
.yb8{bottom:355.520020pt;}
.yfc{bottom:358.719971pt;}
.y10b{bottom:359.359985pt;}
.y8a{bottom:362.719971pt;}
.y2c{bottom:364.000000pt;}
.y19b{bottom:366.719971pt;}
.y58{bottom:368.320007pt;}
.yd1{bottom:368.799988pt;}
.y179{bottom:370.400024pt;}
.y10a{bottom:370.559998pt;}
.yb7{bottom:370.719971pt;}
.yfb{bottom:374.080017pt;}
.y155{bottom:374.719971pt;}
.y89{bottom:378.080017pt;}
.y2b{bottom:379.359985pt;}
.y19a{bottom:382.080017pt;}
.y57{bottom:383.679993pt;}
.yd0{bottom:384.159973pt;}
.y178{bottom:385.760010pt;}
.yb6{bottom:386.080017pt;}
.y12c{bottom:389.440002pt;}
.y154{bottom:390.080017pt;}
.y88{bottom:393.440002pt;}
.y2a{bottom:394.719971pt;}
.yfa{bottom:397.440002pt;}
.ycf{bottom:399.520020pt;}
.y177{bottom:401.119995pt;}
.yb5{bottom:401.440002pt;}
.y12b{bottom:404.799988pt;}
.y153{bottom:405.440002pt;}
.y87{bottom:408.799988pt;}
.y29{bottom:409.919983pt;}
.y56{bottom:412.320007pt;}
.yf9{bottom:412.799988pt;}
.yce{bottom:414.719971pt;}
.y176{bottom:416.479980pt;}
.y12a{bottom:420.159973pt;}
.y152{bottom:420.640015pt;}
.y86{bottom:424.159973pt;}
.y28{bottom:425.280029pt;}
.y55{bottom:427.679993pt;}
.yf8{bottom:428.159973pt;}
.yb4{bottom:430.080017pt;}
.y175{bottom:431.840027pt;}
.y129{bottom:435.520020pt;}
.y151{bottom:436.000000pt;}
.y85{bottom:439.520020pt;}
.y27{bottom:440.640015pt;}
.y54{bottom:443.039978pt;}
.yf7{bottom:443.520020pt;}
.yb3{bottom:445.440002pt;}
.y174{bottom:447.039978pt;}
.y128{bottom:450.719971pt;}
.y150{bottom:451.359985pt;}
.y84{bottom:454.719971pt;}
.y26{bottom:456.000000pt;}
.y53{bottom:458.239990pt;}
.yf6{bottom:458.719971pt;}
.yb2{bottom:460.799988pt;}
.y173{bottom:462.400024pt;}
.y127{bottom:466.080017pt;}
.y14f{bottom:466.719971pt;}
.y83{bottom:470.080017pt;}
.y25{bottom:471.359985pt;}
.y52{bottom:473.599976pt;}
.yf5{bottom:474.080017pt;}
.yb1{bottom:476.159973pt;}
.y172{bottom:477.760010pt;}
.y199{bottom:481.440002pt;}
.y82{bottom:485.440002pt;}
.y24{bottom:486.719971pt;}
.y51{bottom:488.960022pt;}
.yf4{bottom:489.440002pt;}
.yb0{bottom:491.520020pt;}
.y171{bottom:493.119995pt;}
.y198{bottom:496.799988pt;}
.y81{bottom:500.799988pt;}
.y23{bottom:501.919983pt;}
.y50{bottom:504.320007pt;}
.yf3{bottom:504.799988pt;}
.yaf{bottom:506.719971pt;}
.y14e{bottom:508.159973pt;}
.y170{bottom:508.479980pt;}
.y197{bottom:512.159973pt;}
.y80{bottom:516.159973pt;}
.y22{bottom:517.280029pt;}
.yf2{bottom:520.159973pt;}
.yae{bottom:522.080017pt;}
.y16f{bottom:523.840027pt;}
.y4f{bottom:527.359985pt;}
.y196{bottom:527.520020pt;}
.y7f{bottom:531.520020pt;}
.y21{bottom:532.640015pt;}
.y14c{bottom:534.080017pt;}
.yf1{bottom:535.520020pt;}
.yad{bottom:537.440002pt;}
.y16e{bottom:539.039978pt;}
.y195{bottom:542.719971pt;}
.y7e{bottom:546.720001pt;}
.y20{bottom:548.000000pt;}
.yf0{bottom:550.720001pt;}
.y4e{bottom:551.839996pt;}
.yac{bottom:552.799988pt;}
.y16d{bottom:554.399994pt;}
.y194{bottom:558.079987pt;}
.y7d{bottom:562.079987pt;}
.y14b{bottom:562.559998pt;}
.y1f{bottom:563.359985pt;}
.yef{bottom:566.079987pt;}
.yab{bottom:568.160004pt;}
.y16c{bottom:569.760010pt;}
.y193{bottom:573.440002pt;}
.y7c{bottom:577.440002pt;}
.y1e{bottom:578.720001pt;}
.y14a{bottom:578.880005pt;}
.yee{bottom:581.440002pt;}
.yaa{bottom:583.519989pt;}
.y16b{bottom:585.119995pt;}
.y192{bottom:588.799988pt;}
.y7b{bottom:592.799988pt;}
.y1d{bottom:593.920013pt;}
.yed{bottom:596.799988pt;}
.ya9{bottom:598.720001pt;}
.y191{bottom:604.160004pt;}
.y148{bottom:604.799988pt;}
.y7a{bottom:608.160004pt;}
.y1c{bottom:609.279999pt;}
.yec{bottom:612.160004pt;}
.ya8{bottom:614.079987pt;}
.y190{bottom:619.359985pt;}
.y147{bottom:621.119995pt;}
.y79{bottom:623.359985pt;}
.y16a{bottom:623.519989pt;}
.y1b{bottom:624.640015pt;}
.yeb{bottom:627.359985pt;}
.ya7{bottom:629.440002pt;}
.y18f{bottom:634.720001pt;}
.yea{bottom:642.720001pt;}
.y1a{bottom:644.640015pt;}
.ya6{bottom:644.799988pt;}
.y169{bottom:649.279999pt;}
.y146{bottom:649.920013pt;}
.y18e{bottom:650.079987pt;}
.y78{bottom:652.000000pt;}
.y19{bottom:655.359985pt;}
.ye9{bottom:658.079987pt;}
.ya5{bottom:660.160004pt;}
.y18d{bottom:665.440002pt;}
.y77{bottom:667.359985pt;}
.ye8{bottom:673.440002pt;}
.y145{bottom:673.920013pt;}
.y18{bottom:675.200012pt;}
.ya4{bottom:675.359985pt;}
.y168{bottom:677.760010pt;}
.y18c{bottom:680.799988pt;}
.y76{bottom:682.720001pt;}
.y17{bottom:685.920013pt;}
.ye7{bottom:688.799988pt;}
.ya3{bottom:690.720001pt;}
.y18b{bottom:696.160004pt;}
.y144{bottom:696.480011pt;}
.y75{bottom:698.079987pt;}
.ye6{bottom:704.160004pt;}
.y16{bottom:705.920013pt;}
.ya2{bottom:706.079987pt;}
.y166{bottom:706.239990pt;}
.y18a{bottom:711.359985pt;}
.y74{bottom:713.440002pt;}
.y15{bottom:716.640015pt;}
.ye5{bottom:719.359985pt;}
.ya1{bottom:721.440002pt;}
.y143{bottom:726.720001pt;}
.y73{bottom:728.799988pt;}
.y4d{bottom:734.720001pt;}
.y14{bottom:736.640015pt;}
.ya0{bottom:736.799988pt;}
.y165{bottom:737.600006pt;}
.y142{bottom:742.079987pt;}
.y72{bottom:744.160004pt;}
.y13{bottom:747.359985pt;}
.y4c{bottom:750.079987pt;}
.y9f{bottom:752.160004pt;}
.y141{bottom:757.440002pt;}
.y71{bottom:759.359985pt;}
.y164{bottom:760.959991pt;}
.y4b{bottom:765.440002pt;}
.y12{bottom:767.200012pt;}
.y9e{bottom:767.359985pt;}
.y140{bottom:772.799988pt;}
.y70{bottom:774.720001pt;}
.y4a{bottom:780.799988pt;}
.y163{bottom:781.119995pt;}
.y11{bottom:781.920013pt;}
.ycd{bottom:782.720001pt;}
.y13f{bottom:788.160004pt;}
.y6f{bottom:790.079987pt;}
.y9d{bottom:796.000000pt;}
.y49{bottom:796.160004pt;}
.y10{bottom:797.279999pt;}
.ycc{bottom:798.079987pt;}
.y13e{bottom:803.360001pt;}
.y6e{bottom:805.440002pt;}
.y48{bottom:811.360001pt;}
.ycb{bottom:813.440002pt;}
.y13d{bottom:818.720001pt;}
.yf{bottom:820.639999pt;}
.y6d{bottom:820.800003pt;}
.y47{bottom:826.720001pt;}
.y13c{bottom:834.080002pt;}
.y6c{bottom:836.160004pt;}
.ye{bottom:837.759995pt;}
.y46{bottom:842.080002pt;}
.y13b{bottom:849.440002pt;}
.y6b{bottom:851.360001pt;}
.y45{bottom:857.440002pt;}
.yd{bottom:862.240005pt;}
.y189{bottom:864.800003pt;}
.y44{bottom:872.800003pt;}
.y6a{bottom:874.720001pt;}
.y188{bottom:880.160004pt;}
.yc{bottom:886.880005pt;}
.y43{bottom:888.160004pt;}
.y187{bottom:895.360001pt;}
.y42{bottom:903.360001pt;}
.yb{bottom:911.360001pt;}
.y41{bottom:918.720001pt;}
.y7{bottom:937.599998pt;}
.y6{bottom:948.639999pt;}
.y5{bottom:959.519997pt;}
.y4{bottom:970.080002pt;}
.y3{bottom:982.559998pt;}
.y2{bottom:995.520750pt;}
.y1{bottom:996.320000pt;}
.h16{height:13.279968pt;}
.h1b{height:13.279969pt;}
.h15{height:13.279998pt;}
.h14{height:13.279999pt;}
.h1c{height:13.280029pt;}
.h19{height:13.440002pt;}
.h18{height:13.440003pt;}
.h7{height:18.733196pt;}
.hc{height:24.085557pt;}
.h8{height:29.883928pt;}
.h5{height:31.767850pt;}
.h13{height:33.452225pt;}
.h17{height:33.803122pt;}
.h12{height:35.019567pt;}
.h3{height:35.373208pt;}
.h1{height:37.020242pt;}
.h6{height:37.293196pt;}
.hf{height:37.408566pt;}
.h2{height:37.479369pt;}
.h11{height:38.599427pt;}
.h10{height:38.754757pt;}
.h4{height:39.447842pt;}
.h1a{height:41.465009pt;}
.he{height:42.645497pt;}
.hb{height:42.898143pt;}
.ha{height:42.898199pt;}
.hd{height:44.602873pt;}
.h9{height:59.321818pt;}
.h0{height:1056.000000pt;}
.w19{width:3.839997pt;}
.w2{width:4.000000pt;}
.w16{width:6.079956pt;}
.w9{width:6.079986pt;}
.we{width:6.079987pt;}
.w7{width:6.080002pt;}
.w5{width:6.080017pt;}
.w13{width:6.080018pt;}
.w6{width:13.279999pt;}
.w4{width:15.839996pt;}
.w1{width:16.000000pt;}
.w1c{width:24.159973pt;}
.w1a{width:24.320007pt;}
.wa{width:27.039978pt;}
.wc{width:27.040009pt;}
.w12{width:38.559997pt;}
.w11{width:38.560028pt;}
.w18{width:42.880005pt;}
.w8{width:56.000000pt;}
.w3{width:58.240005pt;}
.wf{width:58.399994pt;}
.wb{width:60.959992pt;}
.w14{width:71.039993pt;}
.wd{width:72.320007pt;}
.w1b{width:92.800018pt;}
.w15{width:116.000030pt;}
.w17{width:117.919998pt;}
.w10{width:166.560012pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:119.839996pt;}
.x3e{left:127.360001pt;}
.xe{left:128.960007pt;}
.xc{left:137.279999pt;}
.x9{left:140.960007pt;}
.x1d{left:144.000000pt;}
.x10{left:144.960007pt;}
.x1b{left:147.360001pt;}
.x12{left:148.320007pt;}
.x20{left:154.080002pt;}
.x8{left:159.039993pt;}
.x15{left:161.279999pt;}
.x16{left:167.520004pt;}
.x2f{left:170.240005pt;}
.x22{left:175.199997pt;}
.x18{left:186.080002pt;}
.x27{left:188.479996pt;}
.x23{left:191.199997pt;}
.x24{left:195.199997pt;}
.x42{left:198.399994pt;}
.x33{left:201.600006pt;}
.x11{left:211.360001pt;}
.x1{left:219.199997pt;}
.xd{left:227.520004pt;}
.x14{left:240.160004pt;}
.x44{left:245.279999pt;}
.x21{left:254.080002pt;}
.x25{left:257.279999pt;}
.x3b{left:260.000000pt;}
.x34{left:262.559998pt;}
.x32{left:268.640015pt;}
.xf{left:273.119995pt;}
.x13{left:279.200012pt;}
.x7{left:280.799988pt;}
.x3f{left:293.920013pt;}
.x26{left:308.160004pt;}
.x3d{left:319.040009pt;}
.xa{left:339.839996pt;}
.x2{left:340.959991pt;}
.x35{left:345.600006pt;}
.x3{left:355.040009pt;}
.x40{left:357.920013pt;}
.x45{left:362.239990pt;}
.x28{left:364.160004pt;}
.x46{left:366.079987pt;}
.x17{left:371.679993pt;}
.x36{left:372.640015pt;}
.x47{left:390.399994pt;}
.x6{left:394.559998pt;}
.x1a{left:397.920013pt;}
.xb{left:408.000000pt;}
.x29{left:411.200012pt;}
.x19{left:417.600006pt;}
.x1f{left:433.440002pt;}
.x37{left:434.720001pt;}
.x2a{left:438.239990pt;}
.x1e{left:441.600006pt;}
.x38{left:461.760010pt;}
.x1c{left:465.600006pt;}
.x31{left:468.640015pt;}
.x41{left:472.959991pt;}
.x3c{left:474.079987pt;}
.x30{left:475.679993pt;}
.x2b{left:497.119995pt;}
.x2c{left:524.159973pt;}
.x48{left:527.200012pt;}
.x39{left:531.679993pt;}
.x43{left:550.400024pt;}
.x49{left:555.359985pt;}
.x3a{left:558.719971pt;}
.x2d{left:569.119995pt;}
.x2e{left:596.159973pt;}
.x4{left:696.000000pt;}
}




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