
    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_fb166220c0c8d50d03951d21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106957;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_2228ab8899545136e5468e36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_9f5afcdc253a8663347d76cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.050688px;}
.ls0{letter-spacing:0.220608px;}
.ls1{letter-spacing:0.245376px;}
.ls3{letter-spacing:0.626688px;}
.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:-18.050688px;}
.ws1{word-spacing:-17.805312px;}
.ws2{word-spacing:-16.560331px;}
.ws0{word-spacing:-15.482304px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-8.843328px;}
._9{margin-left:-5.551488px;}
._2{margin-left:-4.527360px;}
._5{margin-left:-2.521728px;}
._3{margin-left:-1.022400px;}
._0{width:1.368000px;}
._8{width:2.506752px;}
._b{width:3.750336px;}
._d{width:4.944384px;}
._a{width:6.424128px;}
._7{width:8.726976px;}
._1{width:10.111104px;}
._e{width:11.649024px;}
._c{width:13.079232px;}
._6{width:19.570752px;}
.fc5{color:rgb(2,106,217);}
.fc4{color:rgb(8,0,0);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(187,187,187);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(128,128,128);}
.fs0{font-size:55.296000px;}
.fs3{font-size:60.001200px;}
.fs2{font-size:64.512001px;}
.fs1{font-size:115.200001px;}
.y0{bottom:0.000000px;}
.yb3{bottom:5.760017px;}
.y196{bottom:6.912007px;}
.y116{bottom:9.216035px;}
.y5a{bottom:11.520000px;}
.y86{bottom:11.520008px;}
.ye4{bottom:13.824026px;}
.y16c{bottom:18.432016px;}
.y2d{bottom:20.736000px;}
.yb2{bottom:27.648017px;}
.y2e{bottom:28.919998px;}
.y115{bottom:31.104035px;}
.y59{bottom:33.408000px;}
.y85{bottom:33.408009px;}
.ye3{bottom:35.712026px;}
.y2c{bottom:42.624000px;}
.y1{bottom:43.175989px;}
.y195{bottom:44.928007px;}
.yb1{bottom:49.536018px;}
.y114{bottom:52.992035px;}
.y58{bottom:55.296000px;}
.y84{bottom:55.296009px;}
.y16b{bottom:56.448017px;}
.ye2{bottom:57.600026px;}
.y2b{bottom:64.512000px;}
.yb0{bottom:71.424018px;}
.y113{bottom:74.880035px;}
.y57{bottom:77.184000px;}
.y83{bottom:77.184009px;}
.y16a{bottom:78.336017px;}
.ye1{bottom:79.488027px;}
.y194{bottom:82.944008px;}
.y2a{bottom:86.400000px;}
.y112{bottom:96.768036px;}
.y82{bottom:99.072009px;}
.y169{bottom:100.224017px;}
.ye0{bottom:101.376027px;}
.y193{bottom:104.832008px;}
.y29{bottom:108.288001px;}
.yaf{bottom:109.440018px;}
.y56{bottom:115.200001px;}
.y111{bottom:118.656036px;}
.y81{bottom:120.960009px;}
.y168{bottom:122.112017px;}
.ydf{bottom:123.264027px;}
.yae{bottom:131.328018px;}
.y55{bottom:137.088001px;}
.y192{bottom:142.848008px;}
.y80{bottom:142.848010px;}
.y167{bottom:144.000017px;}
.yde{bottom:145.152027px;}
.y28{bottom:146.304001px;}
.yad{bottom:153.216018px;}
.y110{bottom:156.672036px;}
.y54{bottom:158.976001px;}
.y191{bottom:164.736008px;}
.y154{bottom:164.736054px;}
.y166{bottom:165.888018px;}
.ydd{bottom:167.040027px;}
.y27{bottom:168.192001px;}
.yac{bottom:175.104019px;}
.y10f{bottom:178.560036px;}
.y53{bottom:180.864001px;}
.y7f{bottom:180.864010px;}
.y153{bottom:186.624054px;}
.y165{bottom:187.776018px;}
.ydc{bottom:188.928027px;}
.y26{bottom:190.080001px;}
.yab{bottom:196.992019px;}
.y10e{bottom:200.448036px;}
.y52{bottom:202.752001px;}
.y190{bottom:202.752009px;}
.y152{bottom:208.512054px;}
.y164{bottom:209.664018px;}
.y7e{bottom:210.816010px;}
.ydb{bottom:210.816028px;}
.y25{bottom:211.968001px;}
.y13d{bottom:216.576045px;}
.yaa{bottom:218.880019px;}
.y10d{bottom:222.336037px;}
.y51{bottom:224.640001px;}
.y18f{bottom:224.640009px;}
.y151{bottom:230.400054px;}
.yda{bottom:232.704028px;}
.y24{bottom:233.856002px;}
.y7d{bottom:240.768010px;}
.ya9{bottom:240.768019px;}
.y10c{bottom:244.224037px;}
.y18e{bottom:246.528009px;}
.y163{bottom:247.680018px;}
.y150{bottom:252.288054px;}
.yd9{bottom:254.592028px;}
.y13c{bottom:254.592046px;}
.y23{bottom:255.744002px;}
.y50{bottom:262.656002px;}
.ya8{bottom:262.656019px;}
.y10b{bottom:266.112037px;}
.y162{bottom:269.568018px;}
.y7c{bottom:270.720011px;}
.yd8{bottom:276.480028px;}
.y22{bottom:277.632002px;}
.y4f{bottom:284.544002px;}
.y18d{bottom:284.544009px;}
.ya7{bottom:284.544019px;}
.y10a{bottom:288.000037px;}
.y14f{bottom:290.304055px;}
.y13b{bottom:292.608046px;}
.yd7{bottom:298.368028px;}
.y21{bottom:299.520002px;}
.y7b{bottom:300.672011px;}
.y4e{bottom:306.432002px;}
.y18c{bottom:306.432009px;}
.y161{bottom:307.584019px;}
.y109{bottom:309.888037px;}
.y14e{bottom:312.192055px;}
.y13a{bottom:314.496046px;}
.y20{bottom:321.408002px;}
.y7a{bottom:322.560011px;}
.ya6{bottom:322.560020px;}
.y4d{bottom:328.320002px;}
.y18b{bottom:328.320010px;}
.y160{bottom:329.472019px;}
.y108{bottom:331.776037px;}
.y14d{bottom:334.080055px;}
.yd6{bottom:336.384029px;}
.y139{bottom:336.384046px;}
.y79{bottom:344.448011px;}
.ya5{bottom:344.448020px;}
.y4c{bottom:350.208002px;}
.y18a{bottom:350.208010px;}
.y15f{bottom:351.360019px;}
.y107{bottom:353.664038px;}
.y14c{bottom:355.968055px;}
.yd5{bottom:358.272029px;}
.y138{bottom:358.272046px;}
.y1f{bottom:359.424003px;}
.ya4{bottom:366.336020px;}
.y4b{bottom:372.096003px;}
.y189{bottom:372.096010px;}
.y78{bottom:374.400011px;}
.y14b{bottom:377.856055px;}
.yd4{bottom:380.160029px;}
.y137{bottom:380.160047px;}
.y15e{bottom:389.376019px;}
.y106{bottom:391.680038px;}
.y4a{bottom:393.984003px;}
.y1e{bottom:397.440003px;}
.y14a{bottom:399.744056px;}
.yd3{bottom:402.048029px;}
.y136{bottom:402.048047px;}
.y77{bottom:404.352012px;}
.ya3{bottom:404.352020px;}
.y188{bottom:410.112010px;}
.y105{bottom:413.568038px;}
.y49{bottom:415.872003px;}
.y1d{bottom:419.328003px;}
.y149{bottom:421.632056px;}
.ya2{bottom:426.240021px;}
.y15d{bottom:427.392020px;}
.y187{bottom:432.000010px;}
.y104{bottom:435.456038px;}
.y48{bottom:437.760003px;}
.yd2{bottom:440.064029px;}
.y135{bottom:440.064047px;}
.y76{bottom:442.368012px;}
.y148{bottom:443.520056px;}
.ya1{bottom:448.128021px;}
.y15c{bottom:449.280020px;}
.y1c{bottom:457.344003px;}
.y103{bottom:457.344038px;}
.y47{bottom:459.648003px;}
.yd1{bottom:461.952030px;}
.y134{bottom:461.952047px;}
.y75{bottom:464.256012px;}
.y147{bottom:465.408056px;}
.y1ad{bottom:468.864001px;}
.y186{bottom:470.016011px;}
.y15b{bottom:471.168020px;}
.y1b{bottom:479.232004px;}
.y102{bottom:479.232039px;}
.yd0{bottom:483.840030px;}
.y133{bottom:483.840047px;}
.y74{bottom:486.144012px;}
.ya0{bottom:486.144021px;}
.y146{bottom:487.296056px;}
.y185{bottom:491.904011px;}
.y15a{bottom:493.056020px;}
.y46{bottom:497.664003px;}
.y1a{bottom:501.120004px;}
.y101{bottom:501.120039px;}
.ycf{bottom:505.728030px;}
.y132{bottom:505.728048px;}
.y73{bottom:508.032012px;}
.y9f{bottom:508.032021px;}
.y145{bottom:509.184056px;}
.y159{bottom:514.944020px;}
.y19{bottom:523.008004px;}
.y100{bottom:523.008039px;}
.y1ac{bottom:525.312002px;}
.yce{bottom:527.616030px;}
.y131{bottom:527.616048px;}
.y184{bottom:529.920011px;}
.y72{bottom:529.920013px;}
.y144{bottom:531.072057px;}
.y45{bottom:535.680004px;}
.y158{bottom:536.832020px;}
.y18{bottom:544.896004px;}
.yff{bottom:544.896039px;}
.y9e{bottom:546.048021px;}
.ycd{bottom:549.504030px;}
.y130{bottom:549.504048px;}
.y183{bottom:551.808011px;}
.y71{bottom:551.808013px;}
.y143{bottom:552.960057px;}
.y44{bottom:557.568004px;}
.y1ab{bottom:563.328002px;}
.y17{bottom:566.784004px;}
.yfe{bottom:566.784039px;}
.y9d{bottom:567.936022px;}
.ycc{bottom:571.392030px;}
.y12f{bottom:571.392048px;}
.y182{bottom:573.696012px;}
.y157{bottom:574.848021px;}
.y142{bottom:574.848057px;}
.y43{bottom:579.456004px;}
.y1aa{bottom:585.216002px;}
.y16{bottom:588.672004px;}
.yfd{bottom:588.672039px;}
.y70{bottom:589.824013px;}
.ycb{bottom:593.280031px;}
.y12e{bottom:593.280048px;}
.y141{bottom:596.736057px;}
.y9c{bottom:605.952022px;}
.y1a9{bottom:607.104003px;}
.yfc{bottom:610.560040px;}
.y181{bottom:611.712012px;}
.y6f{bottom:611.712013px;}
.y156{bottom:612.864021px;}
.y12d{bottom:615.168048px;}
.y42{bottom:617.472004px;}
.y15{bottom:626.688005px;}
.y9b{bottom:627.840022px;}
.y1a8{bottom:628.992003px;}
.yca{bottom:631.296031px;}
.yfb{bottom:632.448040px;}
.y180{bottom:633.600012px;}
.y6e{bottom:633.600013px;}
.y155{bottom:634.752021px;}
.y140{bottom:634.752057px;}
.y12c{bottom:637.056049px;}
.y41{bottom:639.360005px;}
.y14{bottom:648.576005px;}
.y9a{bottom:649.728022px;}
.yc9{bottom:653.184031px;}
.yfa{bottom:654.336040px;}
.y6d{bottom:655.488014px;}
.y12b{bottom:658.944049px;}
.y40{bottom:661.248005px;}
.y1a7{bottom:667.008003px;}
.y17f{bottom:671.616012px;}
.y13f{bottom:672.768058px;}
.yc8{bottom:675.072031px;}
.yf9{bottom:676.224040px;}
.y12a{bottom:680.832049px;}
.y13{bottom:686.592005px;}
.y99{bottom:687.744023px;}
.y1a6{bottom:688.896003px;}
.y17e{bottom:693.504012px;}
.y6c{bottom:693.504014px;}
.yc7{bottom:696.960031px;}
.y3f{bottom:699.264005px;}
.y12{bottom:708.480005px;}
.y98{bottom:709.632023px;}
.y1a5{bottom:710.784003px;}
.y13e{bottom:710.784058px;}
.yf8{bottom:714.240040px;}
.yc6{bottom:718.848032px;}
.y129{bottom:718.848049px;}
.y11{bottom:730.368006px;}
.y17d{bottom:731.520013px;}
.y6b{bottom:731.520014px;}
.y97{bottom:731.520023px;}
.y1a4{bottom:732.672004px;}
.yf7{bottom:736.128041px;}
.y3e{bottom:737.280005px;}
.yc5{bottom:740.736032px;}
.y128{bottom:740.736049px;}
.y10{bottom:752.256006px;}
.y17c{bottom:753.408013px;}
.y96{bottom:753.408023px;}
.yf6{bottom:758.016041px;}
.yc4{bottom:762.624032px;}
.y127{bottom:762.624050px;}
.y6a{bottom:769.536014px;}
.y1a3{bottom:770.688004px;}
.yf{bottom:774.144006px;}
.y3d{bottom:775.296006px;}
.y95{bottom:775.296023px;}
.yf5{bottom:779.904041px;}
.y126{bottom:784.512050px;}
.y17b{bottom:791.424013px;}
.ye{bottom:796.032006px;}
.y94{bottom:797.184023px;}
.yc3{bottom:800.640032px;}
.yf4{bottom:801.792041px;}
.y69{bottom:807.552015px;}
.y1a2{bottom:808.704004px;}
.y3c{bottom:813.312006px;}
.y17a{bottom:813.312013px;}
.yd{bottom:817.920006px;}
.y93{bottom:819.072024px;}
.yc2{bottom:822.528032px;}
.y125{bottom:822.528050px;}
.yf3{bottom:823.680041px;}
.y68{bottom:829.440015px;}
.y179{bottom:835.200014px;}
.yc{bottom:839.808006px;}
.yc1{bottom:844.416033px;}
.yf2{bottom:845.568041px;}
.y1a1{bottom:846.720004px;}
.y3b{bottom:851.328006px;}
.y67{bottom:851.328015px;}
.y92{bottom:857.088024px;}
.y124{bottom:860.544050px;}
.yc0{bottom:866.304033px;}
.yf1{bottom:867.456042px;}
.y1a0{bottom:868.608005px;}
.y3a{bottom:873.216006px;}
.y178{bottom:873.216014px;}
.y66{bottom:873.216015px;}
.yb{bottom:877.824007px;}
.y123{bottom:882.432051px;}
.ybf{bottom:888.192033px;}
.yf0{bottom:889.344042px;}
.y39{bottom:895.104007px;}
.y177{bottom:895.104014px;}
.y91{bottom:895.104024px;}
.ya{bottom:899.712007px;}
.y122{bottom:904.320051px;}
.y19f{bottom:906.624005px;}
.ybe{bottom:910.080033px;}
.y65{bottom:911.232016px;}
.yef{bottom:911.232042px;}
.y90{bottom:916.992024px;}
.y9{bottom:921.600007px;}
.y121{bottom:926.208051px;}
.y19e{bottom:928.512005px;}
.y38{bottom:933.120007px;}
.y176{bottom:933.120014px;}
.y64{bottom:933.120016px;}
.yee{bottom:933.120042px;}
.y8f{bottom:938.880025px;}
.ybd{bottom:948.096033px;}
.y120{bottom:948.096051px;}
.y37{bottom:955.008007px;}
.y63{bottom:955.008016px;}
.y8{bottom:959.616007px;}
.y19d{bottom:966.528005px;}
.ybc{bottom:969.984034px;}
.y11f{bottom:969.984051px;}
.y175{bottom:971.136015px;}
.yed{bottom:971.136042px;}
.y36{bottom:976.896007px;}
.y8e{bottom:976.896025px;}
.y7{bottom:981.504007px;}
.ybb{bottom:991.872034px;}
.y11e{bottom:991.872051px;}
.y174{bottom:993.024015px;}
.y62{bottom:993.024016px;}
.yec{bottom:993.024043px;}
.y35{bottom:998.784007px;}
.y8d{bottom:998.784025px;}
.y6{bottom:1003.392008px;}
.y19c{bottom:1004.544006px;}
.yba{bottom:1013.760034px;}
.y11d{bottom:1013.760052px;}
.y173{bottom:1014.912015px;}
.y61{bottom:1014.912016px;}
.yeb{bottom:1014.912043px;}
.y34{bottom:1020.672008px;}
.y8c{bottom:1020.672025px;}
.y19b{bottom:1026.432006px;}
.yb9{bottom:1035.648034px;}
.y11c{bottom:1035.648052px;}
.y2{bottom:1036.800008px;}
.y172{bottom:1036.800015px;}
.y60{bottom:1036.800017px;}
.yea{bottom:1036.800043px;}
.y33{bottom:1042.560008px;}
.y11b{bottom:1057.536052px;}
.y5f{bottom:1058.688017px;}
.y8b{bottom:1058.688025px;}
.ye9{bottom:1058.688043px;}
.y19a{bottom:1064.448006px;}
.y32{bottom:1064.448008px;}
.y5{bottom:1069.056008px;}
.yb8{bottom:1073.664034px;}
.y171{bottom:1074.816015px;}
.y11a{bottom:1079.424052px;}
.y5e{bottom:1080.576017px;}
.y8a{bottom:1080.576026px;}
.ye8{bottom:1080.576043px;}
.y199{bottom:1086.336006px;}
.yb7{bottom:1095.552035px;}
.y170{bottom:1096.704016px;}
.y31{bottom:1102.464008px;}
.y89{bottom:1102.464026px;}
.ye7{bottom:1102.464043px;}
.y4{bottom:1108.224008px;}
.yb6{bottom:1117.440035px;}
.y119{bottom:1117.440052px;}
.y16f{bottom:1118.592016px;}
.y5d{bottom:1118.592017px;}
.y198{bottom:1124.352007px;}
.y88{bottom:1124.352026px;}
.ye6{bottom:1124.352044px;}
.yb5{bottom:1139.328035px;}
.y118{bottom:1139.328053px;}
.y30{bottom:1140.480009px;}
.y16e{bottom:1140.480016px;}
.y5c{bottom:1140.480017px;}
.y3{bottom:1147.392009px;}
.yb4{bottom:1161.216035px;}
.y117{bottom:1161.216053px;}
.y197{bottom:1162.368007px;}
.y2f{bottom:1162.368009px;}
.y16d{bottom:1162.368016px;}
.y5b{bottom:1162.368017px;}
.y87{bottom:1162.368026px;}
.ye5{bottom:1162.368044px;}
.h2{height:49.572000px;}
.h6{height:53.790138px;}
.h7{height:57.676500px;}
.h5{height:57.834000px;}
.h4{height:58.243500px;}
.h3{height:104.006251px;}
.h1{height:1177.344009px;}
.h0{height:1263.000000px;}
.w1{width:806.400012px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:9.216000px;}
.x3{left:21.888000px;}
.xb{left:32.256000px;}
.x1{left:42.480000px;}
.x5{left:539.136004px;}
.x4{left:624.384005px;}
.x8{left:628.992005px;}
.x7{left:637.056005px;}
.x6{left:673.920005px;}
.x2{left:739.584006px;}
.xc{left:813.609843px;}
.xd{left:814.779843px;}
.x9{left:821.968593px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.045056pt;}
.ls0{letter-spacing:0.196096pt;}
.ls1{letter-spacing:0.218112pt;}
.ls3{letter-spacing:0.557056pt;}
.ws4{word-spacing:-16.045056pt;}
.ws1{word-spacing:-15.826944pt;}
.ws2{word-spacing:-14.720294pt;}
.ws0{word-spacing:-13.762048pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-7.860736pt;}
._9{margin-left:-4.934656pt;}
._2{margin-left:-4.024320pt;}
._5{margin-left:-2.241536pt;}
._3{margin-left:-0.908800pt;}
._0{width:1.216000pt;}
._8{width:2.228224pt;}
._b{width:3.333632pt;}
._d{width:4.395008pt;}
._a{width:5.710336pt;}
._7{width:7.757312pt;}
._1{width:8.987648pt;}
._e{width:10.354688pt;}
._c{width:11.625984pt;}
._6{width:17.396224pt;}
.fs0{font-size:49.152000pt;}
.fs3{font-size:53.334400pt;}
.fs2{font-size:57.344000pt;}
.fs1{font-size:102.400001pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:5.120015pt;}
.y196{bottom:6.144006pt;}
.y116{bottom:8.192031pt;}
.y5a{bottom:10.240000pt;}
.y86{bottom:10.240008pt;}
.ye4{bottom:12.288023pt;}
.y16c{bottom:16.384015pt;}
.y2d{bottom:18.432000pt;}
.yb2{bottom:24.576015pt;}
.y2e{bottom:25.706665pt;}
.y115{bottom:27.648031pt;}
.y59{bottom:29.696000pt;}
.y85{bottom:29.696008pt;}
.ye3{bottom:31.744023pt;}
.y2c{bottom:37.888000pt;}
.y1{bottom:38.378657pt;}
.y195{bottom:39.936007pt;}
.yb1{bottom:44.032016pt;}
.y114{bottom:47.104031pt;}
.y58{bottom:49.152000pt;}
.y84{bottom:49.152008pt;}
.y16b{bottom:50.176015pt;}
.ye2{bottom:51.200024pt;}
.y2b{bottom:57.344000pt;}
.yb0{bottom:63.488016pt;}
.y113{bottom:66.560031pt;}
.y57{bottom:68.608000pt;}
.y83{bottom:68.608008pt;}
.y16a{bottom:69.632015pt;}
.ye1{bottom:70.656024pt;}
.y194{bottom:73.728007pt;}
.y2a{bottom:76.800000pt;}
.y112{bottom:86.016032pt;}
.y82{bottom:88.064008pt;}
.y169{bottom:89.088015pt;}
.ye0{bottom:90.112024pt;}
.y193{bottom:93.184007pt;}
.y29{bottom:96.256001pt;}
.yaf{bottom:97.280016pt;}
.y56{bottom:102.400000pt;}
.y111{bottom:105.472032pt;}
.y81{bottom:107.520008pt;}
.y168{bottom:108.544015pt;}
.ydf{bottom:109.568024pt;}
.yae{bottom:116.736016pt;}
.y55{bottom:121.856001pt;}
.y192{bottom:126.976007pt;}
.y80{bottom:126.976008pt;}
.y167{bottom:128.000015pt;}
.yde{bottom:129.024024pt;}
.y28{bottom:130.048001pt;}
.yad{bottom:136.192016pt;}
.y110{bottom:139.264032pt;}
.y54{bottom:141.312001pt;}
.y191{bottom:146.432007pt;}
.y154{bottom:146.432048pt;}
.y166{bottom:147.456016pt;}
.ydd{bottom:148.480024pt;}
.y27{bottom:149.504001pt;}
.yac{bottom:155.648017pt;}
.y10f{bottom:158.720032pt;}
.y53{bottom:160.768001pt;}
.y7f{bottom:160.768009pt;}
.y153{bottom:165.888048pt;}
.y165{bottom:166.912016pt;}
.ydc{bottom:167.936024pt;}
.y26{bottom:168.960001pt;}
.yab{bottom:175.104017pt;}
.y10e{bottom:178.176032pt;}
.y52{bottom:180.224001pt;}
.y190{bottom:180.224008pt;}
.y152{bottom:185.344048pt;}
.y164{bottom:186.368016pt;}
.y7e{bottom:187.392009pt;}
.ydb{bottom:187.392025pt;}
.y25{bottom:188.416001pt;}
.y13d{bottom:192.512040pt;}
.yaa{bottom:194.560017pt;}
.y10d{bottom:197.632032pt;}
.y51{bottom:199.680001pt;}
.y18f{bottom:199.680008pt;}
.y151{bottom:204.800048pt;}
.yda{bottom:206.848025pt;}
.y24{bottom:207.872001pt;}
.y7d{bottom:214.016009pt;}
.ya9{bottom:214.016017pt;}
.y10c{bottom:217.088033pt;}
.y18e{bottom:219.136008pt;}
.y163{bottom:220.160016pt;}
.y150{bottom:224.256048pt;}
.yd9{bottom:226.304025pt;}
.y13c{bottom:226.304041pt;}
.y23{bottom:227.328002pt;}
.y50{bottom:233.472001pt;}
.ya8{bottom:233.472017pt;}
.y10b{bottom:236.544033pt;}
.y162{bottom:239.616016pt;}
.y7c{bottom:240.640009pt;}
.yd8{bottom:245.760025pt;}
.y22{bottom:246.784002pt;}
.y4f{bottom:252.928002pt;}
.y18d{bottom:252.928008pt;}
.ya7{bottom:252.928017pt;}
.y10a{bottom:256.000033pt;}
.y14f{bottom:258.048049pt;}
.y13b{bottom:260.096041pt;}
.yd7{bottom:265.216025pt;}
.y21{bottom:266.240002pt;}
.y7b{bottom:267.264010pt;}
.y4e{bottom:272.384002pt;}
.y18c{bottom:272.384008pt;}
.y161{bottom:273.408017pt;}
.y109{bottom:275.456033pt;}
.y14e{bottom:277.504049pt;}
.y13a{bottom:279.552041pt;}
.y20{bottom:285.696002pt;}
.y7a{bottom:286.720010pt;}
.ya6{bottom:286.720018pt;}
.y4d{bottom:291.840002pt;}
.y18b{bottom:291.840009pt;}
.y160{bottom:292.864017pt;}
.y108{bottom:294.912033pt;}
.y14d{bottom:296.960049pt;}
.yd6{bottom:299.008025pt;}
.y139{bottom:299.008041pt;}
.y79{bottom:306.176010pt;}
.ya5{bottom:306.176018pt;}
.y4c{bottom:311.296002pt;}
.y18a{bottom:311.296009pt;}
.y15f{bottom:312.320017pt;}
.y107{bottom:314.368033pt;}
.y14c{bottom:316.416049pt;}
.yd5{bottom:318.464026pt;}
.y138{bottom:318.464041pt;}
.y1f{bottom:319.488002pt;}
.ya4{bottom:325.632018pt;}
.y4b{bottom:330.752002pt;}
.y189{bottom:330.752009pt;}
.y78{bottom:332.800010pt;}
.y14b{bottom:335.872049pt;}
.yd4{bottom:337.920026pt;}
.y137{bottom:337.920041pt;}
.y15e{bottom:346.112017pt;}
.y106{bottom:348.160034pt;}
.y4a{bottom:350.208002pt;}
.y1e{bottom:353.280003pt;}
.y14a{bottom:355.328049pt;}
.yd3{bottom:357.376026pt;}
.y136{bottom:357.376042pt;}
.y77{bottom:359.424010pt;}
.ya3{bottom:359.424018pt;}
.y188{bottom:364.544009pt;}
.y105{bottom:367.616034pt;}
.y49{bottom:369.664003pt;}
.y1d{bottom:372.736003pt;}
.y149{bottom:374.784050pt;}
.ya2{bottom:378.880018pt;}
.y15d{bottom:379.904017pt;}
.y187{bottom:384.000009pt;}
.y104{bottom:387.072034pt;}
.y48{bottom:389.120003pt;}
.yd2{bottom:391.168026pt;}
.y135{bottom:391.168042pt;}
.y76{bottom:393.216011pt;}
.y148{bottom:394.240050pt;}
.ya1{bottom:398.336018pt;}
.y15c{bottom:399.360018pt;}
.y1c{bottom:406.528003pt;}
.y103{bottom:406.528034pt;}
.y47{bottom:408.576003pt;}
.yd1{bottom:410.624026pt;}
.y134{bottom:410.624042pt;}
.y75{bottom:412.672011pt;}
.y147{bottom:413.696050pt;}
.y1ad{bottom:416.768001pt;}
.y186{bottom:417.792010pt;}
.y15b{bottom:418.816018pt;}
.y1b{bottom:425.984003pt;}
.y102{bottom:425.984034pt;}
.yd0{bottom:430.080026pt;}
.y133{bottom:430.080042pt;}
.y74{bottom:432.128011pt;}
.ya0{bottom:432.128019pt;}
.y146{bottom:433.152050pt;}
.y185{bottom:437.248010pt;}
.y15a{bottom:438.272018pt;}
.y46{bottom:442.368003pt;}
.y1a{bottom:445.440003pt;}
.y101{bottom:445.440034pt;}
.ycf{bottom:449.536027pt;}
.y132{bottom:449.536042pt;}
.y73{bottom:451.584011pt;}
.y9f{bottom:451.584019pt;}
.y145{bottom:452.608050pt;}
.y159{bottom:457.728018pt;}
.y19{bottom:464.896003pt;}
.y100{bottom:464.896035pt;}
.y1ac{bottom:466.944002pt;}
.yce{bottom:468.992027pt;}
.y131{bottom:468.992042pt;}
.y184{bottom:471.040010pt;}
.y72{bottom:471.040011pt;}
.y144{bottom:472.064050pt;}
.y45{bottom:476.160003pt;}
.y158{bottom:477.184018pt;}
.y18{bottom:484.352004pt;}
.yff{bottom:484.352035pt;}
.y9e{bottom:485.376019pt;}
.ycd{bottom:488.448027pt;}
.y130{bottom:488.448043pt;}
.y183{bottom:490.496010pt;}
.y71{bottom:490.496011pt;}
.y143{bottom:491.520050pt;}
.y44{bottom:495.616004pt;}
.y1ab{bottom:500.736002pt;}
.y17{bottom:503.808004pt;}
.yfe{bottom:503.808035pt;}
.y9d{bottom:504.832019pt;}
.ycc{bottom:507.904027pt;}
.y12f{bottom:507.904043pt;}
.y182{bottom:509.952010pt;}
.y157{bottom:510.976018pt;}
.y142{bottom:510.976051pt;}
.y43{bottom:515.072004pt;}
.y1aa{bottom:520.192002pt;}
.y16{bottom:523.264004pt;}
.yfd{bottom:523.264035pt;}
.y70{bottom:524.288012pt;}
.ycb{bottom:527.360027pt;}
.y12e{bottom:527.360043pt;}
.y141{bottom:530.432051pt;}
.y9c{bottom:538.624020pt;}
.y1a9{bottom:539.648002pt;}
.yfc{bottom:542.720035pt;}
.y181{bottom:543.744010pt;}
.y6f{bottom:543.744012pt;}
.y156{bottom:544.768019pt;}
.y12d{bottom:546.816043pt;}
.y42{bottom:548.864004pt;}
.y15{bottom:557.056004pt;}
.y9b{bottom:558.080020pt;}
.y1a8{bottom:559.104002pt;}
.yca{bottom:561.152028pt;}
.yfb{bottom:562.176035pt;}
.y180{bottom:563.200011pt;}
.y6e{bottom:563.200012pt;}
.y155{bottom:564.224019pt;}
.y140{bottom:564.224051pt;}
.y12c{bottom:566.272043pt;}
.y41{bottom:568.320004pt;}
.y14{bottom:576.512004pt;}
.y9a{bottom:577.536020pt;}
.yc9{bottom:580.608028pt;}
.yfa{bottom:581.632035pt;}
.y6d{bottom:582.656012pt;}
.y12b{bottom:585.728043pt;}
.y40{bottom:587.776004pt;}
.y1a7{bottom:592.896003pt;}
.y17f{bottom:596.992011pt;}
.y13f{bottom:598.016051pt;}
.yc8{bottom:600.064028pt;}
.yf9{bottom:601.088036pt;}
.y12a{bottom:605.184043pt;}
.y13{bottom:610.304005pt;}
.y99{bottom:611.328020pt;}
.y1a6{bottom:612.352003pt;}
.y17e{bottom:616.448011pt;}
.y6c{bottom:616.448012pt;}
.yc7{bottom:619.520028pt;}
.y3f{bottom:621.568005pt;}
.y12{bottom:629.760005pt;}
.y98{bottom:630.784020pt;}
.y1a5{bottom:631.808003pt;}
.y13e{bottom:631.808052pt;}
.yf8{bottom:634.880036pt;}
.yc6{bottom:638.976028pt;}
.y129{bottom:638.976044pt;}
.y11{bottom:649.216005pt;}
.y17d{bottom:650.240011pt;}
.y6b{bottom:650.240013pt;}
.y97{bottom:650.240020pt;}
.y1a4{bottom:651.264003pt;}
.yf7{bottom:654.336036pt;}
.y3e{bottom:655.360005pt;}
.yc5{bottom:658.432028pt;}
.y128{bottom:658.432044pt;}
.y10{bottom:668.672005pt;}
.y17c{bottom:669.696011pt;}
.y96{bottom:669.696021pt;}
.yf6{bottom:673.792036pt;}
.yc4{bottom:677.888028pt;}
.y127{bottom:677.888044pt;}
.y6a{bottom:684.032013pt;}
.y1a3{bottom:685.056003pt;}
.yf{bottom:688.128005pt;}
.y3d{bottom:689.152005pt;}
.y95{bottom:689.152021pt;}
.yf5{bottom:693.248036pt;}
.y126{bottom:697.344044pt;}
.y17b{bottom:703.488012pt;}
.ye{bottom:707.584005pt;}
.y94{bottom:708.608021pt;}
.yc3{bottom:711.680029pt;}
.yf4{bottom:712.704037pt;}
.y69{bottom:717.824013pt;}
.y1a2{bottom:718.848004pt;}
.y3c{bottom:722.944005pt;}
.y17a{bottom:722.944012pt;}
.yd{bottom:727.040006pt;}
.y93{bottom:728.064021pt;}
.yc2{bottom:731.136029pt;}
.y125{bottom:731.136044pt;}
.yf3{bottom:732.160037pt;}
.y68{bottom:737.280013pt;}
.y179{bottom:742.400012pt;}
.yc{bottom:746.496006pt;}
.yc1{bottom:750.592029pt;}
.yf2{bottom:751.616037pt;}
.y1a1{bottom:752.640004pt;}
.y3b{bottom:756.736006pt;}
.y67{bottom:756.736013pt;}
.y92{bottom:761.856021pt;}
.y124{bottom:764.928045pt;}
.yc0{bottom:770.048029pt;}
.yf1{bottom:771.072037pt;}
.y1a0{bottom:772.096004pt;}
.y3a{bottom:776.192006pt;}
.y178{bottom:776.192012pt;}
.y66{bottom:776.192014pt;}
.yb{bottom:780.288006pt;}
.y123{bottom:784.384045pt;}
.ybf{bottom:789.504029pt;}
.yf0{bottom:790.528037pt;}
.y39{bottom:795.648006pt;}
.y177{bottom:795.648012pt;}
.y91{bottom:795.648022pt;}
.ya{bottom:799.744006pt;}
.y122{bottom:803.840045pt;}
.y19f{bottom:805.888004pt;}
.ybe{bottom:808.960029pt;}
.y65{bottom:809.984014pt;}
.yef{bottom:809.984037pt;}
.y90{bottom:815.104022pt;}
.y9{bottom:819.200006pt;}
.y121{bottom:823.296045pt;}
.y19e{bottom:825.344005pt;}
.y38{bottom:829.440006pt;}
.y176{bottom:829.440013pt;}
.y64{bottom:829.440014pt;}
.yee{bottom:829.440037pt;}
.y8f{bottom:834.560022pt;}
.ybd{bottom:842.752030pt;}
.y120{bottom:842.752045pt;}
.y37{bottom:848.896006pt;}
.y63{bottom:848.896014pt;}
.y8{bottom:852.992006pt;}
.y19d{bottom:859.136005pt;}
.ybc{bottom:862.208030pt;}
.y11f{bottom:862.208046pt;}
.y175{bottom:863.232013pt;}
.yed{bottom:863.232038pt;}
.y36{bottom:868.352006pt;}
.y8e{bottom:868.352022pt;}
.y7{bottom:872.448007pt;}
.ybb{bottom:881.664030pt;}
.y11e{bottom:881.664046pt;}
.y174{bottom:882.688013pt;}
.y62{bottom:882.688014pt;}
.yec{bottom:882.688038pt;}
.y35{bottom:887.808007pt;}
.y8d{bottom:887.808022pt;}
.y6{bottom:891.904007pt;}
.y19c{bottom:892.928005pt;}
.yba{bottom:901.120030pt;}
.y11d{bottom:901.120046pt;}
.y173{bottom:902.144013pt;}
.y61{bottom:902.144015pt;}
.yeb{bottom:902.144038pt;}
.y34{bottom:907.264007pt;}
.y8c{bottom:907.264022pt;}
.y19b{bottom:912.384005pt;}
.yb9{bottom:920.576030pt;}
.y11c{bottom:920.576046pt;}
.y2{bottom:921.600007pt;}
.y172{bottom:921.600013pt;}
.y60{bottom:921.600015pt;}
.yea{bottom:921.600038pt;}
.y33{bottom:926.720007pt;}
.y11b{bottom:940.032046pt;}
.y5f{bottom:941.056015pt;}
.y8b{bottom:941.056023pt;}
.ye9{bottom:941.056038pt;}
.y19a{bottom:946.176005pt;}
.y32{bottom:946.176007pt;}
.y5{bottom:950.272007pt;}
.yb8{bottom:954.368031pt;}
.y171{bottom:955.392014pt;}
.y11a{bottom:959.488046pt;}
.y5e{bottom:960.512015pt;}
.y8a{bottom:960.512023pt;}
.ye8{bottom:960.512038pt;}
.y199{bottom:965.632006pt;}
.yb7{bottom:973.824031pt;}
.y170{bottom:974.848014pt;}
.y31{bottom:979.968007pt;}
.y89{bottom:979.968023pt;}
.ye7{bottom:979.968039pt;}
.y4{bottom:985.088008pt;}
.yb6{bottom:993.280031pt;}
.y119{bottom:993.280047pt;}
.y16f{bottom:994.304014pt;}
.y5d{bottom:994.304015pt;}
.y198{bottom:999.424006pt;}
.y88{bottom:999.424023pt;}
.ye6{bottom:999.424039pt;}
.yb5{bottom:1012.736031pt;}
.y118{bottom:1012.736047pt;}
.y30{bottom:1013.760008pt;}
.y16e{bottom:1013.760014pt;}
.y5c{bottom:1013.760015pt;}
.y3{bottom:1019.904008pt;}
.yb4{bottom:1032.192031pt;}
.y117{bottom:1032.192047pt;}
.y197{bottom:1033.216006pt;}
.y2f{bottom:1033.216008pt;}
.y16d{bottom:1033.216014pt;}
.y5b{bottom:1033.216016pt;}
.y87{bottom:1033.216023pt;}
.ye5{bottom:1033.216039pt;}
.h2{height:44.064000pt;}
.h6{height:47.813456pt;}
.h7{height:51.268000pt;}
.h5{height:51.408000pt;}
.h4{height:51.772000pt;}
.h3{height:92.450001pt;}
.h1{height:1046.528008pt;}
.h0{height:1122.666667pt;}
.w1{width:716.800010pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:8.192000pt;}
.x3{left:19.456000pt;}
.xb{left:28.672000pt;}
.x1{left:37.760000pt;}
.x5{left:479.232004pt;}
.x4{left:555.008004pt;}
.x8{left:559.104004pt;}
.x7{left:566.272004pt;}
.x6{left:599.040005pt;}
.x2{left:657.408005pt;}
.xc{left:723.208750pt;}
.xd{left:724.248750pt;}
.x9{left:730.638750pt;}
}




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