
    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_d85432701cf6ae1fcfd8864d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_09290b90fcff373509707aba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dcef390c7bfc1f98462f541b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_233587a2b664dc9546c7f3fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_d796121f5a6dbe94369f31f1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_502242ab4e2d160e569fb256.woff')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_89018607028deac9b3adb645.woff')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_13af9b653236e3ea4f2d82ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b4d52fb86beb736ac5db2a98.woff')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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:ffa;src:url('chunks/assets/font_2011eebd49b70ca7a515fa3f.woff')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-69.119937px;}
.v3{vertical-align:-30.960022px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:31.679901px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.304380px;}
.ls1{letter-spacing:0.304402px;}
.ls5{letter-spacing:0.310714px;}
.ls8{letter-spacing:0.506601px;}
.ls9{letter-spacing:23.407049px;}
.lsa{letter-spacing:23.407116px;}
.ls7{letter-spacing:49.327094px;}
.ls6{letter-spacing:49.327125px;}
.ls3{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.565086px;}
.ws1{word-spacing:-15.535688px;}
.ws3{word-spacing:-15.446864px;}
.ws7{word-spacing:-13.171626px;}
.ws6{word-spacing:-12.665025px;}
.ws4{word-spacing:-10.754859px;}
.ws0{word-spacing:-7.767855px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-9.929380px;}
._18{margin-left:-2.299282px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._e{width:2.657816px;}
._11{width:4.535935px;}
._9{width:5.573428px;}
._2e{width:6.575722px;}
._1d{width:7.704244px;}
._8{width:8.848545px;}
._7{width:10.377839px;}
._a{width:11.496894px;}
._12{width:13.049977px;}
._1c{width:14.221223px;}
._15{width:15.428483px;}
._22{width:17.122630px;}
._16{width:18.365367px;}
._17{width:19.408443px;}
._14{width:20.602021px;}
._27{width:22.358039px;}
._d{width:23.446426px;}
._23{width:24.832463px;}
._25{width:25.873108px;}
._1a{width:27.216097px;}
._b{width:28.990321px;}
._c{width:30.324205px;}
._10{width:32.127802px;}
._26{width:33.816580px;}
._f{width:34.881988px;}
._2d{width:36.061368px;}
._28{width:37.213230px;}
._20{width:38.227852px;}
._21{width:39.286278px;}
._2c{width:40.684567px;}
._19{width:42.267508px;}
._1b{width:44.143685px;}
._29{width:45.717159px;}
._13{width:46.804414px;}
._4{width:47.912060px;}
._5{width:49.155401px;}
._1e{width:51.072359px;}
._1f{width:52.157224px;}
._2b{width:56.589712px;}
._2a{width:57.908061px;}
._6{width:61.170313px;}
._32{width:64.414943px;}
._33{width:65.579334px;}
._31{width:76.218746px;}
._35{width:77.958176px;}
._30{width:80.711664px;}
._38{width:110.380640px;}
._36{width:155.560972px;}
._37{width:177.234194px;}
._2f{width:211.541504px;}
._34{width:227.480536px;}
._39{width:283.527593px;}
._3a{width:284.542708px;}
._2{width:549.563316px;}
._24{width:725.984748px;}
.fc7{color:rgb(128,0,0);}
.fc5{color:rgb(196,188,150);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.071420px;}
.fsa{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs8{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fs3{font-size:56.063700px;}
.fs9{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs7{font-size:62.260346px;}
.fsb{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs6{font-size:289.774809px;}
.y7a{bottom:-12.601973px;}
.y84{bottom:-8.097453px;}
.y0{bottom:0.000000px;}
.y81{bottom:2.521461px;}
.y7c{bottom:2.878173px;}
.y7e{bottom:3.599789px;}
.y61{bottom:3.779983px;}
.y88{bottom:6.839950px;}
.y87{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y86{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y83{bottom:73.985843px;}
.yc2{bottom:76.679970px;}
.yb2{bottom:76.860008px;}
.y82{bottom:79.025841px;}
.y80{bottom:89.465194px;}
.yc1{bottom:94.500000px;}
.yb1{bottom:94.679970px;}
.y115{bottom:96.120002px;}
.ye8{bottom:105.120002px;}
.y114{bottom:110.700027px;}
.y5f{bottom:110.879998px;}
.yb0{bottom:112.500000px;}
.y38{bottom:114.480011px;}
.ye7{bottom:119.700027px;}
.y113{bottom:125.279983px;}
.y5e{bottom:128.700027px;}
.yaf{bottom:130.500000px;}
.y37{bottom:132.299973px;}
.ye6{bottom:134.279983px;}
.y112{bottom:139.860008px;}
.y5d{bottom:146.700027px;}
.yc0{bottom:148.139992px;}
.yae{bottom:148.320030px;}
.ye5{bottom:149.039977px;}
.y36{bottom:150.299973px;}
.y111{bottom:154.620002px;}
.ye4{bottom:163.620002px;}
.y5c{bottom:164.700027px;}
.yad{bottom:166.139992px;}
.y35{bottom:168.120002px;}
.y110{bottom:169.200027px;}
.ye3{bottom:178.379998px;}
.y5b{bottom:182.340019px;}
.y153{bottom:183.419975px;}
.y10f{bottom:183.960022px;}
.yac{bottom:184.139992px;}
.y34{bottom:186.120002px;}
.ye2{bottom:192.779983px;}
.y152{bottom:198.000000px;}
.y10e{bottom:198.360008px;}
.y5a{bottom:200.340019px;}
.ybf{bottom:201.779983px;}
.yab{bottom:201.960022px;}
.y33{bottom:203.940033px;}
.ye1{bottom:207.539977px;}
.y151{bottom:212.580025px;}
.y10d{bottom:213.120002px;}
.y59{bottom:218.159981px;}
.ybe{bottom:219.779983px;}
.yaa{bottom:219.960022px;}
.y32{bottom:221.759994px;}
.ye0{bottom:222.840019px;}
.y150{bottom:227.159981px;}
.y10c{bottom:227.700027px;}
.y58{bottom:235.980011px;}
.ya9{bottom:237.779983px;}
.y31{bottom:239.759994px;}
.ydf{bottom:240.659981px;}
.y14f{bottom:241.919975px;}
.y10b{bottom:242.460022px;}
.y57{bottom:253.980011px;}
.ya8{bottom:255.600013px;}
.y14e{bottom:256.500000px;}
.y10a{bottom:257.039977px;}
.y30{bottom:257.580025px;}
.yde{bottom:258.480011px;}
.y14d{bottom:271.259994px;}
.y109{bottom:271.620002px;}
.y56{bottom:271.799973px;}
.ybd{bottom:273.419975px;}
.ya7{bottom:273.600013px;}
.y2f{bottom:275.399986px;}
.ydd{bottom:276.480011px;}
.y14c{bottom:285.840019px;}
.y108{bottom:286.200027px;}
.y55{bottom:289.799973px;}
.ya6{bottom:291.419975px;}
.y2e{bottom:293.399986px;}
.ydc{bottom:294.299973px;}
.y14b{bottom:300.419975px;}
.y107{bottom:300.960022px;}
.y54{bottom:307.620002px;}
.ya5{bottom:309.240006px;}
.y2d{bottom:311.220017px;}
.ydb{bottom:312.120002px;}
.y14a{bottom:315.000000px;}
.y106{bottom:315.539977px;}
.y53{bottom:325.440033px;}
.ya4{bottom:327.240006px;}
.y2c{bottom:329.039977px;}
.y149{bottom:329.759994px;}
.yda{bottom:330.120002px;}
.y105{bottom:330.299973px;}
.y52{bottom:343.440033px;}
.y148{bottom:344.340019px;}
.ybc{bottom:344.879998px;}
.ya3{bottom:345.059967px;}
.y2b{bottom:347.039977px;}
.yd9{bottom:347.940033px;}
.y147{bottom:358.919975px;}
.y104{bottom:359.460022px;}
.y51{bottom:361.259994px;}
.ya2{bottom:362.879998px;}
.y2a{bottom:364.860008px;}
.yd8{bottom:365.759994px;}
.y146{bottom:373.500000px;}
.y103{bottom:374.039977px;}
.y50{bottom:379.080025px;}
.ya1{bottom:380.879998px;}
.y29{bottom:382.860008px;}
.yd7{bottom:383.759994px;}
.y145{bottom:388.259994px;}
.y102{bottom:388.799973px;}
.y4f{bottom:397.080025px;}
.ybb{bottom:398.519989px;}
.ya0{bottom:398.700027px;}
.y28{bottom:400.679970px;}
.yd6{bottom:401.580025px;}
.y144{bottom:402.840019px;}
.y101{bottom:403.379998px;}
.y4e{bottom:415.080025px;}
.yba{bottom:416.519989px;}
.y9f{bottom:416.700027px;}
.y143{bottom:417.600013px;}
.y100{bottom:418.139992px;}
.y27{bottom:418.500000px;}
.yd5{bottom:419.580025px;}
.y142{bottom:432.179970px;}
.yff{bottom:432.539977px;}
.y4d{bottom:432.720017px;}
.y9e{bottom:434.519989px;}
.y26{bottom:436.500000px;}
.yd4{bottom:437.399986px;}
.y141{bottom:446.759994px;}
.yfe{bottom:447.299973px;}
.y4c{bottom:450.720017px;}
.y9d{bottom:452.340019px;}
.y25{bottom:454.320030px;}
.yd3{bottom:455.220017px;}
.y140{bottom:461.340019px;}
.yfd{bottom:461.879998px;}
.y4b{bottom:468.720017px;}
.y60{bottom:468.899986px;}
.yb9{bottom:470.159981px;}
.y9c{bottom:470.340019px;}
.y24{bottom:472.139992px;}
.yd2{bottom:473.220017px;}
.y13f{bottom:476.100013px;}
.yfc{bottom:476.639992px;}
.y4a{bottom:486.539977px;}
.y9b{bottom:488.159981px;}
.y23{bottom:490.139992px;}
.y13e{bottom:490.679970px;}
.yd1{bottom:491.220017px;}
.y49{bottom:504.360008px;}
.y13d{bottom:505.440033px;}
.yfb{bottom:505.799973px;}
.y9a{bottom:505.980011px;}
.y22{bottom:508.139992px;}
.yd0{bottom:508.860008px;}
.y13c{bottom:519.840019px;}
.yfa{bottom:520.379998px;}
.y48{bottom:522.360008px;}
.yb8{bottom:523.799973px;}
.y99{bottom:523.980011px;}
.y21{bottom:525.779983px;}
.ycf{bottom:526.860008px;}
.y13b{bottom:534.600013px;}
.yf9{bottom:535.139992px;}
.y47{bottom:540.179970px;}
.yb7{bottom:541.799973px;}
.y98{bottom:541.980011px;}
.y20{bottom:543.779983px;}
.yce{bottom:544.860008px;}
.y13a{bottom:549.179970px;}
.yf8{bottom:549.720017px;}
.y46{bottom:558.000000px;}
.y97{bottom:559.620002px;}
.y1f{bottom:561.779983px;}
.ycd{bottom:562.500000px;}
.y139{bottom:563.940033px;}
.yf7{bottom:564.480011px;}
.y45{bottom:575.820030px;}
.y96{bottom:577.620002px;}
.y138{bottom:578.519989px;}
.yf6{bottom:578.879998px;}
.y1e{bottom:579.419975px;}
.ycc{bottom:580.500000px;}
.y137{bottom:593.100013px;}
.yf5{bottom:593.639992px;}
.y44{bottom:593.820030px;}
.yb6{bottom:595.440033px;}
.y95{bottom:595.620002px;}
.y1d{bottom:597.419975px;}
.ycb{bottom:598.320030px;}
.y79{bottom:606.603531px;}
.y136{bottom:607.679970px;}
.yf4{bottom:608.220017px;}
.y7b{bottom:608.935219px;}
.y43{bottom:611.820030px;}
.y78{bottom:612.009121px;}
.y94{bottom:613.259994px;}
.y1c{bottom:615.240006px;}
.yca{bottom:616.319995px;}
.y135{bottom:622.439999px;}
.yf3{bottom:622.980011px;}
.y42{bottom:629.459988px;}
.y77{bottom:629.646233px;}
.y93{bottom:631.259994px;}
.y1b{bottom:633.240006px;}
.yc9{bottom:634.139992px;}
.y7d{bottom:635.578188px;}
.y134{bottom:637.019989px;}
.yf2{bottom:637.560001px;}
.y41{bottom:647.459988px;}
.y76{bottom:647.644287px;}
.y92{bottom:649.079990px;}
.y1a{bottom:651.060001px;}
.y133{bottom:651.779983px;}
.yc8{bottom:651.959988px;}
.yf1{bottom:652.139992px;}
.y40{bottom:665.459988px;}
.y75{bottom:665.642387px;}
.y132{bottom:666.180004px;}
.yf0{bottom:666.720017px;}
.yb5{bottom:666.899986px;}
.y91{bottom:667.079990px;}
.y19{bottom:669.959988px;}
.y131{bottom:680.939999px;}
.yef{bottom:681.480011px;}
.y3f{bottom:683.100013px;}
.y74{bottom:683.464725px;}
.y90{bottom:684.899986px;}
.y18{bottom:687.420010px;}
.yc7{bottom:687.779983px;}
.y130{bottom:695.519989px;}
.yee{bottom:696.060001px;}
.y3e{bottom:701.100013px;}
.y73{bottom:701.287016px;}
.y8f{bottom:702.720017px;}
.yc6{bottom:705.600013px;}
.y12f{bottom:710.279983px;}
.yed{bottom:710.819995px;}
.y3d{bottom:719.100013px;}
.y72{bottom:719.284188px;}
.yb4{bottom:720.540012px;}
.y8e{bottom:720.720017px;}
.y17{bottom:722.339985px;}
.yc5{bottom:723.060001px;}
.y12e{bottom:724.860008px;}
.yec{bottom:725.220017px;}
.y3c{bottom:736.920010px;}
.y71{bottom:737.106479px;}
.yc4{bottom:737.639992px;}
.yb3{bottom:738.540012px;}
.y8d{bottom:738.720017px;}
.y12d{bottom:739.439999px;}
.y16{bottom:739.800007px;}
.yeb{bottom:739.980011px;}
.yc3{bottom:749.519989px;}
.y12c{bottom:754.019989px;}
.yea{bottom:754.560001px;}
.y3b{bottom:754.740006px;}
.y70{bottom:754.928817px;}
.y8c{bottom:756.360008px;}
.y15{bottom:757.259994px;}
.ye9{bottom:766.439999px;}
.y12b{bottom:768.779983px;}
.y3a{bottom:772.740006px;}
.y6f{bottom:772.925943px;}
.y8b{bottom:774.360008px;}
.y14{bottom:774.720017px;}
.y12a{bottom:783.360008px;}
.y39{bottom:790.560001px;}
.y6e{bottom:790.748280px;}
.y13{bottom:792.180004px;}
.y8a{bottom:792.360008px;}
.y129{bottom:798.120002px;}
.y6d{bottom:808.745406px;}
.y12{bottom:809.639992px;}
.y128{bottom:812.519989px;}
.y89{bottom:821.339985px;}
.y6c{bottom:826.385348px;}
.y11{bottom:826.920010px;}
.y127{bottom:827.279983px;}
.y126{bottom:841.860008px;}
.y10{bottom:844.379998px;}
.y6b{bottom:844.382474px;}
.y125{bottom:856.620002px;}
.yf{bottom:861.660015px;}
.y6a{bottom:862.387208px;}
.y124{bottom:871.199993px;}
.ye{bottom:879.120002px;}
.y69{bottom:880.027126px;}
.y123{bottom:885.779983px;}
.yd{bottom:896.399987px;}
.y68{bottom:898.024252px;}
.y122{bottom:900.360008px;}
.yc{bottom:913.860008px;}
.y121{bottom:915.120002px;}
.y67{bottom:916.021401px;}
.y120{bottom:929.699993px;}
.yb{bottom:931.139992px;}
.y66{bottom:933.843715px;}
.y11f{bottom:944.460004px;}
.ya{bottom:948.419992px;}
.y65{bottom:951.666053px;}
.y11e{bottom:958.860008px;}
.y9{bottom:965.879998px;}
.y64{bottom:969.663179px;}
.y11d{bottom:973.620002px;}
.y8{bottom:983.159998px;}
.y63{bottom:987.485517px;}
.y11c{bottom:988.199993px;}
.y7{bottom:1000.620002px;}
.y11b{bottom:1002.960004px;}
.y7f{bottom:1005.125435px;}
.y62{bottom:1005.300235px;}
.y11a{bottom:1017.539996px;}
.y6{bottom:1018.080008px;}
.y119{bottom:1032.120002px;}
.y5{bottom:1039.500000px;}
.y118{bottom:1046.700002px;}
.y117{bottom:1061.459997px;}
.y4{bottom:1072.980002px;}
.y116{bottom:1076.040003px;}
.y85{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.hc{height:0.541529px;}
.h14{height:2.701140px;}
.h12{height:12.960698px;}
.hd{height:14.761160px;}
.hf{height:18.363207px;}
.he{height:33.564239px;}
.h13{height:33.942419px;}
.h17{height:38.316648px;}
.h10{height:41.579270px;}
.h1{height:47.001523px;}
.hb{height:47.090466px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h9{height:53.639991px;}
.h18{height:54.460814px;}
.h8{height:54.460818px;}
.h7{height:55.180697px;}
.h3{height:55.762577px;}
.h15{height:61.808975px;}
.h11{height:61.925939px;}
.h16{height:83.979548px;}
.h4{height:123.810048px;}
.ha{height:219.170498px;}
.h0{height:1188.000000px;}
.w11{width:2.341842px;}
.w19{width:2.698157px;}
.we{width:2.704181px;}
.wf{width:2.877835px;}
.w9{width:2.879633px;}
.w12{width:2.880818px;}
.wc{width:2.880847px;}
.w16{width:2.880876px;}
.w1c{width:4.681219px;}
.w4{width:5.756414px;}
.w1a{width:5.935407px;}
.w2{width:7.022545px;}
.w7{width:7.377859px;}
.wa{width:13.679513px;}
.w8{width:22.318443px;}
.w1b{width:31.317942px;}
.w15{width:31.497562px;}
.w5{width:34.023130px;}
.w18{width:34.378439px;}
.w10{width:37.618613px;}
.w14{width:41.939898px;}
.w6{width:45.364194px;}
.w13{width:53.457262px;}
.w17{width:55.077350px;}
.wd{width:63.540213px;}
.w1{width:64.620011px;}
.w3{width:85.322022px;}
.wb{width:267.476240px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.xd{left:114.840751px;}
.x24{left:128.340002px;}
.xe{left:136.981913px;}
.xf{left:139.679471px;}
.x10{left:153.358983px;}
.x7{left:154.802876px;}
.x11{left:156.061337px;}
.x9{left:157.677598px;}
.x3{left:167.580008px;}
.xa{left:191.700728px;}
.xb{left:237.064922px;}
.x8{left:240.124898px;}
.x2{left:248.939999px;}
.x29{left:268.740006px;}
.x27{left:291.420010px;}
.x28{left:294.480011px;}
.xc{left:310.496126px;}
.x6{left:313.376562px;}
.x26{left:319.680005px;}
.x12{left:423.537577px;}
.x13{left:426.238746px;}
.x22{left:445.500000px;}
.x4{left:472.139992px;}
.x14{left:489.236911px;}
.x15{left:491.758431px;}
.x16{left:494.459571px;}
.x25{left:497.519989px;}
.x5{left:522.899987px;}
.x17{left:532.078184px;}
.x18{left:534.237364px;}
.x19{left:536.941487px;}
.x1a{left:590.222112px;}
.x1b{left:631.802654px;}
.x1c{left:663.300216px;}
.x1d{left:665.462379px;}
.x1e{left:720.360051px;}
.x1f{left:754.379133px;}
.x20{left:756.900594px;}
.x21{left:761.940592px;}
.x23{left:814.860008px;}
@media print{
.v1{vertical-align:-61.439944pt;}
.v3{vertical-align:-27.520020pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:28.159912pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.270560pt;}
.ls1{letter-spacing:0.270580pt;}
.ls5{letter-spacing:0.276190pt;}
.ls8{letter-spacing:0.450312pt;}
.ls9{letter-spacing:20.806266pt;}
.lsa{letter-spacing:20.806326pt;}
.ls7{letter-spacing:43.846306pt;}
.ls6{letter-spacing:43.846334pt;}
.ls3{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws2{word-spacing:-13.835632pt;}
.ws1{word-spacing:-13.809500pt;}
.ws3{word-spacing:-13.730545pt;}
.ws7{word-spacing:-11.708112pt;}
.ws6{word-spacing:-11.257800pt;}
.ws4{word-spacing:-9.559875pt;}
.ws0{word-spacing:-6.904760pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-8.826115pt;}
._18{margin-left:-2.043806pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._e{width:2.362503pt;}
._11{width:4.031942pt;}
._9{width:4.954158pt;}
._2e{width:5.845087pt;}
._1d{width:6.848217pt;}
._8{width:7.865373pt;}
._7{width:9.224746pt;}
._a{width:10.219462pt;}
._12{width:11.599980pt;}
._1c{width:12.641087pt;}
._15{width:13.714207pt;}
._22{width:15.220115pt;}
._16{width:16.324771pt;}
._17{width:17.251949pt;}
._14{width:18.312907pt;}
._27{width:19.873812pt;}
._d{width:20.841268pt;}
._23{width:22.073300pt;}
._25{width:22.998319pt;}
._1a{width:24.192086pt;}
._b{width:25.769174pt;}
._c{width:26.954849pt;}
._10{width:28.558046pt;}
._26{width:30.059182pt;}
._f{width:31.006211pt;}
._2d{width:32.054549pt;}
._28{width:33.078426pt;}
._20{width:33.980313pt;}
._21{width:34.921136pt;}
._2c{width:36.164060pt;}
._19{width:37.571118pt;}
._1b{width:39.238831pt;}
._29{width:40.637475pt;}
._13{width:41.603924pt;}
._4{width:42.588498pt;}
._5{width:43.693690pt;}
._1e{width:45.397652pt;}
._1f{width:46.361977pt;}
._2b{width:50.301967pt;}
._2a{width:51.473832pt;}
._6{width:54.373612pt;}
._32{width:57.257727pt;}
._33{width:58.292741pt;}
._31{width:67.749997pt;}
._35{width:69.296157pt;}
._30{width:71.743701pt;}
._38{width:98.116125pt;}
._36{width:138.276420pt;}
._37{width:157.541506pt;}
._2f{width:188.036892pt;}
._34{width:202.204921pt;}
._39{width:252.024527pt;}
._3a{width:252.926851pt;}
._2{width:488.500725pt;}
._24{width:645.319776pt;}
.fs5{font-size:27.619040pt;}
.fsa{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs8{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fs3{font-size:49.834400pt;}
.fs9{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs7{font-size:55.342529pt;}
.fsb{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs6{font-size:257.577608pt;}
.y7a{bottom:-11.201754pt;}
.y84{bottom:-7.197736pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:2.241299pt;}
.y7c{bottom:2.558376pt;}
.y7e{bottom:3.199812pt;}
.y61{bottom:3.359985pt;}
.y88{bottom:6.079956pt;}
.y87{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y86{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y83{bottom:65.765194pt;}
.yc2{bottom:68.159973pt;}
.yb2{bottom:68.320007pt;}
.y82{bottom:70.245192pt;}
.y80{bottom:79.524617pt;}
.yc1{bottom:84.000000pt;}
.yb1{bottom:84.159973pt;}
.y115{bottom:85.440002pt;}
.ye8{bottom:93.440002pt;}
.y114{bottom:98.400024pt;}
.y5f{bottom:98.559998pt;}
.yb0{bottom:100.000000pt;}
.y38{bottom:101.760010pt;}
.ye7{bottom:106.400024pt;}
.y113{bottom:111.359985pt;}
.y5e{bottom:114.400024pt;}
.yaf{bottom:116.000000pt;}
.y37{bottom:117.599976pt;}
.ye6{bottom:119.359985pt;}
.y112{bottom:124.320007pt;}
.y5d{bottom:130.400024pt;}
.yc0{bottom:131.679993pt;}
.yae{bottom:131.840027pt;}
.ye5{bottom:132.479980pt;}
.y36{bottom:133.599976pt;}
.y111{bottom:137.440002pt;}
.ye4{bottom:145.440002pt;}
.y5c{bottom:146.400024pt;}
.yad{bottom:147.679993pt;}
.y35{bottom:149.440002pt;}
.y110{bottom:150.400024pt;}
.ye3{bottom:158.559998pt;}
.y5b{bottom:162.080017pt;}
.y153{bottom:163.039978pt;}
.y10f{bottom:163.520020pt;}
.yac{bottom:163.679993pt;}
.y34{bottom:165.440002pt;}
.ye2{bottom:171.359985pt;}
.y152{bottom:176.000000pt;}
.y10e{bottom:176.320007pt;}
.y5a{bottom:178.080017pt;}
.ybf{bottom:179.359985pt;}
.yab{bottom:179.520020pt;}
.y33{bottom:181.280029pt;}
.ye1{bottom:184.479980pt;}
.y151{bottom:188.960022pt;}
.y10d{bottom:189.440002pt;}
.y59{bottom:193.919983pt;}
.ybe{bottom:195.359985pt;}
.yaa{bottom:195.520020pt;}
.y32{bottom:197.119995pt;}
.ye0{bottom:198.080017pt;}
.y150{bottom:201.919983pt;}
.y10c{bottom:202.400024pt;}
.y58{bottom:209.760010pt;}
.ya9{bottom:211.359985pt;}
.y31{bottom:213.119995pt;}
.ydf{bottom:213.919983pt;}
.y14f{bottom:215.039978pt;}
.y10b{bottom:215.520020pt;}
.y57{bottom:225.760010pt;}
.ya8{bottom:227.200012pt;}
.y14e{bottom:228.000000pt;}
.y10a{bottom:228.479980pt;}
.y30{bottom:228.960022pt;}
.yde{bottom:229.760010pt;}
.y14d{bottom:241.119995pt;}
.y109{bottom:241.440002pt;}
.y56{bottom:241.599976pt;}
.ybd{bottom:243.039978pt;}
.ya7{bottom:243.200012pt;}
.y2f{bottom:244.799988pt;}
.ydd{bottom:245.760010pt;}
.y14c{bottom:254.080017pt;}
.y108{bottom:254.400024pt;}
.y55{bottom:257.599976pt;}
.ya6{bottom:259.039978pt;}
.y2e{bottom:260.799988pt;}
.ydc{bottom:261.599976pt;}
.y14b{bottom:267.039978pt;}
.y107{bottom:267.520020pt;}
.y54{bottom:273.440002pt;}
.ya5{bottom:274.880005pt;}
.y2d{bottom:276.640015pt;}
.ydb{bottom:277.440002pt;}
.y14a{bottom:280.000000pt;}
.y106{bottom:280.479980pt;}
.y53{bottom:289.280029pt;}
.ya4{bottom:290.880005pt;}
.y2c{bottom:292.479980pt;}
.y149{bottom:293.119995pt;}
.yda{bottom:293.440002pt;}
.y105{bottom:293.599976pt;}
.y52{bottom:305.280029pt;}
.y148{bottom:306.080017pt;}
.ybc{bottom:306.559998pt;}
.ya3{bottom:306.719971pt;}
.y2b{bottom:308.479980pt;}
.yd9{bottom:309.280029pt;}
.y147{bottom:319.039978pt;}
.y104{bottom:319.520020pt;}
.y51{bottom:321.119995pt;}
.ya2{bottom:322.559998pt;}
.y2a{bottom:324.320007pt;}
.yd8{bottom:325.119995pt;}
.y146{bottom:332.000000pt;}
.y103{bottom:332.479980pt;}
.y50{bottom:336.960022pt;}
.ya1{bottom:338.559998pt;}
.y29{bottom:340.320007pt;}
.yd7{bottom:341.119995pt;}
.y145{bottom:345.119995pt;}
.y102{bottom:345.599976pt;}
.y4f{bottom:352.960022pt;}
.ybb{bottom:354.239990pt;}
.ya0{bottom:354.400024pt;}
.y28{bottom:356.159973pt;}
.yd6{bottom:356.960022pt;}
.y144{bottom:358.080017pt;}
.y101{bottom:358.559998pt;}
.y4e{bottom:368.960022pt;}
.yba{bottom:370.239990pt;}
.y9f{bottom:370.400024pt;}
.y143{bottom:371.200012pt;}
.y100{bottom:371.679993pt;}
.y27{bottom:372.000000pt;}
.yd5{bottom:372.960022pt;}
.y142{bottom:384.159973pt;}
.yff{bottom:384.479980pt;}
.y4d{bottom:384.640015pt;}
.y9e{bottom:386.239990pt;}
.y26{bottom:388.000000pt;}
.yd4{bottom:388.799988pt;}
.y141{bottom:397.119995pt;}
.yfe{bottom:397.599976pt;}
.y4c{bottom:400.640015pt;}
.y9d{bottom:402.080017pt;}
.y25{bottom:403.840027pt;}
.yd3{bottom:404.640015pt;}
.y140{bottom:410.080017pt;}
.yfd{bottom:410.559998pt;}
.y4b{bottom:416.640015pt;}
.y60{bottom:416.799988pt;}
.yb9{bottom:417.919983pt;}
.y9c{bottom:418.080017pt;}
.y24{bottom:419.679993pt;}
.yd2{bottom:420.640015pt;}
.y13f{bottom:423.200012pt;}
.yfc{bottom:423.679993pt;}
.y4a{bottom:432.479980pt;}
.y9b{bottom:433.919983pt;}
.y23{bottom:435.679993pt;}
.y13e{bottom:436.159973pt;}
.yd1{bottom:436.640015pt;}
.y49{bottom:448.320007pt;}
.y13d{bottom:449.280029pt;}
.yfb{bottom:449.599976pt;}
.y9a{bottom:449.760010pt;}
.y22{bottom:451.679993pt;}
.yd0{bottom:452.320007pt;}
.y13c{bottom:462.080017pt;}
.yfa{bottom:462.559998pt;}
.y48{bottom:464.320007pt;}
.yb8{bottom:465.599976pt;}
.y99{bottom:465.760010pt;}
.y21{bottom:467.359985pt;}
.ycf{bottom:468.320007pt;}
.y13b{bottom:475.200012pt;}
.yf9{bottom:475.679993pt;}
.y47{bottom:480.159973pt;}
.yb7{bottom:481.599976pt;}
.y98{bottom:481.760010pt;}
.y20{bottom:483.359985pt;}
.yce{bottom:484.320007pt;}
.y13a{bottom:488.159973pt;}
.yf8{bottom:488.640015pt;}
.y46{bottom:496.000000pt;}
.y97{bottom:497.440002pt;}
.y1f{bottom:499.359985pt;}
.ycd{bottom:500.000000pt;}
.y139{bottom:501.280029pt;}
.yf7{bottom:501.760010pt;}
.y45{bottom:511.840027pt;}
.y96{bottom:513.440002pt;}
.y138{bottom:514.239990pt;}
.yf6{bottom:514.559998pt;}
.y1e{bottom:515.039978pt;}
.ycc{bottom:516.000000pt;}
.y137{bottom:527.200012pt;}
.yf5{bottom:527.679993pt;}
.y44{bottom:527.840027pt;}
.yb6{bottom:529.280029pt;}
.y95{bottom:529.440002pt;}
.y1d{bottom:531.039978pt;}
.ycb{bottom:531.840027pt;}
.y79{bottom:539.203139pt;}
.y136{bottom:540.159973pt;}
.yf4{bottom:540.640015pt;}
.y7b{bottom:541.275750pt;}
.y43{bottom:543.840027pt;}
.y78{bottom:544.008108pt;}
.y94{bottom:545.119995pt;}
.y1c{bottom:546.880005pt;}
.yca{bottom:547.839996pt;}
.y135{bottom:553.279999pt;}
.yf3{bottom:553.760010pt;}
.y42{bottom:559.519989pt;}
.y77{bottom:559.685541pt;}
.y93{bottom:561.119995pt;}
.y1b{bottom:562.880005pt;}
.yc9{bottom:563.679993pt;}
.y7d{bottom:564.958389pt;}
.y134{bottom:566.239990pt;}
.yf2{bottom:566.720001pt;}
.y41{bottom:575.519989pt;}
.y76{bottom:575.683811pt;}
.y92{bottom:576.959991pt;}
.y1a{bottom:578.720001pt;}
.y133{bottom:579.359985pt;}
.yc8{bottom:579.519989pt;}
.yf1{bottom:579.679993pt;}
.y40{bottom:591.519989pt;}
.y75{bottom:591.682122pt;}
.y132{bottom:592.160004pt;}
.yf0{bottom:592.640015pt;}
.yb5{bottom:592.799988pt;}
.y91{bottom:592.959991pt;}
.y19{bottom:595.519989pt;}
.y131{bottom:605.279999pt;}
.yef{bottom:605.760010pt;}
.y3f{bottom:607.200012pt;}
.y74{bottom:607.524200pt;}
.y90{bottom:608.799988pt;}
.y18{bottom:611.040009pt;}
.yc7{bottom:611.359985pt;}
.y130{bottom:618.239990pt;}
.yee{bottom:618.720001pt;}
.y3e{bottom:623.200012pt;}
.y73{bottom:623.366236pt;}
.y8f{bottom:624.640015pt;}
.yc6{bottom:627.200012pt;}
.y12f{bottom:631.359985pt;}
.yed{bottom:631.839996pt;}
.y3d{bottom:639.200012pt;}
.y72{bottom:639.363723pt;}
.yb4{bottom:640.480011pt;}
.y8e{bottom:640.640015pt;}
.y17{bottom:642.079987pt;}
.yc5{bottom:642.720001pt;}
.y12e{bottom:644.320007pt;}
.yec{bottom:644.640015pt;}
.y3c{bottom:655.040009pt;}
.y71{bottom:655.205759pt;}
.yc4{bottom:655.679993pt;}
.yb3{bottom:656.480011pt;}
.y8d{bottom:656.640015pt;}
.y12d{bottom:657.279999pt;}
.y16{bottom:657.600006pt;}
.yeb{bottom:657.760010pt;}
.yc3{bottom:666.239990pt;}
.y12c{bottom:670.239990pt;}
.yea{bottom:670.720001pt;}
.y3b{bottom:670.880005pt;}
.y70{bottom:671.047837pt;}
.y8c{bottom:672.320007pt;}
.y15{bottom:673.119995pt;}
.ye9{bottom:681.279999pt;}
.y12b{bottom:683.359985pt;}
.y3a{bottom:686.880005pt;}
.y6f{bottom:687.045283pt;}
.y8b{bottom:688.320007pt;}
.y14{bottom:688.640015pt;}
.y12a{bottom:696.320007pt;}
.y39{bottom:702.720001pt;}
.y6e{bottom:702.887360pt;}
.y13{bottom:704.160004pt;}
.y8a{bottom:704.320007pt;}
.y129{bottom:709.440002pt;}
.y6d{bottom:718.884806pt;}
.y12{bottom:719.679993pt;}
.y128{bottom:722.239990pt;}
.y89{bottom:730.079987pt;}
.y6c{bottom:734.564754pt;}
.y11{bottom:735.040009pt;}
.y127{bottom:735.359985pt;}
.y126{bottom:748.320007pt;}
.y10{bottom:750.559998pt;}
.y6b{bottom:750.562199pt;}
.y125{bottom:761.440002pt;}
.yf{bottom:765.920013pt;}
.y6a{bottom:766.566407pt;}
.y124{bottom:774.399994pt;}
.ye{bottom:781.440002pt;}
.y69{bottom:782.246334pt;}
.y123{bottom:787.359985pt;}
.yd{bottom:796.799988pt;}
.y68{bottom:798.243779pt;}
.y122{bottom:800.320007pt;}
.yc{bottom:812.320007pt;}
.y121{bottom:813.440002pt;}
.y67{bottom:814.241245pt;}
.y120{bottom:826.399994pt;}
.yb{bottom:827.679993pt;}
.y66{bottom:830.083303pt;}
.y11f{bottom:839.520004pt;}
.ya{bottom:843.039993pt;}
.y65{bottom:845.925381pt;}
.y11e{bottom:852.320007pt;}
.y9{bottom:858.559998pt;}
.y64{bottom:861.922826pt;}
.y11d{bottom:865.440002pt;}
.y8{bottom:873.919998pt;}
.y63{bottom:877.764904pt;}
.y11c{bottom:878.399994pt;}
.y7{bottom:889.440002pt;}
.y11b{bottom:891.520004pt;}
.y7f{bottom:893.444831pt;}
.y62{bottom:893.600209pt;}
.y11a{bottom:904.479996pt;}
.y6{bottom:904.960007pt;}
.y119{bottom:917.440002pt;}
.y5{bottom:924.000000pt;}
.y118{bottom:930.400002pt;}
.y117{bottom:943.519997pt;}
.y4{bottom:953.760002pt;}
.y116{bottom:956.480003pt;}
.y85{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.hc{height:0.481359pt;}
.h14{height:2.401013pt;}
.h12{height:11.520620pt;}
.hd{height:13.121031pt;}
.hf{height:16.322851pt;}
.he{height:29.834879pt;}
.h13{height:30.171039pt;}
.h17{height:34.059243pt;}
.h10{height:36.959352pt;}
.h1{height:41.779132pt;}
.hb{height:41.858192pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h9{height:47.679992pt;}
.h18{height:48.409612pt;}
.h8{height:48.409616pt;}
.h7{height:49.049508pt;}
.h3{height:49.566735pt;}
.h15{height:54.941312pt;}
.h11{height:55.045279pt;}
.h16{height:74.648487pt;}
.h4{height:110.053376pt;}
.ha{height:194.818220pt;}
.h0{height:1056.000000pt;}
.w11{width:2.081637pt;}
.w19{width:2.398361pt;}
.we{width:2.403717pt;}
.wf{width:2.558076pt;}
.w9{width:2.559674pt;}
.w12{width:2.560727pt;}
.wc{width:2.560753pt;}
.w16{width:2.560779pt;}
.w1c{width:4.161084pt;}
.w4{width:5.116812pt;}
.w1a{width:5.275917pt;}
.w2{width:6.242262pt;}
.w7{width:6.558097pt;}
.wa{width:12.159567pt;}
.w8{width:19.838616pt;}
.w1b{width:27.838171pt;}
.w15{width:27.997833pt;}
.w5{width:30.242782pt;}
.w18{width:30.558612pt;}
.w10{width:33.438767pt;}
.w14{width:37.279910pt;}
.w6{width:40.323728pt;}
.w13{width:47.517567pt;}
.w17{width:48.957644pt;}
.wd{width:56.480189pt;}
.w1{width:57.440010pt;}
.w3{width:75.841797pt;}
.wb{width:237.756658pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.xd{left:102.080668pt;}
.x24{left:114.080002pt;}
.xe{left:121.761701pt;}
.xf{left:124.159529pt;}
.x10{left:136.319096pt;}
.x7{left:137.602556pt;}
.x11{left:138.721188pt;}
.x9{left:140.157865pt;}
.x3{left:148.960007pt;}
.xa{left:170.400647pt;}
.xb{left:210.724375pt;}
.x8{left:213.444353pt;}
.x2{left:221.279999pt;}
.x29{left:238.880005pt;}
.x27{left:259.040009pt;}
.x28{left:261.760010pt;}
.xc{left:275.996557pt;}
.x6{left:278.556944pt;}
.x26{left:284.160004pt;}
.x12{left:376.477846pt;}
.x13{left:378.878885pt;}
.x22{left:396.000000pt;}
.x4{left:419.679993pt;}
.x14{left:434.877254pt;}
.x15{left:437.118605pt;}
.x16{left:439.519619pt;}
.x25{left:442.239990pt;}
.x5{left:464.799988pt;}
.x17{left:472.958386pt;}
.x18{left:474.877657pt;}
.x19{left:477.281321pt;}
.x1a{left:524.641877pt;}
.x1b{left:561.602359pt;}
.x1c{left:589.600192pt;}
.x1d{left:591.522115pt;}
.x1e{left:640.320045pt;}
.x1f{left:670.559229pt;}
.x20{left:672.800528pt;}
.x21{left:677.280527pt;}
.x23{left:724.320007pt;}
}




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