
    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_801b146163b907735b621310.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_2b3a5beb393510624cd2ff63.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_238901ccf68115475a8de00a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e9d5e58a0a7cd68bdaa5775.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3a273e867276d000f176fda7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_783ee83414153b58815c0a0f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1ceb6293644401891ef00ff1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.187860px;}
.ls3{letter-spacing:0.332100px;}
.ls7{letter-spacing:0.375720px;}
.ls1{letter-spacing:46.065102px;}
.ls4{letter-spacing:54.710498px;}
.ls2{letter-spacing:64.076494px;}
.ls10{letter-spacing:72.240811px;}
.ls11{letter-spacing:180.306168px;}
.ls12{letter-spacing:187.510965px;}
.ls5{letter-spacing:220.563288px;}
.lsd{letter-spacing:248.027541px;}
.ls13{letter-spacing:253.791138px;}
.ls14{letter-spacing:268.199533px;}
.lse{letter-spacing:400.039280px;}
.lsf{letter-spacing:432.459067px;}
.lsb{letter-spacing:832.913667px;}
.ls9{letter-spacing:979.877608px;}
.lsc{letter-spacing:1128.281549px;}
.ls8{letter-spacing:1329.275468px;}
.lsa{letter-spacing:1378.985448px;}
.ls6{letter-spacing:1435.181426px;}
.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;}
}
.ws3{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.499995px;}
.ws5{word-spacing:-12.779995px;}
.ws4{word-spacing:-12.059995px;}
.ws0{word-spacing:-9.719996px;}
.ws6{word-spacing:-8.999996px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-1.188067px;}
._0{width:1.136814px;}
._9{width:2.962330px;}
._b{width:4.654564px;}
._4{width:5.867401px;}
._8{width:7.147154px;}
._7{width:8.343092px;}
._2{width:10.141651px;}
._1{width:11.466173px;}
._6{width:13.316942px;}
._32{width:14.344652px;}
._37{width:15.537118px;}
._c{width:16.720223px;}
._a{width:18.057916px;}
._16{width:19.162457px;}
._13{width:20.370938px;}
._14{width:22.386353px;}
._23{width:23.514757px;}
._30{width:24.693625px;}
._11{width:26.004641px;}
._10{width:27.347164px;}
._d{width:28.472579px;}
._12{width:30.344486px;}
._19{width:31.873504px;}
._15{width:33.508294px;}
._22{width:34.571500px;}
._e{width:36.914653px;}
._f{width:37.929063px;}
._18{width:39.321738px;}
._35{width:41.179333px;}
._24{width:42.471974px;}
._2c{width:46.264494px;}
._31{width:48.397239px;}
._36{width:50.277345px;}
._3{width:55.051168px;}
._2b{width:56.180524px;}
._33{width:61.074475px;}
._2a{width:63.495686px;}
._29{width:67.114173px;}
._25{width:69.722131px;}
._2d{width:74.764158px;}
._26{width:81.968831px;}
._28{width:134.400558px;}
._27{width:143.925146px;}
._2f{width:146.432461px;}
._2e{width:161.776264px;}
._1f{width:169.866033px;}
._20{width:174.613810px;}
._34{width:191.818565px;}
._1e{width:195.275462px;}
._17{width:197.590385px;}
._1c{width:203.350678px;}
._1b{width:365.449066px;}
._21{width:441.094878px;}
._1a{width:479.953315px;}
._1d{width:601.097220px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.879999px;}
.fs5{font-size:35.999986px;}
.fs4{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs1{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs6{font-size:66.239974px;}
.fs3{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y86{bottom:1.979266px;}
.yc7{bottom:2.699060px;}
.yca{bottom:2.879085px;}
.ycd{bottom:2.879097px;}
.yd1{bottom:2.879116px;}
.yd3{bottom:2.879123px;}
.yd9{bottom:2.879142px;}
.ydb{bottom:2.879148px;}
.ye2{bottom:2.879152px;}
.ydd{bottom:2.879155px;}
.ye5{bottom:2.879174px;}
.yf0{bottom:2.879180px;}
.ye8{bottom:2.879190px;}
.yea{bottom:2.879197px;}
.yec{bottom:2.879204px;}
.yf5{bottom:2.879218px;}
.yf9{bottom:2.879236px;}
.yfb{bottom:2.879243px;}
.y101{bottom:2.879253px;}
.y105{bottom:2.879272px;}
.y109{bottom:2.879279px;}
.y10d{bottom:2.879297px;}
.y5{bottom:149.700240px;}
.y2a{bottom:154.199938px;}
.y12e{bottom:223.319911px;}
.y4e{bottom:232.859907px;}
.y8a{bottom:233.759906px;}
.y6e{bottom:235.019906px;}
.y27{bottom:235.379906px;}
.y10e{bottom:239.879904px;}
.y149{bottom:245.279902px;}
.y9e{bottom:247.619901px;}
.y4d{bottom:253.559899px;}
.y10c{bottom:253.560600px;}
.y12d{bottom:254.639898px;}
.y26{bottom:256.079898px;}
.y10f{bottom:256.259897px;}
.y10b{bottom:256.439897px;}
.y89{bottom:259.139896px;}
.yb2{bottom:259.859896px;}
.y6d{bottom:264.719894px;}
.y148{bottom:266.519893px;}
.y9d{bottom:268.319893px;}
.y12c{bottom:272.279891px;}
.y4c{bottom:274.259890px;}
.y25{bottom:276.779889px;}
.yb1{bottom:280.559888px;}
.y88{bottom:284.699886px;}
.y6c{bottom:285.419886px;}
.y10a{bottom:286.859885px;}
.y147{bottom:287.579885px;}
.y9c{bottom:289.019884px;}
.y24{bottom:297.479881px;}
.y12b{bottom:299.639880px;}
.y108{bottom:300.540600px;}
.yb0{bottom:301.259879px;}
.y106{bottom:303.419879px;}
.y4b{bottom:304.139878px;}
.y146{bottom:308.639877px;}
.y9b{bottom:309.719876px;}
.y87{bottom:310.079876px;}
.y6b{bottom:315.119874px;}
.y104{bottom:317.100600px;}
.y12a{bottom:317.279873px;}
.y23{bottom:318.179873px;}
.y107{bottom:319.799872px;}
.y103{bottom:319.979872px;}
.yaf{bottom:321.959871px;}
.y9a{bottom:330.419868px;}
.y85{bottom:333.480600px;}
.y4a{bottom:335.999866px;}
.y22{bottom:338.879864px;}
.y145{bottom:339.419864px;}
.yae{bottom:342.659863px;}
.y129{bottom:344.639862px;}
.y6a{bottom:344.819862px;}
.y102{bottom:350.579860px;}
.y99{bottom:351.119860px;}
.y21{bottom:359.579856px;}
.y128{bottom:362.099855px;}
.y100{bottom:364.260600px;}
.yff{bottom:367.139853px;}
.y49{bottom:367.499853px;}
.y144{bottom:370.919852px;}
.y98{bottom:371.819851px;}
.yad{bottom:372.719851px;}
.y84{bottom:373.979850px;}
.y69{bottom:374.519850px;}
.yfc{bottom:376.139850px;}
.y127{bottom:379.739848px;}
.y20{bottom:380.279848px;}
.y48{bottom:388.199845px;}
.yfa{bottom:389.820600px;}
.y143{bottom:391.619843px;}
.y97{bottom:392.519843px;}
.yfe{bottom:392.699843px;}
.y68{bottom:395.219842px;}
.y83{bottom:400.799840px;}
.y1f{bottom:400.979840px;}
.yf8{bottom:406.380600px;}
.y126{bottom:406.919837px;}
.yfd{bottom:409.079836px;}
.yf7{bottom:409.259836px;}
.y142{bottom:412.319835px;}
.y96{bottom:413.219835px;}
.y47{bottom:417.899833px;}
.y82{bottom:420.779832px;}
.y1e{bottom:421.499831px;}
.y67{bottom:424.919830px;}
.y141{bottom:433.019827px;}
.y95{bottom:433.919826px;}
.y125{bottom:435.539826px;}
.y46{bottom:438.599825px;}
.yf6{bottom:439.679824px;}
.y81{bottom:440.579824px;}
.y1d{bottom:442.199823px;}
.y66{bottom:445.619822px;}
.yf4{bottom:453.360600px;}
.y140{bottom:453.719819px;}
.y94{bottom:454.619818px;}
.y45{bottom:459.299816px;}
.y1c{bottom:462.899815px;}
.y124{bottom:464.879814px;}
.y80{bottom:470.459812px;}
.yed{bottom:474.239810px;}
.y13f{bottom:474.419810px;}
.y65{bottom:475.319810px;}
.yc0{bottom:479.279808px;}
.y44{bottom:479.999808px;}
.yf3{bottom:481.799807px;}
.y123{bottom:482.519807px;}
.y1b{bottom:483.599807px;}
.yac{bottom:484.319806px;}
.yeb{bottom:487.920600px;}
.y7f{bottom:491.159804px;}
.y13e{bottom:495.119802px;}
.y64{bottom:496.019802px;}
.y43{bottom:500.699800px;}
.y1a{bottom:504.299798px;}
.ye9{bottom:504.480600px;}
.y93{bottom:505.019798px;}
.ybf{bottom:507.179797px;}
.yf2{bottom:507.359797px;}
.y122{bottom:509.879796px;}
.y7e{bottom:511.859795px;}
.y13d{bottom:515.819794px;}
.y63{bottom:516.719793px;}
.ye7{bottom:521.040600px;}
.y42{bottom:521.399791px;}
.y19{bottom:524.999790px;}
.yab{bottom:525.719790px;}
.y121{bottom:527.339789px;}
.ybe{bottom:527.879789px;}
.y7d{bottom:532.559787px;}
.yf1{bottom:532.919787px;}
.y92{bottom:534.719786px;}
.y62{bottom:537.419785px;}
.y41{bottom:542.099783px;}
.y13c{bottom:545.519782px;}
.y18{bottom:545.699782px;}
.yaa{bottom:546.419781px;}
.yef{bottom:546.600600px;}
.ybd{bottom:548.579781px;}
.ye6{bottom:549.479780px;}
.y120{bottom:554.699778px;}
.y91{bottom:555.419778px;}
.y7c{bottom:562.259775px;}
.y40{bottom:562.799775px;}
.ye4{bottom:563.160600px;}
.yee{bottom:565.859774px;}
.ye3{bottom:566.039774px;}
.y13b{bottom:566.219774px;}
.y17{bottom:566.399773px;}
.y61{bottom:567.119773px;}
.y11f{bottom:572.339771px;}
.y90{bottom:576.119770px;}
.ybc{bottom:578.279769px;}
.y7b{bottom:582.959767px;}
.y3f{bottom:583.499767px;}
.y13a{bottom:586.739765px;}
.y16{bottom:587.099765px;}
.y60{bottom:587.819765px;}
.yde{bottom:596.639761px;}
.y8f{bottom:596.819761px;}
.y11e{bottom:599.519760px;}
.y7a{bottom:603.659759px;}
.y3e{bottom:604.199758px;}
.y139{bottom:607.439757px;}
.y15{bottom:607.799757px;}
.ybb{bottom:607.979757px;}
.ydc{bottom:610.140600px;}
.y5f{bottom:617.519753px;}
.ye1{bottom:617.700600px;}
.ye0{bottom:620.579752px;}
.y3d{bottom:624.899750px;}
.y79{bottom:625.439750px;}
.yda{bottom:626.700600px;}
.y11d{bottom:628.139749px;}
.y14{bottom:628.499749px;}
.yba{bottom:637.679745px;}
.y15e{bottom:637.859745px;}
.y5e{bottom:638.219745px;}
.yd8{bottom:643.260600px;}
.y3c{bottom:645.599742px;}
.ydf{bottom:645.959742px;}
.yd7{bottom:646.139742px;}
.y78{bottom:647.219741px;}
.y138{bottom:648.839740px;}
.y13{bottom:649.199740px;}
.y15c{bottom:655.859738px;}
.y11c{bottom:657.839737px;}
.y5d{bottom:658.739737px;}
.y15d{bottom:661.799735px;}
.y3b{bottom:666.119734px;}
.yb9{bottom:667.379733px;}
.y77{bottom:668.639733px;}
.y137{bottom:669.539732px;}
.y12{bottom:670.259732px;}
.y15b{bottom:673.859730px;}
.yd4{bottom:676.739729px;}
.y11b{bottom:678.539729px;}
.y5c{bottom:679.439728px;}
.y3a{bottom:686.819725px;}
.yd2{bottom:690.420600px;}
.yd6{bottom:693.299723px;}
.yb8{bottom:697.079721px;}
.y11a{bottom:699.239720px;}
.y76{bottom:699.779720px;}
.y5b{bottom:700.139720px;}
.y15a{bottom:700.499720px;}
.yd0{bottom:706.980600px;}
.y39{bottom:707.519717px;}
.ya9{bottom:709.139716px;}
.yd5{bottom:709.679716px;}
.ycf{bottom:709.859716px;}
.y10{bottom:712.199715px;}
.y159{bottom:715.979714px;}
.y11{bottom:718.139713px;}
.y75{bottom:720.299712px;}
.y5a{bottom:720.839712px;}
.yb7{bottom:726.779709px;}
.y38{bottom:728.219709px;}
.y119{bottom:728.939708px;}
.ya8{bottom:729.839708px;}
.yf{bottom:730.739708px;}
.ye{bottom:736.679705px;}
.yce{bottom:740.279704px;}
.y158{bottom:740.639704px;}
.y59{bottom:741.539703px;}
.y74{bottom:742.079703px;}
.y37{bottom:748.919700px;}
.y136{bottom:749.639700px;}
.yc{bottom:749.819700px;}
.ya7{bottom:750.539700px;}
.ycc{bottom:753.960600px;}
.y157{bottom:756.119698px;}
.yb6{bottom:756.479697px;}
.yd{bottom:756.659697px;}
.ycb{bottom:756.839697px;}
.y118{bottom:758.639697px;}
.y58{bottom:762.239695px;}
.y73{bottom:762.779695px;}
.y36{bottom:769.619692px;}
.y135{bottom:770.339692px;}
.ya6{bottom:771.239692px;}
.yb{bottom:779.879688px;}
.y156{bottom:780.959688px;}
.y57{bottom:782.939687px;}
.y72{bottom:784.199686px;}
.yc9{bottom:784.560600px;}
.yb5{bottom:784.739686px;}
.y117{bottom:786.899685px;}
.yc8{bottom:787.439685px;}
.y35{bottom:790.319684px;}
.ya5{bottom:791.939683px;}
.y155{bottom:798.959680px;}
.y134{bottom:800.039680px;}
.y56{bottom:803.639679px;}
.ya{bottom:809.579676px;}
.y34{bottom:811.019676px;}
.ya4{bottom:812.639675px;}
.y71{bottom:815.339674px;}
.yc5{bottom:817.859673px;}
.y55{bottom:824.339670px;}
.y154{bottom:825.959670px;}
.y133{bottom:829.739668px;}
.y33{bottom:831.719667px;}
.yb4{bottom:833.339667px;}
.yc4{bottom:834.419666px;}
.y70{bottom:836.039666px;}
.y9{bottom:839.279664px;}
.ya3{bottom:842.339663px;}
.y116{bottom:843.779662px;}
.y153{bottom:843.959662px;}
.y54{bottom:845.039662px;}
.yc6{bottom:848.280600px;}
.yc3{bottom:850.979660px;}
.y32{bottom:852.419659px;}
.y8e{bottom:854.039658px;}
.y132{bottom:859.439656px;}
.y152{bottom:861.959655px;}
.ya2{bottom:863.039655px;}
.y53{bottom:865.739654px;}
.y8{bottom:870.599652px;}
.yc2{bottom:870.779652px;}
.y115{bottom:872.039651px;}
.y8d{bottom:874.739650px;}
.y31{bottom:882.479647px;}
.ya1{bottom:883.739647px;}
.y52{bottom:886.439645px;}
.yc1{bottom:888.239645px;}
.y151{bottom:888.599645px;}
.y131{bottom:889.139644px;}
.y8c{bottom:895.439642px;}
.y7{bottom:897.419641px;}
.y114{bottom:900.479640px;}
.y150{bottom:904.079638px;}
.ya0{bottom:904.439638px;}
.y51{bottom:907.139637px;}
.y30{bottom:916.139634px;}
.y130{bottom:918.839632px;}
.y14f{bottom:919.739632px;}
.y6{bottom:924.419630px;}
.y9f{bottom:925.139630px;}
.y6f{bottom:927.839629px;}
.y113{bottom:928.559629px;}
.y14e{bottom:935.219626px;}
.y2f{bottom:936.839625px;}
.y4{bottom:945.479622px;}
.y8b{bottom:945.839622px;}
.y12f{bottom:948.539621px;}
.y112{bottom:948.719621px;}
.y50{bottom:957.539617px;}
.y3{bottom:959.339616px;}
.y14d{bottom:960.059616px;}
.y2e{bottom:966.539613px;}
.y111{bottom:968.339613px;}
.y2{bottom:973.199611px;}
.y14c{bottom:978.059609px;}
.yb3{bottom:978.239609px;}
.y1{bottom:983.999606px;}
.y110{bottom:986.879605px;}
.y2d{bottom:987.239605px;}
.y14b{bottom:996.059602px;}
.y2c{bottom:1007.939597px;}
.y14a{bottom:1026.839589px;}
.y2b{bottom:1028.639589px;}
.y29{bottom:1060.859576px;}
.y4f{bottom:1062.299575px;}
.y28{bottom:1076.339569px;}
.h11{height:2.826561px;}
.hf{height:13.680000px;}
.h7{height:35.332017px;}
.h6{height:39.183734px;}
.h18{height:42.077093px;}
.h17{height:44.149201px;}
.ha{height:47.321348px;}
.h1{height:47.344903px;}
.h13{height:47.896856px;}
.h12{height:48.616856px;}
.h16{height:50.146503px;}
.h10{height:50.171464px;}
.he{height:51.519354px;}
.hb{height:52.971658px;}
.h2{height:52.998026px;}
.h15{height:53.316541px;}
.h14{height:56.320290px;}
.h9{height:58.621969px;}
.h3{height:58.651148px;}
.h5{height:60.226851px;}
.hd{height:62.327788px;}
.h8{height:64.978568px;}
.hc{height:66.757473px;}
.h4{height:78.367469px;}
.h0{height:1263.000000px;}
.w9{width:1.620000px;}
.w8{width:3.060000px;}
.w4{width:3.600000px;}
.w5{width:5.580000px;}
.w2{width:6.480000px;}
.w3{width:69.660000px;}
.w7{width:140.040000px;}
.w6{width:159.480000px;}
.w1{width:222.660000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:161.639935px;}
.x28{left:163.439935px;}
.x12{left:164.699934px;}
.x1f{left:175.679930px;}
.x3{left:178.559929px;}
.x2b{left:180.719928px;}
.xd{left:182.519927px;}
.x38{left:186.659925px;}
.x1a{left:188.639102px;}
.x3f{left:199.799293px;}
.x16{left:202.139919px;}
.x15{left:204.119935px;}
.x18{left:205.559830px;}
.x2e{left:210.240000px;}
.x37{left:213.839914px;}
.x1b{left:215.638539px;}
.x10{left:221.039912px;}
.x19{left:232.559806px;}
.x5{left:241.199904px;}
.x6{left:253.439899px;}
.x3a{left:267.659866px;}
.x3d{left:278.999888px;}
.x1c{left:282.419887px;}
.x21{left:307.439877px;}
.x13{left:313.379875px;}
.x1d{left:333.180000px;}
.x7{left:338.939864px;}
.x20{left:340.739864px;}
.x8{left:343.799862px;}
.x39{left:349.919581px;}
.x36{left:357.299857px;}
.x24{left:358.559857px;}
.x2f{left:363.419152px;}
.x30{left:367.919530px;}
.x22{left:369.539852px;}
.x32{left:370.979247px;}
.x23{left:378.539849px;}
.xe{left:390.959844px;}
.xf{left:395.459842px;}
.x3b{left:416.159761px;}
.x9{left:433.979826px;}
.xa{left:438.839824px;}
.x40{left:442.799823px;}
.x2c{left:447.300000px;}
.x35{left:454.859266px;}
.x17{left:477.359809px;}
.x29{left:487.259805px;}
.xb{left:510.119796px;}
.xc{left:514.979794px;}
.x1e{left:555.660000px;}
.x3c{left:578.159714px;}
.x31{left:603.720000px;}
.x33{left:605.160000px;}
.x25{left:609.659756px;}
.x27{left:621.719751px;}
.x2d{left:626.580347px;}
.x34{left:634.140442px;}
.x26{left:645.120000px;}
.x2a{left:709.200000px;}
.x14{left:714.419714px;}
.x3e{left:716.219714px;}
.x4{left:723.779710px;}
.x2{left:731.339702px;}
.x1{left:736.739705px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.166987pt;}
.ls3{letter-spacing:0.295200pt;}
.ls7{letter-spacing:0.333973pt;}
.ls1{letter-spacing:40.946757pt;}
.ls4{letter-spacing:48.631554pt;}
.ls2{letter-spacing:56.956884pt;}
.ls10{letter-spacing:64.214054pt;}
.ls11{letter-spacing:160.272149pt;}
.ls12{letter-spacing:166.676413pt;}
.ls5{letter-spacing:196.056256pt;}
.lsd{letter-spacing:220.468925pt;}
.ls13{letter-spacing:225.592123pt;}
.ls14{letter-spacing:238.399585pt;}
.lse{letter-spacing:355.590471pt;}
.lsf{letter-spacing:384.408060pt;}
.lsb{letter-spacing:740.367704pt;}
.ls9{letter-spacing:871.002318pt;}
.lsc{letter-spacing:1002.916932pt;}
.ls8{letter-spacing:1181.578194pt;}
.lsa{letter-spacing:1225.764843pt;}
.ls6{letter-spacing:1275.716823pt;}
.ws3{word-spacing:-13.279995pt;}
.ws1{word-spacing:-11.999995pt;}
.ws5{word-spacing:-11.359995pt;}
.ws4{word-spacing:-10.719996pt;}
.ws0{word-spacing:-8.639997pt;}
.ws6{word-spacing:-7.999997pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-1.056059pt;}
._0{width:1.010501pt;}
._9{width:2.633182pt;}
._b{width:4.137390pt;}
._4{width:5.215468pt;}
._8{width:6.353026pt;}
._7{width:7.416082pt;}
._2{width:9.014800pt;}
._1{width:10.192154pt;}
._6{width:11.837282pt;}
._32{width:12.750802pt;}
._37{width:13.810771pt;}
._c{width:14.862420pt;}
._a{width:16.051481pt;}
._16{width:17.033295pt;}
._13{width:18.107501pt;}
._14{width:19.898981pt;}
._23{width:20.902006pt;}
._30{width:21.949889pt;}
._11{width:23.115237pt;}
._10{width:24.308590pt;}
._d{width:25.308959pt;}
._12{width:26.972877pt;}
._19{width:28.332003pt;}
._15{width:29.785150pt;}
._22{width:30.730222pt;}
._e{width:32.813025pt;}
._f{width:33.714723pt;}
._18{width:34.952656pt;}
._35{width:36.603851pt;}
._24{width:37.752866pt;}
._2c{width:41.123994pt;}
._31{width:43.019768pt;}
._36{width:44.690973pt;}
._3{width:48.934372pt;}
._2b{width:49.938243pt;}
._33{width:54.288422pt;}
._2a{width:56.440610pt;}
._29{width:59.657043pt;}
._25{width:61.975228pt;}
._2d{width:66.457030pt;}
._26{width:72.861183pt;}
._28{width:119.467163pt;}
._27{width:127.933463pt;}
._2f{width:130.162188pt;}
._2e{width:143.801124pt;}
._1f{width:150.992029pt;}
._20{width:155.212275pt;}
._34{width:170.505391pt;}
._1e{width:173.578189pt;}
._17{width:175.635898pt;}
._1c{width:180.756158pt;}
._1b{width:324.843614pt;}
._21{width:392.084336pt;}
._1a{width:426.625169pt;}
._1d{width:534.308640pt;}
.fs8{font-size:2.559999pt;}
.fs5{font-size:31.999987pt;}
.fs4{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs6{font-size:58.879976pt;}
.fs3{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:1.759347pt;}
.yc7{bottom:2.399164pt;}
.yca{bottom:2.559187pt;}
.ycd{bottom:2.559198pt;}
.yd1{bottom:2.559214pt;}
.yd3{bottom:2.559220pt;}
.yd9{bottom:2.559237pt;}
.ydb{bottom:2.559243pt;}
.ye2{bottom:2.559246pt;}
.ydd{bottom:2.559249pt;}
.ye5{bottom:2.559265pt;}
.yf0{bottom:2.559271pt;}
.ye8{bottom:2.559280pt;}
.yea{bottom:2.559286pt;}
.yec{bottom:2.559292pt;}
.yf5{bottom:2.559304pt;}
.yf9{bottom:2.559321pt;}
.yfb{bottom:2.559327pt;}
.y101{bottom:2.559336pt;}
.y105{bottom:2.559353pt;}
.y109{bottom:2.559359pt;}
.y10d{bottom:2.559375pt;}
.y5{bottom:133.066880pt;}
.y2a{bottom:137.066612pt;}
.y12e{bottom:198.506587pt;}
.y4e{bottom:206.986584pt;}
.y8a{bottom:207.786584pt;}
.y6e{bottom:208.906583pt;}
.y27{bottom:209.226583pt;}
.y10e{bottom:213.226581pt;}
.y149{bottom:218.026579pt;}
.y9e{bottom:220.106579pt;}
.y4d{bottom:225.386577pt;}
.y10c{bottom:225.387200pt;}
.y12d{bottom:226.346576pt;}
.y26{bottom:227.626576pt;}
.y10f{bottom:227.786576pt;}
.y10b{bottom:227.946575pt;}
.y89{bottom:230.346575pt;}
.yb2{bottom:230.986574pt;}
.y6d{bottom:235.306573pt;}
.y148{bottom:236.906572pt;}
.y9d{bottom:238.506571pt;}
.y12c{bottom:242.026570pt;}
.y4c{bottom:243.786569pt;}
.y25{bottom:246.026568pt;}
.yb1{bottom:249.386567pt;}
.y88{bottom:253.066565pt;}
.y6c{bottom:253.706565pt;}
.y10a{bottom:254.986565pt;}
.y147{bottom:255.626564pt;}
.y9c{bottom:256.906564pt;}
.y24{bottom:264.426561pt;}
.y12b{bottom:266.346560pt;}
.y108{bottom:267.147200pt;}
.yb0{bottom:267.786560pt;}
.y106{bottom:269.706559pt;}
.y4b{bottom:270.346559pt;}
.y146{bottom:274.346557pt;}
.y9b{bottom:275.306557pt;}
.y87{bottom:275.626556pt;}
.y6b{bottom:280.106555pt;}
.y104{bottom:281.867200pt;}
.y12a{bottom:282.026554pt;}
.y23{bottom:282.826554pt;}
.y107{bottom:284.266553pt;}
.y103{bottom:284.426553pt;}
.yaf{bottom:286.186552pt;}
.y9a{bottom:293.706549pt;}
.y85{bottom:296.427200pt;}
.y4a{bottom:298.666547pt;}
.y22{bottom:301.226546pt;}
.y145{bottom:301.706546pt;}
.yae{bottom:304.586545pt;}
.y129{bottom:306.346544pt;}
.y6a{bottom:306.506544pt;}
.y102{bottom:311.626542pt;}
.y99{bottom:312.106542pt;}
.y21{bottom:319.626539pt;}
.y128{bottom:321.866538pt;}
.y100{bottom:323.787200pt;}
.yff{bottom:326.346536pt;}
.y49{bottom:326.666536pt;}
.y144{bottom:329.706535pt;}
.y98{bottom:330.506534pt;}
.yad{bottom:331.306534pt;}
.y84{bottom:332.426534pt;}
.y69{bottom:332.906534pt;}
.yfc{bottom:334.346533pt;}
.y127{bottom:337.546532pt;}
.y20{bottom:338.026531pt;}
.y48{bottom:345.066529pt;}
.yfa{bottom:346.507200pt;}
.y143{bottom:348.106527pt;}
.y97{bottom:348.906527pt;}
.yfe{bottom:349.066527pt;}
.y68{bottom:351.306526pt;}
.y83{bottom:356.266524pt;}
.y1f{bottom:356.426524pt;}
.yf8{bottom:361.227200pt;}
.y126{bottom:361.706522pt;}
.yfd{bottom:363.626521pt;}
.yf7{bottom:363.786521pt;}
.y142{bottom:366.506520pt;}
.y96{bottom:367.306520pt;}
.y47{bottom:371.466518pt;}
.y82{bottom:374.026517pt;}
.y1e{bottom:374.666517pt;}
.y67{bottom:377.706516pt;}
.y141{bottom:384.906513pt;}
.y95{bottom:385.706512pt;}
.y125{bottom:387.146512pt;}
.y46{bottom:389.866511pt;}
.yf6{bottom:390.826510pt;}
.y81{bottom:391.626510pt;}
.y1d{bottom:393.066509pt;}
.y66{bottom:396.106508pt;}
.yf4{bottom:402.987200pt;}
.y140{bottom:403.306505pt;}
.y94{bottom:404.106505pt;}
.y45{bottom:408.266503pt;}
.y1c{bottom:411.466502pt;}
.y124{bottom:413.226501pt;}
.y80{bottom:418.186499pt;}
.yed{bottom:421.546498pt;}
.y13f{bottom:421.706498pt;}
.y65{bottom:422.506498pt;}
.yc0{bottom:426.026496pt;}
.y44{bottom:426.666496pt;}
.yf3{bottom:428.266495pt;}
.y123{bottom:428.906495pt;}
.y1b{bottom:429.866495pt;}
.yac{bottom:430.506494pt;}
.yeb{bottom:433.707200pt;}
.y7f{bottom:436.586492pt;}
.y13e{bottom:440.106491pt;}
.y64{bottom:440.906490pt;}
.y43{bottom:445.066489pt;}
.y1a{bottom:448.266487pt;}
.ye9{bottom:448.427200pt;}
.y93{bottom:448.906487pt;}
.ybf{bottom:450.826486pt;}
.yf2{bottom:450.986486pt;}
.y122{bottom:453.226485pt;}
.y7e{bottom:454.986485pt;}
.y13d{bottom:458.506483pt;}
.y63{bottom:459.306483pt;}
.ye7{bottom:463.147200pt;}
.y42{bottom:463.466481pt;}
.y19{bottom:466.666480pt;}
.yab{bottom:467.306480pt;}
.y121{bottom:468.746479pt;}
.ybe{bottom:469.226479pt;}
.y7d{bottom:473.386477pt;}
.yf1{bottom:473.706477pt;}
.y92{bottom:475.306477pt;}
.y62{bottom:477.706476pt;}
.y41{bottom:481.866474pt;}
.y13c{bottom:484.906473pt;}
.y18{bottom:485.066473pt;}
.yaa{bottom:485.706472pt;}
.yef{bottom:485.867200pt;}
.ybd{bottom:487.626472pt;}
.ye6{bottom:488.426471pt;}
.y120{bottom:493.066469pt;}
.y91{bottom:493.706469pt;}
.y7c{bottom:499.786467pt;}
.y40{bottom:500.266467pt;}
.ye4{bottom:500.587200pt;}
.yee{bottom:502.986465pt;}
.ye3{bottom:503.146465pt;}
.y13b{bottom:503.306465pt;}
.y17{bottom:503.466465pt;}
.y61{bottom:504.106465pt;}
.y11f{bottom:508.746463pt;}
.y90{bottom:512.106462pt;}
.ybc{bottom:514.026461pt;}
.y7b{bottom:518.186459pt;}
.y3f{bottom:518.666459pt;}
.y13a{bottom:521.546458pt;}
.y16{bottom:521.866458pt;}
.y60{bottom:522.506458pt;}
.yde{bottom:530.346455pt;}
.y8f{bottom:530.506454pt;}
.y11e{bottom:532.906454pt;}
.y7a{bottom:536.586452pt;}
.y3e{bottom:537.066452pt;}
.y139{bottom:539.946451pt;}
.y15{bottom:540.266451pt;}
.ybb{bottom:540.426450pt;}
.ydc{bottom:542.347200pt;}
.y5f{bottom:548.906447pt;}
.ye1{bottom:549.067200pt;}
.ye0{bottom:551.626446pt;}
.y3d{bottom:555.466444pt;}
.y79{bottom:555.946444pt;}
.yda{bottom:557.067200pt;}
.y11d{bottom:558.346443pt;}
.y14{bottom:558.666443pt;}
.yba{bottom:566.826440pt;}
.y15e{bottom:566.986440pt;}
.y5e{bottom:567.306440pt;}
.yd8{bottom:571.787200pt;}
.y3c{bottom:573.866437pt;}
.ydf{bottom:574.186437pt;}
.yd7{bottom:574.346437pt;}
.y78{bottom:575.306437pt;}
.y138{bottom:576.746436pt;}
.y13{bottom:577.066436pt;}
.y15c{bottom:582.986433pt;}
.y11c{bottom:584.746433pt;}
.y5d{bottom:585.546432pt;}
.y15d{bottom:588.266431pt;}
.y3b{bottom:592.106430pt;}
.yb9{bottom:593.226429pt;}
.y77{bottom:594.346429pt;}
.y137{bottom:595.146429pt;}
.y12{bottom:595.786428pt;}
.y15b{bottom:598.986427pt;}
.yd4{bottom:601.546426pt;}
.y11b{bottom:603.146425pt;}
.y5c{bottom:603.946425pt;}
.y3a{bottom:610.506422pt;}
.yd2{bottom:613.707200pt;}
.yd6{bottom:616.266420pt;}
.yb8{bottom:619.626419pt;}
.y11a{bottom:621.546418pt;}
.y76{bottom:622.026418pt;}
.y5b{bottom:622.346418pt;}
.y15a{bottom:622.666418pt;}
.yd0{bottom:628.427200pt;}
.y39{bottom:628.906415pt;}
.ya9{bottom:630.346415pt;}
.yd5{bottom:630.826414pt;}
.ycf{bottom:630.986414pt;}
.y10{bottom:633.066413pt;}
.y159{bottom:636.426412pt;}
.y11{bottom:638.346411pt;}
.y75{bottom:640.266411pt;}
.y5a{bottom:640.746410pt;}
.yb7{bottom:646.026408pt;}
.y38{bottom:647.306408pt;}
.y119{bottom:647.946407pt;}
.ya8{bottom:648.746407pt;}
.yf{bottom:649.546407pt;}
.ye{bottom:654.826405pt;}
.yce{bottom:658.026403pt;}
.y158{bottom:658.346403pt;}
.y59{bottom:659.146403pt;}
.y74{bottom:659.626403pt;}
.y37{bottom:665.706400pt;}
.y136{bottom:666.346400pt;}
.yc{bottom:666.506400pt;}
.ya7{bottom:667.146400pt;}
.ycc{bottom:670.187200pt;}
.y157{bottom:672.106398pt;}
.yb6{bottom:672.426398pt;}
.yd{bottom:672.586398pt;}
.ycb{bottom:672.746398pt;}
.y118{bottom:674.346397pt;}
.y58{bottom:677.546396pt;}
.y73{bottom:678.026395pt;}
.y36{bottom:684.106393pt;}
.y135{bottom:684.746393pt;}
.ya6{bottom:685.546392pt;}
.yb{bottom:693.226389pt;}
.y156{bottom:694.186389pt;}
.y57{bottom:695.946388pt;}
.y72{bottom:697.066388pt;}
.yc9{bottom:697.387200pt;}
.yb5{bottom:697.546388pt;}
.y117{bottom:699.466387pt;}
.yc8{bottom:699.946387pt;}
.y35{bottom:702.506386pt;}
.ya5{bottom:703.946385pt;}
.y155{bottom:710.186383pt;}
.y134{bottom:711.146382pt;}
.y56{bottom:714.346381pt;}
.ya{bottom:719.626379pt;}
.y34{bottom:720.906378pt;}
.ya4{bottom:722.346378pt;}
.y71{bottom:724.746377pt;}
.yc5{bottom:726.986376pt;}
.y55{bottom:732.746374pt;}
.y154{bottom:734.186373pt;}
.y133{bottom:737.546372pt;}
.y33{bottom:739.306371pt;}
.yb4{bottom:740.746370pt;}
.yc4{bottom:741.706370pt;}
.y70{bottom:743.146369pt;}
.y9{bottom:746.026368pt;}
.ya3{bottom:748.746367pt;}
.y116{bottom:750.026367pt;}
.y153{bottom:750.186367pt;}
.y54{bottom:751.146366pt;}
.yc6{bottom:754.027200pt;}
.yc3{bottom:756.426364pt;}
.y32{bottom:757.706364pt;}
.y8e{bottom:759.146363pt;}
.y132{bottom:763.946361pt;}
.y152{bottom:766.186360pt;}
.ya2{bottom:767.146360pt;}
.y53{bottom:769.546359pt;}
.y8{bottom:773.866357pt;}
.yc2{bottom:774.026357pt;}
.y115{bottom:775.146357pt;}
.y8d{bottom:777.546356pt;}
.y31{bottom:784.426353pt;}
.ya1{bottom:785.546352pt;}
.y52{bottom:787.946351pt;}
.yc1{bottom:789.546351pt;}
.y151{bottom:789.866351pt;}
.y131{bottom:790.346351pt;}
.y8c{bottom:795.946348pt;}
.y7{bottom:797.706348pt;}
.y114{bottom:800.426346pt;}
.y150{bottom:803.626345pt;}
.ya0{bottom:803.946345pt;}
.y51{bottom:806.346344pt;}
.y30{bottom:814.346341pt;}
.y130{bottom:816.746340pt;}
.y14f{bottom:817.546340pt;}
.y6{bottom:821.706338pt;}
.y9f{bottom:822.346338pt;}
.y6f{bottom:824.746337pt;}
.y113{bottom:825.386337pt;}
.y14e{bottom:831.306334pt;}
.y2f{bottom:832.746334pt;}
.y4{bottom:840.426330pt;}
.y8b{bottom:840.746330pt;}
.y12f{bottom:843.146329pt;}
.y112{bottom:843.306329pt;}
.y50{bottom:851.146326pt;}
.y3{bottom:852.746326pt;}
.y14d{bottom:853.386325pt;}
.y2e{bottom:859.146323pt;}
.y111{bottom:860.746322pt;}
.y2{bottom:865.066321pt;}
.y14c{bottom:869.386319pt;}
.yb3{bottom:869.546319pt;}
.y1{bottom:874.666317pt;}
.y110{bottom:877.226316pt;}
.y2d{bottom:877.546316pt;}
.y14b{bottom:885.386313pt;}
.y2c{bottom:895.946308pt;}
.y14a{bottom:912.746302pt;}
.y2b{bottom:914.346301pt;}
.y29{bottom:942.986289pt;}
.y4f{bottom:944.266289pt;}
.y28{bottom:956.746284pt;}
.h11{height:2.512499pt;}
.hf{height:12.160000pt;}
.h7{height:31.406237pt;}
.h6{height:34.829986pt;}
.h18{height:37.401860pt;}
.h17{height:39.243734pt;}
.ha{height:42.063421pt;}
.h1{height:42.084358pt;}
.h13{height:42.574983pt;}
.h12{height:43.214983pt;}
.h16{height:44.574670pt;}
.h10{height:44.596857pt;}
.he{height:45.794982pt;}
.hb{height:47.085919pt;}
.h2{height:47.109356pt;}
.h15{height:47.392481pt;}
.h14{height:50.062480pt;}
.h9{height:52.108417pt;}
.h3{height:52.134354pt;}
.h5{height:53.534979pt;}
.hd{height:55.402478pt;}
.h8{height:57.758727pt;}
.hc{height:59.339976pt;}
.h4{height:69.659972pt;}
.h0{height:1122.666667pt;}
.w9{width:1.440000pt;}
.w8{width:2.720000pt;}
.w4{width:3.200000pt;}
.w5{width:4.960000pt;}
.w2{width:5.760000pt;}
.w3{width:61.920000pt;}
.w7{width:124.480000pt;}
.w6{width:141.760000pt;}
.w1{width:197.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:143.679943pt;}
.x28{left:145.279942pt;}
.x12{left:146.399941pt;}
.x1f{left:156.159938pt;}
.x3{left:158.719937pt;}
.x2b{left:160.639936pt;}
.xd{left:162.239935pt;}
.x38{left:165.919934pt;}
.x1a{left:167.679202pt;}
.x3f{left:177.599372pt;}
.x16{left:179.679928pt;}
.x15{left:181.439942pt;}
.x18{left:182.719849pt;}
.x2e{left:186.880000pt;}
.x37{left:190.079924pt;}
.x1b{left:191.678701pt;}
.x10{left:196.479921pt;}
.x19{left:206.719827pt;}
.x5{left:214.399914pt;}
.x6{left:225.279910pt;}
.x3a{left:237.919881pt;}
.x3d{left:247.999901pt;}
.x1c{left:251.039900pt;}
.x21{left:273.279891pt;}
.x13{left:278.559889pt;}
.x1d{left:296.160000pt;}
.x7{left:301.279879pt;}
.x20{left:302.879879pt;}
.x8{left:305.599878pt;}
.x39{left:311.039627pt;}
.x36{left:317.599873pt;}
.x24{left:318.719873pt;}
.x2f{left:323.039247pt;}
.x30{left:327.039582pt;}
.x22{left:328.479869pt;}
.x32{left:329.759330pt;}
.x23{left:336.479865pt;}
.xe{left:347.519861pt;}
.xf{left:351.519859pt;}
.x3b{left:369.919787pt;}
.x9{left:385.759846pt;}
.xa{left:390.079844pt;}
.x40{left:393.599843pt;}
.x2c{left:397.600000pt;}
.x35{left:404.319348pt;}
.x17{left:424.319830pt;}
.x29{left:433.119827pt;}
.xb{left:453.439819pt;}
.xc{left:457.759817pt;}
.x1e{left:493.920000pt;}
.x3c{left:513.919746pt;}
.x31{left:536.640000pt;}
.x33{left:537.920000pt;}
.x25{left:541.919783pt;}
.x27{left:552.639779pt;}
.x2d{left:556.960309pt;}
.x34{left:563.680393pt;}
.x26{left:573.440000pt;}
.x2a{left:630.400000pt;}
.x14{left:635.039746pt;}
.x3e{left:636.639745pt;}
.x4{left:643.359743pt;}
.x2{left:650.079735pt;}
.x1{left:654.879738pt;}
}




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