
    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_b0c279ef8f4747e3b85bd9c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_2dddab4aa01c213f9e6c8c34.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740000;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_843fed1e433b871211820ebb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_2cf486c23f0962b7c9c3a743.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_cfa439747027febc05f53b8f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740000;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_46d7ac65e07b80c9c6d05065.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710000;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_8b5a26aaa7a49dac61ad1424.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.678000;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_201e2514e6e7a6ed68c34451.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678000;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_5fd76b2a1fbdb510d67c4962.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040000;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_621392e9761939d7c9096f62.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.143000;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_6d281e2ef32737e3883c5cd1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.145000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6aea699fdc780303634b6a28.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.138000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0213689cb010b8d1ba7101b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.140000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c760bd00ae7e58229d8638d2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_eda7c57663c13ea31f4f60dc.woff2')format("woff");}.fff{font-family:fff;line-height:1.140000;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:ff10;src:url('chunks/assets/font_573073df3a5d84906294a55a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.140000;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:ff11;src:url('chunks/assets/font_6e936a34c7933da9b272883f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.141000;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:ff12;src:url('chunks/assets/font_2c8201b492360efc8173a3d4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.141000;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:ff13;src:url('chunks/assets/font_461b487c3bf4a854c58e7ddc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.140000;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:ff14;src:url('chunks/assets/font_3a3bc74f726e8a43a80fe162.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.141000;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:ff15;src:url('chunks/assets/font_d47de955a97ac75caa4cec80.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.130000;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:ff16;src:url('chunks/assets/font_3fb79c1f4154dd5f5498b214.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.963000;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;}
.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);}
.v2{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v3{vertical-align:33.000000px;}
.ls4{letter-spacing:-0.315000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.382837px;}
.ls1{letter-spacing:1.739907px;}
.ls5{letter-spacing:5.685600px;}
.ls6{letter-spacing:16.756200px;}
.ls2{letter-spacing:35.408084px;}
.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;}
}
.ws0{word-spacing:-155.031437px;}
.ws2{word-spacing:-110.584484px;}
.ws17{word-spacing:-25.920000px;}
.ws4{word-spacing:-15.840000px;}
.ws18{word-spacing:-15.420000px;}
.ws8{word-spacing:-13.770000px;}
.ws13{word-spacing:-13.338000px;}
.ws5{word-spacing:-12.240000px;}
.wsd{word-spacing:-3.036000px;}
.ws1a{word-spacing:-2.640000px;}
.ws1b{word-spacing:-2.520000px;}
.ws1d{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.836000px;}
.ws6{word-spacing:-1.620000px;}
.wse{word-spacing:-1.512000px;}
.ws16{word-spacing:-1.350000px;}
.ws15{word-spacing:-1.242000px;}
.ws1c{word-spacing:-0.780000px;}
.wsf{word-spacing:-0.648000px;}
.ws7{word-spacing:-0.360000px;}
.ws1{word-spacing:-0.164475px;}
.wsa{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:0.315000px;}
.ws11{word-spacing:5.346000px;}
.ws19{word-spacing:8.700000px;}
.wsb{word-spacing:63.729600px;}
.ws10{word-spacing:66.591600px;}
.wsc{word-spacing:82.305600px;}
.ws12{word-spacing:279.373200px;}
._2{margin-left:-35.408084px;}
._32{margin-left:-15.620888px;}
._2e{margin-left:-14.472364px;}
._16{margin-left:-11.385163px;}
._30{margin-left:-8.399393px;}
._2d{margin-left:-7.388737px;}
._14{margin-left:-6.167563px;}
._1{margin-left:-4.440825px;}
._3{margin-left:-3.358800px;}
._0{margin-left:-1.382837px;}
._5{width:1.032875px;}
._6{width:2.392576px;}
._10{width:3.499424px;}
._d{width:5.216837px;}
._b{width:7.056000px;}
._c{width:8.081675px;}
._12{width:10.079675px;}
._8{width:11.184000px;}
._a{width:12.206837px;}
._f{width:13.254325px;}
._9{width:14.408837px;}
._23{width:15.576000px;}
._e{width:16.932000px;}
._31{width:18.986837px;}
._11{width:20.094000px;}
._15{width:22.287000px;}
._2f{width:23.912837px;}
._7{width:35.856000px;}
._13{width:39.567000px;}
._4{width:43.776000px;}
._33{width:49.439675px;}
._1a{width:62.302200px;}
._20{width:69.696600px;}
._27{width:74.940825px;}
._21{width:81.009600px;}
._1e{width:95.940600px;}
._1f{width:100.374437px;}
._1c{width:118.608875px;}
._1b{width:132.825712px;}
._29{width:141.618000px;}
._18{width:147.156000px;}
._2a{width:185.282237px;}
._26{width:191.969350px;}
._1d{width:206.971037px;}
._2c{width:239.228237px;}
._28{width:265.278600px;}
._25{width:338.016000px;}
._2b{width:356.430000px;}
._19{width:1908.278237px;}
._24{width:1909.843637px;}
._17{width:1912.165637px;}
._22{width:1917.619637px;}
.fc6{color:transparent;}
.fc5{color:rgb(141,2,9);}
.fc4{color:rgb(143,27,89);}
.fc3{color:rgb(174,15,10);}
.fc1{color:rgb(60,60,59);}
.fc8{color:rgb(51,51,51);}
.fc7{color:rgb(128,128,128);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.227600px;}
.fsc{font-size:34.980000px;}
.fs11{font-size:36.000000px;}
.fse{font-size:48.000000px;}
.fs10{font-size:54.000000px;}
.fsb{font-size:60.000000px;}
.fs12{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs5{font-size:75.176400px;}
.fs13{font-size:84.000000px;}
.fsf{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs4{font-size:115.993800px;}
.fs3{font-size:117.587400px;}
.fs1{font-size:153.648600px;}
.fs2{font-size:164.475000px;}
.fs6{font-size:178.113600px;}
.fs8{font-size:243.038400px;}
.fs7{font-size:279.129600px;}
.fs0{font-size:329.982600px;}
.y0{bottom:0.000000px;}
.ye{bottom:4.525534px;}
.y9{bottom:9.608244px;}
.yb{bottom:9.812250px;}
.y10{bottom:10.212000px;}
.y7{bottom:11.987700px;}
.y5{bottom:12.381900px;}
.y13{bottom:15.036450px;}
.yd{bottom:18.696285px;}
.y3{bottom:19.910142px;}
.y33{bottom:59.820300px;}
.y34{bottom:60.382800px;}
.y1e{bottom:127.559100px;}
.ya7{bottom:129.978450px;}
.y2{bottom:134.496600px;}
.y77{bottom:135.165300px;}
.y14d{bottom:144.072450px;}
.y1d{bottom:145.559100px;}
.yf4{bottom:148.923450px;}
.y94{bottom:153.505950px;}
.ya6{bottom:156.978450px;}
.yc5{bottom:158.613000px;}
.y76{bottom:162.165300px;}
.yea{bottom:164.479650px;}
.y14c{bottom:171.072450px;}
.yf3{bottom:175.923450px;}
.y1c{bottom:176.315100px;}
.yc4{bottom:178.113000px;}
.y93{bottom:180.505950px;}
.y122{bottom:183.928950px;}
.y181{bottom:184.573200px;}
.y75{bottom:189.165300px;}
.ye9{bottom:191.479650px;}
.ya5{bottom:192.482250px;}
.y1b{bottom:194.315100px;}
.ya{bottom:195.096000px;}
.yc3{bottom:197.613000px;}
.y14b{bottom:198.072450px;}
.yf2{bottom:202.923450px;}
.y121{bottom:203.428950px;}
.y92{bottom:207.505950px;}
.y180{bottom:208.573200px;}
.y1a3{bottom:210.120750px;}
.y74{bottom:216.165300px;}
.yc2{bottom:217.113000px;}
.ye8{bottom:218.479650px;}
.ya4{bottom:219.482250px;}
.y120{bottom:222.928950px;}
.y53{bottom:228.470550px;}
.yf1{bottom:229.923450px;}
.y14a{bottom:233.576250px;}
.y1a2{bottom:234.120750px;}
.y91{bottom:234.505950px;}
.yc1{bottom:236.613000px;}
.y11f{bottom:242.428950px;}
.y17f{bottom:245.329050px;}
.ye7{bottom:245.479650px;}
.ya3{bottom:246.482250px;}
.y8{bottom:250.759506px;}
.y73{bottom:251.669250px;}
.y52{bottom:255.470550px;}
.yc0{bottom:256.113000px;}
.yf0{bottom:256.923450px;}
.y1a1{bottom:258.120750px;}
.y149{bottom:260.576250px;}
.y90{bottom:261.505950px;}
.y11e{bottom:261.928950px;}
.y17e{bottom:269.329050px;}
.ye6{bottom:272.479650px;}
.ya2{bottom:273.482250px;}
.ybf{bottom:275.613000px;}
.y72{bottom:278.669250px;}
.y11d{bottom:281.428950px;}
.y51{bottom:282.470550px;}
.yef{bottom:283.923450px;}
.y6{bottom:284.014500px;}
.y148{bottom:287.576250px;}
.y17d{bottom:293.329050px;}
.y1a0{bottom:294.876600px;}
.y32{bottom:296.305350px;}
.y8f{bottom:297.010050px;}
.ya1{bottom:300.482250px;}
.ybe{bottom:305.310750px;}
.y71{bottom:305.669250px;}
.ye5{bottom:307.983600px;}
.yee{bottom:310.923450px;}
.y11c{bottom:311.126700px;}
.y147{bottom:314.576250px;}
.y1c0{bottom:315.286050px;}
.y50{bottom:317.974500px;}
.y19f{bottom:318.876600px;}
.y31{bottom:323.305350px;}
.y8e{bottom:324.010050px;}
.ybd{bottom:324.810750px;}
.y4{bottom:327.388500px;}
.ya0{bottom:327.482250px;}
.y17c{bottom:330.084900px;}
.y11b{bottom:330.626700px;}
.y70{bottom:332.669250px;}
.ye4{bottom:334.983600px;}
.yed{bottom:337.923450px;}
.y1bf{bottom:339.286050px;}
.y146{bottom:341.576250px;}
.y19e{bottom:342.876600px;}
.ybc{bottom:344.310750px;}
.y4f{bottom:344.974500px;}
.y11a{bottom:350.126700px;}
.y30{bottom:350.305350px;}
.y8d{bottom:351.010050px;}
.y17b{bottom:354.084900px;}
.y9f{bottom:354.482250px;}
.y6f{bottom:359.669250px;}
.ye3{bottom:361.983600px;}
.y1be{bottom:363.286050px;}
.ybb{bottom:363.810750px;}
.y19d{bottom:366.876600px;}
.y145{bottom:368.576250px;}
.y119{bottom:369.626700px;}
.y4e{bottom:371.974500px;}
.y2f{bottom:377.305350px;}
.y8c{bottom:378.010050px;}
.y17a{bottom:378.084900px;}
.y9e{bottom:381.482250px;}
.yba{bottom:383.310750px;}
.ye2{bottom:388.983600px;}
.y118{bottom:389.126700px;}
.yec{bottom:390.435450px;}
.y6e{bottom:395.173200px;}
.y144{bottom:395.576400px;}
.y4d{bottom:398.974500px;}
.y1bd{bottom:399.191550px;}
.y179{bottom:402.085050px;}
.yb9{bottom:402.810750px;}
.y19c{bottom:403.632600px;}
.y2e{bottom:404.305350px;}
.y8b{bottom:405.010050px;}
.y9d{bottom:408.482400px;}
.y117{bottom:408.626700px;}
.y152{bottom:413.513850px;}
.ye1{bottom:415.983600px;}
.y6d{bottom:422.173200px;}
.yb8{bottom:422.310750px;}
.y143{bottom:422.576400px;}
.y1bc{bottom:423.191550px;}
.y4c{bottom:425.974500px;}
.y19b{bottom:427.632600px;}
.y116{bottom:428.126700px;}
.y8a{bottom:432.010050px;}
.y9c{bottom:435.482400px;}
.y178{bottom:438.840900px;}
.y151{bottom:440.513850px;}
.ye0{bottom:442.983600px;}
.y1bb{bottom:447.191550px;}
.y6c{bottom:449.173200px;}
.y142{bottom:449.576400px;}
.yb7{bottom:452.310750px;}
.y4b{bottom:452.974500px;}
.y112{bottom:457.824300px;}
.y89{bottom:459.010050px;}
.y9b{bottom:462.482400px;}
.y177{bottom:462.840900px;}
.y19a{bottom:464.388450px;}
.y2d{bottom:465.321150px;}
.y150{bottom:467.513850px;}
.y115{bottom:468.820500px;}
.yb6{bottom:471.810750px;}
.y6b{bottom:476.173200px;}
.y111{bottom:477.324300px;}
.ydf{bottom:478.487550px;}
.y1ba{bottom:483.097200px;}
.y141{bottom:485.080200px;}
.y88{bottom:486.010050px;}
.y114{bottom:488.320500px;}
.y199{bottom:488.388450px;}
.y9a{bottom:489.482400px;}
.yb5{bottom:491.310750px;}
.y14f{bottom:494.513850px;}
.y110{bottom:496.824300px;}
.y176{bottom:499.596750px;}
.y6a{bottom:503.173200px;}
.yde{bottom:505.487550px;}
.y1b9{bottom:507.097200px;}
.y113{bottom:507.820500px;}
.yb4{bottom:510.810750px;}
.y140{bottom:512.080200px;}
.y87{bottom:513.010050px;}
.y4a{bottom:513.990150px;}
.y10f{bottom:516.324300px;}
.y14e{bottom:521.513850px;}
.y175{bottom:523.596750px;}
.y99{bottom:524.986200px;}
.y198{bottom:525.144450px;}
.yb3{bottom:530.310750px;}
.y1b8{bottom:531.097200px;}
.ydd{bottom:532.487550px;}
.y10e{bottom:535.824300px;}
.y69{bottom:538.677000px;}
.y13f{bottom:539.080200px;}
.y174{bottom:547.596750px;}
.y86{bottom:548.513850px;}
.y197{bottom:549.144450px;}
.yb2{bottom:549.810750px;}
.y98{bottom:551.986200px;}
.y10d{bottom:555.324300px;}
.y29{bottom:562.348650px;}
.y68{bottom:565.677000px;}
.y13e{bottom:566.080200px;}
.y1b7{bottom:567.002700px;}
.ydc{bottom:567.991500px;}
.y196{bottom:573.144450px;}
.y10c{bottom:574.824300px;}
.y85{bottom:575.513850px;}
.y2c{bottom:579.344700px;}
.y173{bottom:584.352750px;}
.y28{bottom:587.848650px;}
.y1b6{bottom:591.002700px;}
.y67{bottom:592.677000px;}
.y13d{bottom:593.080200px;}
.ydb{bottom:594.991500px;}
.yb1{bottom:596.235600px;}
.y84{bottom:602.513850px;}
.y10b{bottom:604.522050px;}
.y2b{bottom:604.844700px;}
.y172{bottom:608.352750px;}
.y97{bottom:608.750100px;}
.y1{bottom:609.324000px;}
.y195{bottom:609.900300px;}
.y49{bottom:611.017800px;}
.y27{bottom:613.348650px;}
.y1b5{bottom:615.002700px;}
.yb0{bottom:615.735600px;}
.y13c{bottom:620.080200px;}
.yda{bottom:621.991500px;}
.y10a{bottom:624.022050px;}
.y83{bottom:629.513850px;}
.y2a{bottom:630.344700px;}
.y171{bottom:632.352750px;}
.y194{bottom:633.900300px;}
.yaf{bottom:635.235600px;}
.y48{bottom:638.017800px;}
.y26{bottom:638.848650px;}
.y96{bottom:641.750100px;}
.y109{bottom:643.522050px;}
.y66{bottom:645.188850px;}
.yd9{bottom:648.991500px;}
.y1b4{bottom:650.908200px;}
.yae{bottom:654.735600px;}
.y82{bottom:656.513850px;}
.y193{bottom:657.900300px;}
.y108{bottom:663.022050px;}
.y25{bottom:664.348650px;}
.y47{bottom:665.017800px;}
.y170{bottom:669.108600px;}
.y13b{bottom:672.592050px;}
.yad{bottom:674.235600px;}
.y95{bottom:674.750100px;}
.y1b3{bottom:674.908200px;}
.yd8{bottom:675.991500px;}
.y107{bottom:682.522050px;}
.y81{bottom:683.513850px;}
.y65{bottom:687.327600px;}
.y24{bottom:689.848650px;}
.y46{bottom:692.017800px;}
.y16f{bottom:693.108600px;}
.yac{bottom:693.735600px;}
.y192{bottom:694.656150px;}
.y1b2{bottom:698.908200px;}
.y139{bottom:701.974950px;}
.y106{bottom:702.022050px;}
.yd7{bottom:702.991500px;}
.y64{bottom:706.827600px;}
.y137{bottom:712.971000px;}
.y161{bottom:713.456100px;}
.y23{bottom:715.348650px;}
.y191{bottom:718.656150px;}
.y45{bottom:719.017800px;}
.y138{bottom:721.474950px;}
.y1b1{bottom:722.908200px;}
.yaa{bottom:723.433350px;}
.yeb{bottom:726.258000px;}
.y16e{bottom:729.864600px;}
.yd6{bottom:729.991500px;}
.ya9{bottom:731.683350px;}
.y105{bottom:731.719800px;}
.yab{bottom:739.933350px;}
.y160{bottom:740.456100px;}
.y22{bottom:740.848650px;}
.y136{bottom:740.974950px;}
.y190{bottom:742.656150px;}
.y63{bottom:745.029300px;}
.y80{bottom:746.017800px;}
.y104{bottom:751.219800px;}
.y13a{bottom:751.971000px;}
.y16d{bottom:753.864600px;}
.y44{bottom:754.521750px;}
.y1b0{bottom:758.813700px;}
.y135{bottom:760.474950px;}
.y62{bottom:764.529300px;}
.yd5{bottom:765.495450px;}
.y21{bottom:766.348650px;}
.y15f{bottom:767.456100px;}
.y103{bottom:770.719800px;}
.y7f{bottom:773.017800px;}
.y16c{bottom:777.864600px;}
.y18f{bottom:779.412000px;}
.y134{bottom:779.974950px;}
.y43{bottom:781.521750px;}
.y1af{bottom:782.813700px;}
.y61{bottom:784.029300px;}
.ya8{bottom:788.761800px;}
.y102{bottom:790.219800px;}
.y20{bottom:791.848650px;}
.yd4{bottom:792.495450px;}
.y15e{bottom:794.456100px;}
.y7e{bottom:800.017800px;}
.y18e{bottom:803.412000px;}
.y1ae{bottom:806.813700px;}
.y42{bottom:808.521750px;}
.y133{bottom:809.672550px;}
.y101{bottom:809.719800px;}
.y16b{bottom:814.620450px;}
.y1f{bottom:817.348650px;}
.yd3{bottom:819.495450px;}
.y60{bottom:822.230850px;}
.y7d{bottom:827.017800px;}
.y132{bottom:829.172550px;}
.y100{bottom:829.219800px;}
.y15d{bottom:829.959900px;}
.y41{bottom:835.521750px;}
.y16a{bottom:838.620450px;}
.y18d{bottom:840.168000px;}
.y5f{bottom:841.730850px;}
.y1ad{bottom:842.719200px;}
.yd2{bottom:846.495450px;}
.y131{bottom:848.672550px;}
.yff{bottom:848.719800px;}
.y7c{bottom:854.017800px;}
.y15c{bottom:856.959900px;}
.y1a{bottom:859.856700px;}
.y5e{bottom:861.230850px;}
.y40{bottom:862.521750px;}
.y169{bottom:862.620450px;}
.y18c{bottom:864.168000px;}
.y1ac{bottom:866.719200px;}
.yd1{bottom:873.495450px;}
.y130{bottom:878.370300px;}
.yfe{bottom:878.417400px;}
.y5d{bottom:880.730850px;}
.y15b{bottom:883.959900px;}
.y18b{bottom:888.168000px;}
.y3f{bottom:889.521750px;}
.y1ab{bottom:890.719200px;}
.y12f{bottom:897.870300px;}
.yfd{bottom:897.917400px;}
.y168{bottom:899.376300px;}
.yd0{bottom:900.495450px;}
.y15a{bottom:910.959900px;}
.y3e{bottom:916.521750px;}
.y12e{bottom:917.370300px;}
.yfc{bottom:917.417400px;}
.y5c{bottom:918.932550px;}
.y167{bottom:923.376300px;}
.y18a{bottom:924.924000px;}
.y1aa{bottom:926.624700px;}
.y12d{bottom:936.870300px;}
.yfb{bottom:936.917400px;}
.y19{bottom:937.880250px;}
.y159{bottom:937.959900px;}
.y5b{bottom:938.432550px;}
.y3d{bottom:943.521750px;}
.y166{bottom:947.376300px;}
.y189{bottom:948.924000px;}
.y1a9{bottom:950.624700px;}
.ycf{bottom:953.007150px;}
.y12c{bottom:956.370300px;}
.yfa{bottom:956.417400px;}
.y5a{bottom:957.932550px;}
.y158{bottom:964.959900px;}
.y18{bottom:969.132150px;}
.y7b{bottom:970.521750px;}
.y188{bottom:972.924000px;}
.yf9{bottom:975.917400px;}
.y3c{bottom:979.025700px;}
.y165{bottom:984.132150px;}
.y12b{bottom:986.068050px;}
.y1a8{bottom:986.530200px;}
.yc{bottom:988.851015px;}
.yce{bottom:990.893850px;}
.y157{bottom:991.959900px;}
.y59{bottom:996.134250px;}
.y187{bottom:996.924000px;}
.y7a{bottom:997.521750px;}
.y12a{bottom:1005.568050px;}
.y3b{bottom:1006.025700px;}
.yf7{bottom:1008.028050px;}
.y164{bottom:1008.132150px;}
.ycd{bottom:1010.393850px;}
.y1a7{bottom:1010.530200px;}
.y58{bottom:1015.634250px;}
.yf6{bottom:1016.278050px;}
.y156{bottom:1018.959900px;}
.y79{bottom:1024.521750px;}
.yf8{bottom:1024.528050px;}
.y129{bottom:1025.068050px;}
.ycc{bottom:1029.893850px;}
.y163{bottom:1032.132150px;}
.y3a{bottom:1033.025700px;}
.y186{bottom:1033.679850px;}
.y1a6{bottom:1034.530200px;}
.y57{bottom:1035.134250px;}
.y128{bottom:1044.568050px;}
.y155{bottom:1045.959900px;}
.y17{bottom:1047.155850px;}
.ycb{bottom:1049.393850px;}
.yf{bottom:1049.575500px;}
.y78{bottom:1051.521750px;}
.y56{bottom:1054.634250px;}
.y162{bottom:1056.132150px;}
.y185{bottom:1057.679850px;}
.y11{bottom:1058.324250px;}
.y39{bottom:1060.025700px;}
.y127{bottom:1064.068050px;}
.yf5{bottom:1067.265900px;}
.yca{bottom:1068.893850px;}
.y1a5{bottom:1070.435700px;}
.y154{bottom:1072.959900px;}
.y12{bottom:1079.938500px;}
.y184{bottom:1081.679850px;}
.y126{bottom:1083.568050px;}
.y38{bottom:1087.025700px;}
.yc9{bottom:1088.393850px;}
.y16{bottom:1089.155850px;}
.y55{bottom:1090.742850px;}
.y1a4{bottom:1094.435700px;}
.y37{bottom:1114.025700px;}
.y124{bottom:1116.053700px;}
.y183{bottom:1118.435700px;}
.yc7{bottom:1118.466600px;}
.y123{bottom:1124.303700px;}
.yc6{bottom:1126.716600px;}
.y15{bottom:1131.155850px;}
.y125{bottom:1132.553700px;}
.y153{bottom:1133.975700px;}
.yc8{bottom:1134.966600px;}
.y36{bottom:1141.025700px;}
.y54{bottom:1141.730550px;}
.y182{bottom:1142.435700px;}
.y35{bottom:1209.706350px;}
.y14{bottom:1209.778500px;}
.h14{height:28.604482px;}
.h1e{height:32.976000px;}
.ha{height:33.253500px;}
.hc{height:35.422485px;}
.h8{height:37.591479px;}
.h4{height:41.205000px;}
.h6{height:42.650985px;}
.h19{height:44.016000px;}
.h1f{height:47.214000px;}
.he{height:49.158000px;}
.h1d{height:49.464000px;}
.h21{height:49.518000px;}
.hd{height:50.067482px;}
.h17{height:54.960000px;}
.h1a{height:55.080000px;}
.h20{height:57.708000px;}
.h18{height:60.456000px;}
.h1c{height:60.588000px;}
.h12{height:67.229985px;}
.h22{height:77.028000px;}
.h23{height:82.464000px;}
.hb{height:84.443486px;}
.h1b{height:88.128000px;}
.h16{height:98.820000px;}
.h15{height:98.928000px;}
.h9{height:105.593485px;}
.h5{height:111.856181px;}
.hf{height:118.623658px;}
.h7{height:147.698550px;}
.h11{height:185.900314px;}
.h13{height:199.777565px;}
.h2{height:205.306470px;}
.h3{height:271.245697px;}
.h10{height:1262.835000px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w7{width:73.736985px;}
.wa{width:78.798000px;}
.w8{width:206.029052px;}
.w4{width:219.763485px;}
.w6{width:221.932515px;}
.w5{width:221.934000px;}
.w3{width:224.101500px;}
.w2{width:691.102495px;}
.w9{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:2.099395px;}
.x3{left:81.707698px;}
.xb{left:85.039350px;}
.x13{left:93.918300px;}
.x14{left:98.170200px;}
.xe{left:106.299150px;}
.x1{left:107.908505px;}
.x17{left:136.062900px;}
.x21{left:138.122400px;}
.x7{left:141.162449px;}
.x11{left:147.420000px;}
.x19{left:151.125150px;}
.x20{left:160.260600px;}
.x1d{left:206.220450px;}
.x16{left:209.544000px;}
.x1a{left:210.786300px;}
.x15{left:234.670200px;}
.x26{left:238.335150px;}
.x1c{left:295.552050px;}
.x12{left:314.095800px;}
.x1b{left:316.152900px;}
.x1f{left:356.379750px;}
.x27{left:382.752150px;}
.x9{left:412.254000px;}
.x4{left:414.423015px;}
.x5{left:418.038000px;}
.x6{left:419.482500px;}
.xf{left:463.464600px;}
.x28{left:527.169000px;}
.x1e{left:543.918300px;}
.x22{left:553.782750px;}
.x23{left:556.813500px;}
.x8{left:600.471000px;}
.xc{left:628.054200px;}
.xd{left:649.005000px;}
.x29{left:671.586000px;}
.x24{left:687.629400px;}
.x25{left:714.284850px;}
.xa{left:767.051250px;}
.x18{left:790.769700px;}
.x10{left:791.795850px;}
@media print{
.v2{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v3{vertical-align:29.333333pt;}
.ls4{letter-spacing:-0.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.229189pt;}
.ls1{letter-spacing:1.546584pt;}
.ls5{letter-spacing:5.053867pt;}
.ls6{letter-spacing:14.894400pt;}
.ls2{letter-spacing:31.473853pt;}
.ws0{word-spacing:-137.805722pt;}
.ws2{word-spacing:-98.297319pt;}
.ws17{word-spacing:-23.040000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws18{word-spacing:-13.706667pt;}
.ws8{word-spacing:-12.240000pt;}
.ws13{word-spacing:-11.856000pt;}
.ws5{word-spacing:-10.880000pt;}
.wsd{word-spacing:-2.698667pt;}
.ws1a{word-spacing:-2.346667pt;}
.ws1b{word-spacing:-2.240000pt;}
.ws1d{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.632000pt;}
.ws6{word-spacing:-1.440000pt;}
.wse{word-spacing:-1.344000pt;}
.ws16{word-spacing:-1.200000pt;}
.ws15{word-spacing:-1.104000pt;}
.ws1c{word-spacing:-0.693333pt;}
.wsf{word-spacing:-0.576000pt;}
.ws7{word-spacing:-0.320000pt;}
.ws1{word-spacing:-0.146200pt;}
.wsa{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:0.280000pt;}
.ws11{word-spacing:4.752000pt;}
.ws19{word-spacing:7.733333pt;}
.wsb{word-spacing:56.648533pt;}
.ws10{word-spacing:59.192533pt;}
.wsc{word-spacing:73.160533pt;}
.ws12{word-spacing:248.331733pt;}
._2{margin-left:-31.473853pt;}
._32{margin-left:-13.885234pt;}
._2e{margin-left:-12.864324pt;}
._16{margin-left:-10.120145pt;}
._30{margin-left:-7.466127pt;}
._2d{margin-left:-6.567766pt;}
._14{margin-left:-5.482278pt;}
._1{margin-left:-3.947400pt;}
._3{margin-left:-2.985600pt;}
._0{margin-left:-1.229189pt;}
._5{width:0.918111pt;}
._6{width:2.126734pt;}
._10{width:3.110599pt;}
._d{width:4.637189pt;}
._b{width:6.272000pt;}
._c{width:7.183711pt;}
._12{width:8.959711pt;}
._8{width:9.941333pt;}
._a{width:10.850522pt;}
._f{width:11.781622pt;}
._9{width:12.807855pt;}
._23{width:13.845333pt;}
._e{width:15.050667pt;}
._31{width:16.877189pt;}
._11{width:17.861333pt;}
._15{width:19.810667pt;}
._2f{width:21.255855pt;}
._7{width:31.872000pt;}
._13{width:35.170667pt;}
._4{width:38.912000pt;}
._33{width:43.946378pt;}
._1a{width:55.379733pt;}
._20{width:61.952533pt;}
._27{width:66.614067pt;}
._21{width:72.008533pt;}
._1e{width:85.280533pt;}
._1f{width:89.221722pt;}
._1c{width:105.430111pt;}
._1b{width:118.067300pt;}
._29{width:125.882667pt;}
._18{width:130.805333pt;}
._2a{width:164.695322pt;}
._26{width:170.639422pt;}
._1d{width:183.974255pt;}
._2c{width:212.647322pt;}
._28{width:235.803200pt;}
._25{width:300.458667pt;}
._2b{width:316.826667pt;}
._19{width:1696.247322pt;}
._24{width:1697.638789pt;}
._17{width:1699.702789pt;}
._22{width:1704.550789pt;}
.fs9{font-size:27.757867pt;}
.fsc{font-size:31.093333pt;}
.fs11{font-size:32.000000pt;}
.fse{font-size:42.666667pt;}
.fs10{font-size:48.000000pt;}
.fsb{font-size:53.333333pt;}
.fs12{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs5{font-size:66.823467pt;}
.fs13{font-size:74.666667pt;}
.fsf{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs4{font-size:103.105600pt;}
.fs3{font-size:104.522133pt;}
.fs1{font-size:136.576533pt;}
.fs2{font-size:146.200000pt;}
.fs6{font-size:158.323200pt;}
.fs8{font-size:216.034133pt;}
.fs7{font-size:248.115200pt;}
.fs0{font-size:293.317867pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:4.022697pt;}
.y9{bottom:8.540661pt;}
.yb{bottom:8.722000pt;}
.y10{bottom:9.077333pt;}
.y7{bottom:10.655733pt;}
.y5{bottom:11.006133pt;}
.y13{bottom:13.365733pt;}
.yd{bottom:16.618920pt;}
.y3{bottom:17.697904pt;}
.y33{bottom:53.173600pt;}
.y34{bottom:53.673600pt;}
.y1e{bottom:113.385867pt;}
.ya7{bottom:115.536400pt;}
.y2{bottom:119.552533pt;}
.y77{bottom:120.146933pt;}
.y14d{bottom:128.064400pt;}
.y1d{bottom:129.385867pt;}
.yf4{bottom:132.376400pt;}
.y94{bottom:136.449733pt;}
.ya6{bottom:139.536400pt;}
.yc5{bottom:140.989333pt;}
.y76{bottom:144.146933pt;}
.yea{bottom:146.204133pt;}
.y14c{bottom:152.064400pt;}
.yf3{bottom:156.376400pt;}
.y1c{bottom:156.724533pt;}
.yc4{bottom:158.322667pt;}
.y93{bottom:160.449733pt;}
.y122{bottom:163.492400pt;}
.y181{bottom:164.065067pt;}
.y75{bottom:168.146933pt;}
.ye9{bottom:170.204133pt;}
.ya5{bottom:171.095333pt;}
.y1b{bottom:172.724533pt;}
.ya{bottom:173.418667pt;}
.yc3{bottom:175.656000pt;}
.y14b{bottom:176.064400pt;}
.yf2{bottom:180.376400pt;}
.y121{bottom:180.825733pt;}
.y92{bottom:184.449733pt;}
.y180{bottom:185.398400pt;}
.y1a3{bottom:186.774000pt;}
.y74{bottom:192.146933pt;}
.yc2{bottom:192.989333pt;}
.ye8{bottom:194.204133pt;}
.ya4{bottom:195.095333pt;}
.y120{bottom:198.159067pt;}
.y53{bottom:203.084933pt;}
.yf1{bottom:204.376400pt;}
.y14a{bottom:207.623333pt;}
.y1a2{bottom:208.107333pt;}
.y91{bottom:208.449733pt;}
.yc1{bottom:210.322667pt;}
.y11f{bottom:215.492400pt;}
.y17f{bottom:218.070267pt;}
.ye7{bottom:218.204133pt;}
.ya3{bottom:219.095333pt;}
.y8{bottom:222.897339pt;}
.y73{bottom:223.706000pt;}
.y52{bottom:227.084933pt;}
.yc0{bottom:227.656000pt;}
.yf0{bottom:228.376400pt;}
.y1a1{bottom:229.440667pt;}
.y149{bottom:231.623333pt;}
.y90{bottom:232.449733pt;}
.y11e{bottom:232.825733pt;}
.y17e{bottom:239.403600pt;}
.ye6{bottom:242.204133pt;}
.ya2{bottom:243.095333pt;}
.ybf{bottom:244.989333pt;}
.y72{bottom:247.706000pt;}
.y11d{bottom:250.159067pt;}
.y51{bottom:251.084933pt;}
.yef{bottom:252.376400pt;}
.y6{bottom:252.457333pt;}
.y148{bottom:255.623333pt;}
.y17d{bottom:260.736933pt;}
.y1a0{bottom:262.112533pt;}
.y32{bottom:263.382533pt;}
.y8f{bottom:264.008933pt;}
.ya1{bottom:267.095333pt;}
.ybe{bottom:271.387333pt;}
.y71{bottom:271.706000pt;}
.ye5{bottom:273.763200pt;}
.yee{bottom:276.376400pt;}
.y11c{bottom:276.557067pt;}
.y147{bottom:279.623333pt;}
.y1c0{bottom:280.254267pt;}
.y50{bottom:282.644000pt;}
.y19f{bottom:283.445867pt;}
.y31{bottom:287.382533pt;}
.y8e{bottom:288.008933pt;}
.ybd{bottom:288.720667pt;}
.y4{bottom:291.012000pt;}
.ya0{bottom:291.095333pt;}
.y17c{bottom:293.408800pt;}
.y11b{bottom:293.890400pt;}
.y70{bottom:295.706000pt;}
.ye4{bottom:297.763200pt;}
.yed{bottom:300.376400pt;}
.y1bf{bottom:301.587600pt;}
.y146{bottom:303.623333pt;}
.y19e{bottom:304.779200pt;}
.ybc{bottom:306.054000pt;}
.y4f{bottom:306.644000pt;}
.y11a{bottom:311.223733pt;}
.y30{bottom:311.382533pt;}
.y8d{bottom:312.008933pt;}
.y17b{bottom:314.742133pt;}
.y9f{bottom:315.095333pt;}
.y6f{bottom:319.706000pt;}
.ye3{bottom:321.763200pt;}
.y1be{bottom:322.920933pt;}
.ybb{bottom:323.387333pt;}
.y19d{bottom:326.112533pt;}
.y145{bottom:327.623333pt;}
.y119{bottom:328.557067pt;}
.y4e{bottom:330.644000pt;}
.y2f{bottom:335.382533pt;}
.y8c{bottom:336.008933pt;}
.y17a{bottom:336.075467pt;}
.y9e{bottom:339.095333pt;}
.yba{bottom:340.720667pt;}
.ye2{bottom:345.763200pt;}
.y118{bottom:345.890400pt;}
.yec{bottom:347.053733pt;}
.y6e{bottom:351.265067pt;}
.y144{bottom:351.623467pt;}
.y4d{bottom:354.644000pt;}
.y1bd{bottom:354.836933pt;}
.y179{bottom:357.408933pt;}
.yb9{bottom:358.054000pt;}
.y19c{bottom:358.784533pt;}
.y2e{bottom:359.382533pt;}
.y8b{bottom:360.008933pt;}
.y9d{bottom:363.095467pt;}
.y117{bottom:363.223733pt;}
.y152{bottom:367.567867pt;}
.ye1{bottom:369.763200pt;}
.y6d{bottom:375.265067pt;}
.yb8{bottom:375.387333pt;}
.y143{bottom:375.623467pt;}
.y1bc{bottom:376.170267pt;}
.y4c{bottom:378.644000pt;}
.y19b{bottom:380.117867pt;}
.y116{bottom:380.557067pt;}
.y8a{bottom:384.008933pt;}
.y9c{bottom:387.095467pt;}
.y178{bottom:390.080800pt;}
.y151{bottom:391.567867pt;}
.ye0{bottom:393.763200pt;}
.y1bb{bottom:397.503600pt;}
.y6c{bottom:399.265067pt;}
.y142{bottom:399.623467pt;}
.yb7{bottom:402.054000pt;}
.y4b{bottom:402.644000pt;}
.y112{bottom:406.954933pt;}
.y89{bottom:408.008933pt;}
.y9b{bottom:411.095467pt;}
.y177{bottom:411.414133pt;}
.y19a{bottom:412.789733pt;}
.y2d{bottom:413.618800pt;}
.y150{bottom:415.567867pt;}
.y115{bottom:416.729333pt;}
.yb6{bottom:419.387333pt;}
.y6b{bottom:423.265067pt;}
.y111{bottom:424.288267pt;}
.ydf{bottom:425.322267pt;}
.y1ba{bottom:429.419733pt;}
.y141{bottom:431.182400pt;}
.y88{bottom:432.008933pt;}
.y114{bottom:434.062667pt;}
.y199{bottom:434.123067pt;}
.y9a{bottom:435.095467pt;}
.yb5{bottom:436.720667pt;}
.y14f{bottom:439.567867pt;}
.y110{bottom:441.621600pt;}
.y176{bottom:444.086000pt;}
.y6a{bottom:447.265067pt;}
.yde{bottom:449.322267pt;}
.y1b9{bottom:450.753067pt;}
.y113{bottom:451.396000pt;}
.yb4{bottom:454.054000pt;}
.y140{bottom:455.182400pt;}
.y87{bottom:456.008933pt;}
.y4a{bottom:456.880133pt;}
.y10f{bottom:458.954933pt;}
.y14e{bottom:463.567867pt;}
.y175{bottom:465.419333pt;}
.y99{bottom:466.654400pt;}
.y198{bottom:466.795067pt;}
.yb3{bottom:471.387333pt;}
.y1b8{bottom:472.086400pt;}
.ydd{bottom:473.322267pt;}
.y10e{bottom:476.288267pt;}
.y69{bottom:478.824000pt;}
.y13f{bottom:479.182400pt;}
.y174{bottom:486.752667pt;}
.y86{bottom:487.567867pt;}
.y197{bottom:488.128400pt;}
.yb2{bottom:488.720667pt;}
.y98{bottom:490.654400pt;}
.y10d{bottom:493.621600pt;}
.y29{bottom:499.865467pt;}
.y68{bottom:502.824000pt;}
.y13e{bottom:503.182400pt;}
.y1b7{bottom:504.002400pt;}
.ydc{bottom:504.881333pt;}
.y196{bottom:509.461733pt;}
.y10c{bottom:510.954933pt;}
.y85{bottom:511.567867pt;}
.y2c{bottom:514.973067pt;}
.y173{bottom:519.424667pt;}
.y28{bottom:522.532133pt;}
.y1b6{bottom:525.335733pt;}
.y67{bottom:526.824000pt;}
.y13d{bottom:527.182400pt;}
.ydb{bottom:528.881333pt;}
.yb1{bottom:529.987200pt;}
.y84{bottom:535.567867pt;}
.y10b{bottom:537.352933pt;}
.y2b{bottom:537.639733pt;}
.y172{bottom:540.758000pt;}
.y97{bottom:541.111200pt;}
.y1{bottom:541.621333pt;}
.y195{bottom:542.133600pt;}
.y49{bottom:543.126933pt;}
.y27{bottom:545.198800pt;}
.y1b5{bottom:546.669067pt;}
.yb0{bottom:547.320533pt;}
.y13c{bottom:551.182400pt;}
.yda{bottom:552.881333pt;}
.y10a{bottom:554.686267pt;}
.y83{bottom:559.567867pt;}
.y2a{bottom:560.306400pt;}
.y171{bottom:562.091333pt;}
.y194{bottom:563.466933pt;}
.yaf{bottom:564.653867pt;}
.y48{bottom:567.126933pt;}
.y26{bottom:567.865467pt;}
.y96{bottom:570.444533pt;}
.y109{bottom:572.019600pt;}
.y66{bottom:573.501200pt;}
.yd9{bottom:576.881333pt;}
.y1b4{bottom:578.585067pt;}
.yae{bottom:581.987200pt;}
.y82{bottom:583.567867pt;}
.y193{bottom:584.800267pt;}
.y108{bottom:589.352933pt;}
.y25{bottom:590.532133pt;}
.y47{bottom:591.126933pt;}
.y170{bottom:594.763200pt;}
.y13b{bottom:597.859600pt;}
.yad{bottom:599.320533pt;}
.y95{bottom:599.777867pt;}
.y1b3{bottom:599.918400pt;}
.yd8{bottom:600.881333pt;}
.y107{bottom:606.686267pt;}
.y81{bottom:607.567867pt;}
.y65{bottom:610.957867pt;}
.y24{bottom:613.198800pt;}
.y46{bottom:615.126933pt;}
.y16f{bottom:616.096533pt;}
.yac{bottom:616.653867pt;}
.y192{bottom:617.472133pt;}
.y1b2{bottom:621.251733pt;}
.y139{bottom:623.977733pt;}
.y106{bottom:624.019600pt;}
.yd7{bottom:624.881333pt;}
.y64{bottom:628.291200pt;}
.y137{bottom:633.752000pt;}
.y161{bottom:634.183200pt;}
.y23{bottom:635.865467pt;}
.y191{bottom:638.805467pt;}
.y45{bottom:639.126933pt;}
.y138{bottom:641.311067pt;}
.y1b1{bottom:642.585067pt;}
.yaa{bottom:643.051867pt;}
.yeb{bottom:645.562667pt;}
.y16e{bottom:648.768533pt;}
.yd6{bottom:648.881333pt;}
.ya9{bottom:650.385200pt;}
.y105{bottom:650.417600pt;}
.yab{bottom:657.718533pt;}
.y160{bottom:658.183200pt;}
.y22{bottom:658.532133pt;}
.y136{bottom:658.644400pt;}
.y190{bottom:660.138800pt;}
.y63{bottom:662.248267pt;}
.y80{bottom:663.126933pt;}
.y104{bottom:667.750933pt;}
.y13a{bottom:668.418667pt;}
.y16d{bottom:670.101867pt;}
.y44{bottom:670.686000pt;}
.y1b0{bottom:674.501067pt;}
.y135{bottom:675.977733pt;}
.y62{bottom:679.581600pt;}
.yd5{bottom:680.440400pt;}
.y21{bottom:681.198800pt;}
.y15f{bottom:682.183200pt;}
.y103{bottom:685.084267pt;}
.y7f{bottom:687.126933pt;}
.y16c{bottom:691.435200pt;}
.y18f{bottom:692.810667pt;}
.y134{bottom:693.311067pt;}
.y43{bottom:694.686000pt;}
.y1af{bottom:695.834400pt;}
.y61{bottom:696.914933pt;}
.ya8{bottom:701.121600pt;}
.y102{bottom:702.417600pt;}
.y20{bottom:703.865467pt;}
.yd4{bottom:704.440400pt;}
.y15e{bottom:706.183200pt;}
.y7e{bottom:711.126933pt;}
.y18e{bottom:714.144000pt;}
.y1ae{bottom:717.167733pt;}
.y42{bottom:718.686000pt;}
.y133{bottom:719.708933pt;}
.y101{bottom:719.750933pt;}
.y16b{bottom:724.107067pt;}
.y1f{bottom:726.532133pt;}
.yd3{bottom:728.440400pt;}
.y60{bottom:730.871867pt;}
.y7d{bottom:735.126933pt;}
.y132{bottom:737.042267pt;}
.y100{bottom:737.084267pt;}
.y15d{bottom:737.742133pt;}
.y41{bottom:742.686000pt;}
.y16a{bottom:745.440400pt;}
.y18d{bottom:746.816000pt;}
.y5f{bottom:748.205200pt;}
.y1ad{bottom:749.083733pt;}
.yd2{bottom:752.440400pt;}
.y131{bottom:754.375600pt;}
.yff{bottom:754.417600pt;}
.y7c{bottom:759.126933pt;}
.y15c{bottom:761.742133pt;}
.y1a{bottom:764.317067pt;}
.y5e{bottom:765.538533pt;}
.y40{bottom:766.686000pt;}
.y169{bottom:766.773733pt;}
.y18c{bottom:768.149333pt;}
.y1ac{bottom:770.417067pt;}
.yd1{bottom:776.440400pt;}
.y130{bottom:780.773600pt;}
.yfe{bottom:780.815467pt;}
.y5d{bottom:782.871867pt;}
.y15b{bottom:785.742133pt;}
.y18b{bottom:789.482667pt;}
.y3f{bottom:790.686000pt;}
.y1ab{bottom:791.750400pt;}
.y12f{bottom:798.106933pt;}
.yfd{bottom:798.148800pt;}
.y168{bottom:799.445600pt;}
.yd0{bottom:800.440400pt;}
.y15a{bottom:809.742133pt;}
.y3e{bottom:814.686000pt;}
.y12e{bottom:815.440267pt;}
.yfc{bottom:815.482133pt;}
.y5c{bottom:816.828933pt;}
.y167{bottom:820.778933pt;}
.y18a{bottom:822.154667pt;}
.y1aa{bottom:823.666400pt;}
.y12d{bottom:832.773600pt;}
.yfb{bottom:832.815467pt;}
.y19{bottom:833.671333pt;}
.y159{bottom:833.742133pt;}
.y5b{bottom:834.162267pt;}
.y3d{bottom:838.686000pt;}
.y166{bottom:842.112267pt;}
.y189{bottom:843.488000pt;}
.y1a9{bottom:844.999733pt;}
.ycf{bottom:847.117467pt;}
.y12c{bottom:850.106933pt;}
.yfa{bottom:850.148800pt;}
.y5a{bottom:851.495600pt;}
.y158{bottom:857.742133pt;}
.y18{bottom:861.450800pt;}
.y7b{bottom:862.686000pt;}
.y188{bottom:864.821333pt;}
.yf9{bottom:867.482133pt;}
.y3c{bottom:870.245067pt;}
.y165{bottom:874.784133pt;}
.y12b{bottom:876.504933pt;}
.y1a8{bottom:876.915733pt;}
.yc{bottom:878.978680pt;}
.yce{bottom:880.794533pt;}
.y157{bottom:881.742133pt;}
.y59{bottom:885.452667pt;}
.y187{bottom:886.154667pt;}
.y7a{bottom:886.686000pt;}
.y12a{bottom:893.838267pt;}
.y3b{bottom:894.245067pt;}
.yf7{bottom:896.024933pt;}
.y164{bottom:896.117467pt;}
.ycd{bottom:898.127867pt;}
.y1a7{bottom:898.249067pt;}
.y58{bottom:902.786000pt;}
.yf6{bottom:903.358267pt;}
.y156{bottom:905.742133pt;}
.y79{bottom:910.686000pt;}
.yf8{bottom:910.691600pt;}
.y129{bottom:911.171600pt;}
.ycc{bottom:915.461200pt;}
.y163{bottom:917.450800pt;}
.y3a{bottom:918.245067pt;}
.y186{bottom:918.826533pt;}
.y1a6{bottom:919.582400pt;}
.y57{bottom:920.119333pt;}
.y128{bottom:928.504933pt;}
.y155{bottom:929.742133pt;}
.y17{bottom:930.805200pt;}
.ycb{bottom:932.794533pt;}
.yf{bottom:932.956000pt;}
.y78{bottom:934.686000pt;}
.y56{bottom:937.452667pt;}
.y162{bottom:938.784133pt;}
.y185{bottom:940.159867pt;}
.y11{bottom:940.732667pt;}
.y39{bottom:942.245067pt;}
.y127{bottom:945.838267pt;}
.yf5{bottom:948.680800pt;}
.yca{bottom:950.127867pt;}
.y1a5{bottom:951.498400pt;}
.y154{bottom:953.742133pt;}
.y12{bottom:959.945333pt;}
.y184{bottom:961.493200pt;}
.y126{bottom:963.171600pt;}
.y38{bottom:966.245067pt;}
.yc9{bottom:967.461200pt;}
.y16{bottom:968.138533pt;}
.y55{bottom:969.549200pt;}
.y1a4{bottom:972.831733pt;}
.y37{bottom:990.245067pt;}
.y124{bottom:992.047733pt;}
.y183{bottom:994.165067pt;}
.yc7{bottom:994.192533pt;}
.y123{bottom:999.381067pt;}
.yc6{bottom:1001.525867pt;}
.y15{bottom:1005.471867pt;}
.y125{bottom:1006.714400pt;}
.y153{bottom:1007.978400pt;}
.yc8{bottom:1008.859200pt;}
.y36{bottom:1014.245067pt;}
.y54{bottom:1014.871600pt;}
.y182{bottom:1015.498400pt;}
.y35{bottom:1075.294533pt;}
.y14{bottom:1075.358667pt;}
.h14{height:25.426206pt;}
.h1e{height:29.312000pt;}
.ha{height:29.558667pt;}
.hc{height:31.486653pt;}
.h8{height:33.414648pt;}
.h4{height:36.626667pt;}
.h6{height:37.911987pt;}
.h19{height:39.125333pt;}
.h1f{height:41.968000pt;}
.he{height:43.696000pt;}
.h1d{height:43.968000pt;}
.h21{height:44.016000pt;}
.hd{height:44.504429pt;}
.h17{height:48.853333pt;}
.h1a{height:48.960000pt;}
.h20{height:51.296000pt;}
.h18{height:53.738667pt;}
.h1c{height:53.856000pt;}
.h12{height:59.759987pt;}
.h22{height:68.469333pt;}
.h23{height:73.301333pt;}
.hb{height:75.060877pt;}
.h1b{height:78.336000pt;}
.h16{height:87.840000pt;}
.h15{height:87.936000pt;}
.h9{height:93.860876pt;}
.h5{height:99.427716pt;}
.hf{height:105.443251pt;}
.h7{height:131.287600pt;}
.h11{height:165.244723pt;}
.h13{height:177.580058pt;}
.h2{height:182.494640pt;}
.h3{height:241.107286pt;}
.h10{height:1122.520000pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w7{width:65.543987pt;}
.wa{width:70.042667pt;}
.w8{width:183.136935pt;}
.w4{width:195.345320pt;}
.w6{width:197.273347pt;}
.w5{width:197.274667pt;}
.w3{width:199.201333pt;}
.w2{width:614.313329pt;}
.w9{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.866129pt;}
.x3{left:72.629065pt;}
.xb{left:75.590533pt;}
.x13{left:83.482933pt;}
.x14{left:87.262400pt;}
.xe{left:94.488133pt;}
.x1{left:95.918671pt;}
.x17{left:120.944800pt;}
.x21{left:122.775467pt;}
.x7{left:125.477732pt;}
.x11{left:131.040000pt;}
.x19{left:134.333467pt;}
.x20{left:142.453867pt;}
.x1d{left:183.307067pt;}
.x16{left:186.261333pt;}
.x1a{left:187.365600pt;}
.x15{left:208.595733pt;}
.x26{left:211.853467pt;}
.x1c{left:262.712933pt;}
.x12{left:279.196267pt;}
.x1b{left:281.024800pt;}
.x1f{left:316.782000pt;}
.x27{left:340.224133pt;}
.x9{left:366.448000pt;}
.x4{left:368.376013pt;}
.x5{left:371.589333pt;}
.x6{left:372.873333pt;}
.xf{left:411.968533pt;}
.x28{left:468.594667pt;}
.x1e{left:483.482933pt;}
.x22{left:492.251333pt;}
.x23{left:494.945333pt;}
.x8{left:533.752000pt;}
.xc{left:558.270400pt;}
.xd{left:576.893333pt;}
.x29{left:596.965333pt;}
.x24{left:611.226133pt;}
.x25{left:634.919867pt;}
.xa{left:681.823333pt;}
.x18{left:702.906400pt;}
.x10{left:703.818533pt;}
}




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