
    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_e69891cb45fca648b6c3e4c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f58da940a4c5173be53e858c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_660bf52ab3a97bfc996840c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_07896029370a31d6a0bea5c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_4e9bb90681b23e86313f4951.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_56d39309b363ddd365e6333f.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010553px;}
.ls5{letter-spacing:0.010620px;}
.ls2{letter-spacing:0.010641px;}
.ls6{letter-spacing:2.892299px;}
.ls3{letter-spacing:10.989296px;}
.ls1{letter-spacing:46.117782px;}
.ls4{letter-spacing:194.525322px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.939994px;}
.ws3{word-spacing:-12.059995px;}
.ws4{word-spacing:-9.719996px;}
.ws1{word-spacing:0.000000px;}
._21{margin-left:-5.039241px;}
._9{margin-left:-2.139990px;}
._6{margin-left:-1.049726px;}
._1{width:1.028662px;}
._5{width:2.569540px;}
._d{width:3.666971px;}
._7{width:4.844573px;}
._8{width:6.122646px;}
._c{width:8.090230px;}
._b{width:9.104541px;}
._11{width:10.952821px;}
._2{width:12.562536px;}
._13{width:14.305788px;}
._18{width:15.786797px;}
._1a{width:16.913479px;}
._22{width:18.013242px;}
._f{width:19.051324px;}
._e{width:20.064318px;}
._1b{width:21.089847px;}
._3{width:22.109823px;}
._4{width:23.207169px;}
._a{width:24.357330px;}
._14{width:26.023013px;}
._15{width:27.247124px;}
._17{width:28.758246px;}
._12{width:30.048800px;}
._10{width:31.596005px;}
._1e{width:33.342667px;}
._23{width:34.342976px;}
._24{width:36.295472px;}
._16{width:37.401863px;}
._1d{width:41.994811px;}
._1f{width:44.020317px;}
._19{width:46.266652px;}
._1c{width:51.136004px;}
._26{width:52.471803px;}
._20{width:194.525202px;}
._25{width:2462.423015px;}
._0{width:2498.441001px;}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720277px;}
.y114{bottom:110.099956px;}
.ydd{bottom:113.699955px;}
.y31{bottom:113.700255px;}
.y68{bottom:119.099952px;}
.ybe{bottom:119.100252px;}
.yf6{bottom:125.039950px;}
.y113{bottom:127.379949px;}
.y8e{bottom:128.100249px;}
.ydc{bottom:134.399946px;}
.y30{bottom:134.400246px;}
.y67{bottom:136.379945px;}
.ybd{bottom:136.380245px;}
.ybc{bottom:141.600243px;}
.yf5{bottom:142.499943px;}
.y112{bottom:144.659942px;}
.y8d{bottom:148.800240px;}
.y66{bottom:153.659939px;}
.ydb{bottom:155.099938px;}
.y2f{bottom:155.100238px;}
.yf4{bottom:159.599936px;}
.y111{bottom:161.939935px;}
.ybb{bottom:162.659935px;}
.y8c{bottom:169.500232px;}
.y65{bottom:170.939932px;}
.yda{bottom:175.799930px;}
.y2e{bottom:175.800230px;}
.yf3{bottom:176.879929px;}
.y110{bottom:179.219928px;}
.yba{bottom:179.939928px;}
.y13a{bottom:184.439926px;}
.y15f{bottom:185.159926px;}
.y64{bottom:188.219925px;}
.y8b{bottom:190.200224px;}
.yf2{bottom:194.159922px;}
.yd9{bottom:196.499921px;}
.y2d{bottom:196.500221px;}
.yb9{bottom:197.219921px;}
.y63{bottom:205.499918px;}
.y15e{bottom:206.219918px;}
.yf1{bottom:211.439915px;}
.y10f{bottom:213.599915px;}
.yb8{bottom:214.499914px;}
.yd8{bottom:217.199913px;}
.yb7{bottom:219.719912px;}
.y8a{bottom:219.900212px;}
.y62{bottom:222.599911px;}
.y15d{bottom:223.499911px;}
.y2c{bottom:226.200210px;}
.yf0{bottom:228.719909px;}
.y10e{bottom:230.879908px;}
.yb6{bottom:232.499907px;}
.yd7{bottom:237.900205px;}
.y61{bottom:239.879904px;}
.y15c{bottom:240.599904px;}
.y89{bottom:240.600204px;}
.y139{bottom:245.099902px;}
.y15b{bottom:245.819902px;}
.yef{bottom:245.999902px;}
.y2b{bottom:246.900201px;}
.y10d{bottom:248.159901px;}
.y10c{bottom:253.379899px;}
.yb5{bottom:255.899898px;}
.y60{bottom:257.159897px;}
.yd6{bottom:258.600197px;}
.y88{bottom:261.300195px;}
.yee{bottom:263.099895px;}
.y10b{bottom:266.159894px;}
.y15a{bottom:266.879893px;}
.y2a{bottom:267.600193px;}
.y5f{bottom:274.439890px;}
.yb4{bottom:276.599889px;}
.yd5{bottom:279.300188px;}
.yed{bottom:280.379888px;}
.y87{bottom:282.000187px;}
.y138{bottom:283.439887px;}
.y159{bottom:284.159886px;}
.y29{bottom:288.300185px;}
.y5e{bottom:291.719883px;}
.yec{bottom:297.659881px;}
.yd4{bottom:300.000180px;}
.y137{bottom:300.719880px;}
.y158{bottom:301.439879px;}
.y86{bottom:302.700179px;}
.yb3{bottom:306.299877px;}
.y5d{bottom:308.819876px;}
.y109{bottom:308.999876px;}
.y28{bottom:309.000176px;}
.yeb{bottom:314.939874px;}
.y10a{bottom:315.839874px;}
.y136{bottom:317.819873px;}
.y157{bottom:319.439872px;}
.yd3{bottom:320.700172px;}
.y85{bottom:323.400171px;}
.y5c{bottom:326.099870px;}
.yb2{bottom:326.999869px;}
.y108{bottom:329.699868px;}
.y27{bottom:329.700168px;}
.yea{bottom:332.219867px;}
.y135{bottom:335.099866px;}
.yd2{bottom:341.400163px;}
.y5b{bottom:343.379863px;}
.y84{bottom:344.100162px;}
.yb1{bottom:347.699861px;}
.ye9{bottom:349.319860px;}
.y107{bottom:350.399860px;}
.y26{bottom:350.400160px;}
.y134{bottom:352.379859px;}
.y156{bottom:356.699857px;}
.y5a{bottom:360.659856px;}
.yd1{bottom:362.100155px;}
.y83{bottom:364.800154px;}
.ye8{bottom:366.599853px;}
.yb0{bottom:368.399853px;}
.y133{bottom:369.659852px;}
.y106{bottom:371.099852px;}
.y25{bottom:371.100152px;}
.y155{bottom:377.399849px;}
.y59{bottom:377.939849px;}
.yd0{bottom:382.800147px;}
.ye7{bottom:383.879846px;}
.y82{bottom:385.500146px;}
.y132{bottom:386.939845px;}
.yaf{bottom:389.099844px;}
.y105{bottom:391.799843px;}
.y24{bottom:391.800143px;}
.y58{bottom:395.219842px;}
.y154{bottom:398.099841px;}
.ye6{bottom:401.159840px;}
.ycf{bottom:403.500139px;}
.y131{bottom:404.219838px;}
.y81{bottom:406.200138px;}
.yae{bottom:409.799836px;}
.y57{bottom:412.319835px;}
.y104{bottom:412.499835px;}
.y23{bottom:412.500135px;}
.ye5{bottom:418.439833px;}
.y153{bottom:418.799832px;}
.y130{bottom:421.319831px;}
.yce{bottom:424.200130px;}
.y80{bottom:426.900129px;}
.y56{bottom:429.599828px;}
.yac{bottom:430.499828px;}
.y103{bottom:433.199827px;}
.y22{bottom:433.200127px;}
.ye4{bottom:435.719826px;}
.yad{bottom:437.339825px;}
.y12f{bottom:438.599825px;}
.y152{bottom:439.499824px;}
.y55{bottom:446.879821px;}
.y7f{bottom:447.600121px;}
.yab{bottom:451.199820px;}
.ye3{bottom:452.819819px;}
.ycd{bottom:453.900118px;}
.y12e{bottom:455.879818px;}
.y151{bottom:460.199816px;}
.y21{bottom:462.540115px;}
.y102{bottom:462.899815px;}
.y54{bottom:464.159814px;}
.y7e{bottom:468.300113px;}
.ye2{bottom:470.099812px;}
.yaa{bottom:471.899811px;}
.y12d{bottom:473.159811px;}
.ycc{bottom:474.600110px;}
.ye1{bottom:475.319810px;}
.y150{bottom:480.899808px;}
.y53{bottom:481.439807px;}
.y20{bottom:483.240107px;}
.y101{bottom:483.599807px;}
.ye0{bottom:488.099805px;}
.y7d{bottom:489.000104px;}
.y12c{bottom:490.439804px;}
.ycb{bottom:495.300102px;}
.y52{bottom:498.899800px;}
.ya9{bottom:501.599799px;}
.y51{bottom:504.119798px;}
.y100{bottom:504.299798px;}
.y12b{bottom:507.719797px;}
.y7c{bottom:509.700096px;}
.y1f{bottom:513.300095px;}
.yca{bottom:516.000094px;}
.y50{bottom:517.619793px;}
.ya8{bottom:522.299791px;}
.y12a{bottom:524.819790px;}
.yff{bottom:524.999790px;}
.y7b{bottom:530.400088px;}
.y1e{bottom:534.000086px;}
.yc9{bottom:536.700085px;}
.y129{bottom:542.099783px;}
.ya7{bottom:542.999783px;}
.yfe{bottom:545.699782px;}
.y4f{bottom:554.699778px;}
.y1d{bottom:554.700078px;}
.yc8{bottom:557.400077px;}
.y128{bottom:559.379776px;}
.y7a{bottom:560.100076px;}
.ya6{bottom:563.699775px;}
.yfd{bottom:566.399773px;}
.y4e{bottom:575.399770px;}
.y1c{bottom:575.400070px;}
.y127{bottom:576.659769px;}
.yc7{bottom:578.100069px;}
.y79{bottom:580.800068px;}
.ya5{bottom:584.399766px;}
.yfc{bottom:587.099765px;}
.y14f{bottom:593.399763px;}
.y126{bottom:594.659762px;}
.y4d{bottom:596.099762px;}
.y1b{bottom:596.100062px;}
.yc6{bottom:598.800060px;}
.y78{bottom:601.500059px;}
.ya4{bottom:605.099758px;}
.ya2{bottom:605.100058px;}
.yfb{bottom:607.799757px;}
.ya3{bottom:611.939755px;}
.y14e{bottom:614.099754px;}
.y4c{bottom:616.799753px;}
.y1a{bottom:616.800053px;}
.y77{bottom:622.200051px;}
.y124{bottom:625.799750px;}
.ya1{bottom:625.800050px;}
.yfa{bottom:628.499749px;}
.yc5{bottom:628.500049px;}
.y125{bottom:632.639747px;}
.y14d{bottom:634.799746px;}
.y4b{bottom:637.499745px;}
.y19{bottom:637.500045px;}
.y76{bottom:642.900043px;}
.y123{bottom:646.499741px;}
.ya0{bottom:646.500041px;}
.yf9{bottom:649.199740px;}
.yc4{bottom:649.200040px;}
.y14c{bottom:655.499738px;}
.y4a{bottom:658.199737px;}
.y18{bottom:658.200037px;}
.y75{bottom:663.600035px;}
.y122{bottom:667.199733px;}
.y9f{bottom:667.200033px;}
.yc3{bottom:669.900032px;}
.y14b{bottom:676.199730px;}
.yf8{bottom:678.540029px;}
.y49{bottom:678.899728px;}
.y17{bottom:678.900028px;}
.y121{bottom:687.899725px;}
.y9e{bottom:687.900025px;}
.y74{bottom:693.300023px;}
.y14a{bottom:696.899721px;}
.yc2{bottom:699.240020px;}
.ydf{bottom:699.599720px;}
.y48{bottom:708.599717px;}
.y16{bottom:708.600017px;}
.y16f{bottom:711.300015px;}
.y73{bottom:714.000014px;}
.y149{bottom:717.599713px;}
.yc1{bottom:719.940012px;}
.y47{bottom:729.299708px;}
.y15{bottom:729.300008px;}
.y16e{bottom:732.000007px;}
.y72{bottom:734.700006px;}
.y148{bottom:738.299705px;}
.y46{bottom:749.999700px;}
.y14{bottom:750.000000px;}
.y16d{bottom:752.699999px;}
.y71{bottom:755.399998px;}
.y147{bottom:758.999696px;}
.y9d{bottom:758.999996px;}
.y45{bottom:770.699692px;}
.y13{bottom:770.699992px;}
.y16c{bottom:773.399991px;}
.y9c{bottom:779.699988px;}
.y70{bottom:784.739986px;}
.y146{bottom:788.699685px;}
.y44{bottom:791.399683px;}
.y12{bottom:791.399983px;}
.y16b{bottom:794.099982px;}
.y9b{bottom:800.399980px;}
.y145{bottom:809.399676px;}
.y43{bottom:812.099675px;}
.y11{bottom:812.099975px;}
.y6f{bottom:814.439974px;}
.y120{bottom:821.099672px;}
.y9a{bottom:821.099972px;}
.y16a{bottom:823.799970px;}
.y144{bottom:830.099668px;}
.y42{bottom:832.799667px;}
.y10{bottom:832.799967px;}
.y11f{bottom:841.799663px;}
.y99{bottom:841.799963px;}
.y6e{bottom:844.499962px;}
.y143{bottom:850.799660px;}
.y41{bottom:853.499659px;}
.yf{bottom:853.499959px;}
.y11e{bottom:862.499655px;}
.y98{bottom:862.499955px;}
.y169{bottom:865.199954px;}
.y141{bottom:871.499651px;}
.y40{bottom:874.199650px;}
.ye{bottom:874.199950px;}
.y142{bottom:878.339649px;}
.y11d{bottom:883.199647px;}
.y97{bottom:883.199947px;}
.y168{bottom:885.899946px;}
.y140{bottom:892.199643px;}
.yd{bottom:894.899942px;}
.y3f{bottom:903.899638px;}
.y96{bottom:903.899938px;}
.y167{bottom:906.599937px;}
.y13f{bottom:912.899635px;}
.yc{bottom:915.599934px;}
.y3e{bottom:924.599630px;}
.y95{bottom:924.599930px;}
.y166{bottom:927.299929px;}
.y13e{bottom:933.599627px;}
.yf7{bottom:933.599927px;}
.yb{bottom:936.299925px;}
.y3d{bottom:945.299622px;}
.yc0{bottom:945.299922px;}
.y165{bottom:947.999921px;}
.y11c{bottom:954.299618px;}
.y94{bottom:954.299918px;}
.ya{bottom:956.999917px;}
.y3c{bottom:965.999614px;}
.ybf{bottom:965.999914px;}
.y164{bottom:968.699913px;}
.y11b{bottom:974.999610px;}
.y93{bottom:974.999910px;}
.y9{bottom:977.699909px;}
.y3b{bottom:986.699605px;}
.y163{bottom:989.399904px;}
.y11a{bottom:995.699602px;}
.y92{bottom:995.699902px;}
.y8{bottom:998.399901px;}
.y3a{bottom:1007.399597px;}
.y6d{bottom:1007.399897px;}
.y162{bottom:1010.099896px;}
.y119{bottom:1016.399593px;}
.y91{bottom:1016.399893px;}
.y7{bottom:1019.099892px;}
.y13d{bottom:1023.239591px;}
.y39{bottom:1028.099589px;}
.y6c{bottom:1028.099889px;}
.y161{bottom:1030.799888px;}
.y118{bottom:1037.099585px;}
.y90{bottom:1037.099885px;}
.y6{bottom:1039.799884px;}
.y38{bottom:1048.799580px;}
.y6b{bottom:1048.799880px;}
.yde{bottom:1055.639578px;}
.y117{bottom:1057.799577px;}
.y8f{bottom:1057.799877px;}
.y160{bottom:1060.139876px;}
.y5{bottom:1060.499876px;}
.y6a{bottom:1069.499872px;}
.y37{bottom:1078.499569px;}
.y35{bottom:1078.499869px;}
.y4{bottom:1080.839868px;}
.y36{bottom:1085.339566px;}
.y69{bottom:1090.199864px;}
.y116{bottom:1099.199560px;}
.y34{bottom:1099.199860px;}
.y115{bottom:1106.039558px;}
.y3{bottom:1110.539856px;}
.y13c{bottom:1119.899552px;}
.y33{bottom:1119.899852px;}
.y2{bottom:1140.239844px;}
.y13b{bottom:1140.599544px;}
.y32{bottom:1140.599844px;}
.h5{height:25.913662px;}
.h9{height:38.158578px;}
.h4{height:47.344903px;}
.hb{height:53.999978px;}
.h7{height:58.621969px;}
.h6{height:58.651148px;}
.h8{height:62.327788px;}
.h3{height:70.628878px;}
.h1{height:70.664034px;}
.ha{height:70.665234px;}
.h2{height:72.562471px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xb{left:132.479947px;}
.x1d{left:137.339945px;}
.x9{left:180.717869px;}
.x2{left:199.799309px;}
.x13{left:216.719913px;}
.x14{left:222.839911px;}
.x15{left:224.819910px;}
.x16{left:230.939908px;}
.x3{left:276.119223px;}
.xa{left:282.239887px;}
.xc{left:339.119864px;}
.xd{left:345.239862px;}
.x1a{left:346.499861px;}
.x1b{left:352.619859px;}
.x8{left:446.396919px;}
.x18{left:476.459809px;}
.x19{left:482.579807px;}
.x10{left:527.579789px;}
.x11{left:533.699787px;}
.x4{left:574.378527px;}
.x5{left:575.458526px;}
.x12{left:581.939767px;}
.xe{left:592.379763px;}
.x6{left:597.418454px;}
.xf{left:598.499761px;}
.x17{left:692.279723px;}
.x1c{left:753.119699px;}
.x7{left:765.358243px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009381pt;}
.ls5{letter-spacing:0.009440pt;}
.ls2{letter-spacing:0.009459pt;}
.ls6{letter-spacing:2.570932pt;}
.ls3{letter-spacing:9.768263pt;}
.ls1{letter-spacing:40.993584pt;}
.ls4{letter-spacing:172.911398pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.279995pt;}
.ws3{word-spacing:-10.719996pt;}
.ws4{word-spacing:-8.639997pt;}
.ws1{word-spacing:0.000000pt;}
._21{margin-left:-4.479326pt;}
._9{margin-left:-1.902214pt;}
._6{margin-left:-0.933090pt;}
._1{width:0.914366pt;}
._5{width:2.284035pt;}
._d{width:3.259530pt;}
._7{width:4.306287pt;}
._8{width:5.442352pt;}
._c{width:7.191316pt;}
._b{width:8.092925pt;}
._11{width:9.735841pt;}
._2{width:11.166699pt;}
._13{width:12.716256pt;}
._18{width:14.032709pt;}
._1a{width:15.034204pt;}
._22{width:16.011771pt;}
._f{width:16.934510pt;}
._e{width:17.834949pt;}
._1b{width:18.746531pt;}
._3{width:19.653176pt;}
._4{width:20.628595pt;}
._a{width:21.650960pt;}
._14{width:23.131567pt;}
._15{width:24.219665pt;}
._17{width:25.562885pt;}
._12{width:26.710045pt;}
._10{width:28.085338pt;}
._1e{width:29.637926pt;}
._23{width:30.527090pt;}
._24{width:32.262642pt;}
._16{width:33.246100pt;}
._1d{width:37.328721pt;}
._1f{width:39.129170pt;}
._19{width:41.125913pt;}
._1c{width:45.454226pt;}
._26{width:46.641602pt;}
._20{width:172.911291pt;}
._25{width:2188.820458pt;}
._0{width:2220.836445pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.306913pt;}
.y114{bottom:97.866628pt;}
.ydd{bottom:101.066626pt;}
.y31{bottom:101.066893pt;}
.y68{bottom:105.866624pt;}
.ybe{bottom:105.866891pt;}
.yf6{bottom:111.146622pt;}
.y113{bottom:113.226621pt;}
.y8e{bottom:113.866888pt;}
.ydc{bottom:119.466619pt;}
.y30{bottom:119.466886pt;}
.y67{bottom:121.226618pt;}
.ybd{bottom:121.226885pt;}
.ybc{bottom:125.866883pt;}
.yf5{bottom:126.666616pt;}
.y112{bottom:128.586615pt;}
.y8d{bottom:132.266880pt;}
.y66{bottom:136.586612pt;}
.ydb{bottom:137.866612pt;}
.y2f{bottom:137.866878pt;}
.yf4{bottom:141.866610pt;}
.y111{bottom:143.946609pt;}
.ybb{bottom:144.586609pt;}
.y8c{bottom:150.666873pt;}
.y65{bottom:151.946606pt;}
.yda{bottom:156.266604pt;}
.y2e{bottom:156.266871pt;}
.yf3{bottom:157.226604pt;}
.y110{bottom:159.306603pt;}
.yba{bottom:159.946603pt;}
.y13a{bottom:163.946601pt;}
.y15f{bottom:164.586601pt;}
.y64{bottom:167.306600pt;}
.y8b{bottom:169.066866pt;}
.yf2{bottom:172.586598pt;}
.yd9{bottom:174.666597pt;}
.y2d{bottom:174.666863pt;}
.yb9{bottom:175.306597pt;}
.y63{bottom:182.666594pt;}
.y15e{bottom:183.306593pt;}
.yf1{bottom:187.946591pt;}
.y10f{bottom:189.866591pt;}
.yb8{bottom:190.666590pt;}
.yd8{bottom:193.066589pt;}
.yb7{bottom:195.306589pt;}
.y8a{bottom:195.466855pt;}
.y62{bottom:197.866588pt;}
.y15d{bottom:198.666587pt;}
.y2c{bottom:201.066853pt;}
.yf0{bottom:203.306585pt;}
.y10e{bottom:205.226585pt;}
.yb6{bottom:206.666584pt;}
.yd7{bottom:211.466849pt;}
.y61{bottom:213.226581pt;}
.y15c{bottom:213.866581pt;}
.y89{bottom:213.866848pt;}
.y139{bottom:217.866580pt;}
.y15b{bottom:218.506579pt;}
.yef{bottom:218.666579pt;}
.y2b{bottom:219.466846pt;}
.y10d{bottom:220.586578pt;}
.y10c{bottom:225.226577pt;}
.yb5{bottom:227.466576pt;}
.y60{bottom:228.586575pt;}
.yd6{bottom:229.866841pt;}
.y88{bottom:232.266840pt;}
.yee{bottom:233.866573pt;}
.y10b{bottom:236.586572pt;}
.y15a{bottom:237.226572pt;}
.y2a{bottom:237.866838pt;}
.y5f{bottom:243.946569pt;}
.yb4{bottom:245.866568pt;}
.yd5{bottom:248.266834pt;}
.yed{bottom:249.226567pt;}
.y87{bottom:250.666833pt;}
.y138{bottom:251.946566pt;}
.y159{bottom:252.586566pt;}
.y29{bottom:256.266831pt;}
.y5e{bottom:259.306563pt;}
.yec{bottom:264.586561pt;}
.yd4{bottom:266.666827pt;}
.y137{bottom:267.306560pt;}
.y158{bottom:267.946559pt;}
.y86{bottom:269.066826pt;}
.yb3{bottom:272.266558pt;}
.y5d{bottom:274.506557pt;}
.y109{bottom:274.666557pt;}
.y28{bottom:274.666823pt;}
.yeb{bottom:279.946555pt;}
.y10a{bottom:280.746554pt;}
.y136{bottom:282.506554pt;}
.y157{bottom:283.946553pt;}
.yd3{bottom:285.066819pt;}
.y85{bottom:287.466818pt;}
.y5c{bottom:289.866551pt;}
.yb2{bottom:290.666550pt;}
.y108{bottom:293.066549pt;}
.y27{bottom:293.066816pt;}
.yea{bottom:295.306549pt;}
.y135{bottom:297.866548pt;}
.yd2{bottom:303.466812pt;}
.y5b{bottom:305.226545pt;}
.y84{bottom:305.866811pt;}
.yb1{bottom:309.066543pt;}
.ye9{bottom:310.506542pt;}
.y107{bottom:311.466542pt;}
.y26{bottom:311.466809pt;}
.y134{bottom:313.226541pt;}
.y156{bottom:317.066540pt;}
.y5a{bottom:320.586538pt;}
.yd1{bottom:321.866805pt;}
.y83{bottom:324.266804pt;}
.ye8{bottom:325.866536pt;}
.yb0{bottom:327.466536pt;}
.y133{bottom:328.586535pt;}
.y106{bottom:329.866535pt;}
.y25{bottom:329.866801pt;}
.y155{bottom:335.466532pt;}
.y59{bottom:335.946532pt;}
.yd0{bottom:340.266797pt;}
.ye7{bottom:341.226530pt;}
.y82{bottom:342.666796pt;}
.y132{bottom:343.946529pt;}
.yaf{bottom:345.866528pt;}
.y105{bottom:348.266527pt;}
.y24{bottom:348.266794pt;}
.y58{bottom:351.306526pt;}
.y154{bottom:353.866525pt;}
.ye6{bottom:356.586524pt;}
.ycf{bottom:358.666790pt;}
.y131{bottom:359.306523pt;}
.y81{bottom:361.066789pt;}
.yae{bottom:364.266521pt;}
.y57{bottom:366.506520pt;}
.y104{bottom:366.666520pt;}
.y23{bottom:366.666787pt;}
.ye5{bottom:371.946518pt;}
.y153{bottom:372.266518pt;}
.y130{bottom:374.506517pt;}
.yce{bottom:377.066783pt;}
.y80{bottom:379.466782pt;}
.y56{bottom:381.866514pt;}
.yac{bottom:382.666514pt;}
.y103{bottom:385.066513pt;}
.y22{bottom:385.066779pt;}
.ye4{bottom:387.306512pt;}
.yad{bottom:388.746511pt;}
.y12f{bottom:389.866511pt;}
.y152{bottom:390.666510pt;}
.y55{bottom:397.226508pt;}
.y7f{bottom:397.866774pt;}
.yab{bottom:401.066506pt;}
.ye3{bottom:402.506506pt;}
.ycd{bottom:403.466772pt;}
.y12e{bottom:405.226505pt;}
.y151{bottom:409.066503pt;}
.y21{bottom:411.146769pt;}
.y102{bottom:411.466502pt;}
.y54{bottom:412.586502pt;}
.y7e{bottom:416.266767pt;}
.ye2{bottom:417.866500pt;}
.yaa{bottom:419.466499pt;}
.y12d{bottom:420.586498pt;}
.ycc{bottom:421.866765pt;}
.ye1{bottom:422.506498pt;}
.y150{bottom:427.466496pt;}
.y53{bottom:427.946495pt;}
.y20{bottom:429.546762pt;}
.y101{bottom:429.866495pt;}
.ye0{bottom:433.866493pt;}
.y7d{bottom:434.666759pt;}
.y12c{bottom:435.946492pt;}
.ycb{bottom:440.266757pt;}
.y52{bottom:443.466489pt;}
.ya9{bottom:445.866488pt;}
.y51{bottom:448.106487pt;}
.y100{bottom:448.266487pt;}
.y12b{bottom:451.306486pt;}
.y7c{bottom:453.066752pt;}
.y1f{bottom:456.266751pt;}
.yca{bottom:458.666750pt;}
.y50{bottom:460.106483pt;}
.ya8{bottom:464.266481pt;}
.y12a{bottom:466.506480pt;}
.yff{bottom:466.666480pt;}
.y7b{bottom:471.466745pt;}
.y1e{bottom:474.666743pt;}
.yc9{bottom:477.066743pt;}
.y129{bottom:481.866474pt;}
.ya7{bottom:482.666474pt;}
.yfe{bottom:485.066473pt;}
.y4f{bottom:493.066469pt;}
.y1d{bottom:493.066736pt;}
.yc8{bottom:495.466735pt;}
.y128{bottom:497.226468pt;}
.y7a{bottom:497.866734pt;}
.ya6{bottom:501.066466pt;}
.yfd{bottom:503.466465pt;}
.y4e{bottom:511.466462pt;}
.y1c{bottom:511.466729pt;}
.y127{bottom:512.586462pt;}
.yc7{bottom:513.866728pt;}
.y79{bottom:516.266727pt;}
.ya5{bottom:519.466459pt;}
.yfc{bottom:521.866458pt;}
.y14f{bottom:527.466456pt;}
.y126{bottom:528.586455pt;}
.y4d{bottom:529.866455pt;}
.y1b{bottom:529.866721pt;}
.yc6{bottom:532.266720pt;}
.y78{bottom:534.666719pt;}
.ya4{bottom:537.866452pt;}
.ya2{bottom:537.866718pt;}
.yfb{bottom:540.266451pt;}
.ya3{bottom:543.946449pt;}
.y14e{bottom:545.866448pt;}
.y4c{bottom:548.266447pt;}
.y1a{bottom:548.266714pt;}
.y77{bottom:553.066712pt;}
.y124{bottom:556.266444pt;}
.ya1{bottom:556.266711pt;}
.yfa{bottom:558.666443pt;}
.yc5{bottom:558.666710pt;}
.y125{bottom:562.346442pt;}
.y14d{bottom:564.266441pt;}
.y4b{bottom:566.666440pt;}
.y19{bottom:566.666707pt;}
.y76{bottom:571.466705pt;}
.y123{bottom:574.666437pt;}
.ya0{bottom:574.666703pt;}
.yf9{bottom:577.066436pt;}
.yc4{bottom:577.066703pt;}
.y14c{bottom:582.666434pt;}
.y4a{bottom:585.066433pt;}
.y18{bottom:585.066699pt;}
.y75{bottom:589.866697pt;}
.y122{bottom:593.066429pt;}
.y9f{bottom:593.066696pt;}
.yc3{bottom:595.466695pt;}
.y14b{bottom:601.066426pt;}
.yf8{bottom:603.146692pt;}
.y49{bottom:603.466425pt;}
.y17{bottom:603.466692pt;}
.y121{bottom:611.466422pt;}
.y9e{bottom:611.466689pt;}
.y74{bottom:616.266687pt;}
.y14a{bottom:619.466419pt;}
.yc2{bottom:621.546685pt;}
.ydf{bottom:621.866418pt;}
.y48{bottom:629.866415pt;}
.y16{bottom:629.866681pt;}
.y16f{bottom:632.266680pt;}
.y73{bottom:634.666679pt;}
.y149{bottom:637.866412pt;}
.yc1{bottom:639.946677pt;}
.y47{bottom:648.266407pt;}
.y15{bottom:648.266674pt;}
.y16e{bottom:650.666673pt;}
.y72{bottom:653.066672pt;}
.y148{bottom:656.266404pt;}
.y46{bottom:666.666400pt;}
.y14{bottom:666.666667pt;}
.y16d{bottom:669.066666pt;}
.y71{bottom:671.466665pt;}
.y147{bottom:674.666397pt;}
.y9d{bottom:674.666663pt;}
.y45{bottom:685.066393pt;}
.y13{bottom:685.066659pt;}
.y16c{bottom:687.466658pt;}
.y9c{bottom:693.066656pt;}
.y70{bottom:697.546654pt;}
.y146{bottom:701.066386pt;}
.y44{bottom:703.466385pt;}
.y12{bottom:703.466652pt;}
.y16b{bottom:705.866651pt;}
.y9b{bottom:711.466649pt;}
.y145{bottom:719.466379pt;}
.y43{bottom:721.866378pt;}
.y11{bottom:721.866645pt;}
.y6f{bottom:723.946644pt;}
.y120{bottom:729.866375pt;}
.y9a{bottom:729.866641pt;}
.y16a{bottom:732.266640pt;}
.y144{bottom:737.866372pt;}
.y42{bottom:740.266371pt;}
.y10{bottom:740.266637pt;}
.y11f{bottom:748.266367pt;}
.y99{bottom:748.266634pt;}
.y6e{bottom:750.666633pt;}
.y143{bottom:756.266364pt;}
.y41{bottom:758.666363pt;}
.yf{bottom:758.666630pt;}
.y11e{bottom:766.666360pt;}
.y98{bottom:766.666627pt;}
.y169{bottom:769.066626pt;}
.y141{bottom:774.666357pt;}
.y40{bottom:777.066356pt;}
.ye{bottom:777.066623pt;}
.y142{bottom:780.746354pt;}
.y11d{bottom:785.066353pt;}
.y97{bottom:785.066619pt;}
.y168{bottom:787.466618pt;}
.y140{bottom:793.066349pt;}
.yd{bottom:795.466615pt;}
.y3f{bottom:803.466345pt;}
.y96{bottom:803.466612pt;}
.y167{bottom:805.866611pt;}
.y13f{bottom:811.466342pt;}
.yc{bottom:813.866608pt;}
.y3e{bottom:821.866338pt;}
.y95{bottom:821.866605pt;}
.y166{bottom:824.266604pt;}
.y13e{bottom:829.866335pt;}
.yf7{bottom:829.866601pt;}
.yb{bottom:832.266600pt;}
.y3d{bottom:840.266331pt;}
.yc0{bottom:840.266597pt;}
.y165{bottom:842.666596pt;}
.y11c{bottom:848.266327pt;}
.y94{bottom:848.266594pt;}
.ya{bottom:850.666593pt;}
.y3c{bottom:858.666323pt;}
.ybf{bottom:858.666590pt;}
.y164{bottom:861.066589pt;}
.y11b{bottom:866.666320pt;}
.y93{bottom:866.666587pt;}
.y9{bottom:869.066586pt;}
.y3b{bottom:877.066316pt;}
.y163{bottom:879.466582pt;}
.y11a{bottom:885.066313pt;}
.y92{bottom:885.066579pt;}
.y8{bottom:887.466578pt;}
.y3a{bottom:895.466308pt;}
.y6d{bottom:895.466575pt;}
.y162{bottom:897.866574pt;}
.y119{bottom:903.466305pt;}
.y91{bottom:903.466572pt;}
.y7{bottom:905.866571pt;}
.y13d{bottom:909.546303pt;}
.y39{bottom:913.866301pt;}
.y6c{bottom:913.866568pt;}
.y161{bottom:916.266567pt;}
.y118{bottom:921.866298pt;}
.y90{bottom:921.866565pt;}
.y6{bottom:924.266564pt;}
.y38{bottom:932.266294pt;}
.y6b{bottom:932.266560pt;}
.yde{bottom:938.346291pt;}
.y117{bottom:940.266291pt;}
.y8f{bottom:940.266557pt;}
.y160{bottom:942.346556pt;}
.y5{bottom:942.666556pt;}
.y6a{bottom:950.666553pt;}
.y37{bottom:958.666283pt;}
.y35{bottom:958.666550pt;}
.y4{bottom:960.746549pt;}
.y36{bottom:964.746281pt;}
.y69{bottom:969.066546pt;}
.y116{bottom:977.066276pt;}
.y34{bottom:977.066543pt;}
.y115{bottom:983.146273pt;}
.y3{bottom:987.146538pt;}
.y13c{bottom:995.466268pt;}
.y33{bottom:995.466535pt;}
.y2{bottom:1013.546528pt;}
.y13b{bottom:1013.866261pt;}
.y32{bottom:1013.866528pt;}
.h5{height:23.034366pt;}
.h9{height:33.918736pt;}
.h4{height:42.084358pt;}
.hb{height:47.999981pt;}
.h7{height:52.108417pt;}
.h6{height:52.134354pt;}
.h8{height:55.402478pt;}
.h3{height:62.781225pt;}
.h1{height:62.812475pt;}
.ha{height:62.813542pt;}
.h2{height:64.499974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xb{left:117.759953pt;}
.x1d{left:122.079951pt;}
.x9{left:160.638106pt;}
.x2{left:177.599386pt;}
.x13{left:192.639923pt;}
.x14{left:198.079921pt;}
.x15{left:199.839920pt;}
.x16{left:205.279918pt;}
.x3{left:245.439310pt;}
.xa{left:250.879900pt;}
.xc{left:301.439879pt;}
.xd{left:306.879877pt;}
.x1a{left:307.999877pt;}
.x1b{left:313.439875pt;}
.x8{left:396.797262pt;}
.x18{left:423.519831pt;}
.x19{left:428.959828pt;}
.x10{left:468.959812pt;}
.x11{left:474.399810pt;}
.x4{left:510.558691pt;}
.x5{left:511.518690pt;}
.x12{left:517.279793pt;}
.xe{left:526.559789pt;}
.x6{left:531.038625pt;}
.xf{left:531.999787pt;}
.x17{left:615.359754pt;}
.x1c{left:669.439732pt;}
.x7{left:680.318439pt;}
}




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