
    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_dbf93545bd8ccdbae9e6fcfe.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9c18ffadbafebba26681f710.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_4846f67923ff0d235a95cc4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_87350483455046b9aee69785.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_211ce64709689147169637dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_97e8db3702d703c2160c21bf.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-2.732208px;}
.ls21{letter-spacing:-1.010880px;}
.ls22{letter-spacing:-0.842400px;}
.ls38{letter-spacing:-0.589680px;}
.ls20{letter-spacing:-0.505440px;}
.ls2e{letter-spacing:-0.421200px;}
.ls29{letter-spacing:-0.336960px;}
.lsd{letter-spacing:-0.324000px;}
.ls17{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.168480px;}
.lsa{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.084240px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.084240px;}
.ls12{letter-spacing:0.088797px;}
.ls18{letter-spacing:0.168480px;}
.ls1e{letter-spacing:0.252720px;}
.ls1{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.336960px;}
.ls2a{letter-spacing:0.505440px;}
.ls28{letter-spacing:0.710374px;}
.ls14{letter-spacing:0.976764px;}
.ls3{letter-spacing:1.024578px;}
.ls31{letter-spacing:1.120392px;}
.ls1b{letter-spacing:1.263600px;}
.ls6{letter-spacing:1.366104px;}
.lse{letter-spacing:1.805534px;}
.ls35{letter-spacing:2.021760px;}
.ls2f{letter-spacing:2.397512px;}
.ls11{letter-spacing:3.374277px;}
.ls2d{letter-spacing:3.453840px;}
.lsf{letter-spacing:3.995854px;}
.ls1d{letter-spacing:4.077216px;}
.ls5{letter-spacing:4.439838px;}
.ls10{letter-spacing:4.795025px;}
.ls37{letter-spacing:4.885920px;}
.ls27{letter-spacing:4.972618px;}
.ls7{letter-spacing:5.122890px;}
.ls2b{letter-spacing:5.559840px;}
.ls4{letter-spacing:5.692100px;}
.ls2c{letter-spacing:5.881836px;}
.ls1c{letter-spacing:6.318000px;}
.ls13{letter-spacing:6.393366px;}
.lsc{letter-spacing:7.452000px;}
.ls33{letter-spacing:7.750080px;}
.ls23{letter-spacing:8.424000px;}
.ls25{letter-spacing:13.471303px;}
.ls32{letter-spacing:14.910480px;}
.ls36{letter-spacing:19.964880px;}
.ls1a{letter-spacing:30.073680px;}
.ls24{letter-spacing:49.141795px;}
.ls34{letter-spacing:58.631040px;}
.ls0{letter-spacing:89.935177px;}
.ls19{letter-spacing:313.709760px;}
.ls26{letter-spacing:317.332080px;}
.lsb{letter-spacing:523.800000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-34.152599px;}
.ws4{word-spacing:-33.583389px;}
.ws3{word-spacing:-32.900337px;}
.ws0{word-spacing:-29.485077px;}
.ws1{word-spacing:-28.460499px;}
.wse{word-spacing:-27.324000px;}
.ws4e{word-spacing:-27.171808px;}
.wsd{word-spacing:-27.000000px;}
.ws50{word-spacing:-26.994214px;}
.ws10{word-spacing:-26.784000px;}
.wsf{word-spacing:-26.676000px;}
.ws6a{word-spacing:-26.195043px;}
.ws4f{word-spacing:-22.909563px;}
.ws51{word-spacing:-21.396960px;}
.ws28{word-spacing:-21.312720px;}
.ws2c{word-spacing:-21.228480px;}
.ws2d{word-spacing:-21.060000px;}
.ws29{word-spacing:-20.807280px;}
.ws94{word-spacing:-20.723040px;}
.ws2a{word-spacing:-20.554560px;}
.ws2e{word-spacing:-20.217600px;}
.ws2b{word-spacing:-20.049120px;}
.ws1a{word-spacing:-9.501253px;}
.ws19{word-spacing:-7.991708px;}
.ws18{word-spacing:-7.192537px;}
.ws1d{word-spacing:-6.570960px;}
.ws15{word-spacing:-6.482163px;}
.ws46{word-spacing:-5.559840px;}
.ws1b{word-spacing:-4.972618px;}
.ws84{word-spacing:-4.801680px;}
.ws47{word-spacing:-4.633200px;}
.ws68{word-spacing:-4.548960px;}
.ws7a{word-spacing:-4.262244px;}
.ws69{word-spacing:-4.127760px;}
.ws5e{word-spacing:-4.043520px;}
.ws85{word-spacing:-3.959280px;}
.ws72{word-spacing:-3.790800px;}
.ws5f{word-spacing:-3.706560px;}
.ws56{word-spacing:-3.201120px;}
.ws57{word-spacing:-2.527200px;}
.ws33{word-spacing:-2.442960px;}
.ws34{word-spacing:-1.853280px;}
.ws32{word-spacing:-1.769040px;}
.ws6d{word-spacing:-1.684800px;}
.ws20{word-spacing:-1.516320px;}
.ws21{word-spacing:-1.263600px;}
.ws89{word-spacing:-1.179360px;}
.ws1e{word-spacing:-1.154358px;}
.ws3a{word-spacing:-1.095120px;}
.ws91{word-spacing:-1.010880px;}
.ws22{word-spacing:-0.505440px;}
.ws35{word-spacing:-0.421200px;}
.ws27{word-spacing:-0.336960px;}
.ws16{word-spacing:-0.266390px;}
.ws80{word-spacing:-0.252720px;}
.ws17{word-spacing:-0.177594px;}
.ws23{word-spacing:-0.168480px;}
.ws25{word-spacing:-0.084240px;}
.ws5{word-spacing:0.000000px;}
.ws26{word-spacing:0.084240px;}
.ws9{word-spacing:0.132480px;}
.ws6b{word-spacing:0.252720px;}
.wsb{word-spacing:0.324000px;}
.ws39{word-spacing:0.336960px;}
.ws7{word-spacing:0.341526px;}
.ws13{word-spacing:0.355187px;}
.ws71{word-spacing:0.421200px;}
.wsc{word-spacing:0.432000px;}
.ws95{word-spacing:0.505440px;}
.wsa{word-spacing:0.540000px;}
.ws97{word-spacing:0.589680px;}
.ws11{word-spacing:0.648000px;}
.ws4d{word-spacing:1.010880px;}
.ws77{word-spacing:1.065561px;}
.ws3d{word-spacing:1.095120px;}
.ws53{word-spacing:1.179360px;}
.ws1f{word-spacing:1.347840px;}
.ws76{word-spacing:1.516320px;}
.ws38{word-spacing:1.769040px;}
.ws14{word-spacing:1.775935px;}
.ws5d{word-spacing:1.853280px;}
.ws12{word-spacing:1.864732px;}
.ws73{word-spacing:2.021760px;}
.ws6e{word-spacing:2.274480px;}
.ws90{word-spacing:2.527200px;}
.ws70{word-spacing:2.695680px;}
.ws7e{word-spacing:2.864160px;}
.ws8{word-spacing:3.073734px;}
.ws4a{word-spacing:3.201120px;}
.ws8a{word-spacing:3.285360px;}
.ws7f{word-spacing:3.453840px;}
.ws79{word-spacing:3.463074px;}
.ws5c{word-spacing:3.875040px;}
.ws4b{word-spacing:3.959280px;}
.ws8c{word-spacing:4.173448px;}
.ws99{word-spacing:4.548960px;}
.ws8d{word-spacing:4.717440px;}
.ws59{word-spacing:4.883822px;}
.ws78{word-spacing:5.307120px;}
.ws41{word-spacing:5.391360px;}
.ws48{word-spacing:5.682992px;}
.ws42{word-spacing:6.065280px;}
.ws40{word-spacing:6.149520px;}
.ws7d{word-spacing:6.233760px;}
.ws3f{word-spacing:6.654960px;}
.ws88{word-spacing:6.823440px;}
.ws1c{word-spacing:7.192537px;}
.ws8b{word-spacing:7.497360px;}
.ws3e{word-spacing:7.581600px;}
.ws7c{word-spacing:7.665840px;}
.ws4c{word-spacing:8.171280px;}
.ws45{word-spacing:8.255520px;}
.ws58{word-spacing:8.676720px;}
.ws31{word-spacing:8.929440px;}
.ws87{word-spacing:9.013680px;}
.ws61{word-spacing:9.501253px;}
.ws37{word-spacing:9.771840px;}
.ws49{word-spacing:10.445760px;}
.ws86{word-spacing:11.203920px;}
.ws54{word-spacing:11.288160px;}
.ws55{word-spacing:11.877840px;}
.ws7b{word-spacing:12.046320px;}
.ws67{word-spacing:12.130560px;}
.ws60{word-spacing:12.467520px;}
.ws52{word-spacing:12.636000px;}
.ws63{word-spacing:13.225680px;}
.ws62{word-spacing:13.309920px;}
.ws82{word-spacing:15.500160px;}
.ws9a{word-spacing:16.089840px;}
.ws83{word-spacing:16.174080px;}
.ws6f{word-spacing:16.848000px;}
.ws36{word-spacing:16.932240px;}
.ws3c{word-spacing:17.606160px;}
.ws81{word-spacing:17.690400px;}
.ws98{word-spacing:19.122480px;}
.ws96{word-spacing:19.290960px;}
.ws64{word-spacing:19.796400px;}
.ws65{word-spacing:20.386080px;}
.ws24{word-spacing:20.807280px;}
.ws66{word-spacing:21.060000px;}
.ws8e{word-spacing:22.660560px;}
.ws8f{word-spacing:24.850800px;}
.ws43{word-spacing:28.473120px;}
.ws44{word-spacing:29.147040px;}
.ws2f{word-spacing:29.820960px;}
.ws30{word-spacing:29.905200px;}
.ws6c{word-spacing:34.117200px;}
.ws3b{word-spacing:34.959600px;}
.ws9b{word-spacing:35.633520px;}
.ws75{word-spacing:43.720560px;}
.ws74{word-spacing:44.057520px;}
.ws5b{word-spacing:45.108752px;}
.ws5a{word-spacing:48.927013px;}
.ws92{word-spacing:69.413760px;}
.ws93{word-spacing:69.582240px;}
.ws6{word-spacing:88.569073px;}
._e{margin-left:-11.462902px;}
._7{margin-left:-8.219392px;}
._c{margin-left:-6.581282px;}
._d{margin-left:-4.871375px;}
._6{margin-left:-3.722633px;}
._2{margin-left:-2.694261px;}
._8{margin-left:-1.445793px;}
._3{width:1.939109px;}
._0{width:3.449412px;}
._4{width:5.130479px;}
._5{width:6.636988px;}
._1{width:7.786793px;}
._a{width:8.803781px;}
._9{width:10.606279px;}
._b{width:11.873720px;}
._13{width:19.626331px;}
._11{width:65.370240px;}
._f{width:292.649760px;}
._10{width:313.709760px;}
._12{width:523.800000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:88.796757px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:113.841996px;}
.y0{bottom:0.000000px;}
.y7b{bottom:117.936000px;}
.y36{bottom:118.512000px;}
.y50{bottom:119.547000px;}
.yc1{bottom:126.336960px;}
.y66{bottom:130.887000px;}
.ye7{bottom:132.840000px;}
.y12f{bottom:142.732440px;}
.y1d{bottom:145.449000px;}
.y10e{bottom:150.092640px;}
.y9b{bottom:150.653880px;}
.yc0{bottom:151.545780px;}
.y109{bottom:155.324340px;}
.y7a{bottom:162.567000px;}
.y35{bottom:163.332000px;}
.y4f{bottom:164.367000px;}
.y10d{bottom:175.469940px;}
.ye6{bottom:175.667040px;}
.y65{bottom:175.707000px;}
.ybf{bottom:177.112620px;}
.y12e{bottom:180.177120px;}
.y9a{bottom:188.098560px;}
.y1c{bottom:190.061280px;}
.y108{bottom:192.937500px;}
.y10c{bottom:201.036780px;}
.y79{bottom:207.387000px;}
.y34{bottom:208.152000px;}
.y4e{bottom:209.187000px;}
.ye5{bottom:213.280200px;}
.y99{bottom:213.475860px;}
.ybe{bottom:214.725780px;}
.y12d{bottom:217.790280px;}
.y107{bottom:218.146320px;}
.y64{bottom:220.527000px;}
.y10b{bottom:226.603620px;}
.y1b{bottom:231.825600px;}
.ye4{bottom:238.489020px;}
.y98{bottom:239.042700px;}
.y106{bottom:243.713160px;}
.y10a{bottom:251.980920px;}
.ybd{bottom:252.170460px;}
.y78{bottom:252.207000px;}
.y33{bottom:252.972000px;}
.y4d{bottom:254.007000px;}
.y12c{bottom:255.234960px;}
.ye3{bottom:264.055860px;}
.y97{bottom:264.420000px;}
.y63{bottom:265.347000px;}
.y1a{bottom:265.492080px;}
.y105{bottom:269.280000px;}
.ybc{bottom:277.547760px;}
.ye2{bottom:289.622700px;}
.y96{bottom:289.986840px;}
.y12b{bottom:292.679640px;}
.y104{bottom:294.657300px;}
.y77{bottom:297.027000px;}
.y32{bottom:297.603000px;}
.y4c{bottom:298.638000px;}
.y19{bottom:299.324160px;}
.ybb{bottom:303.114600px;}
.y62{bottom:309.978000px;}
.ye1{bottom:315.000000px;}
.y95{bottom:327.600000px;}
.yba{bottom:328.491900px;}
.y12a{bottom:330.292800px;}
.y103{bottom:332.460000px;}
.y18{bottom:332.990640px;}
.y76{bottom:341.847000px;}
.y31{bottom:342.423000px;}
.y4b{bottom:343.458000px;}
.ye0{bottom:352.800000px;}
.yb9{bottom:354.058740px;}
.y61{bottom:354.798000px;}
.y94{bottom:365.220000px;}
.y17{bottom:366.822720px;}
.y129{bottom:367.737480px;}
.y102{bottom:369.900000px;}
.y75{bottom:386.478000px;}
.y30{bottom:387.243000px;}
.y4a{bottom:388.278000px;}
.ydf{bottom:390.240000px;}
.y92{bottom:390.409020px;}
.y93{bottom:390.420000px;}
.yb8{bottom:391.671900px;}
.y100{bottom:395.278560px;}
.y101{bottom:395.280000px;}
.y60{bottom:399.618000px;}
.y16{bottom:400.489200px;}
.y128{bottom:405.182160px;}
.yde{bottom:415.620000px;}
.y91{bottom:415.975860px;}
.yff{bottom:420.655860px;}
.yb7{bottom:429.285060px;}
.y74{bottom:431.298000px;}
.y2f{bottom:432.063000px;}
.y49{bottom:433.098000px;}
.y15{bottom:434.155680px;}
.ydd{bottom:441.000000px;}
.y90{bottom:441.542700px;}
.y127{bottom:442.795320px;}
.y5f{bottom:444.438000px;}
.yfe{bottom:446.222700px;}
.yb6{bottom:454.493880px;}
.ydb{bottom:466.555860px;}
.ydc{bottom:466.560000px;}
.y8f{bottom:466.920000px;}
.y14{bottom:467.987760px;}
.yfd{bottom:471.600000px;}
.y73{bottom:476.118000px;}
.y2e{bottom:476.883000px;}
.y48{bottom:477.729000px;}
.yb5{bottom:480.060720px;}
.y126{bottom:480.240000px;}
.y5e{bottom:489.258000px;}
.yda{bottom:492.122700px;}
.y13{bottom:501.654240px;}
.y8e{bottom:504.669600px;}
.yb4{bottom:505.438020px;}
.yfc{bottom:511.200000px;}
.yd9{bottom:517.500000px;}
.y125{bottom:517.680000px;}
.y72{bottom:520.938000px;}
.y2d{bottom:521.514000px;}
.y47{bottom:522.549000px;}
.yb3{bottom:531.004860px;}
.y5d{bottom:533.889000px;}
.y12{bottom:535.486320px;}
.y140{bottom:539.053200px;}
.y8d{bottom:542.114280px;}
.y124{bottom:543.060000px;}
.yfb{bottom:554.195340px;}
.yd8{bottom:555.120000px;}
.y13f{bottom:564.430500px;}
.y71{bottom:565.569000px;}
.y2c{bottom:566.334000px;}
.y8c{bottom:567.323100px;}
.y46{bottom:567.369000px;}
.y123{bottom:568.440000px;}
.yb2{bottom:568.618020px;}
.y11{bottom:569.152800px;}
.y5c{bottom:578.709000px;}
.yfa{bottom:579.404160px;}
.y13e{bottom:589.997340px;}
.yd7{bottom:592.740000px;}
.y8b{bottom:592.889940px;}
.y122{bottom:594.000000px;}
.y10{bottom:602.819280px;}
.yf9{bottom:604.971000px;}
.yb1{bottom:606.231180px;}
.y70{bottom:610.389000px;}
.y2b{bottom:611.154000px;}
.y45{bottom:612.189000px;}
.y13d{bottom:615.374640px;}
.yd5{bottom:617.922180px;}
.yd6{bottom:617.940000px;}
.y8a{bottom:618.456780px;}
.y5b{bottom:623.529000px;}
.yf8{bottom:630.348300px;}
.yb0{bottom:631.440000px;}
.y121{bottom:631.611720px;}
.yf{bottom:636.651360px;}
.y13c{bottom:640.941480px;}
.yd4{bottom:643.489020px;}
.y89{bottom:643.834080px;}
.y6f{bottom:655.209000px;}
.yf7{bottom:655.915140px;}
.y2a{bottom:655.974000px;}
.y120{bottom:656.989020px;}
.yaf{bottom:657.006840px;}
.y44{bottom:657.009000px;}
.y13b{bottom:666.318780px;}
.y5a{bottom:668.349000px;}
.yd3{bottom:669.055860px;}
.ye{bottom:670.317840px;}
.y88{bottom:681.636780px;}
.y11f{bottom:682.555860px;}
.y13a{bottom:691.885620px;}
.yf6{bottom:693.528300px;}
.yd2{bottom:694.433160px;}
.yae{bottom:694.620000px;}
.y6e{bottom:700.029000px;}
.y29{bottom:700.605000px;}
.y43{bottom:701.640000px;}
.yd{bottom:704.149920px;}
.y87{bottom:706.845600px;}
.y11e{bottom:707.933160px;}
.y59{bottom:712.980000px;}
.y139{bottom:717.452460px;}
.yf5{bottom:718.905600px;}
.yd1{bottom:720.000000px;}
.yad{bottom:732.240000px;}
.y86{bottom:732.412440px;}
.y11d{bottom:733.500000px;}
.yc{bottom:737.816400px;}
.y138{bottom:742.829760px;}
.yf4{bottom:744.472440px;}
.y42{bottom:744.660000px;}
.y6d{bottom:744.849000px;}
.y28{bottom:745.425000px;}
.yab{bottom:757.429020px;}
.yac{bottom:757.440000px;}
.yd0{bottom:757.620000px;}
.y58{bottom:757.800000px;}
.y85{bottom:757.979280px;}
.y11c{bottom:759.066840px;}
.y137{bottom:768.396600px;}
.yf3{bottom:769.849740px;}
.y41{bottom:769.860000px;}
.yb{bottom:771.648480px;}
.yaa{bottom:782.995860px;}
.y6c{bottom:789.480000px;}
.y27{bottom:790.245000px;}
.y136{bottom:793.963440px;}
.ycf{bottom:795.240000px;}
.y84{bottom:795.592440px;}
.y11b{bottom:796.680000px;}
.y57{bottom:802.620000px;}
.ya{bottom:805.314960px;}
.yf2{bottom:807.652440px;}
.y40{bottom:807.660000px;}
.ya9{bottom:808.562700px;}
.y135{bottom:819.340740px;}
.yce{bottom:820.440000px;}
.y3f{bottom:832.860000px;}
.y83{bottom:833.037120px;}
.ya8{bottom:833.940000px;}
.y11a{bottom:834.118560px;}
.y6b{bottom:834.300000px;}
.y26{bottom:835.065000px;}
.y9{bottom:838.981440px;}
.y134{bottom:844.907580px;}
.yf1{bottom:845.097120px;}
.ycd{bottom:846.000000px;}
.y56{bottom:847.440000px;}
.y82{bottom:858.414420px;}
.y3e{bottom:858.420000px;}
.y119{bottom:859.495860px;}
.y25{bottom:867.816000px;}
.yf0{bottom:870.474420px;}
.ycc{bottom:871.560000px;}
.ya7{bottom:871.740000px;}
.y8{bottom:872.813520px;}
.y6a{bottom:879.120000px;}
.y3d{bottom:883.980000px;}
.y81{bottom:883.981260px;}
.y118{bottom:884.873160px;}
.y55{bottom:890.282700px;}
.yef{bottom:895.851720px;}
.ycb{bottom:896.940000px;}
.y24{bottom:900.567000px;}
.y7{bottom:906.480000px;}
.ya6{bottom:909.180000px;}
.y80{bottom:909.358560px;}
.y3c{bottom:909.360000px;}
.y117{bottom:910.440000px;}
.y54{bottom:915.660000px;}
.yee{bottom:921.418560px;}
.yca{bottom:922.500000px;}
.y69{bottom:923.940000px;}
.y23{bottom:933.318000px;}
.ya5{bottom:934.380000px;}
.y115{bottom:935.991720px;}
.y116{bottom:936.000000px;}
.y6{bottom:943.380000px;}
.y133{bottom:946.795860px;}
.y7f{bottom:946.971720px;}
.y3b{bottom:946.980000px;}
.yc9{bottom:947.880000px;}
.y53{bottom:953.285400px;}
.yed{bottom:959.031720px;}
.ya3{bottom:959.911200px;}
.ya4{bottom:959.940000px;}
.y114{bottom:961.369020px;}
.y22{bottom:966.069000px;}
.y68{bottom:966.775320px;}
.y7e{bottom:972.349020px;}
.y3a{bottom:972.360000px;}
.y132{bottom:972.362700px;}
.yc8{bottom:973.440000px;}
.y52{bottom:978.662700px;}
.yec{bottom:984.409020px;}
.ya2{bottom:985.478040px;}
.y113{bottom:986.935860px;}
.y5{bottom:988.200000px;}
.y7d{bottom:997.915860px;}
.y39{bottom:997.920000px;}
.y131{bottom:997.929540px;}
.y21{bottom:998.820000px;}
.yc7{bottom:998.991720px;}
.y51{bottom:1004.040000px;}
.y67{bottom:1004.220000px;}
.yeb{bottom:1009.786320px;}
.ya1{bottom:1010.855340px;}
.y112{bottom:1012.502700px;}
.y7c{bottom:1023.293160px;}
.y38{bottom:1023.300000px;}
.yc6{bottom:1024.369020px;}
.y4{bottom:1033.020000px;}
.yea{bottom:1035.353160px;}
.y130{bottom:1035.542700px;}
.ya0{bottom:1036.422180px;}
.y111{bottom:1037.880000px;}
.y20{bottom:1043.640000px;}
.y37{bottom:1048.860000px;}
.yc5{bottom:1049.935860px;}
.ye9{bottom:1060.920000px;}
.y9f{bottom:1061.989020px;}
.y3{bottom:1065.780000px;}
.yc4{bottom:1075.502700px;}
.y110{bottom:1075.678020px;}
.y9e{bottom:1087.366320px;}
.y1f{bottom:1088.460000px;}
.ye8{bottom:1100.340000px;}
.yc3{bottom:1100.880000px;}
.y2{bottom:1107.367920px;}
.y9d{bottom:1112.933160px;}
.y10f{bottom:1113.122700px;}
.y1e{bottom:1133.280000px;}
.y9c{bottom:1138.500000px;}
.yc2{bottom:1138.680000px;}
.y1{bottom:1141.200000px;}
.h2{height:44.149219px;}
.h8{height:56.146289px;}
.h9{height:70.501641px;}
.ha{height:70.583906px;}
.h7{height:74.315254px;}
.h5{height:90.386719px;}
.h4{height:90.461599px;}
.h6{height:90.492188px;}
.h3{height:95.275967px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x4{left:154.620000px;}
.x3{left:180.720000px;}
.x6{left:185.940000px;}
.x5{left:215.460000px;}
.x2{left:233.820000px;}
.xc{left:237.060000px;}
.xa{left:269.280000px;}
.x7{left:279.540000px;}
.x10{left:338.400000px;}
.xd{left:382.140000px;}
.x11{left:486.720000px;}
.xf{left:546.480000px;}
.xe{left:590.400000px;}
.xb{left:614.700000px;}
.x8{left:620.280000px;}
.x9{left:635.580000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.428629pt;}
.ls21{letter-spacing:-0.898560pt;}
.ls22{letter-spacing:-0.748800pt;}
.ls38{letter-spacing:-0.524160pt;}
.ls20{letter-spacing:-0.449280pt;}
.ls2e{letter-spacing:-0.374400pt;}
.ls29{letter-spacing:-0.299520pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls17{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.149760pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.074880pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.074880pt;}
.ls12{letter-spacing:0.078930pt;}
.ls18{letter-spacing:0.149760pt;}
.ls1e{letter-spacing:0.224640pt;}
.ls1{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.299520pt;}
.ls2a{letter-spacing:0.449280pt;}
.ls28{letter-spacing:0.631444pt;}
.ls14{letter-spacing:0.868235pt;}
.ls3{letter-spacing:0.910736pt;}
.ls31{letter-spacing:0.995904pt;}
.ls1b{letter-spacing:1.123200pt;}
.ls6{letter-spacing:1.214315pt;}
.lse{letter-spacing:1.604919pt;}
.ls35{letter-spacing:1.797120pt;}
.ls2f{letter-spacing:2.131122pt;}
.ls11{letter-spacing:2.999357pt;}
.ls2d{letter-spacing:3.070080pt;}
.lsf{letter-spacing:3.551870pt;}
.ls1d{letter-spacing:3.624192pt;}
.ls5{letter-spacing:3.946523pt;}
.ls10{letter-spacing:4.262244pt;}
.ls37{letter-spacing:4.343040pt;}
.ls27{letter-spacing:4.420105pt;}
.ls7{letter-spacing:4.553680pt;}
.ls2b{letter-spacing:4.942080pt;}
.ls4{letter-spacing:5.059644pt;}
.ls2c{letter-spacing:5.228299pt;}
.ls1c{letter-spacing:5.616000pt;}
.ls13{letter-spacing:5.682992pt;}
.lsc{letter-spacing:6.624000pt;}
.ls33{letter-spacing:6.888960pt;}
.ls23{letter-spacing:7.488000pt;}
.ls25{letter-spacing:11.974491pt;}
.ls32{letter-spacing:13.253760pt;}
.ls36{letter-spacing:17.746560pt;}
.ls1a{letter-spacing:26.732160pt;}
.ls24{letter-spacing:43.681595pt;}
.ls34{letter-spacing:52.116480pt;}
.ls0{letter-spacing:79.942379pt;}
.ls19{letter-spacing:278.853120pt;}
.ls26{letter-spacing:282.072960pt;}
.lsb{letter-spacing:465.600000pt;}
.ws2{word-spacing:-30.357866pt;}
.ws4{word-spacing:-29.851901pt;}
.ws3{word-spacing:-29.244744pt;}
.ws0{word-spacing:-26.208957pt;}
.ws1{word-spacing:-25.298221pt;}
.wse{word-spacing:-24.288000pt;}
.ws4e{word-spacing:-24.152718pt;}
.wsd{word-spacing:-24.000000pt;}
.ws50{word-spacing:-23.994857pt;}
.ws10{word-spacing:-23.808000pt;}
.wsf{word-spacing:-23.712000pt;}
.ws6a{word-spacing:-23.284483pt;}
.ws4f{word-spacing:-20.364056pt;}
.ws51{word-spacing:-19.019520pt;}
.ws28{word-spacing:-18.944640pt;}
.ws2c{word-spacing:-18.869760pt;}
.ws2d{word-spacing:-18.720000pt;}
.ws29{word-spacing:-18.495360pt;}
.ws94{word-spacing:-18.420480pt;}
.ws2a{word-spacing:-18.270720pt;}
.ws2e{word-spacing:-17.971200pt;}
.ws2b{word-spacing:-17.821440pt;}
.ws1a{word-spacing:-8.445558pt;}
.ws19{word-spacing:-7.103741pt;}
.ws18{word-spacing:-6.393366pt;}
.ws1d{word-spacing:-5.840853pt;}
.ws15{word-spacing:-5.761923pt;}
.ws46{word-spacing:-4.942080pt;}
.ws1b{word-spacing:-4.420105pt;}
.ws84{word-spacing:-4.268160pt;}
.ws47{word-spacing:-4.118400pt;}
.ws68{word-spacing:-4.043520pt;}
.ws7a{word-spacing:-3.788662pt;}
.ws69{word-spacing:-3.669120pt;}
.ws5e{word-spacing:-3.594240pt;}
.ws85{word-spacing:-3.519360pt;}
.ws72{word-spacing:-3.369600pt;}
.ws5f{word-spacing:-3.294720pt;}
.ws56{word-spacing:-2.845440pt;}
.ws57{word-spacing:-2.246400pt;}
.ws33{word-spacing:-2.171520pt;}
.ws34{word-spacing:-1.647360pt;}
.ws32{word-spacing:-1.572480pt;}
.ws6d{word-spacing:-1.497600pt;}
.ws20{word-spacing:-1.347840pt;}
.ws21{word-spacing:-1.123200pt;}
.ws89{word-spacing:-1.048320pt;}
.ws1e{word-spacing:-1.026096pt;}
.ws3a{word-spacing:-0.973440pt;}
.ws91{word-spacing:-0.898560pt;}
.ws22{word-spacing:-0.449280pt;}
.ws35{word-spacing:-0.374400pt;}
.ws27{word-spacing:-0.299520pt;}
.ws16{word-spacing:-0.236791pt;}
.ws80{word-spacing:-0.224640pt;}
.ws17{word-spacing:-0.157861pt;}
.ws23{word-spacing:-0.149760pt;}
.ws25{word-spacing:-0.074880pt;}
.ws5{word-spacing:0.000000pt;}
.ws26{word-spacing:0.074880pt;}
.ws9{word-spacing:0.117760pt;}
.ws6b{word-spacing:0.224640pt;}
.wsb{word-spacing:0.288000pt;}
.ws39{word-spacing:0.299520pt;}
.ws7{word-spacing:0.303579pt;}
.ws13{word-spacing:0.315722pt;}
.ws71{word-spacing:0.374400pt;}
.wsc{word-spacing:0.384000pt;}
.ws95{word-spacing:0.449280pt;}
.wsa{word-spacing:0.480000pt;}
.ws97{word-spacing:0.524160pt;}
.ws11{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.898560pt;}
.ws77{word-spacing:0.947165pt;}
.ws3d{word-spacing:0.973440pt;}
.ws53{word-spacing:1.048320pt;}
.ws1f{word-spacing:1.198080pt;}
.ws76{word-spacing:1.347840pt;}
.ws38{word-spacing:1.572480pt;}
.ws14{word-spacing:1.578609pt;}
.ws5d{word-spacing:1.647360pt;}
.ws12{word-spacing:1.657539pt;}
.ws73{word-spacing:1.797120pt;}
.ws6e{word-spacing:2.021760pt;}
.ws90{word-spacing:2.246400pt;}
.ws70{word-spacing:2.396160pt;}
.ws7e{word-spacing:2.545920pt;}
.ws8{word-spacing:2.732208pt;}
.ws4a{word-spacing:2.845440pt;}
.ws8a{word-spacing:2.920320pt;}
.ws7f{word-spacing:3.070080pt;}
.ws79{word-spacing:3.078288pt;}
.ws5c{word-spacing:3.444480pt;}
.ws4b{word-spacing:3.519360pt;}
.ws8c{word-spacing:3.709731pt;}
.ws99{word-spacing:4.043520pt;}
.ws8d{word-spacing:4.193280pt;}
.ws59{word-spacing:4.341175pt;}
.ws78{word-spacing:4.717440pt;}
.ws41{word-spacing:4.792320pt;}
.ws48{word-spacing:5.051549pt;}
.ws42{word-spacing:5.391360pt;}
.ws40{word-spacing:5.466240pt;}
.ws7d{word-spacing:5.541120pt;}
.ws3f{word-spacing:5.915520pt;}
.ws88{word-spacing:6.065280pt;}
.ws1c{word-spacing:6.393366pt;}
.ws8b{word-spacing:6.664320pt;}
.ws3e{word-spacing:6.739200pt;}
.ws7c{word-spacing:6.814080pt;}
.ws4c{word-spacing:7.263360pt;}
.ws45{word-spacing:7.338240pt;}
.ws58{word-spacing:7.712640pt;}
.ws31{word-spacing:7.937280pt;}
.ws87{word-spacing:8.012160pt;}
.ws61{word-spacing:8.445558pt;}
.ws37{word-spacing:8.686080pt;}
.ws49{word-spacing:9.285120pt;}
.ws86{word-spacing:9.959040pt;}
.ws54{word-spacing:10.033920pt;}
.ws55{word-spacing:10.558080pt;}
.ws7b{word-spacing:10.707840pt;}
.ws67{word-spacing:10.782720pt;}
.ws60{word-spacing:11.082240pt;}
.ws52{word-spacing:11.232000pt;}
.ws63{word-spacing:11.756160pt;}
.ws62{word-spacing:11.831040pt;}
.ws82{word-spacing:13.777920pt;}
.ws9a{word-spacing:14.302080pt;}
.ws83{word-spacing:14.376960pt;}
.ws6f{word-spacing:14.976000pt;}
.ws36{word-spacing:15.050880pt;}
.ws3c{word-spacing:15.649920pt;}
.ws81{word-spacing:15.724800pt;}
.ws98{word-spacing:16.997760pt;}
.ws96{word-spacing:17.147520pt;}
.ws64{word-spacing:17.596800pt;}
.ws65{word-spacing:18.120960pt;}
.ws24{word-spacing:18.495360pt;}
.ws66{word-spacing:18.720000pt;}
.ws8e{word-spacing:20.142720pt;}
.ws8f{word-spacing:22.089600pt;}
.ws43{word-spacing:25.309440pt;}
.ws44{word-spacing:25.908480pt;}
.ws2f{word-spacing:26.507520pt;}
.ws30{word-spacing:26.582400pt;}
.ws6c{word-spacing:30.326400pt;}
.ws3b{word-spacing:31.075200pt;}
.ws9b{word-spacing:31.674240pt;}
.ws75{word-spacing:38.862720pt;}
.ws74{word-spacing:39.162240pt;}
.ws5b{word-spacing:40.096669pt;}
.ws5a{word-spacing:43.490678pt;}
.ws92{word-spacing:61.701120pt;}
.ws93{word-spacing:61.850880pt;}
.ws6{word-spacing:78.728065pt;}
._e{margin-left:-10.189247pt;}
._7{margin-left:-7.306126pt;}
._c{margin-left:-5.850028pt;}
._d{margin-left:-4.330111pt;}
._6{margin-left:-3.309007pt;}
._2{margin-left:-2.394898pt;}
._8{margin-left:-1.285150pt;}
._3{width:1.723652pt;}
._0{width:3.066144pt;}
._4{width:4.560426pt;}
._5{width:5.899545pt;}
._1{width:6.921593pt;}
._a{width:7.825583pt;}
._9{width:9.427804pt;}
._b{width:10.554418pt;}
._13{width:17.445628pt;}
._11{width:58.106880pt;}
._f{width:260.133120pt;}
._10{width:278.853120pt;}
._12{width:465.600000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:78.930450pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:101.192885pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:104.832000pt;}
.y36{bottom:105.344000pt;}
.y50{bottom:106.264000pt;}
.yc1{bottom:112.299520pt;}
.y66{bottom:116.344000pt;}
.ye7{bottom:118.080000pt;}
.y12f{bottom:126.873280pt;}
.y1d{bottom:129.288000pt;}
.y10e{bottom:133.415680pt;}
.y9b{bottom:133.914560pt;}
.yc0{bottom:134.707360pt;}
.y109{bottom:138.066080pt;}
.y7a{bottom:144.504000pt;}
.y35{bottom:145.184000pt;}
.y4f{bottom:146.104000pt;}
.y10d{bottom:155.973280pt;}
.ye6{bottom:156.148480pt;}
.y65{bottom:156.184000pt;}
.ybf{bottom:157.433440pt;}
.y12e{bottom:160.157440pt;}
.y9a{bottom:167.198720pt;}
.y1c{bottom:168.943360pt;}
.y108{bottom:171.500000pt;}
.y10c{bottom:178.699360pt;}
.y79{bottom:184.344000pt;}
.y34{bottom:185.024000pt;}
.y4e{bottom:185.944000pt;}
.ye5{bottom:189.582400pt;}
.y99{bottom:189.756320pt;}
.ybe{bottom:190.867360pt;}
.y12d{bottom:193.591360pt;}
.y107{bottom:193.907840pt;}
.y64{bottom:196.024000pt;}
.y10b{bottom:201.425440pt;}
.y1b{bottom:206.067200pt;}
.ye4{bottom:211.990240pt;}
.y98{bottom:212.482400pt;}
.y106{bottom:216.633920pt;}
.y10a{bottom:223.983040pt;}
.ybd{bottom:224.151520pt;}
.y78{bottom:224.184000pt;}
.y33{bottom:224.864000pt;}
.y4d{bottom:225.784000pt;}
.y12c{bottom:226.875520pt;}
.ye3{bottom:234.716320pt;}
.y97{bottom:235.040000pt;}
.y63{bottom:235.864000pt;}
.y1a{bottom:235.992960pt;}
.y105{bottom:239.360000pt;}
.ybc{bottom:246.709120pt;}
.ye2{bottom:257.442400pt;}
.y96{bottom:257.766080pt;}
.y12b{bottom:260.159680pt;}
.y104{bottom:261.917600pt;}
.y77{bottom:264.024000pt;}
.y32{bottom:264.536000pt;}
.y4c{bottom:265.456000pt;}
.y19{bottom:266.065920pt;}
.ybb{bottom:269.435200pt;}
.y62{bottom:275.536000pt;}
.ye1{bottom:280.000000pt;}
.y95{bottom:291.200000pt;}
.yba{bottom:291.992800pt;}
.y12a{bottom:293.593600pt;}
.y103{bottom:295.520000pt;}
.y18{bottom:295.991680pt;}
.y76{bottom:303.864000pt;}
.y31{bottom:304.376000pt;}
.y4b{bottom:305.296000pt;}
.ye0{bottom:313.600000pt;}
.yb9{bottom:314.718880pt;}
.y61{bottom:315.376000pt;}
.y94{bottom:324.640000pt;}
.y17{bottom:326.064640pt;}
.y129{bottom:326.877760pt;}
.y102{bottom:328.800000pt;}
.y75{bottom:343.536000pt;}
.y30{bottom:344.216000pt;}
.y4a{bottom:345.136000pt;}
.ydf{bottom:346.880000pt;}
.y92{bottom:347.030240pt;}
.y93{bottom:347.040000pt;}
.yb8{bottom:348.152800pt;}
.y100{bottom:351.358720pt;}
.y101{bottom:351.360000pt;}
.y60{bottom:355.216000pt;}
.y16{bottom:355.990400pt;}
.y128{bottom:360.161920pt;}
.yde{bottom:369.440000pt;}
.y91{bottom:369.756320pt;}
.yff{bottom:373.916320pt;}
.yb7{bottom:381.586720pt;}
.y74{bottom:383.376000pt;}
.y2f{bottom:384.056000pt;}
.y49{bottom:384.976000pt;}
.y15{bottom:385.916160pt;}
.ydd{bottom:392.000000pt;}
.y90{bottom:392.482400pt;}
.y127{bottom:393.595840pt;}
.y5f{bottom:395.056000pt;}
.yfe{bottom:396.642400pt;}
.yb6{bottom:403.994560pt;}
.ydb{bottom:414.716320pt;}
.ydc{bottom:414.720000pt;}
.y8f{bottom:415.040000pt;}
.y14{bottom:415.989120pt;}
.yfd{bottom:419.200000pt;}
.y73{bottom:423.216000pt;}
.y2e{bottom:423.896000pt;}
.y48{bottom:424.648000pt;}
.yb5{bottom:426.720640pt;}
.y126{bottom:426.880000pt;}
.y5e{bottom:434.896000pt;}
.yda{bottom:437.442400pt;}
.y13{bottom:445.914880pt;}
.y8e{bottom:448.595200pt;}
.yb4{bottom:449.278240pt;}
.yfc{bottom:454.400000pt;}
.yd9{bottom:460.000000pt;}
.y125{bottom:460.160000pt;}
.y72{bottom:463.056000pt;}
.y2d{bottom:463.568000pt;}
.y47{bottom:464.488000pt;}
.yb3{bottom:472.004320pt;}
.y5d{bottom:474.568000pt;}
.y12{bottom:475.987840pt;}
.y140{bottom:479.158400pt;}
.y8d{bottom:481.879360pt;}
.y124{bottom:482.720000pt;}
.yfb{bottom:492.618080pt;}
.yd8{bottom:493.440000pt;}
.y13f{bottom:501.716000pt;}
.y71{bottom:502.728000pt;}
.y2c{bottom:503.408000pt;}
.y8c{bottom:504.287200pt;}
.y46{bottom:504.328000pt;}
.y123{bottom:505.280000pt;}
.yb2{bottom:505.438240pt;}
.y11{bottom:505.913600pt;}
.y5c{bottom:514.408000pt;}
.yfa{bottom:515.025920pt;}
.y13e{bottom:524.442080pt;}
.yd7{bottom:526.880000pt;}
.y8b{bottom:527.013280pt;}
.y122{bottom:528.000000pt;}
.y10{bottom:535.839360pt;}
.yf9{bottom:537.752000pt;}
.yb1{bottom:538.872160pt;}
.y70{bottom:542.568000pt;}
.y2b{bottom:543.248000pt;}
.y45{bottom:544.168000pt;}
.y13d{bottom:546.999680pt;}
.yd5{bottom:549.264160pt;}
.yd6{bottom:549.280000pt;}
.y8a{bottom:549.739360pt;}
.y5b{bottom:554.248000pt;}
.yf8{bottom:560.309600pt;}
.yb0{bottom:561.280000pt;}
.y121{bottom:561.432640pt;}
.yf{bottom:565.912320pt;}
.y13c{bottom:569.725760pt;}
.yd4{bottom:571.990240pt;}
.y89{bottom:572.296960pt;}
.y6f{bottom:582.408000pt;}
.yf7{bottom:583.035680pt;}
.y2a{bottom:583.088000pt;}
.y120{bottom:583.990240pt;}
.yaf{bottom:584.006080pt;}
.y44{bottom:584.008000pt;}
.y13b{bottom:592.283360pt;}
.y5a{bottom:594.088000pt;}
.yd3{bottom:594.716320pt;}
.ye{bottom:595.838080pt;}
.y88{bottom:605.899360pt;}
.y11f{bottom:606.716320pt;}
.y13a{bottom:615.009440pt;}
.yf6{bottom:616.469600pt;}
.yd2{bottom:617.273920pt;}
.yae{bottom:617.440000pt;}
.y6e{bottom:622.248000pt;}
.y29{bottom:622.760000pt;}
.y43{bottom:623.680000pt;}
.yd{bottom:625.911040pt;}
.y87{bottom:628.307200pt;}
.y11e{bottom:629.273920pt;}
.y59{bottom:633.760000pt;}
.y139{bottom:637.735520pt;}
.yf5{bottom:639.027200pt;}
.yd1{bottom:640.000000pt;}
.yad{bottom:650.880000pt;}
.y86{bottom:651.033280pt;}
.y11d{bottom:652.000000pt;}
.yc{bottom:655.836800pt;}
.y138{bottom:660.293120pt;}
.yf4{bottom:661.753280pt;}
.y42{bottom:661.920000pt;}
.y6d{bottom:662.088000pt;}
.y28{bottom:662.600000pt;}
.yab{bottom:673.270240pt;}
.yac{bottom:673.280000pt;}
.yd0{bottom:673.440000pt;}
.y58{bottom:673.600000pt;}
.y85{bottom:673.759360pt;}
.y11c{bottom:674.726080pt;}
.y137{bottom:683.019200pt;}
.yf3{bottom:684.310880pt;}
.y41{bottom:684.320000pt;}
.yb{bottom:685.909760pt;}
.yaa{bottom:695.996320pt;}
.y6c{bottom:701.760000pt;}
.y27{bottom:702.440000pt;}
.y136{bottom:705.745280pt;}
.ycf{bottom:706.880000pt;}
.y84{bottom:707.193280pt;}
.y11b{bottom:708.160000pt;}
.y57{bottom:713.440000pt;}
.ya{bottom:715.835520pt;}
.yf2{bottom:717.913280pt;}
.y40{bottom:717.920000pt;}
.ya9{bottom:718.722400pt;}
.y135{bottom:728.302880pt;}
.yce{bottom:729.280000pt;}
.y3f{bottom:740.320000pt;}
.y83{bottom:740.477440pt;}
.ya8{bottom:741.280000pt;}
.y11a{bottom:741.438720pt;}
.y6b{bottom:741.600000pt;}
.y26{bottom:742.280000pt;}
.y9{bottom:745.761280pt;}
.y134{bottom:751.028960pt;}
.yf1{bottom:751.197440pt;}
.ycd{bottom:752.000000pt;}
.y56{bottom:753.280000pt;}
.y82{bottom:763.035040pt;}
.y3e{bottom:763.040000pt;}
.y119{bottom:763.996320pt;}
.y25{bottom:771.392000pt;}
.yf0{bottom:773.755040pt;}
.ycc{bottom:774.720000pt;}
.ya7{bottom:774.880000pt;}
.y8{bottom:775.834240pt;}
.y6a{bottom:781.440000pt;}
.y3d{bottom:785.760000pt;}
.y81{bottom:785.761120pt;}
.y118{bottom:786.553920pt;}
.y55{bottom:791.362400pt;}
.yef{bottom:796.312640pt;}
.ycb{bottom:797.280000pt;}
.y24{bottom:800.504000pt;}
.y7{bottom:805.760000pt;}
.ya6{bottom:808.160000pt;}
.y80{bottom:808.318720pt;}
.y3c{bottom:808.320000pt;}
.y117{bottom:809.280000pt;}
.y54{bottom:813.920000pt;}
.yee{bottom:819.038720pt;}
.yca{bottom:820.000000pt;}
.y69{bottom:821.280000pt;}
.y23{bottom:829.616000pt;}
.ya5{bottom:830.560000pt;}
.y115{bottom:831.992640pt;}
.y116{bottom:832.000000pt;}
.y6{bottom:838.560000pt;}
.y133{bottom:841.596320pt;}
.y7f{bottom:841.752640pt;}
.y3b{bottom:841.760000pt;}
.yc9{bottom:842.560000pt;}
.y53{bottom:847.364800pt;}
.yed{bottom:852.472640pt;}
.ya3{bottom:853.254400pt;}
.ya4{bottom:853.280000pt;}
.y114{bottom:854.550240pt;}
.y22{bottom:858.728000pt;}
.y68{bottom:859.355840pt;}
.y7e{bottom:864.310240pt;}
.y3a{bottom:864.320000pt;}
.y132{bottom:864.322400pt;}
.yc8{bottom:865.280000pt;}
.y52{bottom:869.922400pt;}
.yec{bottom:875.030240pt;}
.ya2{bottom:875.980480pt;}
.y113{bottom:877.276320pt;}
.y5{bottom:878.400000pt;}
.y7d{bottom:887.036320pt;}
.y39{bottom:887.040000pt;}
.y131{bottom:887.048480pt;}
.y21{bottom:887.840000pt;}
.yc7{bottom:887.992640pt;}
.y51{bottom:892.480000pt;}
.y67{bottom:892.640000pt;}
.yeb{bottom:897.587840pt;}
.ya1{bottom:898.538080pt;}
.y112{bottom:900.002400pt;}
.y7c{bottom:909.593920pt;}
.y38{bottom:909.600000pt;}
.yc6{bottom:910.550240pt;}
.y4{bottom:918.240000pt;}
.yea{bottom:920.313920pt;}
.y130{bottom:920.482400pt;}
.ya0{bottom:921.264160pt;}
.y111{bottom:922.560000pt;}
.y20{bottom:927.680000pt;}
.y37{bottom:932.320000pt;}
.yc5{bottom:933.276320pt;}
.ye9{bottom:943.040000pt;}
.y9f{bottom:943.990240pt;}
.y3{bottom:947.360000pt;}
.yc4{bottom:956.002400pt;}
.y110{bottom:956.158240pt;}
.y9e{bottom:966.547840pt;}
.y1f{bottom:967.520000pt;}
.ye8{bottom:978.080000pt;}
.yc3{bottom:978.560000pt;}
.y2{bottom:984.327040pt;}
.y9d{bottom:989.273920pt;}
.y10f{bottom:989.442400pt;}
.y1e{bottom:1007.360000pt;}
.y9c{bottom:1012.000000pt;}
.yc2{bottom:1012.160000pt;}
.y1{bottom:1014.400000pt;}
.h2{height:39.243750pt;}
.h8{height:49.907812pt;}
.h9{height:62.668125pt;}
.ha{height:62.741250pt;}
.h7{height:66.058004pt;}
.h5{height:80.343750pt;}
.h4{height:80.410310pt;}
.h6{height:80.437500pt;}
.h3{height:84.689749pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x4{left:137.440000pt;}
.x3{left:160.640000pt;}
.x6{left:165.280000pt;}
.x5{left:191.520000pt;}
.x2{left:207.840000pt;}
.xc{left:210.720000pt;}
.xa{left:239.360000pt;}
.x7{left:248.480000pt;}
.x10{left:300.800000pt;}
.xd{left:339.680000pt;}
.x11{left:432.640000pt;}
.xf{left:485.760000pt;}
.xe{left:524.800000pt;}
.xb{left:546.400000pt;}
.x8{left:551.360000pt;}
.x9{left:564.960000pt;}
}




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