
    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_083272b2f1ec9aeece129e2a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_640e146b48fcbba589503de8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_5debdbb3120b760c0b930b79.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1dab7dde6ee965457e18ee4c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_964bdf1b337c95ad49c6de1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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_8b9cbe0610a2dbe822e04991.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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;}
.m6{transform:matrix(-0.002980,-0.278865,0.249986,-0.002672,0,0);-ms-transform:matrix(-0.002980,-0.278865,0.249986,-0.002672,0,0);-webkit-transform:matrix(-0.002980,-0.278865,0.249986,-0.002672,0,0);}
.m3{transform:matrix(-0.001213,-0.278878,0.249998,-0.001088,0,0);-ms-transform:matrix(-0.001213,-0.278878,0.249998,-0.001088,0,0);-webkit-transform:matrix(-0.001213,-0.278878,0.249998,-0.001088,0,0);}
.m5{transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);-ms-transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);-webkit-transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);}
.m7{transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);-ms-transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);-webkit-transform:matrix(0.002226,-0.278872,0.249992,0.001996,0,0);}
.m2{transform:matrix(0.219990,-0.171403,0.153652,0.197208,0,0);-ms-transform:matrix(0.219990,-0.171403,0.153652,0.197208,0,0);-webkit-transform:matrix(0.219990,-0.171403,0.153652,0.197208,0,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);}
.m9{transform:matrix(0.278860,0.003356,-0.003009,0.249982,0,0);-ms-transform:matrix(0.278860,0.003356,-0.003009,0.249982,0,0);-webkit-transform:matrix(0.278860,0.003356,-0.003009,0.249982,0,0);}
.m1{transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);-ms-transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);-webkit-transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);}
.m4{transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);-ms-transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);-webkit-transform:matrix(0.278865,0.002949,-0.002644,0.249986,0,0);}
.m8{transform:matrix(0.278881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278881,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-77.332997px;}
.v4{vertical-align:-26.976580px;}
.v6{vertical-align:-14.434461px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.340378px;}
.v5{vertical-align:42.659095px;}
.v3{vertical-align:60.000164px;}
.ls1b{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.250829px;}
.ls18{letter-spacing:0.435217px;}
.ls4{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.lsd{letter-spacing:4.299491px;}
.lsc{letter-spacing:4.304037px;}
.ls19{letter-spacing:5.215004px;}
.ls9{letter-spacing:5.226369px;}
.ls8{letter-spacing:5.257813px;}
.ls7{letter-spacing:5.263372px;}
.lsb{letter-spacing:5.819276px;}
.ls15{letter-spacing:5.873980px;}
.ls5{letter-spacing:6.276798px;}
.ls6{letter-spacing:6.276807px;}
.ls17{letter-spacing:6.357973px;}
.lsa{letter-spacing:6.476153px;}
.ls1a{letter-spacing:6.573959px;}
.ls16{letter-spacing:6.599999px;}
.ls1{letter-spacing:7.710383px;}
.ls12{letter-spacing:8.105228px;}
.ls2{letter-spacing:8.999995px;}
.ls10{letter-spacing:9.067526px;}
.ls13{letter-spacing:9.088352px;}
.lse{letter-spacing:9.088566px;}
.ls0{letter-spacing:9.088600px;}
.ls14{letter-spacing:9.119993px;}
.lsf{letter-spacing:9.150026px;}
.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;}
}
.ws12{word-spacing:-168.848509px;}
.ws18{word-spacing:-93.494928px;}
.ws0{word-spacing:-88.968872px;}
.wsc{word-spacing:-54.726522px;}
.ws13{word-spacing:-43.354226px;}
.ws3{word-spacing:-41.584939px;}
.wsd{word-spacing:-41.044938px;}
.ws1b{word-spacing:-36.699603px;}
.wsf{word-spacing:-34.666105px;}
.ws19{word-spacing:-34.372452px;}
.ws15{word-spacing:-34.204069px;}
.wsa{word-spacing:-32.383874px;}
.ws1{word-spacing:-31.924271px;}
.ws14{word-spacing:-31.300255px;}
.ws6{word-spacing:-31.134090px;}
.ws2{word-spacing:-30.131491px;}
.ws1a{word-spacing:-30.099604px;}
.ws16{word-spacing:-29.644858px;}
.wse{word-spacing:-28.846828px;}
.ws5{word-spacing:-25.907720px;}
.ws4{word-spacing:-23.152219px;}
.ws7{word-spacing:-21.127055px;}
.ws11{word-spacing:-20.661338px;}
.ws1c{word-spacing:-19.848258px;}
.ws10{word-spacing:-18.932351px;}
.ws1d{word-spacing:-17.430726px;}
.ws1f{word-spacing:0.000000px;}
.ws9{word-spacing:105.712728px;}
.ws8{word-spacing:107.936362px;}
.ws17{word-spacing:136.807622px;}
.ws1e{word-spacing:538.520475px;}
.wsb{word-spacing:935.127386px;}
._19{margin-left:-553.592187px;}
._1a{margin-left:-387.282902px;}
._4{margin-left:-18.177200px;}
._5{margin-left:-13.632900px;}
._a{margin-left:-12.553136px;}
._17{margin-left:-10.867676px;}
._1{margin-left:-9.088600px;}
._3{margin-left:-7.710383px;}
._1e{margin-left:-6.689658px;}
._0{margin-left:-5.453160px;}
._1d{margin-left:-4.304037px;}
._2{margin-left:-2.272150px;}
._9{margin-left:-1.080180px;}
._6{width:1.257210px;}
._18{width:5.226369px;}
._1b{width:6.476153px;}
._13{width:7.551051px;}
._14{width:8.819575px;}
._11{width:9.888608px;}
._10{width:10.922781px;}
._15{width:12.976831px;}
._d{width:14.058012px;}
._c{width:15.458954px;}
._f{width:18.598352px;}
._e{width:19.817681px;}
._7{width:27.800971px;}
._b{width:33.059761px;}
._12{width:53.848441px;}
._8{width:59.282140px;}
._1c{width:497.960950px;}
._16{width:1114.797020px;}
.fc5{color:transparent;}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(27,27,27);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(25,25,25);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:64.171513px;}
.fs16{font-size:64.171516px;}
.fs14{font-size:71.733946px;}
.fs24{font-size:76.441386px;}
.fse{font-size:78.474825px;}
.fsf{font-size:78.474826px;}
.fs1b{font-size:83.609682px;}
.fs22{font-size:87.043326px;}
.fsd{font-size:87.722860px;}
.fs1d{font-size:90.000030px;}
.fs4{font-size:90.806814px;}
.fs11{font-size:92.651412px;}
.fs19{font-size:97.500276px;}
.fs23{font-size:102.254989px;}
.fs9{font-size:104.613295px;}
.fs12{font-size:104.613297px;}
.fsa{font-size:104.613300px;}
.fsc{font-size:104.613457px;}
.fs21{font-size:105.966220px;}
.fs1c{font-size:106.647738px;}
.fsb{font-size:110.490798px;}
.fs10{font-size:113.616726px;}
.fs1f{font-size:124.978308px;}
.fs20{font-size:124.978311px;}
.fs13{font-size:126.506005px;}
.fs7{font-size:131.999976px;}
.fs1a{font-size:149.999856px;}
.fs18{font-size:150.000432px;}
.fs6{font-size:180.000072px;}
.fs1{font-size:192.759582px;}
.fs5{font-size:227.214984px;}
.fs0{font-size:227.214996px;}
.fs1e{font-size:239.999814px;}
.fs8{font-size:239.999820px;}
.fs3{font-size:359.999784px;}
.fs17{font-size:454.428282px;}
.fs2{font-size:757.383330px;}
.y0{bottom:0.000000px;}
.y9f{bottom:0.376165px;}
.ya1{bottom:0.976111px;}
.y9d{bottom:4.876165px;}
.y14{bottom:71.648666px;}
.y13{bottom:106.382250px;}
.y40{bottom:111.892134px;}
.y41{bottom:113.344500px;}
.y6e{bottom:120.813018px;}
.y7d{bottom:120.813059px;}
.y7e{bottom:137.724000px;}
.y12{bottom:148.493297px;}
.y3f{bottom:180.742026px;}
.y11{bottom:183.226881px;}
.y6d{bottom:189.662910px;}
.y7c{bottom:189.663087px;}
.y10{bottom:225.337928px;}
.y3e{bottom:249.591919px;}
.y6c{bottom:258.512803px;}
.yf{bottom:260.071512px;}
.y16{bottom:302.293388px;}
.y3d{bottom:318.441947px;}
.y6b{bottom:327.362830px;}
.y15{bottom:337.026972px;}
.ye{bottom:379.138042px;}
.yd{bottom:413.871625px;}
.y57{bottom:417.988774px;}
.y24{bottom:417.988968px;}
.y58{bottom:417.988981px;}
.y2a{bottom:440.758609px;}
.y28{bottom:441.699365px;}
.y26{bottom:443.787454px;}
.y69{bottom:444.728151px;}
.y2c{bottom:444.728183px;}
.y60{bottom:444.728190px;}
.y63{bottom:445.668659px;}
.y5a{bottom:445.669215px;}
.y39{bottom:447.403486px;}
.y37{bottom:448.344135px;}
.y31{bottom:450.432391px;}
.y67{bottom:451.372756px;}
.y2f{bottom:451.372914px;}
.y5e{bottom:451.372992px;}
.y65{bottom:452.313976px;}
.y5c{bottom:452.314177px;}
.yc{bottom:456.093525px;}
.y29{bottom:461.090973px;}
.y27{bottom:461.091053px;}
.y25{bottom:464.119818px;}
.y2b{bottom:464.119870px;}
.y62{bottom:465.060346px;}
.y68{bottom:465.060515px;}
.y5f{bottom:465.060554px;}
.y59{bottom:465.060903px;}
.y36{bottom:474.004137px;}
.y38{bottom:474.004166px;}
.y2e{bottom:477.032916px;}
.y30{bottom:477.033070px;}
.y66{bottom:477.973435px;}
.y5d{bottom:477.973672px;}
.y64{bottom:477.973978px;}
.y5b{bottom:477.974178px;}
.yb{bottom:490.827108px;}
.y6a{bottom:512.971453px;}
.y18{bottom:522.259569px;}
.y61{bottom:534.401736px;}
.y3b{bottom:534.529780px;}
.y35{bottom:536.164425px;}
.y33{bottom:537.558633px;}
.y2d{bottom:539.193454px;}
.y17{bottom:556.993153px;}
.y7b{bottom:580.718490px;}
.ya{bottom:610.137500px;}
.y9{bottom:644.871084px;}
.yd4{bottom:689.337628px;}
.yd3{bottom:714.899971px;}
.yd2{bottom:766.024708px;}
.y7a{bottom:766.826471px;}
.y89{bottom:768.563815px;}
.y8a{bottom:778.310038px;}
.y3c{bottom:778.657965px;}
.y34{bottom:780.468384px;}
.y88{bottom:786.642023px;}
.y3a{bottom:788.781094px;}
.y32{bottom:791.809947px;}
.yd0{bottom:811.006592px;}
.yd7{bottom:827.772793px;}
.y98{bottom:828.695069px;}
.y96{bottom:832.659322px;}
.ycf{bottom:832.767380px;}
.y79{bottom:835.676363px;}
.y56{bottom:835.948675px;}
.y1a{bottom:835.948777px;}
.y87{bottom:836.654301px;}
.yce{bottom:854.528167px;}
.y86{bottom:854.586766px;}
.y55{bottom:859.482336px;}
.yd6{bottom:860.772787px;}
.ycd{bottom:876.288999px;}
.y95{bottom:890.034305px;}
.yd5{bottom:893.772781px;}
.y78{bottom:904.526256px;}
.y54{bottom:928.332229px;}
.y4b{bottom:930.086608px;}
.y4a{bottom:930.109702px;}
.y48{bottom:934.282779px;}
.y94{bottom:947.409287px;}
.y49{bottom:971.483352px;}
.y77{bottom:973.376148px;}
.y20{bottom:973.376168px;}
.y42{bottom:974.240541px;}
.y53{bottom:997.182121px;}
.y93{bottom:1004.784270px;}
.y97{bottom:1020.422145px;}
.y82{bottom:1026.457665px;}
.y83{bottom:1026.457737px;}
.y99{bottom:1031.295480px;}
.ydd{bottom:1031.610910px;}
.ydb{bottom:1031.634262px;}
.y6f{bottom:1037.370274px;}
.y76{bottom:1042.226041px;}
.y1f{bottom:1042.226069px;}
.ydc{bottom:1050.721256px;}
.yda{bottom:1050.744609px;}
.y92{bottom:1062.159252px;}
.y52{bottom:1066.032014px;}
.y47{bottom:1073.508172px;}
.y9a{bottom:1074.955335px;}
.y44{bottom:1086.616480px;}
.y84{bottom:1097.168038px;}
.y85{bottom:1097.168080px;}
.y80{bottom:1097.656613px;}
.y46{bottom:1101.329816px;}
.y1e{bottom:1111.075933px;}
.y7f{bottom:1128.983151px;}
.y45{bottom:1129.464597px;}
.y51{bottom:1134.881906px;}
.yd9{bottom:1151.609754px;}
.y1d{bottom:1179.925826px;}
.yd8{bottom:1184.609748px;}
.y72{bottom:1194.132241px;}
.y91{bottom:1201.054167px;}
.y50{bottom:1203.731934px;}
.y81{bottom:1207.140538px;}
.y43{bottom:1213.603221px;}
.y71{bottom:1245.437568px;}
.y1c{bottom:1248.775718px;}
.y90{bottom:1262.179306px;}
.y70{bottom:1273.819146px;}
.y4c{bottom:1280.192688px;}
.ycc{bottom:1295.097000px;}
.yd1{bottom:1302.467686px;}
.y1b{bottom:1317.625746px;}
.y8f{bottom:1323.304451px;}
.y8e{bottom:1384.429589px;}
.y19{bottom:1393.537188px;}
.y4f{bottom:1418.411052px;}
.y8d{bottom:1445.554730px;}
.y4e{bottom:1498.211052px;}
.y8c{bottom:1506.679869px;}
.y75{bottom:1528.111572px;}
.y23{bottom:1533.189326px;}
.y4d{bottom:1578.011052px;}
.y22{bottom:1611.189327px;}
.y74{bottom:1613.911507px;}
.y9b{bottom:1615.058510px;}
.y21{bottom:1689.189329px;}
.y73{bottom:1699.711443px;}
.yc5{bottom:1957.912883px;}
.yb8{bottom:1962.046702px;}
.yc4{bottom:1984.403010px;}
.yc3{bottom:2010.893136px;}
.ya0{bottom:2011.500000px;}
.y9c{bottom:2032.500000px;}
.y9e{bottom:2037.000000px;}
.yc2{bottom:2037.383263px;}
.ye2{bottom:2040.738612px;}
.ybc{bottom:2053.301086px;}
.ybe{bottom:2053.318849px;}
.yba{bottom:2056.212177px;}
.yc0{bottom:2056.229858px;}
.ybb{bottom:2084.437691px;}
.ybd{bottom:2084.448567px;}
.yb9{bottom:2087.492689px;}
.ybf{bottom:2087.503484px;}
.yc1{bottom:2090.363436px;}
.yab{bottom:2152.568260px;}
.yaa{bottom:2209.943388px;}
.ya9{bottom:2267.318515px;}
.ya8{bottom:2324.693632px;}
.ydf{bottom:2326.156480px;}
.yde{bottom:2345.266827px;}
.ya7{bottom:2382.068760px;}
.ya6{bottom:2439.443866px;}
.yb3{bottom:2442.509972px;}
.yb7{bottom:2442.509990px;}
.yaf{bottom:2442.509992px;}
.yb1{bottom:2442.510006px;}
.yc9{bottom:2442.771168px;}
.ycb{bottom:2443.123104px;}
.yc7{bottom:2443.597365px;}
.ye1{bottom:2446.722830px;}
.yb0{bottom:2475.493916px;}
.yc8{bottom:2475.771162px;}
.yca{bottom:2476.123098px;}
.yc6{bottom:2476.597359px;}
.yb6{bottom:2476.750493px;}
.ye0{bottom:2479.722824px;}
.yb2{bottom:2482.547742px;}
.yae{bottom:2482.547761px;}
.ya5{bottom:2496.818993px;}
.ya4{bottom:2554.194121px;}
.yb4{bottom:2560.492573px;}
.yb5{bottom:2596.779894px;}
.yad{bottom:2597.564686px;}
.ya3{bottom:2611.569249px;}
.ya2{bottom:2668.944376px;}
.yac{bottom:2848.179090px;}
.y8b{bottom:2851.228705px;}
.y5{bottom:3130.259933px;}
.y2{bottom:3146.352995px;}
.y8{bottom:3151.084029px;}
.y4{bottom:3183.268818px;}
.y1{bottom:3221.651931px;}
.y3{bottom:3236.277703px;}
.y7{bottom:3353.313103px;}
.y6{bottom:3561.593518px;}
.h2d{height:1.500000px;}
.h2b{height:13.500000px;}
.h2c{height:16.500000px;}
.h29{height:18.000000px;}
.h1d{height:46.718616px;}
.h1e{height:46.718619px;}
.h1c{height:52.224274px;}
.h1f{height:53.800459px;}
.h39{height:55.688744px;}
.h14{height:57.131818px;}
.h36{height:63.369921px;}
.h13{height:63.864641px;}
.h26{height:63.932013px;}
.h2a{height:65.566428px;}
.h16{height:67.452761px;}
.h5{height:69.435288px;}
.h37{height:74.444428px;}
.h38{height:74.494357px;}
.h17{height:76.161339px;}
.h18{height:76.161341px;}
.hb{height:76.161343px;}
.hf{height:76.161457px;}
.h33{height:77.146306px;}
.h34{height:77.198047px;}
.h27{height:77.642469px;}
.hd{height:80.440322px;}
.h15{height:82.716083px;}
.h31{height:91.048650px;}
.h32{height:91.048652px;}
.h1b{height:92.099831px;}
.h8{height:96.164045px;}
.ha{height:98.501717px;}
.h25{height:109.203997px;}
.h24{height:109.277239px;}
.h21{height:109.277658px;}
.h28{height:120.353639px;}
.h23{height:131.030623px;}
.h22{height:131.030639px;}
.h2f{height:131.030692px;}
.h2e{height:131.030736px;}
.h7{height:131.132865px;}
.h2{height:147.393313px;}
.h6{height:173.739582px;}
.h1{height:173.739592px;}
.h9{height:174.726431px;}
.h30{height:183.515483px;}
.h4{height:275.273272px;}
.h20{height:347.477876px;}
.h3{height:579.131980px;}
.h35{height:2592.903000px;}
.h12{height:2793.726000px;}
.h1a{height:2812.318500px;}
.h10{height:3082.746000px;}
.h11{height:3084.580500px;}
.hc{height:3085.770000px;}
.he{height:3087.609000px;}
.h19{height:3087.903000px;}
.h0{height:3888.000000px;}
.wd{width:1.500000px;}
.wc{width:3.000000px;}
.w10{width:4.500000px;}
.wa{width:6.000000px;}
.wf{width:7.500000px;}
.w9{width:9.000000px;}
.wb{width:10.500000px;}
.we{width:15.000000px;}
.w8{width:2419.342088px;}
.w6{width:2950.681088px;}
.w13{width:3208.669088px;}
.w7{width:3479.975588px;}
.w5{width:3724.963500px;}
.w4{width:4118.320088px;}
.w2{width:4394.332500px;}
.w3{width:4394.338500px;}
.w11{width:4412.595000px;}
.w12{width:4522.429088px;}
.w0{width:5183.999588px;}
.w1{width:5184.000000px;}
.x69{left:-1.036164px;}
.x0{left:0.000000px;}
.x73{left:1.187787px;}
.xa{left:54.316128px;}
.xc{left:57.949445px;}
.x9{left:82.206783px;}
.xb{left:85.840100px;}
.xa3{left:124.532011px;}
.x61{left:136.289995px;}
.x1{left:164.462534px;}
.x62{left:168.202548px;}
.x2{left:192.251723px;}
.x18{left:227.173500px;}
.x28{left:358.213500px;}
.x60{left:407.495487px;}
.x22{left:537.586500px;}
.x27{left:652.769082px;}
.xb7{left:661.570500px;}
.x4a{left:707.321204px;}
.x43{left:734.611079px;}
.x86{left:738.000000px;}
.x87{left:750.000000px;}
.x44{left:752.275223px;}
.x24{left:755.268000px;}
.x88{left:759.000000px;}
.x89{left:771.000000px;}
.x97{left:778.500000px;}
.x8a{left:784.500000px;}
.x98{left:786.000000px;}
.x8b{left:790.500000px;}
.x99{left:798.000000px;}
.x8c{left:801.000000px;}
.x8d{left:808.500000px;}
.x9a{left:810.000000px;}
.x8e{left:816.000000px;}
.x9b{left:823.500000px;}
.x8f{left:828.000000px;}
.x9c{left:835.500000px;}
.x45{left:839.735595px;}
.x9d{left:841.500000px;}
.x90{left:847.500000px;}
.x46{left:849.354555px;}
.x9e{left:850.500000px;}
.x9f{left:862.500000px;}
.x91{left:865.500000px;}
.xa0{left:874.500000px;}
.x92{left:877.500000px;}
.xa1{left:886.500000px;}
.x93{left:895.500000px;}
.xa2{left:898.500000px;}
.x94{left:909.000000px;}
.x95{left:916.500000px;}
.x96{left:927.000000px;}
.x47{left:943.008644px;}
.x48{left:951.420273px;}
.x49{left:1049.959199px;}
.xc5{left:1052.918034px;}
.x67{left:1063.178791px;}
.x25{left:1065.679500px;}
.x66{left:1123.158943px;}
.x68{left:1147.500000px;}
.x6a{left:1159.500000px;}
.x6b{left:1167.000000px;}
.x7a{left:1179.000000px;}
.x6c{left:1180.500000px;}
.x7b{left:1186.500000px;}
.x4c{left:1189.370964px;}
.x6d{left:1192.500000px;}
.x7c{left:1194.000000px;}
.x6e{left:1198.500000px;}
.x7d{left:1206.000000px;}
.x6f{left:1210.500000px;}
.x64{left:1218.456076px;}
.x70{left:1224.000000px;}
.x4f{left:1228.255765px;}
.x4e{left:1230.543129px;}
.x71{left:1236.000000px;}
.x7e{left:1243.500000px;}
.x6{left:1245.922103px;}
.x72{left:1248.000000px;}
.x7f{left:1249.500000px;}
.x65{left:1252.859809px;}
.x74{left:1257.000000px;}
.x80{left:1258.500000px;}
.x4d{left:1265.582094px;}
.x81{left:1270.500000px;}
.x75{left:1273.500000px;}
.x82{left:1276.500000px;}
.x83{left:1285.500000px;}
.x76{left:1287.000000px;}
.x84{left:1296.000000px;}
.x63{left:1304.262875px;}
.x85{left:1308.000000px;}
.x77{left:1317.000000px;}
.x5a{left:1318.057782px;}
.x78{left:1324.500000px;}
.x26{left:1328.657810px;}
.x59{left:1335.388243px;}
.x79{left:1336.500000px;}
.x23{left:1376.364009px;}
.x2e{left:1378.057870px;}
.xc3{left:1405.651738px;}
.xc1{left:1407.795180px;}
.xc4{left:1415.288479px;}
.xc2{left:1425.740467px;}
.x29{left:1445.213134px;}
.x5f{left:1449.280917px;}
.x7{left:1469.066923px;}
.x1b{left:1537.622529px;}
.x21{left:1552.585455px;}
.x20{left:1555.150676px;}
.x50{left:1565.345293px;}
.x19{left:1574.869917px;}
.x2b{left:1583.432902px;}
.x1a{left:1592.534062px;}
.x5b{left:1594.869648px;}
.x2f{left:1613.850519px;}
.x5d{left:1648.159958px;}
.x2a{left:1650.527642px;}
.x32{left:1655.434650px;}
.x5c{left:1658.550957px;}
.x5e{left:1661.750055px;}
.x1c{left:1679.994470px;}
.x1d{left:1689.613429px;}
.x31{left:1698.860575px;}
.x4b{left:1704.024000px;}
.x30{left:1741.690775px;}
.xb0{left:1743.689202px;}
.x10{left:1747.097820px;}
.xa5{left:1755.515581px;}
.x8{left:1758.696069px;}
.x1e{left:1783.267604px;}
.x1f{left:1791.679233px;}
.x58{left:1826.752795px;}
.x2d{left:1847.322049px;}
.x57{left:1855.281330px;}
.x11{left:1864.284669px;}
.x2c{left:1872.943907px;}
.xaa{left:1880.367658px;}
.xab{left:1892.801399px;}
.xe{left:1903.468281px;}
.xd{left:1918.806258px;}
.xc0{left:1975.330500px;}
.xb2{left:2015.115961px;}
.xb1{left:2024.275051px;}
.xa8{left:2110.125671px;}
.x12{left:2117.391277px;}
.x13{left:2133.848094px;}
.xa9{left:2180.641938px;}
.x42{left:2233.318500px;}
.xc9{left:2234.624024px;}
.xc7{left:2239.127698px;}
.xc8{left:2245.973085px;}
.xb4{left:2293.559125px;}
.xb3{left:2303.290442px;}
.x14{left:2330.139682px;}
.x15{left:2347.803827px;}
.xac{left:2354.110394px;}
.xad{left:2356.447354px;}
.xf{left:2407.081061px;}
.xa6{left:2428.715704px;}
.xa7{left:2441.149403px;}
.xce{left:2460.585707px;}
.xcf{left:2466.191650px;}
.xcc{left:2484.891887px;}
.xd0{left:2524.988205px;}
.xd1{left:2537.081882px;}
.xc6{left:2552.329766px;}
.xcd{left:2559.337101px;}
.x34{left:2563.467857px;}
.xb5{left:2565.713172px;}
.xb6{left:2567.938676px;}
.xd2{left:2603.551279px;}
.xd3{left:2611.730507px;}
.x16{left:2645.487442px;}
.x17{left:2661.944258px;}
.xd4{left:2680.910573px;}
.xd5{left:2682.602060px;}
.xae{left:2715.323208px;}
.xaf{left:2724.665469px;}
.x33{left:2725.808588px;}
.x56{left:2764.657500px;}
.xcb{left:2835.644962px;}
.xca{left:2846.174996px;}
.xb9{left:2914.956081px;}
.xb8{left:2916.076775px;}
.x38{left:3055.459416px;}
.x36{left:3068.684085px;}
.xa4{left:3088.552275px;}
.xbc{left:3124.706616px;}
.xbd{left:3193.187181px;}
.x35{left:3245.891886px;}
.xbe{left:3404.579206px;}
.xbf{left:3465.706811px;}
.x41{left:3469.710515px;}
.x39{left:3497.229421px;}
.x3a{left:3514.893566px;}
.x37{left:3584.758944px;}
.x3b{left:3602.354289px;}
.x3c{left:3611.973249px;}
.x3d{left:3705.627384px;}
.x3e{left:3714.039013px;}
.xbb{left:3732.923610px;}
.xba{left:3743.453645px;}
.x3f{left:3812.577686px;}
.x40{left:3829.034503px;}
.x4{left:3904.903692px;}
.x55{left:4048.719142px;}
.xe1{left:4053.555077px;}
.x52{left:4067.151156px;}
.xe0{left:4085.329131px;}
.x54{left:4233.848661px;}
.x51{left:4249.186793px;}
.xde{left:4254.725233px;}
.xdf{left:4268.453528px;}
.x3{left:4388.933556px;}
.xd6{left:4443.949266px;}
.xd7{left:4449.555210px;}
.xd8{left:4501.607016px;}
.xd9{left:4513.700693px;}
.xda{left:4572.240271px;}
.xdb{left:4580.419499px;}
.x5{left:4621.281378px;}
.xdc{left:4642.864200px;}
.xdd{left:4644.555687px;}
.x53{left:4770.133707px;}
@media print{
.v2{vertical-align:-68.740442pt;}
.v4{vertical-align:-23.979182pt;}
.v6{vertical-align:-12.830632pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.858114pt;}
.v5{vertical-align:37.919196pt;}
.v3{vertical-align:53.333479pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.222959pt;}
.ls18{letter-spacing:0.386859pt;}
.ls4{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.lsd{letter-spacing:3.821770pt;}
.lsc{letter-spacing:3.825810pt;}
.ls19{letter-spacing:4.635559pt;}
.ls9{letter-spacing:4.645662pt;}
.ls8{letter-spacing:4.673612pt;}
.ls7{letter-spacing:4.678553pt;}
.lsb{letter-spacing:5.172690pt;}
.ls15{letter-spacing:5.221316pt;}
.ls5{letter-spacing:5.579376pt;}
.ls6{letter-spacing:5.579384pt;}
.ls17{letter-spacing:5.651532pt;}
.lsa{letter-spacing:5.756581pt;}
.ls1a{letter-spacing:5.843519pt;}
.ls16{letter-spacing:5.866666pt;}
.ls1{letter-spacing:6.853674pt;}
.ls12{letter-spacing:7.204647pt;}
.ls2{letter-spacing:7.999995pt;}
.ls10{letter-spacing:8.060023pt;}
.ls13{letter-spacing:8.078535pt;}
.lse{letter-spacing:8.078725pt;}
.ls0{letter-spacing:8.078755pt;}
.ls14{letter-spacing:8.106660pt;}
.lsf{letter-spacing:8.133357pt;}
.ws12{word-spacing:-150.087563pt;}
.ws18{word-spacing:-83.106602pt;}
.ws0{word-spacing:-79.083442pt;}
.wsc{word-spacing:-48.645797pt;}
.ws13{word-spacing:-38.537090pt;}
.ws3{word-spacing:-36.964390pt;}
.wsd{word-spacing:-36.484390pt;}
.ws1b{word-spacing:-32.621869pt;}
.wsf{word-spacing:-30.814315pt;}
.ws19{word-spacing:-30.553291pt;}
.ws15{word-spacing:-30.403617pt;}
.wsa{word-spacing:-28.785666pt;}
.ws1{word-spacing:-28.377129pt;}
.ws14{word-spacing:-27.822449pt;}
.ws6{word-spacing:-27.674746pt;}
.ws2{word-spacing:-26.783547pt;}
.ws1a{word-spacing:-26.755203pt;}
.ws16{word-spacing:-26.350985pt;}
.wse{word-spacing:-25.641625pt;}
.ws5{word-spacing:-23.029085pt;}
.ws4{word-spacing:-20.579750pt;}
.ws7{word-spacing:-18.779605pt;}
.ws11{word-spacing:-18.365634pt;}
.ws1c{word-spacing:-17.642896pt;}
.ws10{word-spacing:-16.828756pt;}
.ws1d{word-spacing:-15.493979pt;}
.ws1f{word-spacing:0.000000pt;}
.ws9{word-spacing:93.966869pt;}
.ws8{word-spacing:95.943432pt;}
.ws17{word-spacing:121.606775pt;}
.ws1e{word-spacing:478.684867pt;}
.wsb{word-spacing:831.224343pt;}
._19{margin-left:-492.081944pt;}
._1a{margin-left:-344.251469pt;}
._4{margin-left:-16.157511pt;}
._5{margin-left:-12.118133pt;}
._a{margin-left:-11.158343pt;}
._17{margin-left:-9.660157pt;}
._1{margin-left:-8.078755pt;}
._3{margin-left:-6.853674pt;}
._1e{margin-left:-5.946363pt;}
._0{margin-left:-4.847253pt;}
._1d{margin-left:-3.825810pt;}
._2{margin-left:-2.019689pt;}
._9{margin-left:-0.960160pt;}
._6{width:1.117520pt;}
._18{width:4.645662pt;}
._1b{width:5.756581pt;}
._13{width:6.712045pt;}
._14{width:7.839622pt;}
._11{width:8.789874pt;}
._10{width:9.709139pt;}
._15{width:11.534961pt;}
._d{width:12.496010pt;}
._c{width:13.741292pt;}
._f{width:16.531869pt;}
._e{width:17.615716pt;}
._7{width:24.711974pt;}
._b{width:29.386454pt;}
._12{width:47.865281pt;}
._8{width:52.695236pt;}
._1c{width:442.631955pt;}
._16{width:990.930685pt;}
.fs15{font-size:57.041345pt;}
.fs16{font-size:57.041348pt;}
.fs14{font-size:63.763507pt;}
.fs24{font-size:67.947899pt;}
.fse{font-size:69.755400pt;}
.fsf{font-size:69.755401pt;}
.fs1b{font-size:74.319717pt;}
.fs22{font-size:77.371845pt;}
.fsd{font-size:77.975876pt;}
.fs1d{font-size:80.000027pt;}
.fs4{font-size:80.717168pt;}
.fs11{font-size:82.356811pt;}
.fs19{font-size:86.666912pt;}
.fs23{font-size:90.893323pt;}
.fs9{font-size:92.989595pt;}
.fs12{font-size:92.989598pt;}
.fsa{font-size:92.989600pt;}
.fsc{font-size:92.989739pt;}
.fs21{font-size:94.192196pt;}
.fs1c{font-size:94.797989pt;}
.fsb{font-size:98.214043pt;}
.fs10{font-size:100.992646pt;}
.fs1f{font-size:111.091829pt;}
.fs20{font-size:111.091832pt;}
.fs13{font-size:112.449782pt;}
.fs7{font-size:117.333312pt;}
.fs1a{font-size:133.333205pt;}
.fs18{font-size:133.333717pt;}
.fs6{font-size:160.000064pt;}
.fs1{font-size:171.341851pt;}
.fs5{font-size:201.968875pt;}
.fs0{font-size:201.968885pt;}
.fs1e{font-size:213.333168pt;}
.fs8{font-size:213.333173pt;}
.fs3{font-size:319.999808pt;}
.fs17{font-size:403.936251pt;}
.fs2{font-size:673.229627pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:0.334369pt;}
.ya1{bottom:0.867655pt;}
.y9d{bottom:4.334369pt;}
.y14{bottom:63.687704pt;}
.y13{bottom:94.562000pt;}
.y40{bottom:99.459675pt;}
.y41{bottom:100.750667pt;}
.y6e{bottom:107.389349pt;}
.y7d{bottom:107.389386pt;}
.y7e{bottom:122.421333pt;}
.y12{bottom:131.994042pt;}
.y3f{bottom:160.659579pt;}
.y11{bottom:162.868339pt;}
.y6d{bottom:168.589254pt;}
.y7c{bottom:168.589411pt;}
.y10{bottom:200.300380pt;}
.y3e{bottom:221.859484pt;}
.y6c{bottom:229.789158pt;}
.yf{bottom:231.174677pt;}
.y16{bottom:268.705234pt;}
.y3d{bottom:283.059508pt;}
.y6b{bottom:290.989183pt;}
.y15{bottom:299.579531pt;}
.ye{bottom:337.011593pt;}
.yd{bottom:367.885889pt;}
.y57{bottom:371.545577pt;}
.y24{bottom:371.545749pt;}
.y58{bottom:371.545761pt;}
.y2a{bottom:391.785430pt;}
.y28{bottom:392.621658pt;}
.y26{bottom:394.477737pt;}
.y69{bottom:395.313912pt;}
.y2c{bottom:395.313940pt;}
.y60{bottom:395.313947pt;}
.y63{bottom:396.149919pt;}
.y5a{bottom:396.150414pt;}
.y39{bottom:397.691988pt;}
.y37{bottom:398.528120pt;}
.y31{bottom:400.384347pt;}
.y67{bottom:401.220227pt;}
.y2f{bottom:401.220368pt;}
.y5e{bottom:401.220437pt;}
.y65{bottom:402.056868pt;}
.y5c{bottom:402.057046pt;}
.yc{bottom:405.416467pt;}
.y29{bottom:409.858643pt;}
.y27{bottom:409.858714pt;}
.y25{bottom:412.550949pt;}
.y2b{bottom:412.550996pt;}
.y62{bottom:413.386975pt;}
.y68{bottom:413.387125pt;}
.y5f{bottom:413.387159pt;}
.y59{bottom:413.387469pt;}
.y36{bottom:421.337011pt;}
.y38{bottom:421.337036pt;}
.y2e{bottom:424.029259pt;}
.y30{bottom:424.029396pt;}
.y66{bottom:424.865276pt;}
.y5d{bottom:424.865486pt;}
.y64{bottom:424.865758pt;}
.y5b{bottom:424.865936pt;}
.yb{bottom:436.290763pt;}
.y6a{bottom:455.974625pt;}
.y18{bottom:464.230728pt;}
.y61{bottom:475.023765pt;}
.y3b{bottom:475.137582pt;}
.y35{bottom:476.590600pt;}
.y33{bottom:477.829896pt;}
.y2d{bottom:479.283071pt;}
.y17{bottom:495.105025pt;}
.y7b{bottom:516.194213pt;}
.ya{bottom:542.344445pt;}
.y9{bottom:573.218741pt;}
.yd4{bottom:612.744558pt;}
.yd3{bottom:635.466641pt;}
.yd2{bottom:680.910852pt;}
.y7a{bottom:681.623529pt;}
.y89{bottom:683.167836pt;}
.y8a{bottom:691.831145pt;}
.y3c{bottom:692.140413pt;}
.y34{bottom:693.749675pt;}
.y88{bottom:699.237354pt;}
.y3a{bottom:701.138751pt;}
.y32{bottom:703.831064pt;}
.yd0{bottom:720.894748pt;}
.yd7{bottom:735.798039pt;}
.y98{bottom:736.617839pt;}
.y96{bottom:740.141620pt;}
.ycf{bottom:740.237671pt;}
.y79{bottom:742.823434pt;}
.y56{bottom:743.065489pt;}
.y1a{bottom:743.065580pt;}
.y87{bottom:743.692712pt;}
.yce{bottom:759.580593pt;}
.y86{bottom:759.632681pt;}
.y55{bottom:763.984299pt;}
.yd6{bottom:765.131367pt;}
.ycd{bottom:778.923555pt;}
.y95{bottom:791.141604pt;}
.yd5{bottom:794.464695pt;}
.y78{bottom:804.023338pt;}
.y54{bottom:825.184203pt;}
.y4b{bottom:826.743652pt;}
.y4a{bottom:826.764179pt;}
.y48{bottom:830.473581pt;}
.y94{bottom:842.141589pt;}
.y49{bottom:863.540757pt;}
.y77{bottom:865.223243pt;}
.y20{bottom:865.223260pt;}
.y42{bottom:865.991592pt;}
.y53{bottom:886.384108pt;}
.y93{bottom:893.141573pt;}
.y97{bottom:907.041907pt;}
.y82{bottom:912.406813pt;}
.y83{bottom:912.406877pt;}
.y99{bottom:916.707093pt;}
.ydd{bottom:916.987475pt;}
.ydb{bottom:917.008233pt;}
.y6f{bottom:922.106911pt;}
.y76{bottom:926.423147pt;}
.y1f{bottom:926.423172pt;}
.ydc{bottom:933.974450pt;}
.yda{bottom:933.995208pt;}
.y92{bottom:944.141557pt;}
.y52{bottom:947.584012pt;}
.y47{bottom:954.229486pt;}
.y9a{bottom:955.515853pt;}
.y44{bottom:965.881316pt;}
.y84{bottom:975.260479pt;}
.y85{bottom:975.260516pt;}
.y80{bottom:975.694767pt;}
.y46{bottom:978.959837pt;}
.y1e{bottom:987.623052pt;}
.y7f{bottom:1003.540579pt;}
.y45{bottom:1003.968531pt;}
.y51{bottom:1008.783917pt;}
.yd9{bottom:1023.653114pt;}
.y1d{bottom:1048.822956pt;}
.yd8{bottom:1052.986442pt;}
.y72{bottom:1061.450881pt;}
.y91{bottom:1067.603704pt;}
.y50{bottom:1069.983941pt;}
.y81{bottom:1073.013812pt;}
.y43{bottom:1078.758419pt;}
.y71{bottom:1107.055616pt;}
.y1c{bottom:1110.022861pt;}
.y90{bottom:1121.937161pt;}
.y70{bottom:1132.283686pt;}
.y4c{bottom:1137.949056pt;}
.ycc{bottom:1151.197333pt;}
.yd1{bottom:1157.749055pt;}
.y1b{bottom:1171.222885pt;}
.y8f{bottom:1176.270623pt;}
.y8e{bottom:1230.604080pt;}
.y19{bottom:1238.699723pt;}
.y4f{bottom:1260.809824pt;}
.y8d{bottom:1284.937538pt;}
.y4e{bottom:1331.743157pt;}
.y8c{bottom:1339.270995pt;}
.y75{bottom:1358.321397pt;}
.y23{bottom:1362.834956pt;}
.y4d{bottom:1402.676491pt;}
.y22{bottom:1432.168291pt;}
.y74{bottom:1434.588007pt;}
.y9b{bottom:1435.607564pt;}
.y21{bottom:1501.501625pt;}
.y73{bottom:1510.854616pt;}
.yc5{bottom:1740.367007pt;}
.yb8{bottom:1744.041513pt;}
.yc4{bottom:1763.913786pt;}
.yc3{bottom:1787.460565pt;}
.ya0{bottom:1788.000000pt;}
.y9c{bottom:1806.666667pt;}
.y9e{bottom:1810.666667pt;}
.yc2{bottom:1811.007344pt;}
.ye2{bottom:1813.989877pt;}
.ybc{bottom:1825.156521pt;}
.ybe{bottom:1825.172311pt;}
.yba{bottom:1827.744157pt;}
.yc0{bottom:1827.759874pt;}
.ybb{bottom:1852.833503pt;}
.ybd{bottom:1852.843171pt;}
.yb9{bottom:1855.549057pt;}
.ybf{bottom:1855.558653pt;}
.yc1{bottom:1858.100832pt;}
.yab{bottom:1913.394009pt;}
.yaa{bottom:1964.394122pt;}
.ya9{bottom:2015.394236pt;}
.ya8{bottom:2066.394340pt;}
.ydf{bottom:2067.694649pt;}
.yde{bottom:2084.681624pt;}
.ya7{bottom:2117.394453pt;}
.ya6{bottom:2168.394547pt;}
.yb3{bottom:2171.119975pt;}
.yb7{bottom:2171.119991pt;}
.yaf{bottom:2171.119993pt;}
.yb1{bottom:2171.120005pt;}
.yc9{bottom:2171.352149pt;}
.ycb{bottom:2171.664981pt;}
.yc7{bottom:2172.086547pt;}
.ye1{bottom:2174.864737pt;}
.yb0{bottom:2200.439036pt;}
.yc8{bottom:2200.685477pt;}
.yca{bottom:2200.998309pt;}
.yc6{bottom:2201.419875pt;}
.yb6{bottom:2201.555993pt;}
.ye0{bottom:2204.198065pt;}
.yb2{bottom:2206.709104pt;}
.yae{bottom:2206.709121pt;}
.ya5{bottom:2219.394661pt;}
.ya4{bottom:2270.394774pt;}
.yb4{bottom:2275.993398pt;}
.yb5{bottom:2308.248795pt;}
.yad{bottom:2308.946388pt;}
.ya3{bottom:2321.394888pt;}
.ya2{bottom:2372.395001pt;}
.yac{bottom:2531.714747pt;}
.y8b{bottom:2534.425516pt;}
.y5{bottom:2782.453274pt;}
.y2{bottom:2796.758218pt;}
.y8{bottom:2800.963581pt;}
.y4{bottom:2829.572283pt;}
.y1{bottom:2863.690605pt;}
.y3{bottom:2876.691292pt;}
.y7{bottom:2980.722758pt;}
.y6{bottom:3165.860905pt;}
.h2d{height:1.333333pt;}
.h2b{height:12.000000pt;}
.h2c{height:14.666667pt;}
.h29{height:16.000000pt;}
.h1d{height:41.527659pt;}
.h1e{height:41.527661pt;}
.h1c{height:46.421577pt;}
.h1f{height:47.822631pt;}
.h39{height:49.501106pt;}
.h14{height:50.783838pt;}
.h36{height:56.328819pt;}
.h13{height:56.768570pt;}
.h26{height:56.828456pt;}
.h2a{height:58.281269pt;}
.h16{height:59.958010pt;}
.h5{height:61.720256pt;}
.h37{height:66.172825pt;}
.h38{height:66.217206pt;}
.h17{height:67.698968pt;}
.h18{height:67.698970pt;}
.hb{height:67.698971pt;}
.hf{height:67.699073pt;}
.h33{height:68.574494pt;}
.h34{height:68.620486pt;}
.h27{height:69.015528pt;}
.hd{height:71.502509pt;}
.h15{height:73.525407pt;}
.h31{height:80.932133pt;}
.h32{height:80.932135pt;}
.h1b{height:81.866516pt;}
.h8{height:85.479151pt;}
.ha{height:87.557082pt;}
.h25{height:97.070219pt;}
.h24{height:97.135323pt;}
.h21{height:97.135696pt;}
.h28{height:106.981012pt;}
.h23{height:116.471665pt;}
.h22{height:116.471679pt;}
.h2f{height:116.471727pt;}
.h2e{height:116.471766pt;}
.h7{height:116.562547pt;}
.h2{height:131.016278pt;}
.h6{height:154.435184pt;}
.h1{height:154.435193pt;}
.h9{height:155.312384pt;}
.h30{height:163.124874pt;}
.h4{height:244.687353pt;}
.h20{height:308.869223pt;}
.h3{height:514.783982pt;}
.h35{height:2304.802667pt;}
.h12{height:2483.312000pt;}
.h1a{height:2499.838667pt;}
.h10{height:2740.218667pt;}
.h11{height:2741.849333pt;}
.hc{height:2742.906667pt;}
.he{height:2744.541333pt;}
.h19{height:2744.802667pt;}
.h0{height:3456.000000pt;}
.wd{width:1.333333pt;}
.wc{width:2.666667pt;}
.w10{width:4.000000pt;}
.wa{width:5.333333pt;}
.wf{width:6.666667pt;}
.w9{width:8.000000pt;}
.wb{width:9.333333pt;}
.we{width:13.333333pt;}
.w8{width:2150.526300pt;}
.w6{width:2622.827633pt;}
.w13{width:2852.150300pt;}
.w7{width:3093.311633pt;}
.w5{width:3311.078667pt;}
.w4{width:3660.728967pt;}
.w2{width:3906.073333pt;}
.w3{width:3906.078667pt;}
.w11{width:3922.306667pt;}
.w12{width:4019.936967pt;}
.w0{width:4607.999633pt;}
.w1{width:4608.000000pt;}
.x69{left:-0.921035pt;}
.x0{left:0.000000pt;}
.x73{left:1.055811pt;}
.xa{left:48.281003pt;}
.xc{left:51.510618pt;}
.x9{left:73.072696pt;}
.xb{left:76.302311pt;}
.xa3{left:110.695121pt;}
.x61{left:121.146663pt;}
.x1{left:146.188919pt;}
.x62{left:149.513376pt;}
.x2{left:170.890420pt;}
.x18{left:201.932000pt;}
.x28{left:318.412000pt;}
.x60{left:362.218211pt;}
.x22{left:477.854667pt;}
.x27{left:580.239184pt;}
.xb7{left:588.062667pt;}
.x4a{left:628.729959pt;}
.x43{left:652.987625pt;}
.x86{left:656.000000pt;}
.x87{left:666.666667pt;}
.x44{left:668.689087pt;}
.x24{left:671.349333pt;}
.x88{left:674.666667pt;}
.x89{left:685.333333pt;}
.x97{left:692.000000pt;}
.x8a{left:697.333333pt;}
.x98{left:698.666667pt;}
.x8b{left:702.666667pt;}
.x99{left:709.333333pt;}
.x8c{left:712.000000pt;}
.x8d{left:718.666667pt;}
.x9a{left:720.000000pt;}
.x8e{left:725.333333pt;}
.x9b{left:732.000000pt;}
.x8f{left:736.000000pt;}
.x9c{left:742.666667pt;}
.x45{left:746.431640pt;}
.x9d{left:748.000000pt;}
.x90{left:753.333333pt;}
.x46{left:754.981826pt;}
.x9e{left:756.000000pt;}
.x9f{left:766.666667pt;}
.x91{left:769.333333pt;}
.xa0{left:777.333333pt;}
.x92{left:780.000000pt;}
.xa1{left:788.000000pt;}
.x93{left:796.000000pt;}
.xa2{left:798.666667pt;}
.x94{left:808.000000pt;}
.x95{left:814.666667pt;}
.x96{left:824.000000pt;}
.x47{left:838.229905pt;}
.x48{left:845.706909pt;}
.x49{left:933.297066pt;}
.xc5{left:935.927141pt;}
.x67{left:945.047815pt;}
.x25{left:947.270667pt;}
.x66{left:998.363505pt;}
.x68{left:1020.000000pt;}
.x6a{left:1030.666667pt;}
.x6b{left:1037.333333pt;}
.x7a{left:1048.000000pt;}
.x6c{left:1049.333333pt;}
.x7b{left:1054.666667pt;}
.x4c{left:1057.218635pt;}
.x6d{left:1060.000000pt;}
.x7c{left:1061.333333pt;}
.x6e{left:1065.333333pt;}
.x7d{left:1072.000000pt;}
.x6f{left:1076.000000pt;}
.x64{left:1083.072068pt;}
.x70{left:1088.000000pt;}
.x4f{left:1091.782902pt;}
.x4e{left:1093.816115pt;}
.x71{left:1098.666667pt;}
.x7e{left:1105.333333pt;}
.x6{left:1107.486313pt;}
.x72{left:1109.333333pt;}
.x7f{left:1110.666667pt;}
.x65{left:1113.653164pt;}
.x74{left:1117.333333pt;}
.x80{left:1118.666667pt;}
.x4d{left:1124.961861pt;}
.x81{left:1129.333333pt;}
.x75{left:1132.000000pt;}
.x82{left:1134.666667pt;}
.x83{left:1142.666667pt;}
.x76{left:1144.000000pt;}
.x84{left:1152.000000pt;}
.x63{left:1159.344777pt;}
.x85{left:1162.666667pt;}
.x77{left:1170.666667pt;}
.x5a{left:1171.606917pt;}
.x78{left:1177.333333pt;}
.x26{left:1181.029164pt;}
.x59{left:1187.011772pt;}
.x79{left:1188.000000pt;}
.x23{left:1223.434675pt;}
.x2e{left:1224.940329pt;}
.xc3{left:1249.468212pt;}
.xc1{left:1251.373493pt;}
.xc4{left:1258.034203pt;}
.xc2{left:1267.324860pt;}
.x29{left:1284.633897pt;}
.x5f{left:1288.249704pt;}
.x7{left:1305.837265pt;}
.x1b{left:1366.775581pt;}
.x21{left:1380.075960pt;}
.x20{left:1382.356156pt;}
.x50{left:1391.418038pt;}
.x19{left:1399.884371pt;}
.x2b{left:1407.495913pt;}
.x1a{left:1415.585833pt;}
.x5b{left:1417.661909pt;}
.x2f{left:1434.533795pt;}
.x5d{left:1465.031073pt;}
.x2a{left:1467.135681pt;}
.x32{left:1471.497467pt;}
.x5c{left:1474.267517pt;}
.x5e{left:1477.111160pt;}
.x1c{left:1493.328417pt;}
.x1d{left:1501.878604pt;}
.x31{left:1510.098289pt;}
.x4b{left:1514.688000pt;}
.x30{left:1548.169578pt;}
.xb0{left:1549.945957pt;}
.x10{left:1552.975840pt;}
.xa5{left:1560.458295pt;}
.x8{left:1563.285395pt;}
.x1e{left:1585.126759pt;}
.x1f{left:1592.603763pt;}
.x58{left:1623.780262pt;}
.x2d{left:1642.064044pt;}
.x57{left:1649.138960pt;}
.x11{left:1657.141928pt;}
.x2c{left:1664.839028pt;}
.xaa{left:1671.437919pt;}
.xab{left:1682.490132pt;}
.xe{left:1691.971805pt;}
.xd{left:1705.605563pt;}
.xc0{left:1755.849333pt;}
.xb2{left:1791.214187pt;}
.xb1{left:1799.355601pt;}
.xa8{left:1875.667263pt;}
.x12{left:1882.125580pt;}
.x13{left:1896.753861pt;}
.xa9{left:1938.348389pt;}
.x42{left:1985.172000pt;}
.xc9{left:1986.332466pt;}
.xc7{left:1990.335732pt;}
.xc8{left:1996.420520pt;}
.xb4{left:2038.719222pt;}
.xb3{left:2047.369282pt;}
.x14{left:2071.235273pt;}
.x15{left:2086.936735pt;}
.xac{left:2092.542572pt;}
.xad{left:2094.619870pt;}
.xf{left:2139.627609pt;}
.xa6{left:2158.858404pt;}
.xa7{left:2169.910580pt;}
.xce{left:2187.187295pt;}
.xcf{left:2192.170356pt;}
.xcc{left:2208.792788pt;}
.xd0{left:2244.433960pt;}
.xd1{left:2255.183895pt;}
.xc6{left:2268.737569pt;}
.xcd{left:2274.966312pt;}
.x34{left:2278.638095pt;}
.xb5{left:2280.633930pt;}
.xb6{left:2282.612157pt;}
.xd2{left:2314.267803pt;}
.xd3{left:2321.538229pt;}
.x16{left:2351.544393pt;}
.x17{left:2366.172674pt;}
.xd4{left:2383.031620pt;}
.xd5{left:2384.535165pt;}
.xae{left:2413.620629pt;}
.xaf{left:2421.924861pt;}
.x33{left:2422.940967pt;}
.x56{left:2457.473333pt;}
.xcb{left:2520.573300pt;}
.xca{left:2529.933330pt;}
.xb9{left:2591.072072pt;}
.xb8{left:2592.068244pt;}
.x38{left:2715.963926pt;}
.x36{left:2727.719187pt;}
.xa4{left:2745.379800pt;}
.xbc{left:2777.516992pt;}
.xbd{left:2838.388605pt;}
.x35{left:2885.237232pt;}
.xbe{left:3026.292628pt;}
.xbf{left:3080.628277pt;}
.x41{left:3084.187124pt;}
.x39{left:3108.648375pt;}
.x3a{left:3124.349837pt;}
.x37{left:3186.452395pt;}
.x3b{left:3202.092702pt;}
.x3c{left:3210.642888pt;}
.x3d{left:3293.891008pt;}
.x3e{left:3301.368012pt;}
.xbb{left:3318.154320pt;}
.xba{left:3327.514351pt;}
.x3f{left:3388.957943pt;}
.x40{left:3403.586225pt;}
.x4{left:3471.025504pt;}
.x55{left:3598.861460pt;}
.xe1{left:3603.160068pt;}
.x52{left:3615.245472pt;}
.xe0{left:3631.403672pt;}
.x54{left:3763.421032pt;}
.x51{left:3777.054927pt;}
.xde{left:3781.977985pt;}
.xdf{left:3794.180914pt;}
.x3{left:3901.274272pt;}
.xd6{left:3950.177125pt;}
.xd7{left:3955.160186pt;}
.xd8{left:4001.428459pt;}
.xd9{left:4012.178394pt;}
.xda{left:4064.213574pt;}
.xdb{left:4071.483999pt;}
.x5{left:4107.805669pt;}
.xdc{left:4126.990400pt;}
.xdd{left:4128.493944pt;}
.x53{left:4240.118851pt;}
}




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