
    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_1e206586450e79f87c128a83.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_f3c4d803f6f17d8fb227e6ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948242;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_dfb5a5d9810b6d2938294fdd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961914;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_632799d88d42f505c800d981.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102051;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_4605698f0abc1405920ca00e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_902f836f594c0528e8aa740c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea6714653d76f7e5ce03bc54.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_1a05029ee0a716a8fa2e7086.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.987305;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.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.319964px;}
.v3{vertical-align:-5.760130px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.320031px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.009468px;}
.ls6{letter-spacing:0.624466px;}
.ls1{letter-spacing:37.504108px;}
.ls3{letter-spacing:104.702180px;}
.ls4{letter-spacing:147.664085px;}
.ls2{letter-spacing:184.622359px;}
.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;}
}
.ws0{word-spacing:-17.215910px;}
.ws3{word-spacing:-15.537825px;}
.ws1{word-spacing:-10.853475px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-5.030309px;}
._10{margin-left:-3.921126px;}
._f{margin-left:-2.824628px;}
._0{margin-left:-1.427709px;}
._1{width:1.047929px;}
._c{width:2.159660px;}
._15{width:3.171589px;}
._3{width:4.184045px;}
._1d{width:5.184778px;}
._b{width:6.189881px;}
._6{width:7.611835px;}
._d{width:9.423691px;}
._e{width:10.602231px;}
._9{width:12.158348px;}
._a{width:13.166464px;}
._13{width:14.569698px;}
._1a{width:16.008109px;}
._1e{width:17.163545px;}
._19{width:18.269714px;}
._1b{width:19.558092px;}
._8{width:20.643700px;}
._7{width:21.649046px;}
._4{width:23.337570px;}
._5{width:24.660399px;}
._14{width:26.479927px;}
._11{width:28.130747px;}
._12{width:29.415216px;}
._1c{width:30.583709px;}
._2c{width:31.844501px;}
._47{width:35.799149px;}
._29{width:37.712001px;}
._2a{width:38.814386px;}
._17{width:43.941940px;}
._16{width:45.770476px;}
._46{width:47.482622px;}
._20{width:48.983867px;}
._21{width:53.750435px;}
._2b{width:55.224686px;}
._23{width:56.309078px;}
._28{width:59.903414px;}
._22{width:62.274632px;}
._42{width:64.808557px;}
._48{width:66.869629px;}
._25{width:72.592718px;}
._27{width:73.626530px;}
._24{width:74.652839px;}
._45{width:78.755165px;}
._43{width:81.087539px;}
._2f{width:86.532746px;}
._2{width:89.775750px;}
._4f{width:119.888887px;}
._3a{width:122.270544px;}
._39{width:130.048379px;}
._44{width:131.846669px;}
._2e{width:133.241948px;}
._34{width:139.133454px;}
._3b{width:140.346133px;}
._26{width:144.450061px;}
._4b{width:148.106548px;}
._4c{width:156.807730px;}
._36{width:163.903418px;}
._3d{width:166.624236px;}
._35{width:169.703882px;}
._4d{width:172.435311px;}
._37{width:174.271274px;}
._4a{width:180.425224px;}
._32{width:183.449759px;}
._31{width:184.589361px;}
._2d{width:200.415121px;}
._33{width:206.897292px;}
._38{width:212.274440px;}
._3e{width:225.630013px;}
._3f{width:261.221914px;}
._3c{width:286.401688px;}
._49{width:361.584367px;}
._40{width:407.277469px;}
._41{width:558.677550px;}
._30{width:623.282425px;}
._4e{width:795.101581px;}
._1f{width:835.395531px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.182220px;}
.fs0{font-size:45.262350px;}
.fs2{font-size:62.151300px;}
.fs3{font-size:62.267718px;}
.fs1{font-size:67.555350px;}
.fs4{font-size:90.018937px;}
.y9{bottom:-16.558480px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.060036px;}
.yb8{bottom:3.420000px;}
.y7{bottom:3.420468px;}
.ycf{bottom:3.599979px;}
.yc9{bottom:3.599980px;}
.yc3{bottom:3.599997px;}
.ybe{bottom:3.600014px;}
.y8{bottom:36.706425px;}
.y6{bottom:41.050570px;}
.y3{bottom:43.919975px;}
.y5{bottom:44.471038px;}
.y2{bottom:81.539977px;}
.y3a{bottom:94.860008px;}
.y4e{bottom:98.460022px;}
.y11a{bottom:103.139992px;}
.y94{bottom:103.500000px;}
.y78{bottom:104.940033px;}
.yb5{bottom:105.299973px;}
.yf4{bottom:111.059967px;}
.y39{bottom:115.379998px;}
.y4d{bottom:118.980011px;}
.y119{bottom:123.480011px;}
.y93{bottom:124.019989px;}
.y77{bottom:125.460022px;}
.yb4{bottom:125.820030px;}
.yf3{bottom:131.580025px;}
.y38{bottom:135.899986px;}
.y4c{bottom:139.500000px;}
.y118{bottom:144.000000px;}
.y92{bottom:144.539977px;}
.y76{bottom:145.799973px;}
.yf2{bottom:152.279983px;}
.y37{bottom:156.600013px;}
.y4b{bottom:159.840019px;}
.yb3{bottom:163.080025px;}
.y91{bottom:165.059967px;}
.y75{bottom:166.320030px;}
.yf1{bottom:172.799973px;}
.y36{bottom:176.940033px;}
.y4a{bottom:180.539977px;}
.y117{bottom:181.440033px;}
.yb2{bottom:183.600013px;}
.y90{bottom:185.580025px;}
.y74{bottom:186.840019px;}
.yf0{bottom:193.320030px;}
.y35{bottom:197.460022px;}
.y49{bottom:201.059967px;}
.y116{bottom:202.139992px;}
.y8f{bottom:206.100013px;}
.y73{bottom:207.539977px;}
.yef{bottom:213.659981px;}
.y34{bottom:217.980011px;}
.yb1{bottom:221.039977px;}
.y48{bottom:221.580025px;}
.y115{bottom:222.480011px;}
.y8e{bottom:226.620002px;}
.y72{bottom:227.879998px;}
.yee{bottom:234.179970px;}
.y33{bottom:238.500000px;}
.yb0{bottom:241.740006px;}
.y47{bottom:241.919975px;}
.y114{bottom:243.000000px;}
.y8d{bottom:247.139992px;}
.y71{bottom:248.399986px;}
.yed{bottom:254.879998px;}
.y32{bottom:259.019989px;}
.yaf{bottom:262.080025px;}
.y46{bottom:262.440033px;}
.y113{bottom:263.519989px;}
.y8c{bottom:267.480011px;}
.y70{bottom:268.919975px;}
.yec{bottom:275.399986px;}
.y31{bottom:279.539977px;}
.yae{bottom:282.600013px;}
.y45{bottom:283.139992px;}
.y112{bottom:284.039977px;}
.y8b{bottom:288.179970px;}
.y6f{bottom:289.620002px;}
.yeb{bottom:295.740006px;}
.y30{bottom:300.059967px;}
.yad{bottom:303.120002px;}
.y44{bottom:303.659981px;}
.y111{bottom:304.559967px;}
.y8a{bottom:308.700027px;}
.y6e{bottom:309.960022px;}
.yea{bottom:316.259994px;}
.y2f{bottom:320.580025px;}
.yac{bottom:323.639992px;}
.y43{bottom:324.000000px;}
.y110{bottom:325.080025px;}
.y89{bottom:329.220017px;}
.y6d{bottom:330.480011px;}
.ye9{bottom:336.960022px;}
.y2e{bottom:341.100013px;}
.yab{bottom:344.159981px;}
.y42{bottom:344.519989px;}
.y10f{bottom:345.600013px;}
.y88{bottom:349.559967px;}
.y6c{bottom:351.000000px;}
.ye8{bottom:357.299973px;}
.y2d{bottom:361.620002px;}
.y41{bottom:365.220017px;}
.yaa{bottom:365.399986px;}
.y10e{bottom:365.940033px;}
.y87{bottom:370.080025px;}
.y6b{bottom:371.519989px;}
.ye7{bottom:379.259994px;}
.y2c{bottom:382.139992px;}
.y40{bottom:385.559967px;}
.ya9{bottom:386.639992px;}
.y86{bottom:390.779983px;}
.y6a{bottom:392.039977px;}
.ye5{bottom:399.779983px;}
.y2b{bottom:402.480011px;}
.y3f{bottom:406.080025px;}
.y10d{bottom:407.159981px;}
.y85{bottom:411.120002px;}
.y69{bottom:412.559967px;}
.ye4{bottom:420.299973px;}
.y2a{bottom:423.000000px;}
.y3e{bottom:426.600013px;}
.y10c{bottom:427.679970px;}
.y84{bottom:431.639992px;}
.y68{bottom:433.080025px;}
.y124{bottom:438.120002px;}
.ye3{bottom:440.820030px;}
.y29{bottom:443.700027px;}
.y3d{bottom:447.120002px;}
.ya8{bottom:449.279983px;}
.y83{bottom:452.159981px;}
.y67{bottom:453.419975px;}
.ye6{bottom:457.740006px;}
.ye2{bottom:461.340019px;}
.y10b{bottom:464.940033px;}
.y28{bottom:467.639992px;}
.y123{bottom:468.720017px;}
.ya7{bottom:469.980011px;}
.y82{bottom:472.860008px;}
.y66{bottom:474.120002px;}
.ye1{bottom:481.679970px;}
.y10a{bottom:485.460022px;}
.y27{bottom:488.159981px;}
.ya6{bottom:490.320030px;}
.y81{bottom:493.200027px;}
.y65{bottom:494.639992px;}
.ydf{bottom:502.379998px;}
.y109{bottom:506.159981px;}
.y26{bottom:508.679970px;}
.ya5{bottom:510.840019px;}
.y80{bottom:513.720017px;}
.y64{bottom:515.159981px;}
.yde{bottom:522.899986px;}
.y108{bottom:526.679970px;}
.y25{bottom:529.200027px;}
.ya4{bottom:531.360008px;}
.y7f{bottom:534.240006px;}
.y63{bottom:535.500000px;}
.ydd{bottom:543.419975px;}
.y107{bottom:547.019989px;}
.y24{bottom:549.720017px;}
.ya3{bottom:551.879998px;}
.y7e{bottom:554.759994px;}
.y62{bottom:556.019989px;}
.ye0{bottom:560.159981px;}
.ydc{bottom:563.759994px;}
.y106{bottom:567.539977px;}
.y23{bottom:570.240006px;}
.ya2{bottom:572.399986px;}
.y7d{bottom:576.000000px;}
.y61{bottom:576.720017px;}
.ydb{bottom:584.279983px;}
.y122{bottom:584.639992px;}
.y105{bottom:588.059967px;}
.y22{bottom:590.759994px;}
.ya1{bottom:592.919975px;}
.y7c{bottom:596.519989px;}
.y60{bottom:597.240006px;}
.yd9{bottom:604.980011px;}
.y121{bottom:605.159981px;}
.y104{bottom:608.580025px;}
.y139{bottom:610.919975px;}
.y21{bottom:611.279983px;}
.ya0{bottom:613.439999px;}
.y5f{bottom:617.579990px;}
.yd8{bottom:625.500000px;}
.y103{bottom:629.100013px;}
.y138{bottom:631.259994px;}
.y20{bottom:631.620002px;}
.y9f{bottom:633.959988px;}
.y7b{bottom:635.399986px;}
.y5e{bottom:638.100013px;}
.yda{bottom:642.240006px;}
.yd7{bottom:645.839985px;}
.y120{bottom:646.019989px;}
.y102{bottom:649.620002px;}
.y137{bottom:651.779983px;}
.y1f{bottom:652.319995px;}
.y9e{bottom:654.480011px;}
.y7a{bottom:655.920010px;}
.y5d{bottom:658.800007px;}
.yd6{bottom:666.360008px;}
.y101{bottom:670.139992px;}
.y136{bottom:672.300007px;}
.y1e{bottom:672.839985px;}
.y9d{bottom:675.000000px;}
.y79{bottom:676.259994px;}
.y5c{bottom:679.139992px;}
.y11f{bottom:683.639992px;}
.y100{bottom:690.660015px;}
.yd3{bottom:691.199993px;}
.y135{bottom:693.000000px;}
.y1d{bottom:693.180004px;}
.y9c{bottom:695.519989px;}
.y5b{bottom:699.660015px;}
.y11e{bottom:704.160015px;}
.yff{bottom:711.180004px;}
.yd2{bottom:711.720017px;}
.y134{bottom:713.339985px;}
.y1c{bottom:713.699993px;}
.y9b{bottom:715.860008px;}
.y5a{bottom:720.180004px;}
.y11d{bottom:724.500000px;}
.yd5{bottom:728.639992px;}
.yd1{bottom:732.240006px;}
.y133{bottom:733.860008px;}
.y1b{bottom:734.399986px;}
.y9a{bottom:736.379998px;}
.y59{bottom:740.699993px;}
.y11c{bottom:745.019989px;}
.yfe{bottom:748.620002px;}
.yd4{bottom:748.980011px;}
.yd0{bottom:752.579990px;}
.y132{bottom:754.379998px;}
.y1a{bottom:754.920010px;}
.y99{bottom:757.079990px;}
.y58{bottom:761.220017px;}
.yfd{bottom:769.139992px;}
.ycd{bottom:773.100013px;}
.y131{bottom:775.079990px;}
.y19{bottom:775.259994px;}
.y98{bottom:777.600013px;}
.y57{bottom:781.740006px;}
.y11b{bottom:782.459988px;}
.yfc{bottom:789.480011px;}
.ycc{bottom:793.800007px;}
.y130{bottom:795.420010px;}
.y18{bottom:795.779983px;}
.y97{bottom:797.939999px;}
.y56{bottom:802.259994px;}
.yfb{bottom:810.180004px;}
.yce{bottom:810.720017px;}
.ycb{bottom:814.319995px;}
.y12f{bottom:815.939999px;}
.y17{bottom:816.300007px;}
.y96{bottom:820.079990px;}
.y55{bottom:822.779983px;}
.yfa{bottom:830.699993px;}
.yca{bottom:834.660015px;}
.y12e{bottom:836.459988px;}
.y16{bottom:837.000000px;}
.y95{bottom:840.420010px;}
.y54{bottom:843.120002px;}
.yf9{bottom:851.220017px;}
.yc7{bottom:855.180004px;}
.y12d{bottom:856.800007px;}
.y15{bottom:857.339985px;}
.y53{bottom:863.819995px;}
.yf8{bottom:871.560001px;}
.yc6{bottom:875.879998px;}
.y12c{bottom:877.500000px;}
.y14{bottom:877.860008px;}
.y52{bottom:884.339985px;}
.yc8{bottom:892.800007px;}
.yf7{bottom:892.980011px;}
.yc5{bottom:896.399987px;}
.y12b{bottom:898.019989px;}
.y13{bottom:898.379998px;}
.y51{bottom:904.860008px;}
.yf6{bottom:914.039995px;}
.yc4{bottom:916.740006px;}
.y12a{bottom:918.539996px;}
.y12{bottom:918.900003px;}
.y50{bottom:925.199993px;}
.yc1{bottom:937.259994px;}
.yf5{bottom:938.699993px;}
.y129{bottom:938.879998px;}
.y11{bottom:939.419992px;}
.y4f{bottom:945.900003px;}
.yc2{bottom:954.180004px;}
.yc0{bottom:957.780001px;}
.y128{bottom:959.580008px;}
.y10{bottom:959.939999px;}
.ybf{bottom:978.300007px;}
.y127{bottom:980.099997px;}
.y3c{bottom:980.460004px;}
.yf{bottom:986.039995px;}
.ybc{bottom:998.819996px;}
.y126{bottom:1000.620002px;}
.y3b{bottom:1000.800007px;}
.ye{bottom:1006.379998px;}
.ybb{bottom:1019.340002px;}
.y125{bottom:1021.139992px;}
.yd{bottom:1021.500000px;}
.ybd{bottom:1036.259994px;}
.yba{bottom:1039.860008px;}
.yc{bottom:1042.020006px;}
.yb9{bottom:1060.379998px;}
.yb{bottom:1062.540003px;}
.yb7{bottom:1078.200002px;}
.yb6{bottom:1081.620002px;}
.ya{bottom:1082.879998px;}
.y1{bottom:1126.439999px;}
.h7{height:3.605648px;}
.h3{height:16.920044px;}
.h13{height:17.459988px;}
.h12{height:17.460004px;}
.h14{height:17.460021px;}
.h6{height:17.639201px;}
.h11{height:17.640000px;}
.h1{height:34.035166px;}
.hb{height:34.934929px;}
.he{height:43.396660px;}
.hf{height:43.851869px;}
.h4{height:45.854792px;}
.hd{height:46.704517px;}
.h9{height:46.734864px;}
.h5{height:46.792001px;}
.h10{height:47.129379px;}
.h2{height:49.841862px;}
.hc{height:55.414196px;}
.ha{height:57.254960px;}
.h8{height:66.415339px;}
.h0{height:1188.000000px;}
.w2{width:2.699958px;}
.w8{width:3.240006px;}
.w3{width:5.938453px;}
.w7{width:7.560002px;}
.w9{width:7.740006px;}
.wa{width:7.920044px;}
.w4{width:10.075223px;}
.w6{width:17.280053px;}
.w5{width:17.460022px;}
.w1{width:17.820030px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:158.400003px;}
.x1{left:160.740006px;}
.x7{left:162.900003px;}
.xc{left:168.300007px;}
.xa{left:186.120002px;}
.x1c{left:194.219999px;}
.xd{left:198.360008px;}
.x4{left:201.059878px;}
.x1d{left:209.520006px;}
.xb{left:211.500000px;}
.x8{left:388.800007px;}
.x1f{left:394.019989px;}
.x20{left:443.519989px;}
.xe{left:448.199993px;}
.x21{left:469.439999px;}
.x9{left:478.800007px;}
.x22{left:484.740006px;}
.xf{left:498.240006px;}
.x23{left:528.300007px;}
.x10{left:538.019989px;}
.x11{left:578.159981px;}
.x29{left:612.179970px;}
.x12{left:628.019989px;}
.x25{left:629.820030px;}
.x24{left:644.940033px;}
.x19{left:667.980011px;}
.x14{left:670.500000px;}
.x15{left:676.440033px;}
.x13{left:680.399987px;}
.x27{left:683.820030px;}
.x26{left:698.759994px;}
.x1a{left:708.120002px;}
.x17{left:715.500000px;}
.x18{left:716.940033px;}
.x6{left:718.196893px;}
.x5{left:722.343927px;}
.x16{left:730.440033px;}
.x2a{left:754.379998px;}
.x28{left:755.460023px;}
.x2{left:774.539978px;}
.x3{left:791.820030px;}
.x1e{left:797.039978px;}
@media print{
.v2{vertical-align:-19.839968pt;}
.v3{vertical-align:-5.120116pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.840028pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.008416pt;}
.ls6{letter-spacing:0.555081pt;}
.ls1{letter-spacing:33.336985pt;}
.ls3{letter-spacing:93.068604pt;}
.ls4{letter-spacing:131.256965pt;}
.ls2{letter-spacing:164.108764pt;}
.ws0{word-spacing:-15.303031pt;}
.ws3{word-spacing:-13.811400pt;}
.ws1{word-spacing:-9.647533pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-4.471386pt;}
._10{margin-left:-3.485445pt;}
._f{margin-left:-2.510781pt;}
._0{margin-left:-1.269075pt;}
._1{width:0.931493pt;}
._c{width:1.919698pt;}
._15{width:2.819190pt;}
._3{width:3.719151pt;}
._1d{width:4.608691pt;}
._b{width:5.502117pt;}
._6{width:6.766075pt;}
._d{width:8.376614pt;}
._e{width:9.424205pt;}
._9{width:10.807421pt;}
._a{width:11.703523pt;}
._13{width:12.950843pt;}
._1a{width:14.229430pt;}
._1e{width:15.256485pt;}
._19{width:16.239746pt;}
._1b{width:17.384971pt;}
._8{width:18.349956pt;}
._7{width:19.243596pt;}
._4{width:20.744507pt;}
._5{width:21.920355pt;}
._14{width:23.537712pt;}
._11{width:25.005108pt;}
._12{width:26.146859pt;}
._1c{width:27.185519pt;}
._2c{width:28.306223pt;}
._47{width:31.821466pt;}
._29{width:33.521778pt;}
._2a{width:34.501677pt;}
._17{width:39.059502pt;}
._16{width:40.684868pt;}
._46{width:42.206775pt;}
._20{width:43.541215pt;}
._21{width:47.778164pt;}
._2b{width:49.088610pt;}
._23{width:50.052514pt;}
._28{width:53.247479pt;}
._22{width:55.355228pt;}
._42{width:57.607606pt;}
._48{width:59.439670pt;}
._25{width:64.526861pt;}
._27{width:65.445804pt;}
._24{width:66.358079pt;}
._45{width:70.004592pt;}
._43{width:72.077812pt;}
._2f{width:76.917997pt;}
._2{width:79.800666pt;}
._4f{width:106.567899pt;}
._3a{width:108.684928pt;}
._39{width:115.598559pt;}
._44{width:117.197039pt;}
._2e{width:118.437287pt;}
._34{width:123.674181pt;}
._3b{width:124.752118pt;}
._26{width:128.400054pt;}
._4b{width:131.650265pt;}
._4c{width:139.384649pt;}
._36{width:145.691927pt;}
._3d{width:148.110432pt;}
._35{width:150.847895pt;}
._4d{width:153.275832pt;}
._37{width:154.907799pt;}
._4a{width:160.377977pt;}
._32{width:163.066452pt;}
._31{width:164.079432pt;}
._2d{width:178.146775pt;}
._33{width:183.908704pt;}
._38{width:188.688391pt;}
._3e{width:200.560011pt;}
._3f{width:232.197257pt;}
._3c{width:254.579278pt;}
._49{width:321.408326pt;}
._40{width:362.024417pt;}
._41{width:496.602267pt;}
._30{width:554.028822pt;}
._4e{width:706.756961pt;}
._1f{width:742.573805pt;}
.fs5{font-size:34.828640pt;}
.fs0{font-size:40.233200pt;}
.fs2{font-size:55.245600pt;}
.fs3{font-size:55.349083pt;}
.fs1{font-size:60.049200pt;}
.fs4{font-size:80.016833pt;}
.y9{bottom:-14.718649pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.720032pt;}
.yb8{bottom:3.040000pt;}
.y7{bottom:3.040416pt;}
.ycf{bottom:3.199981pt;}
.yc9{bottom:3.199982pt;}
.yc3{bottom:3.199997pt;}
.ybe{bottom:3.200012pt;}
.y8{bottom:32.627933pt;}
.y6{bottom:36.489396pt;}
.y3{bottom:39.039978pt;}
.y5{bottom:39.529812pt;}
.y2{bottom:72.479980pt;}
.y3a{bottom:84.320007pt;}
.y4e{bottom:87.520020pt;}
.y11a{bottom:91.679993pt;}
.y94{bottom:92.000000pt;}
.y78{bottom:93.280029pt;}
.yb5{bottom:93.599976pt;}
.yf4{bottom:98.719971pt;}
.y39{bottom:102.559998pt;}
.y4d{bottom:105.760010pt;}
.y119{bottom:109.760010pt;}
.y93{bottom:110.239990pt;}
.y77{bottom:111.520020pt;}
.yb4{bottom:111.840027pt;}
.yf3{bottom:116.960022pt;}
.y38{bottom:120.799988pt;}
.y4c{bottom:124.000000pt;}
.y118{bottom:128.000000pt;}
.y92{bottom:128.479980pt;}
.y76{bottom:129.599976pt;}
.yf2{bottom:135.359985pt;}
.y37{bottom:139.200012pt;}
.y4b{bottom:142.080017pt;}
.yb3{bottom:144.960022pt;}
.y91{bottom:146.719971pt;}
.y75{bottom:147.840027pt;}
.yf1{bottom:153.599976pt;}
.y36{bottom:157.280029pt;}
.y4a{bottom:160.479980pt;}
.y117{bottom:161.280029pt;}
.yb2{bottom:163.200012pt;}
.y90{bottom:164.960022pt;}
.y74{bottom:166.080017pt;}
.yf0{bottom:171.840027pt;}
.y35{bottom:175.520020pt;}
.y49{bottom:178.719971pt;}
.y116{bottom:179.679993pt;}
.y8f{bottom:183.200012pt;}
.y73{bottom:184.479980pt;}
.yef{bottom:189.919983pt;}
.y34{bottom:193.760010pt;}
.yb1{bottom:196.479980pt;}
.y48{bottom:196.960022pt;}
.y115{bottom:197.760010pt;}
.y8e{bottom:201.440002pt;}
.y72{bottom:202.559998pt;}
.yee{bottom:208.159973pt;}
.y33{bottom:212.000000pt;}
.yb0{bottom:214.880005pt;}
.y47{bottom:215.039978pt;}
.y114{bottom:216.000000pt;}
.y8d{bottom:219.679993pt;}
.y71{bottom:220.799988pt;}
.yed{bottom:226.559998pt;}
.y32{bottom:230.239990pt;}
.yaf{bottom:232.960022pt;}
.y46{bottom:233.280029pt;}
.y113{bottom:234.239990pt;}
.y8c{bottom:237.760010pt;}
.y70{bottom:239.039978pt;}
.yec{bottom:244.799988pt;}
.y31{bottom:248.479980pt;}
.yae{bottom:251.200012pt;}
.y45{bottom:251.679993pt;}
.y112{bottom:252.479980pt;}
.y8b{bottom:256.159973pt;}
.y6f{bottom:257.440002pt;}
.yeb{bottom:262.880005pt;}
.y30{bottom:266.719971pt;}
.yad{bottom:269.440002pt;}
.y44{bottom:269.919983pt;}
.y111{bottom:270.719971pt;}
.y8a{bottom:274.400024pt;}
.y6e{bottom:275.520020pt;}
.yea{bottom:281.119995pt;}
.y2f{bottom:284.960022pt;}
.yac{bottom:287.679993pt;}
.y43{bottom:288.000000pt;}
.y110{bottom:288.960022pt;}
.y89{bottom:292.640015pt;}
.y6d{bottom:293.760010pt;}
.ye9{bottom:299.520020pt;}
.y2e{bottom:303.200012pt;}
.yab{bottom:305.919983pt;}
.y42{bottom:306.239990pt;}
.y10f{bottom:307.200012pt;}
.y88{bottom:310.719971pt;}
.y6c{bottom:312.000000pt;}
.ye8{bottom:317.599976pt;}
.y2d{bottom:321.440002pt;}
.y41{bottom:324.640015pt;}
.yaa{bottom:324.799988pt;}
.y10e{bottom:325.280029pt;}
.y87{bottom:328.960022pt;}
.y6b{bottom:330.239990pt;}
.ye7{bottom:337.119995pt;}
.y2c{bottom:339.679993pt;}
.y40{bottom:342.719971pt;}
.ya9{bottom:343.679993pt;}
.y86{bottom:347.359985pt;}
.y6a{bottom:348.479980pt;}
.ye5{bottom:355.359985pt;}
.y2b{bottom:357.760010pt;}
.y3f{bottom:360.960022pt;}
.y10d{bottom:361.919983pt;}
.y85{bottom:365.440002pt;}
.y69{bottom:366.719971pt;}
.ye4{bottom:373.599976pt;}
.y2a{bottom:376.000000pt;}
.y3e{bottom:379.200012pt;}
.y10c{bottom:380.159973pt;}
.y84{bottom:383.679993pt;}
.y68{bottom:384.960022pt;}
.y124{bottom:389.440002pt;}
.ye3{bottom:391.840027pt;}
.y29{bottom:394.400024pt;}
.y3d{bottom:397.440002pt;}
.ya8{bottom:399.359985pt;}
.y83{bottom:401.919983pt;}
.y67{bottom:403.039978pt;}
.ye6{bottom:406.880005pt;}
.ye2{bottom:410.080017pt;}
.y10b{bottom:413.280029pt;}
.y28{bottom:415.679993pt;}
.y123{bottom:416.640015pt;}
.ya7{bottom:417.760010pt;}
.y82{bottom:420.320007pt;}
.y66{bottom:421.440002pt;}
.ye1{bottom:428.159973pt;}
.y10a{bottom:431.520020pt;}
.y27{bottom:433.919983pt;}
.ya6{bottom:435.840027pt;}
.y81{bottom:438.400024pt;}
.y65{bottom:439.679993pt;}
.ydf{bottom:446.559998pt;}
.y109{bottom:449.919983pt;}
.y26{bottom:452.159973pt;}
.ya5{bottom:454.080017pt;}
.y80{bottom:456.640015pt;}
.y64{bottom:457.919983pt;}
.yde{bottom:464.799988pt;}
.y108{bottom:468.159973pt;}
.y25{bottom:470.400024pt;}
.ya4{bottom:472.320007pt;}
.y7f{bottom:474.880005pt;}
.y63{bottom:476.000000pt;}
.ydd{bottom:483.039978pt;}
.y107{bottom:486.239990pt;}
.y24{bottom:488.640015pt;}
.ya3{bottom:490.559998pt;}
.y7e{bottom:493.119995pt;}
.y62{bottom:494.239990pt;}
.ye0{bottom:497.919983pt;}
.ydc{bottom:501.119995pt;}
.y106{bottom:504.479980pt;}
.y23{bottom:506.880005pt;}
.ya2{bottom:508.799988pt;}
.y7d{bottom:512.000000pt;}
.y61{bottom:512.640015pt;}
.ydb{bottom:519.359985pt;}
.y122{bottom:519.679993pt;}
.y105{bottom:522.719971pt;}
.y22{bottom:525.119995pt;}
.ya1{bottom:527.039978pt;}
.y7c{bottom:530.239990pt;}
.y60{bottom:530.880005pt;}
.yd9{bottom:537.760010pt;}
.y121{bottom:537.919983pt;}
.y104{bottom:540.960022pt;}
.y139{bottom:543.039978pt;}
.y21{bottom:543.359985pt;}
.ya0{bottom:545.279999pt;}
.y5f{bottom:548.959991pt;}
.yd8{bottom:556.000000pt;}
.y103{bottom:559.200012pt;}
.y138{bottom:561.119995pt;}
.y20{bottom:561.440002pt;}
.y9f{bottom:563.519989pt;}
.y7b{bottom:564.799988pt;}
.y5e{bottom:567.200012pt;}
.yda{bottom:570.880005pt;}
.yd7{bottom:574.079987pt;}
.y120{bottom:574.239990pt;}
.y102{bottom:577.440002pt;}
.y137{bottom:579.359985pt;}
.y1f{bottom:579.839996pt;}
.y9e{bottom:581.760010pt;}
.y7a{bottom:583.040009pt;}
.y5d{bottom:585.600006pt;}
.yd6{bottom:592.320007pt;}
.y101{bottom:595.679993pt;}
.y136{bottom:597.600006pt;}
.y1e{bottom:598.079987pt;}
.y9d{bottom:600.000000pt;}
.y79{bottom:601.119995pt;}
.y5c{bottom:603.679993pt;}
.y11f{bottom:607.679993pt;}
.y100{bottom:613.920013pt;}
.yd3{bottom:614.399994pt;}
.y135{bottom:616.000000pt;}
.y1d{bottom:616.160004pt;}
.y9c{bottom:618.239990pt;}
.y5b{bottom:621.920013pt;}
.y11e{bottom:625.920013pt;}
.yff{bottom:632.160004pt;}
.yd2{bottom:632.640015pt;}
.y134{bottom:634.079987pt;}
.y1c{bottom:634.399994pt;}
.y9b{bottom:636.320007pt;}
.y5a{bottom:640.160004pt;}
.y11d{bottom:644.000000pt;}
.yd5{bottom:647.679993pt;}
.yd1{bottom:650.880005pt;}
.y133{bottom:652.320007pt;}
.y1b{bottom:652.799988pt;}
.y9a{bottom:654.559998pt;}
.y59{bottom:658.399994pt;}
.y11c{bottom:662.239990pt;}
.yfe{bottom:665.440002pt;}
.yd4{bottom:665.760010pt;}
.yd0{bottom:668.959991pt;}
.y132{bottom:670.559998pt;}
.y1a{bottom:671.040009pt;}
.y99{bottom:672.959991pt;}
.y58{bottom:676.640015pt;}
.yfd{bottom:683.679993pt;}
.ycd{bottom:687.200012pt;}
.y131{bottom:688.959991pt;}
.y19{bottom:689.119995pt;}
.y98{bottom:691.200012pt;}
.y57{bottom:694.880005pt;}
.y11b{bottom:695.519989pt;}
.yfc{bottom:701.760010pt;}
.ycc{bottom:705.600006pt;}
.y130{bottom:707.040009pt;}
.y18{bottom:707.359985pt;}
.y97{bottom:709.279999pt;}
.y56{bottom:713.119995pt;}
.yfb{bottom:720.160004pt;}
.yce{bottom:720.640015pt;}
.ycb{bottom:723.839996pt;}
.y12f{bottom:725.279999pt;}
.y17{bottom:725.600006pt;}
.y96{bottom:728.959991pt;}
.y55{bottom:731.359985pt;}
.yfa{bottom:738.399994pt;}
.yca{bottom:741.920013pt;}
.y12e{bottom:743.519989pt;}
.y16{bottom:744.000000pt;}
.y95{bottom:747.040009pt;}
.y54{bottom:749.440002pt;}
.yf9{bottom:756.640015pt;}
.yc7{bottom:760.160004pt;}
.y12d{bottom:761.600006pt;}
.y15{bottom:762.079987pt;}
.y53{bottom:767.839996pt;}
.yf8{bottom:774.720001pt;}
.yc6{bottom:778.559998pt;}
.y12c{bottom:780.000000pt;}
.y14{bottom:780.320007pt;}
.y52{bottom:786.079987pt;}
.yc8{bottom:793.600006pt;}
.yf7{bottom:793.760010pt;}
.yc5{bottom:796.799988pt;}
.y12b{bottom:798.239990pt;}
.y13{bottom:798.559998pt;}
.y51{bottom:804.320007pt;}
.yf6{bottom:812.479996pt;}
.yc4{bottom:814.880005pt;}
.y12a{bottom:816.479996pt;}
.y12{bottom:816.800003pt;}
.y50{bottom:822.399994pt;}
.yc1{bottom:833.119995pt;}
.yf5{bottom:834.399994pt;}
.y129{bottom:834.559998pt;}
.y11{bottom:835.039993pt;}
.y4f{bottom:840.800003pt;}
.yc2{bottom:848.160004pt;}
.yc0{bottom:851.360001pt;}
.y128{bottom:852.960007pt;}
.y10{bottom:853.279999pt;}
.ybf{bottom:869.600006pt;}
.y127{bottom:871.199997pt;}
.y3c{bottom:871.520004pt;}
.yf{bottom:876.479996pt;}
.ybc{bottom:887.839996pt;}
.y126{bottom:889.440002pt;}
.y3b{bottom:889.600006pt;}
.ye{bottom:894.559998pt;}
.ybb{bottom:906.080002pt;}
.y125{bottom:907.679993pt;}
.yd{bottom:908.000000pt;}
.ybd{bottom:921.119995pt;}
.yba{bottom:924.320007pt;}
.yc{bottom:926.240005pt;}
.yb9{bottom:942.559998pt;}
.yb{bottom:944.480003pt;}
.yb7{bottom:958.400002pt;}
.yb6{bottom:961.440002pt;}
.ya{bottom:962.559998pt;}
.y1{bottom:1001.279999pt;}
.h7{height:3.205020pt;}
.h3{height:15.040039pt;}
.h13{height:15.519989pt;}
.h12{height:15.520004pt;}
.h14{height:15.520019pt;}
.h6{height:15.679289pt;}
.h11{height:15.680000pt;}
.h1{height:30.253480pt;}
.hb{height:31.053270pt;}
.he{height:38.574809pt;}
.hf{height:38.979439pt;}
.h4{height:40.759815pt;}
.hd{height:41.515126pt;}
.h9{height:41.542102pt;}
.h5{height:41.592890pt;}
.h10{height:41.892782pt;}
.h2{height:44.303878pt;}
.hc{height:49.257063pt;}
.ha{height:50.893298pt;}
.h8{height:59.035857pt;}
.h0{height:1056.000000pt;}
.w2{width:2.399963pt;}
.w8{width:2.880005pt;}
.w3{width:5.278625pt;}
.w7{width:6.720002pt;}
.w9{width:6.880005pt;}
.wa{width:7.040039pt;}
.w4{width:8.955754pt;}
.w6{width:15.360047pt;}
.w5{width:15.520020pt;}
.w1{width:15.840027pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:140.800003pt;}
.x1{left:142.880005pt;}
.x7{left:144.800003pt;}
.xc{left:149.600006pt;}
.xa{left:165.440002pt;}
.x1c{left:172.639999pt;}
.xd{left:176.320007pt;}
.x4{left:178.719891pt;}
.x1d{left:186.240005pt;}
.xb{left:188.000000pt;}
.x8{left:345.600006pt;}
.x1f{left:350.239990pt;}
.x20{left:394.239990pt;}
.xe{left:398.399994pt;}
.x21{left:417.279999pt;}
.x9{left:425.600006pt;}
.x22{left:430.880005pt;}
.xf{left:442.880005pt;}
.x23{left:469.600006pt;}
.x10{left:478.239990pt;}
.x11{left:513.919983pt;}
.x29{left:544.159973pt;}
.x12{left:558.239990pt;}
.x25{left:559.840027pt;}
.x24{left:573.280029pt;}
.x19{left:593.760010pt;}
.x14{left:596.000000pt;}
.x15{left:601.280029pt;}
.x13{left:604.799988pt;}
.x27{left:607.840027pt;}
.x26{left:621.119995pt;}
.x1a{left:629.440002pt;}
.x17{left:636.000000pt;}
.x18{left:637.280029pt;}
.x6{left:638.397238pt;}
.x5{left:642.083491pt;}
.x16{left:649.280029pt;}
.x2a{left:670.559998pt;}
.x28{left:671.520020pt;}
.x2{left:688.479980pt;}
.x3{left:703.840027pt;}
.x1e{left:708.479980pt;}
}




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