
    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_9c69106d81a1488efe4fcfc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_95828d6c63ea30b136c0199c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_21c4d2354276efbb6d66f330.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_8867ab6184e32aee34af4d40.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_03f1c1045354ff71fc4ceaff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a441f0558171cb223c7c9e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_164bb46d76bb0019d4553f90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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.164508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164508,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237655,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.237655,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237655,0.000001,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241391,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,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);}
.md{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251028,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251473,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253122,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253288,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256801,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-56.880000px;}
.v4{vertical-align:-18.044881px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.045477px;}
.v3{vertical-align:32.340038px;}
.ls13{letter-spacing:-2.589918px;}
.ls20{letter-spacing:-2.502000px;}
.ls17{letter-spacing:-2.022264px;}
.ls16{letter-spacing:-1.944714px;}
.ls14{letter-spacing:-1.583720px;}
.lsb{letter-spacing:-1.512274px;}
.ls22{letter-spacing:-1.476000px;}
.ls10{letter-spacing:-1.169214px;}
.ls1f{letter-spacing:-1.062000px;}
.lsa{letter-spacing:-0.720414px;}
.ls15{letter-spacing:-0.481570px;}
.ls1d{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.350400px;}
.ls25{letter-spacing:-0.341400px;}
.ls5{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.037440px;}
.ls1e{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.144083px;}
.lsd{letter-spacing:0.288128px;}
.ls9{letter-spacing:0.288166px;}
.ls7{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.369360px;}
.ls18{letter-spacing:0.369600px;}
.ls23{letter-spacing:0.378600px;}
.ls1a{letter-spacing:0.378720px;}
.lsf{letter-spacing:0.498438px;}
.ls12{letter-spacing:5.580000px;}
.ls19{letter-spacing:9.180000px;}
.ls2{letter-spacing:19.980000px;}
.ls11{letter-spacing:27.180000px;}
.ls3{letter-spacing:38.700000px;}
.lsc{letter-spacing:78.300000px;}
.ls1b{letter-spacing:83.340000px;}
.ls0{letter-spacing:87.840000px;}
.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;}
}
.ws13{word-spacing:-42.045383px;}
.ws15{word-spacing:-39.603025px;}
.ws11{word-spacing:-39.524577px;}
.wse{word-spacing:-39.034469px;}
.ws12{word-spacing:-37.940857px;}
.ws1{word-spacing:-24.300000px;}
.ws1e{word-spacing:-21.438600px;}
.ws17{word-spacing:-21.429600px;}
.wsa{word-spacing:-21.420000px;}
.ws16{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.ws19{word-spacing:-21.031920px;}
.ws20{word-spacing:-20.880000px;}
.ws1f{word-spacing:-20.718600px;}
.ws1c{word-spacing:-20.709600px;}
.ws18{word-spacing:-20.700000px;}
.ws1a{word-spacing:-19.998000px;}
.ws1d{word-spacing:-19.584000px;}
.ws1b{word-spacing:-18.558000px;}
.ws14{word-spacing:-18.034164px;}
.wsf{word-spacing:-17.998441px;}
.ws0{word-spacing:-17.712000px;}
.ws5{word-spacing:-10.655429px;}
.ws4{word-spacing:-10.511346px;}
.ws7{word-spacing:-0.360159px;}
.wsb{word-spacing:0.000000px;}
.ws8{word-spacing:0.648420px;}
.ws9{word-spacing:1.440280px;}
.ws10{word-spacing:36.139775px;}
.wsc{word-spacing:105.119270px;}
.wsd{word-spacing:111.924625px;}
.ws3{word-spacing:324.264058px;}
.ws6{word-spacing:786.070321px;}
._19{margin-left:-351.560753px;}
._13{margin-left:-304.705040px;}
._1a{margin-left:-273.578692px;}
._36{margin-left:-239.961604px;}
._35{margin-left:-227.575580px;}
._1b{margin-left:-218.146707px;}
._17{margin-left:-200.892185px;}
._18{margin-left:-179.686723px;}
._3d{margin-left:-161.417219px;}
._28{margin-left:-156.007196px;}
._27{margin-left:-148.886488px;}
._12{margin-left:-137.809982px;}
._15{margin-left:-136.806910px;}
._24{margin-left:-130.877340px;}
._25{margin-left:-129.305434px;}
._3e{margin-left:-126.859446px;}
._26{margin-left:-123.213122px;}
._11{margin-left:-114.200200px;}
._14{margin-left:-54.860417px;}
._16{margin-left:-33.981361px;}
._10{margin-left:-32.957302px;}
._f{margin-left:-29.834367px;}
._3f{margin-left:-6.486480px;}
._31{margin-left:-5.358960px;}
._47{margin-left:-3.758400px;}
._37{margin-left:-2.695680px;}
._1{margin-left:-1.296000px;}
._0{width:1.176000px;}
._a{width:2.611440px;}
._b{width:4.383120px;}
._29{width:6.300000px;}
._3b{width:8.171280px;}
._2f{width:11.380800px;}
._21{width:13.141440px;}
._22{width:14.188080px;}
._9{width:15.364080px;}
._8{width:17.301600px;}
._1c{width:18.649440px;}
._c{width:19.660320px;}
._1f{width:22.474560px;}
._23{width:23.941440px;}
._2d{width:25.543200px;}
._32{width:26.804640px;}
._6{width:29.095200px;}
._7{width:30.715200px;}
._1e{width:37.908000px;}
._1d{width:38.918880px;}
._41{width:40.018560px;}
._42{width:41.273040px;}
._39{width:43.299360px;}
._3a{width:44.543520px;}
._48{width:45.629040px;}
._3c{width:46.649520px;}
._38{width:48.438000px;}
._2c{width:50.712480px;}
._30{width:52.060320px;}
._43{width:54.114480px;}
._2b{width:64.812960px;}
._20{width:70.256160px;}
._2e{width:75.511440px;}
._5{width:78.900480px;}
._4{width:80.092800px;}
._45{width:82.250640px;}
._44{width:83.650320px;}
._2{width:94.212720px;}
._3{width:95.454240px;}
._2a{width:97.193760px;}
._46{width:115.324560px;}
._34{width:145.514880px;}
._49{width:401.972160px;}
._d{width:459.968724px;}
._e{width:621.937629px;}
._40{width:1408.620000px;}
._33{width:2616.036000px;}
.fc6{color:rgb(26,13,171);}
.fc5{color:rgb(0,102,33);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(119,119,119);}
.fc3{color:rgb(31,31,31);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsb{font-size:40.976141px;}
.fsd{font-size:41.464017px;}
.fs10{font-size:41.838193px;}
.fs13{font-size:41.982555px;}
.fs8{font-size:42.045383px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fsf{font-size:70.264443px;}
.fsc{font-size:70.404181px;}
.fse{font-size:71.101036px;}
.fs12{font-size:71.469836px;}
.fs11{font-size:71.847037px;}
.fsa{font-size:71.990206px;}
.fs9{font-size:71.993766px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:72.136658px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs7{font-size:108.568171px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.141186px;}
.y3e{bottom:3.211783px;}
.y71{bottom:3.372488px;}
.y21{bottom:3.609067px;}
.y23{bottom:3.609093px;}
.y2{bottom:3.960000px;}
.y80{bottom:4.691770px;}
.y46{bottom:4.714248px;}
.y3a{bottom:4.714263px;}
.y74{bottom:4.773199px;}
.y4f{bottom:4.809289px;}
.ya{bottom:5.400000px;}
.y3{bottom:5.760000px;}
.y22{bottom:6.243640px;}
.y24{bottom:6.243668px;}
.y37{bottom:7.552969px;}
.y9{bottom:7.560000px;}
.y3f{bottom:7.588195px;}
.y33{bottom:7.774602px;}
.y6{bottom:8.820000px;}
.y3b{bottom:9.178570px;}
.y7f{bottom:9.239160px;}
.y64{bottom:9.239165px;}
.y65{bottom:9.239184px;}
.y20{bottom:10.863258px;}
.yb{bottom:12.060000px;}
.y73{bottom:12.837050px;}
.y4e{bottom:12.873141px;}
.y81{bottom:17.324170px;}
.y5{bottom:20.340000px;}
.y8{bottom:36.180000px;}
.y90{bottom:92.916000px;}
.y57{bottom:94.716000px;}
.yb2{bottom:99.396000px;}
.y56{bottom:122.436000px;}
.y75{bottom:124.776000px;}
.yb1{bottom:127.296000px;}
.y8f{bottom:129.096000px;}
.y55{bottom:150.150000px;}
.yb0{bottom:155.010000px;}
.y72{bottom:156.690000px;}
.y2d{bottom:158.070000px;}
.y70{bottom:158.115000px;}
.y6f{bottom:161.130000px;}
.y8e{bottom:165.270000px;}
.y54{bottom:178.050000px;}
.yaf{bottom:182.730000px;}
.y2c{bottom:194.250000px;}
.y6e{bottom:197.490000px;}
.y8d{bottom:201.450000px;}
.y53{bottom:205.770000px;}
.yae{bottom:210.630000px;}
.y2b{bottom:230.610000px;}
.y52{bottom:233.490000px;}
.y6d{bottom:233.670000px;}
.y8c{bottom:237.810000px;}
.yad{bottom:238.350000px;}
.y51{bottom:261.390000px;}
.yac{bottom:266.070000px;}
.y2a{bottom:266.790000px;}
.y6c{bottom:269.850000px;}
.y8b{bottom:273.990000px;}
.y4d{bottom:284.640000px;}
.y50{bottom:289.110000px;}
.yab{bottom:293.790000px;}
.y29{bottom:302.970000px;}
.y6b{bottom:306.210000px;}
.y8a{bottom:310.170000px;}
.y4c{bottom:317.010000px;}
.yaa{bottom:321.690000px;}
.y28{bottom:339.195000px;}
.y6a{bottom:342.435000px;}
.y4b{bottom:344.955000px;}
.y89{bottom:346.395000px;}
.ya9{bottom:349.455000px;}
.y4a{bottom:372.675000px;}
.y27{bottom:375.375000px;}
.ya8{bottom:377.175000px;}
.y69{bottom:378.615000px;}
.y88{bottom:382.755000px;}
.y49{bottom:400.395000px;}
.ya7{bottom:405.075000px;}
.y26{bottom:411.735000px;}
.y87{bottom:414.435000px;}
.y68{bottom:414.795000px;}
.y48{bottom:428.115000px;}
.ya6{bottom:432.795000px;}
.y25{bottom:447.915000px;}
.y67{bottom:451.155000px;}
.y47{bottom:456.015000px;}
.ya5{bottom:460.515000px;}
.y45{bottom:479.264959px;}
.y1f{bottom:479.639959px;}
.y66{bottom:487.335000px;}
.y44{bottom:488.235000px;}
.y1e{bottom:490.035000px;}
.y43{bottom:515.955000px;}
.ya4{bottom:516.135000px;}
.y63{bottom:519.014959px;}
.y1d{bottom:526.395000px;}
.y62{bottom:528.015000px;}
.y42{bottom:543.675000px;}
.ya3{bottom:543.855000px;}
.y1c{bottom:562.575000px;}
.y61{bottom:564.375000px;}
.y41{bottom:566.939959px;}
.ya2{bottom:571.575000px;}
.y40{bottom:575.895000px;}
.y1b{bottom:598.755000px;}
.y3d{bottom:599.114959px;}
.ya1{bottom:599.295000px;}
.y60{bottom:600.555000px;}
.y3c{bottom:606.705000px;}
.ya0{bottom:627.225000px;}
.y39{bottom:629.939959px;}
.y1a{bottom:634.965000px;}
.y5f{bottom:636.945000px;}
.y38{bottom:638.925000px;}
.y86{bottom:651.525000px;}
.y9f{bottom:654.945000px;}
.y35{bottom:662.114959px;}
.y34{bottom:669.705000px;}
.y19{bottom:671.145000px;}
.y5e{bottom:673.125000px;}
.y9e{bottom:682.665000px;}
.y85{bottom:687.705000px;}
.y32{bottom:692.714919px;}
.y31{bottom:700.305000px;}
.y18{bottom:707.505000px;}
.y5d{bottom:709.305000px;}
.y9d{bottom:710.565000px;}
.y84{bottom:723.885000px;}
.y30{bottom:728.205000px;}
.y5c{bottom:737.025000px;}
.y9c{bottom:738.285000px;}
.y17{bottom:743.685000px;}
.y2f{bottom:755.925000px;}
.y83{bottom:760.245000px;}
.y5b{bottom:764.925000px;}
.y9b{bottom:766.005000px;}
.y16{bottom:779.865000px;}
.y2e{bottom:786.705000px;}
.y5a{bottom:792.645000px;}
.y9a{bottom:793.725000px;}
.y82{bottom:796.425000px;}
.y59{bottom:815.865000px;}
.y15{bottom:816.045000px;}
.y99{bottom:821.625000px;}
.y7e{bottom:828.090000px;}
.y7d{bottom:837.105000px;}
.y98{bottom:849.345000px;}
.y14{bottom:852.405000px;}
.y7c{bottom:873.510000px;}
.y97{bottom:877.110000px;}
.y13{bottom:888.630000px;}
.y96{bottom:905.010000px;}
.y7b{bottom:909.690000px;}
.y12{bottom:924.810000px;}
.y95{bottom:932.730000px;}
.y7a{bottom:946.050000px;}
.y94{bottom:960.450000px;}
.y11{bottom:960.990000px;}
.y79{bottom:982.230000px;}
.y93{bottom:988.170000px;}
.y10{bottom:997.350000px;}
.y92{bottom:1016.070000px;}
.y78{bottom:1018.410000px;}
.yf{bottom:1033.530000px;}
.y91{bottom:1043.790000px;}
.y77{bottom:1054.590000px;}
.ye{bottom:1061.250000px;}
.y58{bottom:1071.510000px;}
.y76{bottom:1090.950000px;}
.yd{bottom:1099.410000px;}
.yc{bottom:1127.130000px;}
.y7{bottom:1151.280000px;}
.y4{bottom:1166.940000px;}
.y1{bottom:1199.520000px;}
.h6{height:15.682500px;}
.h22{height:19.799723px;}
.h2{height:20.700000px;}
.h5{height:21.780000px;}
.h1d{height:24.299975px;}
.h13{height:24.300057px;}
.h15{height:25.199288px;}
.h18{height:27.000229px;}
.h8{height:27.720000px;}
.h26{height:28.800186px;}
.hf{height:28.800226px;}
.h28{height:30.733369px;}
.h16{height:40.215842px;}
.h19{height:40.694665px;}
.h1e{height:41.061898px;}
.h24{height:41.203582px;}
.h11{height:41.265244px;}
.h23{height:49.624076px;}
.h21{height:49.987859px;}
.h27{height:52.728797px;}
.h4{height:53.709961px;}
.he{height:59.066719px;}
.hd{height:59.436914px;}
.h7{height:65.884219px;}
.h1b{height:68.926400px;}
.h17{height:69.063476px;}
.h1a{height:69.747061px;}
.h1f{height:70.513937px;}
.h14{height:70.619299px;}
.h25{height:70.654450px;}
.h9{height:70.664062px;}
.h29{height:70.798185px;}
.h3{height:72.562500px;}
.h20{height:73.605282px;}
.h10{height:75.382783px;}
.hb{height:82.676953px;}
.hc{height:84.898125px;}
.h1c{height:87.638932px;}
.h12{height:88.668268px;}
.ha{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:18.000590px;}
.w9{width:20.699746px;}
.wb{width:24.299879px;}
.wf{width:26.999441px;}
.w11{width:28.798873px;}
.wa{width:28.799882px;}
.w10{width:29.700215px;}
.wd{width:40.499360px;}
.w3{width:44.100000px;}
.w6{width:54.216000px;}
.wc{width:76.497176px;}
.w12{width:100.797367px;}
.we{width:126.003403px;}
.w7{width:274.501529px;}
.w5{width:742.830000px;}
.w2{width:840.240000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:2.426118px;}
.x1{left:4.320000px;}
.x6{left:8.640000px;}
.x32{left:12.270397px;}
.x1e{left:13.698124px;}
.xb{left:15.120000px;}
.x2d{left:21.143210px;}
.x26{left:31.892967px;}
.x4{left:35.640000px;}
.x9{left:39.816000px;}
.x29{left:53.026150px;}
.x8{left:54.720000px;}
.x2{left:63.900000px;}
.x24{left:67.841563px;}
.x19{left:70.898183px;}
.x33{left:79.361104px;}
.x7{left:84.959987px;}
.x18{left:89.147879px;}
.xe{left:110.555987px;}
.xd{left:125.495987px;}
.xc{left:127.475987px;}
.x1c{left:137.939990px;}
.x21{left:143.339990px;}
.x1d{left:155.909987px;}
.x1f{left:158.609987px;}
.x20{left:166.709987px;}
.x22{left:172.109987px;}
.x14{left:197.189980px;}
.x23{left:206.189980px;}
.x2b{left:233.309987px;}
.x17{left:254.199133px;}
.x16{left:266.176947px;}
.x25{left:282.674987px;}
.xf{left:297.974987px;}
.x37{left:299.414987px;}
.x12{left:312.374987px;}
.x13{left:335.054987px;}
.x11{left:389.234987px;}
.x28{left:414.464959px;}
.x5{left:420.015000px;}
.x35{left:421.634987px;}
.x10{left:446.474987px;}
.x36{left:464.114987px;}
.x1a{left:471.704987px;}
.x31{left:488.939959px;}
.x2a{left:540.464987px;}
.x34{left:589.784987px;}
.x27{left:642.704987px;}
.x1b{left:660.029987px;}
.x2c{left:674.564959px;}
.x2e{left:704.309987px;}
.x2f{left:779.114919px;}
.xa{left:797.550000px;}
.x30{left:807.989987px;}
.x3{left:844.560000px;}
@media print{
.v1{vertical-align:-50.560000pt;}
.v4{vertical-align:-16.039895pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.040424pt;}
.v3{vertical-align:28.746700pt;}
.ls13{letter-spacing:-2.302149pt;}
.ls20{letter-spacing:-2.224000pt;}
.ls17{letter-spacing:-1.797568pt;}
.ls16{letter-spacing:-1.728635pt;}
.ls14{letter-spacing:-1.407751pt;}
.lsb{letter-spacing:-1.344244pt;}
.ls22{letter-spacing:-1.312000pt;}
.ls10{letter-spacing:-1.039302pt;}
.ls1f{letter-spacing:-0.944000pt;}
.lsa{letter-spacing:-0.640368pt;}
.ls15{letter-spacing:-0.428063pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.311467pt;}
.ls25{letter-spacing:-0.303467pt;}
.ls5{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.033280pt;}
.ls1e{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.128074pt;}
.lsd{letter-spacing:0.256114pt;}
.ls9{letter-spacing:0.256147pt;}
.ls7{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.328320pt;}
.ls18{letter-spacing:0.328533pt;}
.ls23{letter-spacing:0.336533pt;}
.ls1a{letter-spacing:0.336640pt;}
.lsf{letter-spacing:0.443056pt;}
.ls12{letter-spacing:4.960000pt;}
.ls19{letter-spacing:8.160000pt;}
.ls2{letter-spacing:17.760000pt;}
.ls11{letter-spacing:24.160000pt;}
.ls3{letter-spacing:34.400000pt;}
.lsc{letter-spacing:69.600000pt;}
.ls1b{letter-spacing:74.080000pt;}
.ls0{letter-spacing:78.080000pt;}
.ws13{word-spacing:-37.373674pt;}
.ws15{word-spacing:-35.202689pt;}
.ws11{word-spacing:-35.132958pt;}
.wse{word-spacing:-34.697305pt;}
.ws12{word-spacing:-33.725207pt;}
.ws1{word-spacing:-21.600000pt;}
.ws1e{word-spacing:-19.056533pt;}
.ws17{word-spacing:-19.048533pt;}
.wsa{word-spacing:-19.040000pt;}
.ws16{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.ws19{word-spacing:-18.695040pt;}
.ws20{word-spacing:-18.560000pt;}
.ws1f{word-spacing:-18.416533pt;}
.ws1c{word-spacing:-18.408533pt;}
.ws18{word-spacing:-18.400000pt;}
.ws1a{word-spacing:-17.776000pt;}
.ws1d{word-spacing:-17.408000pt;}
.ws1b{word-spacing:-16.496000pt;}
.ws14{word-spacing:-16.030368pt;}
.wsf{word-spacing:-15.998615pt;}
.ws0{word-spacing:-15.744000pt;}
.ws5{word-spacing:-9.471492pt;}
.ws4{word-spacing:-9.343419pt;}
.ws7{word-spacing:-0.320142pt;}
.wsb{word-spacing:0.000000pt;}
.ws8{word-spacing:0.576374pt;}
.ws9{word-spacing:1.280249pt;}
.ws10{word-spacing:32.124244pt;}
.wsc{word-spacing:93.439351pt;}
.wsd{word-spacing:99.488555pt;}
.ws3{word-spacing:288.234718pt;}
.ws6{word-spacing:698.729174pt;}
._19{margin-left:-312.498447pt;}
._13{margin-left:-270.848925pt;}
._1a{margin-left:-243.181059pt;}
._36{margin-left:-213.299204pt;}
._35{margin-left:-202.289405pt;}
._1b{margin-left:-193.908184pt;}
._17{margin-left:-178.570831pt;}
._18{margin-left:-159.721531pt;}
._3d{margin-left:-143.481972pt;}
._28{margin-left:-138.673063pt;}
._27{margin-left:-132.343545pt;}
._12{margin-left:-122.497762pt;}
._15{margin-left:-121.606142pt;}
._24{margin-left:-116.335413pt;}
._25{margin-left:-114.938164pt;}
._3e{margin-left:-112.763952pt;}
._26{margin-left:-109.522775pt;}
._11{margin-left:-101.511289pt;}
._14{margin-left:-48.764815pt;}
._16{margin-left:-30.205654pt;}
._10{margin-left:-29.295379pt;}
._f{margin-left:-26.519437pt;}
._3f{margin-left:-5.765760pt;}
._31{margin-left:-4.763520pt;}
._47{margin-left:-3.340800pt;}
._37{margin-left:-2.396160pt;}
._1{margin-left:-1.152000pt;}
._0{width:1.045333pt;}
._a{width:2.321280pt;}
._b{width:3.896107pt;}
._29{width:5.600000pt;}
._3b{width:7.263360pt;}
._2f{width:10.116267pt;}
._21{width:11.681280pt;}
._22{width:12.611627pt;}
._9{width:13.656960pt;}
._8{width:15.379200pt;}
._1c{width:16.577280pt;}
._c{width:17.475840pt;}
._1f{width:19.977387pt;}
._23{width:21.281280pt;}
._2d{width:22.705067pt;}
._32{width:23.826347pt;}
._6{width:25.862400pt;}
._7{width:27.302400pt;}
._1e{width:33.696000pt;}
._1d{width:34.594560pt;}
._41{width:35.572053pt;}
._42{width:36.687147pt;}
._39{width:38.488320pt;}
._3a{width:39.594240pt;}
._48{width:40.559147pt;}
._3c{width:41.466240pt;}
._38{width:43.056000pt;}
._2c{width:45.077760pt;}
._30{width:46.275840pt;}
._43{width:48.101760pt;}
._2b{width:57.611520pt;}
._20{width:62.449920pt;}
._2e{width:67.121280pt;}
._5{width:70.133760pt;}
._4{width:71.193600pt;}
._45{width:73.111680pt;}
._44{width:74.355840pt;}
._2{width:83.744640pt;}
._3{width:84.848213pt;}
._2a{width:86.394453pt;}
._46{width:102.510720pt;}
._34{width:129.346560pt;}
._49{width:357.308587pt;}
._d{width:408.861088pt;}
._e{width:552.833448pt;}
._40{width:1252.106667pt;}
._33{width:2325.365333pt;}
.fs2{font-size:5.120000pt;}
.fsb{font-size:36.423237pt;}
.fsd{font-size:36.856904pt;}
.fs10{font-size:37.189505pt;}
.fs13{font-size:37.317827pt;}
.fs8{font-size:37.373674pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fsf{font-size:62.457283pt;}
.fsc{font-size:62.581494pt;}
.fse{font-size:63.200921pt;}
.fs12{font-size:63.528743pt;}
.fs11{font-size:63.864033pt;}
.fsa{font-size:63.991294pt;}
.fs9{font-size:63.994459pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:64.121474pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs7{font-size:96.505041pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.792165pt;}
.y3e{bottom:2.854918pt;}
.y71{bottom:2.997768pt;}
.y21{bottom:3.208059pt;}
.y23{bottom:3.208083pt;}
.y2{bottom:3.520000pt;}
.y80{bottom:4.170463pt;}
.y46{bottom:4.190443pt;}
.y3a{bottom:4.190456pt;}
.y74{bottom:4.242843pt;}
.y4f{bottom:4.274924pt;}
.ya{bottom:4.800000pt;}
.y3{bottom:5.120000pt;}
.y22{bottom:5.549903pt;}
.y24{bottom:5.549927pt;}
.y37{bottom:6.713750pt;}
.y9{bottom:6.720000pt;}
.y3f{bottom:6.745062pt;}
.y33{bottom:6.910757pt;}
.y6{bottom:7.840000pt;}
.y3b{bottom:8.158729pt;}
.y7f{bottom:8.212587pt;}
.y64{bottom:8.212591pt;}
.y65{bottom:8.212608pt;}
.y20{bottom:9.656229pt;}
.yb{bottom:10.720000pt;}
.y73{bottom:11.410711pt;}
.y4e{bottom:11.442792pt;}
.y81{bottom:15.399262pt;}
.y5{bottom:18.080000pt;}
.y8{bottom:32.160000pt;}
.y90{bottom:82.592000pt;}
.y57{bottom:84.192000pt;}
.yb2{bottom:88.352000pt;}
.y56{bottom:108.832000pt;}
.y75{bottom:110.912000pt;}
.yb1{bottom:113.152000pt;}
.y8f{bottom:114.752000pt;}
.y55{bottom:133.466667pt;}
.yb0{bottom:137.786667pt;}
.y72{bottom:139.280000pt;}
.y2d{bottom:140.506667pt;}
.y70{bottom:140.546667pt;}
.y6f{bottom:143.226667pt;}
.y8e{bottom:146.906667pt;}
.y54{bottom:158.266667pt;}
.yaf{bottom:162.426667pt;}
.y2c{bottom:172.666667pt;}
.y6e{bottom:175.546667pt;}
.y8d{bottom:179.066667pt;}
.y53{bottom:182.906667pt;}
.yae{bottom:187.226667pt;}
.y2b{bottom:204.986667pt;}
.y52{bottom:207.546667pt;}
.y6d{bottom:207.706667pt;}
.y8c{bottom:211.386667pt;}
.yad{bottom:211.866667pt;}
.y51{bottom:232.346667pt;}
.yac{bottom:236.506667pt;}
.y2a{bottom:237.146667pt;}
.y6c{bottom:239.866667pt;}
.y8b{bottom:243.546667pt;}
.y4d{bottom:253.013333pt;}
.y50{bottom:256.986667pt;}
.yab{bottom:261.146667pt;}
.y29{bottom:269.306667pt;}
.y6b{bottom:272.186667pt;}
.y8a{bottom:275.706667pt;}
.y4c{bottom:281.786667pt;}
.yaa{bottom:285.946667pt;}
.y28{bottom:301.506667pt;}
.y6a{bottom:304.386667pt;}
.y4b{bottom:306.626667pt;}
.y89{bottom:307.906667pt;}
.ya9{bottom:310.626667pt;}
.y4a{bottom:331.266667pt;}
.y27{bottom:333.666667pt;}
.ya8{bottom:335.266667pt;}
.y69{bottom:336.546667pt;}
.y88{bottom:340.226667pt;}
.y49{bottom:355.906667pt;}
.ya7{bottom:360.066667pt;}
.y26{bottom:365.986667pt;}
.y87{bottom:368.386667pt;}
.y68{bottom:368.706667pt;}
.y48{bottom:380.546667pt;}
.ya6{bottom:384.706667pt;}
.y25{bottom:398.146667pt;}
.y67{bottom:401.026667pt;}
.y47{bottom:405.346667pt;}
.ya5{bottom:409.346667pt;}
.y45{bottom:426.013297pt;}
.y1f{bottom:426.346630pt;}
.y66{bottom:433.186667pt;}
.y44{bottom:433.986667pt;}
.y1e{bottom:435.586667pt;}
.y43{bottom:458.626667pt;}
.ya4{bottom:458.786667pt;}
.y63{bottom:461.346630pt;}
.y1d{bottom:467.906667pt;}
.y62{bottom:469.346667pt;}
.y42{bottom:483.266667pt;}
.ya3{bottom:483.426667pt;}
.y1c{bottom:500.066667pt;}
.y61{bottom:501.666667pt;}
.y41{bottom:503.946630pt;}
.ya2{bottom:508.066667pt;}
.y40{bottom:511.906667pt;}
.y1b{bottom:532.226667pt;}
.y3d{bottom:532.546630pt;}
.ya1{bottom:532.706667pt;}
.y60{bottom:533.826667pt;}
.y3c{bottom:539.293333pt;}
.ya0{bottom:557.533333pt;}
.y39{bottom:559.946630pt;}
.y1a{bottom:564.413333pt;}
.y5f{bottom:566.173333pt;}
.y38{bottom:567.933333pt;}
.y86{bottom:579.133333pt;}
.y9f{bottom:582.173333pt;}
.y35{bottom:588.546630pt;}
.y34{bottom:595.293333pt;}
.y19{bottom:596.573333pt;}
.y5e{bottom:598.333333pt;}
.y9e{bottom:606.813333pt;}
.y85{bottom:611.293333pt;}
.y32{bottom:615.746594pt;}
.y31{bottom:622.493333pt;}
.y18{bottom:628.893333pt;}
.y5d{bottom:630.493333pt;}
.y9d{bottom:631.613333pt;}
.y84{bottom:643.453333pt;}
.y30{bottom:647.293333pt;}
.y5c{bottom:655.133333pt;}
.y9c{bottom:656.253333pt;}
.y17{bottom:661.053333pt;}
.y2f{bottom:671.933333pt;}
.y83{bottom:675.773333pt;}
.y5b{bottom:679.933333pt;}
.y9b{bottom:680.893333pt;}
.y16{bottom:693.213333pt;}
.y2e{bottom:699.293333pt;}
.y5a{bottom:704.573333pt;}
.y9a{bottom:705.533333pt;}
.y82{bottom:707.933333pt;}
.y59{bottom:725.213333pt;}
.y15{bottom:725.373333pt;}
.y99{bottom:730.333333pt;}
.y7e{bottom:736.080000pt;}
.y7d{bottom:744.093333pt;}
.y98{bottom:754.973333pt;}
.y14{bottom:757.693333pt;}
.y7c{bottom:776.453333pt;}
.y97{bottom:779.653333pt;}
.y13{bottom:789.893333pt;}
.y96{bottom:804.453333pt;}
.y7b{bottom:808.613333pt;}
.y12{bottom:822.053333pt;}
.y95{bottom:829.093333pt;}
.y7a{bottom:840.933333pt;}
.y94{bottom:853.733333pt;}
.y11{bottom:854.213333pt;}
.y79{bottom:873.093333pt;}
.y93{bottom:878.373333pt;}
.y10{bottom:886.533333pt;}
.y92{bottom:903.173333pt;}
.y78{bottom:905.253333pt;}
.yf{bottom:918.693333pt;}
.y91{bottom:927.813333pt;}
.y77{bottom:937.413333pt;}
.ye{bottom:943.333333pt;}
.y58{bottom:952.453333pt;}
.y76{bottom:969.733333pt;}
.yd{bottom:977.253333pt;}
.yc{bottom:1001.893333pt;}
.y7{bottom:1023.360000pt;}
.y4{bottom:1037.280000pt;}
.y1{bottom:1066.240000pt;}
.h6{height:13.940000pt;}
.h22{height:17.599754pt;}
.h2{height:18.400000pt;}
.h5{height:19.360000pt;}
.h1d{height:21.599978pt;}
.h13{height:21.600051pt;}
.h15{height:22.399367pt;}
.h18{height:24.000203pt;}
.h8{height:24.640000pt;}
.h26{height:25.600165pt;}
.hf{height:25.600201pt;}
.h28{height:27.318550pt;}
.h16{height:35.747415pt;}
.h19{height:36.173036pt;}
.h1e{height:36.499465pt;}
.h24{height:36.625406pt;}
.h11{height:36.680217pt;}
.h23{height:44.110289pt;}
.h21{height:44.433652pt;}
.h27{height:46.870042pt;}
.h4{height:47.742188pt;}
.he{height:52.503750pt;}
.hd{height:52.832812pt;}
.h7{height:58.563750pt;}
.h1b{height:61.267911pt;}
.h17{height:61.389756pt;}
.h1a{height:61.997387pt;}
.h1f{height:62.679055pt;}
.h14{height:62.772710pt;}
.h25{height:62.803956pt;}
.h9{height:62.812500pt;}
.h29{height:62.931720pt;}
.h3{height:64.500000pt;}
.h20{height:65.426917pt;}
.h10{height:67.006918pt;}
.hb{height:73.490625pt;}
.hc{height:75.465000pt;}
.h1c{height:77.901273pt;}
.h12{height:78.816238pt;}
.ha{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:16.000524pt;}
.w9{width:18.399774pt;}
.wb{width:21.599892pt;}
.wf{width:23.999503pt;}
.w11{width:25.598998pt;}
.wa{width:25.599895pt;}
.w10{width:26.400191pt;}
.wd{width:35.999431pt;}
.w3{width:39.200000pt;}
.w6{width:48.192000pt;}
.wc{width:67.997490pt;}
.w12{width:89.597660pt;}
.we{width:112.003025pt;}
.w7{width:244.001359pt;}
.w5{width:660.293333pt;}
.w2{width:746.880000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:2.156550pt;}
.x1{left:3.840000pt;}
.x6{left:7.680000pt;}
.x32{left:10.907019pt;}
.x1e{left:12.176110pt;}
.xb{left:13.440000pt;}
.x2d{left:18.793965pt;}
.x26{left:28.349304pt;}
.x4{left:31.680000pt;}
.x9{left:35.392000pt;}
.x29{left:47.134355pt;}
.x8{left:48.640000pt;}
.x2{left:56.800000pt;}
.x24{left:60.303612pt;}
.x19{left:63.020607pt;}
.x33{left:70.543204pt;}
.x7{left:75.519988pt;}
.x18{left:79.242559pt;}
.xe{left:98.271988pt;}
.xd{left:111.551988pt;}
.xc{left:113.311988pt;}
.x1c{left:122.613324pt;}
.x21{left:127.413324pt;}
.x1d{left:138.586655pt;}
.x1f{left:140.986655pt;}
.x20{left:148.186655pt;}
.x22{left:152.986655pt;}
.x14{left:175.279982pt;}
.x23{left:183.279982pt;}
.x2b{left:207.386655pt;}
.x17{left:225.954785pt;}
.x16{left:236.601730pt;}
.x25{left:251.266655pt;}
.xf{left:264.866655pt;}
.x37{left:266.146655pt;}
.x12{left:277.666655pt;}
.x13{left:297.826655pt;}
.x11{left:345.986655pt;}
.x28{left:368.413297pt;}
.x5{left:373.346667pt;}
.x35{left:374.786655pt;}
.x10{left:396.866655pt;}
.x36{left:412.546655pt;}
.x1a{left:419.293322pt;}
.x31{left:434.613297pt;}
.x2a{left:480.413322pt;}
.x34{left:524.253322pt;}
.x27{left:571.293322pt;}
.x1b{left:586.693322pt;}
.x2c{left:599.613297pt;}
.x2e{left:626.053322pt;}
.x2f{left:692.546594pt;}
.xa{left:708.933333pt;}
.x30{left:718.213322pt;}
.x3{left:750.720000pt;}
}




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