
    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_0f70db4be936b6fae3430f48.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_ee233d6cfabe744e67c08bb0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_5002e6cabec7c44d5287e9a9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v1{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.066000px;}
.lsc{letter-spacing:0.189000px;}
.ls15{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.315000px;}
.ls16{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.858000px;}
.ls11{letter-spacing:2.838000px;}
.ls5{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.lse{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls6{letter-spacing:7.200000px;}
.lsa{letter-spacing:9.000000px;}
.ls13{letter-spacing:9.285600px;}
.ls2{letter-spacing:10.200000px;}
.ls12{letter-spacing:10.956000px;}
.ls9{letter-spacing:13.440000px;}
.ls14{letter-spacing:19.800000px;}
.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;}
}
.wsc{word-spacing:-36.102000px;}
.ws9{word-spacing:-22.860000px;}
.ws5{word-spacing:-20.952000px;}
.ws6{word-spacing:-20.592000px;}
.ws0{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.232000px;}
.wsd{word-spacing:-18.876000px;}
.ws8{word-spacing:-18.018000px;}
.ws1{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.wsb{word-spacing:-16.368000px;}
.wsa{word-spacing:-16.302000px;}
.ws2{word-spacing:-12.139200px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-20.528667px;}
._16{margin-left:-19.363533px;}
._17{margin-left:-17.200800px;}
._1b{margin-left:-15.546667px;}
._1a{margin-left:-14.432000px;}
._18{margin-left:-12.605333px;}
._19{margin-left:-11.472000px;}
._5{margin-left:-10.200000px;}
._15{margin-left:-8.856000px;}
._13{margin-left:-7.818667px;}
._2{margin-left:-6.600000px;}
._1{margin-left:-4.896000px;}
._9{margin-left:-3.288000px;}
._3{margin-left:-2.040000px;}
._14{margin-left:-1.010667px;}
._0{width:1.026667px;}
._6{width:2.050667px;}
._7{width:3.421333px;}
._11{width:4.499000px;}
._d{width:5.668800px;}
._a{width:7.416000px;}
._12{width:8.824000px;}
._b{width:9.936000px;}
._8{width:11.520000px;}
._e{width:12.528000px;}
._f{width:13.656000px;}
._1c{width:15.600000px;}
._c{width:17.520000px;}
._1d{width:20.856000px;}
._1e{width:23.286000px;}
._1f{width:26.964600px;}
._10{width:56.923800px;}
._20{width:150.660000px;}
._21{width:199.140000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y20{bottom:171.813000px;}
.y42{bottom:173.108550px;}
.yb6{bottom:173.512500px;}
.yfb{bottom:174.458550px;}
.y1b7{bottom:175.906200px;}
.y5d{bottom:181.612500px;}
.y150{bottom:187.508550px;}
.y193{bottom:188.500650px;}
.y7d{bottom:189.008550px;}
.yb5{bottom:191.512500px;}
.yfa{bottom:192.308550px;}
.y1f{bottom:193.863000px;}
.y41{bottom:194.708550px;}
.y1b6{bottom:195.706050px;}
.y9d{bottom:202.612500px;}
.y5c{bottom:203.212500px;}
.y11a{bottom:203.512500px;}
.y192{bottom:208.600650px;}
.y14f{bottom:209.408550px;}
.yf9{bottom:210.158550px;}
.y7c{bottom:210.608550px;}
.yd8{bottom:211.908750px;}
.y1b5{bottom:215.506050px;}
.y40{bottom:216.308550px;}
.y9c{bottom:220.612500px;}
.y135{bottom:221.512500px;}
.y119{bottom:221.812500px;}
.y5b{bottom:224.812500px;}
.yb4{bottom:227.512500px;}
.yf8{bottom:228.008550px;}
.y1e{bottom:228.650550px;}
.y191{bottom:228.700650px;}
.yd7{bottom:229.908750px;}
.y14e{bottom:231.308550px;}
.y16f{bottom:231.562500px;}
.y7b{bottom:232.208550px;}
.y1b4{bottom:235.306050px;}
.y3f{bottom:237.908550px;}
.y9b{bottom:238.612500px;}
.y134{bottom:239.812500px;}
.y118{bottom:240.112500px;}
.yf7{bottom:245.858550px;}
.y5a{bottom:246.412500px;}
.yd6{bottom:247.908750px;}
.y190{bottom:248.800650px;}
.yb3{bottom:248.812500px;}
.y1d{bottom:250.250550px;}
.y14d{bottom:253.208550px;}
.y16e{bottom:253.612500px;}
.y7a{bottom:253.808550px;}
.y1b3{bottom:255.106050px;}
.y9a{bottom:256.612500px;}
.y133{bottom:258.112500px;}
.y117{bottom:258.412500px;}
.y3e{bottom:259.508550px;}
.yf6{bottom:263.708550px;}
.yd5{bottom:265.908750px;}
.y59{bottom:268.012500px;}
.y18f{bottom:268.900650px;}
.yb2{bottom:270.112500px;}
.y1c{bottom:271.850550px;}
.y1b2{bottom:274.906050px;}
.y14c{bottom:275.108550px;}
.y79{bottom:275.408550px;}
.y16d{bottom:275.662500px;}
.y132{bottom:276.412500px;}
.y116{bottom:276.712500px;}
.y3d{bottom:281.108550px;}
.y18e{bottom:289.000650px;}
.y58{bottom:289.612500px;}
.yb1{bottom:291.412500px;}
.y1b{bottom:293.450550px;}
.y1b1{bottom:294.706050px;}
.y131{bottom:294.712500px;}
.y115{bottom:295.012500px;}
.y99{bottom:296.212500px;}
.y78{bottom:297.008550px;}
.y16c{bottom:297.712500px;}
.yf5{bottom:298.058550px;}
.y3c{bottom:302.708550px;}
.yd4{bottom:305.508750px;}
.y18d{bottom:309.100650px;}
.y57{bottom:311.212500px;}
.yb0{bottom:312.712500px;}
.y1b0{bottom:314.506050px;}
.y1a{bottom:315.050550px;}
.y98{bottom:317.812500px;}
.y14b{bottom:318.908550px;}
.yf4{bottom:319.658550px;}
.y16b{bottom:319.762500px;}
.y3b{bottom:324.308550px;}
.yd3{bottom:327.108750px;}
.y77{bottom:327.112500px;}
.y18c{bottom:329.200650px;}
.y130{bottom:332.512500px;}
.y56{bottom:332.812500px;}
.yaf{bottom:334.012500px;}
.y1af{bottom:334.306050px;}
.y114{bottom:334.312500px;}
.y19{bottom:336.650550px;}
.y14a{bottom:340.808550px;}
.yf3{bottom:340.958550px;}
.y16a{bottom:341.812500px;}
.y3a{bottom:345.908550px;}
.y18b{bottom:349.300650px;}
.y1ae{bottom:354.106050px;}
.y12f{bottom:354.112500px;}
.y55{bottom:354.412500px;}
.yae{bottom:355.312500px;}
.y113{bottom:356.062500px;}
.y18{bottom:358.250550px;}
.y97{bottom:361.012500px;}
.yf2{bottom:362.258550px;}
.y149{bottom:362.708550px;}
.y169{bottom:363.862500px;}
.y39{bottom:367.508550px;}
.y18a{bottom:369.400650px;}
.yd2{bottom:370.308750px;}
.y1ad{bottom:373.906050px;}
.y54{bottom:376.012500px;}
.yad{bottom:376.612500px;}
.y112{bottom:377.812500px;}
.y96{bottom:379.012500px;}
.y17{bottom:379.850550px;}
.yf1{bottom:383.558550px;}
.y148{bottom:384.608550px;}
.y168{bottom:385.912500px;}
.yd1{bottom:388.308750px;}
.y38{bottom:389.108550px;}
.y189{bottom:389.500650px;}
.y1ac{bottom:393.706050px;}
.y95{bottom:397.012500px;}
.y12e{bottom:397.312500px;}
.y53{bottom:397.612500px;}
.yac{bottom:397.912500px;}
.y111{bottom:399.562500px;}
.y16{bottom:401.450550px;}
.yf0{bottom:404.858550px;}
.yd0{bottom:406.308750px;}
.y147{bottom:406.508550px;}
.y167{bottom:407.962500px;}
.y188{bottom:409.600650px;}
.y37{bottom:410.708550px;}
.y76{bottom:411.712500px;}
.y1ab{bottom:413.506050px;}
.y94{bottom:415.012500px;}
.y12d{bottom:415.612500px;}
.y52{bottom:419.212500px;}
.y110{bottom:421.312500px;}
.y15{bottom:423.050550px;}
.ycf{bottom:424.308750px;}
.yef{bottom:426.158550px;}
.y146{bottom:428.408550px;}
.y187{bottom:429.700650px;}
.y166{bottom:430.012500px;}
.y36{bottom:432.308550px;}
.y93{bottom:433.012500px;}
.y1aa{bottom:433.306050px;}
.y75{bottom:433.612500px;}
.y51{bottom:440.812500px;}
.yce{bottom:442.308750px;}
.y10f{bottom:443.062500px;}
.y14{bottom:444.650550px;}
.yee{bottom:447.458550px;}
.y145{bottom:450.308550px;}
.y92{bottom:451.012500px;}
.y12c{bottom:451.612500px;}
.y165{bottom:452.062500px;}
.y1a9{bottom:453.106050px;}
.y35{bottom:453.908550px;}
.y74{bottom:455.512500px;}
.y186{bottom:458.304600px;}
.yab{bottom:458.812500px;}
.ycd{bottom:460.308750px;}
.y50{bottom:462.412500px;}
.y10e{bottom:464.812500px;}
.y13{bottom:466.250550px;}
.y144{bottom:472.208550px;}
.y1a8{bottom:472.906050px;}
.y164{bottom:474.112500px;}
.y34{bottom:475.508550px;}
.yaa{bottom:476.812500px;}
.y73{bottom:477.412500px;}
.ycc{bottom:478.308750px;}
.y4f{bottom:484.012500px;}
.y10d{bottom:486.562500px;}
.y91{bottom:487.012500px;}
.yed{bottom:487.058550px;}
.y12{bottom:487.850550px;}
.y12b{bottom:490.912500px;}
.y1a7{bottom:492.706050px;}
.y143{bottom:494.108550px;}
.ya9{bottom:494.812500px;}
.y163{bottom:496.162500px;}
.ycb{bottom:496.308750px;}
.y33{bottom:497.108550px;}
.y72{bottom:499.312500px;}
.yec{bottom:505.058550px;}
.y4e{bottom:505.612500px;}
.y90{bottom:508.612500px;}
.y11{bottom:509.450550px;}
.y185{bottom:511.808550px;}
.y1a6{bottom:512.506050px;}
.y12a{bottom:512.512500px;}
.ya8{bottom:512.812500px;}
.yca{bottom:514.308750px;}
.y142{bottom:516.008550px;}
.y162{bottom:518.212500px;}
.y32{bottom:518.708550px;}
.y71{bottom:521.212500px;}
.yeb{bottom:522.908550px;}
.y4d{bottom:527.212500px;}
.y8f{bottom:530.212500px;}
.y10c{bottom:530.812500px;}
.y10{bottom:531.050550px;}
.y184{bottom:531.758550px;}
.y1a5{bottom:532.306050px;}
.yc9{bottom:532.308750px;}
.y141{bottom:537.908550px;}
.y161{bottom:540.262500px;}
.y31{bottom:540.308550px;}
.yea{bottom:540.758550px;}
.y70{bottom:543.112500px;}
.y4c{bottom:548.812500px;}
.y10b{bottom:549.112500px;}
.y183{bottom:551.708550px;}
.y1a4{bottom:552.106050px;}
.yf{bottom:552.650550px;}
.y129{bottom:555.712500px;}
.ye9{bottom:558.608550px;}
.y140{bottom:559.808550px;}
.y30{bottom:561.908550px;}
.y160{bottom:562.312500px;}
.y6f{bottom:565.012500px;}
.y10a{bottom:567.412500px;}
.y4b{bottom:570.412500px;}
.y182{bottom:571.658550px;}
.y1a3{bottom:571.906050px;}
.yc8{bottom:571.908750px;}
.y8e{bottom:573.412500px;}
.y128{bottom:574.012500px;}
.ye{bottom:574.250550px;}
.ye8{bottom:576.458550px;}
.y13f{bottom:581.708550px;}
.y2f{bottom:583.508550px;}
.y15f{bottom:584.362500px;}
.y109{bottom:585.712500px;}
.y6e{bottom:586.912500px;}
.y8d{bottom:591.412500px;}
.y181{bottom:591.608550px;}
.y1a2{bottom:591.706050px;}
.y4a{bottom:592.012500px;}
.y127{bottom:592.312500px;}
.yc7{bottom:593.508750px;}
.yd{bottom:595.850550px;}
.y13e{bottom:603.608550px;}
.y108{bottom:604.012500px;}
.y2e{bottom:605.108550px;}
.y15e{bottom:606.412500px;}
.y6d{bottom:608.812500px;}
.y126{bottom:610.612500px;}
.ye7{bottom:610.958550px;}
.y1a1{bottom:611.506050px;}
.y180{bottom:611.558550px;}
.y49{bottom:613.612500px;}
.yc{bottom:617.450550px;}
.y107{bottom:622.312500px;}
.y13d{bottom:625.508550px;}
.y2d{bottom:626.708550px;}
.y15d{bottom:628.462500px;}
.y125{bottom:628.912500px;}
.y6c{bottom:630.712500px;}
.y8c{bottom:631.012500px;}
.y1a0{bottom:631.306050px;}
.y17f{bottom:631.508550px;}
.ye6{bottom:632.558550px;}
.y48{bottom:635.212500px;}
.yc6{bottom:636.708750px;}
.yb{bottom:639.050550px;}
.y106{bottom:640.612500px;}
.y124{bottom:647.212500px;}
.y13c{bottom:647.408550px;}
.y2c{bottom:648.308550px;}
.y15c{bottom:650.512500px;}
.y19f{bottom:651.106050px;}
.y17e{bottom:651.458550px;}
.y6b{bottom:652.612500px;}
.y8b{bottom:652.912500px;}
.ye5{bottom:653.708550px;}
.yc5{bottom:654.708750px;}
.y47{bottom:656.812500px;}
.y105{bottom:658.912500px;}
.ya{bottom:660.650550px;}
.y123{bottom:665.512500px;}
.y13b{bottom:669.308550px;}
.y2b{bottom:669.908550px;}
.y17d{bottom:671.408550px;}
.y15b{bottom:672.562500px;}
.yc4{bottom:672.708750px;}
.y6a{bottom:674.512500px;}
.y8a{bottom:674.812500px;}
.ye4{bottom:674.858550px;}
.y104{bottom:677.212500px;}
.y46{bottom:678.412500px;}
.y9{bottom:682.250550px;}
.y122{bottom:683.812500px;}
.y19e{bottom:690.706050px;}
.yc3{bottom:690.708750px;}
.y13a{bottom:691.208550px;}
.y17c{bottom:691.358550px;}
.ya7{bottom:692.812500px;}
.y15a{bottom:694.612500px;}
.ye3{bottom:696.008550px;}
.y69{bottom:696.412500px;}
.y89{bottom:696.712500px;}
.y2a{bottom:700.012500px;}
.y121{bottom:702.112500px;}
.y8{bottom:703.850550px;}
.yc2{bottom:708.708750px;}
.ya6{bottom:710.812500px;}
.y17b{bottom:711.308550px;}
.y103{bottom:715.012500px;}
.y159{bottom:716.662500px;}
.ye2{bottom:717.158550px;}
.y68{bottom:718.312500px;}
.y88{bottom:718.612500px;}
.y120{bottom:720.412500px;}
.y19d{bottom:720.810000px;}
.y45{bottom:721.612500px;}
.y7{bottom:725.450550px;}
.yc1{bottom:726.708750px;}
.ya5{bottom:728.812500px;}
.y17a{bottom:731.258550px;}
.y102{bottom:736.762500px;}
.ye1{bottom:738.308550px;}
.y11f{bottom:738.712500px;}
.y67{bottom:740.212500px;}
.y87{bottom:740.512500px;}
.y19c{bottom:740.610000px;}
.y1c0{bottom:742.410000px;}
.y44{bottom:743.212500px;}
.ya4{bottom:746.812500px;}
.y6{bottom:747.050550px;}
.y179{bottom:751.208550px;}
.y11e{bottom:757.012500px;}
.y101{bottom:758.512500px;}
.ye0{bottom:759.458550px;}
.y1bf{bottom:760.410000px;}
.y158{bottom:760.762500px;}
.y66{bottom:762.112500px;}
.y86{bottom:762.412500px;}
.y43{bottom:764.812500px;}
.yc0{bottom:766.308750px;}
.y178{bottom:771.158550px;}
.y11d{bottom:775.312500px;}
.y1be{bottom:778.410000px;}
.y100{bottom:780.262500px;}
.ydf{bottom:780.608550px;}
.ya3{bottom:782.812500px;}
.y65{bottom:784.012500px;}
.y85{bottom:784.312500px;}
.y29{bottom:786.412500px;}
.ybf{bottom:787.908750px;}
.y177{bottom:791.108550px;}
.y11c{bottom:793.612500px;}
.y1bd{bottom:796.410000px;}
.yde{bottom:801.758550px;}
.ya2{bottom:804.412500px;}
.y157{bottom:804.862500px;}
.y19b{bottom:805.410000px;}
.y64{bottom:805.912500px;}
.y84{bottom:806.212500px;}
.y28{bottom:808.012500px;}
.ybe{bottom:809.508750px;}
.y176{bottom:811.058550px;}
.y11b{bottom:811.912500px;}
.ydd{bottom:822.908550px;}
.yff{bottom:824.512500px;}
.y139{bottom:826.012500px;}
.y156{bottom:826.912500px;}
.y63{bottom:827.812500px;}
.y83{bottom:828.112500px;}
.y27{bottom:829.612500px;}
.y175{bottom:831.008550px;}
.y19a{bottom:839.610000px;}
.yfe{bottom:842.512500px;}
.y138{bottom:844.012500px;}
.ydc{bottom:844.058550px;}
.ya1{bottom:847.612500px;}
.y155{bottom:848.962500px;}
.y62{bottom:849.712500px;}
.y82{bottom:850.012500px;}
.y174{bottom:850.958550px;}
.y26{bottom:851.212500px;}
.ybd{bottom:852.708750px;}
.y5{bottom:855.050700px;}
.y199{bottom:859.710000px;}
.yfd{bottom:860.512500px;}
.y1bc{bottom:861.210000px;}
.y137{bottom:862.012500px;}
.ydb{bottom:865.208550px;}
.ya0{bottom:865.612500px;}
.ybc{bottom:870.708750px;}
.y173{bottom:870.908550px;}
.y154{bottom:871.012500px;}
.y61{bottom:871.612500px;}
.y81{bottom:871.912500px;}
.y25{bottom:872.812500px;}
.yfc{bottom:878.512500px;}
.y198{bottom:879.810000px;}
.y136{bottom:880.012500px;}
.y1bb{bottom:881.010000px;}
.y9f{bottom:883.612500px;}
.y4{bottom:885.650700px;}
.yda{bottom:886.358550px;}
.ybb{bottom:888.708750px;}
.y172{bottom:890.858550px;}
.y153{bottom:893.062500px;}
.y60{bottom:893.512500px;}
.y80{bottom:893.812500px;}
.y24{bottom:894.412500px;}
.y197{bottom:899.910000px;}
.y1ba{bottom:900.810000px;}
.y9e{bottom:901.612500px;}
.yba{bottom:906.708750px;}
.yd9{bottom:907.508550px;}
.y171{bottom:910.808550px;}
.y152{bottom:915.112500px;}
.y5f{bottom:915.412500px;}
.y7f{bottom:915.712500px;}
.y23{bottom:916.012500px;}
.y196{bottom:920.010000px;}
.y1b9{bottom:920.610000px;}
.yb9{bottom:924.708750px;}
.y170{bottom:930.758550px;}
.y151{bottom:937.162500px;}
.y5e{bottom:937.312500px;}
.y7e{bottom:937.462500px;}
.y22{bottom:937.612500px;}
.y195{bottom:940.110000px;}
.y1b8{bottom:940.410000px;}
.y3{bottom:940.912050px;}
.yb8{bottom:942.708750px;}
.y2{bottom:958.912050px;}
.y21{bottom:959.212500px;}
.y194{bottom:960.210000px;}
.yb7{bottom:960.708750px;}
.h7{height:34.734375px;}
.ha{height:40.523438px;}
.h9{height:43.523438px;}
.h2{height:46.312500px;}
.hd{height:50.947266px;}
.h8{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.hb{height:60.785156px;}
.hc{height:63.679688px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035400px;}
.x4{left:129.295200px;}
.x7{left:150.555150px;}
.x8{left:171.814950px;}
.x5{left:182.170350px;}
.x1{left:288.435900px;}
.x6{left:302.077950px;}
.x9{left:574.709400px;}
.x2{left:617.164350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v1{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.058667pt;}
.lsc{letter-spacing:0.168000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.280000pt;}
.ls16{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.762667pt;}
.ls11{letter-spacing:2.522667pt;}
.ls5{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.lse{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls6{letter-spacing:6.400000pt;}
.lsa{letter-spacing:8.000000pt;}
.ls13{letter-spacing:8.253867pt;}
.ls2{letter-spacing:9.066667pt;}
.ls12{letter-spacing:9.738667pt;}
.ls9{letter-spacing:11.946667pt;}
.ls14{letter-spacing:17.600000pt;}
.wsc{word-spacing:-32.090667pt;}
.ws9{word-spacing:-20.320000pt;}
.ws5{word-spacing:-18.624000pt;}
.ws6{word-spacing:-18.304000pt;}
.ws0{word-spacing:-18.176000pt;}
.ws7{word-spacing:-17.984000pt;}
.wsd{word-spacing:-16.778667pt;}
.ws8{word-spacing:-16.016000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.wsb{word-spacing:-14.549333pt;}
.wsa{word-spacing:-14.490667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-18.247704pt;}
._16{margin-left:-17.212030pt;}
._17{margin-left:-15.289600pt;}
._1b{margin-left:-13.819259pt;}
._1a{margin-left:-12.828444pt;}
._18{margin-left:-11.204741pt;}
._19{margin-left:-10.197333pt;}
._5{margin-left:-9.066667pt;}
._15{margin-left:-7.872000pt;}
._13{margin-left:-6.949926pt;}
._2{margin-left:-5.866667pt;}
._1{margin-left:-4.352000pt;}
._9{margin-left:-2.922667pt;}
._3{margin-left:-1.813333pt;}
._14{margin-left:-0.898370pt;}
._0{width:0.912593pt;}
._6{width:1.822815pt;}
._7{width:3.041185pt;}
._11{width:3.999111pt;}
._d{width:5.038933pt;}
._a{width:6.592000pt;}
._12{width:7.843556pt;}
._b{width:8.832000pt;}
._8{width:10.240000pt;}
._e{width:11.136000pt;}
._f{width:12.138667pt;}
._1c{width:13.866667pt;}
._c{width:15.573333pt;}
._1d{width:18.538667pt;}
._1e{width:20.698667pt;}
._1f{width:23.968533pt;}
._10{width:50.598933pt;}
._20{width:133.920000pt;}
._21{width:177.013333pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y20{bottom:152.722667pt;}
.y42{bottom:153.874267pt;}
.yb6{bottom:154.233333pt;}
.yfb{bottom:155.074267pt;}
.y1b7{bottom:156.361067pt;}
.y5d{bottom:161.433333pt;}
.y150{bottom:166.674267pt;}
.y193{bottom:167.556133pt;}
.y7d{bottom:168.007600pt;}
.yb5{bottom:170.233333pt;}
.yfa{bottom:170.940933pt;}
.y1f{bottom:172.322667pt;}
.y41{bottom:173.074267pt;}
.y1b6{bottom:173.960933pt;}
.y9d{bottom:180.100000pt;}
.y5c{bottom:180.633333pt;}
.y11a{bottom:180.900000pt;}
.y192{bottom:185.422800pt;}
.y14f{bottom:186.140933pt;}
.yf9{bottom:186.807600pt;}
.y7c{bottom:187.207600pt;}
.yd8{bottom:188.363333pt;}
.y1b5{bottom:191.560933pt;}
.y40{bottom:192.274267pt;}
.y9c{bottom:196.100000pt;}
.y135{bottom:196.900000pt;}
.y119{bottom:197.166667pt;}
.y5b{bottom:199.833333pt;}
.yb4{bottom:202.233333pt;}
.yf8{bottom:202.674267pt;}
.y1e{bottom:203.244933pt;}
.y191{bottom:203.289467pt;}
.yd7{bottom:204.363333pt;}
.y14e{bottom:205.607600pt;}
.y16f{bottom:205.833333pt;}
.y7b{bottom:206.407600pt;}
.y1b4{bottom:209.160933pt;}
.y3f{bottom:211.474267pt;}
.y9b{bottom:212.100000pt;}
.y134{bottom:213.166667pt;}
.y118{bottom:213.433333pt;}
.yf7{bottom:218.540933pt;}
.y5a{bottom:219.033333pt;}
.yd6{bottom:220.363333pt;}
.y190{bottom:221.156133pt;}
.yb3{bottom:221.166667pt;}
.y1d{bottom:222.444933pt;}
.y14d{bottom:225.074267pt;}
.y16e{bottom:225.433333pt;}
.y7a{bottom:225.607600pt;}
.y1b3{bottom:226.760933pt;}
.y9a{bottom:228.100000pt;}
.y133{bottom:229.433333pt;}
.y117{bottom:229.700000pt;}
.y3e{bottom:230.674267pt;}
.yf6{bottom:234.407600pt;}
.yd5{bottom:236.363333pt;}
.y59{bottom:238.233333pt;}
.y18f{bottom:239.022800pt;}
.yb2{bottom:240.100000pt;}
.y1c{bottom:241.644933pt;}
.y1b2{bottom:244.360933pt;}
.y14c{bottom:244.540933pt;}
.y79{bottom:244.807600pt;}
.y16d{bottom:245.033333pt;}
.y132{bottom:245.700000pt;}
.y116{bottom:245.966667pt;}
.y3d{bottom:249.874267pt;}
.y18e{bottom:256.889467pt;}
.y58{bottom:257.433333pt;}
.yb1{bottom:259.033333pt;}
.y1b{bottom:260.844933pt;}
.y1b1{bottom:261.960933pt;}
.y131{bottom:261.966667pt;}
.y115{bottom:262.233333pt;}
.y99{bottom:263.300000pt;}
.y78{bottom:264.007600pt;}
.y16c{bottom:264.633333pt;}
.yf5{bottom:264.940933pt;}
.y3c{bottom:269.074267pt;}
.yd4{bottom:271.563333pt;}
.y18d{bottom:274.756133pt;}
.y57{bottom:276.633333pt;}
.yb0{bottom:277.966667pt;}
.y1b0{bottom:279.560933pt;}
.y1a{bottom:280.044933pt;}
.y98{bottom:282.500000pt;}
.y14b{bottom:283.474267pt;}
.yf4{bottom:284.140933pt;}
.y16b{bottom:284.233333pt;}
.y3b{bottom:288.274267pt;}
.yd3{bottom:290.763333pt;}
.y77{bottom:290.766667pt;}
.y18c{bottom:292.622800pt;}
.y130{bottom:295.566667pt;}
.y56{bottom:295.833333pt;}
.yaf{bottom:296.900000pt;}
.y1af{bottom:297.160933pt;}
.y114{bottom:297.166667pt;}
.y19{bottom:299.244933pt;}
.y14a{bottom:302.940933pt;}
.yf3{bottom:303.074267pt;}
.y16a{bottom:303.833333pt;}
.y3a{bottom:307.474267pt;}
.y18b{bottom:310.489467pt;}
.y1ae{bottom:314.760933pt;}
.y12f{bottom:314.766667pt;}
.y55{bottom:315.033333pt;}
.yae{bottom:315.833333pt;}
.y113{bottom:316.500000pt;}
.y18{bottom:318.444933pt;}
.y97{bottom:320.900000pt;}
.yf2{bottom:322.007600pt;}
.y149{bottom:322.407600pt;}
.y169{bottom:323.433333pt;}
.y39{bottom:326.674267pt;}
.y18a{bottom:328.356133pt;}
.yd2{bottom:329.163333pt;}
.y1ad{bottom:332.360933pt;}
.y54{bottom:334.233333pt;}
.yad{bottom:334.766667pt;}
.y112{bottom:335.833333pt;}
.y96{bottom:336.900000pt;}
.y17{bottom:337.644933pt;}
.yf1{bottom:340.940933pt;}
.y148{bottom:341.874267pt;}
.y168{bottom:343.033333pt;}
.yd1{bottom:345.163333pt;}
.y38{bottom:345.874267pt;}
.y189{bottom:346.222800pt;}
.y1ac{bottom:349.960933pt;}
.y95{bottom:352.900000pt;}
.y12e{bottom:353.166667pt;}
.y53{bottom:353.433333pt;}
.yac{bottom:353.700000pt;}
.y111{bottom:355.166667pt;}
.y16{bottom:356.844933pt;}
.yf0{bottom:359.874267pt;}
.yd0{bottom:361.163333pt;}
.y147{bottom:361.340933pt;}
.y167{bottom:362.633333pt;}
.y188{bottom:364.089467pt;}
.y37{bottom:365.074267pt;}
.y76{bottom:365.966667pt;}
.y1ab{bottom:367.560933pt;}
.y94{bottom:368.900000pt;}
.y12d{bottom:369.433333pt;}
.y52{bottom:372.633333pt;}
.y110{bottom:374.500000pt;}
.y15{bottom:376.044933pt;}
.ycf{bottom:377.163333pt;}
.yef{bottom:378.807600pt;}
.y146{bottom:380.807600pt;}
.y187{bottom:381.956133pt;}
.y166{bottom:382.233333pt;}
.y36{bottom:384.274267pt;}
.y93{bottom:384.900000pt;}
.y1aa{bottom:385.160933pt;}
.y75{bottom:385.433333pt;}
.y51{bottom:391.833333pt;}
.yce{bottom:393.163333pt;}
.y10f{bottom:393.833333pt;}
.y14{bottom:395.244933pt;}
.yee{bottom:397.740933pt;}
.y145{bottom:400.274267pt;}
.y92{bottom:400.900000pt;}
.y12c{bottom:401.433333pt;}
.y165{bottom:401.833333pt;}
.y1a9{bottom:402.760933pt;}
.y35{bottom:403.474267pt;}
.y74{bottom:404.900000pt;}
.y186{bottom:407.381867pt;}
.yab{bottom:407.833333pt;}
.ycd{bottom:409.163333pt;}
.y50{bottom:411.033333pt;}
.y10e{bottom:413.166667pt;}
.y13{bottom:414.444933pt;}
.y144{bottom:419.740933pt;}
.y1a8{bottom:420.360933pt;}
.y164{bottom:421.433333pt;}
.y34{bottom:422.674267pt;}
.yaa{bottom:423.833333pt;}
.y73{bottom:424.366667pt;}
.ycc{bottom:425.163333pt;}
.y4f{bottom:430.233333pt;}
.y10d{bottom:432.500000pt;}
.y91{bottom:432.900000pt;}
.yed{bottom:432.940933pt;}
.y12{bottom:433.644933pt;}
.y12b{bottom:436.366667pt;}
.y1a7{bottom:437.960933pt;}
.y143{bottom:439.207600pt;}
.ya9{bottom:439.833333pt;}
.y163{bottom:441.033333pt;}
.ycb{bottom:441.163333pt;}
.y33{bottom:441.874267pt;}
.y72{bottom:443.833333pt;}
.yec{bottom:448.940933pt;}
.y4e{bottom:449.433333pt;}
.y90{bottom:452.100000pt;}
.y11{bottom:452.844933pt;}
.y185{bottom:454.940933pt;}
.y1a6{bottom:455.560933pt;}
.y12a{bottom:455.566667pt;}
.ya8{bottom:455.833333pt;}
.yca{bottom:457.163333pt;}
.y142{bottom:458.674267pt;}
.y162{bottom:460.633333pt;}
.y32{bottom:461.074267pt;}
.y71{bottom:463.300000pt;}
.yeb{bottom:464.807600pt;}
.y4d{bottom:468.633333pt;}
.y8f{bottom:471.300000pt;}
.y10c{bottom:471.833333pt;}
.y10{bottom:472.044933pt;}
.y184{bottom:472.674267pt;}
.y1a5{bottom:473.160933pt;}
.yc9{bottom:473.163333pt;}
.y141{bottom:478.140933pt;}
.y161{bottom:480.233333pt;}
.y31{bottom:480.274267pt;}
.yea{bottom:480.674267pt;}
.y70{bottom:482.766667pt;}
.y4c{bottom:487.833333pt;}
.y10b{bottom:488.100000pt;}
.y183{bottom:490.407600pt;}
.y1a4{bottom:490.760933pt;}
.yf{bottom:491.244933pt;}
.y129{bottom:493.966667pt;}
.ye9{bottom:496.540933pt;}
.y140{bottom:497.607600pt;}
.y30{bottom:499.474267pt;}
.y160{bottom:499.833333pt;}
.y6f{bottom:502.233333pt;}
.y10a{bottom:504.366667pt;}
.y4b{bottom:507.033333pt;}
.y182{bottom:508.140933pt;}
.y1a3{bottom:508.360933pt;}
.yc8{bottom:508.363333pt;}
.y8e{bottom:509.700000pt;}
.y128{bottom:510.233333pt;}
.ye{bottom:510.444933pt;}
.ye8{bottom:512.407600pt;}
.y13f{bottom:517.074267pt;}
.y2f{bottom:518.674267pt;}
.y15f{bottom:519.433333pt;}
.y109{bottom:520.633333pt;}
.y6e{bottom:521.700000pt;}
.y8d{bottom:525.700000pt;}
.y181{bottom:525.874267pt;}
.y1a2{bottom:525.960933pt;}
.y4a{bottom:526.233333pt;}
.y127{bottom:526.500000pt;}
.yc7{bottom:527.563333pt;}
.yd{bottom:529.644933pt;}
.y13e{bottom:536.540933pt;}
.y108{bottom:536.900000pt;}
.y2e{bottom:537.874267pt;}
.y15e{bottom:539.033333pt;}
.y6d{bottom:541.166667pt;}
.y126{bottom:542.766667pt;}
.ye7{bottom:543.074267pt;}
.y1a1{bottom:543.560933pt;}
.y180{bottom:543.607600pt;}
.y49{bottom:545.433333pt;}
.yc{bottom:548.844933pt;}
.y107{bottom:553.166667pt;}
.y13d{bottom:556.007600pt;}
.y2d{bottom:557.074267pt;}
.y15d{bottom:558.633333pt;}
.y125{bottom:559.033333pt;}
.y6c{bottom:560.633333pt;}
.y8c{bottom:560.900000pt;}
.y1a0{bottom:561.160933pt;}
.y17f{bottom:561.340933pt;}
.ye6{bottom:562.274267pt;}
.y48{bottom:564.633333pt;}
.yc6{bottom:565.963333pt;}
.yb{bottom:568.044933pt;}
.y106{bottom:569.433333pt;}
.y124{bottom:575.300000pt;}
.y13c{bottom:575.474267pt;}
.y2c{bottom:576.274267pt;}
.y15c{bottom:578.233333pt;}
.y19f{bottom:578.760933pt;}
.y17e{bottom:579.074267pt;}
.y6b{bottom:580.100000pt;}
.y8b{bottom:580.366667pt;}
.ye5{bottom:581.074267pt;}
.yc5{bottom:581.963333pt;}
.y47{bottom:583.833333pt;}
.y105{bottom:585.700000pt;}
.ya{bottom:587.244933pt;}
.y123{bottom:591.566667pt;}
.y13b{bottom:594.940933pt;}
.y2b{bottom:595.474267pt;}
.y17d{bottom:596.807600pt;}
.y15b{bottom:597.833333pt;}
.yc4{bottom:597.963333pt;}
.y6a{bottom:599.566667pt;}
.y8a{bottom:599.833333pt;}
.ye4{bottom:599.874267pt;}
.y104{bottom:601.966667pt;}
.y46{bottom:603.033333pt;}
.y9{bottom:606.444933pt;}
.y122{bottom:607.833333pt;}
.y19e{bottom:613.960933pt;}
.yc3{bottom:613.963333pt;}
.y13a{bottom:614.407600pt;}
.y17c{bottom:614.540933pt;}
.ya7{bottom:615.833333pt;}
.y15a{bottom:617.433333pt;}
.ye3{bottom:618.674267pt;}
.y69{bottom:619.033333pt;}
.y89{bottom:619.300000pt;}
.y2a{bottom:622.233333pt;}
.y121{bottom:624.100000pt;}
.y8{bottom:625.644933pt;}
.yc2{bottom:629.963333pt;}
.ya6{bottom:631.833333pt;}
.y17b{bottom:632.274267pt;}
.y103{bottom:635.566667pt;}
.y159{bottom:637.033333pt;}
.ye2{bottom:637.474267pt;}
.y68{bottom:638.500000pt;}
.y88{bottom:638.766667pt;}
.y120{bottom:640.366667pt;}
.y19d{bottom:640.720000pt;}
.y45{bottom:641.433333pt;}
.y7{bottom:644.844933pt;}
.yc1{bottom:645.963333pt;}
.ya5{bottom:647.833333pt;}
.y17a{bottom:650.007600pt;}
.y102{bottom:654.900000pt;}
.ye1{bottom:656.274267pt;}
.y11f{bottom:656.633333pt;}
.y67{bottom:657.966667pt;}
.y87{bottom:658.233333pt;}
.y19c{bottom:658.320000pt;}
.y1c0{bottom:659.920000pt;}
.y44{bottom:660.633333pt;}
.ya4{bottom:663.833333pt;}
.y6{bottom:664.044933pt;}
.y179{bottom:667.740933pt;}
.y11e{bottom:672.900000pt;}
.y101{bottom:674.233333pt;}
.ye0{bottom:675.074267pt;}
.y1bf{bottom:675.920000pt;}
.y158{bottom:676.233333pt;}
.y66{bottom:677.433333pt;}
.y86{bottom:677.700000pt;}
.y43{bottom:679.833333pt;}
.yc0{bottom:681.163333pt;}
.y178{bottom:685.474267pt;}
.y11d{bottom:689.166667pt;}
.y1be{bottom:691.920000pt;}
.y100{bottom:693.566667pt;}
.ydf{bottom:693.874267pt;}
.ya3{bottom:695.833333pt;}
.y65{bottom:696.900000pt;}
.y85{bottom:697.166667pt;}
.y29{bottom:699.033333pt;}
.ybf{bottom:700.363333pt;}
.y177{bottom:703.207600pt;}
.y11c{bottom:705.433333pt;}
.y1bd{bottom:707.920000pt;}
.yde{bottom:712.674267pt;}
.ya2{bottom:715.033333pt;}
.y157{bottom:715.433333pt;}
.y19b{bottom:715.920000pt;}
.y64{bottom:716.366667pt;}
.y84{bottom:716.633333pt;}
.y28{bottom:718.233333pt;}
.ybe{bottom:719.563333pt;}
.y176{bottom:720.940933pt;}
.y11b{bottom:721.700000pt;}
.ydd{bottom:731.474267pt;}
.yff{bottom:732.900000pt;}
.y139{bottom:734.233333pt;}
.y156{bottom:735.033333pt;}
.y63{bottom:735.833333pt;}
.y83{bottom:736.100000pt;}
.y27{bottom:737.433333pt;}
.y175{bottom:738.674267pt;}
.y19a{bottom:746.320000pt;}
.yfe{bottom:748.900000pt;}
.y138{bottom:750.233333pt;}
.ydc{bottom:750.274267pt;}
.ya1{bottom:753.433333pt;}
.y155{bottom:754.633333pt;}
.y62{bottom:755.300000pt;}
.y82{bottom:755.566667pt;}
.y174{bottom:756.407600pt;}
.y26{bottom:756.633333pt;}
.ybd{bottom:757.963333pt;}
.y5{bottom:760.045067pt;}
.y199{bottom:764.186667pt;}
.yfd{bottom:764.900000pt;}
.y1bc{bottom:765.520000pt;}
.y137{bottom:766.233333pt;}
.ydb{bottom:769.074267pt;}
.ya0{bottom:769.433333pt;}
.ybc{bottom:773.963333pt;}
.y173{bottom:774.140933pt;}
.y154{bottom:774.233333pt;}
.y61{bottom:774.766667pt;}
.y81{bottom:775.033333pt;}
.y25{bottom:775.833333pt;}
.yfc{bottom:780.900000pt;}
.y198{bottom:782.053333pt;}
.y136{bottom:782.233333pt;}
.y1bb{bottom:783.120000pt;}
.y9f{bottom:785.433333pt;}
.y4{bottom:787.245067pt;}
.yda{bottom:787.874267pt;}
.ybb{bottom:789.963333pt;}
.y172{bottom:791.874267pt;}
.y153{bottom:793.833333pt;}
.y60{bottom:794.233333pt;}
.y80{bottom:794.500000pt;}
.y24{bottom:795.033333pt;}
.y197{bottom:799.920000pt;}
.y1ba{bottom:800.720000pt;}
.y9e{bottom:801.433333pt;}
.yba{bottom:805.963333pt;}
.yd9{bottom:806.674267pt;}
.y171{bottom:809.607600pt;}
.y152{bottom:813.433333pt;}
.y5f{bottom:813.700000pt;}
.y7f{bottom:813.966667pt;}
.y23{bottom:814.233333pt;}
.y196{bottom:817.786667pt;}
.y1b9{bottom:818.320000pt;}
.yb9{bottom:821.963333pt;}
.y170{bottom:827.340933pt;}
.y151{bottom:833.033333pt;}
.y5e{bottom:833.166667pt;}
.y7e{bottom:833.300000pt;}
.y22{bottom:833.433333pt;}
.y195{bottom:835.653333pt;}
.y1b8{bottom:835.920000pt;}
.y3{bottom:836.366267pt;}
.yb8{bottom:837.963333pt;}
.y2{bottom:852.366267pt;}
.y21{bottom:852.633333pt;}
.y194{bottom:853.520000pt;}
.yb7{bottom:853.963333pt;}
.h7{height:30.875000pt;}
.ha{height:36.020833pt;}
.h9{height:38.687500pt;}
.h2{height:41.166667pt;}
.hd{height:45.286458pt;}
.h8{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.hb{height:54.031250pt;}
.hc{height:56.604167pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.031467pt;}
.x4{left:114.929067pt;}
.x7{left:133.826800pt;}
.x8{left:152.724400pt;}
.x5{left:161.929200pt;}
.x1{left:256.387467pt;}
.x6{left:268.513733pt;}
.x9{left:510.852800pt;}
.x2{left:548.590533pt;}
}




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