
    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_11db29628c5c5b087fa7c86c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_79adf5e3fe432bd79231e732.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_883845bfdfb781587bd625e4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_707219121315a71c8184b8ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_7ef41620ed7f41b33e15e2de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_d905c21d24745cba5534ab5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_8d32c5ebb29f9b0c710ff212.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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_05a4cd1ee2b732db640ce174.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.m4{transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250018,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m3{transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249982,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);}
.m2{transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250046,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-75.893905px;}
.v6{vertical-align:-50.400000px;}
.v4{vertical-align:-41.040000px;}
.va{vertical-align:-26.640000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.300000px;}
.v10{vertical-align:13.080000px;}
.vb{vertical-align:26.640000px;}
.v9{vertical-align:32.400000px;}
.v3{vertical-align:41.040000px;}
.vc{vertical-align:43.200000px;}
.v7{vertical-align:50.400000px;}
.vf{vertical-align:69.120000px;}
.vd{vertical-align:75.600000px;}
.ve{vertical-align:86.400000px;}
.v1{vertical-align:90.000000px;}
.v5{vertical-align:91.440000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.298914px;}
.ls20{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.248400px;}
.lse{letter-spacing:-0.238200px;}
.ls22{letter-spacing:-0.234600px;}
.ls18{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.210000px;}
.ls11{letter-spacing:-0.194794px;}
.ls14{letter-spacing:-0.193200px;}
.ls13{letter-spacing:-0.172800px;}
.ls24{letter-spacing:-0.165000px;}
.lsf{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.094800px;}
.ls26{letter-spacing:-0.046080px;}
.ls1f{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.012960px;}
.ls21{letter-spacing:-0.005040px;}
.lsc{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.010080px;}
.ls1b{letter-spacing:0.025532px;}
.ls17{letter-spacing:0.036000px;}
.ls1e{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.128160px;}
.ls1d{letter-spacing:0.157086px;}
.lsb{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.208800px;}
.lsa{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.540000px;}
.ls2{letter-spacing:25.454816px;}
.ls3{letter-spacing:25.539817px;}
.ls4{letter-spacing:31.464000px;}
.ls6{letter-spacing:32.616576px;}
.ls5{letter-spacing:32.653440px;}
.ls9{letter-spacing:95.146560px;}
.ls7{letter-spacing:1096.233840px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-58.308600px;}
.ws5{word-spacing:-44.506800px;}
.ws2{word-spacing:-39.031200px;}
.ws4{word-spacing:-35.100000px;}
.ws8{word-spacing:-32.741280px;}
.ws6{word-spacing:-32.713200px;}
.ws9{word-spacing:-32.464800px;}
.ws16{word-spacing:-25.392250px;}
.ws7{word-spacing:-21.902400px;}
.ws15{word-spacing:-21.528000px;}
.ws1f{word-spacing:-21.240000px;}
.ws10{word-spacing:-21.060000px;}
.ws2d{word-spacing:-20.916000px;}
.ws11{word-spacing:-20.844000px;}
.wsd{word-spacing:-14.040000px;}
.ws18{word-spacing:-13.573607px;}
.ws14{word-spacing:-2.124000px;}
.ws29{word-spacing:-1.080000px;}
.ws30{word-spacing:-1.068000px;}
.ws3e{word-spacing:-1.008000px;}
.ws3f{word-spacing:-0.864000px;}
.ws3d{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.536400px;}
.ws2e{word-spacing:-0.504000px;}
.ws40{word-spacing:-0.288000px;}
.ws1c{word-spacing:-0.252000px;}
.ws4c{word-spacing:0.000000px;}
.ws47{word-spacing:0.063360px;}
.ws2b{word-spacing:0.108000px;}
.ws2a{word-spacing:0.144000px;}
.ws1d{word-spacing:0.180000px;}
.ws48{word-spacing:0.378720px;}
.ws1e{word-spacing:0.396000px;}
.ws49{word-spacing:0.438480px;}
.ws28{word-spacing:0.576000px;}
.ws1{word-spacing:0.660000px;}
.ws2c{word-spacing:0.792000px;}
.ws41{word-spacing:0.972000px;}
.ws4b{word-spacing:1.206360px;}
.ws2f{word-spacing:1.512000px;}
.ws43{word-spacing:2.046360px;}
.ws38{word-spacing:3.096000px;}
.ws1a{word-spacing:3.384000px;}
.ws3a{word-spacing:3.456000px;}
.ws3b{word-spacing:3.708000px;}
.ws3c{word-spacing:3.744000px;}
.ws1b{word-spacing:4.176000px;}
.ws39{word-spacing:4.788000px;}
.wsc{word-spacing:6.264000px;}
.ws23{word-spacing:16.164000px;}
.ws25{word-spacing:16.236000px;}
.ws24{word-spacing:16.524000px;}
.ws27{word-spacing:16.812000px;}
.ws26{word-spacing:17.136000px;}
.ws20{word-spacing:18.900000px;}
.ws22{word-spacing:19.764000px;}
.ws21{word-spacing:20.016000px;}
.ws36{word-spacing:22.968000px;}
.ws34{word-spacing:23.652000px;}
.ws32{word-spacing:23.832000px;}
.ws35{word-spacing:23.940000px;}
.ws37{word-spacing:24.084000px;}
.ws33{word-spacing:24.336000px;}
.ws46{word-spacing:30.613680px;}
.ws45{word-spacing:33.549840px;}
.ws44{word-spacing:36.003960px;}
.ws19{word-spacing:39.780000px;}
.ws42{word-spacing:58.003920px;}
.ws31{word-spacing:118.308000px;}
.ws0{word-spacing:176.580000px;}
.wse{word-spacing:281.340000px;}
.ws17{word-spacing:323.222461px;}
.ws12{word-spacing:333.180000px;}
.ws13{word-spacing:424.224000px;}
.wsf{word-spacing:501.156000px;}
.wsb{word-spacing:684.396000px;}
.wsa{word-spacing:852.732000px;}
._20{margin-left:-1168.580066px;}
._22{margin-left:-3.644640px;}
._2{margin-left:-2.558400px;}
._3{margin-left:-1.158480px;}
._4{width:1.551840px;}
._5{width:3.002895px;}
._6{width:6.133586px;}
._d{width:17.498400px;}
._27{width:20.996160px;}
._25{width:22.140000px;}
._29{width:25.344000px;}
._2a{width:33.811920px;}
._9{width:34.953120px;}
._26{width:41.004000px;}
._28{width:45.940320px;}
._24{width:62.172000px;}
._1{width:279.240000px;}
._0{width:280.800000px;}
._12{width:289.792320px;}
._8{width:290.956224px;}
._10{width:299.408160px;}
._7{width:308.579040px;}
._15{width:330.450480px;}
._c{width:391.407360px;}
._23{width:408.121680px;}
._16{width:411.738480px;}
._1d{width:416.202480px;}
._19{width:444.858480px;}
._13{width:468.618480px;}
._17{width:473.796000px;}
._11{width:491.364000px;}
._18{width:511.052160px;}
._1a{width:518.184000px;}
._14{width:533.484000px;}
._e{width:550.698480px;}
._f{width:573.336000px;}
._1c{width:627.660000px;}
._1b{width:664.164000px;}
._b{width:887.292000px;}
._21{width:925.379337px;}
._a{width:1241.061600px;}
._1f{width:1971.264000px;}
._1e{width:2183.700000px;}
.fc8{color:transparent;}
.fc6{color:rgb(255,102,0);}
.fc5{color:rgb(0,176,240);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,0,0);}
.fc7{color:rgb(31,31,31);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(30,100,200);}
.fs18{font-size:64.073320px;}
.fs14{font-size:66.440673px;}
.fs15{font-size:66.445430px;}
.fs13{font-size:69.608243px;}
.fse{font-size:72.000000px;}
.fs16{font-size:73.556493px;}
.fs11{font-size:74.728439px;}
.fs17{font-size:75.933869px;}
.fsd{font-size:108.000000px;}
.fs10{font-size:112.242116px;}
.fsb{font-size:112.320000px;}
.fsf{font-size:120.240000px;}
.fs12{font-size:144.000000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs5{font-size:168.484469px;}
.fs7{font-size:180.000000px;}
.fsc{font-size:192.240000px;}
.fs2{font-size:200.160000px;}
.fs8{font-size:228.240000px;}
.fs4{font-size:252.726703px;}
.fs6{font-size:257.760000px;}
.fs1{font-size:300.240000px;}
.fs3{font-size:300.384000px;}
.fs0{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:135.540000px;}
.y4e{bottom:135.690000px;}
.y69{bottom:137.371492px;}
.y78{bottom:137.611303px;}
.y14{bottom:161.430000px;}
.y34{bottom:161.460000px;}
.y6f{bottom:162.526393px;}
.y70{bottom:191.985377px;}
.y71{bottom:284.729596px;}
.y6a{bottom:292.588687px;}
.y39{bottom:312.690000px;}
.y77{bottom:319.929072px;}
.y68{bottom:326.543421px;}
.y3d{bottom:358.590000px;}
.y38{bottom:363.090000px;}
.y75{bottom:373.122199px;}
.y72{bottom:377.471180px;}
.y3c{bottom:419.070000px;}
.ya4{bottom:421.845000px;}
.y7e{bottom:463.486498px;}
.y73{bottom:470.017723px;}
.ya3{bottom:472.245000px;}
.y7d{bottom:483.855014px;}
.yc{bottom:501.840000px;}
.y7c{bottom:504.228801px;}
.ya7{bottom:512.535000px;}
.ya2{bottom:522.645000px;}
.y7b{bottom:524.594681px;}
.y7a{bottom:544.963197px;}
.y74{bottom:562.759308px;}
.ya6{bottom:562.935000px;}
.y79{bottom:565.329077px;}
.yb{bottom:565.560000px;}
.ya1{bottom:573.045000px;}
.y76{bottom:603.691322px;}
.ya5{bottom:613.335000px;}
.y22{bottom:615.090000px;}
.ya{bottom:619.560000px;}
.ye{bottom:654.690000px;}
.y21{bottom:665.490000px;}
.y67{bottom:676.428201px;}
.y9{bottom:678.240000px;}
.ya0{bottom:703.770000px;}
.y1f{bottom:715.890000px;}
.y2f{bottom:721.470000px;}
.y92{bottom:764.250000px;}
.y1e{bottom:766.290000px;}
.y91{bottom:796.650000px;}
.y11{bottom:822.930000px;}
.y8e{bottom:829.080000px;}
.y66{bottom:839.751563px;}
.y8d{bottom:861.480000px;}
.y10{bottom:883.410000px;}
.y8c{bottom:893.880000px;}
.y2a{bottom:902.910000px;}
.ya8{bottom:943.950000px;}
.yf{bottom:949.290000px;}
.y29{bottom:963.390000px;}
.y27{bottom:1023.870000px;}
.y9e{bottom:1042.050000px;}
.y65{bottom:1043.640000px;}
.y1c{bottom:1068.660000px;}
.y25{bottom:1084.350000px;}
.y9d{bottom:1092.450000px;}
.y1b{bottom:1119.090000px;}
.y98{bottom:1138.575000px;}
.y9c{bottom:1142.850000px;}
.y24{bottom:1144.830000px;}
.y1a{bottom:1169.490000px;}
.y97{bottom:1170.975000px;}
.y9b{bottom:1193.250000px;}
.y96{bottom:1203.375000px;}
.y19{bottom:1219.890000px;}
.y95{bottom:1235.775000px;}
.y9a{bottom:1243.650000px;}
.y94{bottom:1268.175000px;}
.y18{bottom:1270.290000px;}
.y99{bottom:1294.050000px;}
.y93{bottom:1300.575000px;}
.y17{bottom:1320.690000px;}
.y9f{bottom:1353.450000px;}
.y4b{bottom:1363.170000px;}
.y16{bottom:1371.090000px;}
.y60{bottom:1431.105000px;}
.y6d{bottom:1589.685000px;}
.y58{bottom:1647.540000px;}
.y90{bottom:1675.080000px;}
.y8f{bottom:1707.480000px;}
.y5a{bottom:1783.080000px;}
.y57{bottom:1826.280000px;}
.y56{bottom:1847.880000px;}
.y55{bottom:1891.080000px;}
.y15{bottom:1910.880000px;}
.y8b{bottom:1912.605000px;}
.y54{bottom:1912.680000px;}
.y8a{bottom:1941.735000px;}
.y53{bottom:1955.730000px;}
.y89{bottom:1992.960000px;}
.y52{bottom:1998.750000px;}
.y4d{bottom:2035.260000px;}
.y51{bottom:2041.815000px;}
.y50{bottom:2084.865000px;}
.y6e{bottom:2123.865000px;}
.y4f{bottom:2127.885000px;}
.y23{bottom:2131.920000px;}
.y88{bottom:2136.135000px;}
.y87{bottom:2168.535000px;}
.y4c{bottom:2170.950000px;}
.y86{bottom:2200.935000px;}
.y6c{bottom:2248.485000px;}
.y85{bottom:2304.975000px;}
.y84{bottom:2337.375000px;}
.y83{bottom:2369.775000px;}
.y2d{bottom:2373.840000px;}
.y5f{bottom:2410.020000px;}
.y5e{bottom:2458.620000px;}
.y5d{bottom:2507.220000px;}
.y1d{bottom:2515.680000px;}
.y35{bottom:2516.760000px;}
.y64{bottom:2530.905000px;}
.y5c{bottom:2555.820000px;}
.y63{bottom:2559.990000px;}
.y62{bottom:2588.370000px;}
.y5b{bottom:2604.420000px;}
.y61{bottom:2616.765000px;}
.y80{bottom:2665.110000px;}
.y6b{bottom:2673.000000px;}
.y82{bottom:2673.870000px;}
.y7f{bottom:2680.230000px;}
.y81{bottom:2706.270000px;}
.y4a{bottom:2759.580000px;}
.y30{bottom:2855.445000px;}
.y3b{bottom:2858.760000px;}
.y37{bottom:2919.960000px;}
.y2b{bottom:3024.570000px;}
.y42{bottom:3035.910000px;}
.y41{bottom:3096.390000px;}
.y28{bottom:3145.530000px;}
.y2e{bottom:3155.790000px;}
.y40{bottom:3156.870000px;}
.y13{bottom:3204.720000px;}
.y33{bottom:3205.800000px;}
.y26{bottom:3216.270000px;}
.y3f{bottom:3217.350000px;}
.y20{bottom:3221.310000px;}
.y3a{bottom:3232.650000px;}
.y2c{bottom:3276.750000px;}
.y3e{bottom:3277.830000px;}
.y36{bottom:3283.050000px;}
.y49{bottom:3350.055000px;}
.y12{bottom:3366.150000px;}
.y32{bottom:3367.260000px;}
.y31{bottom:3473.355000px;}
.y48{bottom:3597.195000px;}
.y47{bottom:3647.595000px;}
.y46{bottom:3697.995000px;}
.y45{bottom:3748.395000px;}
.y44{bottom:3798.825000px;}
.y43{bottom:3849.225000px;}
.yd{bottom:3932.925000px;}
.y8{bottom:4096.260000px;}
.y7{bottom:4163.760000px;}
.y6{bottom:4213.260000px;}
.y5{bottom:4235.760000px;}
.y4{bottom:4283.130000px;}
.y3{bottom:4350.630000px;}
.y2{bottom:4476.345000px;}
.y1{bottom:4633.845000px;}
.h28{height:46.928701px;}
.h24{height:48.370627px;}
.h25{height:48.374090px;}
.h20{height:50.609543px;}
.h23{height:50.982600px;}
.h26{height:53.874385px;}
.h27{height:55.615626px;}
.h17{height:79.101562px;}
.h19{height:85.134375px;}
.h1d{height:88.066406px;}
.h2a{height:92.181562px;}
.h21{height:105.468750px;}
.h1f{height:111.639253px;}
.ha{height:122.871094px;}
.hd{height:122.976562px;}
.h6{height:123.401711px;}
.h1a{height:128.334375px;}
.h8{height:131.835938px;}
.h15{height:132.665625px;}
.h16{height:140.800781px;}
.h4{height:146.601562px;}
.h29{height:148.221562px;}
.hf{height:163.911094px;}
.h1b{height:165.501562px;}
.h9{height:167.167969px;}
.h11{height:173.705625px;}
.h5{height:185.102566px;}
.h7{height:188.789062px;}
.h3{height:236.601562px;}
.h1c{height:301.320000px;}
.h18{height:301.500000px;}
.hb{height:352.980000px;}
.h2{height:395.507812px;}
.h22{height:609.028634px;}
.h13{height:705.780000px;}
.h1e{height:711.227919px;}
.h14{height:812.880000px;}
.he{height:1411.380000px;}
.h12{height:1659.600000px;}
.h10{height:2082.960000px;}
.hc{height:2469.780000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w8{width:219.600000px;}
.w7{width:232.920000px;}
.w5{width:243.900000px;}
.w6{width:245.340000px;}
.w4{width:258.120000px;}
.w3{width:258.300000px;}
.w9{width:348.120000px;}
.wb{width:791.829983px;}
.wa{width:969.219362px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xc{left:10.950000px;}
.x9{left:14.475000px;}
.xf{left:21.810000px;}
.x16{left:31.350000px;}
.x3d{left:34.401036px;}
.x3e{left:35.587006px;}
.x3f{left:37.956310px;}
.x40{left:39.150187px;}
.x3c{left:115.856089px;}
.x44{left:118.038274px;}
.x15{left:159.915000px;}
.xb{left:178.200000px;}
.x1{left:185.579947px;}
.x20{left:189.149947px;}
.x4d{left:200.414947px;}
.x2e{left:206.460000px;}
.x35{left:207.597421px;}
.x2{left:211.139947px;}
.x3a{left:218.264947px;}
.x7{left:224.489947px;}
.x4{left:230.474947px;}
.x28{left:235.829947px;}
.x37{left:248.977058px;}
.x2a{left:262.649947px;}
.x43{left:267.304454px;}
.x2c{left:275.609947px;}
.x29{left:281.189947px;}
.x38{left:299.926323px;}
.x42{left:316.140062px;}
.x27{left:329.069947px;}
.x30{left:330.510000px;}
.x24{left:356.969947px;}
.x26{left:367.769947px;}
.xd{left:436.140000px;}
.x36{left:453.739505px;}
.x2f{left:463.169947px;}
.xe{left:468.359947px;}
.x41{left:588.984314px;}
.x3b{left:592.590000px;}
.x31{left:607.709947px;}
.x39{left:635.145038px;}
.x2d{left:657.209947px;}
.x2b{left:659.549947px;}
.x8{left:694.080000px;}
.x12{left:768.989947px;}
.x10{left:809.669947px;}
.x11{left:886.889947px;}
.x14{left:952.200000px;}
.x13{left:983.549947px;}
.xa{left:986.324947px;}
.x25{left:1006.020000px;}
.x4c{left:1278.434947px;}
.x21{left:1285.814947px;}
.x49{left:1287.284947px;}
.x48{left:1292.144947px;}
.x4a{left:1294.994947px;}
.x45{left:1304.849947px;}
.x52{left:1306.649947px;}
.x23{left:1317.134947px;}
.x32{left:1449.149947px;}
.x22{left:1579.064947px;}
.x34{left:1698.869947px;}
.x46{left:2068.379947px;}
.x4e{left:2124.929947px;}
.x33{left:2265.299947px;}
.x5{left:2375.069947px;}
.x1a{left:2396.520000px;}
.x17{left:2422.904947px;}
.x6{left:2453.429947px;}
.x3{left:2465.714947px;}
.x53{left:2482.919947px;}
.x1b{left:2485.154947px;}
.x4f{left:2506.499947px;}
.x51{left:2530.364947px;}
.x50{left:2546.999947px;}
.x1c{left:2641.680000px;}
.x1e{left:2690.024947px;}
.x1d{left:2752.664947px;}
.x47{left:2771.534947px;}
.x4b{left:2829.749947px;}
.x18{left:2874.420000px;}
.x1f{left:3149.639947px;}
.x19{left:3237.914947px;}
@media print{
.v2{vertical-align:-67.461249pt;}
.v6{vertical-align:-44.800000pt;}
.v4{vertical-align:-36.480000pt;}
.va{vertical-align:-23.680000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.600000pt;}
.v10{vertical-align:11.626667pt;}
.vb{vertical-align:23.680000pt;}
.v9{vertical-align:28.800000pt;}
.v3{vertical-align:36.480000pt;}
.vc{vertical-align:38.400000pt;}
.v7{vertical-align:44.800000pt;}
.vf{vertical-align:61.440000pt;}
.vd{vertical-align:67.200000pt;}
.ve{vertical-align:76.800000pt;}
.v1{vertical-align:80.000000pt;}
.v5{vertical-align:81.280000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.265701pt;}
.ls20{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.220800pt;}
.lse{letter-spacing:-0.211733pt;}
.ls22{letter-spacing:-0.208533pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.186667pt;}
.ls11{letter-spacing:-0.173151pt;}
.ls14{letter-spacing:-0.171733pt;}
.ls13{letter-spacing:-0.153600pt;}
.ls24{letter-spacing:-0.146667pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.084267pt;}
.ls26{letter-spacing:-0.040960pt;}
.ls1f{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.011520pt;}
.ls21{letter-spacing:-0.004480pt;}
.lsc{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.008960pt;}
.ls1b{letter-spacing:0.022695pt;}
.ls17{letter-spacing:0.032000pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.113920pt;}
.ls1d{letter-spacing:0.139632pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.185600pt;}
.lsa{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls2{letter-spacing:22.626503pt;}
.ls3{letter-spacing:22.702059pt;}
.ls4{letter-spacing:27.968000pt;}
.ls6{letter-spacing:28.992512pt;}
.ls5{letter-spacing:29.025280pt;}
.ls9{letter-spacing:84.574720pt;}
.ls7{letter-spacing:974.430080pt;}
.ws3{word-spacing:-51.829867pt;}
.ws5{word-spacing:-39.561600pt;}
.ws2{word-spacing:-34.694400pt;}
.ws4{word-spacing:-31.200000pt;}
.ws8{word-spacing:-29.103360pt;}
.ws6{word-spacing:-29.078400pt;}
.ws9{word-spacing:-28.857600pt;}
.ws16{word-spacing:-22.570889pt;}
.ws7{word-spacing:-19.468800pt;}
.ws15{word-spacing:-19.136000pt;}
.ws1f{word-spacing:-18.880000pt;}
.ws10{word-spacing:-18.720000pt;}
.ws2d{word-spacing:-18.592000pt;}
.ws11{word-spacing:-18.528000pt;}
.wsd{word-spacing:-12.480000pt;}
.ws18{word-spacing:-12.065429pt;}
.ws14{word-spacing:-1.888000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.949333pt;}
.ws3e{word-spacing:-0.896000pt;}
.ws3f{word-spacing:-0.768000pt;}
.ws3d{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.476800pt;}
.ws2e{word-spacing:-0.448000pt;}
.ws40{word-spacing:-0.256000pt;}
.ws1c{word-spacing:-0.224000pt;}
.ws4c{word-spacing:0.000000pt;}
.ws47{word-spacing:0.056320pt;}
.ws2b{word-spacing:0.096000pt;}
.ws2a{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.160000pt;}
.ws48{word-spacing:0.336640pt;}
.ws1e{word-spacing:0.352000pt;}
.ws49{word-spacing:0.389760pt;}
.ws28{word-spacing:0.512000pt;}
.ws1{word-spacing:0.586667pt;}
.ws2c{word-spacing:0.704000pt;}
.ws41{word-spacing:0.864000pt;}
.ws4b{word-spacing:1.072320pt;}
.ws2f{word-spacing:1.344000pt;}
.ws43{word-spacing:1.818987pt;}
.ws38{word-spacing:2.752000pt;}
.ws1a{word-spacing:3.008000pt;}
.ws3a{word-spacing:3.072000pt;}
.ws3b{word-spacing:3.296000pt;}
.ws3c{word-spacing:3.328000pt;}
.ws1b{word-spacing:3.712000pt;}
.ws39{word-spacing:4.256000pt;}
.wsc{word-spacing:5.568000pt;}
.ws23{word-spacing:14.368000pt;}
.ws25{word-spacing:14.432000pt;}
.ws24{word-spacing:14.688000pt;}
.ws27{word-spacing:14.944000pt;}
.ws26{word-spacing:15.232000pt;}
.ws20{word-spacing:16.800000pt;}
.ws22{word-spacing:17.568000pt;}
.ws21{word-spacing:17.792000pt;}
.ws36{word-spacing:20.416000pt;}
.ws34{word-spacing:21.024000pt;}
.ws32{word-spacing:21.184000pt;}
.ws35{word-spacing:21.280000pt;}
.ws37{word-spacing:21.408000pt;}
.ws33{word-spacing:21.632000pt;}
.ws46{word-spacing:27.212160pt;}
.ws45{word-spacing:29.822080pt;}
.ws44{word-spacing:32.003520pt;}
.ws19{word-spacing:35.360000pt;}
.ws42{word-spacing:51.559040pt;}
.ws31{word-spacing:105.162667pt;}
.ws0{word-spacing:156.960000pt;}
.wse{word-spacing:250.080000pt;}
.ws17{word-spacing:287.308854pt;}
.ws12{word-spacing:296.160000pt;}
.ws13{word-spacing:377.088000pt;}
.wsf{word-spacing:445.472000pt;}
.wsb{word-spacing:608.352000pt;}
.wsa{word-spacing:757.984000pt;}
._20{margin-left:-1038.737836pt;}
._22{margin-left:-3.239680pt;}
._2{margin-left:-2.274133pt;}
._3{margin-left:-1.029760pt;}
._4{width:1.379413pt;}
._5{width:2.669240pt;}
._6{width:5.452076pt;}
._d{width:15.554133pt;}
._27{width:18.663253pt;}
._25{width:19.680000pt;}
._29{width:22.528000pt;}
._2a{width:30.055040pt;}
._9{width:31.069440pt;}
._26{width:36.448000pt;}
._28{width:40.835840pt;}
._24{width:55.264000pt;}
._1{width:248.213333pt;}
._0{width:249.600000pt;}
._12{width:257.593173pt;}
._8{width:258.627755pt;}
._10{width:266.140587pt;}
._7{width:274.292480pt;}
._15{width:293.733760pt;}
._c{width:347.917653pt;}
._23{width:362.774827pt;}
._16{width:365.989760pt;}
._1d{width:369.957760pt;}
._19{width:395.429760pt;}
._13{width:416.549760pt;}
._17{width:421.152000pt;}
._11{width:436.768000pt;}
._18{width:454.268587pt;}
._1a{width:460.608000pt;}
._14{width:474.208000pt;}
._e{width:489.509760pt;}
._f{width:509.632000pt;}
._1c{width:557.920000pt;}
._1b{width:590.368000pt;}
._b{width:788.704000pt;}
._21{width:822.559410pt;}
._a{width:1103.165867pt;}
._1f{width:1752.234667pt;}
._1e{width:1941.066667pt;}
.fs18{font-size:56.954062pt;}
.fs14{font-size:59.058376pt;}
.fs15{font-size:59.062604pt;}
.fs13{font-size:61.873993pt;}
.fse{font-size:64.000000pt;}
.fs16{font-size:65.383550pt;}
.fs11{font-size:66.425279pt;}
.fs17{font-size:67.496772pt;}
.fsd{font-size:96.000000pt;}
.fs10{font-size:99.770769pt;}
.fsb{font-size:99.840000pt;}
.fsf{font-size:106.880000pt;}
.fs12{font-size:128.000000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs5{font-size:149.763972pt;}
.fs7{font-size:160.000000pt;}
.fsc{font-size:170.880000pt;}
.fs2{font-size:177.920000pt;}
.fs8{font-size:202.880000pt;}
.fs4{font-size:224.645959pt;}
.fs6{font-size:229.120000pt;}
.fs1{font-size:266.880000pt;}
.fs3{font-size:267.008000pt;}
.fs0{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:120.480000pt;}
.y4e{bottom:120.613333pt;}
.y69{bottom:122.107992pt;}
.y78{bottom:122.321158pt;}
.y14{bottom:143.493333pt;}
.y34{bottom:143.520000pt;}
.y6f{bottom:144.467905pt;}
.y70{bottom:170.653669pt;}
.y71{bottom:253.092975pt;}
.y6a{bottom:260.078833pt;}
.y39{bottom:277.946667pt;}
.y77{bottom:284.381397pt;}
.y68{bottom:290.260819pt;}
.y3d{bottom:318.746667pt;}
.y38{bottom:322.746667pt;}
.y75{bottom:331.664177pt;}
.y72{bottom:335.529938pt;}
.y3c{bottom:372.506667pt;}
.ya4{bottom:374.973333pt;}
.y7e{bottom:411.987999pt;}
.y73{bottom:417.793532pt;}
.ya3{bottom:419.773333pt;}
.y7d{bottom:430.093346pt;}
.yc{bottom:446.080000pt;}
.y7c{bottom:448.203379pt;}
.ya7{bottom:455.586667pt;}
.ya2{bottom:464.573333pt;}
.y7b{bottom:466.306383pt;}
.y7a{bottom:484.411730pt;}
.y74{bottom:500.230496pt;}
.ya6{bottom:500.386667pt;}
.y79{bottom:502.514735pt;}
.yb{bottom:502.720000pt;}
.ya1{bottom:509.373333pt;}
.y76{bottom:536.614508pt;}
.ya5{bottom:545.186667pt;}
.y22{bottom:546.746667pt;}
.ya{bottom:550.720000pt;}
.ye{bottom:581.946667pt;}
.y21{bottom:591.546667pt;}
.y67{bottom:601.269512pt;}
.y9{bottom:602.880000pt;}
.ya0{bottom:625.573333pt;}
.y1f{bottom:636.346667pt;}
.y2f{bottom:641.306667pt;}
.y92{bottom:679.333333pt;}
.y1e{bottom:681.146667pt;}
.y91{bottom:708.133333pt;}
.y11{bottom:731.493333pt;}
.y8e{bottom:736.960000pt;}
.y66{bottom:746.445834pt;}
.y8d{bottom:765.760000pt;}
.y10{bottom:785.253333pt;}
.y8c{bottom:794.560000pt;}
.y2a{bottom:802.586667pt;}
.ya8{bottom:839.066667pt;}
.yf{bottom:843.813333pt;}
.y29{bottom:856.346667pt;}
.y27{bottom:910.106667pt;}
.y9e{bottom:926.266667pt;}
.y65{bottom:927.680000pt;}
.y1c{bottom:949.920000pt;}
.y25{bottom:963.866667pt;}
.y9d{bottom:971.066667pt;}
.y1b{bottom:994.746667pt;}
.y98{bottom:1012.066667pt;}
.y9c{bottom:1015.866667pt;}
.y24{bottom:1017.626667pt;}
.y1a{bottom:1039.546667pt;}
.y97{bottom:1040.866667pt;}
.y9b{bottom:1060.666667pt;}
.y96{bottom:1069.666667pt;}
.y19{bottom:1084.346667pt;}
.y95{bottom:1098.466667pt;}
.y9a{bottom:1105.466667pt;}
.y94{bottom:1127.266667pt;}
.y18{bottom:1129.146667pt;}
.y99{bottom:1150.266667pt;}
.y93{bottom:1156.066667pt;}
.y17{bottom:1173.946667pt;}
.y9f{bottom:1203.066667pt;}
.y4b{bottom:1211.706667pt;}
.y16{bottom:1218.746667pt;}
.y60{bottom:1272.093333pt;}
.y6d{bottom:1413.053333pt;}
.y58{bottom:1464.480000pt;}
.y90{bottom:1488.960000pt;}
.y8f{bottom:1517.760000pt;}
.y5a{bottom:1584.960000pt;}
.y57{bottom:1623.360000pt;}
.y56{bottom:1642.560000pt;}
.y55{bottom:1680.960000pt;}
.y15{bottom:1698.560000pt;}
.y8b{bottom:1700.093333pt;}
.y54{bottom:1700.160000pt;}
.y8a{bottom:1725.986667pt;}
.y53{bottom:1738.426667pt;}
.y89{bottom:1771.520000pt;}
.y52{bottom:1776.666667pt;}
.y4d{bottom:1809.120000pt;}
.y51{bottom:1814.946667pt;}
.y50{bottom:1853.213333pt;}
.y6e{bottom:1887.880000pt;}
.y4f{bottom:1891.453333pt;}
.y23{bottom:1895.040000pt;}
.y88{bottom:1898.786667pt;}
.y87{bottom:1927.586667pt;}
.y4c{bottom:1929.733333pt;}
.y86{bottom:1956.386667pt;}
.y6c{bottom:1998.653333pt;}
.y85{bottom:2048.866667pt;}
.y84{bottom:2077.666667pt;}
.y83{bottom:2106.466667pt;}
.y2d{bottom:2110.080000pt;}
.y5f{bottom:2142.240000pt;}
.y5e{bottom:2185.440000pt;}
.y5d{bottom:2228.640000pt;}
.y1d{bottom:2236.160000pt;}
.y35{bottom:2237.120000pt;}
.y64{bottom:2249.693333pt;}
.y5c{bottom:2271.840000pt;}
.y63{bottom:2275.546667pt;}
.y62{bottom:2300.773333pt;}
.y5b{bottom:2315.040000pt;}
.y61{bottom:2326.013333pt;}
.y80{bottom:2368.986667pt;}
.y6b{bottom:2376.000000pt;}
.y82{bottom:2376.773333pt;}
.y7f{bottom:2382.426667pt;}
.y81{bottom:2405.573333pt;}
.y4a{bottom:2452.960000pt;}
.y30{bottom:2538.173333pt;}
.y3b{bottom:2541.120000pt;}
.y37{bottom:2595.520000pt;}
.y2b{bottom:2688.506667pt;}
.y42{bottom:2698.586667pt;}
.y41{bottom:2752.346667pt;}
.y28{bottom:2796.026667pt;}
.y2e{bottom:2805.146667pt;}
.y40{bottom:2806.106667pt;}
.y13{bottom:2848.640000pt;}
.y33{bottom:2849.600000pt;}
.y26{bottom:2858.906667pt;}
.y3f{bottom:2859.866667pt;}
.y20{bottom:2863.386667pt;}
.y3a{bottom:2873.466667pt;}
.y2c{bottom:2912.666667pt;}
.y3e{bottom:2913.626667pt;}
.y36{bottom:2918.266667pt;}
.y49{bottom:2977.826667pt;}
.y12{bottom:2992.133333pt;}
.y32{bottom:2993.120000pt;}
.y31{bottom:3087.426667pt;}
.y48{bottom:3197.506667pt;}
.y47{bottom:3242.306667pt;}
.y46{bottom:3287.106667pt;}
.y45{bottom:3331.906667pt;}
.y44{bottom:3376.733333pt;}
.y43{bottom:3421.533333pt;}
.yd{bottom:3495.933333pt;}
.y8{bottom:3641.120000pt;}
.y7{bottom:3701.120000pt;}
.y6{bottom:3745.120000pt;}
.y5{bottom:3765.120000pt;}
.y4{bottom:3807.226667pt;}
.y3{bottom:3867.226667pt;}
.y2{bottom:3978.973333pt;}
.y1{bottom:4118.973333pt;}
.h28{height:41.714401pt;}
.h24{height:42.996113pt;}
.h25{height:42.999191pt;}
.h20{height:44.986261pt;}
.h23{height:45.317866pt;}
.h26{height:47.888342pt;}
.h27{height:49.436112pt;}
.h17{height:70.312500pt;}
.h19{height:75.675000pt;}
.h1d{height:78.281250pt;}
.h2a{height:81.939167pt;}
.h21{height:93.750000pt;}
.h1f{height:99.234891pt;}
.ha{height:109.218750pt;}
.hd{height:109.312500pt;}
.h6{height:109.690409pt;}
.h1a{height:114.075000pt;}
.h8{height:117.187500pt;}
.h15{height:117.925000pt;}
.h16{height:125.156250pt;}
.h4{height:130.312500pt;}
.h29{height:131.752500pt;}
.hf{height:145.698750pt;}
.h1b{height:147.112500pt;}
.h9{height:148.593750pt;}
.h11{height:154.405000pt;}
.h5{height:164.535614pt;}
.h7{height:167.812500pt;}
.h3{height:210.312500pt;}
.h1c{height:267.840000pt;}
.h18{height:268.000000pt;}
.hb{height:313.760000pt;}
.h2{height:351.562500pt;}
.h22{height:541.358786pt;}
.h13{height:627.360000pt;}
.h1e{height:632.202595pt;}
.h14{height:722.560000pt;}
.he{height:1254.560000pt;}
.h12{height:1475.200000pt;}
.h10{height:1851.520000pt;}
.hc{height:2195.360000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w8{width:195.200000pt;}
.w7{width:207.040000pt;}
.w5{width:216.800000pt;}
.w6{width:218.080000pt;}
.w4{width:229.440000pt;}
.w3{width:229.600000pt;}
.w9{width:309.440000pt;}
.wb{width:703.848874pt;}
.wa{width:861.528322pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xc{left:9.733333pt;}
.x9{left:12.866667pt;}
.xf{left:19.386667pt;}
.x16{left:27.866667pt;}
.x3d{left:30.578698pt;}
.x3e{left:31.632894pt;}
.x3f{left:33.738942pt;}
.x40{left:34.800166pt;}
.x3c{left:102.983190pt;}
.x44{left:104.922910pt;}
.x15{left:142.146667pt;}
.xb{left:158.400000pt;}
.x1{left:164.959953pt;}
.x20{left:168.133286pt;}
.x4d{left:178.146619pt;}
.x2e{left:183.520000pt;}
.x35{left:184.531041pt;}
.x2{left:187.679953pt;}
.x3a{left:194.013286pt;}
.x7{left:199.546619pt;}
.x4{left:204.866619pt;}
.x28{left:209.626619pt;}
.x37{left:221.312941pt;}
.x2a{left:233.466619pt;}
.x43{left:237.603959pt;}
.x2c{left:244.986619pt;}
.x29{left:249.946619pt;}
.x38{left:266.601176pt;}
.x42{left:281.013389pt;}
.x27{left:292.506619pt;}
.x30{left:293.786667pt;}
.x24{left:317.306619pt;}
.x26{left:326.906619pt;}
.xd{left:387.680000pt;}
.x36{left:403.324004pt;}
.x2f{left:411.706619pt;}
.xe{left:416.319953pt;}
.x41{left:523.541613pt;}
.x3b{left:526.746667pt;}
.x31{left:540.186619pt;}
.x39{left:564.573367pt;}
.x2d{left:584.186619pt;}
.x2b{left:586.266619pt;}
.x8{left:616.960000pt;}
.x12{left:683.546619pt;}
.x10{left:719.706619pt;}
.x11{left:788.346619pt;}
.x14{left:846.400000pt;}
.x13{left:874.266619pt;}
.xa{left:876.733286pt;}
.x25{left:894.240000pt;}
.x4c{left:1136.386619pt;}
.x21{left:1142.946619pt;}
.x49{left:1144.253286pt;}
.x48{left:1148.573286pt;}
.x4a{left:1151.106619pt;}
.x45{left:1159.866619pt;}
.x52{left:1161.466619pt;}
.x23{left:1170.786619pt;}
.x32{left:1288.133286pt;}
.x22{left:1403.613286pt;}
.x34{left:1510.106619pt;}
.x46{left:1838.559953pt;}
.x4e{left:1888.826619pt;}
.x33{left:2013.599953pt;}
.x5{left:2111.173286pt;}
.x1a{left:2130.240000pt;}
.x17{left:2153.693286pt;}
.x6{left:2180.826619pt;}
.x3{left:2191.746619pt;}
.x53{left:2207.039953pt;}
.x1b{left:2209.026619pt;}
.x4f{left:2227.999953pt;}
.x51{left:2249.213286pt;}
.x50{left:2263.999953pt;}
.x1c{left:2348.160000pt;}
.x1e{left:2391.133286pt;}
.x1d{left:2446.813286pt;}
.x47{left:2463.586619pt;}
.x4b{left:2515.333286pt;}
.x18{left:2555.040000pt;}
.x1f{left:2799.679953pt;}
.x19{left:2878.146619pt;}
}




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