
    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_a9abb9515e0a8f193303f561.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_6ad0a074e3818cf4381cd029.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.070312;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_30ed38be190eebe54f97d15d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_59eb53c6b39b7c23fefc5cf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_d56abd7370ee75dfadc5f7d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_72d22fa313a3d582a55c4d19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988000;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_94672499a63aaa923ca7c4ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_e902a422c92c504df6019626.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943000;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:ffb;src:url('chunks/assets/font_1e7318a834f058fdb68d6256.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.925000;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:ffc;src:url('chunks/assets/font_298f6e0d8d3f3c16c3541fa3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929199;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:ffd;src:url('chunks/assets/font_374bc31b28a68f9f48caf24e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914551;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:ffe;src:url('chunks/assets/font_8e0fbf10181c45bfb8388202.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.689000;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;}
.v1{vertical-align:12.000000px;}
.v2{vertical-align:23.610000px;}
.lse{letter-spacing:-3.552000px;}
.ls4{letter-spacing:-1.320000px;}
.ls9{letter-spacing:-0.855000px;}
.ls7{letter-spacing:-0.570000px;}
.ls8{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.362976px;}
.lsc{letter-spacing:-0.285000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005040px;}
.ls10{letter-spacing:0.007200px;}
.lsb{letter-spacing:0.513000px;}
.ls2{letter-spacing:0.534912px;}
.ls1{letter-spacing:0.649542px;}
.ls11{letter-spacing:2.544000px;}
.ls6{letter-spacing:10.176000px;}
.lsa{letter-spacing:68.360400px;}
.ls5{letter-spacing:124.656000px;}
.lsd{letter-spacing:312.349800px;}
.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;}
}
.ws6{word-spacing:-15.846000px;}
.wsd{word-spacing:-15.276000px;}
.ws2{word-spacing:-15.264237px;}
.ws12{word-spacing:-14.991000px;}
.ws1{word-spacing:-13.344000px;}
.ws3{word-spacing:-10.316160px;}
.wse{word-spacing:-9.190680px;}
.ws5{word-spacing:-8.166960px;}
.ws4{word-spacing:-7.803984px;}
.ws8{word-spacing:-3.960000px;}
.ws24{word-spacing:-3.591000px;}
.ws18{word-spacing:-3.420000px;}
.ws7{word-spacing:-2.664000px;}
.wsf{word-spacing:-2.640000px;}
.ws36{word-spacing:-2.544000px;}
.ws35{word-spacing:-1.488000px;}
.ws9{word-spacing:-0.649542px;}
.wsa{word-spacing:-0.534912px;}
.ws1f{word-spacing:-0.513000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.114000px;}
.ws25{word-spacing:0.285000px;}
.ws11{word-spacing:0.480000px;}
.ws10{word-spacing:0.570000px;}
.ws14{word-spacing:0.855000px;}
.wsb{word-spacing:1.320000px;}
.ws15{word-spacing:3.477000px;}
.ws2c{word-spacing:5.415000px;}
.ws16{word-spacing:7.182000px;}
.ws22{word-spacing:7.980000px;}
.ws23{word-spacing:8.778000px;}
.ws13{word-spacing:9.120000px;}
.ws17{word-spacing:9.405000px;}
.ws33{word-spacing:19.836000px;}
.ws34{word-spacing:26.619000px;}
.ws2d{word-spacing:190.440000px;}
.ws2e{word-spacing:251.688000px;}
.ws2f{word-spacing:267.672000px;}
.ws1e{word-spacing:268.009200px;}
.ws28{word-spacing:277.128000px;}
.ws29{word-spacing:277.224000px;}
.ws27{word-spacing:282.973800px;}
.ws1d{word-spacing:294.697200px;}
.ws2a{word-spacing:303.864000px;}
.ws32{word-spacing:321.048000px;}
.ws26{word-spacing:322.488000px;}
.ws30{word-spacing:330.564000px;}
.ws31{word-spacing:346.848000px;}
.ws19{word-spacing:408.912000px;}
.ws1c{word-spacing:438.859800px;}
.ws2b{word-spacing:491.264400px;}
.ws21{word-spacing:508.521000px;}
.ws20{word-spacing:686.569200px;}
.ws1a{word-spacing:872.880000px;}
.ws1b{word-spacing:899.568000px;}
._25{margin-left:-49.532400px;}
._b{margin-left:-9.794400px;}
._c{margin-left:-8.094300px;}
._5{margin-left:-6.143846px;}
._d{margin-left:-4.930500px;}
._8{margin-left:-3.314275px;}
._4{margin-left:-2.305670px;}
._2{margin-left:-1.087200px;}
._6{width:1.085298px;}
._0{width:2.671200px;}
._10{width:4.293787px;}
._7{width:5.480938px;}
._14{width:6.734162px;}
._15{width:8.270700px;}
._e{width:9.410700px;}
._11{width:10.681800px;}
._16{width:11.781900px;}
._12{width:12.796500px;}
._f{width:14.090400px;}
._1e{width:15.652800px;}
._18{width:17.398975px;}
._1b{width:18.496500px;}
._17{width:20.012700px;}
._22{width:21.272400px;}
._13{width:22.395300px;}
._1a{width:23.763300px;}
._26{width:25.513200px;}
._24{width:27.069300px;}
._19{width:29.087100px;}
._27{width:30.295500px;}
._21{width:31.401300px;}
._23{width:33.322200px;}
._20{width:34.656000px;}
._48{width:36.200700px;}
._3f{width:37.506000px;}
._3e{width:38.594700px;}
._40{width:39.746100px;}
._2d{width:49.483800px;}
._37{width:56.361600px;}
._1c{width:58.860000px;}
._1d{width:60.278400px;}
._49{width:63.892800px;}
._1f{width:89.976000px;}
._38{width:122.568000px;}
._2e{width:135.243475px;}
._9{width:156.668515px;}
._43{width:232.224000px;}
._a{width:241.555550px;}
._42{width:242.628000px;}
._2c{width:259.392000px;}
._35{width:282.491275px;}
._33{width:293.099275px;}
._2a{width:302.016000px;}
._3b{width:312.349800px;}
._47{width:317.172000px;}
._44{width:319.464000px;}
._45{width:343.908000px;}
._46{width:360.192000px;}
._29{width:363.360000px;}
._2f{width:406.843800px;}
._36{width:436.569000px;}
._39{width:504.608400px;}
._3c{width:531.296400px;}
._3{width:558.111898px;}
._41{width:584.186275px;}
._3a{width:598.369200px;}
._3d{width:625.057200px;}
._34{width:711.961200px;}
._28{width:713.426275px;}
._32{width:738.649200px;}
._31{width:770.025000px;}
._30{width:791.433000px;}
._2b{width:859.536000px;}
._1{width:1964.983200px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:26.745600px;}
.fs6{font-size:30.566400px;}
.fsf{font-size:33.060000px;}
.fs9{font-size:36.297600px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:45.849600px;}
.fs5{font-size:48.000000px;}
.fsd{font-size:57.000000px;}
.fsa{font-size:57.312600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:64.954200px;}
.fs0{font-size:72.000000px;}
.fse{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:132.000000px;}
.y45{bottom:-539.652710px;}
.y44{bottom:-531.054000px;}
.y43{bottom:-512.323950px;}
.y42{bottom:-501.816750px;}
.y41{bottom:-491.309550px;}
.y40{bottom:-480.802350px;}
.y3f{bottom:-443.541458px;}
.y3e{bottom:-431.127679px;}
.y3d{bottom:-418.713900px;}
.y3c{bottom:-393.878550px;}
.y3b{bottom:-350.416650px;}
.y3a{bottom:-325.568910px;}
.y39{bottom:-306.939167px;}
.y38{bottom:-294.525388px;}
.y37{bottom:-282.111608px;}
.y36{bottom:-269.697829px;}
.y35{bottom:-257.284050px;}
.y34{bottom:-236.747100px;}
.y33{bottom:-226.239900px;}
.y32{bottom:-200.926650px;}
.y31{bottom:-186.598650px;}
.y30{bottom:-172.270650px;}
.y2f{bottom:-157.942650px;}
.y2e{bottom:-126.896634px;}
.y2d{bottom:-108.271017px;}
.y2c{bottom:-89.645400px;}
.y2b{bottom:-71.016892px;}
.y2a{bottom:-43.782229px;}
.y29{bottom:-25.637250px;}
.y0{bottom:0.000000px;}
.y28{bottom:7.103700px;}
.y6{bottom:35.925007px;}
.y47{bottom:51.958950px;}
.y27{bottom:66.516000px;}
.y5{bottom:66.525004px;}
.y46{bottom:68.458950px;}
.yae{bottom:70.673100px;}
.ya4{bottom:80.423100px;}
.y99{bottom:80.423250px;}
.yad{bottom:90.173100px;}
.y98{bottom:96.923250px;}
.y4{bottom:97.125005px;}
.ya3{bottom:99.923100px;}
.yf6{bottom:99.923250px;}
.y14e{bottom:102.015600px;}
.y65{bottom:103.623300px;}
.y112{bottom:106.673100px;}
.yac{bottom:109.673100px;}
.y9e{bottom:113.423250px;}
.y14d{bottom:118.515600px;}
.ya2{bottom:119.423100px;}
.yf5{bottom:119.423250px;}
.y64{bottom:120.123300px;}
.y111{bottom:123.173100px;}
.yab{bottom:129.173100px;}
.yaf{bottom:129.173250px;}
.y9d{bottom:129.923250px;}
.y14c{bottom:135.015600px;}
.y102{bottom:135.923250px;}
.y97{bottom:138.923100px;}
.yf4{bottom:138.923250px;}
.y23{bottom:139.264499px;}
.y110{bottom:139.673100px;}
.y188{bottom:143.519550px;}
.yaa{bottom:148.673100px;}
.y106{bottom:148.673250px;}
.y14b{bottom:151.515600px;}
.y10f{bottom:156.173100px;}
.y96{bottom:158.423100px;}
.yf3{bottom:158.423250px;}
.y187{bottom:160.019550px;}
.y14a{bottom:168.015600px;}
.ya9{bottom:168.173100px;}
.y10e{bottom:172.673100px;}
.y186{bottom:176.519550px;}
.y95{bottom:177.923100px;}
.yf2{bottom:177.923250px;}
.y149{bottom:184.515600px;}
.yb6{bottom:184.673100px;}
.ya8{bottom:187.673100px;}
.yb5{bottom:187.673250px;}
.y10d{bottom:189.173100px;}
.y185{bottom:193.019550px;}
.y1a{bottom:196.933500px;}
.y94{bottom:197.423100px;}
.yf1{bottom:197.423250px;}
.y148{bottom:201.015600px;}
.y10c{bottom:205.673100px;}
.y63{bottom:207.173100px;}
.y22{bottom:209.518500px;}
.y184{bottom:209.519550px;}
.y19{bottom:209.533503px;}
.y93{bottom:216.923100px;}
.yf0{bottom:216.923250px;}
.y147{bottom:217.515600px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y10b{bottom:222.173100px;}
.y183{bottom:226.019550px;}
.ya7{bottom:226.673100px;}
.yfa{bottom:233.423100px;}
.y146{bottom:234.015600px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y92{bottom:236.423100px;}
.yef{bottom:236.423250px;}
.y10a{bottom:238.673100px;}
.y182{bottom:242.519550px;}
.y62{bottom:246.173100px;}
.y145{bottom:250.515600px;}
.y109{bottom:255.173100px;}
.y91{bottom:255.923100px;}
.yee{bottom:255.923250px;}
.y181{bottom:259.019550px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yc1{bottom:262.673100px;}
.y61{bottom:265.673100px;}
.y144{bottom:267.015600px;}
.y108{bottom:271.673100px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y90{bottom:275.423100px;}
.yed{bottom:275.423250px;}
.y180{bottom:275.519550px;}
.y143{bottom:283.515600px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y60{bottom:285.173100px;}
.y107{bottom:288.173100px;}
.y17f{bottom:292.019550px;}
.y8f{bottom:294.923100px;}
.yec{bottom:294.923250px;}
.y142{bottom:300.015600px;}
.y5f{bottom:304.673100px;}
.y17e{bottom:308.519550px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y8e{bottom:314.423100px;}
.yeb{bottom:314.423250px;}
.y141{bottom:316.515600px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y5e{bottom:324.173100px;}
.y17d{bottom:325.019550px;}
.y140{bottom:333.015600px;}
.y8d{bottom:333.923100px;}
.yea{bottom:333.923250px;}
.y17c{bottom:341.519550px;}
.y5d{bottom:343.673100px;}
.y11{bottom:348.133500px;}
.y13f{bottom:349.515600px;}
.y8c{bottom:353.423100px;}
.ye9{bottom:353.423250px;}
.y17b{bottom:358.019550px;}
.y5c{bottom:363.173100px;}
.y13e{bottom:366.015600px;}
.y8b{bottom:372.923100px;}
.ye8{bottom:372.923250px;}
.y17a{bottom:374.519550px;}
.ybb{bottom:375.923100px;}
.y13d{bottom:382.515600px;}
.y5b{bottom:382.673100px;}
.y10{bottom:386.785499px;}
.y179{bottom:391.019550px;}
.y8a{bottom:392.423100px;}
.ye7{bottom:392.423250px;}
.y13c{bottom:399.015600px;}
.y5a{bottom:402.173100px;}
.y178{bottom:407.519550px;}
.yf{bottom:408.044999px;}
.y89{bottom:411.923100px;}
.ye6{bottom:411.923250px;}
.y13b{bottom:415.515600px;}
.y59{bottom:421.673100px;}
.y177{bottom:424.019550px;}
.y88{bottom:431.423100px;}
.ye5{bottom:431.423250px;}
.y13a{bottom:432.015600px;}
.yba{bottom:439.823400px;}
.y176{bottom:440.519550px;}
.ya6{bottom:441.173100px;}
.y139{bottom:448.515600px;}
.y87{bottom:450.923100px;}
.ye4{bottom:450.923250px;}
.yc2{bottom:453.923100px;}
.y175{bottom:457.019550px;}
.yb9{bottom:460.333350px;}
.y58{bottom:460.673100px;}
.y138{bottom:465.015600px;}
.y86{bottom:470.423100px;}
.ye3{bottom:470.423250px;}
.y174{bottom:473.519550px;}
.y57{bottom:480.173100px;}
.y137{bottom:481.515600px;}
.yb8{bottom:485.833350px;}
.y85{bottom:489.923100px;}
.ye2{bottom:489.923250px;}
.y173{bottom:490.019550px;}
.yf8{bottom:492.923100px;}
.y136{bottom:498.015600px;}
.ya5{bottom:499.673100px;}
.ye{bottom:502.864502px;}
.y172{bottom:506.519550px;}
.y84{bottom:509.423100px;}
.ye1{bottom:509.423250px;}
.y135{bottom:514.515600px;}
.y56{bottom:519.173100px;}
.yd{bottom:520.864502px;}
.y171{bottom:523.019550px;}
.y83{bottom:528.923100px;}
.ye0{bottom:528.923250px;}
.y134{bottom:531.015600px;}
.yb7{bottom:531.923100px;}
.y55{bottom:538.673100px;}
.yc{bottom:538.864499px;}
.y170{bottom:539.519550px;}
.y133{bottom:547.515600px;}
.y82{bottom:548.423100px;}
.ydf{bottom:548.423250px;}
.y16f{bottom:556.019550px;}
.yb{bottom:556.864499px;}
.y54{bottom:558.173100px;}
.y132{bottom:564.015600px;}
.y81{bottom:567.923100px;}
.yde{bottom:567.923250px;}
.y16e{bottom:572.519550px;}
.y53{bottom:577.673100px;}
.y131{bottom:580.515600px;}
.y80{bottom:587.423100px;}
.ydd{bottom:587.423250px;}
.y16d{bottom:589.019550px;}
.y130{bottom:597.015600px;}
.y52{bottom:597.173100px;}
.y16c{bottom:605.519550px;}
.y7f{bottom:606.923100px;}
.ydc{bottom:606.923250px;}
.y12f{bottom:613.515600px;}
.y51{bottom:616.673100px;}
.y16b{bottom:622.019550px;}
.y7e{bottom:626.423100px;}
.ydb{bottom:626.423250px;}
.ya{bottom:626.610001px;}
.y12e{bottom:630.015600px;}
.y50{bottom:636.173100px;}
.y16a{bottom:638.519550px;}
.y9{bottom:645.510000px;}
.y7d{bottom:645.923100px;}
.yda{bottom:645.923250px;}
.y12d{bottom:646.515600px;}
.y169{bottom:655.019550px;}
.y4f{bottom:655.673100px;}
.y12c{bottom:663.015600px;}
.y7c{bottom:665.423100px;}
.yd9{bottom:665.423250px;}
.y8{bottom:666.771000px;}
.y168{bottom:671.519550px;}
.y4e{bottom:675.173100px;}
.y12b{bottom:679.515600px;}
.y7b{bottom:684.923100px;}
.yd8{bottom:684.923250px;}
.y167{bottom:688.019550px;}
.y4d{bottom:694.673100px;}
.y12a{bottom:696.015600px;}
.y7a{bottom:704.423100px;}
.yd7{bottom:704.423250px;}
.y166{bottom:704.519550px;}
.y129{bottom:712.515600px;}
.yc0{bottom:714.173100px;}
.y165{bottom:721.019550px;}
.y79{bottom:723.923100px;}
.yd6{bottom:723.923250px;}
.y7{bottom:726.298500px;}
.y4c{bottom:727.936800px;}
.y128{bottom:729.015600px;}
.ybf{bottom:733.673100px;}
.y164{bottom:737.519550px;}
.y78{bottom:743.423100px;}
.yd5{bottom:743.423250px;}
.y4b{bottom:744.436800px;}
.y127{bottom:745.515600px;}
.yf7{bottom:746.423100px;}
.y3{bottom:752.599495px;}
.ybe{bottom:753.173100px;}
.y163{bottom:754.019550px;}
.y126{bottom:762.015600px;}
.y77{bottom:762.923100px;}
.yd4{bottom:762.923250px;}
.y162{bottom:770.519550px;}
.ybd{bottom:772.673100px;}
.y125{bottom:778.515600px;}
.y76{bottom:782.423100px;}
.yd3{bottom:782.423250px;}
.y161{bottom:787.019550px;}
.y68{bottom:787.648350px;}
.ybc{bottom:792.173100px;}
.y124{bottom:795.015600px;}
.y75{bottom:801.923100px;}
.yd2{bottom:801.923250px;}
.y160{bottom:803.519550px;}
.y123{bottom:811.515600px;}
.y101{bottom:818.423100px;}
.y15f{bottom:820.019550px;}
.y74{bottom:821.423100px;}
.yd1{bottom:821.423250px;}
.y67{bottom:826.648350px;}
.y122{bottom:828.015600px;}
.y103{bottom:831.173100px;}
.y15e{bottom:836.519550px;}
.yf9{bottom:837.923100px;}
.y73{bottom:840.923100px;}
.yd0{bottom:840.923250px;}
.ycc{bottom:843.923250px;}
.y121{bottom:844.515600px;}
.y15d{bottom:853.019550px;}
.y72{bottom:860.423100px;}
.ycb{bottom:860.423250px;}
.y120{bottom:861.015600px;}
.y66{bottom:865.648350px;}
.y15c{bottom:869.519550px;}
.y11f{bottom:877.515600px;}
.y2{bottom:879.369000px;}
.y71{bottom:879.923100px;}
.ycf{bottom:879.923250px;}
.y15b{bottom:886.019550px;}
.y105{bottom:889.673100px;}
.y11e{bottom:894.015600px;}
.y70{bottom:899.423100px;}
.y15a{bottom:902.519550px;}
.y4a{bottom:904.648350px;}
.yca{bottom:905.544000px;}
.y11d{bottom:910.515600px;}
.y6f{bottom:918.923100px;}
.y159{bottom:919.019550px;}
.y100{bottom:919.315500px;}
.yc9{bottom:926.803950px;}
.y11c{bottom:927.015600px;}
.y104{bottom:927.819450px;}
.y158{bottom:935.519550px;}
.y6e{bottom:938.423100px;}
.yb4{bottom:943.303650px;}
.y11b{bottom:943.515600px;}
.y49{bottom:943.648350px;}
.yff{bottom:944.319450px;}
.yc8{bottom:948.063750px;}
.y157{bottom:952.019550px;}
.y6d{bottom:957.923100px;}
.y11a{bottom:960.015600px;}
.yb3{bottom:964.563600px;}
.y1{bottom:966.726000px;}
.y156{bottom:968.519550px;}
.yfe{bottom:969.323400px;}
.yc7{bottom:969.323550px;}
.y119{bottom:976.515600px;}
.y6c{bottom:977.423100px;}
.y48{bottom:982.648350px;}
.y155{bottom:985.019550px;}
.yb2{bottom:985.823400px;}
.yc6{bottom:989.833350px;}
.y118{bottom:993.015600px;}
.yfd{bottom:994.327350px;}
.y9c{bottom:996.923100px;}
.y154{bottom:1001.519550px;}
.yb1{bottom:1006.333200px;}
.yce{bottom:1006.673100px;}
.y117{bottom:1009.515600px;}
.y6b{bottom:1013.423100px;}
.yc5{bottom:1015.333350px;}
.y9b{bottom:1016.423100px;}
.y153{bottom:1018.019550px;}
.yfc{bottom:1019.331150px;}
.y116{bottom:1026.015600px;}
.yb0{bottom:1031.833200px;}
.yc4{bottom:1031.833350px;}
.y152{bottom:1034.519550px;}
.yfb{bottom:1035.831150px;}
.y6a{bottom:1035.923100px;}
.y26{bottom:1035.923250px;}
.y115{bottom:1042.515600px;}
.y151{bottom:1051.019550px;}
.y9a{bottom:1055.423100px;}
.y114{bottom:1059.015600px;}
.ycd{bottom:1065.173100px;}
.y150{bottom:1067.519550px;}
.y25{bottom:1074.923100px;}
.yc3{bottom:1074.923250px;}
.y113{bottom:1075.515600px;}
.y14f{bottom:1084.019550px;}
.ya0{bottom:1114.291200px;}
.ya1{bottom:1128.706500px;}
.y69{bottom:1129.153200px;}
.y24{bottom:1130.598450px;}
.y9f{bottom:1130.791200px;}
.hd{height:13.908000px;}
.h17{height:20.727840px;}
.he{height:23.688960px;}
.h15{height:23.902925px;}
.h14{height:26.497248px;}
.h13{height:28.384723px;}
.h7{height:32.130000px;}
.h22{height:34.945312px;}
.h23{height:34.968750px;}
.h1c{height:35.328000px;}
.h10{height:35.533440px;}
.h1b{height:35.568000px;}
.hf{height:35.854387px;}
.h21{height:40.968750px;}
.ha{height:41.273438px;}
.h24{height:41.497559px;}
.h1a{height:41.525391px;}
.h16{height:44.818453px;}
.h6{height:45.900000px;}
.h1d{height:46.968750px;}
.h3{height:48.195000px;}
.h19{height:49.012207px;}
.h12{height:50.339505px;}
.h11{height:50.794184px;}
.h20{height:52.037080px;}
.h1f{height:52.417969px;}
.hc{height:52.453125px;}
.hb{height:53.352600px;}
.h2{height:55.080000px;}
.h1e{height:65.522461px;}
.h5{height:78.030000px;}
.h18{height:96.099609px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:8.917500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x8{left:-327.352800px;}
.x9{left:-322.950150px;}
.x7{left:-256.953300px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.xb{left:77.754150px;}
.xa{left:85.418250px;}
.xc{left:93.011850px;}
.x19{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:119.055150px;}
.x11{left:185.535000px;}
.x10{left:187.401300px;}
.x15{left:188.514600px;}
.x4{left:203.484001px;}
.x1a{left:222.445200px;}
.x1b{left:307.204650px;}
.x1e{left:313.045200px;}
.x17{left:327.401550px;}
.x5{left:335.301750px;}
.x13{left:446.456700px;}
.x3{left:454.959000px;}
.xe{left:463.464450px;}
.x14{left:471.968550px;}
.x1c{left:476.724750px;}
.xf{left:488.976300px;}
.x18{left:552.755850px;}
.x1d{left:669.685050px;}
.x12{left:739.735200px;}
.x16{left:740.848500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v2{vertical-align:20.986667pt;}
.lse{letter-spacing:-3.157333pt;}
.ls4{letter-spacing:-1.173333pt;}
.ls9{letter-spacing:-0.760000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.322645pt;}
.lsc{letter-spacing:-0.253333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004480pt;}
.ls10{letter-spacing:0.006400pt;}
.lsb{letter-spacing:0.456000pt;}
.ls2{letter-spacing:0.475477pt;}
.ls1{letter-spacing:0.577371pt;}
.ls11{letter-spacing:2.261333pt;}
.ls6{letter-spacing:9.045333pt;}
.lsa{letter-spacing:60.764800pt;}
.ls5{letter-spacing:110.805333pt;}
.lsd{letter-spacing:277.644267pt;}
.ws6{word-spacing:-14.085333pt;}
.wsd{word-spacing:-13.578667pt;}
.ws2{word-spacing:-13.568211pt;}
.ws12{word-spacing:-13.325333pt;}
.ws1{word-spacing:-11.861333pt;}
.ws3{word-spacing:-9.169920pt;}
.wse{word-spacing:-8.169493pt;}
.ws5{word-spacing:-7.259520pt;}
.ws4{word-spacing:-6.936875pt;}
.ws8{word-spacing:-3.520000pt;}
.ws24{word-spacing:-3.192000pt;}
.ws18{word-spacing:-3.040000pt;}
.ws7{word-spacing:-2.368000pt;}
.wsf{word-spacing:-2.346667pt;}
.ws36{word-spacing:-2.261333pt;}
.ws35{word-spacing:-1.322667pt;}
.ws9{word-spacing:-0.577371pt;}
.wsa{word-spacing:-0.475477pt;}
.ws1f{word-spacing:-0.456000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.101333pt;}
.ws25{word-spacing:0.253333pt;}
.ws11{word-spacing:0.426667pt;}
.ws10{word-spacing:0.506667pt;}
.ws14{word-spacing:0.760000pt;}
.wsb{word-spacing:1.173333pt;}
.ws15{word-spacing:3.090667pt;}
.ws2c{word-spacing:4.813333pt;}
.ws16{word-spacing:6.384000pt;}
.ws22{word-spacing:7.093333pt;}
.ws23{word-spacing:7.802667pt;}
.ws13{word-spacing:8.106667pt;}
.ws17{word-spacing:8.360000pt;}
.ws33{word-spacing:17.632000pt;}
.ws34{word-spacing:23.661333pt;}
.ws2d{word-spacing:169.280000pt;}
.ws2e{word-spacing:223.722667pt;}
.ws2f{word-spacing:237.930667pt;}
.ws1e{word-spacing:238.230400pt;}
.ws28{word-spacing:246.336000pt;}
.ws29{word-spacing:246.421333pt;}
.ws27{word-spacing:251.532267pt;}
.ws1d{word-spacing:261.953067pt;}
.ws2a{word-spacing:270.101333pt;}
.ws32{word-spacing:285.376000pt;}
.ws26{word-spacing:286.656000pt;}
.ws30{word-spacing:293.834667pt;}
.ws31{word-spacing:308.309333pt;}
.ws19{word-spacing:363.477333pt;}
.ws1c{word-spacing:390.097600pt;}
.ws2b{word-spacing:436.679467pt;}
.ws21{word-spacing:452.018667pt;}
.ws20{word-spacing:610.283733pt;}
.ws1a{word-spacing:775.893333pt;}
.ws1b{word-spacing:799.616000pt;}
._25{margin-left:-44.028800pt;}
._b{margin-left:-8.706133pt;}
._c{margin-left:-7.194933pt;}
._5{margin-left:-5.461197pt;}
._d{margin-left:-4.382667pt;}
._8{margin-left:-2.946022pt;}
._4{margin-left:-2.049485pt;}
._2{margin-left:-0.966400pt;}
._6{width:0.964710pt;}
._0{width:2.374400pt;}
._10{width:3.816700pt;}
._7{width:4.871945pt;}
._14{width:5.985922pt;}
._15{width:7.351733pt;}
._e{width:8.365067pt;}
._11{width:9.494933pt;}
._16{width:10.472800pt;}
._12{width:11.374667pt;}
._f{width:12.524800pt;}
._1e{width:13.913600pt;}
._18{width:15.465756pt;}
._1b{width:16.441333pt;}
._17{width:17.789067pt;}
._22{width:18.908800pt;}
._13{width:19.906933pt;}
._1a{width:21.122933pt;}
._26{width:22.678400pt;}
._24{width:24.061600pt;}
._19{width:25.855200pt;}
._27{width:26.929333pt;}
._21{width:27.912267pt;}
._23{width:29.619733pt;}
._20{width:30.805333pt;}
._48{width:32.178400pt;}
._3f{width:33.338667pt;}
._3e{width:34.306400pt;}
._40{width:35.329867pt;}
._2d{width:43.985600pt;}
._37{width:50.099200pt;}
._1c{width:52.320000pt;}
._1d{width:53.580800pt;}
._49{width:56.793600pt;}
._1f{width:79.978667pt;}
._38{width:108.949333pt;}
._2e{width:120.216422pt;}
._9{width:139.260902pt;}
._43{width:206.421333pt;}
._a{width:214.716045pt;}
._42{width:215.669333pt;}
._2c{width:230.570667pt;}
._35{width:251.103356pt;}
._33{width:260.532689pt;}
._2a{width:268.458667pt;}
._3b{width:277.644267pt;}
._47{width:281.930667pt;}
._44{width:283.968000pt;}
._45{width:305.696000pt;}
._46{width:320.170667pt;}
._29{width:322.986667pt;}
._2f{width:361.638933pt;}
._36{width:388.061333pt;}
._39{width:448.540800pt;}
._3c{width:472.263467pt;}
._3{width:496.099465pt;}
._41{width:519.276689pt;}
._3a{width:531.883733pt;}
._3d{width:555.606400pt;}
._34{width:632.854400pt;}
._28{width:634.156689pt;}
._32{width:656.577067pt;}
._31{width:684.466667pt;}
._30{width:703.496000pt;}
._2b{width:764.032000pt;}
._1{width:1746.651733pt;}
.fsb{font-size:23.773867pt;}
.fs6{font-size:27.170133pt;}
.fsf{font-size:29.386667pt;}
.fs9{font-size:32.264533pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:40.755200pt;}
.fs5{font-size:42.666667pt;}
.fsd{font-size:50.666667pt;}
.fsa{font-size:50.944533pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:57.737067pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:117.333333pt;}
.y45{bottom:-479.691298pt;}
.y44{bottom:-472.048000pt;}
.y43{bottom:-455.399067pt;}
.y42{bottom:-446.059333pt;}
.y41{bottom:-436.719600pt;}
.y40{bottom:-427.379867pt;}
.y3f{bottom:-394.259074pt;}
.y3e{bottom:-383.224604pt;}
.y3d{bottom:-372.190133pt;}
.y3c{bottom:-350.114267pt;}
.y3b{bottom:-311.481467pt;}
.y3a{bottom:-289.394587pt;}
.y39{bottom:-272.834815pt;}
.y38{bottom:-261.800345pt;}
.y37{bottom:-250.765874pt;}
.y36{bottom:-239.731404pt;}
.y35{bottom:-228.696933pt;}
.y34{bottom:-210.441867pt;}
.y33{bottom:-201.102133pt;}
.y32{bottom:-178.601467pt;}
.y31{bottom:-165.865467pt;}
.y30{bottom:-153.129467pt;}
.y2f{bottom:-140.393467pt;}
.y2e{bottom:-112.797008pt;}
.y2d{bottom:-96.240904pt;}
.y2c{bottom:-79.684800pt;}
.y2b{bottom:-63.126126pt;}
.y2a{bottom:-38.917537pt;}
.y29{bottom:-22.788667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:6.314400pt;}
.y6{bottom:31.933340pt;}
.y47{bottom:46.185733pt;}
.y27{bottom:59.125333pt;}
.y5{bottom:59.133337pt;}
.y46{bottom:60.852400pt;}
.yae{bottom:62.820533pt;}
.ya4{bottom:71.487200pt;}
.y99{bottom:71.487333pt;}
.yad{bottom:80.153867pt;}
.y98{bottom:86.154000pt;}
.y4{bottom:86.333337pt;}
.ya3{bottom:88.820533pt;}
.yf6{bottom:88.820667pt;}
.y14e{bottom:90.680533pt;}
.y65{bottom:92.109600pt;}
.y112{bottom:94.820533pt;}
.yac{bottom:97.487200pt;}
.y9e{bottom:100.820667pt;}
.y14d{bottom:105.347200pt;}
.ya2{bottom:106.153867pt;}
.yf5{bottom:106.154000pt;}
.y64{bottom:106.776267pt;}
.y111{bottom:109.487200pt;}
.yab{bottom:114.820533pt;}
.yaf{bottom:114.820667pt;}
.y9d{bottom:115.487333pt;}
.y14c{bottom:120.013867pt;}
.y102{bottom:120.820667pt;}
.y97{bottom:123.487200pt;}
.yf4{bottom:123.487333pt;}
.y23{bottom:123.790666pt;}
.y110{bottom:124.153867pt;}
.y188{bottom:127.572933pt;}
.yaa{bottom:132.153867pt;}
.y106{bottom:132.154000pt;}
.y14b{bottom:134.680533pt;}
.y10f{bottom:138.820533pt;}
.y96{bottom:140.820533pt;}
.yf3{bottom:140.820667pt;}
.y187{bottom:142.239600pt;}
.y14a{bottom:149.347200pt;}
.ya9{bottom:149.487200pt;}
.y10e{bottom:153.487200pt;}
.y186{bottom:156.906267pt;}
.y95{bottom:158.153867pt;}
.yf2{bottom:158.154000pt;}
.y149{bottom:164.013867pt;}
.yb6{bottom:164.153867pt;}
.ya8{bottom:166.820533pt;}
.yb5{bottom:166.820667pt;}
.y10d{bottom:168.153867pt;}
.y185{bottom:171.572933pt;}
.y1a{bottom:175.052000pt;}
.y94{bottom:175.487200pt;}
.yf1{bottom:175.487333pt;}
.y148{bottom:178.680533pt;}
.y10c{bottom:182.820533pt;}
.y63{bottom:184.153867pt;}
.y22{bottom:186.238666pt;}
.y184{bottom:186.239600pt;}
.y19{bottom:186.252002pt;}
.y93{bottom:192.820533pt;}
.yf0{bottom:192.820667pt;}
.y147{bottom:193.347200pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y10b{bottom:197.487200pt;}
.y183{bottom:200.906267pt;}
.ya7{bottom:201.487200pt;}
.yfa{bottom:207.487200pt;}
.y146{bottom:208.013867pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y92{bottom:210.153867pt;}
.yef{bottom:210.154000pt;}
.y10a{bottom:212.153867pt;}
.y182{bottom:215.572933pt;}
.y62{bottom:218.820533pt;}
.y145{bottom:222.680533pt;}
.y109{bottom:226.820533pt;}
.y91{bottom:227.487200pt;}
.yee{bottom:227.487333pt;}
.y181{bottom:230.239600pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yc1{bottom:233.487200pt;}
.y61{bottom:236.153867pt;}
.y144{bottom:237.347200pt;}
.y108{bottom:241.487200pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y90{bottom:244.820533pt;}
.yed{bottom:244.820667pt;}
.y180{bottom:244.906267pt;}
.y143{bottom:252.013867pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y60{bottom:253.487200pt;}
.y107{bottom:256.153867pt;}
.y17f{bottom:259.572933pt;}
.y8f{bottom:262.153867pt;}
.yec{bottom:262.154000pt;}
.y142{bottom:266.680533pt;}
.y5f{bottom:270.820533pt;}
.y17e{bottom:274.239600pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y8e{bottom:279.487200pt;}
.yeb{bottom:279.487333pt;}
.y141{bottom:281.347200pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y5e{bottom:288.153867pt;}
.y17d{bottom:288.906267pt;}
.y140{bottom:296.013867pt;}
.y8d{bottom:296.820533pt;}
.yea{bottom:296.820667pt;}
.y17c{bottom:303.572933pt;}
.y5d{bottom:305.487200pt;}
.y11{bottom:309.452000pt;}
.y13f{bottom:310.680533pt;}
.y8c{bottom:314.153867pt;}
.ye9{bottom:314.154000pt;}
.y17b{bottom:318.239600pt;}
.y5c{bottom:322.820533pt;}
.y13e{bottom:325.347200pt;}
.y8b{bottom:331.487200pt;}
.ye8{bottom:331.487333pt;}
.y17a{bottom:332.906267pt;}
.ybb{bottom:334.153867pt;}
.y13d{bottom:340.013867pt;}
.y5b{bottom:340.153867pt;}
.y10{bottom:343.809333pt;}
.y179{bottom:347.572933pt;}
.y8a{bottom:348.820533pt;}
.ye7{bottom:348.820667pt;}
.y13c{bottom:354.680533pt;}
.y5a{bottom:357.487200pt;}
.y178{bottom:362.239600pt;}
.yf{bottom:362.706666pt;}
.y89{bottom:366.153867pt;}
.ye6{bottom:366.154000pt;}
.y13b{bottom:369.347200pt;}
.y59{bottom:374.820533pt;}
.y177{bottom:376.906267pt;}
.y88{bottom:383.487200pt;}
.ye5{bottom:383.487333pt;}
.y13a{bottom:384.013867pt;}
.yba{bottom:390.954133pt;}
.y176{bottom:391.572933pt;}
.ya6{bottom:392.153867pt;}
.y139{bottom:398.680533pt;}
.y87{bottom:400.820533pt;}
.ye4{bottom:400.820667pt;}
.yc2{bottom:403.487200pt;}
.y175{bottom:406.239600pt;}
.yb9{bottom:409.185200pt;}
.y58{bottom:409.487200pt;}
.y138{bottom:413.347200pt;}
.y86{bottom:418.153867pt;}
.ye3{bottom:418.154000pt;}
.y174{bottom:420.906267pt;}
.y57{bottom:426.820533pt;}
.y137{bottom:428.013867pt;}
.yb8{bottom:431.851867pt;}
.y85{bottom:435.487200pt;}
.ye2{bottom:435.487333pt;}
.y173{bottom:435.572933pt;}
.yf8{bottom:438.153867pt;}
.y136{bottom:442.680533pt;}
.ya5{bottom:444.153867pt;}
.ye{bottom:446.990669pt;}
.y172{bottom:450.239600pt;}
.y84{bottom:452.820533pt;}
.ye1{bottom:452.820667pt;}
.y135{bottom:457.347200pt;}
.y56{bottom:461.487200pt;}
.yd{bottom:462.990669pt;}
.y171{bottom:464.906267pt;}
.y83{bottom:470.153867pt;}
.ye0{bottom:470.154000pt;}
.y134{bottom:472.013867pt;}
.yb7{bottom:472.820533pt;}
.y55{bottom:478.820533pt;}
.yc{bottom:478.990666pt;}
.y170{bottom:479.572933pt;}
.y133{bottom:486.680533pt;}
.y82{bottom:487.487200pt;}
.ydf{bottom:487.487333pt;}
.y16f{bottom:494.239600pt;}
.yb{bottom:494.990666pt;}
.y54{bottom:496.153867pt;}
.y132{bottom:501.347200pt;}
.y81{bottom:504.820533pt;}
.yde{bottom:504.820667pt;}
.y16e{bottom:508.906267pt;}
.y53{bottom:513.487200pt;}
.y131{bottom:516.013867pt;}
.y80{bottom:522.153867pt;}
.ydd{bottom:522.154000pt;}
.y16d{bottom:523.572933pt;}
.y130{bottom:530.680533pt;}
.y52{bottom:530.820533pt;}
.y16c{bottom:538.239600pt;}
.y7f{bottom:539.487200pt;}
.ydc{bottom:539.487333pt;}
.y12f{bottom:545.347200pt;}
.y51{bottom:548.153867pt;}
.y16b{bottom:552.906267pt;}
.y7e{bottom:556.820533pt;}
.ydb{bottom:556.820667pt;}
.ya{bottom:556.986668pt;}
.y12e{bottom:560.013867pt;}
.y50{bottom:565.487200pt;}
.y16a{bottom:567.572933pt;}
.y9{bottom:573.786667pt;}
.y7d{bottom:574.153867pt;}
.yda{bottom:574.154000pt;}
.y12d{bottom:574.680533pt;}
.y169{bottom:582.239600pt;}
.y4f{bottom:582.820533pt;}
.y12c{bottom:589.347200pt;}
.y7c{bottom:591.487200pt;}
.yd9{bottom:591.487333pt;}
.y8{bottom:592.685334pt;}
.y168{bottom:596.906267pt;}
.y4e{bottom:600.153867pt;}
.y12b{bottom:604.013867pt;}
.y7b{bottom:608.820533pt;}
.yd8{bottom:608.820667pt;}
.y167{bottom:611.572933pt;}
.y4d{bottom:617.487200pt;}
.y12a{bottom:618.680533pt;}
.y7a{bottom:626.153867pt;}
.yd7{bottom:626.154000pt;}
.y166{bottom:626.239600pt;}
.y129{bottom:633.347200pt;}
.yc0{bottom:634.820533pt;}
.y165{bottom:640.906267pt;}
.y79{bottom:643.487200pt;}
.yd6{bottom:643.487333pt;}
.y7{bottom:645.598667pt;}
.y4c{bottom:647.054933pt;}
.y128{bottom:648.013867pt;}
.ybf{bottom:652.153867pt;}
.y164{bottom:655.572933pt;}
.y78{bottom:660.820533pt;}
.yd5{bottom:660.820667pt;}
.y4b{bottom:661.721600pt;}
.y127{bottom:662.680533pt;}
.yf7{bottom:663.487200pt;}
.y3{bottom:668.977329pt;}
.ybe{bottom:669.487200pt;}
.y163{bottom:670.239600pt;}
.y126{bottom:677.347200pt;}
.y77{bottom:678.153867pt;}
.yd4{bottom:678.154000pt;}
.y162{bottom:684.906267pt;}
.ybd{bottom:686.820533pt;}
.y125{bottom:692.013867pt;}
.y76{bottom:695.487200pt;}
.yd3{bottom:695.487333pt;}
.y161{bottom:699.572933pt;}
.y68{bottom:700.131867pt;}
.ybc{bottom:704.153867pt;}
.y124{bottom:706.680533pt;}
.y75{bottom:712.820533pt;}
.yd2{bottom:712.820667pt;}
.y160{bottom:714.239600pt;}
.y123{bottom:721.347200pt;}
.y101{bottom:727.487200pt;}
.y15f{bottom:728.906267pt;}
.y74{bottom:730.153867pt;}
.yd1{bottom:730.154000pt;}
.y67{bottom:734.798533pt;}
.y122{bottom:736.013867pt;}
.y103{bottom:738.820533pt;}
.y15e{bottom:743.572933pt;}
.yf9{bottom:744.820533pt;}
.y73{bottom:747.487200pt;}
.yd0{bottom:747.487333pt;}
.ycc{bottom:750.154000pt;}
.y121{bottom:750.680533pt;}
.y15d{bottom:758.239600pt;}
.y72{bottom:764.820533pt;}
.ycb{bottom:764.820667pt;}
.y120{bottom:765.347200pt;}
.y66{bottom:769.465200pt;}
.y15c{bottom:772.906267pt;}
.y11f{bottom:780.013867pt;}
.y2{bottom:781.661334pt;}
.y71{bottom:782.153867pt;}
.ycf{bottom:782.154000pt;}
.y15b{bottom:787.572933pt;}
.y105{bottom:790.820533pt;}
.y11e{bottom:794.680533pt;}
.y70{bottom:799.487200pt;}
.y15a{bottom:802.239600pt;}
.y4a{bottom:804.131867pt;}
.yca{bottom:804.928000pt;}
.y11d{bottom:809.347200pt;}
.y6f{bottom:816.820533pt;}
.y159{bottom:816.906267pt;}
.y100{bottom:817.169333pt;}
.yc9{bottom:823.825733pt;}
.y11c{bottom:824.013867pt;}
.y104{bottom:824.728400pt;}
.y158{bottom:831.572933pt;}
.y6e{bottom:834.153867pt;}
.yb4{bottom:838.492133pt;}
.y11b{bottom:838.680533pt;}
.y49{bottom:838.798533pt;}
.yff{bottom:839.395067pt;}
.yc8{bottom:842.723333pt;}
.y157{bottom:846.239600pt;}
.y6d{bottom:851.487200pt;}
.y11a{bottom:853.347200pt;}
.yb3{bottom:857.389867pt;}
.y1{bottom:859.312000pt;}
.y156{bottom:860.906267pt;}
.yfe{bottom:861.620800pt;}
.yc7{bottom:861.620933pt;}
.y119{bottom:868.013867pt;}
.y6c{bottom:868.820533pt;}
.y48{bottom:873.465200pt;}
.y155{bottom:875.572933pt;}
.yb2{bottom:876.287467pt;}
.yc6{bottom:879.851867pt;}
.y118{bottom:882.680533pt;}
.yfd{bottom:883.846533pt;}
.y9c{bottom:886.153867pt;}
.y154{bottom:890.239600pt;}
.yb1{bottom:894.518400pt;}
.yce{bottom:894.820533pt;}
.y117{bottom:897.347200pt;}
.y6b{bottom:900.820533pt;}
.yc5{bottom:902.518533pt;}
.y9b{bottom:903.487200pt;}
.y153{bottom:904.906267pt;}
.yfc{bottom:906.072133pt;}
.y116{bottom:912.013867pt;}
.yb0{bottom:917.185067pt;}
.yc4{bottom:917.185200pt;}
.y152{bottom:919.572933pt;}
.yfb{bottom:920.738800pt;}
.y6a{bottom:920.820533pt;}
.y26{bottom:920.820667pt;}
.y115{bottom:926.680533pt;}
.y151{bottom:934.239600pt;}
.y9a{bottom:938.153867pt;}
.y114{bottom:941.347200pt;}
.ycd{bottom:946.820533pt;}
.y150{bottom:948.906267pt;}
.y25{bottom:955.487200pt;}
.yc3{bottom:955.487333pt;}
.y113{bottom:956.013867pt;}
.y14f{bottom:963.572933pt;}
.ya0{bottom:990.481067pt;}
.ya1{bottom:1003.294667pt;}
.y69{bottom:1003.691733pt;}
.y24{bottom:1004.976400pt;}
.y9f{bottom:1005.147733pt;}
.hd{height:12.362667pt;}
.h17{height:18.424747pt;}
.he{height:21.056853pt;}
.h15{height:21.247044pt;}
.h14{height:23.553109pt;}
.h13{height:25.230865pt;}
.h7{height:28.560000pt;}
.h22{height:31.062500pt;}
.h23{height:31.083333pt;}
.h1c{height:31.402667pt;}
.h10{height:31.585280pt;}
.h1b{height:31.616000pt;}
.hf{height:31.870566pt;}
.h21{height:36.416667pt;}
.ha{height:36.687500pt;}
.h24{height:36.886719pt;}
.h1a{height:36.911458pt;}
.h16{height:39.838625pt;}
.h6{height:40.800000pt;}
.h1d{height:41.750000pt;}
.h3{height:42.840000pt;}
.h19{height:43.566406pt;}
.h12{height:44.746227pt;}
.h11{height:45.150386pt;}
.h20{height:46.255182pt;}
.h1f{height:46.593750pt;}
.hc{height:46.625000pt;}
.hb{height:47.424533pt;}
.h2{height:48.960000pt;}
.h1e{height:58.242188pt;}
.h5{height:69.360000pt;}
.h18{height:85.421875pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:7.926667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8{left:-290.980267pt;}
.x9{left:-287.066800pt;}
.x7{left:-228.402933pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.xb{left:69.114800pt;}
.xa{left:75.927333pt;}
.xc{left:82.677200pt;}
.x19{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:105.826800pt;}
.x11{left:164.920000pt;}
.x10{left:166.578933pt;}
.x15{left:167.568533pt;}
.x4{left:180.874667pt;}
.x1a{left:197.729067pt;}
.x1b{left:273.070800pt;}
.x1e{left:278.262400pt;}
.x17{left:291.023600pt;}
.x5{left:298.046000pt;}
.x13{left:396.850400pt;}
.x3{left:404.408000pt;}
.xe{left:411.968400pt;}
.x14{left:419.527600pt;}
.x1c{left:423.755333pt;}
.xf{left:434.645600pt;}
.x18{left:491.338533pt;}
.x1d{left:595.275600pt;}
.x12{left:657.542400pt;}
.x16{left:658.532000pt;}
}




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