
    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_f1e45b74037501cd5e861cc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.301000;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_e324f5fc9ff5a5982914224e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.205000;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_992634eb94f48053fc3a56d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_30a8df8531784078b7183b1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686000;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;}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,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);}
.v3{vertical-align:-56.159978px;}
.v1{vertical-align:-17.999993px;}
.v4{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.999993px;}
.v5{vertical-align:23.759990px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:61.468402px;}
.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;}
}
.ws4{word-spacing:-17.999993px;}
.ws3{word-spacing:-17.980343px;}
.ws6{word-spacing:-15.299994px;}
.ws0{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.499995px;}
.ws1{word-spacing:-10.488596px;}
.ws7{word-spacing:-8.999996px;}
.ws5{word-spacing:0.000000px;}
.ws2{word-spacing:381.767924px;}
._20{margin-left:-212.284764px;}
._21{margin-left:-175.564778px;}
._1f{margin-left:-164.787688px;}
._22{margin-left:-131.644796px;}
._1{margin-left:-1.406339px;}
._0{width:1.179360px;}
._a{width:2.566259px;}
._d{width:4.299838px;}
._4{width:5.326558px;}
._5{width:6.386037px;}
._3{width:7.386477px;}
._7{width:8.846096px;}
._6{width:9.906476px;}
._e{width:11.513695px;}
._1b{width:12.531595px;}
._2{width:13.586035px;}
._27{width:14.759274px;}
._25{width:16.320233px;}
._10{width:17.632973px;}
._11{width:19.119592px;}
._17{width:20.429452px;}
._19{width:21.679911px;}
._18{width:23.173191px;}
._9{width:24.447410px;}
._8{width:25.792730px;}
._1a{width:26.919349px;}
._f{width:28.167109px;}
._24{width:29.706468px;}
._c{width:31.252667px;}
._b{width:32.479907px;}
._26{width:33.520487px;}
._16{width:34.733326px;}
._15{width:35.992786px;}
._14{width:37.006545px;}
._1c{width:39.059984px;}
._1d{width:40.099664px;}
._12{width:43.226623px;}
._13{width:44.380242px;}
._2b{width:56.333677px;}
._2a{width:57.526537px;}
._29{width:60.380616px;}
._28{width:61.604615px;}
._23{width:149.759940px;}
._1e{width:514.799794px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fs3{font-size:41.954383px;}
.fs7{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:71.921371px;}
.fs2{font-size:71.999971px;}
.fs5{font-size:76.011495px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.180427px;}
.y3e{bottom:91.740413px;}
.y160{bottom:95.699962px;}
.y13d{bottom:101.279959px;}
.yce{bottom:101.999959px;}
.yaf{bottom:102.180409px;}
.yf0{bottom:102.719959px;}
.y72{bottom:105.239958px;}
.y12d{bottom:105.419958px;}
.y17e{bottom:105.780408px;}
.y3d{bottom:109.380406px;}
.y15f{bottom:113.339955px;}
.ycd{bottom:119.639952px;}
.yae{bottom:119.820402px;}
.yef{bottom:120.359952px;}
.y71{bottom:122.879951px;}
.y12c{bottom:123.059951px;}
.y17d{bottom:123.420401px;}
.y3c{bottom:127.020399px;}
.y13c{bottom:127.559949px;}
.y15e{bottom:130.979948px;}
.ycc{bottom:137.279945px;}
.yad{bottom:137.460395px;}
.yee{bottom:137.999945px;}
.y70{bottom:140.519944px;}
.y12b{bottom:140.699944px;}
.y17c{bottom:141.060394px;}
.y3b{bottom:144.660392px;}
.y15d{bottom:148.619941px;}
.y134{bottom:150.239940px;}
.y13b{bottom:150.779940px;}
.ycb{bottom:154.919938px;}
.yac{bottom:155.100388px;}
.yed{bottom:155.639938px;}
.y6f{bottom:158.159937px;}
.y12a{bottom:158.339937px;}
.y17b{bottom:158.700387px;}
.y3a{bottom:162.300385px;}
.y15c{bottom:166.259933px;}
.yca{bottom:172.559931px;}
.yab{bottom:172.740381px;}
.yec{bottom:172.919931px;}
.y6e{bottom:175.799930px;}
.y129{bottom:175.979930px;}
.y17a{bottom:176.340379px;}
.y133{bottom:176.519929px;}
.y39{bottom:179.940378px;}
.y15b{bottom:183.899926px;}
.yc9{bottom:190.199924px;}
.yeb{bottom:190.379924px;}
.yaa{bottom:190.380374px;}
.y6d{bottom:193.439923px;}
.y128{bottom:193.619923px;}
.y179{bottom:193.980372px;}
.y38{bottom:197.580371px;}
.y132{bottom:199.739920px;}
.y15a{bottom:201.539919px;}
.yc8{bottom:207.839917px;}
.ya9{bottom:208.020367px;}
.yea{bottom:208.199917px;}
.y6c{bottom:211.079916px;}
.y127{bottom:211.259915px;}
.y178{bottom:211.620365px;}
.y37{bottom:215.220364px;}
.y159{bottom:219.179912px;}
.yc7{bottom:225.479910px;}
.ya8{bottom:225.660360px;}
.ye9{bottom:225.839910px;}
.y6b{bottom:228.719909px;}
.y126{bottom:228.899908px;}
.y177{bottom:229.260358px;}
.y36{bottom:232.860357px;}
.y158{bottom:236.819905px;}
.yc6{bottom:243.119903px;}
.ya7{bottom:243.300353px;}
.ye8{bottom:243.479903px;}
.y6a{bottom:246.359901px;}
.y125{bottom:246.539901px;}
.y176{bottom:246.900351px;}
.y35{bottom:250.500350px;}
.y157{bottom:254.459898px;}
.yc5{bottom:260.759896px;}
.ya6{bottom:260.940346px;}
.ye7{bottom:261.119896px;}
.y69{bottom:263.999894px;}
.y124{bottom:264.179894px;}
.y175{bottom:264.540344px;}
.y34{bottom:268.140343px;}
.y156{bottom:272.099891px;}
.yc4{bottom:278.399889px;}
.ya5{bottom:278.580339px;}
.ye6{bottom:278.759888px;}
.y68{bottom:281.639887px;}
.y123{bottom:281.819887px;}
.y174{bottom:282.180337px;}
.y33{bottom:285.780336px;}
.y155{bottom:289.739884px;}
.yc3{bottom:296.039882px;}
.ya4{bottom:296.220332px;}
.ye5{bottom:296.399881px;}
.y67{bottom:299.279880px;}
.y122{bottom:299.459880px;}
.y173{bottom:299.820330px;}
.y32{bottom:303.420329px;}
.y154{bottom:307.379877px;}
.yc2{bottom:313.679875px;}
.ya3{bottom:313.860324px;}
.ye4{bottom:314.039874px;}
.y66{bottom:316.919873px;}
.y121{bottom:317.099873px;}
.y172{bottom:317.460323px;}
.y31{bottom:321.060322px;}
.y153{bottom:325.019870px;}
.y1b0{bottom:327.899869px;}
.yc1{bottom:331.319867px;}
.ya2{bottom:331.500317px;}
.ye3{bottom:331.679867px;}
.y65{bottom:334.559866px;}
.y120{bottom:334.739866px;}
.y171{bottom:335.100316px;}
.y30{bottom:338.700315px;}
.y152{bottom:342.659863px;}
.y1af{bottom:345.539862px;}
.yc0{bottom:348.959860px;}
.ya1{bottom:349.140310px;}
.y64{bottom:352.199859px;}
.y11f{bottom:352.379859px;}
.y170{bottom:352.740309px;}
.y2f{bottom:356.340307px;}
.y151{bottom:360.299856px;}
.y1ae{bottom:363.179855px;}
.ye2{bottom:366.419853px;}
.ybf{bottom:366.599853px;}
.ya0{bottom:366.780303px;}
.y63{bottom:369.839852px;}
.y11e{bottom:370.019852px;}
.y16f{bottom:370.380302px;}
.y2e{bottom:373.980300px;}
.y150{bottom:377.939849px;}
.y1ad{bottom:380.819848px;}
.ybe{bottom:384.239846px;}
.y9f{bottom:384.420296px;}
.y62{bottom:387.479845px;}
.y11d{bottom:387.659845px;}
.y16e{bottom:388.020295px;}
.y13a{bottom:388.919844px;}
.y2d{bottom:391.620293px;}
.y14f{bottom:395.579842px;}
.y1ac{bottom:398.459841px;}
.ybd{bottom:401.879839px;}
.y9e{bottom:402.060289px;}
.y61{bottom:405.119838px;}
.y11c{bottom:405.299838px;}
.y16d{bottom:405.660288px;}
.y2c{bottom:409.260286px;}
.y139{bottom:412.139835px;}
.y14e{bottom:413.219835px;}
.y1ab{bottom:416.099834px;}
.ybc{bottom:419.519832px;}
.y9d{bottom:419.700282px;}
.y60{bottom:422.759831px;}
.y11b{bottom:422.939831px;}
.y16c{bottom:423.300281px;}
.y2b{bottom:426.540279px;}
.y14d{bottom:430.859828px;}
.y1aa{bottom:433.739827px;}
.ybb{bottom:437.159825px;}
.y9c{bottom:437.340275px;}
.y5f{bottom:440.399824px;}
.y11a{bottom:440.579824px;}
.y16b{bottom:440.940274px;}
.y2a{bottom:444.360272px;}
.y14c{bottom:448.499821px;}
.y1a9{bottom:451.379819px;}
.yba{bottom:454.799818px;}
.y9b{bottom:454.980268px;}
.y5e{bottom:458.039817px;}
.y119{bottom:458.219817px;}
.y16a{bottom:458.580267px;}
.y29{bottom:462.000265px;}
.y14b{bottom:466.139814px;}
.y1a8{bottom:469.019812px;}
.yb9{bottom:472.439811px;}
.y9a{bottom:472.620261px;}
.y5d{bottom:475.679810px;}
.y118{bottom:475.859810px;}
.y169{bottom:476.220260px;}
.y28{bottom:479.640258px;}
.y14a{bottom:483.779806px;}
.y1a7{bottom:486.299805px;}
.yb8{bottom:490.079804px;}
.y99{bottom:490.260254px;}
.y5c{bottom:493.319803px;}
.y117{bottom:493.499803px;}
.y168{bottom:493.860252px;}
.y27{bottom:497.280251px;}
.y149{bottom:501.419799px;}
.y1a6{bottom:503.759798px;}
.yb7{bottom:507.719797px;}
.y98{bottom:507.900247px;}
.y5b{bottom:510.959796px;}
.y116{bottom:511.139796px;}
.y167{bottom:511.500245px;}
.y131{bottom:514.379794px;}
.y26{bottom:514.920244px;}
.y148{bottom:519.059792px;}
.y1a5{bottom:519.599792px;}
.yb6{bottom:525.359790px;}
.y97{bottom:525.540240px;}
.y5a{bottom:528.599789px;}
.y115{bottom:528.779788px;}
.y166{bottom:529.140238px;}
.y25{bottom:532.560237px;}
.y1a4{bottom:535.439786px;}
.y147{bottom:536.699785px;}
.y130{bottom:537.599785px;}
.y96{bottom:542.820233px;}
.yb5{bottom:542.999783px;}
.y114{bottom:546.419781px;}
.y165{bottom:546.780231px;}
.y59{bottom:547.139781px;}
.y24{bottom:550.200230px;}
.y1a3{bottom:551.279779px;}
.y146{bottom:554.339778px;}
.yb4{bottom:560.279776px;}
.y95{bottom:560.280226px;}
.ye1{bottom:560.639776px;}
.y113{bottom:564.059774px;}
.y164{bottom:564.420224px;}
.y58{bottom:564.779774px;}
.y1a2{bottom:567.119773px;}
.y23{bottom:567.840223px;}
.y145{bottom:571.979771px;}
.yb3{bottom:577.739769px;}
.y94{bottom:578.100219px;}
.ye0{bottom:578.279769px;}
.y112{bottom:581.699767px;}
.y163{bottom:582.060217px;}
.y1a1{bottom:582.959767px;}
.y53{bottom:584.219766px;}
.y22{bottom:585.480216px;}
.y56{bottom:588.719765px;}
.y144{bottom:589.259764px;}
.yb2{bottom:595.559762px;}
.ydf{bottom:595.919762px;}
.y93{bottom:596.460211px;}
.y55{bottom:598.259761px;}
.y1a0{bottom:598.799760px;}
.y111{bottom:599.339760px;}
.y162{bottom:599.340210px;}
.y52{bottom:602.759759px;}
.y21{bottom:603.120209px;}
.y143{bottom:606.719757px;}
.y54{bottom:612.299755px;}
.yde{bottom:613.559755px;}
.y19f{bottom:614.639754px;}
.y57{bottom:616.799753px;}
.y161{bottom:616.800203px;}
.y110{bottom:616.979753px;}
.y92{bottom:616.980203px;}
.y20{bottom:620.760202px;}
.yb1{bottom:621.839751px;}
.y142{bottom:624.539750px;}
.y19e{bottom:630.479748px;}
.ydd{bottom:631.199748px;}
.y10f{bottom:634.619746px;}
.y91{bottom:634.620196px;}
.y51{bottom:637.860195px;}
.y1f{bottom:638.400195px;}
.yb0{bottom:645.059742px;}
.y19d{bottom:646.319741px;}
.ydc{bottom:648.839740px;}
.y138{bottom:650.279740px;}
.y141{bottom:650.819740px;}
.y10e{bottom:652.259739px;}
.y90{bottom:652.260189px;}
.y50{bottom:655.500188px;}
.y1e{bottom:656.040188px;}
.y19c{bottom:662.159735px;}
.ydb{bottom:666.479733px;}
.y10d{bottom:669.899732px;}
.y8f{bottom:669.900182px;}
.y4f{bottom:673.140181px;}
.y137{bottom:673.499731px;}
.y1d{bottom:673.680181px;}
.y140{bottom:674.039730px;}
.y19b{bottom:677.999729px;}
.yda{bottom:684.119726px;}
.y10c{bottom:687.539725px;}
.y8e{bottom:687.540175px;}
.y4e{bottom:690.780174px;}
.y1c{bottom:691.320173px;}
.y19a{bottom:693.839722px;}
.yd9{bottom:701.759719px;}
.y10b{bottom:705.179718px;}
.y8d{bottom:705.180168px;}
.y4d{bottom:708.420167px;}
.y1b{bottom:708.960166px;}
.y199{bottom:709.679716px;}
.yd8{bottom:719.399712px;}
.y10a{bottom:722.819711px;}
.y8c{bottom:722.820161px;}
.y198{bottom:725.519710px;}
.y4c{bottom:726.060160px;}
.y1a{bottom:726.600159px;}
.yd7{bottom:737.039705px;}
.y109{bottom:740.459704px;}
.y8b{bottom:740.460154px;}
.y197{bottom:741.359703px;}
.y4b{bottom:743.700153px;}
.y19{bottom:744.240152px;}
.yd6{bottom:754.679698px;}
.y196{bottom:757.199697px;}
.y108{bottom:758.099697px;}
.y8a{bottom:758.100147px;}
.y4a{bottom:761.340145px;}
.y18{bottom:761.880145px;}
.yd5{bottom:772.319691px;}
.y195{bottom:773.039691px;}
.y107{bottom:775.739690px;}
.y89{bottom:775.740140px;}
.y49{bottom:778.980138px;}
.y17{bottom:779.520138px;}
.y194{bottom:788.879684px;}
.yd4{bottom:789.959684px;}
.y106{bottom:793.379683px;}
.y88{bottom:793.380133px;}
.y48{bottom:796.620131px;}
.y16{bottom:797.160131px;}
.y193{bottom:804.719678px;}
.yd3{bottom:807.239677px;}
.y105{bottom:811.019676px;}
.y87{bottom:811.020126px;}
.y47{bottom:814.260124px;}
.y15{bottom:814.800124px;}
.y192{bottom:820.559672px;}
.yd2{bottom:824.699670px;}
.y104{bottom:828.659669px;}
.y86{bottom:828.660119px;}
.y46{bottom:831.900117px;}
.y14{bottom:832.440117px;}
.y191{bottom:836.399665px;}
.yd1{bottom:842.519663px;}
.y103{bottom:846.299661px;}
.y85{bottom:846.300111px;}
.y45{bottom:849.540110px;}
.y13{bottom:850.080110px;}
.y12f{bottom:852.239659px;}
.y102{bottom:863.939654px;}
.y84{bottom:863.940104px;}
.y44{bottom:867.180103px;}
.y12{bottom:867.360103px;}
.y190{bottom:868.080103px;}
.yd0{bottom:868.799652px;}
.y12e{bottom:875.459650px;}
.y101{bottom:881.579647px;}
.y83{bottom:881.580097px;}
.y18f{bottom:883.920096px;}
.y43{bottom:884.820096px;}
.y11{bottom:885.180096px;}
.ycf{bottom:892.019643px;}
.y100{bottom:899.219640px;}
.y82{bottom:899.220090px;}
.y18e{bottom:899.760090px;}
.y42{bottom:902.460089px;}
.y10{bottom:902.820089px;}
.y136{bottom:911.099636px;}
.y13f{bottom:911.639635px;}
.y18d{bottom:915.600084px;}
.yff{bottom:916.859633px;}
.y81{bottom:916.860083px;}
.y41{bottom:920.100082px;}
.yf{bottom:920.460082px;}
.y18c{bottom:931.440077px;}
.y135{bottom:934.319626px;}
.yfe{bottom:934.499626px;}
.y80{bottom:934.500076px;}
.y13e{bottom:934.859626px;}
.y40{bottom:937.740075px;}
.ye{bottom:938.100075px;}
.y18b{bottom:947.280071px;}
.yfd{bottom:952.139619px;}
.y7f{bottom:952.140069px;}
.yd{bottom:955.380068px;}
.y18a{bottom:963.120065px;}
.yfc{bottom:969.779612px;}
.y7e{bottom:969.780062px;}
.yc{bottom:972.840061px;}
.y3f{bottom:973.020061px;}
.y189{bottom:978.960058px;}
.yfb{bottom:987.419605px;}
.y7d{bottom:987.420055px;}
.yb{bottom:990.660054px;}
.y188{bottom:994.800052px;}
.yfa{bottom:1005.059598px;}
.y7c{bottom:1005.060048px;}
.ya{bottom:1008.300047px;}
.y187{bottom:1010.640046px;}
.yf9{bottom:1022.699591px;}
.y7b{bottom:1022.700041px;}
.y9{bottom:1025.940040px;}
.y186{bottom:1026.480039px;}
.yf8{bottom:1040.339584px;}
.y7a{bottom:1040.340034px;}
.y185{bottom:1042.320033px;}
.y8{bottom:1043.580033px;}
.yf7{bottom:1057.979577px;}
.y79{bottom:1057.980027px;}
.y184{bottom:1058.520027px;}
.y7{bottom:1061.220026px;}
.yf6{bottom:1075.619570px;}
.y78{bottom:1075.620020px;}
.y183{bottom:1075.800020px;}
.y6{bottom:1078.860018px;}
.yf5{bottom:1093.259563px;}
.y77{bottom:1093.260013px;}
.y5{bottom:1096.500011px;}
.yf4{bottom:1110.899556px;}
.y76{bottom:1110.900006px;}
.y182{bottom:1111.080006px;}
.y4{bottom:1114.140004px;}
.yf3{bottom:1128.539549px;}
.y75{bottom:1128.539999px;}
.y181{bottom:1128.719999px;}
.y3{bottom:1132.859997px;}
.yf2{bottom:1146.179542px;}
.y74{bottom:1146.179992px;}
.y180{bottom:1146.359991px;}
.y2{bottom:1157.699987px;}
.y17f{bottom:1163.639985px;}
.yf1{bottom:1163.819534px;}
.y73{bottom:1163.819984px;}
.h5{height:28.654844px;}
.hb{height:36.881985px;}
.h7{height:49.122297px;}
.h9{height:49.895980px;}
.h8{height:51.155736px;}
.h3{height:55.218218px;}
.ha{height:57.023977px;}
.h1{height:57.369577px;}
.h4{height:66.527973px;}
.h6{height:67.122289px;}
.h2{height:80.870368px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xb{left:50.939890px;}
.x23{left:57.779977px;}
.x18{left:61.019976px;}
.x1b{left:68.579973px;}
.x22{left:71.459971px;}
.x1c{left:78.659969px;}
.x1a{left:82.799967px;}
.x2{left:94.679917px;}
.x3{left:176.759839px;}
.x5{left:203.039829px;}
.x6{left:221.219822px;}
.x1d{left:235.439906px;}
.x7{left:323.819780px;}
.xa{left:356.579767px;}
.x8{left:377.099759px;}
.x19{left:386.639845px;}
.x17{left:419.759832px;}
.x9{left:425.159740px;}
.x4{left:446.399731px;}
.xc{left:473.039721px;}
.x25{left:479.879808px;}
.x16{left:486.539805px;}
.x20{left:490.679804px;}
.x21{left:500.759800px;}
.xd{left:503.099799px;}
.x1f{left:504.899798px;}
.x1{left:523.079791px;}
.x13{left:622.439751px;}
.x10{left:632.699747px;}
.x24{left:657.539737px;}
.x12{left:659.519736px;}
.x11{left:660.779736px;}
.xe{left:671.579731px;}
.xf{left:672.839731px;}
.x14{left:722.159711px;}
.x1e{left:808.739677px;}
.x15{left:841.859663px;}
@media print{
.v3{vertical-align:-49.919980pt;}
.v1{vertical-align:-15.999994pt;}
.v4{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.999994pt;}
.v5{vertical-align:21.119992pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:54.638579pt;}
.ws4{word-spacing:-15.999994pt;}
.ws3{word-spacing:-15.982527pt;}
.ws6{word-spacing:-13.599995pt;}
.ws0{word-spacing:-13.279995pt;}
.ws8{word-spacing:-11.999995pt;}
.ws1{word-spacing:-9.323196pt;}
.ws7{word-spacing:-7.999997pt;}
.ws5{word-spacing:0.000000pt;}
.ws2{word-spacing:339.349266pt;}
._20{margin-left:-188.697568pt;}
._21{margin-left:-156.057581pt;}
._1f{margin-left:-146.477945pt;}
._22{margin-left:-117.017596pt;}
._1{margin-left:-1.250079pt;}
._0{width:1.048320pt;}
._a{width:2.281119pt;}
._d{width:3.822078pt;}
._4{width:4.734718pt;}
._5{width:5.676478pt;}
._3{width:6.565757pt;}
._7{width:7.863197pt;}
._6{width:8.805756pt;}
._e{width:10.234396pt;}
._1b{width:11.139196pt;}
._2{width:12.076475pt;}
._27{width:13.119355pt;}
._25{width:14.506874pt;}
._10{width:15.673754pt;}
._11{width:16.995193pt;}
._17{width:18.159513pt;}
._19{width:19.271032pt;}
._18{width:20.598392pt;}
._9{width:21.731031pt;}
._8{width:22.926871pt;}
._1a{width:23.928310pt;}
._f{width:25.037430pt;}
._24{width:26.405749pt;}
._c{width:27.780149pt;}
._b{width:28.871028pt;}
._26{width:29.795988pt;}
._16{width:30.874068pt;}
._15{width:31.993587pt;}
._14{width:32.894707pt;}
._1c{width:34.719986pt;}
._1d{width:35.644146pt;}
._12{width:38.423665pt;}
._13{width:39.449104pt;}
._2b{width:50.074380pt;}
._2a{width:51.134700pt;}
._29{width:53.671659pt;}
._28{width:54.759658pt;}
._23{width:133.119947pt;}
._1e{width:457.599817pt;}
.fs8{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fs3{font-size:37.292785pt;}
.fs7{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:63.930108pt;}
.fs2{font-size:63.999974pt;}
.fs5{font-size:67.565774pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.827046pt;}
.y3e{bottom:81.547034pt;}
.y160{bottom:85.066633pt;}
.y13d{bottom:90.026631pt;}
.yce{bottom:90.666630pt;}
.yaf{bottom:90.827030pt;}
.yf0{bottom:91.306630pt;}
.y72{bottom:93.546629pt;}
.y12d{bottom:93.706629pt;}
.y17e{bottom:94.027029pt;}
.y3d{bottom:97.227028pt;}
.y15f{bottom:100.746626pt;}
.ycd{bottom:106.346624pt;}
.yae{bottom:106.507024pt;}
.yef{bottom:106.986624pt;}
.y71{bottom:109.226623pt;}
.y12c{bottom:109.386623pt;}
.y17d{bottom:109.707023pt;}
.y3c{bottom:112.907022pt;}
.y13c{bottom:113.386621pt;}
.y15e{bottom:116.426620pt;}
.ycc{bottom:122.026618pt;}
.yad{bottom:122.187018pt;}
.yee{bottom:122.666618pt;}
.y70{bottom:124.906617pt;}
.y12b{bottom:125.066617pt;}
.y17c{bottom:125.387017pt;}
.y3b{bottom:128.587015pt;}
.y15d{bottom:132.106614pt;}
.y134{bottom:133.546613pt;}
.y13b{bottom:134.026613pt;}
.ycb{bottom:137.706612pt;}
.yac{bottom:137.867012pt;}
.yed{bottom:138.346611pt;}
.y6f{bottom:140.586610pt;}
.y12a{bottom:140.746610pt;}
.y17b{bottom:141.067010pt;}
.y3a{bottom:144.267009pt;}
.y15c{bottom:147.786608pt;}
.yca{bottom:153.386605pt;}
.yab{bottom:153.547005pt;}
.yec{bottom:153.706605pt;}
.y6e{bottom:156.266604pt;}
.y129{bottom:156.426604pt;}
.y17a{bottom:156.747004pt;}
.y133{bottom:156.906604pt;}
.y39{bottom:159.947003pt;}
.y15b{bottom:163.466601pt;}
.yc9{bottom:169.066599pt;}
.yeb{bottom:169.226599pt;}
.yaa{bottom:169.226999pt;}
.y6d{bottom:171.946598pt;}
.y128{bottom:172.106598pt;}
.y179{bottom:172.426998pt;}
.y38{bottom:175.626996pt;}
.y132{bottom:177.546596pt;}
.y15a{bottom:179.146595pt;}
.yc8{bottom:184.746593pt;}
.ya9{bottom:184.906993pt;}
.yea{bottom:185.066593pt;}
.y6c{bottom:187.626592pt;}
.y127{bottom:187.786592pt;}
.y178{bottom:188.106991pt;}
.y37{bottom:191.306990pt;}
.y159{bottom:194.826589pt;}
.yc7{bottom:200.426586pt;}
.ya8{bottom:200.586986pt;}
.ye9{bottom:200.746586pt;}
.y6b{bottom:203.306585pt;}
.y126{bottom:203.466585pt;}
.y177{bottom:203.786985pt;}
.y36{bottom:206.986984pt;}
.y158{bottom:210.506582pt;}
.yc6{bottom:216.106580pt;}
.ya7{bottom:216.266980pt;}
.ye8{bottom:216.426580pt;}
.y6a{bottom:218.986579pt;}
.y125{bottom:219.146579pt;}
.y176{bottom:219.466979pt;}
.y35{bottom:222.666978pt;}
.y157{bottom:226.186576pt;}
.yc5{bottom:231.786574pt;}
.ya6{bottom:231.946974pt;}
.ye7{bottom:232.106574pt;}
.y69{bottom:234.666573pt;}
.y124{bottom:234.826573pt;}
.y175{bottom:235.146973pt;}
.y34{bottom:238.346971pt;}
.y156{bottom:241.866570pt;}
.yc4{bottom:247.466568pt;}
.ya5{bottom:247.626968pt;}
.ye6{bottom:247.786568pt;}
.y68{bottom:250.346567pt;}
.y123{bottom:250.506566pt;}
.y174{bottom:250.826966pt;}
.y33{bottom:254.026965pt;}
.y155{bottom:257.546564pt;}
.yc3{bottom:263.146561pt;}
.ya4{bottom:263.306961pt;}
.ye5{bottom:263.466561pt;}
.y67{bottom:266.026560pt;}
.y122{bottom:266.186560pt;}
.y173{bottom:266.506960pt;}
.y32{bottom:269.706959pt;}
.y154{bottom:273.226557pt;}
.yc2{bottom:278.826555pt;}
.ya3{bottom:278.986955pt;}
.ye4{bottom:279.146555pt;}
.y66{bottom:281.706554pt;}
.y121{bottom:281.866554pt;}
.y172{bottom:282.186954pt;}
.y31{bottom:285.386953pt;}
.y153{bottom:288.906551pt;}
.y1b0{bottom:291.466550pt;}
.yc1{bottom:294.506549pt;}
.ya2{bottom:294.666949pt;}
.ye3{bottom:294.826549pt;}
.y65{bottom:297.386548pt;}
.y120{bottom:297.546548pt;}
.y171{bottom:297.866948pt;}
.y30{bottom:301.066946pt;}
.y152{bottom:304.586545pt;}
.y1af{bottom:307.146544pt;}
.yc0{bottom:310.186543pt;}
.ya1{bottom:310.346943pt;}
.y64{bottom:313.066541pt;}
.y11f{bottom:313.226541pt;}
.y170{bottom:313.546941pt;}
.y2f{bottom:316.746940pt;}
.y151{bottom:320.266539pt;}
.y1ae{bottom:322.826538pt;}
.ye2{bottom:325.706536pt;}
.ybf{bottom:325.866536pt;}
.ya0{bottom:326.026936pt;}
.y63{bottom:328.746535pt;}
.y11e{bottom:328.906535pt;}
.y16f{bottom:329.226935pt;}
.y2e{bottom:332.426934pt;}
.y150{bottom:335.946532pt;}
.y1ad{bottom:338.506531pt;}
.ybe{bottom:341.546530pt;}
.y9f{bottom:341.706930pt;}
.y62{bottom:344.426529pt;}
.y11d{bottom:344.586529pt;}
.y16e{bottom:344.906929pt;}
.y13a{bottom:345.706528pt;}
.y2d{bottom:348.106927pt;}
.y14f{bottom:351.626526pt;}
.y1ac{bottom:354.186525pt;}
.ybd{bottom:357.226524pt;}
.y9e{bottom:357.386924pt;}
.y61{bottom:360.106523pt;}
.y11c{bottom:360.266523pt;}
.y16d{bottom:360.586922pt;}
.y2c{bottom:363.786921pt;}
.y139{bottom:366.346520pt;}
.y14e{bottom:367.306520pt;}
.y1ab{bottom:369.866519pt;}
.ybc{bottom:372.906518pt;}
.y9d{bottom:373.066917pt;}
.y60{bottom:375.786516pt;}
.y11b{bottom:375.946516pt;}
.y16c{bottom:376.266916pt;}
.y2b{bottom:379.146915pt;}
.y14d{bottom:382.986513pt;}
.y1aa{bottom:385.546512pt;}
.ybb{bottom:388.586511pt;}
.y9c{bottom:388.746911pt;}
.y5f{bottom:391.466510pt;}
.y11a{bottom:391.626510pt;}
.y16b{bottom:391.946910pt;}
.y2a{bottom:394.986909pt;}
.y14c{bottom:398.666507pt;}
.y1a9{bottom:401.226506pt;}
.yba{bottom:404.266505pt;}
.y9b{bottom:404.426905pt;}
.y5e{bottom:407.146504pt;}
.y119{bottom:407.306504pt;}
.y16a{bottom:407.626904pt;}
.y29{bottom:410.666902pt;}
.y14b{bottom:414.346501pt;}
.y1a8{bottom:416.906500pt;}
.yb9{bottom:419.946499pt;}
.y9a{bottom:420.106899pt;}
.y5d{bottom:422.826498pt;}
.y118{bottom:422.986497pt;}
.y169{bottom:423.306897pt;}
.y28{bottom:426.346896pt;}
.y14a{bottom:430.026495pt;}
.y1a7{bottom:432.266494pt;}
.yb8{bottom:435.626492pt;}
.y99{bottom:435.786892pt;}
.y5c{bottom:438.506491pt;}
.y117{bottom:438.666491pt;}
.y168{bottom:438.986891pt;}
.y27{bottom:442.026890pt;}
.y149{bottom:445.706488pt;}
.y1a6{bottom:447.786488pt;}
.yb7{bottom:451.306486pt;}
.y98{bottom:451.466886pt;}
.y5b{bottom:454.186485pt;}
.y116{bottom:454.346485pt;}
.y167{bottom:454.666885pt;}
.y131{bottom:457.226484pt;}
.y26{bottom:457.706884pt;}
.y148{bottom:461.386482pt;}
.y1a5{bottom:461.866482pt;}
.yb6{bottom:466.986480pt;}
.y97{bottom:467.146880pt;}
.y5a{bottom:469.866479pt;}
.y115{bottom:470.026479pt;}
.y166{bottom:470.346879pt;}
.y25{bottom:473.386877pt;}
.y1a4{bottom:475.946476pt;}
.y147{bottom:477.066476pt;}
.y130{bottom:477.866476pt;}
.y96{bottom:482.506874pt;}
.yb5{bottom:482.666474pt;}
.y114{bottom:485.706472pt;}
.y165{bottom:486.026872pt;}
.y59{bottom:486.346472pt;}
.y24{bottom:489.066871pt;}
.y1a3{bottom:490.026471pt;}
.y146{bottom:492.746470pt;}
.yb4{bottom:498.026467pt;}
.y95{bottom:498.026867pt;}
.ye1{bottom:498.346467pt;}
.y113{bottom:501.386466pt;}
.y164{bottom:501.706866pt;}
.y58{bottom:502.026466pt;}
.y1a2{bottom:504.106465pt;}
.y23{bottom:504.746865pt;}
.y145{bottom:508.426463pt;}
.yb3{bottom:513.546461pt;}
.y94{bottom:513.866861pt;}
.ye0{bottom:514.026461pt;}
.y112{bottom:517.066460pt;}
.y163{bottom:517.386860pt;}
.y1a1{bottom:518.186459pt;}
.y53{bottom:519.306459pt;}
.y22{bottom:520.426858pt;}
.y56{bottom:523.306457pt;}
.y144{bottom:523.786457pt;}
.yb2{bottom:529.386455pt;}
.ydf{bottom:529.706455pt;}
.y93{bottom:530.186855pt;}
.y55{bottom:531.786454pt;}
.y1a0{bottom:532.266454pt;}
.y111{bottom:532.746454pt;}
.y162{bottom:532.746854pt;}
.y52{bottom:535.786452pt;}
.y21{bottom:536.106852pt;}
.y143{bottom:539.306451pt;}
.y54{bottom:544.266449pt;}
.yde{bottom:545.386449pt;}
.y19f{bottom:546.346448pt;}
.y57{bottom:548.266447pt;}
.y161{bottom:548.266847pt;}
.y110{bottom:548.426447pt;}
.y92{bottom:548.426847pt;}
.y20{bottom:551.786846pt;}
.yb1{bottom:552.746446pt;}
.y142{bottom:555.146445pt;}
.y19e{bottom:560.426442pt;}
.ydd{bottom:561.066442pt;}
.y10f{bottom:564.106441pt;}
.y91{bottom:564.106841pt;}
.y51{bottom:566.986840pt;}
.y1f{bottom:567.466840pt;}
.yb0{bottom:573.386437pt;}
.y19d{bottom:574.506437pt;}
.ydc{bottom:576.746436pt;}
.y138{bottom:578.026435pt;}
.y141{bottom:578.506435pt;}
.y10e{bottom:579.786435pt;}
.y90{bottom:579.786835pt;}
.y50{bottom:582.666834pt;}
.y1e{bottom:583.146833pt;}
.y19c{bottom:588.586431pt;}
.ydb{bottom:592.426430pt;}
.y10d{bottom:595.466428pt;}
.y8f{bottom:595.466828pt;}
.y4f{bottom:598.346827pt;}
.y137{bottom:598.666427pt;}
.y1d{bottom:598.826827pt;}
.y140{bottom:599.146427pt;}
.y19b{bottom:602.666426pt;}
.yda{bottom:608.106423pt;}
.y10c{bottom:611.146422pt;}
.y8e{bottom:611.146822pt;}
.y4e{bottom:614.026821pt;}
.y1c{bottom:614.506821pt;}
.y19a{bottom:616.746420pt;}
.yd9{bottom:623.786417pt;}
.y10b{bottom:626.826416pt;}
.y8d{bottom:626.826816pt;}
.y4d{bottom:629.706815pt;}
.y1b{bottom:630.186815pt;}
.y199{bottom:630.826414pt;}
.yd8{bottom:639.466411pt;}
.y10a{bottom:642.506410pt;}
.y8c{bottom:642.506810pt;}
.y198{bottom:644.906409pt;}
.y4c{bottom:645.386809pt;}
.y1a{bottom:645.866808pt;}
.yd7{bottom:655.146405pt;}
.y109{bottom:658.186403pt;}
.y8b{bottom:658.186803pt;}
.y197{bottom:658.986403pt;}
.y4b{bottom:661.066802pt;}
.y19{bottom:661.546802pt;}
.yd6{bottom:670.826398pt;}
.y196{bottom:673.066397pt;}
.y108{bottom:673.866397pt;}
.y8a{bottom:673.866797pt;}
.y4a{bottom:676.746796pt;}
.y18{bottom:677.226796pt;}
.yd5{bottom:686.506392pt;}
.y195{bottom:687.146392pt;}
.y107{bottom:689.546391pt;}
.y89{bottom:689.546791pt;}
.y49{bottom:692.426790pt;}
.y17{bottom:692.906790pt;}
.y194{bottom:701.226386pt;}
.yd4{bottom:702.186386pt;}
.y106{bottom:705.226385pt;}
.y88{bottom:705.226785pt;}
.y48{bottom:708.106783pt;}
.y16{bottom:708.586783pt;}
.y193{bottom:715.306381pt;}
.yd3{bottom:717.546380pt;}
.y105{bottom:720.906378pt;}
.y87{bottom:720.906778pt;}
.y47{bottom:723.786777pt;}
.y15{bottom:724.266777pt;}
.y192{bottom:729.386375pt;}
.yd2{bottom:733.066373pt;}
.y104{bottom:736.586372pt;}
.y86{bottom:736.586772pt;}
.y46{bottom:739.466771pt;}
.y14{bottom:739.946771pt;}
.y191{bottom:743.466369pt;}
.yd1{bottom:748.906367pt;}
.y103{bottom:752.266366pt;}
.y85{bottom:752.266766pt;}
.y45{bottom:755.146765pt;}
.y13{bottom:755.626764pt;}
.y12f{bottom:757.546364pt;}
.y102{bottom:767.946359pt;}
.y84{bottom:767.946759pt;}
.y44{bottom:770.826758pt;}
.y12{bottom:770.986758pt;}
.y190{bottom:771.626758pt;}
.yd0{bottom:772.266358pt;}
.y12e{bottom:778.186355pt;}
.y101{bottom:783.626353pt;}
.y83{bottom:783.626753pt;}
.y18f{bottom:785.706752pt;}
.y43{bottom:786.506752pt;}
.y11{bottom:786.826752pt;}
.ycf{bottom:792.906350pt;}
.y100{bottom:799.306347pt;}
.y82{bottom:799.306747pt;}
.y18e{bottom:799.786747pt;}
.y42{bottom:802.186746pt;}
.y10{bottom:802.506746pt;}
.y136{bottom:809.866343pt;}
.y13f{bottom:810.346343pt;}
.y18d{bottom:813.866741pt;}
.yff{bottom:814.986341pt;}
.y81{bottom:814.986741pt;}
.y41{bottom:817.866740pt;}
.yf{bottom:818.186739pt;}
.y18c{bottom:827.946735pt;}
.y135{bottom:830.506334pt;}
.yfe{bottom:830.666334pt;}
.y80{bottom:830.666734pt;}
.y13e{bottom:830.986334pt;}
.y40{bottom:833.546733pt;}
.ye{bottom:833.866733pt;}
.y18b{bottom:842.026730pt;}
.yfd{bottom:846.346328pt;}
.y7f{bottom:846.346728pt;}
.yd{bottom:849.226727pt;}
.y18a{bottom:856.106724pt;}
.yfc{bottom:862.026322pt;}
.y7e{bottom:862.026722pt;}
.yc{bottom:864.746721pt;}
.y3f{bottom:864.906721pt;}
.y189{bottom:870.186719pt;}
.yfb{bottom:877.706316pt;}
.y7d{bottom:877.706716pt;}
.yb{bottom:880.586714pt;}
.y188{bottom:884.266713pt;}
.yfa{bottom:893.386309pt;}
.y7c{bottom:893.386709pt;}
.ya{bottom:896.266708pt;}
.y187{bottom:898.346707pt;}
.yf9{bottom:909.066303pt;}
.y7b{bottom:909.066703pt;}
.y9{bottom:911.946702pt;}
.y186{bottom:912.426702pt;}
.yf8{bottom:924.746297pt;}
.y7a{bottom:924.746697pt;}
.y185{bottom:926.506696pt;}
.y8{bottom:927.626696pt;}
.yf7{bottom:940.426290pt;}
.y79{bottom:940.426690pt;}
.y184{bottom:940.906690pt;}
.y7{bottom:943.306689pt;}
.yf6{bottom:956.106284pt;}
.y78{bottom:956.106684pt;}
.y183{bottom:956.266684pt;}
.y6{bottom:958.986683pt;}
.yf5{bottom:971.786278pt;}
.y77{bottom:971.786678pt;}
.y5{bottom:974.666677pt;}
.yf4{bottom:987.466272pt;}
.y76{bottom:987.466672pt;}
.y182{bottom:987.626672pt;}
.y4{bottom:990.346671pt;}
.yf3{bottom:1003.146265pt;}
.y75{bottom:1003.146665pt;}
.y181{bottom:1003.306665pt;}
.y3{bottom:1006.986664pt;}
.yf2{bottom:1018.826259pt;}
.y74{bottom:1018.826659pt;}
.y180{bottom:1018.986659pt;}
.y2{bottom:1029.066655pt;}
.y17f{bottom:1034.346653pt;}
.yf1{bottom:1034.506253pt;}
.y73{bottom:1034.506653pt;}
.h5{height:25.470972pt;}
.hb{height:32.783987pt;}
.h7{height:43.664264pt;}
.h9{height:44.351982pt;}
.h8{height:45.471766pt;}
.h3{height:49.082860pt;}
.ha{height:50.687980pt;}
.h1{height:50.995180pt;}
.h4{height:59.135976pt;}
.h6{height:59.664257pt;}
.h2{height:71.884771pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xb{left:45.279902pt;}
.x23{left:51.359979pt;}
.x18{left:54.239978pt;}
.x1b{left:60.959976pt;}
.x22{left:63.519975pt;}
.x1c{left:69.919972pt;}
.x1a{left:73.599971pt;}
.x2{left:84.159926pt;}
.x3{left:157.119857pt;}
.x5{left:180.479848pt;}
.x6{left:196.639841pt;}
.x1d{left:209.279916pt;}
.x7{left:287.839805pt;}
.xa{left:316.959793pt;}
.x8{left:335.199786pt;}
.x19{left:343.679863pt;}
.x17{left:373.119851pt;}
.x9{left:377.919769pt;}
.x4{left:396.799761pt;}
.xc{left:420.479752pt;}
.x25{left:426.559829pt;}
.x16{left:432.479827pt;}
.x20{left:436.159826pt;}
.x21{left:445.119822pt;}
.xd{left:447.199821pt;}
.x1f{left:448.799820pt;}
.x1{left:464.959814pt;}
.x13{left:553.279779pt;}
.x10{left:562.399775pt;}
.x24{left:584.479766pt;}
.x12{left:586.239766pt;}
.x11{left:587.359765pt;}
.xe{left:596.959761pt;}
.xf{left:598.079761pt;}
.x14{left:641.919743pt;}
.x1e{left:718.879712pt;}
.x15{left:748.319701pt;}
}




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