
    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_9b69c27612a08e75061a9e9d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_86be1c04bc8f2aa5be2a8aa7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d9dd7da34a41943a725d2151.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_4162029f49f34c7a725db7a8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899902;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_e0119f462a495a244519c1ae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5913af604be03cc65f8494d5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_bbee7d88b31f7cee5fd90630.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-22.200000px;}
.v4{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:27.000000px;}
.ls20{letter-spacing:-7.992000px;}
.ls3c{letter-spacing:-2.808000px;}
.ls4f{letter-spacing:-2.640000px;}
.ls19{letter-spacing:-1.368000px;}
.ls16{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.224000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.864000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls4a{letter-spacing:-0.726000px;}
.lsf{letter-spacing:-0.720000px;}
.ls49{letter-spacing:-0.660000px;}
.ls30{letter-spacing:-0.648000px;}
.ls2d{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.504000px;}
.ls38{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.330000px;}
.ls17{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.171000px;}
.lsc{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls50{letter-spacing:-0.066000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls4c{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.198000px;}
.ls4{letter-spacing:0.216000px;}
.ls3b{letter-spacing:0.264000px;}
.ls23{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.294600px;}
.ls45{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.396000px;}
.ls29{letter-spacing:0.432000px;}
.ls1d{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.627000px;}
.ls9{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.924000px;}
.ls7{letter-spacing:1.008000px;}
.ls40{letter-spacing:1.056000px;}
.ls44{letter-spacing:1.122000px;}
.ls1e{letter-spacing:1.224000px;}
.ls43{letter-spacing:1.254000px;}
.ls33{letter-spacing:1.296000px;}
.ls34{letter-spacing:1.440000px;}
.ls2e{letter-spacing:1.584000px;}
.ls32{letter-spacing:1.800000px;}
.ls1b{letter-spacing:1.872000px;}
.ls1c{letter-spacing:2.016000px;}
.ls1a{letter-spacing:2.088000px;}
.ls12{letter-spacing:2.592000px;}
.ls3f{letter-spacing:2.838000px;}
.ls11{letter-spacing:2.952000px;}
.ls4b{letter-spacing:3.498000px;}
.ls13{letter-spacing:3.528000px;}
.ls42{letter-spacing:4.026000px;}
.ls0{letter-spacing:4.200000px;}
.ls48{letter-spacing:4.290000px;}
.ls10{letter-spacing:4.608000px;}
.ls3a{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls26{letter-spacing:6.624000px;}
.ls14{letter-spacing:7.200000px;}
.ls31{letter-spacing:7.488000px;}
.ls24{letter-spacing:7.560000px;}
.ls22{letter-spacing:9.144000px;}
.ls25{letter-spacing:9.576000px;}
.ls2{letter-spacing:10.200000px;}
.ls36{letter-spacing:10.296000px;}
.ls47{letter-spacing:10.956000px;}
.ls3e{letter-spacing:11.220000px;}
.ls2f{letter-spacing:12.888000px;}
.ls4e{letter-spacing:19.800000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-49.824000px;}
.ws2{word-spacing:-49.392000px;}
.ws13{word-spacing:-49.320000px;}
.ws1b{word-spacing:-49.248000px;}
.ws4{word-spacing:-49.176000px;}
.ws20{word-spacing:-49.032000px;}
.ws1f{word-spacing:-48.960000px;}
.wse{word-spacing:-48.888000px;}
.ws1a{word-spacing:-48.816000px;}
.ws17{word-spacing:-48.744000px;}
.ws24{word-spacing:-48.600000px;}
.ws3{word-spacing:-48.528000px;}
.ws1{word-spacing:-48.456000px;}
.ws18{word-spacing:-48.384000px;}
.ws1d{word-spacing:-48.312000px;}
.wsc{word-spacing:-48.240000px;}
.ws5{word-spacing:-48.168000px;}
.ws21{word-spacing:-47.952000px;}
.ws25{word-spacing:-47.880000px;}
.ws11{word-spacing:-47.808000px;}
.ws1c{word-spacing:-47.664000px;}
.ws1e{word-spacing:-47.448000px;}
.wsd{word-spacing:-47.304000px;}
.wsb{word-spacing:-47.232000px;}
.ws29{word-spacing:-45.720000px;}
.ws2e{word-spacing:-45.606000px;}
.ws2d{word-spacing:-45.408000px;}
.ws2f{word-spacing:-44.814000px;}
.ws2c{word-spacing:-44.748000px;}
.ws2b{word-spacing:-44.484000px;}
.ws35{word-spacing:-44.418000px;}
.ws33{word-spacing:-44.154000px;}
.ws31{word-spacing:-43.824000px;}
.ws37{word-spacing:-40.440000px;}
.ws14{word-spacing:-38.418000px;}
.ws22{word-spacing:-37.152000px;}
.wsf{word-spacing:-36.792000px;}
.wsa{word-spacing:-33.840000px;}
.ws9{word-spacing:-23.184000px;}
.ws2a{word-spacing:-22.860000px;}
.ws28{word-spacing:-20.664000px;}
.ws19{word-spacing:-20.592000px;}
.ws27{word-spacing:-20.448000px;}
.ws8{word-spacing:-20.232000px;}
.ws16{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.440000px;}
.ws36{word-spacing:-18.744000px;}
.ws32{word-spacing:-18.546000px;}
.ws0{word-spacing:-17.928000px;}
.ws30{word-spacing:-17.820000px;}
.ws26{word-spacing:-17.784000px;}
.ws7{word-spacing:-16.860000px;}
.ws15{word-spacing:-16.017000px;}
.ws34{word-spacing:-15.906000px;}
.ws12{word-spacing:-12.139200px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-22.398000px;}
._1a{margin-left:-20.910000px;}
._17{margin-left:-19.374000px;}
._f{margin-left:-17.496000px;}
._1b{margin-left:-15.694000px;}
._11{margin-left:-14.022000px;}
._1c{margin-left:-12.477000px;}
._7{margin-left:-11.016000px;}
._d{margin-left:-9.504000px;}
._18{margin-left:-8.352000px;}
._0{margin-left:-7.350000px;}
._12{margin-left:-6.174000px;}
._2{margin-left:-4.220000px;}
._1{margin-left:-2.730000px;}
._4{margin-left:-1.560000px;}
._5{width:1.320000px;}
._9{width:2.466000px;}
._e{width:3.492000px;}
._3{width:4.620000px;}
._8{width:5.688000px;}
._6{width:6.942000px;}
._a{width:8.172000px;}
._10{width:9.198000px;}
._b{width:10.224000px;}
._c{width:11.304000px;}
._16{width:12.576000px;}
._19{width:13.824000px;}
._14{width:15.696000px;}
._13{width:18.864000px;}
._15{width:56.923200px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.ydd{bottom:140.299650px;}
.yf3{bottom:142.496700px;}
.y63{bottom:145.863150px;}
.y21{bottom:148.048650px;}
.y43{bottom:148.208550px;}
.yb8{bottom:150.112500px;}
.ydc{bottom:156.801150px;}
.yf2{bottom:162.296700px;}
.y62{bottom:162.363150px;}
.y20{bottom:169.648650px;}
.y42{bottom:169.808550px;}
.yb7{bottom:171.712500px;}
.ydb{bottom:173.302650px;}
.yf1{bottom:182.096700px;}
.ya7{bottom:188.398500px;}
.yda{bottom:189.804150px;}
.y1f{bottom:191.248650px;}
.y41{bottom:191.408550px;}
.yb6{bottom:193.312500px;}
.yf0{bottom:201.896700px;}
.y61{bottom:203.048550px;}
.y85{bottom:203.572500px;}
.yd9{bottom:206.305650px;}
.ya6{bottom:210.142500px;}
.y1e{bottom:212.848650px;}
.y40{bottom:213.008550px;}
.yb5{bottom:214.912500px;}
.yef{bottom:221.696700px;}
.yd8{bottom:222.807150px;}
.y84{bottom:224.866500px;}
.y60{bottom:224.954550px;}
.ya5{bottom:231.886500px;}
.y1d{bottom:234.448650px;}
.y3f{bottom:234.608550px;}
.yb4{bottom:236.512500px;}
.yd7{bottom:239.308650px;}
.y83{bottom:246.160500px;}
.y5f{bottom:246.860550px;}
.yee{bottom:250.000650px;}
.ya4{bottom:253.630500px;}
.yd6{bottom:255.810150px;}
.y1c{bottom:256.048650px;}
.y3e{bottom:256.208550px;}
.yb3{bottom:258.112500px;}
.y82{bottom:267.454500px;}
.y5e{bottom:268.766550px;}
.yd5{bottom:272.311650px;}
.ya3{bottom:275.374500px;}
.y1b{bottom:277.648650px;}
.y3d{bottom:277.808550px;}
.yb2{bottom:279.712500px;}
.y81{bottom:288.748500px;}
.y5d{bottom:290.672550px;}
.yd4{bottom:294.363150px;}
.ya2{bottom:297.118500px;}
.yed{bottom:298.104600px;}
.y1a{bottom:299.248650px;}
.y3c{bottom:299.408550px;}
.yb1{bottom:301.312500px;}
.y129{bottom:309.908550px;}
.y80{bottom:310.042500px;}
.y5c{bottom:312.578550px;}
.yec{bottom:317.904600px;}
.ya1{bottom:318.862500px;}
.y19{bottom:320.848650px;}
.y3b{bottom:321.008550px;}
.yb0{bottom:322.912500px;}
.y128{bottom:327.908550px;}
.y7f{bottom:331.336500px;}
.yd3{bottom:332.362500px;}
.y5b{bottom:334.484550px;}
.ya0{bottom:340.606500px;}
.y18{bottom:342.448650px;}
.y3a{bottom:342.608550px;}
.yaf{bottom:344.512500px;}
.y127{bottom:345.908550px;}
.yeb{bottom:346.208550px;}
.y7e{bottom:352.630500px;}
.yd2{bottom:354.412500px;}
.y5a{bottom:356.390550px;}
.y9f{bottom:362.350500px;}
.y126{bottom:363.908550px;}
.y17{bottom:364.048650px;}
.y39{bottom:364.208550px;}
.yae{bottom:366.112500px;}
.y7d{bottom:373.924500px;}
.yd1{bottom:376.462500px;}
.y59{bottom:378.296550px;}
.y10e{bottom:379.710000px;}
.y9e{bottom:384.094500px;}
.y16{bottom:385.648650px;}
.y38{bottom:385.808550px;}
.yad{bottom:387.712500px;}
.yea{bottom:394.318500px;}
.y7c{bottom:395.218500px;}
.yd0{bottom:398.512500px;}
.y58{bottom:400.202550px;}
.y9d{bottom:405.838500px;}
.y15{bottom:407.248650px;}
.y37{bottom:407.408550px;}
.yac{bottom:409.312500px;}
.y10d{bottom:413.910000px;}
.ye9{bottom:415.918500px;}
.y7b{bottom:416.626500px;}
.ycf{bottom:420.562500px;}
.y125{bottom:420.608550px;}
.y57{bottom:422.108550px;}
.y9c{bottom:427.582500px;}
.y14{bottom:428.848650px;}
.y36{bottom:429.008550px;}
.yab{bottom:430.912500px;}
.y10c{bottom:433.710000px;}
.ye8{bottom:437.518500px;}
.y7a{bottom:437.920500px;}
.y124{bottom:440.408550px;}
.yce{bottom:442.612500px;}
.y9b{bottom:449.326500px;}
.y13{bottom:450.448650px;}
.y56{bottom:452.512500px;}
.y10b{bottom:453.510000px;}
.y35{bottom:459.112500px;}
.ye7{bottom:459.118500px;}
.y79{bottom:459.214500px;}
.y123{bottom:460.208550px;}
.ycd{bottom:464.662500px;}
.y9a{bottom:471.070500px;}
.y12{bottom:472.048650px;}
.y10a{bottom:473.310000px;}
.yaa{bottom:474.112500px;}
.y122{bottom:480.008550px;}
.y78{bottom:480.508500px;}
.ye6{bottom:480.718500px;}
.ycc{bottom:486.712500px;}
.y99{bottom:492.814500px;}
.y109{bottom:493.110000px;}
.y11{bottom:493.648650px;}
.ya9{bottom:495.712500px;}
.y121{bottom:499.808550px;}
.y77{bottom:501.802500px;}
.ye5{bottom:502.318500px;}
.ycb{bottom:508.762500px;}
.y108{bottom:512.910000px;}
.y98{bottom:514.558500px;}
.y10{bottom:515.248650px;}
.ya8{bottom:517.312500px;}
.y120{bottom:519.608550px;}
.y76{bottom:523.096500px;}
.ye4{bottom:523.918500px;}
.yca{bottom:530.812500px;}
.y107{bottom:532.710000px;}
.y55{bottom:533.494500px;}
.y97{bottom:536.302500px;}
.yf{bottom:536.848650px;}
.y34{bottom:538.912500px;}
.y11f{bottom:539.408550px;}
.y75{bottom:544.390500px;}
.ye3{bottom:545.518500px;}
.y106{bottom:552.510000px;}
.yc9{bottom:552.862500px;}
.y54{bottom:555.400500px;}
.y96{bottom:558.046500px;}
.ye{bottom:558.448650px;}
.y11e{bottom:559.208550px;}
.y33{bottom:560.512500px;}
.y74{bottom:565.684500px;}
.ye2{bottom:567.118500px;}
.y105{bottom:572.310000px;}
.yc8{bottom:574.912500px;}
.y53{bottom:577.306500px;}
.y11d{bottom:579.008550px;}
.y95{bottom:579.790500px;}
.yd{bottom:580.048650px;}
.y32{bottom:582.112500px;}
.y73{bottom:586.978500px;}
.ye1{bottom:588.718500px;}
.y104{bottom:592.110000px;}
.yc7{bottom:596.962500px;}
.y11c{bottom:598.808550px;}
.y52{bottom:599.122500px;}
.y94{bottom:601.534500px;}
.yc{bottom:601.648650px;}
.y31{bottom:603.712500px;}
.y72{bottom:608.272500px;}
.ye0{bottom:610.318500px;}
.y103{bottom:611.910000px;}
.y11b{bottom:618.608550px;}
.yc6{bottom:619.012500px;}
.y51{bottom:621.028500px;}
.yb{bottom:623.248650px;}
.y93{bottom:623.278500px;}
.y30{bottom:625.312500px;}
.y71{bottom:629.566500px;}
.y102{bottom:631.710000px;}
.ydf{bottom:631.918500px;}
.y11a{bottom:638.408550px;}
.yc5{bottom:641.062500px;}
.y50{bottom:642.934500px;}
.ya{bottom:644.848650px;}
.y92{bottom:645.022500px;}
.y2f{bottom:646.912500px;}
.y70{bottom:650.860500px;}
.y101{bottom:651.510000px;}
.yde{bottom:653.518500px;}
.y119{bottom:658.208550px;}
.yc4{bottom:663.112500px;}
.y4f{bottom:664.840500px;}
.y9{bottom:666.448650px;}
.y91{bottom:666.766500px;}
.y2e{bottom:668.512500px;}
.y100{bottom:671.310000px;}
.y6f{bottom:672.154500px;}
.y118{bottom:678.008550px;}
.yc3{bottom:685.162500px;}
.y4e{bottom:686.746500px;}
.y8{bottom:688.048650px;}
.y90{bottom:688.510500px;}
.y2d{bottom:690.112500px;}
.yff{bottom:691.110000px;}
.y6e{bottom:693.448500px;}
.y117{bottom:697.808550px;}
.yc2{bottom:707.212500px;}
.y4d{bottom:708.652500px;}
.y7{bottom:709.648650px;}
.y8f{bottom:710.254500px;}
.yfe{bottom:710.910000px;}
.y2c{bottom:711.712500px;}
.y6d{bottom:714.742500px;}
.y116{bottom:717.608550px;}
.yc1{bottom:729.262500px;}
.y4c{bottom:730.558500px;}
.yfd{bottom:730.710000px;}
.y6{bottom:731.248650px;}
.y8e{bottom:731.998500px;}
.y2b{bottom:733.312500px;}
.y6c{bottom:736.036500px;}
.y115{bottom:737.408550px;}
.yfc{bottom:750.510000px;}
.yc0{bottom:751.312500px;}
.y4b{bottom:752.464500px;}
.y8d{bottom:753.742500px;}
.y2a{bottom:754.912500px;}
.y114{bottom:757.208550px;}
.y6b{bottom:757.330500px;}
.yfb{bottom:770.310000px;}
.ybf{bottom:773.362500px;}
.y4a{bottom:774.370500px;}
.y8c{bottom:775.486500px;}
.y29{bottom:776.512500px;}
.y113{bottom:777.008550px;}
.y6a{bottom:778.624500px;}
.yfa{bottom:790.110000px;}
.ybe{bottom:795.412500px;}
.y49{bottom:796.276500px;}
.y112{bottom:796.808550px;}
.y8b{bottom:797.230500px;}
.y28{bottom:798.112500px;}
.y69{bottom:799.918500px;}
.yf9{bottom:809.910000px;}
.y111{bottom:816.608550px;}
.ybd{bottom:817.462500px;}
.y48{bottom:818.182500px;}
.y8a{bottom:818.974500px;}
.y27{bottom:819.712500px;}
.y68{bottom:821.242500px;}
.y5{bottom:824.848650px;}
.yf8{bottom:829.710000px;}
.y110{bottom:836.408550px;}
.ybc{bottom:839.512500px;}
.y47{bottom:840.088500px;}
.y89{bottom:840.718500px;}
.y26{bottom:841.312500px;}
.y67{bottom:842.536500px;}
.yf7{bottom:849.510000px;}
.y4{bottom:855.448650px;}
.ybb{bottom:861.562500px;}
.y46{bottom:861.994500px;}
.y88{bottom:862.480500px;}
.y25{bottom:862.912500px;}
.y66{bottom:863.830500px;}
.yf6{bottom:869.310000px;}
.y10f{bottom:877.808550px;}
.yba{bottom:883.612500px;}
.y45{bottom:883.900500px;}
.y87{bottom:884.224500px;}
.y24{bottom:884.512500px;}
.y65{bottom:885.124500px;}
.yf5{bottom:889.110000px;}
.yb9{bottom:905.662500px;}
.y44{bottom:905.806500px;}
.y86{bottom:905.968500px;}
.y23{bottom:906.112500px;}
.y64{bottom:906.418500px;}
.yf4{bottom:908.910000px;}
.y3{bottom:910.710000px;}
.y22{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.ha{height:30.568359px;}
.h7{height:38.645086px;}
.h2{height:40.757812px;}
.h4{height:43.989258px;}
.hf{height:48.399902px;}
.h3{height:50.947266px;}
.h10{height:56.041992px;}
.h6{height:61.136719px;}
.hc{height:62.866031px;}
.hb{height:63.202031px;}
.hd{height:63.250031px;}
.he{height:63.322031px;}
.h9{height:63.394031px;}
.h8{height:63.682031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.793400px;}
.x6{left:119.017350px;}
.x7{left:140.307150px;}
.x5{left:150.670350px;}
.x1{left:290.597550px;}
.x8{left:540.203550px;}
.x2{left:572.164350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v4{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:24.000000pt;}
.ls20{letter-spacing:-7.104000pt;}
.ls3c{letter-spacing:-2.496000pt;}
.ls4f{letter-spacing:-2.346667pt;}
.ls19{letter-spacing:-1.216000pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.768000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls4a{letter-spacing:-0.645333pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls49{letter-spacing:-0.586667pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls2d{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls38{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.293333pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.152000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls50{letter-spacing:-0.058667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4c{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.176000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls3b{letter-spacing:0.234667pt;}
.ls23{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.261867pt;}
.ls45{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.352000pt;}
.ls29{letter-spacing:0.384000pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.557333pt;}
.ls9{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.821333pt;}
.ls7{letter-spacing:0.896000pt;}
.ls40{letter-spacing:0.938667pt;}
.ls44{letter-spacing:0.997333pt;}
.ls1e{letter-spacing:1.088000pt;}
.ls43{letter-spacing:1.114667pt;}
.ls33{letter-spacing:1.152000pt;}
.ls34{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.600000pt;}
.ls1b{letter-spacing:1.664000pt;}
.ls1c{letter-spacing:1.792000pt;}
.ls1a{letter-spacing:1.856000pt;}
.ls12{letter-spacing:2.304000pt;}
.ls3f{letter-spacing:2.522667pt;}
.ls11{letter-spacing:2.624000pt;}
.ls4b{letter-spacing:3.109333pt;}
.ls13{letter-spacing:3.136000pt;}
.ls42{letter-spacing:3.578667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls48{letter-spacing:3.813333pt;}
.ls10{letter-spacing:4.096000pt;}
.ls3a{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls26{letter-spacing:5.888000pt;}
.ls14{letter-spacing:6.400000pt;}
.ls31{letter-spacing:6.656000pt;}
.ls24{letter-spacing:6.720000pt;}
.ls22{letter-spacing:8.128000pt;}
.ls25{letter-spacing:8.512000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls36{letter-spacing:9.152000pt;}
.ls47{letter-spacing:9.738667pt;}
.ls3e{letter-spacing:9.973333pt;}
.ls2f{letter-spacing:11.456000pt;}
.ls4e{letter-spacing:17.600000pt;}
.ws23{word-spacing:-44.288000pt;}
.ws2{word-spacing:-43.904000pt;}
.ws13{word-spacing:-43.840000pt;}
.ws1b{word-spacing:-43.776000pt;}
.ws4{word-spacing:-43.712000pt;}
.ws20{word-spacing:-43.584000pt;}
.ws1f{word-spacing:-43.520000pt;}
.wse{word-spacing:-43.456000pt;}
.ws1a{word-spacing:-43.392000pt;}
.ws17{word-spacing:-43.328000pt;}
.ws24{word-spacing:-43.200000pt;}
.ws3{word-spacing:-43.136000pt;}
.ws1{word-spacing:-43.072000pt;}
.ws18{word-spacing:-43.008000pt;}
.ws1d{word-spacing:-42.944000pt;}
.wsc{word-spacing:-42.880000pt;}
.ws5{word-spacing:-42.816000pt;}
.ws21{word-spacing:-42.624000pt;}
.ws25{word-spacing:-42.560000pt;}
.ws11{word-spacing:-42.496000pt;}
.ws1c{word-spacing:-42.368000pt;}
.ws1e{word-spacing:-42.176000pt;}
.wsd{word-spacing:-42.048000pt;}
.wsb{word-spacing:-41.984000pt;}
.ws29{word-spacing:-40.640000pt;}
.ws2e{word-spacing:-40.538667pt;}
.ws2d{word-spacing:-40.362667pt;}
.ws2f{word-spacing:-39.834667pt;}
.ws2c{word-spacing:-39.776000pt;}
.ws2b{word-spacing:-39.541333pt;}
.ws35{word-spacing:-39.482667pt;}
.ws33{word-spacing:-39.248000pt;}
.ws31{word-spacing:-38.954667pt;}
.ws37{word-spacing:-35.946667pt;}
.ws14{word-spacing:-34.149333pt;}
.ws22{word-spacing:-33.024000pt;}
.wsf{word-spacing:-32.704000pt;}
.wsa{word-spacing:-30.080000pt;}
.ws9{word-spacing:-20.608000pt;}
.ws2a{word-spacing:-20.320000pt;}
.ws28{word-spacing:-18.368000pt;}
.ws19{word-spacing:-18.304000pt;}
.ws27{word-spacing:-18.176000pt;}
.ws8{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.280000pt;}
.ws36{word-spacing:-16.661333pt;}
.ws32{word-spacing:-16.485333pt;}
.ws0{word-spacing:-15.936000pt;}
.ws30{word-spacing:-15.840000pt;}
.ws26{word-spacing:-15.808000pt;}
.ws7{word-spacing:-14.986667pt;}
.ws15{word-spacing:-14.237333pt;}
.ws34{word-spacing:-14.138667pt;}
.ws12{word-spacing:-10.790400pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-19.909333pt;}
._1a{margin-left:-18.586667pt;}
._17{margin-left:-17.221333pt;}
._f{margin-left:-15.552000pt;}
._1b{margin-left:-13.950222pt;}
._11{margin-left:-12.464000pt;}
._1c{margin-left:-11.090667pt;}
._7{margin-left:-9.792000pt;}
._d{margin-left:-8.448000pt;}
._18{margin-left:-7.424000pt;}
._0{margin-left:-6.533333pt;}
._12{margin-left:-5.488000pt;}
._2{margin-left:-3.751111pt;}
._1{margin-left:-2.426667pt;}
._4{margin-left:-1.386667pt;}
._5{width:1.173333pt;}
._9{width:2.192000pt;}
._e{width:3.104000pt;}
._3{width:4.106667pt;}
._8{width:5.056000pt;}
._6{width:6.170667pt;}
._a{width:7.264000pt;}
._10{width:8.176000pt;}
._b{width:9.088000pt;}
._c{width:10.048000pt;}
._16{width:11.178667pt;}
._19{width:12.288000pt;}
._14{width:13.952000pt;}
._13{width:16.768000pt;}
._15{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.ydd{bottom:124.710800pt;}
.yf3{bottom:126.663733pt;}
.y63{bottom:129.656133pt;}
.y21{bottom:131.598800pt;}
.y43{bottom:131.740933pt;}
.yb8{bottom:133.433333pt;}
.ydc{bottom:139.378800pt;}
.yf2{bottom:144.263733pt;}
.y62{bottom:144.322800pt;}
.y20{bottom:150.798800pt;}
.y42{bottom:150.940933pt;}
.yb7{bottom:152.633333pt;}
.ydb{bottom:154.046800pt;}
.yf1{bottom:161.863733pt;}
.ya7{bottom:167.465333pt;}
.yda{bottom:168.714800pt;}
.y1f{bottom:169.998800pt;}
.y41{bottom:170.140933pt;}
.yb6{bottom:171.833333pt;}
.yf0{bottom:179.463733pt;}
.y61{bottom:180.487600pt;}
.y85{bottom:180.953333pt;}
.yd9{bottom:183.382800pt;}
.ya6{bottom:186.793333pt;}
.y1e{bottom:189.198800pt;}
.y40{bottom:189.340933pt;}
.yb5{bottom:191.033333pt;}
.yef{bottom:197.063733pt;}
.yd8{bottom:198.050800pt;}
.y84{bottom:199.881333pt;}
.y60{bottom:199.959600pt;}
.ya5{bottom:206.121333pt;}
.y1d{bottom:208.398800pt;}
.y3f{bottom:208.540933pt;}
.yb4{bottom:210.233333pt;}
.yd7{bottom:212.718800pt;}
.y83{bottom:218.809333pt;}
.y5f{bottom:219.431600pt;}
.yee{bottom:222.222800pt;}
.ya4{bottom:225.449333pt;}
.yd6{bottom:227.386800pt;}
.y1c{bottom:227.598800pt;}
.y3e{bottom:227.740933pt;}
.yb3{bottom:229.433333pt;}
.y82{bottom:237.737333pt;}
.y5e{bottom:238.903600pt;}
.yd5{bottom:242.054800pt;}
.ya3{bottom:244.777333pt;}
.y1b{bottom:246.798800pt;}
.y3d{bottom:246.940933pt;}
.yb2{bottom:248.633333pt;}
.y81{bottom:256.665333pt;}
.y5d{bottom:258.375600pt;}
.yd4{bottom:261.656133pt;}
.ya2{bottom:264.105333pt;}
.yed{bottom:264.981867pt;}
.y1a{bottom:265.998800pt;}
.y3c{bottom:266.140933pt;}
.yb1{bottom:267.833333pt;}
.y129{bottom:275.474267pt;}
.y80{bottom:275.593333pt;}
.y5c{bottom:277.847600pt;}
.yec{bottom:282.581867pt;}
.ya1{bottom:283.433333pt;}
.y19{bottom:285.198800pt;}
.y3b{bottom:285.340933pt;}
.yb0{bottom:287.033333pt;}
.y128{bottom:291.474267pt;}
.y7f{bottom:294.521333pt;}
.yd3{bottom:295.433333pt;}
.y5b{bottom:297.319600pt;}
.ya0{bottom:302.761333pt;}
.y18{bottom:304.398800pt;}
.y3a{bottom:304.540933pt;}
.yaf{bottom:306.233333pt;}
.y127{bottom:307.474267pt;}
.yeb{bottom:307.740933pt;}
.y7e{bottom:313.449333pt;}
.yd2{bottom:315.033333pt;}
.y5a{bottom:316.791600pt;}
.y9f{bottom:322.089333pt;}
.y126{bottom:323.474267pt;}
.y17{bottom:323.598800pt;}
.y39{bottom:323.740933pt;}
.yae{bottom:325.433333pt;}
.y7d{bottom:332.377333pt;}
.yd1{bottom:334.633333pt;}
.y59{bottom:336.263600pt;}
.y10e{bottom:337.520000pt;}
.y9e{bottom:341.417333pt;}
.y16{bottom:342.798800pt;}
.y38{bottom:342.940933pt;}
.yad{bottom:344.633333pt;}
.yea{bottom:350.505333pt;}
.y7c{bottom:351.305333pt;}
.yd0{bottom:354.233333pt;}
.y58{bottom:355.735600pt;}
.y9d{bottom:360.745333pt;}
.y15{bottom:361.998800pt;}
.y37{bottom:362.140933pt;}
.yac{bottom:363.833333pt;}
.y10d{bottom:367.920000pt;}
.ye9{bottom:369.705333pt;}
.y7b{bottom:370.334667pt;}
.ycf{bottom:373.833333pt;}
.y125{bottom:373.874267pt;}
.y57{bottom:375.207600pt;}
.y9c{bottom:380.073333pt;}
.y14{bottom:381.198800pt;}
.y36{bottom:381.340933pt;}
.yab{bottom:383.033333pt;}
.y10c{bottom:385.520000pt;}
.ye8{bottom:388.905333pt;}
.y7a{bottom:389.262667pt;}
.y124{bottom:391.474267pt;}
.yce{bottom:393.433333pt;}
.y9b{bottom:399.401333pt;}
.y13{bottom:400.398800pt;}
.y56{bottom:402.233333pt;}
.y10b{bottom:403.120000pt;}
.y35{bottom:408.100000pt;}
.ye7{bottom:408.105333pt;}
.y79{bottom:408.190667pt;}
.y123{bottom:409.074267pt;}
.ycd{bottom:413.033333pt;}
.y9a{bottom:418.729333pt;}
.y12{bottom:419.598800pt;}
.y10a{bottom:420.720000pt;}
.yaa{bottom:421.433333pt;}
.y122{bottom:426.674267pt;}
.y78{bottom:427.118667pt;}
.ye6{bottom:427.305333pt;}
.ycc{bottom:432.633333pt;}
.y99{bottom:438.057333pt;}
.y109{bottom:438.320000pt;}
.y11{bottom:438.798800pt;}
.ya9{bottom:440.633333pt;}
.y121{bottom:444.274267pt;}
.y77{bottom:446.046667pt;}
.ye5{bottom:446.505333pt;}
.ycb{bottom:452.233333pt;}
.y108{bottom:455.920000pt;}
.y98{bottom:457.385333pt;}
.y10{bottom:457.998800pt;}
.ya8{bottom:459.833333pt;}
.y120{bottom:461.874267pt;}
.y76{bottom:464.974667pt;}
.ye4{bottom:465.705333pt;}
.yca{bottom:471.833333pt;}
.y107{bottom:473.520000pt;}
.y55{bottom:474.217333pt;}
.y97{bottom:476.713333pt;}
.yf{bottom:477.198800pt;}
.y34{bottom:479.033333pt;}
.y11f{bottom:479.474267pt;}
.y75{bottom:483.902667pt;}
.ye3{bottom:484.905333pt;}
.y106{bottom:491.120000pt;}
.yc9{bottom:491.433333pt;}
.y54{bottom:493.689333pt;}
.y96{bottom:496.041333pt;}
.ye{bottom:496.398800pt;}
.y11e{bottom:497.074267pt;}
.y33{bottom:498.233333pt;}
.y74{bottom:502.830667pt;}
.ye2{bottom:504.105333pt;}
.y105{bottom:508.720000pt;}
.yc8{bottom:511.033333pt;}
.y53{bottom:513.161333pt;}
.y11d{bottom:514.674267pt;}
.y95{bottom:515.369333pt;}
.yd{bottom:515.598800pt;}
.y32{bottom:517.433333pt;}
.y73{bottom:521.758667pt;}
.ye1{bottom:523.305333pt;}
.y104{bottom:526.320000pt;}
.yc7{bottom:530.633333pt;}
.y11c{bottom:532.274267pt;}
.y52{bottom:532.553333pt;}
.y94{bottom:534.697333pt;}
.yc{bottom:534.798800pt;}
.y31{bottom:536.633333pt;}
.y72{bottom:540.686667pt;}
.ye0{bottom:542.505333pt;}
.y103{bottom:543.920000pt;}
.y11b{bottom:549.874267pt;}
.yc6{bottom:550.233333pt;}
.y51{bottom:552.025333pt;}
.yb{bottom:553.998800pt;}
.y93{bottom:554.025333pt;}
.y30{bottom:555.833333pt;}
.y71{bottom:559.614667pt;}
.y102{bottom:561.520000pt;}
.ydf{bottom:561.705333pt;}
.y11a{bottom:567.474267pt;}
.yc5{bottom:569.833333pt;}
.y50{bottom:571.497333pt;}
.ya{bottom:573.198800pt;}
.y92{bottom:573.353333pt;}
.y2f{bottom:575.033333pt;}
.y70{bottom:578.542667pt;}
.y101{bottom:579.120000pt;}
.yde{bottom:580.905333pt;}
.y119{bottom:585.074267pt;}
.yc4{bottom:589.433333pt;}
.y4f{bottom:590.969333pt;}
.y9{bottom:592.398800pt;}
.y91{bottom:592.681333pt;}
.y2e{bottom:594.233333pt;}
.y100{bottom:596.720000pt;}
.y6f{bottom:597.470667pt;}
.y118{bottom:602.674267pt;}
.yc3{bottom:609.033333pt;}
.y4e{bottom:610.441333pt;}
.y8{bottom:611.598800pt;}
.y90{bottom:612.009333pt;}
.y2d{bottom:613.433333pt;}
.yff{bottom:614.320000pt;}
.y6e{bottom:616.398667pt;}
.y117{bottom:620.274267pt;}
.yc2{bottom:628.633333pt;}
.y4d{bottom:629.913333pt;}
.y7{bottom:630.798800pt;}
.y8f{bottom:631.337333pt;}
.yfe{bottom:631.920000pt;}
.y2c{bottom:632.633333pt;}
.y6d{bottom:635.326667pt;}
.y116{bottom:637.874267pt;}
.yc1{bottom:648.233333pt;}
.y4c{bottom:649.385333pt;}
.yfd{bottom:649.520000pt;}
.y6{bottom:649.998800pt;}
.y8e{bottom:650.665333pt;}
.y2b{bottom:651.833333pt;}
.y6c{bottom:654.254667pt;}
.y115{bottom:655.474267pt;}
.yfc{bottom:667.120000pt;}
.yc0{bottom:667.833333pt;}
.y4b{bottom:668.857333pt;}
.y8d{bottom:669.993333pt;}
.y2a{bottom:671.033333pt;}
.y114{bottom:673.074267pt;}
.y6b{bottom:673.182667pt;}
.yfb{bottom:684.720000pt;}
.ybf{bottom:687.433333pt;}
.y4a{bottom:688.329333pt;}
.y8c{bottom:689.321333pt;}
.y29{bottom:690.233333pt;}
.y113{bottom:690.674267pt;}
.y6a{bottom:692.110667pt;}
.yfa{bottom:702.320000pt;}
.ybe{bottom:707.033333pt;}
.y49{bottom:707.801333pt;}
.y112{bottom:708.274267pt;}
.y8b{bottom:708.649333pt;}
.y28{bottom:709.433333pt;}
.y69{bottom:711.038667pt;}
.yf9{bottom:719.920000pt;}
.y111{bottom:725.874267pt;}
.ybd{bottom:726.633333pt;}
.y48{bottom:727.273333pt;}
.y8a{bottom:727.977333pt;}
.y27{bottom:728.633333pt;}
.y68{bottom:729.993333pt;}
.y5{bottom:733.198800pt;}
.yf8{bottom:737.520000pt;}
.y110{bottom:743.474267pt;}
.ybc{bottom:746.233333pt;}
.y47{bottom:746.745333pt;}
.y89{bottom:747.305333pt;}
.y26{bottom:747.833333pt;}
.y67{bottom:748.921333pt;}
.yf7{bottom:755.120000pt;}
.y4{bottom:760.398800pt;}
.ybb{bottom:765.833333pt;}
.y46{bottom:766.217333pt;}
.y88{bottom:766.649333pt;}
.y25{bottom:767.033333pt;}
.y66{bottom:767.849333pt;}
.yf6{bottom:772.720000pt;}
.y10f{bottom:780.274267pt;}
.yba{bottom:785.433333pt;}
.y45{bottom:785.689333pt;}
.y87{bottom:785.977333pt;}
.y24{bottom:786.233333pt;}
.y65{bottom:786.777333pt;}
.yf5{bottom:790.320000pt;}
.yb9{bottom:805.033333pt;}
.y44{bottom:805.161333pt;}
.y86{bottom:805.305333pt;}
.y23{bottom:805.433333pt;}
.y64{bottom:805.705333pt;}
.yf4{bottom:807.920000pt;}
.y3{bottom:809.520000pt;}
.y22{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.ha{height:27.171875pt;}
.h7{height:34.351188pt;}
.h2{height:36.229167pt;}
.h4{height:39.101562pt;}
.hf{height:43.022135pt;}
.h3{height:45.286458pt;}
.h10{height:49.815104pt;}
.h6{height:54.343750pt;}
.hc{height:55.880917pt;}
.hb{height:56.179583pt;}
.hd{height:56.222250pt;}
.he{height:56.286250pt;}
.h9{height:56.350250pt;}
.h8{height:56.606250pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.927467pt;}
.x6{left:105.793200pt;}
.x7{left:124.717467pt;}
.x5{left:133.929200pt;}
.x1{left:258.308933pt;}
.x8{left:480.180933pt;}
.x2{left:508.590533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  