
    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_1cdd5fb717377a8d71fc5b65.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_188c030c91c0446c12a0f2aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_f40e02cd954c70f68cd93591.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_fdcfed7d7958389ee89ac739.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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_d2b8b3f91683b8566d6cf203.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_c17e3695d4f5409662dd3e34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_fff8bd4a63ad711e8413690e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_5ef6db802f08e9ac779eac98.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.721000;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_08b366dde002a6afc3d77fcd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_d6642a8dfaa0f43b9a434255.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;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_6eff97fd0b873e6e1bfb0f34.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.635000;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_205f10756a483658739f0af2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;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_61e158da6fe9e316f2df608c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_9a90e7fefd8875752481723c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.721000;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:fff;src:url('chunks/assets/font_610ca23c8666b1e88ec4021c.woff2')format("woff");}.fff{font-family:fff;line-height:0.854000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249997,-0.001235,0.001235,0.249997,0,0);-ms-transform:matrix(0.249997,-0.001235,0.001235,0.249997,0,0);-webkit-transform:matrix(0.249997,-0.001235,0.001235,0.249997,0,0);}
.m3{transform:matrix(0.249999,0.000560,-0.000560,0.249999,0,0);-ms-transform:matrix(0.249999,0.000560,-0.000560,0.249999,0,0);-webkit-transform:matrix(0.249999,0.000560,-0.000560,0.249999,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);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001618px;}
.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;}
}
.ws66{word-spacing:-21.519300px;}
.ws68{word-spacing:-11.955150px;}
.ws4e{word-spacing:-8.765083px;}
.ws2d{word-spacing:-8.581726px;}
.ws29{word-spacing:-8.371988px;}
.ws27{word-spacing:-7.088602px;}
.ws2b{word-spacing:-7.063974px;}
.ws26{word-spacing:-6.921418px;}
.ws28{word-spacing:-6.202526px;}
.ws2c{word-spacing:-5.545869px;}
.ws4d{word-spacing:-4.430142px;}
.ws25{word-spacing:-3.460709px;}
.ws58{word-spacing:-3.207275px;}
.ws46{word-spacing:-3.076366px;}
.ws32{word-spacing:-2.880002px;}
.ws4f{word-spacing:-2.290911px;}
.ws38{word-spacing:-2.225456px;}
.ws47{word-spacing:-2.160002px;}
.ws3b{word-spacing:-1.898183px;}
.ws23{word-spacing:-1.505456px;}
.ws3{word-spacing:-1.494390px;}
.ws5a{word-spacing:-1.374547px;}
.wsf{word-spacing:-0.720001px;}
.ws55{word-spacing:-0.654546px;}
.ws19{word-spacing:-0.392728px;}
.ws10{word-spacing:-0.327273px;}
.ws30{word-spacing:-0.065455px;}
.ws1{word-spacing:-0.059776px;}
.ws6c{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws5d{word-spacing:0.130909px;}
.ws6f{word-spacing:0.143462px;}
.ws14{word-spacing:0.261818px;}
.ws37{word-spacing:0.327273px;}
.ws1d{word-spacing:0.458182px;}
.ws67{word-spacing:0.717309px;}
.ws8{word-spacing:0.720001px;}
.ws36{word-spacing:0.785455px;}
.ws12{word-spacing:0.850910px;}
.ws69{word-spacing:0.908591px;}
.ws34{word-spacing:0.916364px;}
.wsd{word-spacing:1.047274px;}
.ws15{word-spacing:1.112728px;}
.ws6{word-spacing:1.255288px;}
.ws9{word-spacing:1.309092px;}
.ws4{word-spacing:1.315063px;}
.ws4c{word-spacing:1.440001px;}
.ws1c{word-spacing:1.570910px;}
.ws56{word-spacing:1.636365px;}
.ws53{word-spacing:1.767274px;}
.ws51{word-spacing:1.786829px;}
.ws4a{word-spacing:1.898183px;}
.ws24{word-spacing:2.029093px;}
.ws18{word-spacing:2.160002px;}
.ws21{word-spacing:2.225456px;}
.ws1f{word-spacing:2.814548px;}
.ws13{word-spacing:2.945457px;}
.ws39{word-spacing:3.076366px;}
.ws54{word-spacing:3.141821px;}
.ws11{word-spacing:3.207275px;}
.wsb{word-spacing:3.272730px;}
.ws61{word-spacing:3.338185px;}
.ws17{word-spacing:3.469094px;}
.ws6d{word-spacing:3.490904px;}
.ws45{word-spacing:3.861821px;}
.ws4b{word-spacing:3.927276px;}
.ws41{word-spacing:4.058185px;}
.ws42{word-spacing:4.123640px;}
.ws5{word-spacing:4.303843px;}
.ws50{word-spacing:4.385458px;}
.ws2f{word-spacing:4.516367px;}
.ws2e{word-spacing:4.581822px;}
.ws31{word-spacing:4.653313px;}
.ws3c{word-spacing:4.974550px;}
.ws6a{word-spacing:5.068984px;}
.ws64{word-spacing:5.125301px;}
.ws65{word-spacing:5.140702px;}
.ws1e{word-spacing:5.236368px;}
.ws44{word-spacing:5.301823px;}
.ws2{word-spacing:5.320028px;}
.ws16{word-spacing:5.432732px;}
.ws71{word-spacing:5.547190px;}
.ws1a{word-spacing:5.629096px;}
.ws49{word-spacing:5.694550px;}
.wsc{word-spacing:5.760005px;}
.ws20{word-spacing:5.825459px;}
.wsa{word-spacing:6.152732px;}
.ws60{word-spacing:6.676369px;}
.ws3f{word-spacing:7.066573px;}
.ws3d{word-spacing:7.069097px;}
.wse{word-spacing:7.134551px;}
.ws22{word-spacing:7.330915px;}
.ws5e{word-spacing:7.396370px;}
.ws43{word-spacing:7.723643px;}
.ws57{word-spacing:7.920007px;}
.ws33{word-spacing:8.116370px;}
.ws5f{word-spacing:8.312734px;}
.ws5c{word-spacing:8.378189px;}
.ws48{word-spacing:8.836371px;}
.ws1b{word-spacing:8.901826px;}
.ws6e{word-spacing:11.907329px;}
.ws70{word-spacing:12.050791px;}
.ws62{word-spacing:13.366022px;}
.ws63{word-spacing:13.628837px;}
.ws5b{word-spacing:14.909406px;}
.ws59{word-spacing:14.913785px;}
.ws6b{word-spacing:17.024134px;}
.ws35{word-spacing:17.214560px;}
.ws52{word-spacing:18.065470px;}
.ws3a{word-spacing:19.364862px;}
.ws3e{word-spacing:23.378470px;}
.ws40{word-spacing:23.387767px;}
.ws7{word-spacing:64.557900px;}
.ws2a{word-spacing:445.810480px;}
._2{margin-left:-7.962163px;}
._19{margin-left:-6.369713px;}
._3{margin-left:-5.236368px;}
._e{margin-left:-3.920009px;}
._8{margin-left:-2.151922px;}
._1{margin-left:-1.075968px;}
._15{width:1.314596px;}
._5{width:3.075970px;}
._4{width:4.981819px;}
._1e{width:11.763862px;}
._1d{width:15.447286px;}
._10{width:16.707432px;}
._1f{width:18.028361px;}
._6{width:19.247758px;}
._11{width:20.348300px;}
._9{width:21.519216px;}
._d{width:22.770121px;}
._a{width:24.349111px;}
._f{width:26.181840px;}
._13{width:27.744670px;}
._20{width:28.938259px;}
._b{width:30.043661px;}
._18{width:32.465482px;}
._7{width:34.072106px;}
._21{width:35.870229px;}
._12{width:37.031143px;}
._c{width:38.086497px;}
._1b{width:42.149949px;}
._1c{width:45.671963px;}
._1a{width:47.781858px;}
._14{width:86.077200px;}
._16{width:224.292047px;}
._17{width:248.627582px;}
._0{width:2126.685409px;}
.fc5{color:rgb(33,25,21);}
.fc4{color:transparent;}
.fc2{color:rgb(123,121,121);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:16.718400px;}
.fs10{font-size:20.896898px;}
.fsd{font-size:26.159759px;}
.fs4{font-size:29.257200px;}
.fsa{font-size:33.320634px;}
.fs5{font-size:33.436800px;}
.fs11{font-size:35.823406px;}
.fs8{font-size:39.490509px;}
.fse{font-size:40.479840px;}
.fs12{font-size:42.343200px;}
.fs13{font-size:42.343209px;}
.fs14{font-size:42.343398px;}
.fsc{font-size:44.845253px;}
.fsf{font-size:47.820600px;}
.fs7{font-size:50.155200px;}
.fs9{font-size:51.560640px;}
.fsb{font-size:57.121025px;}
.fs2{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs15{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.089800px;}
.y4a{bottom:3.222540px;}
.y86{bottom:6.267235px;}
.y54{bottom:9.276461px;}
.y85{bottom:17.735185px;}
.y4e{bottom:18.070339px;}
.y4c{bottom:18.609094px;}
.y52{bottom:21.926580px;}
.y40{bottom:22.159891px;}
.y4d{bottom:22.162911px;}
.y4b{bottom:22.701720px;}
.y4f{bottom:24.307511px;}
.y50{bottom:27.520725px;}
.y84{bottom:29.644210px;}
.y51{bottom:32.449778px;}
.y41{bottom:35.417582px;}
.y3d{bottom:37.204361px;}
.y3e{bottom:38.738379px;}
.y3f{bottom:39.277565px;}
.y80{bottom:42.289786px;}
.y7f{bottom:43.533220px;}
.y74{bottom:59.076000px;}
.y30{bottom:61.467000px;}
.y48{bottom:62.302440px;}
.y89{bottom:70.524805px;}
.y3b{bottom:75.404164px;}
.y46{bottom:78.715800px;}
.y42{bottom:81.502200px;}
.y45{bottom:82.308863px;}
.y8a{bottom:83.332372px;}
.y55{bottom:94.456165px;}
.y43{bottom:100.406531px;}
.y73{bottom:103.908000px;}
.y2f{bottom:106.299000px;}
.yb2{bottom:106.497000px;}
.yb1{bottom:120.693000px;}
.y56{bottom:121.439520px;}
.y72{bottom:124.231500px;}
.y2e{bottom:126.622500px;}
.y87{bottom:139.597150px;}
.y3c{bottom:144.592914px;}
.yb0{bottom:146.296500px;}
.y2d{bottom:146.947500px;}
.y71{bottom:149.704500px;}
.y88{bottom:152.352845px;}
.y49{bottom:156.830280px;}
.y53{bottom:158.546040px;}
.yaf{bottom:160.492500px;}
.y2c{bottom:167.271000px;}
.yae{bottom:186.096000px;}
.y83{bottom:189.520665px;}
.y70{bottom:192.513000px;}
.y2b{bottom:198.153000px;}
.yad{bottom:200.293500px;}
.y82{bottom:200.988615px;}
.y7e{bottom:202.812019px;}
.y7d{bottom:204.055850px;}
.y6f{bottom:212.838000px;}
.y81{bottom:212.897640px;}
.yac{bottom:225.897000px;}
.y6e{bottom:233.161500px;}
.y2a{bottom:239.838000px;}
.yab{bottom:240.093000px;}
.y6d{bottom:253.485000px;}
.yaa{bottom:254.290500px;}
.y29{bottom:260.163000px;}
.y6c{bottom:273.808500px;}
.y28{bottom:280.486500px;}
.ya9{bottom:280.860000px;}
.y6b{bottom:294.132000px;}
.y27{bottom:300.810000px;}
.ya8{bottom:308.845500px;}
.y6a{bottom:314.455500px;}
.y26{bottom:321.133500px;}
.ya7{bottom:326.778000px;}
.y69{bottom:334.780500px;}
.y25{bottom:341.457000px;}
.ya6{bottom:344.710500px;}
.y68{bottom:355.104000px;}
.y24{bottom:361.780500px;}
.y67{bottom:375.915000px;}
.y23{bottom:382.105500px;}
.ya5{bottom:382.968000px;}
.y66{bottom:396.240000px;}
.y22{bottom:402.429000px;}
.ya4{bottom:403.291500px;}
.y65{bottom:416.563500px;}
.y21{bottom:422.752500px;}
.ya3{bottom:423.615000px;}
.y64{bottom:436.887000px;}
.y20{bottom:443.076000px;}
.ya2{bottom:443.938500px;}
.y63{bottom:457.698000px;}
.y1f{bottom:463.399500px;}
.ya1{bottom:464.263500px;}
.y62{bottom:478.023000px;}
.y1e{bottom:483.724500px;}
.ya0{bottom:487.917000px;}
.y61{bottom:498.346500px;}
.y1d{bottom:504.048000px;}
.y60{bottom:518.670000px;}
.y9f{bottom:521.298000px;}
.y1c{bottom:524.371500px;}
.y5f{bottom:538.993500px;}
.y9e{bottom:541.621500px;}
.y1b{bottom:544.695000px;}
.y5e{bottom:559.317000px;}
.y9d{bottom:561.946500px;}
.y1a{bottom:565.018500px;}
.y5d{bottom:580.129500px;}
.y9c{bottom:582.270000px;}
.y19{bottom:585.343500px;}
.y5c{bottom:600.453000px;}
.y9b{bottom:602.593500px;}
.y18{bottom:605.667000px;}
.y5b{bottom:620.776500px;}
.y9a{bottom:622.917000px;}
.y17{bottom:625.990500px;}
.y5a{bottom:641.101500px;}
.y99{bottom:643.240500px;}
.y16{bottom:646.314000px;}
.y59{bottom:661.425000px;}
.y98{bottom:663.565500px;}
.y15{bottom:666.637500px;}
.y8b{bottom:669.736500px;}
.y97{bottom:683.889000px;}
.y14{bottom:686.962500px;}
.y7c{bottom:690.403500px;}
.y58{bottom:691.150500px;}
.y96{bottom:704.212500px;}
.y13{bottom:707.286000px;}
.y95{bottom:724.536000px;}
.y12{bottom:727.609500px;}
.y57{bottom:733.674000px;}
.y94{bottom:744.859500px;}
.y11{bottom:747.933000px;}
.y47{bottom:763.972500px;}
.y93{bottom:765.184500px;}
.y10{bottom:768.256500px;}
.y3a{bottom:785.491500px;}
.y92{bottom:785.508000px;}
.yf{bottom:788.581500px;}
.y91{bottom:805.831500px;}
.ye{bottom:819.463500px;}
.y90{bottom:826.155000px;}
.y8f{bottom:846.478500px;}
.y8e{bottom:866.802000px;}
.yd{bottom:871.779000px;}
.y8d{bottom:887.127000px;}
.yc{bottom:889.711500px;}
.y8c{bottom:907.450500px;}
.yb{bottom:907.644000px;}
.ya{bottom:925.576500px;}
.y7b{bottom:936.207000px;}
.y9{bottom:943.509000px;}
.y8{bottom:961.443000px;}
.y39{bottom:974.628000px;}
.y7a{bottom:975.115500px;}
.y7{bottom:987.666000px;}
.y38{bottom:994.951500px;}
.y79{bottom:995.439000px;}
.y37{bottom:1015.275000px;}
.y78{bottom:1015.764000px;}
.y6{bottom:1021.360500px;}
.y36{bottom:1035.598500px;}
.y77{bottom:1036.087500px;}
.y5{bottom:1039.293000px;}
.y35{bottom:1055.923500px;}
.y76{bottom:1056.411000px;}
.y4{bottom:1057.225500px;}
.y34{bottom:1076.247000px;}
.y75{bottom:1076.734500px;}
.y3{bottom:1096.419000px;}
.y33{bottom:1097.058000px;}
.y32{bottom:1117.383000px;}
.y31{bottom:1137.706500px;}
.y2{bottom:1138.002000px;}
.y1{bottom:1197.601500px;}
.hc{height:11.702880px;}
.h1a{height:15.066664px;}
.h17{height:18.573429px;}
.ha{height:20.772612px;}
.hb{height:23.405760px;}
.h13{height:23.657650px;}
.hd{height:23.740128px;}
.h1b{height:25.434618px;}
.h10{height:28.038261px;}
.h18{height:28.740686px;}
.h1d{height:30.063678px;}
.h1f{height:30.064713px;}
.h1c{height:30.529447px;}
.h1e{height:30.529453px;}
.h20{height:30.529590px;}
.h16{height:31.840130px;}
.h24{height:32.900573px;}
.h23{height:33.134573px;}
.he{height:35.108640px;}
.h11{height:36.608054px;}
.h12{height:36.609733px;}
.h14{height:39.984718px;}
.h5{height:41.125613px;}
.h7{height:41.364715px;}
.h4{height:41.425613px;}
.h6{height:44.831700px;}
.h2{height:45.032765px;}
.h21{height:45.362765px;}
.h22{height:49.637990px;}
.h8{height:59.565422px;}
.h3{height:74.456986px;}
.hf{height:167.619344px;}
.h15{height:173.725980px;}
.h9{height:175.092848px;}
.h19{height:230.567104px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:176.871075px;}
.w3{width:203.770872px;}
.w4{width:204.085860px;}
.w2{width:204.095789px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.140150px;}
.x28{left:13.219856px;}
.x17{left:16.892550px;}
.x21{left:18.373209px;}
.x1c{left:27.156398px;}
.x24{left:31.073729px;}
.x2d{left:37.707943px;}
.x30{left:39.095256px;}
.x2e{left:43.882993px;}
.x22{left:50.119524px;}
.x14{left:62.836803px;}
.x1b{left:69.316835px;}
.x2c{left:74.559318px;}
.x2b{left:79.852218px;}
.x1a{left:82.550733px;}
.x1{left:106.299000px;}
.x2f{left:113.476688px;}
.xf{left:121.903500px;}
.x39{left:128.421000px;}
.xd{left:131.704500px;}
.x12{left:137.128496px;}
.x13{left:144.410056px;}
.x23{left:145.471136px;}
.xc{left:147.208500px;}
.x18{left:148.627500px;}
.x29{left:151.276375px;}
.x11{left:154.993152px;}
.x2a{left:156.918606px;}
.x10{left:164.048952px;}
.xb{left:169.624500px;}
.x2{left:173.338500px;}
.x1d{left:175.132159px;}
.x1e{left:186.239180px;}
.x15{left:200.105664px;}
.x34{left:215.365500px;}
.x26{left:233.233500px;}
.x33{left:266.901000px;}
.x3{left:267.996000px;}
.x4{left:271.105500px;}
.x35{left:309.049500px;}
.x6{left:336.015000px;}
.x9{left:340.236000px;}
.x19{left:342.363000px;}
.x36{left:343.575000px;}
.x1f{left:360.748500px;}
.x32{left:378.180000px;}
.x37{left:410.707500px;}
.xa{left:418.654500px;}
.x38{left:429.966000px;}
.x7{left:431.715000px;}
.x8{left:483.928500px;}
.x20{left:562.822500px;}
.x25{left:580.678500px;}
.x27{left:602.926500px;}
.x5{left:606.864000px;}
.xe{left:618.004500px;}
.x31{left:638.365500px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001438pt;}
.ws66{word-spacing:-19.128267pt;}
.ws68{word-spacing:-10.626800pt;}
.ws4e{word-spacing:-7.791185pt;}
.ws2d{word-spacing:-7.628201pt;}
.ws29{word-spacing:-7.441767pt;}
.ws27{word-spacing:-6.300979pt;}
.ws2b{word-spacing:-6.279088pt;}
.ws26{word-spacing:-6.152371pt;}
.ws28{word-spacing:-5.513357pt;}
.ws2c{word-spacing:-4.929661pt;}
.ws4d{word-spacing:-3.937904pt;}
.ws25{word-spacing:-3.076186pt;}
.ws58{word-spacing:-2.850911pt;}
.ws46{word-spacing:-2.734548pt;}
.ws32{word-spacing:-2.560002pt;}
.ws4f{word-spacing:-2.036365pt;}
.ws38{word-spacing:-1.978183pt;}
.ws47{word-spacing:-1.920002pt;}
.ws3b{word-spacing:-1.687274pt;}
.ws23{word-spacing:-1.338183pt;}
.ws3{word-spacing:-1.328347pt;}
.ws5a{word-spacing:-1.221819pt;}
.wsf{word-spacing:-0.640001pt;}
.ws55{word-spacing:-0.581819pt;}
.ws19{word-spacing:-0.349091pt;}
.ws10{word-spacing:-0.290909pt;}
.ws30{word-spacing:-0.058182pt;}
.ws1{word-spacing:-0.053134pt;}
.ws6c{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.116364pt;}
.ws6f{word-spacing:0.127522pt;}
.ws14{word-spacing:0.232727pt;}
.ws37{word-spacing:0.290909pt;}
.ws1d{word-spacing:0.407273pt;}
.ws67{word-spacing:0.637608pt;}
.ws8{word-spacing:0.640001pt;}
.ws36{word-spacing:0.698182pt;}
.ws12{word-spacing:0.756364pt;}
.ws69{word-spacing:0.807637pt;}
.ws34{word-spacing:0.814546pt;}
.wsd{word-spacing:0.930910pt;}
.ws15{word-spacing:0.989092pt;}
.ws6{word-spacing:1.115811pt;}
.ws9{word-spacing:1.163637pt;}
.ws4{word-spacing:1.168945pt;}
.ws4c{word-spacing:1.280001pt;}
.ws1c{word-spacing:1.396365pt;}
.ws56{word-spacing:1.454547pt;}
.ws53{word-spacing:1.570910pt;}
.ws51{word-spacing:1.588292pt;}
.ws4a{word-spacing:1.687274pt;}
.ws24{word-spacing:1.803638pt;}
.ws18{word-spacing:1.920002pt;}
.ws21{word-spacing:1.978183pt;}
.ws1f{word-spacing:2.501820pt;}
.ws13{word-spacing:2.618184pt;}
.ws39{word-spacing:2.734548pt;}
.ws54{word-spacing:2.792730pt;}
.ws11{word-spacing:2.850911pt;}
.wsb{word-spacing:2.909093pt;}
.ws61{word-spacing:2.967275pt;}
.ws17{word-spacing:3.083639pt;}
.ws6d{word-spacing:3.103026pt;}
.ws45{word-spacing:3.432730pt;}
.ws4b{word-spacing:3.490912pt;}
.ws41{word-spacing:3.607276pt;}
.ws42{word-spacing:3.665458pt;}
.ws5{word-spacing:3.825638pt;}
.ws50{word-spacing:3.898185pt;}
.ws2f{word-spacing:4.014549pt;}
.ws2e{word-spacing:4.072731pt;}
.ws31{word-spacing:4.136278pt;}
.ws3c{word-spacing:4.421822pt;}
.ws6a{word-spacing:4.505763pt;}
.ws64{word-spacing:4.555823pt;}
.ws65{word-spacing:4.569513pt;}
.ws1e{word-spacing:4.654549pt;}
.ws44{word-spacing:4.712731pt;}
.ws2{word-spacing:4.728914pt;}
.ws16{word-spacing:4.829095pt;}
.ws71{word-spacing:4.930835pt;}
.ws1a{word-spacing:5.003641pt;}
.ws49{word-spacing:5.061822pt;}
.wsc{word-spacing:5.120004pt;}
.ws20{word-spacing:5.178186pt;}
.wsa{word-spacing:5.469095pt;}
.ws60{word-spacing:5.934550pt;}
.ws3f{word-spacing:6.281398pt;}
.ws3d{word-spacing:6.283642pt;}
.wse{word-spacing:6.341823pt;}
.ws22{word-spacing:6.516369pt;}
.ws5e{word-spacing:6.574551pt;}
.ws43{word-spacing:6.865460pt;}
.ws57{word-spacing:7.040006pt;}
.ws33{word-spacing:7.214551pt;}
.ws5f{word-spacing:7.389097pt;}
.ws5c{word-spacing:7.447279pt;}
.ws48{word-spacing:7.854552pt;}
.ws1b{word-spacing:7.912734pt;}
.ws6e{word-spacing:10.584293pt;}
.ws70{word-spacing:10.711814pt;}
.ws62{word-spacing:11.880909pt;}
.ws63{word-spacing:12.114522pt;}
.ws5b{word-spacing:13.252805pt;}
.ws59{word-spacing:13.256698pt;}
.ws6b{word-spacing:15.132563pt;}
.ws35{word-spacing:15.301831pt;}
.ws52{word-spacing:16.058195pt;}
.ws3a{word-spacing:17.213211pt;}
.ws3e{word-spacing:20.780862pt;}
.ws40{word-spacing:20.789126pt;}
.ws7{word-spacing:57.384800pt;}
.ws2a{word-spacing:396.275983pt;}
._2{margin-left:-7.077478pt;}
._19{margin-left:-5.661967pt;}
._3{margin-left:-4.654549pt;}
._e{margin-left:-3.484452pt;}
._8{margin-left:-1.912819pt;}
._1{margin-left:-0.956416pt;}
._15{width:1.168530pt;}
._5{width:2.734195pt;}
._4{width:4.428284pt;}
._1e{width:10.456766pt;}
._1d{width:13.730921pt;}
._10{width:14.851051pt;}
._1f{width:16.025210pt;}
._6{width:17.109118pt;}
._11{width:18.087378pt;}
._9{width:19.128192pt;}
._d{width:20.240107pt;}
._a{width:21.643654pt;}
._f{width:23.272747pt;}
._13{width:24.661929pt;}
._20{width:25.722897pt;}
._b{width:26.705477pt;}
._18{width:28.858206pt;}
._7{width:30.286317pt;}
._21{width:31.884648pt;}
._12{width:32.916572pt;}
._c{width:33.854664pt;}
._1b{width:37.466621pt;}
._1c{width:40.597301pt;}
._1a{width:42.472763pt;}
._14{width:76.513067pt;}
._16{width:199.370708pt;}
._17{width:221.002295pt;}
._0{width:1890.387030pt;}
.fs6{font-size:14.860800pt;}
.fs10{font-size:18.575021pt;}
.fsd{font-size:23.253119pt;}
.fs4{font-size:26.006400pt;}
.fsa{font-size:29.618341pt;}
.fs5{font-size:29.721600pt;}
.fs11{font-size:31.843027pt;}
.fs8{font-size:35.102675pt;}
.fse{font-size:35.982080pt;}
.fs12{font-size:37.638400pt;}
.fs13{font-size:37.638408pt;}
.fs14{font-size:37.638576pt;}
.fsc{font-size:39.862447pt;}
.fsf{font-size:42.507200pt;}
.fs7{font-size:44.582400pt;}
.fs9{font-size:45.831680pt;}
.fsb{font-size:50.774245pt;}
.fs2{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs15{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:1.857600pt;}
.y4a{bottom:2.864480pt;}
.y86{bottom:5.570875pt;}
.y54{bottom:8.245743pt;}
.y85{bottom:15.764609pt;}
.y4e{bottom:16.062524pt;}
.y4c{bottom:16.541417pt;}
.y52{bottom:19.490293pt;}
.y40{bottom:19.697681pt;}
.y4d{bottom:19.700366pt;}
.y4b{bottom:20.179307pt;}
.y4f{bottom:21.606677pt;}
.y50{bottom:24.462867pt;}
.y84{bottom:26.350409pt;}
.y51{bottom:28.844247pt;}
.y41{bottom:31.482295pt;}
.y3d{bottom:33.070543pt;}
.y3e{bottom:34.434115pt;}
.y3f{bottom:34.913391pt;}
.y80{bottom:37.590921pt;}
.y7f{bottom:38.696196pt;}
.y74{bottom:52.512000pt;}
.y30{bottom:54.637333pt;}
.y48{bottom:55.379947pt;}
.y89{bottom:62.688716pt;}
.y3b{bottom:67.025923pt;}
.y46{bottom:69.969600pt;}
.y42{bottom:72.446400pt;}
.y45{bottom:73.163434pt;}
.y8a{bottom:74.073219pt;}
.y55{bottom:83.961035pt;}
.y43{bottom:89.250250pt;}
.y73{bottom:92.362667pt;}
.y2f{bottom:94.488000pt;}
.yb2{bottom:94.664000pt;}
.yb1{bottom:107.282667pt;}
.y56{bottom:107.946240pt;}
.y72{bottom:110.428000pt;}
.y2e{bottom:112.553333pt;}
.y87{bottom:124.086356pt;}
.y3c{bottom:128.527034pt;}
.yb0{bottom:130.041333pt;}
.y2d{bottom:130.620000pt;}
.y71{bottom:133.070667pt;}
.y88{bottom:135.424751pt;}
.y49{bottom:139.404693pt;}
.y53{bottom:140.929813pt;}
.yaf{bottom:142.660000pt;}
.y2c{bottom:148.685333pt;}
.yae{bottom:165.418667pt;}
.y83{bottom:168.462813pt;}
.y70{bottom:171.122667pt;}
.y2b{bottom:176.136000pt;}
.yad{bottom:178.038667pt;}
.y82{bottom:178.656547pt;}
.y7e{bottom:180.277350pt;}
.y7d{bottom:181.382978pt;}
.y6f{bottom:189.189333pt;}
.y81{bottom:189.242347pt;}
.yac{bottom:200.797333pt;}
.y6e{bottom:207.254667pt;}
.y2a{bottom:213.189333pt;}
.yab{bottom:213.416000pt;}
.y6d{bottom:225.320000pt;}
.yaa{bottom:226.036000pt;}
.y29{bottom:231.256000pt;}
.y6c{bottom:243.385333pt;}
.y28{bottom:249.321333pt;}
.ya9{bottom:249.653333pt;}
.y6b{bottom:261.450667pt;}
.y27{bottom:267.386667pt;}
.ya8{bottom:274.529333pt;}
.y6a{bottom:279.516000pt;}
.y26{bottom:285.452000pt;}
.ya7{bottom:290.469333pt;}
.y69{bottom:297.582667pt;}
.y25{bottom:303.517333pt;}
.ya6{bottom:306.409333pt;}
.y68{bottom:315.648000pt;}
.y24{bottom:321.582667pt;}
.y67{bottom:334.146667pt;}
.y23{bottom:339.649333pt;}
.ya5{bottom:340.416000pt;}
.y66{bottom:352.213333pt;}
.y22{bottom:357.714667pt;}
.ya4{bottom:358.481333pt;}
.y65{bottom:370.278667pt;}
.y21{bottom:375.780000pt;}
.ya3{bottom:376.546667pt;}
.y64{bottom:388.344000pt;}
.y20{bottom:393.845333pt;}
.ya2{bottom:394.612000pt;}
.y63{bottom:406.842667pt;}
.y1f{bottom:411.910667pt;}
.ya1{bottom:412.678667pt;}
.y62{bottom:424.909333pt;}
.y1e{bottom:429.977333pt;}
.ya0{bottom:433.704000pt;}
.y61{bottom:442.974667pt;}
.y1d{bottom:448.042667pt;}
.y60{bottom:461.040000pt;}
.y9f{bottom:463.376000pt;}
.y1c{bottom:466.108000pt;}
.y5f{bottom:479.105333pt;}
.y9e{bottom:481.441333pt;}
.y1b{bottom:484.173333pt;}
.y5e{bottom:497.170667pt;}
.y9d{bottom:499.508000pt;}
.y1a{bottom:502.238667pt;}
.y5d{bottom:515.670667pt;}
.y9c{bottom:517.573333pt;}
.y19{bottom:520.305333pt;}
.y5c{bottom:533.736000pt;}
.y9b{bottom:535.638667pt;}
.y18{bottom:538.370667pt;}
.y5b{bottom:551.801333pt;}
.y9a{bottom:553.704000pt;}
.y17{bottom:556.436000pt;}
.y5a{bottom:569.868000pt;}
.y99{bottom:571.769333pt;}
.y16{bottom:574.501333pt;}
.y59{bottom:587.933333pt;}
.y98{bottom:589.836000pt;}
.y15{bottom:592.566667pt;}
.y8b{bottom:595.321333pt;}
.y97{bottom:607.901333pt;}
.y14{bottom:610.633333pt;}
.y7c{bottom:613.692000pt;}
.y58{bottom:614.356000pt;}
.y96{bottom:625.966667pt;}
.y13{bottom:628.698667pt;}
.y95{bottom:644.032000pt;}
.y12{bottom:646.764000pt;}
.y57{bottom:652.154667pt;}
.y94{bottom:662.097333pt;}
.y11{bottom:664.829333pt;}
.y47{bottom:679.086667pt;}
.y93{bottom:680.164000pt;}
.y10{bottom:682.894667pt;}
.y3a{bottom:698.214667pt;}
.y92{bottom:698.229333pt;}
.yf{bottom:700.961333pt;}
.y91{bottom:716.294667pt;}
.ye{bottom:728.412000pt;}
.y90{bottom:734.360000pt;}
.y8f{bottom:752.425333pt;}
.y8e{bottom:770.490667pt;}
.yd{bottom:774.914667pt;}
.y8d{bottom:788.557333pt;}
.yc{bottom:790.854667pt;}
.y8c{bottom:806.622667pt;}
.yb{bottom:806.794667pt;}
.ya{bottom:822.734667pt;}
.y7b{bottom:832.184000pt;}
.y9{bottom:838.674667pt;}
.y8{bottom:854.616000pt;}
.y39{bottom:866.336000pt;}
.y7a{bottom:866.769333pt;}
.y7{bottom:877.925333pt;}
.y38{bottom:884.401333pt;}
.y79{bottom:884.834667pt;}
.y37{bottom:902.466667pt;}
.y78{bottom:902.901333pt;}
.y6{bottom:907.876000pt;}
.y36{bottom:920.532000pt;}
.y77{bottom:920.966667pt;}
.y5{bottom:923.816000pt;}
.y35{bottom:938.598667pt;}
.y76{bottom:939.032000pt;}
.y4{bottom:939.756000pt;}
.y34{bottom:956.664000pt;}
.y75{bottom:957.097333pt;}
.y3{bottom:974.594667pt;}
.y33{bottom:975.162667pt;}
.y32{bottom:993.229333pt;}
.y31{bottom:1011.294667pt;}
.y2{bottom:1011.557333pt;}
.y1{bottom:1064.534667pt;}
.hc{height:10.402560pt;}
.h1a{height:13.392590pt;}
.h17{height:16.509715pt;}
.ha{height:18.464544pt;}
.hb{height:20.805120pt;}
.h13{height:21.029022pt;}
.hd{height:21.102336pt;}
.h1b{height:22.608549pt;}
.h10{height:24.922899pt;}
.h18{height:25.547277pt;}
.h1d{height:26.723269pt;}
.h1f{height:26.724189pt;}
.h1c{height:27.137286pt;}
.h1e{height:27.137292pt;}
.h20{height:27.137413pt;}
.h16{height:28.302338pt;}
.h24{height:29.244954pt;}
.h23{height:29.452954pt;}
.he{height:31.207680pt;}
.h11{height:32.540493pt;}
.h12{height:32.541985pt;}
.h14{height:35.541971pt;}
.h5{height:36.556100pt;}
.h7{height:36.768636pt;}
.h4{height:36.822767pt;}
.h6{height:39.850400pt;}
.h2{height:40.029124pt;}
.h21{height:40.322458pt;}
.h22{height:44.122658pt;}
.h8{height:52.947042pt;}
.h3{height:66.183987pt;}
.hf{height:148.994972pt;}
.h15{height:154.423093pt;}
.h9{height:155.638087pt;}
.h19{height:204.948537pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:157.218733pt;}
.w3{width:181.129664pt;}
.w4{width:181.409653pt;}
.w2{width:181.418479pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.346800pt;}
.x28{left:11.750983pt;}
.x17{left:15.015600pt;}
.x21{left:16.331741pt;}
.x1c{left:24.139021pt;}
.x24{left:27.621093pt;}
.x2d{left:33.518171pt;}
.x30{left:34.751339pt;}
.x2e{left:39.007105pt;}
.x22{left:44.550688pt;}
.x14{left:55.854936pt;}
.x1b{left:61.614965pt;}
.x2c{left:66.274949pt;}
.x2b{left:70.979749pt;}
.x1a{left:73.378429pt;}
.x1{left:94.488000pt;}
.x2f{left:100.868168pt;}
.xf{left:108.358667pt;}
.x39{left:114.152000pt;}
.xd{left:117.070667pt;}
.x12{left:121.891997pt;}
.x13{left:128.364494pt;}
.x23{left:129.307676pt;}
.xc{left:130.852000pt;}
.x18{left:132.113333pt;}
.x29{left:134.467889pt;}
.x11{left:137.771690pt;}
.x2a{left:139.483206pt;}
.x10{left:145.821290pt;}
.xb{left:150.777333pt;}
.x2{left:154.078667pt;}
.x1d{left:155.673030pt;}
.x1e{left:165.545938pt;}
.x15{left:177.871702pt;}
.x34{left:191.436000pt;}
.x26{left:207.318667pt;}
.x33{left:237.245333pt;}
.x3{left:238.218667pt;}
.x4{left:240.982667pt;}
.x35{left:274.710667pt;}
.x6{left:298.680000pt;}
.x9{left:302.432000pt;}
.x19{left:304.322667pt;}
.x36{left:305.400000pt;}
.x1f{left:320.665333pt;}
.x32{left:336.160000pt;}
.x37{left:365.073333pt;}
.xa{left:372.137333pt;}
.x38{left:382.192000pt;}
.x7{left:383.746667pt;}
.x8{left:430.158667pt;}
.x20{left:500.286667pt;}
.x25{left:516.158667pt;}
.x27{left:535.934667pt;}
.x5{left:539.434667pt;}
.xe{left:549.337333pt;}
.x31{left:567.436000pt;}
}




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