
    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_f5298b0464e4c0b8d96cde1c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d16763b09895b46b87316d9b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_d9b9892d7e58e990d924bf2a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_d6a7f4947797767e42e3e0d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4f6e2d6b07770232ce98ea48.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_2b930469adc38cc36f20e568.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3599a10d583c77ad5b54daf7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_304772de9e67e135c8e447eb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.873535;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_340f9d13c263983542587806.woff')format("woff");}.ff9{font-family:ff9;line-height:0.895996;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_5c3f0a57480c6b40d84d1d4a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.870605;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_684c1193434591a6ee97cf2c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.860840;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;}
.me{transform:matrix(0.000000,-0.248789,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248789,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248789,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249728,0.250000,0.000000,0,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);}
.m4{transform:matrix(0.000000,-0.250315,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250315,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250315,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250320,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250320,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250320,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250365,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250365,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250365,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.250955,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250955,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250955,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249049,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249637,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,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);}
.m5{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v4{vertical-align:-2.160002px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760005px;}
.v1{vertical-align:20.880000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000030px;}
.ls6{letter-spacing:0.008640px;}
.lsd{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.141695px;}
.ls11{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.269280px;}
.lsb{letter-spacing:0.320400px;}
.ls12{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.541301px;}
.ls2{letter-spacing:3.060015px;}
.ls8{letter-spacing:7.845310px;}
.lsa{letter-spacing:8.487140px;}
.ls9{letter-spacing:9.310285px;}
.ls0{letter-spacing:24.426703px;}
.ls5{letter-spacing:24.426740px;}
.ls10{letter-spacing:29.628024px;}
.lsf{letter-spacing:30.348024px;}
.lse{letter-spacing:57.105159px;}
.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;}
}
.ws1a{word-spacing:-64.549605px;}
.ws1{word-spacing:-14.940015px;}
.wsa{word-spacing:-14.940012px;}
.ws21{word-spacing:-13.860011px;}
.ws20{word-spacing:-13.500011px;}
.ws3{word-spacing:-10.316855px;}
.ws6{word-spacing:-9.835270px;}
.wsb{word-spacing:-9.720008px;}
.ws0{word-spacing:-9.720000px;}
.ws12{word-spacing:-8.811620px;}
.ws8{word-spacing:-8.387084px;}
.wsd{word-spacing:-8.249097px;}
.ws19{word-spacing:-7.444446px;}
.ws15{word-spacing:-7.184419px;}
.ws17{word-spacing:-7.157082px;}
.ws1e{word-spacing:-6.942292px;}
.ws18{word-spacing:-6.857840px;}
.wsf{word-spacing:-6.684868px;}
.ws1b{word-spacing:-6.640446px;}
.wsc{word-spacing:-0.773882px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:33.800785px;}
.ws10{word-spacing:38.307935px;}
.ws13{word-spacing:39.027074px;}
.ws11{word-spacing:39.746257px;}
.ws1d{word-spacing:71.477347px;}
.ws1c{word-spacing:72.919147px;}
.ws7{word-spacing:90.164720px;}
.wse{word-spacing:124.599459px;}
.ws4{word-spacing:135.904526px;}
.ws14{word-spacing:700.440751px;}
.ws1f{word-spacing:840.806782px;}
.ws9{word-spacing:858.420959px;}
.ws5{word-spacing:1328.197514px;}
._1c{margin-left:-57.105159px;}
._b{margin-left:-9.419403px;}
._d{margin-left:-5.183749px;}
._5{margin-left:-4.119605px;}
._4{margin-left:-2.822400px;}
._1{margin-left:-1.342201px;}
._0{width:1.126801px;}
._3{width:2.993402px;}
._a{width:4.377601px;}
._8{width:5.839803px;}
._9{width:6.899402px;}
._11{width:8.359530px;}
._6{width:10.366804px;}
._7{width:11.639406px;}
._10{width:12.653130px;}
._12{width:13.710625px;}
._2{width:16.840206px;}
._1a{width:24.862915px;}
._19{width:31.589510px;}
._1b{width:39.540055px;}
._17{width:47.496786px;}
._15{width:57.559082px;}
._21{width:70.504748px;}
._20{width:72.667832px;}
._14{width:76.613921px;}
._16{width:78.052243px;}
._1f{width:93.985520px;}
._f{width:143.867156px;}
._c{width:155.478347px;}
._13{width:321.217183px;}
._1e{width:328.326956px;}
._1d{width:422.970363px;}
._18{width:524.580462px;}
._22{width:621.282392px;}
._e{width:1287.698139px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:26.218101px;}
.fs19{font-size:29.382504px;}
.fsf{font-size:29.579064px;}
.fs3{font-size:30.239940px;}
.fs15{font-size:30.344424px;}
.fs1b{font-size:30.673465px;}
.fs1a{font-size:30.718105px;}
.fs14{font-size:31.668505px;}
.fs13{font-size:31.789465px;}
.fs17{font-size:32.940026px;}
.fsb{font-size:35.378668px;}
.fs16{font-size:35.803469px;}
.fs18{font-size:35.977709px;}
.fse{font-size:36.500429px;}
.fsa{font-size:37.063470px;}
.fs9{font-size:37.110990px;}
.fs2{font-size:38.880000px;}
.fsd{font-size:38.880031px;}
.fs10{font-size:38.989471px;}
.fs12{font-size:39.031951px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:48.239940px;}
.fsc{font-size:48.240039px;}
.fs5{font-size:54.000000px;}
.fs1c{font-size:54.000043px;}
.fs8{font-size:59.760048px;}
.fs1{font-size:59.760060px;}
.fs0{font-size:95.760060px;}
.y0{bottom:0.000000px;}
.yc3{bottom:0.359498px;}
.yd6{bottom:0.540747px;}
.yd8{bottom:0.540756px;}
.yda{bottom:0.540758px;}
.yec{bottom:2.159971px;}
.ybb{bottom:2.699569px;}
.yc0{bottom:16.199562px;}
.ybe{bottom:23.939560px;}
.y38{bottom:32.862000px;}
.y36{bottom:79.680960px;}
.y35{bottom:109.561005px;}
.ye5{bottom:118.201595px;}
.y34{bottom:127.741005px;}
.y84{bottom:130.441604px;}
.ye4{bottom:135.301608px;}
.y33{bottom:137.822400px;}
.y83{bottom:147.721618px;}
.ye3{bottom:152.581622px;}
.y82{bottom:165.001632px;}
.ye2{bottom:169.861636px;}
.y12e{bottom:177.061642px;}
.y81{bottom:182.281646px;}
.y37{bottom:188.274015px;}
.y32{bottom:192.002400px;}
.y12d{bottom:192.541654px;}
.ye1{bottom:195.241656px;}
.y80{bottom:199.561660px;}
.ye0{bottom:207.481666px;}
.y31{bottom:209.102400px;}
.y12c{bottom:211.441669px;}
.y7f{bottom:216.841673px;}
.ydd{bottom:217.381674px;}
.y12b{bottom:224.761680px;}
.y30{bottom:226.382400px;}
.yd4{bottom:227.821682px;}
.y7e{bottom:233.941687px;}
.ycf{bottom:238.081690px;}
.y12a{bottom:242.221694px;}
.y2f{bottom:243.662400px;}
.y7d{bottom:251.221701px;}
.ydf{bottom:254.281703px;}
.y129{bottom:255.541704px;}
.yd0{bottom:257.701706px;}
.yd5{bottom:258.780960px;}
.yde{bottom:265.441712px;}
.y7c{bottom:268.501715px;}
.y128{bottom:269.581716px;}
.yd7{bottom:269.760960px;}
.y2e{bottom:269.942400px;}
.yd9{bottom:272.100960px;}
.ydc{bottom:272.101718px;}
.yd1{bottom:277.321722px;}
.ydb{bottom:281.461725px;}
.y127{bottom:285.061728px;}
.y7b{bottom:285.781729px;}
.y2d{bottom:287.222400px;}
.yd2{bottom:296.941738px;}
.y126{bottom:300.721741px;}
.y7a{bottom:303.061742px;}
.y2c{bottom:304.502400px;}
.y125{bottom:316.201753px;}
.yd3{bottom:316.561753px;}
.y2b{bottom:321.602400px;}
.y79{bottom:329.341763px;}
.y124{bottom:331.681765px;}
.y2a{bottom:338.882400px;}
.yce{bottom:344.281775px;}
.y78{bottom:346.441777px;}
.y123{bottom:347.161778px;}
.y29{bottom:356.162400px;}
.ycd{bottom:361.561789px;}
.y77{bottom:363.721791px;}
.y122{bottom:366.061793px;}
.y28{bottom:373.442400px;}
.ycc{bottom:378.841803px;}
.y121{bottom:379.381804px;}
.y76{bottom:381.001805px;}
.y27{bottom:390.722400px;}
.ycb{bottom:396.121817px;}
.y120{bottom:398.101818px;}
.y75{bottom:398.281819px;}
.y26{bottom:407.822400px;}
.y74{bottom:415.561832px;}
.yca{bottom:421.501837px;}
.y11f{bottom:424.741840px;}
.y25{bottom:425.102400px;}
.y73{bottom:432.661846px;}
.yc9{bottom:433.561847px;}
.yc1{bottom:440.401852px;}
.y11e{bottom:442.021854px;}
.y24{bottom:442.382400px;}
.y72{bottom:449.941860px;}
.yae{bottom:452.281862px;}
.yb3{bottom:452.461862px;}
.y11d{bottom:459.301867px;}
.y23{bottom:459.662400px;}
.yb4{bottom:465.061872px;}
.ya7{bottom:465.781873px;}
.yaf{bottom:465.961873px;}
.y71{bottom:467.221874px;}
.y11c{bottom:476.401881px;}
.y22{bottom:481.082400px;}
.y70{bottom:484.501888px;}
.yb5{bottom:485.401888px;}
.ya8{bottom:486.121889px;}
.yb0{bottom:486.301889px;}
.yc7{bottom:487.741890px;}
.y11b{bottom:493.681895px;}
.yc8{bottom:496.561897px;}
.yc2{bottom:497.102400px;}
.yb6{bottom:505.561904px;}
.y6f{bottom:505.921905px;}
.ya9{bottom:506.281905px;}
.yb1{bottom:506.461905px;}
.y21{bottom:507.722400px;}
.y11a{bottom:510.961909px;}
.yb7{bottom:525.901921px;}
.yaa{bottom:526.621921px;}
.yb2{bottom:526.801921px;}
.y119{bottom:528.241923px;}
.y6e{bottom:532.561926px;}
.y20{bottom:533.822400px;}
.yc6{bottom:537.961930px;}
.y118{bottom:545.521936px;}
.yb8{bottom:546.241937px;}
.yab{bottom:546.961938px;}
.yc5{bottom:548.401939px;}
.y6d{bottom:549.661940px;}
.ybd{bottom:550.562400px;}
.y1f{bottom:551.102400px;}
.yc4{bottom:559.381948px;}
.ybf{bottom:561.362400px;}
.yb9{bottom:566.581953px;}
.y6c{bottom:566.941954px;}
.yac{bottom:567.301954px;}
.y1e{bottom:568.382400px;}
.ybc{bottom:574.501960px;}
.yba{bottom:584.042400px;}
.y6b{bottom:584.221967px;}
.y1d{bottom:585.662400px;}
.yad{bottom:587.461970px;}
.y117{bottom:592.681974px;}
.y6a{bottom:601.501981px;}
.y1c{bottom:602.942400px;}
.y116{bottom:604.741984px;}
.ya6{bottom:608.521987px;}
.y10e{bottom:610.681989px;}
.y10b{bottom:618.241995px;}
.y69{bottom:618.781995px;}
.y1b{bottom:620.222400px;}
.ya5{bottom:625.802001px;}
.y102{bottom:627.782002px;}
.y68{bottom:636.062009px;}
.y1a{bottom:637.322400px;}
.y114{bottom:640.742013px;}
.ya4{bottom:642.902014px;}
.y103{bottom:643.442015px;}
.y67{bottom:653.162023px;}
.y19{bottom:654.602400px;}
.y104{bottom:659.282027px;}
.ya3{bottom:660.182028px;}
.y111{bottom:663.782031px;}
.y113{bottom:668.282035px;}
.y110{bottom:669.362001px;}
.y18{bottom:671.882400px;}
.y105{bottom:674.942040px;}
.y10f{bottom:676.742041px;}
.y66{bottom:679.442044px;}
.ya2{bottom:686.822049px;}
.y17{bottom:689.162400px;}
.y106{bottom:690.782053px;}
.y115{bottom:691.862053px;}
.y65{bottom:696.722057px;}
.ya1{bottom:704.102063px;}
.y16{bottom:706.442400px;}
.y107{bottom:706.622065px;}
.y64{bottom:714.002071px;}
.y10c{bottom:720.302076px;}
.ya0{bottom:721.382077px;}
.y108{bottom:722.282078px;}
.y15{bottom:723.722400px;}
.y112{bottom:728.762083px;}
.y63{bottom:731.282085px;}
.y109{bottom:738.122090px;}
.y9f{bottom:738.482091px;}
.y14{bottom:740.822400px;}
.y10d{bottom:741.002093px;}
.y62{bottom:748.382099px;}
.y10a{bottom:753.782103px;}
.y9e{bottom:755.762105px;}
.y13{bottom:758.102400px;}
.y61{bottom:765.662113px;}
.y9d{bottom:773.042118px;}
.y12{bottom:775.382400px;}
.y101{bottom:776.822121px;}
.y60{bottom:782.942126px;}
.y9c{bottom:790.322132px;}
.y11{bottom:792.662400px;}
.y100{bottom:794.102135px;}
.y5f{bottom:800.222140px;}
.yff{bottom:811.382149px;}
.y9b{bottom:811.742149px;}
.y10{bottom:814.082400px;}
.y5e{bottom:817.502154px;}
.yfe{bottom:828.662163px;}
.y9a{bottom:837.482170px;}
.y5d{bottom:842.882174px;}
.yfd{bottom:845.762177px;}
.yf{bottom:849.542400px;}
.y5c{bottom:857.822186px;}
.y99{bottom:858.542187px;}
.yfc{bottom:863.042190px;}
.ye{bottom:866.822400px;}
.y5b{bottom:879.062203px;}
.yfb{bottom:880.322204px;}
.y93{bottom:881.402205px;}
.yd{bottom:884.102400px;}
.y3b{bottom:884.642208px;}
.y8f{bottom:886.802209px;}
.y92{bottom:892.382214px;}
.y3e{bottom:894.722216px;}
.yfa{bottom:897.602218px;}
.y8e{bottom:897.782218px;}
.y5a{bottom:900.662221px;}
.yc{bottom:901.382400px;}
.y91{bottom:903.182223px;}
.y4c{bottom:910.202228px;}
.y59{bottom:911.462229px;}
.yf9{bottom:914.882232px;}
.y56{bottom:917.582234px;}
.y90{bottom:918.482235px;}
.yb{bottom:918.662400px;}
.y40{bottom:921.722237px;}
.y3c{bottom:923.342239px;}
.y55{bottom:927.122242px;}
.y4f{bottom:933.602247px;}
.ya{bottom:935.942400px;}
.yf8{bottom:940.262252px;}
.y54{bottom:941.702253px;}
.y58{bottom:941.882254px;}
.y4e{bottom:944.582256px;}
.y53{bottom:949.262259px;}
.y8d{bottom:949.442260px;}
.y3d{bottom:950.522260px;}
.yf7{bottom:952.502262px;}
.y9{bottom:953.042400px;}
.y4d{bottom:956.102265px;}
.y52{bottom:960.242268px;}
.ye7{bottom:962.942270px;}
.y94{bottom:966.182273px;}
.y8{bottom:970.322400px;}
.y57{bottom:970.682277px;}
.yed{bottom:972.122278px;}
.y47{bottom:976.622281px;}
.y51{bottom:978.422283px;}
.y97{bottom:978.602283px;}
.y3f{bottom:979.862284px;}
.ye8{bottom:982.742286px;}
.yee{bottom:982.922286px;}
.y50{bottom:984.002287px;}
.y8c{bottom:984.542288px;}
.y7{bottom:987.242400px;}
.y96{bottom:989.582292px;}
.yf3{bottom:998.042298px;}
.y95{bottom:1000.562300px;}
.yf5{bottom:1006.502305px;}
.y6{bottom:1013.882400px;}
.y8a{bottom:1014.422312px;}
.ye9{bottom:1018.022314px;}
.yef{bottom:1018.202315px;}
.yf4{bottom:1021.442317px;}
.y45{bottom:1021.982318px;}
.y8b{bottom:1025.762321px;}
.y5{bottom:1036.382400px;}
.y41{bottom:1041.602333px;}
.y4{bottom:1048.082400px;}
.y42{bottom:1052.402342px;}
.yea{bottom:1053.482343px;}
.yf0{bottom:1053.662343px;}
.y44{bottom:1057.082346px;}
.y43{bottom:1057.262346px;}
.y98{bottom:1059.242347px;}
.y4b{bottom:1059.962348px;}
.y49{bottom:1060.682349px;}
.y89{bottom:1066.442353px;}
.yf6{bottom:1076.162361px;}
.y88{bottom:1077.242362px;}
.y3{bottom:1079.402400px;}
.y4a{bottom:1081.202365px;}
.y48{bottom:1082.102366px;}
.yf2{bottom:1086.422400px;}
.yeb{bottom:1086.602400px;}
.yf1{bottom:1086.782400px;}
.y87{bottom:1088.222371px;}
.y46{bottom:1095.602376px;}
.ye6{bottom:1099.742380px;}
.y2{bottom:1106.762400px;}
.y3a{bottom:1125.842401px;}
.y86{bottom:1127.822402px;}
.y1{bottom:1134.302400px;}
.y85{bottom:1138.802411px;}
.y39{bottom:1143.122414px;}
.h26{height:3.240000px;}
.h2d{height:9.180000px;}
.h2c{height:9.360000px;}
.h2e{height:9.540000px;}
.h1a{height:11.520000px;}
.h24{height:11.880000px;}
.h1f{height:17.679296px;}
.h35{height:20.430022px;}
.h31{height:21.089981px;}
.h18{height:21.231066px;}
.h34{height:21.327643px;}
.h33{height:21.358682px;}
.h7{height:21.705426px;}
.h29{height:21.780422px;}
.h25{height:22.019508px;}
.h32{height:22.048640px;}
.h28{height:22.103613px;}
.h23{height:22.817634px;}
.h2b{height:23.643476px;}
.h2a{height:24.894599px;}
.h2f{height:25.015751px;}
.h17{height:25.379205px;}
.h30{height:25.698779px;}
.hf{height:25.756638px;}
.h10{height:25.803735px;}
.h16{height:26.199039px;}
.h1d{height:26.291240px;}
.h11{height:26.637283px;}
.he{height:26.983219px;}
.h3{height:26.995781px;}
.hd{height:27.017815px;}
.h1b{height:27.109867px;}
.h21{height:27.139404px;}
.h27{height:27.360000px;}
.h19{height:27.985607px;}
.h12{height:31.563740px;}
.h1e{height:34.200000px;}
.ha{height:34.453125px;}
.h8{height:34.625348px;}
.h13{height:34.625418px;}
.h22{height:35.120067px;}
.h9{height:38.759766px;}
.h38{height:38.759797px;}
.h37{height:39.313508px;}
.h36{height:40.501439px;}
.h4{height:41.493557px;}
.hc{height:42.894175px;}
.h5{height:42.894184px;}
.h14{height:43.506949px;}
.h6{height:43.506958px;}
.hb{height:43.804688px;}
.h1c{height:45.000000px;}
.h2{height:47.230313px;}
.h15{height:48.787070px;}
.h20{height:55.620000px;}
.h1{height:64.899884px;}
.h0{height:1263.000000px;}
.w4{width:2.340000px;}
.w5{width:4.140000px;}
.w6{width:4.500000px;}
.w3{width:5.580000px;}
.w8{width:8.820000px;}
.w9{width:10.440000px;}
.w7{width:11.880000px;}
.wa{width:16.920000px;}
.w2{width:17.460000px;}
.w1{width:892.500000px;}
.w0{width:892.829955px;}
.x0{left:0.000000px;}
.x6a{left:5.940135px;}
.x59{left:8.460123px;}
.xb{left:26.400015px;}
.xc{left:41.718750px;}
.x9{left:100.260075px;}
.x7{left:106.380135px;}
.x32{left:110.700089px;}
.xa{left:117.720090px;}
.x8{left:120.420135px;}
.x5{left:126.900135px;}
.x87{left:133.374257px;}
.x7b{left:136.080109px;}
.x58{left:145.080000px;}
.x2{left:146.520135px;}
.x4e{left:156.420125px;}
.x1{left:159.840135px;}
.x69{left:163.080000px;}
.x62{left:171.000137px;}
.x67{left:174.240139px;}
.x4f{left:180.540144px;}
.x68{left:193.860216px;}
.x1f{left:196.740157px;}
.x78{left:200.520160px;}
.x1e{left:202.320120px;}
.x21{left:203.580163px;}
.x14{left:206.640165px;}
.x13{left:219.060175px;}
.x10{left:222.120179px;}
.x6d{left:225.180180px;}
.x77{left:226.800181px;}
.x79{left:235.440188px;}
.x20{left:238.680191px;}
.x50{left:243.000194px;}
.x11{left:250.740243px;}
.x51{left:256.140000px;}
.x17{left:258.120206px;}
.x81{left:259.560208px;}
.x52{left:261.720000px;}
.x53{left:263.880211px;}
.x60{left:266.399940px;}
.x1d{left:267.660214px;}
.x7c{left:270.540216px;}
.x4{left:272.880135px;}
.xd{left:276.840221px;}
.x7d{left:279.180282px;}
.x39{left:283.500488px;}
.x3e{left:284.760221px;}
.x35{left:286.560229px;}
.x36{left:287.640197px;}
.x37{left:289.980232px;}
.x38{left:291.960182px;}
.x3d{left:296.280237px;}
.x3{left:298.440135px;}
.x85{left:299.520240px;}
.x3f{left:305.460305px;}
.x33{left:308.160247px;}
.x7f{left:310.680249px;}
.x3a{left:312.840250px;}
.x15{left:315.540252px;}
.x6c{left:321.840257px;}
.x19{left:324.000259px;}
.xf{left:332.280271px;}
.x3c{left:333.720091px;}
.xe{left:338.580280px;}
.x80{left:340.380255px;}
.x12{left:349.380252px;}
.x65{left:351.900282px;}
.x6{left:353.520135px;}
.x72{left:356.580285px;}
.x73{left:360.900270px;}
.x16{left:362.340290px;}
.x74{left:365.040252px;}
.x4d{left:366.660293px;}
.x75{left:369.180000px;}
.x66{left:371.520297px;}
.x3b{left:381.420195px;}
.x76{left:385.200308px;}
.x1a{left:406.620325px;}
.x34{left:409.500329px;}
.x1c{left:415.080332px;}
.x82{left:418.140335px;}
.x2e{left:422.820348px;}
.x24{left:424.260339px;}
.x2b{left:426.240341px;}
.x40{left:428.940343px;}
.x41{left:431.640351px;}
.x2d{left:435.060348px;}
.x54{left:439.200000px;}
.x55{left:444.780000px;}
.x57{left:447.480356px;}
.x56{left:448.920000px;}
.x2c{left:451.080300px;}
.x1b{left:453.420363px;}
.x7e{left:468.180449px;}
.x28{left:469.980376px;}
.x23{left:476.640381px;}
.x46{left:494.640396px;}
.x18{left:511.560409px;}
.x6e{left:514.440412px;}
.x6f{left:518.580394px;}
.x70{left:522.900379px;}
.x71{left:527.040000px;}
.x63{left:529.560424px;}
.x26{left:533.880427px;}
.x4b{left:536.400429px;}
.x43{left:538.020416px;}
.x4c{left:540.000443px;}
.x25{left:543.060434px;}
.x42{left:547.200438px;}
.x64{left:549.000439px;}
.x44{left:550.620444px;}
.x45{left:552.420443px;}
.x22{left:554.579544px;}
.x47{left:586.980506px;}
.x49{left:589.140861px;}
.x48{left:591.480870px;}
.x83{left:600.300480px;}
.x30{left:601.740478px;}
.x84{left:604.080483px;}
.x2f{left:606.240485px;}
.x5a{left:608.760487px;}
.x5b{left:621.360000px;}
.x6b{left:625.139775px;}
.x5c{left:626.760000px;}
.x5d{left:629.100503px;}
.x4a{left:640.440512px;}
.x86{left:643.140515px;}
.x27{left:647.100518px;}
.x2a{left:657.720532px;}
.x29{left:670.320536px;}
.x5e{left:681.300545px;}
.x7a{left:703.260563px;}
.x31{left:712.080570px;}
.x5f{left:729.540584px;}
.x61{left:747.900598px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-1.920002pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120004pt;}
.v1{vertical-align:18.560000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000027pt;}
.ls6{letter-spacing:0.007680pt;}
.lsd{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.125951pt;}
.ls11{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.239360pt;}
.lsb{letter-spacing:0.284800pt;}
.ls12{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.481157pt;}
.ls2{letter-spacing:2.720013pt;}
.ls8{letter-spacing:6.973609pt;}
.lsa{letter-spacing:7.544124pt;}
.ls9{letter-spacing:8.275809pt;}
.ls0{letter-spacing:21.712625pt;}
.ls5{letter-spacing:21.712657pt;}
.ls10{letter-spacing:26.336021pt;}
.lsf{letter-spacing:26.976022pt;}
.lse{letter-spacing:50.760141pt;}
.ws1a{word-spacing:-57.377427pt;}
.ws1{word-spacing:-13.280013pt;}
.wsa{word-spacing:-13.280011pt;}
.ws21{word-spacing:-12.320010pt;}
.ws20{word-spacing:-12.000010pt;}
.ws3{word-spacing:-9.170538pt;}
.ws6{word-spacing:-8.742462pt;}
.wsb{word-spacing:-8.640007pt;}
.ws0{word-spacing:-8.640000pt;}
.ws12{word-spacing:-7.832552pt;}
.ws8{word-spacing:-7.455185pt;}
.wsd{word-spacing:-7.332531pt;}
.ws19{word-spacing:-6.617285pt;}
.ws15{word-spacing:-6.386150pt;}
.ws17{word-spacing:-6.361851pt;}
.ws1e{word-spacing:-6.170926pt;}
.ws18{word-spacing:-6.095858pt;}
.wsf{word-spacing:-5.942105pt;}
.ws1b{word-spacing:-5.902618pt;}
.wsc{word-spacing:-0.687895pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:30.045142pt;}
.ws10{word-spacing:34.051498pt;}
.ws13{word-spacing:34.690732pt;}
.ws11{word-spacing:35.330006pt;}
.ws1d{word-spacing:63.535420pt;}
.ws1c{word-spacing:64.817019pt;}
.ws7{word-spacing:80.146418pt;}
.wse{word-spacing:110.755074pt;}
.ws4{word-spacing:120.804024pt;}
.ws14{word-spacing:622.614000pt;}
.ws1f{word-spacing:747.383806pt;}
.ws9{word-spacing:763.040852pt;}
.ws5{word-spacing:1180.620012pt;}
._1c{margin-left:-50.760141pt;}
._b{margin-left:-8.372803pt;}
._d{margin-left:-4.607777pt;}
._5{margin-left:-3.661871pt;}
._4{margin-left:-2.508800pt;}
._1{margin-left:-1.193067pt;}
._0{width:1.001601pt;}
._3{width:2.660802pt;}
._a{width:3.891201pt;}
._8{width:5.190936pt;}
._9{width:6.132802pt;}
._11{width:7.430694pt;}
._6{width:9.214936pt;}
._7{width:10.346139pt;}
._10{width:11.247227pt;}
._12{width:12.187222pt;}
._2{width:14.969072pt;}
._1a{width:22.100369pt;}
._19{width:28.079564pt;}
._1b{width:35.146716pt;}
._17{width:42.219365pt;}
._15{width:51.163628pt;}
._21{width:62.670887pt;}
._20{width:64.593628pt;}
._14{width:68.101263pt;}
._16{width:69.379771pt;}
._1f{width:83.542685pt;}
._f{width:127.881916pt;}
._c{width:138.202975pt;}
._13{width:285.526384pt;}
._1e{width:291.846184pt;}
._1d{width:375.973656pt;}
._18{width:466.293744pt;}
._22{width:552.251015pt;}
._e{width:1144.620568pt;}
.fs11{font-size:23.304979pt;}
.fs19{font-size:26.117781pt;}
.fsf{font-size:26.292501pt;}
.fs3{font-size:26.879947pt;}
.fs15{font-size:26.972822pt;}
.fs1b{font-size:27.265302pt;}
.fs1a{font-size:27.304982pt;}
.fs14{font-size:28.149783pt;}
.fs13{font-size:28.257303pt;}
.fs17{font-size:29.280023pt;}
.fsb{font-size:31.447705pt;}
.fs16{font-size:31.825305pt;}
.fs18{font-size:31.980186pt;}
.fse{font-size:32.444826pt;}
.fsa{font-size:32.945306pt;}
.fs9{font-size:32.987546pt;}
.fs2{font-size:34.560000pt;}
.fsd{font-size:34.560028pt;}
.fs10{font-size:34.657308pt;}
.fs12{font-size:34.695068pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:42.879947pt;}
.fsc{font-size:42.880034pt;}
.fs5{font-size:48.000000pt;}
.fs1c{font-size:48.000038pt;}
.fs8{font-size:53.120042pt;}
.fs1{font-size:53.120053pt;}
.fs0{font-size:85.120053pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:0.319554pt;}
.yd6{bottom:0.480664pt;}
.yd8{bottom:0.480672pt;}
.yda{bottom:0.480674pt;}
.yec{bottom:1.919974pt;}
.ybb{bottom:2.399617pt;}
.yc0{bottom:14.399611pt;}
.ybe{bottom:21.279609pt;}
.y38{bottom:29.210667pt;}
.y36{bottom:70.827520pt;}
.y35{bottom:97.387560pt;}
.ye5{bottom:105.068084pt;}
.y34{bottom:113.547560pt;}
.y84{bottom:115.948093pt;}
.ye4{bottom:120.268096pt;}
.y33{bottom:122.508800pt;}
.y83{bottom:131.308105pt;}
.ye3{bottom:135.628109pt;}
.y82{bottom:146.668117pt;}
.ye2{bottom:150.988121pt;}
.y12e{bottom:157.388126pt;}
.y81{bottom:162.028130pt;}
.y37{bottom:167.354680pt;}
.y32{bottom:170.668800pt;}
.y12d{bottom:171.148137pt;}
.ye1{bottom:173.548139pt;}
.y80{bottom:177.388142pt;}
.ye0{bottom:184.428148pt;}
.y31{bottom:185.868800pt;}
.y12c{bottom:187.948150pt;}
.y7f{bottom:192.748154pt;}
.ydd{bottom:193.228155pt;}
.y12b{bottom:199.788160pt;}
.y30{bottom:201.228800pt;}
.yd4{bottom:202.508162pt;}
.y7e{bottom:207.948166pt;}
.ycf{bottom:211.628169pt;}
.y12a{bottom:215.308172pt;}
.y2f{bottom:216.588800pt;}
.y7d{bottom:223.308179pt;}
.ydf{bottom:226.028181pt;}
.y129{bottom:227.148182pt;}
.yd0{bottom:229.068183pt;}
.yd5{bottom:230.027520pt;}
.yde{bottom:235.948189pt;}
.y7c{bottom:238.668191pt;}
.y128{bottom:239.628192pt;}
.yd7{bottom:239.787520pt;}
.y2e{bottom:239.948800pt;}
.yd9{bottom:241.867520pt;}
.ydc{bottom:241.868193pt;}
.yd1{bottom:246.508197pt;}
.ydb{bottom:250.188200pt;}
.y127{bottom:253.388203pt;}
.y7b{bottom:254.028203pt;}
.y2d{bottom:255.308800pt;}
.yd2{bottom:263.948211pt;}
.y126{bottom:267.308214pt;}
.y7a{bottom:269.388216pt;}
.y2c{bottom:270.668800pt;}
.y125{bottom:281.068225pt;}
.yd3{bottom:281.388225pt;}
.y2b{bottom:285.868800pt;}
.y79{bottom:292.748234pt;}
.y124{bottom:294.828236pt;}
.y2a{bottom:301.228800pt;}
.yce{bottom:306.028245pt;}
.y78{bottom:307.948246pt;}
.y123{bottom:308.588247pt;}
.y29{bottom:316.588800pt;}
.ycd{bottom:321.388257pt;}
.y77{bottom:323.308259pt;}
.y122{bottom:325.388260pt;}
.y28{bottom:331.948800pt;}
.ycc{bottom:336.748269pt;}
.y121{bottom:337.228270pt;}
.y76{bottom:338.668271pt;}
.y27{bottom:347.308800pt;}
.ycb{bottom:352.108282pt;}
.y120{bottom:353.868283pt;}
.y75{bottom:354.028283pt;}
.y26{bottom:362.508800pt;}
.y74{bottom:369.388296pt;}
.yca{bottom:374.668300pt;}
.y11f{bottom:377.548302pt;}
.y25{bottom:377.868800pt;}
.y73{bottom:384.588308pt;}
.yc9{bottom:385.388308pt;}
.yc1{bottom:391.468313pt;}
.y11e{bottom:392.908314pt;}
.y24{bottom:393.228800pt;}
.y72{bottom:399.948320pt;}
.yae{bottom:402.028322pt;}
.yb3{bottom:402.188322pt;}
.y11d{bottom:408.268327pt;}
.y23{bottom:408.588800pt;}
.yb4{bottom:413.388331pt;}
.ya7{bottom:414.028331pt;}
.yaf{bottom:414.188331pt;}
.y71{bottom:415.308332pt;}
.y11c{bottom:423.468339pt;}
.y22{bottom:427.628800pt;}
.y70{bottom:430.668345pt;}
.yb5{bottom:431.468345pt;}
.ya8{bottom:432.108346pt;}
.yb0{bottom:432.268346pt;}
.yc7{bottom:433.548347pt;}
.y11b{bottom:438.828351pt;}
.yc8{bottom:441.388353pt;}
.yc2{bottom:441.868800pt;}
.yb6{bottom:449.388360pt;}
.y6f{bottom:449.708360pt;}
.ya9{bottom:450.028360pt;}
.yb1{bottom:450.188360pt;}
.y21{bottom:451.308800pt;}
.y11a{bottom:454.188363pt;}
.yb7{bottom:467.468374pt;}
.yaa{bottom:468.108374pt;}
.yb2{bottom:468.268375pt;}
.y119{bottom:469.548376pt;}
.y6e{bottom:473.388379pt;}
.y20{bottom:474.508800pt;}
.yc6{bottom:478.188383pt;}
.y118{bottom:484.908388pt;}
.yb8{bottom:485.548388pt;}
.yab{bottom:486.188389pt;}
.yc5{bottom:487.468390pt;}
.y6d{bottom:488.588391pt;}
.ybd{bottom:489.388800pt;}
.y1f{bottom:489.868800pt;}
.yc4{bottom:497.228398pt;}
.ybf{bottom:498.988800pt;}
.yb9{bottom:503.628403pt;}
.y6c{bottom:503.948403pt;}
.yac{bottom:504.268403pt;}
.y1e{bottom:505.228800pt;}
.ybc{bottom:510.668409pt;}
.yba{bottom:519.148800pt;}
.y6b{bottom:519.308415pt;}
.y1d{bottom:520.588800pt;}
.yad{bottom:522.188418pt;}
.y117{bottom:526.828421pt;}
.y6a{bottom:534.668428pt;}
.y1c{bottom:535.948800pt;}
.y116{bottom:537.548430pt;}
.ya6{bottom:540.908433pt;}
.y10e{bottom:542.828434pt;}
.y10b{bottom:549.548440pt;}
.y69{bottom:550.028440pt;}
.y1b{bottom:551.308800pt;}
.ya5{bottom:556.268445pt;}
.y102{bottom:558.028446pt;}
.y68{bottom:565.388452pt;}
.y1a{bottom:566.508800pt;}
.y114{bottom:569.548456pt;}
.ya4{bottom:571.468457pt;}
.y103{bottom:571.948458pt;}
.y67{bottom:580.588464pt;}
.y19{bottom:581.868800pt;}
.y104{bottom:586.028469pt;}
.ya3{bottom:586.828469pt;}
.y111{bottom:590.028472pt;}
.y113{bottom:594.028475pt;}
.y110{bottom:594.988446pt;}
.y18{bottom:597.228800pt;}
.y105{bottom:599.948480pt;}
.y10f{bottom:601.548481pt;}
.y66{bottom:603.948483pt;}
.ya2{bottom:610.508488pt;}
.y17{bottom:612.588800pt;}
.y106{bottom:614.028491pt;}
.y115{bottom:614.988492pt;}
.y65{bottom:619.308495pt;}
.ya1{bottom:625.868501pt;}
.y16{bottom:627.948800pt;}
.y107{bottom:628.108502pt;}
.y64{bottom:634.668508pt;}
.y10c{bottom:640.268512pt;}
.ya0{bottom:641.228513pt;}
.y108{bottom:642.028514pt;}
.y15{bottom:643.308800pt;}
.y112{bottom:647.788518pt;}
.y63{bottom:650.028520pt;}
.y109{bottom:656.108525pt;}
.y9f{bottom:656.428525pt;}
.y14{bottom:658.508800pt;}
.y10d{bottom:658.668527pt;}
.y62{bottom:665.228532pt;}
.y10a{bottom:670.028536pt;}
.y9e{bottom:671.788537pt;}
.y13{bottom:673.868800pt;}
.y61{bottom:680.588544pt;}
.y9d{bottom:687.148550pt;}
.y12{bottom:689.228800pt;}
.y101{bottom:690.508552pt;}
.y60{bottom:695.948557pt;}
.y9c{bottom:702.508562pt;}
.y11{bottom:704.588800pt;}
.y100{bottom:705.868565pt;}
.y5f{bottom:711.308569pt;}
.yff{bottom:721.228577pt;}
.y9b{bottom:721.548577pt;}
.y10{bottom:723.628800pt;}
.y5e{bottom:726.668581pt;}
.yfe{bottom:736.588589pt;}
.y9a{bottom:744.428596pt;}
.y5d{bottom:749.228599pt;}
.yfd{bottom:751.788601pt;}
.yf{bottom:755.148800pt;}
.y5c{bottom:762.508610pt;}
.y99{bottom:763.148611pt;}
.yfc{bottom:767.148614pt;}
.ye{bottom:770.508800pt;}
.y5b{bottom:781.388625pt;}
.yfb{bottom:782.508626pt;}
.y93{bottom:783.468627pt;}
.yd{bottom:785.868800pt;}
.y3b{bottom:786.348629pt;}
.y8f{bottom:788.268631pt;}
.y92{bottom:793.228635pt;}
.y3e{bottom:795.308636pt;}
.yfa{bottom:797.868638pt;}
.y8e{bottom:798.028638pt;}
.y5a{bottom:800.588640pt;}
.yc{bottom:801.228800pt;}
.y91{bottom:802.828642pt;}
.y4c{bottom:809.068647pt;}
.y59{bottom:810.188648pt;}
.yf9{bottom:813.228651pt;}
.y56{bottom:815.628653pt;}
.y90{bottom:816.428653pt;}
.yb{bottom:816.588800pt;}
.y40{bottom:819.308655pt;}
.y3c{bottom:820.748657pt;}
.y55{bottom:824.108659pt;}
.y4f{bottom:829.868664pt;}
.ya{bottom:831.948800pt;}
.yf8{bottom:835.788669pt;}
.y54{bottom:837.068670pt;}
.y58{bottom:837.228670pt;}
.y4e{bottom:839.628672pt;}
.y53{bottom:843.788675pt;}
.y8d{bottom:843.948675pt;}
.y3d{bottom:844.908676pt;}
.yf7{bottom:846.668677pt;}
.y9{bottom:847.148800pt;}
.y4d{bottom:849.868680pt;}
.y52{bottom:853.548683pt;}
.ye7{bottom:855.948685pt;}
.y94{bottom:858.828687pt;}
.y8{bottom:862.508800pt;}
.y57{bottom:862.828690pt;}
.yed{bottom:864.108691pt;}
.y47{bottom:868.108694pt;}
.y51{bottom:869.708696pt;}
.y97{bottom:869.868696pt;}
.y3f{bottom:870.988697pt;}
.ye8{bottom:873.548699pt;}
.yee{bottom:873.708699pt;}
.y50{bottom:874.668700pt;}
.y8c{bottom:875.148700pt;}
.y7{bottom:877.548800pt;}
.y96{bottom:879.628704pt;}
.yf3{bottom:887.148710pt;}
.y95{bottom:889.388712pt;}
.yf5{bottom:894.668716pt;}
.y6{bottom:901.228800pt;}
.y8a{bottom:901.708721pt;}
.ye9{bottom:904.908724pt;}
.yef{bottom:905.068724pt;}
.yf4{bottom:907.948726pt;}
.y45{bottom:908.428727pt;}
.y8b{bottom:911.788729pt;}
.y5{bottom:921.228800pt;}
.y41{bottom:925.868741pt;}
.y4{bottom:931.628800pt;}
.y42{bottom:935.468748pt;}
.yea{bottom:936.428749pt;}
.yf0{bottom:936.588749pt;}
.y44{bottom:939.628752pt;}
.y43{bottom:939.788752pt;}
.y98{bottom:941.548753pt;}
.y4b{bottom:942.188754pt;}
.y49{bottom:942.828754pt;}
.y89{bottom:947.948758pt;}
.yf6{bottom:956.588765pt;}
.y88{bottom:957.548766pt;}
.y3{bottom:959.468800pt;}
.y4a{bottom:961.068769pt;}
.y48{bottom:961.868769pt;}
.yf2{bottom:965.708800pt;}
.yeb{bottom:965.868800pt;}
.yf1{bottom:966.028800pt;}
.y87{bottom:967.308774pt;}
.y46{bottom:973.868779pt;}
.ye6{bottom:977.548782pt;}
.y2{bottom:983.788800pt;}
.y3a{bottom:1000.748801pt;}
.y86{bottom:1002.508802pt;}
.y1{bottom:1008.268800pt;}
.y85{bottom:1012.268810pt;}
.y39{bottom:1016.108813pt;}
.h26{height:2.880000pt;}
.h2d{height:8.160000pt;}
.h2c{height:8.320000pt;}
.h2e{height:8.480000pt;}
.h1a{height:10.240000pt;}
.h24{height:10.560000pt;}
.h1f{height:15.714929pt;}
.h35{height:18.160020pt;}
.h31{height:18.746649pt;}
.h18{height:18.872059pt;}
.h34{height:18.957905pt;}
.h33{height:18.985495pt;}
.h7{height:19.293712pt;}
.h29{height:19.360375pt;}
.h25{height:19.572896pt;}
.h32{height:19.598791pt;}
.h28{height:19.647656pt;}
.h23{height:20.282341pt;}
.h2b{height:21.016423pt;}
.h2a{height:22.128533pt;}
.h2f{height:22.236223pt;}
.h17{height:22.559293pt;}
.h30{height:22.843359pt;}
.hf{height:22.894789pt;}
.h10{height:22.936653pt;}
.h16{height:23.288034pt;}
.h1d{height:23.369991pt;}
.h11{height:23.677585pt;}
.he{height:23.985084pt;}
.h3{height:23.996250pt;}
.hd{height:24.015836pt;}
.h1b{height:24.097659pt;}
.h21{height:24.123914pt;}
.h27{height:24.320000pt;}
.h19{height:24.876095pt;}
.h12{height:28.056657pt;}
.h1e{height:30.400000pt;}
.ha{height:30.625000pt;}
.h8{height:30.778087pt;}
.h13{height:30.778150pt;}
.h22{height:31.217837pt;}
.h9{height:34.453125pt;}
.h38{height:34.453153pt;}
.h37{height:34.945340pt;}
.h36{height:36.001279pt;}
.h4{height:36.883162pt;}
.hc{height:38.128156pt;}
.h5{height:38.128163pt;}
.h14{height:38.672843pt;}
.h6{height:38.672851pt;}
.hb{height:38.937500pt;}
.h1c{height:40.000000pt;}
.h2{height:41.982500pt;}
.h15{height:43.366285pt;}
.h20{height:49.440000pt;}
.h1{height:57.688786pt;}
.h0{height:1122.666667pt;}
.w4{width:2.080000pt;}
.w5{width:3.680000pt;}
.w6{width:4.000000pt;}
.w3{width:4.960000pt;}
.w8{width:7.840000pt;}
.w9{width:9.280000pt;}
.w7{width:10.560000pt;}
.wa{width:15.040000pt;}
.w2{width:15.520000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626627pt;}
.x0{left:0.000000pt;}
.x6a{left:5.280120pt;}
.x59{left:7.520109pt;}
.xb{left:23.466680pt;}
.xc{left:37.083333pt;}
.x9{left:89.120067pt;}
.x7{left:94.560120pt;}
.x32{left:98.400079pt;}
.xa{left:104.640080pt;}
.x8{left:107.040120pt;}
.x5{left:112.800120pt;}
.x87{left:118.554895pt;}
.x7b{left:120.960097pt;}
.x58{left:128.960000pt;}
.x2{left:130.240120pt;}
.x4e{left:139.040111pt;}
.x1{left:142.080120pt;}
.x69{left:144.960000pt;}
.x62{left:152.000122pt;}
.x67{left:154.880124pt;}
.x4f{left:160.480128pt;}
.x68{left:172.320192pt;}
.x1f{left:174.880140pt;}
.x78{left:178.240143pt;}
.x1e{left:179.840106pt;}
.x21{left:180.960145pt;}
.x14{left:183.680147pt;}
.x13{left:194.720156pt;}
.x10{left:197.440159pt;}
.x6d{left:200.160160pt;}
.x77{left:201.600161pt;}
.x79{left:209.280167pt;}
.x20{left:212.160170pt;}
.x50{left:216.000173pt;}
.x11{left:222.880216pt;}
.x51{left:227.680000pt;}
.x17{left:229.440184pt;}
.x81{left:230.720185pt;}
.x52{left:232.640000pt;}
.x53{left:234.560188pt;}
.x60{left:236.799947pt;}
.x1d{left:237.920190pt;}
.x7c{left:240.480192pt;}
.x4{left:242.560120pt;}
.xd{left:246.080197pt;}
.x7d{left:248.160250pt;}
.x39{left:252.000434pt;}
.x3e{left:253.120197pt;}
.x35{left:254.720204pt;}
.x36{left:255.680175pt;}
.x37{left:257.760206pt;}
.x38{left:259.520162pt;}
.x3d{left:263.360211pt;}
.x3{left:265.280120pt;}
.x85{left:266.240213pt;}
.x3f{left:271.520272pt;}
.x33{left:273.920219pt;}
.x7f{left:276.160221pt;}
.x3a{left:278.080222pt;}
.x15{left:280.480224pt;}
.x6c{left:286.080229pt;}
.x19{left:288.000230pt;}
.xf{left:295.360241pt;}
.x3c{left:296.640081pt;}
.xe{left:300.960249pt;}
.x80{left:302.560227pt;}
.x12{left:310.560224pt;}
.x65{left:312.800250pt;}
.x6{left:314.240120pt;}
.x72{left:316.960254pt;}
.x73{left:320.800240pt;}
.x16{left:322.080258pt;}
.x74{left:324.480224pt;}
.x4d{left:325.920261pt;}
.x75{left:328.160000pt;}
.x66{left:330.240264pt;}
.x3b{left:339.040173pt;}
.x76{left:342.400274pt;}
.x1a{left:361.440289pt;}
.x34{left:364.000292pt;}
.x1c{left:368.960295pt;}
.x82{left:371.680297pt;}
.x2e{left:375.840309pt;}
.x24{left:377.120302pt;}
.x2b{left:378.880303pt;}
.x40{left:381.280305pt;}
.x41{left:383.680312pt;}
.x2d{left:386.720309pt;}
.x54{left:390.400000pt;}
.x55{left:395.360000pt;}
.x57{left:397.760317pt;}
.x56{left:399.040000pt;}
.x2c{left:400.960267pt;}
.x1b{left:403.040322pt;}
.x7e{left:416.160399pt;}
.x28{left:417.760334pt;}
.x23{left:423.680339pt;}
.x46{left:439.680352pt;}
.x18{left:454.720364pt;}
.x6e{left:457.280366pt;}
.x6f{left:460.960350pt;}
.x70{left:464.800337pt;}
.x71{left:468.480000pt;}
.x63{left:470.720377pt;}
.x26{left:474.560379pt;}
.x4b{left:476.800381pt;}
.x43{left:478.240370pt;}
.x4c{left:480.000394pt;}
.x25{left:482.720386pt;}
.x42{left:486.400389pt;}
.x64{left:488.000390pt;}
.x44{left:489.440395pt;}
.x45{left:491.040394pt;}
.x22{left:492.959595pt;}
.x47{left:521.760450pt;}
.x49{left:523.680765pt;}
.x48{left:525.760773pt;}
.x83{left:533.600427pt;}
.x30{left:534.880425pt;}
.x84{left:536.960430pt;}
.x2f{left:538.880431pt;}
.x5a{left:541.120433pt;}
.x5b{left:552.320000pt;}
.x6b{left:555.679800pt;}
.x5c{left:557.120000pt;}
.x5d{left:559.200447pt;}
.x4a{left:569.280455pt;}
.x86{left:571.680457pt;}
.x27{left:575.200460pt;}
.x2a{left:584.640473pt;}
.x29{left:595.840477pt;}
.x5e{left:605.600484pt;}
.x7a{left:625.120500pt;}
.x31{left:632.960506pt;}
.x5f{left:648.480519pt;}
.x61{left:664.800532pt;}
}




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