
    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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_3e1517e5c70c79f18152b1a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_28183ac8b8dbfa782b6979c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_91c01012f420055808036bc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_b2343fe8e0c14711ca61acac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_eda5b73bbaf83424f40dbf2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3716eb94098e53a04c851452.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_00d339e258764214914794cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_8de60556a8ff93b90a16b25a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_44421358ccf83a3e602ea1ea.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_73265712568d52a47e6d601c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_1e2da0840c0240f97713ce96.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_f56859686eb86f9e2886886d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.962402;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_324dbd61f96facd40fc8fef9.woff2')format("woff");}.fff{font-family:fff;line-height:0.851562;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;}
.m3{transform:matrix(0.000000,-0.249894,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249894,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249894,0.250000,0.000000,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.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v7{vertical-align:40.320000px;}
.v6{vertical-align:46.080000px;}
.ls2a{letter-spacing:-0.813728px;}
.lsa{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.496200px;}
.ls8{letter-spacing:-0.468000px;}
.lsc{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.285000px;}
.ls18{letter-spacing:-0.258000px;}
.ls19{letter-spacing:-0.223800px;}
.ls1a{letter-spacing:-0.172200px;}
.lsb{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.087445px;}
.ls2c{letter-spacing:-0.011659px;}
.lse{letter-spacing:-0.008640px;}
.ls2b{letter-spacing:-0.005830px;}
.ls7{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.005830px;}
.ls27{letter-spacing:0.008745px;}
.lsd{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.106560px;}
.ls1c{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.223920px;}
.ls2f{letter-spacing:0.233280px;}
.ls4{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.331800px;}
.ls12{letter-spacing:0.347760px;}
.ls3{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.362400px;}
.ls21{letter-spacing:0.462960px;}
.ls32{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.532800px;}
.ls22{letter-spacing:0.642960px;}
.ls24{letter-spacing:1.703520px;}
.ls17{letter-spacing:12.895920px;}
.ls14{letter-spacing:17.279280px;}
.ls10{letter-spacing:84.779280px;}
.ls30{letter-spacing:100.746720px;}
.ls2e{letter-spacing:120.906720px;}
.ls25{letter-spacing:121.086720px;}
.ls20{letter-spacing:124.506720px;}
.ls2d{letter-spacing:141.246720px;}
.ls5{letter-spacing:144.666720px;}
.ls1{letter-spacing:164.106720px;}
.ls16{letter-spacing:164.339280px;}
.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;}
}
.ws23{word-spacing:-59.760000px;}
.ws1a{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.228000px;}
.ws5{word-spacing:-15.199800px;}
.ws1b{word-spacing:-15.146400px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.479000px;}
.ws18{word-spacing:-13.160160px;}
.wsc{word-spacing:-13.147200px;}
.ws13{word-spacing:-12.975000px;}
.ws12{word-spacing:-12.923400px;}
.ws6{word-spacing:-12.060000px;}
.ws22{word-spacing:-11.563800px;}
.ws21{word-spacing:-10.612800px;}
.ws8{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.711360px;}
.ws0{word-spacing:-9.540000px;}
.ws11{word-spacing:-9.187200px;}
.ws14{word-spacing:-8.929200px;}
.ws20{word-spacing:-8.902200px;}
.wsa{word-spacing:0.000000px;}
.ws10{word-spacing:0.532080px;}
.ws17{word-spacing:0.699840px;}
.ws16{word-spacing:2.016000px;}
.wse{word-spacing:3.412080px;}
.ws15{word-spacing:3.720960px;}
.ws1c{word-spacing:5.224080px;}
.wsf{word-spacing:8.866800px;}
.wsd{word-spacing:11.376000px;}
.ws1e{word-spacing:12.261120px;}
.ws1d{word-spacing:12.870720px;}
._1d{margin-left:-6.638640px;}
._1c{margin-left:-3.734640px;}
._a{margin-left:-2.658000px;}
._1{margin-left:-1.338000px;}
._0{width:1.332000px;}
._2{width:3.110880px;}
._4{width:4.293360px;}
._5{width:5.757120px;}
._f{width:6.767760px;}
._11{width:8.303760px;}
._7{width:9.684000px;}
._6{width:10.944000px;}
._e{width:12.282000px;}
._16{width:13.625280px;}
._d{width:14.796000px;}
._c{width:16.236000px;}
._8{width:18.090000px;}
._9{width:19.368000px;}
._12{width:20.796480px;}
._b{width:22.464000px;}
._28{width:23.603040px;}
._15{width:24.663600px;}
._1e{width:26.652960px;}
._2f{width:27.786480px;}
._29{width:29.444400px;}
._18{width:30.494880px;}
._17{width:32.312880px;}
._13{width:33.866640px;}
._14{width:34.917120px;}
._3{width:36.126000px;}
._20{width:37.530720px;}
._24{width:39.322080px;}
._2e{width:40.385760px;}
._25{width:41.396400px;}
._2b{width:42.668640px;}
._2a{width:44.043120px;}
._21{width:48.627360px;}
._10{width:49.788000px;}
._33{width:51.489360px;}
._22{width:54.663120px;}
._23{width:55.932480px;}
._1f{width:57.096960px;}
._1a{width:64.301760px;}
._19{width:65.736000px;}
._32{width:73.570560px;}
._31{width:74.700000px;}
._26{width:80.304055px;}
._27{width:82.169558px;}
._34{width:99.500400px;}
._30{width:101.499840px;}
._2c{width:131.523840px;}
._2d{width:157.049280px;}
._1b{width:741.180000px;}
.fc2{color:rgb(14,40,65);}
.fc1{color:transparent;}
.fc3{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:14.574239px;}
.fsc{font-size:23.318782px;}
.fsd{font-size:23.328653px;}
.fse{font-size:26.233630px;}
.fs9{font-size:30.240000px;}
.fsa{font-size:33.120000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y74{bottom:0.360000px;}
.y121{bottom:2.700000px;}
.y122{bottom:2.880000px;}
.yb2{bottom:3.240000px;}
.y79{bottom:3.600000px;}
.y124{bottom:3.960000px;}
.y125{bottom:4.500000px;}
.y11e{bottom:4.680000px;}
.y11f{bottom:5.040000px;}
.y11a{bottom:5.940000px;}
.y11c{bottom:6.120000px;}
.y4{bottom:6.300000px;}
.yb8{bottom:9.000000px;}
.y13f{bottom:9.893663px;}
.y84{bottom:10.080000px;}
.y73{bottom:10.440000px;}
.yb4{bottom:11.520000px;}
.y75{bottom:11.700000px;}
.y87{bottom:12.780000px;}
.yb1{bottom:13.320000px;}
.y13e{bottom:16.634277px;}
.y140{bottom:20.460016px;}
.y78{bottom:21.600000px;}
.y3{bottom:22.140000px;}
.yb7{bottom:27.030000px;}
.y86{bottom:30.780000px;}
.y2{bottom:37.980000px;}
.y141{bottom:38.604942px;}
.y77{bottom:39.600000px;}
.y88{bottom:39.960000px;}
.yb6{bottom:45.030000px;}
.yb9{bottom:50.430000px;}
.y142{bottom:56.786306px;}
.y64{bottom:57.096000px;}
.y143{bottom:74.931233px;}
.y14a{bottom:89.286859px;}
.y144{bottom:93.076160px;}
.y145{bottom:111.221087px;}
.y146{bottom:129.366015px;}
.y3a{bottom:138.456000px;}
.y62{bottom:144.396000px;}
.y147{bottom:147.547377px;}
.y14e{bottom:150.097864px;}
.y39{bottom:156.450000px;}
.y14d{bottom:158.447688px;}
.y61{bottom:162.390000px;}
.y148{bottom:165.689268px;}
.y14c{bottom:166.751968px;}
.y38{bottom:174.450000px;}
.y14b{bottom:175.086610px;}
.y13c{bottom:175.350000px;}
.ye0{bottom:176.070000px;}
.y169{bottom:177.150000px;}
.y60{bottom:180.390000px;}
.y198{bottom:182.190000px;}
.y149{bottom:183.831159px;}
.ya0{bottom:183.990000px;}
.y37{bottom:192.450000px;}
.y13b{bottom:193.350000px;}
.ydf{bottom:194.070000px;}
.y168{bottom:195.150000px;}
.y5f{bottom:198.390000px;}
.y197{bottom:200.190000px;}
.y9f{bottom:201.990000px;}
.y36{bottom:210.450000px;}
.y13a{bottom:211.350000px;}
.y167{bottom:213.150000px;}
.yf6{bottom:215.490000px;}
.y5e{bottom:216.390000px;}
.y196{bottom:218.190000px;}
.y9e{bottom:219.990000px;}
.y10b{bottom:220.170000px;}
.yde{bottom:226.290000px;}
.y35{bottom:228.450000px;}
.y139{bottom:229.350000px;}
.y166{bottom:231.150000px;}
.yf5{bottom:233.490000px;}
.y5d{bottom:234.390000px;}
.y195{bottom:236.190000px;}
.y10a{bottom:237.450000px;}
.y9d{bottom:237.990000px;}
.ydd{bottom:241.950000px;}
.y34{bottom:246.450000px;}
.y138{bottom:247.350000px;}
.y165{bottom:249.150000px;}
.yf4{bottom:251.490000px;}
.y5c{bottom:252.390000px;}
.y194{bottom:254.190000px;}
.ydc{bottom:254.550000px;}
.y109{bottom:254.730000px;}
.y9c{bottom:255.990000px;}
.y33{bottom:264.450000px;}
.y137{bottom:265.350000px;}
.y164{bottom:267.150000px;}
.yf3{bottom:269.490000px;}
.y108{bottom:272.010000px;}
.y193{bottom:272.190000px;}
.y9b{bottom:273.990000px;}
.y5b{bottom:278.895000px;}
.y32{bottom:282.495000px;}
.y136{bottom:283.395000px;}
.y163{bottom:285.195000px;}
.yf2{bottom:287.535000px;}
.y107{bottom:289.335000px;}
.y9a{bottom:292.035000px;}
.y192{bottom:298.515000px;}
.y31{bottom:300.495000px;}
.y135{bottom:301.395000px;}
.y162{bottom:303.195000px;}
.y5a{bottom:304.095000px;}
.y106{bottom:306.435000px;}
.y99{bottom:310.035000px;}
.y30{bottom:318.495000px;}
.y134{bottom:319.395000px;}
.yf1{bottom:319.755000px;}
.y161{bottom:321.195000px;}
.y59{bottom:322.095000px;}
.y105{bottom:323.715000px;}
.y98{bottom:328.035000px;}
.yf0{bottom:335.415000px;}
.y2f{bottom:336.495000px;}
.y133{bottom:337.395000px;}
.y160{bottom:339.195000px;}
.y58{bottom:340.095000px;}
.y104{bottom:340.995000px;}
.y191{bottom:341.715000px;}
.y97{bottom:346.035000px;}
.yef{bottom:348.015000px;}
.yc4{bottom:353.235000px;}
.y2e{bottom:354.495000px;}
.y15f{bottom:357.195000px;}
.y57{bottom:358.095000px;}
.y103{bottom:358.275000px;}
.y190{bottom:359.715000px;}
.y132{bottom:363.675000px;}
.y96{bottom:364.035000px;}
.yc3{bottom:371.235000px;}
.y2d{bottom:372.495000px;}
.y15e{bottom:375.195000px;}
.y102{bottom:375.555000px;}
.y56{bottom:376.095000px;}
.y18f{bottom:377.715000px;}
.y95{bottom:382.035000px;}
.yc2{bottom:389.235000px;}
.y2c{bottom:390.495000px;}
.y101{bottom:393.195000px;}
.y55{bottom:394.095000px;}
.y18e{bottom:395.715000px;}
.y131{bottom:397.155000px;}
.y94{bottom:400.035000px;}
.yc1{bottom:407.235000px;}
.y2b{bottom:408.495000px;}
.y100{bottom:411.195000px;}
.y54{bottom:412.095000px;}
.y18d{bottom:413.715000px;}
.y93{bottom:418.035000px;}
.y130{bottom:418.755000px;}
.yc0{bottom:425.235000px;}
.y2a{bottom:426.495000px;}
.yff{bottom:429.195000px;}
.y53{bottom:430.095000px;}
.y18c{bottom:431.715000px;}
.y92{bottom:436.035000px;}
.y12f{bottom:441.255000px;}
.ybf{bottom:443.235000px;}
.y29{bottom:444.495000px;}
.yfe{bottom:447.195000px;}
.y52{bottom:448.095000px;}
.y18b{bottom:449.715000px;}
.y91{bottom:454.035000px;}
.ybe{bottom:461.235000px;}
.y28{bottom:462.495000px;}
.ydb{bottom:463.035000px;}
.y12e{bottom:463.755000px;}
.y15d{bottom:465.195000px;}
.y51{bottom:466.095000px;}
.y18a{bottom:467.715000px;}
.y90{bottom:472.035000px;}
.ybd{bottom:479.235000px;}
.y27{bottom:480.495000px;}
.yda{bottom:481.035000px;}
.y15c{bottom:483.195000px;}
.y50{bottom:484.095000px;}
.y189{bottom:485.715000px;}
.y12d{bottom:486.255000px;}
.y8f{bottom:490.035000px;}
.yfd{bottom:492.015000px;}
.y1e0{bottom:492.735000px;}
.ybc{bottom:497.235000px;}
.yd9{bottom:499.035000px;}
.y15b{bottom:501.195000px;}
.y4f{bottom:502.095000px;}
.y188{bottom:503.715000px;}
.y26{bottom:506.775000px;}
.y8e{bottom:508.035000px;}
.y12c{bottom:508.755000px;}
.y1df{bottom:510.015000px;}
.ybb{bottom:515.235000px;}
.yd8{bottom:517.035000px;}
.y15a{bottom:519.195000px;}
.y4e{bottom:520.095000px;}
.y187{bottom:521.715000px;}
.y1bc{bottom:522.075000px;}
.y8d{bottom:526.035000px;}
.y1de{bottom:527.115000px;}
.y12b{bottom:531.255000px;}
.yba{bottom:533.235000px;}
.yd7{bottom:535.035000px;}
.y159{bottom:537.195000px;}
.y4d{bottom:538.095000px;}
.y1bb{bottom:539.355000px;}
.y186{bottom:539.715000px;}
.y25{bottom:540.435000px;}
.y8c{bottom:544.035000px;}
.y1dd{bottom:544.395000px;}
.yb5{bottom:547.635000px;}
.yd6{bottom:553.035000px;}
.y12a{bottom:553.755000px;}
.y158{bottom:555.195000px;}
.y24{bottom:555.375000px;}
.y4c{bottom:556.095000px;}
.yee{bottom:556.455000px;}
.y1ba{bottom:556.635000px;}
.y185{bottom:557.715000px;}
.y1dc{bottom:561.705000px;}
.y8b{bottom:562.065000px;}
.y23{bottom:570.345000px;}
.yd5{bottom:571.065000px;}
.y157{bottom:573.225000px;}
.y1b9{bottom:573.945000px;}
.y4b{bottom:574.125000px;}
.yed{bottom:574.485000px;}
.y184{bottom:575.745000px;}
.y129{bottom:576.285000px;}
.y1db{bottom:578.985000px;}
.y8a{bottom:580.065000px;}
.y22{bottom:585.465000px;}
.yd4{bottom:589.065000px;}
.y156{bottom:591.225000px;}
.y4a{bottom:592.125000px;}
.yec{bottom:592.485000px;}
.y183{bottom:593.745000px;}
.y1da{bottom:596.265000px;}
.y89{bottom:597.705000px;}
.y128{bottom:598.785000px;}
.yd3{bottom:607.065000px;}
.y1b8{bottom:608.325000px;}
.y155{bottom:609.225000px;}
.y21{bottom:609.405000px;}
.y49{bottom:610.125000px;}
.yeb{bottom:610.485000px;}
.y85{bottom:611.565000px;}
.y182{bottom:611.745000px;}
.yb3{bottom:612.465000px;}
.y1d9{bottom:613.545000px;}
.y127{bottom:621.285000px;}
.y20{bottom:624.345000px;}
.yd2{bottom:625.065000px;}
.y1b7{bottom:625.605000px;}
.y154{bottom:627.225000px;}
.y48{bottom:628.125000px;}
.yea{bottom:628.485000px;}
.y181{bottom:629.745000px;}
.y1d8{bottom:630.645000px;}
.y1f{bottom:639.465000px;}
.y126{bottom:640.905000px;}
.y1b6{bottom:642.885000px;}
.yd1{bottom:643.065000px;}
.y153{bottom:645.225000px;}
.y47{bottom:646.125000px;}
.yb0{bottom:646.305000px;}
.ye9{bottom:646.485000px;}
.y180{bottom:647.745000px;}
.y1d7{bottom:647.925000px;}
.y1e{bottom:654.405000px;}
.y123{bottom:657.105000px;}
.y1b5{bottom:660.165000px;}
.yd0{bottom:661.065000px;}
.y152{bottom:663.225000px;}
.y46{bottom:664.125000px;}
.ye8{bottom:664.485000px;}
.y1d6{bottom:665.205000px;}
.y17f{bottom:665.745000px;}
.y83{bottom:665.925000px;}
.y1d{bottom:669.345000px;}
.y120{bottom:675.285000px;}
.y1b4{bottom:677.445000px;}
.ycf{bottom:679.065000px;}
.yaf{bottom:680.325000px;}
.y151{bottom:681.225000px;}
.y45{bottom:682.125000px;}
.ye7{bottom:682.485000px;}
.y1d5{bottom:683.565000px;}
.y17e{bottom:683.745000px;}
.y1c{bottom:684.465000px;}
.y11d{bottom:690.945000px;}
.y1b3{bottom:694.545000px;}
.yce{bottom:697.065000px;}
.y150{bottom:699.225000px;}
.y1b{bottom:699.405000px;}
.y44{bottom:700.125000px;}
.ye6{bottom:700.485000px;}
.y17d{bottom:701.745000px;}
.y1d4{bottom:701.925000px;}
.y82{bottom:703.545000px;}
.y11b{bottom:710.565000px;}
.y1b2{bottom:711.825000px;}
.y1a{bottom:714.345000px;}
.ycd{bottom:715.065000px;}
.y14f{bottom:717.225000px;}
.yae{bottom:717.585000px;}
.y43{bottom:718.125000px;}
.ye5{bottom:718.485000px;}
.y1d3{bottom:719.205000px;}
.y17c{bottom:719.745000px;}
.y81{bottom:721.545000px;}
.y1b1{bottom:729.105000px;}
.y19{bottom:729.465000px;}
.y119{bottom:732.885000px;}
.ycc{bottom:733.065000px;}
.yad{bottom:735.225000px;}
.y42{bottom:736.125000px;}
.ye4{bottom:736.485000px;}
.y17b{bottom:737.745000px;}
.y80{bottom:739.545000px;}
.y18{bottom:744.405000px;}
.y1b0{bottom:746.385000px;}
.ycb{bottom:751.065000px;}
.yac{bottom:753.225000px;}
.y1d2{bottom:753.585000px;}
.y41{bottom:754.125000px;}
.y17a{bottom:755.745000px;}
.y7f{bottom:757.545000px;}
.y17{bottom:759.345000px;}
.y118{bottom:760.605000px;}
.y1af{bottom:763.665000px;}
.ye3{bottom:768.525000px;}
.yca{bottom:769.065000px;}
.y1d1{bottom:770.865000px;}
.yab{bottom:771.225000px;}
.y40{bottom:772.125000px;}
.y179{bottom:773.745000px;}
.y117{bottom:774.285000px;}
.y16{bottom:774.465000px;}
.y7e{bottom:775.545000px;}
.y1ae{bottom:780.945000px;}
.ye2{bottom:784.185000px;}
.yc9{bottom:787.065000px;}
.y1d0{bottom:788.145000px;}
.yaa{bottom:789.225000px;}
.y15{bottom:789.405000px;}
.y3f{bottom:790.125000px;}
.y178{bottom:791.745000px;}
.y7d{bottom:793.545000px;}
.ye1{bottom:796.785000px;}
.y116{bottom:796.965000px;}
.y1ad{bottom:798.045000px;}
.y14{bottom:804.345000px;}
.yc8{bottom:805.065000px;}
.y1cf{bottom:805.425000px;}
.ya9{bottom:807.225000px;}
.y3e{bottom:808.125000px;}
.y177{bottom:809.745000px;}
.y7c{bottom:811.545000px;}
.y115{bottom:814.965000px;}
.y1ac{bottom:815.325000px;}
.y13{bottom:819.465000px;}
.y1ce{bottom:822.705000px;}
.ya8{bottom:825.225000px;}
.y3d{bottom:826.125000px;}
.y176{bottom:827.745000px;}
.y7b{bottom:829.545000px;}
.yc7{bottom:831.345000px;}
.y1ab{bottom:832.605000px;}
.y114{bottom:832.965000px;}
.y12{bottom:834.405000px;}
.y1cd{bottom:839.805000px;}
.ya7{bottom:843.225000px;}
.y3c{bottom:844.125000px;}
.y175{bottom:845.790000px;}
.y7a{bottom:847.590000px;}
.y11{bottom:849.390000px;}
.y1aa{bottom:849.930000px;}
.y113{bottom:851.010000px;}
.y1cc{bottom:857.130000px;}
.ya6{bottom:861.270000px;}
.y76{bottom:861.990000px;}
.y3b{bottom:862.170000px;}
.yfc{bottom:862.530000px;}
.y174{bottom:863.790000px;}
.y10{bottom:864.510000px;}
.y1a9{bottom:867.210000px;}
.y112{bottom:869.010000px;}
.yc6{bottom:870.630000px;}
.y1cb{bottom:874.410000px;}
.ya5{bottom:879.270000px;}
.yf{bottom:880.530000px;}
.y173{bottom:881.790000px;}
.yc5{bottom:883.410000px;}
.y1a8{bottom:884.490000px;}
.y1ca{bottom:891.690000px;}
.ya4{bottom:897.270000px;}
.yfb{bottom:898.530000px;}
.y172{bottom:899.790000px;}
.ye{bottom:900.510000px;}
.y111{bottom:901.230000px;}
.y1a7{bottom:901.590000px;}
.y1c9{bottom:908.970000px;}
.ya3{bottom:915.270000px;}
.y72{bottom:915.990000px;}
.yfa{bottom:916.530000px;}
.y110{bottom:916.890000px;}
.yd{bottom:917.790000px;}
.y1a6{bottom:918.870000px;}
.y1c8{bottom:926.250000px;}
.y13d{bottom:929.612325px;}
.y10f{bottom:929.670000px;}
.ya2{bottom:933.270000px;}
.y171{bottom:935.790000px;}
.y1a5{bottom:936.150000px;}
.yc{bottom:940.110000px;}
.y1c7{bottom:943.350000px;}
.yf9{bottom:948.570000px;}
.ya1{bottom:951.270000px;}
.yb{bottom:952.170000px;}
.y71{bottom:953.070000px;}
.y1a4{bottom:953.430000px;}
.y170{bottom:953.790000px;}
.y1c6{bottom:960.630000px;}
.yf8{bottom:964.230000px;}
.y70{bottom:969.270000px;}
.ya{bottom:969.450000px;}
.y1a3{bottom:970.710000px;}
.y16f{bottom:971.790000px;}
.yf7{bottom:976.830000px;}
.y1c5{bottom:977.910000px;}
.y9{bottom:986.730000px;}
.y6f{bottom:987.270000px;}
.y1a2{bottom:987.990000px;}
.y16e{bottom:989.790000px;}
.y1c4{bottom:995.190000px;}
.y1a1{bottom:1005.090000px;}
.y6e{bottom:1005.270000px;}
.y16d{bottom:1007.790000px;}
.y8{bottom:1008.510000px;}
.y1c3{bottom:1012.470000px;}
.y1a0{bottom:1022.370000px;}
.y6d{bottom:1023.270000px;}
.y16c{bottom:1025.790000px;}
.y1c2{bottom:1029.750000px;}
.y19f{bottom:1039.650000px;}
.y6c{bottom:1041.270000px;}
.y16b{bottom:1043.790000px;}
.y1c1{bottom:1046.850000px;}
.y7{bottom:1049.910000px;}
.y19e{bottom:1056.930000px;}
.y6b{bottom:1059.270000px;}
.y1c0{bottom:1064.130000px;}
.y16a{bottom:1070.070000px;}
.y19d{bottom:1074.210000px;}
.y6a{bottom:1077.270000px;}
.y1bf{bottom:1081.410000px;}
.y6{bottom:1091.310000px;}
.y69{bottom:1095.270000px;}
.y1be{bottom:1098.690000px;}
.y19c{bottom:1108.590000px;}
.y68{bottom:1113.270000px;}
.y1bd{bottom:1115.970000px;}
.y19b{bottom:1125.870000px;}
.y5{bottom:1128.210000px;}
.y67{bottom:1131.300000px;}
.y10e{bottom:1133.280000px;}
.y1{bottom:1143.000000px;}
.y19a{bottom:1143.180000px;}
.y66{bottom:1149.300000px;}
.y10d{bottom:1150.380000px;}
.y65{bottom:1167.300000px;}
.y10c{bottom:1167.660000px;}
.y199{bottom:1169.100000px;}
.y63{bottom:1194.660000px;}
.h29{height:10.959144px;}
.h22{height:14.220000px;}
.h24{height:14.760000px;}
.h23{height:16.740000px;}
.h2a{height:17.534631px;}
.h2b{height:17.542054px;}
.h21{height:18.000000px;}
.h2c{height:19.726460px;}
.h1f{height:20.880000px;}
.h25{height:21.060000px;}
.h26{height:21.096000px;}
.h9{height:28.115859px;}
.h1b{height:33.840000px;}
.h15{height:34.020000px;}
.hf{height:34.200000px;}
.h1e{height:34.884492px;}
.hc{height:38.100586px;}
.hb{height:38.997070px;}
.h5{height:40.605469px;}
.h20{height:40.655391px;}
.h6{height:43.215117px;}
.hd{height:43.506914px;}
.h1d{height:44.507812px;}
.h4{height:45.070312px;}
.h27{height:45.912656px;}
.h2d{height:48.321563px;}
.he{height:48.995859px;}
.h8{height:49.255313px;}
.h14{height:50.364141px;}
.h1a{height:52.066406px;}
.h13{height:54.000000px;}
.h2{height:54.180000px;}
.h18{height:54.360000px;}
.h3{height:55.825312px;}
.ha{height:59.343750px;}
.h12{height:60.679688px;}
.h1c{height:64.836000px;}
.h17{height:90.684141px;}
.h11{height:92.386406px;}
.h10{height:96.444141px;}
.h16{height:97.164141px;}
.h19{height:100.999688px;}
.h7{height:104.132812px;}
.h28{height:200.213685px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:20.160000px;}
.w7{width:41.760000px;}
.wa{width:61.596000px;}
.w9{width:62.316000px;}
.w2{width:81.576000px;}
.w8{width:261.210000px;}
.wb{width:302.970000px;}
.w5{width:357.555000px;}
.wc{width:373.076237px;}
.w3{width:683.250000px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:2.880000px;}
.x19{left:5.580000px;}
.x1c{left:10.080000px;}
.x38{left:12.060000px;}
.x1b{left:13.860000px;}
.x42{left:17.280000px;}
.x1a{left:18.360000px;}
.x40{left:20.160000px;}
.x3b{left:25.560000px;}
.x3c{left:28.620000px;}
.x43{left:31.680000px;}
.x4{left:32.754000px;}
.x23{left:35.280000px;}
.x48{left:36.431550px;}
.x1f{left:38.736000px;}
.x47{left:40.805679px;}
.x3d{left:42.660000px;}
.x41{left:43.920000px;}
.x3e{left:46.260000px;}
.x3f{left:51.840000px;}
.x14{left:61.560000px;}
.x1{left:63.900000px;}
.x2{left:66.456000px;}
.x7{left:70.379987px;}
.x8{left:72.899987px;}
.x2f{left:75.419987px;}
.xe{left:77.939987px;}
.x26{left:80.459987px;}
.xb{left:83.915987px;}
.x1d{left:85.896000px;}
.x31{left:92.375987px;}
.x30{left:100.655987px;}
.x21{left:104.040000px;}
.x15{left:112.710000px;}
.x24{left:127.620000px;}
.x44{left:138.780000px;}
.x3{left:145.476000px;}
.x29{left:171.389987px;}
.x46{left:175.094286px;}
.x10{left:177.509987px;}
.x1e{left:184.170000px;}
.x16{left:191.190000px;}
.xd{left:192.989987px;}
.x27{left:196.409987px;}
.x6{left:276.339000px;}
.x5{left:281.559000px;}
.xf{left:307.514987px;}
.xc{left:316.334987px;}
.x9{left:347.474987px;}
.x25{left:373.034987px;}
.x17{left:419.115000px;}
.x28{left:437.294987px;}
.xa{left:446.324987px;}
.x20{left:453.165000px;}
.x11{left:455.504987px;}
.x37{left:459.465000px;}
.x2b{left:465.404987px;}
.x12{left:469.544987px;}
.x33{left:476.564987px;}
.x2d{left:478.544987px;}
.x39{left:501.225000px;}
.x13{left:533.084987px;}
.x2e{left:534.704987px;}
.x4a{left:553.964987px;}
.x2c{left:555.404987px;}
.x34{left:567.644987px;}
.x49{left:572.144987px;}
.x36{left:573.944987px;}
.x45{left:578.624987px;}
.x35{left:619.349987px;}
.x3a{left:762.450000px;}
.x22{left:810.720000px;}
.x2a{left:829.079987px;}
.x32{left:843.119987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v7{vertical-align:35.840000pt;}
.v6{vertical-align:40.960000pt;}
.ls2a{letter-spacing:-0.723314pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.441067pt;}
.ls8{letter-spacing:-0.416000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.253333pt;}
.ls18{letter-spacing:-0.229333pt;}
.ls19{letter-spacing:-0.198933pt;}
.ls1a{letter-spacing:-0.153067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.077729pt;}
.ls2c{letter-spacing:-0.010364pt;}
.lse{letter-spacing:-0.007680pt;}
.ls2b{letter-spacing:-0.005182pt;}
.ls7{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.005182pt;}
.ls27{letter-spacing:0.007773pt;}
.lsd{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.094720pt;}
.ls1c{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.199040pt;}
.ls2f{letter-spacing:0.207360pt;}
.ls4{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.294933pt;}
.ls12{letter-spacing:0.309120pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.322133pt;}
.ls21{letter-spacing:0.411520pt;}
.ls32{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.473600pt;}
.ls22{letter-spacing:0.571520pt;}
.ls24{letter-spacing:1.514240pt;}
.ls17{letter-spacing:11.463040pt;}
.ls14{letter-spacing:15.359360pt;}
.ls10{letter-spacing:75.359360pt;}
.ls30{letter-spacing:89.552640pt;}
.ls2e{letter-spacing:107.472640pt;}
.ls25{letter-spacing:107.632640pt;}
.ls20{letter-spacing:110.672640pt;}
.ls2d{letter-spacing:125.552640pt;}
.ls5{letter-spacing:128.592640pt;}
.ls1{letter-spacing:145.872640pt;}
.ls16{letter-spacing:146.079360pt;}
.ws23{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws1b{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.981333pt;}
.ws18{word-spacing:-11.697920pt;}
.wsc{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.533333pt;}
.ws12{word-spacing:-11.487467pt;}
.ws6{word-spacing:-10.720000pt;}
.ws22{word-spacing:-10.278933pt;}
.ws21{word-spacing:-9.433600pt;}
.ws8{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.632320pt;}
.ws0{word-spacing:-8.480000pt;}
.ws11{word-spacing:-8.166400pt;}
.ws14{word-spacing:-7.937067pt;}
.ws20{word-spacing:-7.913067pt;}
.wsa{word-spacing:0.000000pt;}
.ws10{word-spacing:0.472960pt;}
.ws17{word-spacing:0.622080pt;}
.ws16{word-spacing:1.792000pt;}
.wse{word-spacing:3.032960pt;}
.ws15{word-spacing:3.307520pt;}
.ws1c{word-spacing:4.643627pt;}
.wsf{word-spacing:7.881600pt;}
.wsd{word-spacing:10.112000pt;}
.ws1e{word-spacing:10.898773pt;}
.ws1d{word-spacing:11.440640pt;}
._1d{margin-left:-5.901013pt;}
._1c{margin-left:-3.319680pt;}
._a{margin-left:-2.362667pt;}
._1{margin-left:-1.189333pt;}
._0{width:1.184000pt;}
._2{width:2.765227pt;}
._4{width:3.816320pt;}
._5{width:5.117440pt;}
._f{width:6.015787pt;}
._11{width:7.381120pt;}
._7{width:8.608000pt;}
._6{width:9.728000pt;}
._e{width:10.917333pt;}
._16{width:12.111360pt;}
._d{width:13.152000pt;}
._c{width:14.432000pt;}
._8{width:16.080000pt;}
._9{width:17.216000pt;}
._12{width:18.485760pt;}
._b{width:19.968000pt;}
._28{width:20.980480pt;}
._15{width:21.923200pt;}
._1e{width:23.691520pt;}
._2f{width:24.699093pt;}
._29{width:26.172800pt;}
._18{width:27.106560pt;}
._17{width:28.722560pt;}
._13{width:30.103680pt;}
._14{width:31.037440pt;}
._3{width:32.112000pt;}
._20{width:33.360640pt;}
._24{width:34.952960pt;}
._2e{width:35.898453pt;}
._25{width:36.796800pt;}
._2b{width:37.927680pt;}
._2a{width:39.149440pt;}
._21{width:43.224320pt;}
._10{width:44.256000pt;}
._33{width:45.768320pt;}
._22{width:48.589440pt;}
._23{width:49.717760pt;}
._1f{width:50.752853pt;}
._1a{width:57.157120pt;}
._19{width:58.432000pt;}
._32{width:65.396053pt;}
._31{width:66.400000pt;}
._26{width:71.381382pt;}
._27{width:73.039607pt;}
._34{width:88.444800pt;}
._30{width:90.222080pt;}
._2c{width:116.910080pt;}
._2d{width:139.599360pt;}
._1b{width:658.826667pt;}
.fsb{font-size:12.954879pt;}
.fsc{font-size:20.727806pt;}
.fsd{font-size:20.736581pt;}
.fse{font-size:23.318782pt;}
.fs9{font-size:26.880000pt;}
.fsa{font-size:29.440000pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:0.320000pt;}
.y121{bottom:2.400000pt;}
.y122{bottom:2.560000pt;}
.yb2{bottom:2.880000pt;}
.y79{bottom:3.200000pt;}
.y124{bottom:3.520000pt;}
.y125{bottom:4.000000pt;}
.y11e{bottom:4.160000pt;}
.y11f{bottom:4.480000pt;}
.y11a{bottom:5.280000pt;}
.y11c{bottom:5.440000pt;}
.y4{bottom:5.600000pt;}
.yb8{bottom:8.000000pt;}
.y13f{bottom:8.794367pt;}
.y84{bottom:8.960000pt;}
.y73{bottom:9.280000pt;}
.yb4{bottom:10.240000pt;}
.y75{bottom:10.400000pt;}
.y87{bottom:11.360000pt;}
.yb1{bottom:11.840000pt;}
.y13e{bottom:14.786024pt;}
.y140{bottom:18.186681pt;}
.y78{bottom:19.200000pt;}
.y3{bottom:19.680000pt;}
.yb7{bottom:24.026667pt;}
.y86{bottom:27.360000pt;}
.y2{bottom:33.760000pt;}
.y141{bottom:34.315504pt;}
.y77{bottom:35.200000pt;}
.y88{bottom:35.520000pt;}
.yb6{bottom:40.026667pt;}
.yb9{bottom:44.826667pt;}
.y142{bottom:50.476716pt;}
.y64{bottom:50.752000pt;}
.y143{bottom:66.605540pt;}
.y14a{bottom:79.366097pt;}
.y144{bottom:82.734364pt;}
.y145{bottom:98.863189pt;}
.y146{bottom:114.992013pt;}
.y3a{bottom:123.072000pt;}
.y62{bottom:128.352000pt;}
.y147{bottom:131.153224pt;}
.y14e{bottom:133.420323pt;}
.y39{bottom:139.066667pt;}
.y14d{bottom:140.842389pt;}
.y61{bottom:144.346667pt;}
.y148{bottom:147.279350pt;}
.y14c{bottom:148.223971pt;}
.y38{bottom:155.066667pt;}
.y14b{bottom:155.632543pt;}
.y13c{bottom:155.866667pt;}
.ye0{bottom:156.506667pt;}
.y169{bottom:157.466667pt;}
.y60{bottom:160.346667pt;}
.y198{bottom:161.946667pt;}
.y149{bottom:163.405475pt;}
.ya0{bottom:163.546667pt;}
.y37{bottom:171.066667pt;}
.y13b{bottom:171.866667pt;}
.ydf{bottom:172.506667pt;}
.y168{bottom:173.466667pt;}
.y5f{bottom:176.346667pt;}
.y197{bottom:177.946667pt;}
.y9f{bottom:179.546667pt;}
.y36{bottom:187.066667pt;}
.y13a{bottom:187.866667pt;}
.y167{bottom:189.466667pt;}
.yf6{bottom:191.546667pt;}
.y5e{bottom:192.346667pt;}
.y196{bottom:193.946667pt;}
.y9e{bottom:195.546667pt;}
.y10b{bottom:195.706667pt;}
.yde{bottom:201.146667pt;}
.y35{bottom:203.066667pt;}
.y139{bottom:203.866667pt;}
.y166{bottom:205.466667pt;}
.yf5{bottom:207.546667pt;}
.y5d{bottom:208.346667pt;}
.y195{bottom:209.946667pt;}
.y10a{bottom:211.066667pt;}
.y9d{bottom:211.546667pt;}
.ydd{bottom:215.066667pt;}
.y34{bottom:219.066667pt;}
.y138{bottom:219.866667pt;}
.y165{bottom:221.466667pt;}
.yf4{bottom:223.546667pt;}
.y5c{bottom:224.346667pt;}
.y194{bottom:225.946667pt;}
.ydc{bottom:226.266667pt;}
.y109{bottom:226.426667pt;}
.y9c{bottom:227.546667pt;}
.y33{bottom:235.066667pt;}
.y137{bottom:235.866667pt;}
.y164{bottom:237.466667pt;}
.yf3{bottom:239.546667pt;}
.y108{bottom:241.786667pt;}
.y193{bottom:241.946667pt;}
.y9b{bottom:243.546667pt;}
.y5b{bottom:247.906667pt;}
.y32{bottom:251.106667pt;}
.y136{bottom:251.906667pt;}
.y163{bottom:253.506667pt;}
.yf2{bottom:255.586667pt;}
.y107{bottom:257.186667pt;}
.y9a{bottom:259.586667pt;}
.y192{bottom:265.346667pt;}
.y31{bottom:267.106667pt;}
.y135{bottom:267.906667pt;}
.y162{bottom:269.506667pt;}
.y5a{bottom:270.306667pt;}
.y106{bottom:272.386667pt;}
.y99{bottom:275.586667pt;}
.y30{bottom:283.106667pt;}
.y134{bottom:283.906667pt;}
.yf1{bottom:284.226667pt;}
.y161{bottom:285.506667pt;}
.y59{bottom:286.306667pt;}
.y105{bottom:287.746667pt;}
.y98{bottom:291.586667pt;}
.yf0{bottom:298.146667pt;}
.y2f{bottom:299.106667pt;}
.y133{bottom:299.906667pt;}
.y160{bottom:301.506667pt;}
.y58{bottom:302.306667pt;}
.y104{bottom:303.106667pt;}
.y191{bottom:303.746667pt;}
.y97{bottom:307.586667pt;}
.yef{bottom:309.346667pt;}
.yc4{bottom:313.986667pt;}
.y2e{bottom:315.106667pt;}
.y15f{bottom:317.506667pt;}
.y57{bottom:318.306667pt;}
.y103{bottom:318.466667pt;}
.y190{bottom:319.746667pt;}
.y132{bottom:323.266667pt;}
.y96{bottom:323.586667pt;}
.yc3{bottom:329.986667pt;}
.y2d{bottom:331.106667pt;}
.y15e{bottom:333.506667pt;}
.y102{bottom:333.826667pt;}
.y56{bottom:334.306667pt;}
.y18f{bottom:335.746667pt;}
.y95{bottom:339.586667pt;}
.yc2{bottom:345.986667pt;}
.y2c{bottom:347.106667pt;}
.y101{bottom:349.506667pt;}
.y55{bottom:350.306667pt;}
.y18e{bottom:351.746667pt;}
.y131{bottom:353.026667pt;}
.y94{bottom:355.586667pt;}
.yc1{bottom:361.986667pt;}
.y2b{bottom:363.106667pt;}
.y100{bottom:365.506667pt;}
.y54{bottom:366.306667pt;}
.y18d{bottom:367.746667pt;}
.y93{bottom:371.586667pt;}
.y130{bottom:372.226667pt;}
.yc0{bottom:377.986667pt;}
.y2a{bottom:379.106667pt;}
.yff{bottom:381.506667pt;}
.y53{bottom:382.306667pt;}
.y18c{bottom:383.746667pt;}
.y92{bottom:387.586667pt;}
.y12f{bottom:392.226667pt;}
.ybf{bottom:393.986667pt;}
.y29{bottom:395.106667pt;}
.yfe{bottom:397.506667pt;}
.y52{bottom:398.306667pt;}
.y18b{bottom:399.746667pt;}
.y91{bottom:403.586667pt;}
.ybe{bottom:409.986667pt;}
.y28{bottom:411.106667pt;}
.ydb{bottom:411.586667pt;}
.y12e{bottom:412.226667pt;}
.y15d{bottom:413.506667pt;}
.y51{bottom:414.306667pt;}
.y18a{bottom:415.746667pt;}
.y90{bottom:419.586667pt;}
.ybd{bottom:425.986667pt;}
.y27{bottom:427.106667pt;}
.yda{bottom:427.586667pt;}
.y15c{bottom:429.506667pt;}
.y50{bottom:430.306667pt;}
.y189{bottom:431.746667pt;}
.y12d{bottom:432.226667pt;}
.y8f{bottom:435.586667pt;}
.yfd{bottom:437.346667pt;}
.y1e0{bottom:437.986667pt;}
.ybc{bottom:441.986667pt;}
.yd9{bottom:443.586667pt;}
.y15b{bottom:445.506667pt;}
.y4f{bottom:446.306667pt;}
.y188{bottom:447.746667pt;}
.y26{bottom:450.466667pt;}
.y8e{bottom:451.586667pt;}
.y12c{bottom:452.226667pt;}
.y1df{bottom:453.346667pt;}
.ybb{bottom:457.986667pt;}
.yd8{bottom:459.586667pt;}
.y15a{bottom:461.506667pt;}
.y4e{bottom:462.306667pt;}
.y187{bottom:463.746667pt;}
.y1bc{bottom:464.066667pt;}
.y8d{bottom:467.586667pt;}
.y1de{bottom:468.546667pt;}
.y12b{bottom:472.226667pt;}
.yba{bottom:473.986667pt;}
.yd7{bottom:475.586667pt;}
.y159{bottom:477.506667pt;}
.y4d{bottom:478.306667pt;}
.y1bb{bottom:479.426667pt;}
.y186{bottom:479.746667pt;}
.y25{bottom:480.386667pt;}
.y8c{bottom:483.586667pt;}
.y1dd{bottom:483.906667pt;}
.yb5{bottom:486.786667pt;}
.yd6{bottom:491.586667pt;}
.y12a{bottom:492.226667pt;}
.y158{bottom:493.506667pt;}
.y24{bottom:493.666667pt;}
.y4c{bottom:494.306667pt;}
.yee{bottom:494.626667pt;}
.y1ba{bottom:494.786667pt;}
.y185{bottom:495.746667pt;}
.y1dc{bottom:499.293333pt;}
.y8b{bottom:499.613333pt;}
.y23{bottom:506.973333pt;}
.yd5{bottom:507.613333pt;}
.y157{bottom:509.533333pt;}
.y1b9{bottom:510.173333pt;}
.y4b{bottom:510.333333pt;}
.yed{bottom:510.653333pt;}
.y184{bottom:511.773333pt;}
.y129{bottom:512.253333pt;}
.y1db{bottom:514.653333pt;}
.y8a{bottom:515.613333pt;}
.y22{bottom:520.413333pt;}
.yd4{bottom:523.613333pt;}
.y156{bottom:525.533333pt;}
.y4a{bottom:526.333333pt;}
.yec{bottom:526.653333pt;}
.y183{bottom:527.773333pt;}
.y1da{bottom:530.013333pt;}
.y89{bottom:531.293333pt;}
.y128{bottom:532.253333pt;}
.yd3{bottom:539.613333pt;}
.y1b8{bottom:540.733333pt;}
.y155{bottom:541.533333pt;}
.y21{bottom:541.693333pt;}
.y49{bottom:542.333333pt;}
.yeb{bottom:542.653333pt;}
.y85{bottom:543.613333pt;}
.y182{bottom:543.773333pt;}
.yb3{bottom:544.413333pt;}
.y1d9{bottom:545.373333pt;}
.y127{bottom:552.253333pt;}
.y20{bottom:554.973333pt;}
.yd2{bottom:555.613333pt;}
.y1b7{bottom:556.093333pt;}
.y154{bottom:557.533333pt;}
.y48{bottom:558.333333pt;}
.yea{bottom:558.653333pt;}
.y181{bottom:559.773333pt;}
.y1d8{bottom:560.573333pt;}
.y1f{bottom:568.413333pt;}
.y126{bottom:569.693333pt;}
.y1b6{bottom:571.453333pt;}
.yd1{bottom:571.613333pt;}
.y153{bottom:573.533333pt;}
.y47{bottom:574.333333pt;}
.yb0{bottom:574.493333pt;}
.ye9{bottom:574.653333pt;}
.y180{bottom:575.773333pt;}
.y1d7{bottom:575.933333pt;}
.y1e{bottom:581.693333pt;}
.y123{bottom:584.093333pt;}
.y1b5{bottom:586.813333pt;}
.yd0{bottom:587.613333pt;}
.y152{bottom:589.533333pt;}
.y46{bottom:590.333333pt;}
.ye8{bottom:590.653333pt;}
.y1d6{bottom:591.293333pt;}
.y17f{bottom:591.773333pt;}
.y83{bottom:591.933333pt;}
.y1d{bottom:594.973333pt;}
.y120{bottom:600.253333pt;}
.y1b4{bottom:602.173333pt;}
.ycf{bottom:603.613333pt;}
.yaf{bottom:604.733333pt;}
.y151{bottom:605.533333pt;}
.y45{bottom:606.333333pt;}
.ye7{bottom:606.653333pt;}
.y1d5{bottom:607.613333pt;}
.y17e{bottom:607.773333pt;}
.y1c{bottom:608.413333pt;}
.y11d{bottom:614.173333pt;}
.y1b3{bottom:617.373333pt;}
.yce{bottom:619.613333pt;}
.y150{bottom:621.533333pt;}
.y1b{bottom:621.693333pt;}
.y44{bottom:622.333333pt;}
.ye6{bottom:622.653333pt;}
.y17d{bottom:623.773333pt;}
.y1d4{bottom:623.933333pt;}
.y82{bottom:625.373333pt;}
.y11b{bottom:631.613333pt;}
.y1b2{bottom:632.733333pt;}
.y1a{bottom:634.973333pt;}
.ycd{bottom:635.613333pt;}
.y14f{bottom:637.533333pt;}
.yae{bottom:637.853333pt;}
.y43{bottom:638.333333pt;}
.ye5{bottom:638.653333pt;}
.y1d3{bottom:639.293333pt;}
.y17c{bottom:639.773333pt;}
.y81{bottom:641.373333pt;}
.y1b1{bottom:648.093333pt;}
.y19{bottom:648.413333pt;}
.y119{bottom:651.453333pt;}
.ycc{bottom:651.613333pt;}
.yad{bottom:653.533333pt;}
.y42{bottom:654.333333pt;}
.ye4{bottom:654.653333pt;}
.y17b{bottom:655.773333pt;}
.y80{bottom:657.373333pt;}
.y18{bottom:661.693333pt;}
.y1b0{bottom:663.453333pt;}
.ycb{bottom:667.613333pt;}
.yac{bottom:669.533333pt;}
.y1d2{bottom:669.853333pt;}
.y41{bottom:670.333333pt;}
.y17a{bottom:671.773333pt;}
.y7f{bottom:673.373333pt;}
.y17{bottom:674.973333pt;}
.y118{bottom:676.093333pt;}
.y1af{bottom:678.813333pt;}
.ye3{bottom:683.133333pt;}
.yca{bottom:683.613333pt;}
.y1d1{bottom:685.213333pt;}
.yab{bottom:685.533333pt;}
.y40{bottom:686.333333pt;}
.y179{bottom:687.773333pt;}
.y117{bottom:688.253333pt;}
.y16{bottom:688.413333pt;}
.y7e{bottom:689.373333pt;}
.y1ae{bottom:694.173333pt;}
.ye2{bottom:697.053333pt;}
.yc9{bottom:699.613333pt;}
.y1d0{bottom:700.573333pt;}
.yaa{bottom:701.533333pt;}
.y15{bottom:701.693333pt;}
.y3f{bottom:702.333333pt;}
.y178{bottom:703.773333pt;}
.y7d{bottom:705.373333pt;}
.ye1{bottom:708.253333pt;}
.y116{bottom:708.413333pt;}
.y1ad{bottom:709.373333pt;}
.y14{bottom:714.973333pt;}
.yc8{bottom:715.613333pt;}
.y1cf{bottom:715.933333pt;}
.ya9{bottom:717.533333pt;}
.y3e{bottom:718.333333pt;}
.y177{bottom:719.773333pt;}
.y7c{bottom:721.373333pt;}
.y115{bottom:724.413333pt;}
.y1ac{bottom:724.733333pt;}
.y13{bottom:728.413333pt;}
.y1ce{bottom:731.293333pt;}
.ya8{bottom:733.533333pt;}
.y3d{bottom:734.333333pt;}
.y176{bottom:735.773333pt;}
.y7b{bottom:737.373333pt;}
.yc7{bottom:738.973333pt;}
.y1ab{bottom:740.093333pt;}
.y114{bottom:740.413333pt;}
.y12{bottom:741.693333pt;}
.y1cd{bottom:746.493333pt;}
.ya7{bottom:749.533333pt;}
.y3c{bottom:750.333333pt;}
.y175{bottom:751.813333pt;}
.y7a{bottom:753.413333pt;}
.y11{bottom:755.013333pt;}
.y1aa{bottom:755.493333pt;}
.y113{bottom:756.453333pt;}
.y1cc{bottom:761.893333pt;}
.ya6{bottom:765.573333pt;}
.y76{bottom:766.213333pt;}
.y3b{bottom:766.373333pt;}
.yfc{bottom:766.693333pt;}
.y174{bottom:767.813333pt;}
.y10{bottom:768.453333pt;}
.y1a9{bottom:770.853333pt;}
.y112{bottom:772.453333pt;}
.yc6{bottom:773.893333pt;}
.y1cb{bottom:777.253333pt;}
.ya5{bottom:781.573333pt;}
.yf{bottom:782.693333pt;}
.y173{bottom:783.813333pt;}
.yc5{bottom:785.253333pt;}
.y1a8{bottom:786.213333pt;}
.y1ca{bottom:792.613333pt;}
.ya4{bottom:797.573333pt;}
.yfb{bottom:798.693333pt;}
.y172{bottom:799.813333pt;}
.ye{bottom:800.453333pt;}
.y111{bottom:801.093333pt;}
.y1a7{bottom:801.413333pt;}
.y1c9{bottom:807.973333pt;}
.ya3{bottom:813.573333pt;}
.y72{bottom:814.213333pt;}
.yfa{bottom:814.693333pt;}
.y110{bottom:815.013333pt;}
.yd{bottom:815.813333pt;}
.y1a6{bottom:816.773333pt;}
.y1c8{bottom:823.333333pt;}
.y13d{bottom:826.322067pt;}
.y10f{bottom:826.373333pt;}
.ya2{bottom:829.573333pt;}
.y171{bottom:831.813333pt;}
.y1a5{bottom:832.133333pt;}
.yc{bottom:835.653333pt;}
.y1c7{bottom:838.533333pt;}
.yf9{bottom:843.173333pt;}
.ya1{bottom:845.573333pt;}
.yb{bottom:846.373333pt;}
.y71{bottom:847.173333pt;}
.y1a4{bottom:847.493333pt;}
.y170{bottom:847.813333pt;}
.y1c6{bottom:853.893333pt;}
.yf8{bottom:857.093333pt;}
.y70{bottom:861.573333pt;}
.ya{bottom:861.733333pt;}
.y1a3{bottom:862.853333pt;}
.y16f{bottom:863.813333pt;}
.yf7{bottom:868.293333pt;}
.y1c5{bottom:869.253333pt;}
.y9{bottom:877.093333pt;}
.y6f{bottom:877.573333pt;}
.y1a2{bottom:878.213333pt;}
.y16e{bottom:879.813333pt;}
.y1c4{bottom:884.613333pt;}
.y1a1{bottom:893.413333pt;}
.y6e{bottom:893.573333pt;}
.y16d{bottom:895.813333pt;}
.y8{bottom:896.453333pt;}
.y1c3{bottom:899.973333pt;}
.y1a0{bottom:908.773333pt;}
.y6d{bottom:909.573333pt;}
.y16c{bottom:911.813333pt;}
.y1c2{bottom:915.333333pt;}
.y19f{bottom:924.133333pt;}
.y6c{bottom:925.573333pt;}
.y16b{bottom:927.813333pt;}
.y1c1{bottom:930.533333pt;}
.y7{bottom:933.253333pt;}
.y19e{bottom:939.493333pt;}
.y6b{bottom:941.573333pt;}
.y1c0{bottom:945.893333pt;}
.y16a{bottom:951.173333pt;}
.y19d{bottom:954.853333pt;}
.y6a{bottom:957.573333pt;}
.y1bf{bottom:961.253333pt;}
.y6{bottom:970.053333pt;}
.y69{bottom:973.573333pt;}
.y1be{bottom:976.613333pt;}
.y19c{bottom:985.413333pt;}
.y68{bottom:989.573333pt;}
.y1bd{bottom:991.973333pt;}
.y19b{bottom:1000.773333pt;}
.y5{bottom:1002.853333pt;}
.y67{bottom:1005.600000pt;}
.y10e{bottom:1007.360000pt;}
.y1{bottom:1016.000000pt;}
.y19a{bottom:1016.160000pt;}
.y66{bottom:1021.600000pt;}
.y10d{bottom:1022.560000pt;}
.y65{bottom:1037.600000pt;}
.y10c{bottom:1037.920000pt;}
.y199{bottom:1039.200000pt;}
.y63{bottom:1061.920000pt;}
.h29{height:9.741462pt;}
.h22{height:12.640000pt;}
.h24{height:13.120000pt;}
.h23{height:14.880000pt;}
.h2a{height:15.586339pt;}
.h2b{height:15.592937pt;}
.h21{height:16.000000pt;}
.h2c{height:17.534631pt;}
.h1f{height:18.560000pt;}
.h25{height:18.720000pt;}
.h26{height:18.752000pt;}
.h9{height:24.991875pt;}
.h1b{height:30.080000pt;}
.h15{height:30.240000pt;}
.hf{height:30.400000pt;}
.h1e{height:31.008437pt;}
.hc{height:33.867188pt;}
.hb{height:34.664062pt;}
.h5{height:36.093750pt;}
.h20{height:36.138125pt;}
.h6{height:38.413438pt;}
.hd{height:38.672812pt;}
.h1d{height:39.562500pt;}
.h4{height:40.062500pt;}
.h27{height:40.811250pt;}
.h2d{height:42.952500pt;}
.he{height:43.551875pt;}
.h8{height:43.782500pt;}
.h14{height:44.768125pt;}
.h1a{height:46.281250pt;}
.h13{height:48.000000pt;}
.h2{height:48.160000pt;}
.h18{height:48.320000pt;}
.h3{height:49.622500pt;}
.ha{height:52.750000pt;}
.h12{height:53.937500pt;}
.h1c{height:57.632000pt;}
.h17{height:80.608125pt;}
.h11{height:82.121250pt;}
.h10{height:85.728125pt;}
.h16{height:86.368125pt;}
.h19{height:89.777500pt;}
.h7{height:92.562500pt;}
.h28{height:177.967720pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:17.920000pt;}
.w7{width:37.120000pt;}
.wa{width:54.752000pt;}
.w9{width:55.392000pt;}
.w2{width:72.512000pt;}
.w8{width:232.186667pt;}
.wb{width:269.306667pt;}
.w5{width:317.826667pt;}
.wc{width:331.623322pt;}
.w3{width:607.333333pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:2.560000pt;}
.x19{left:4.960000pt;}
.x1c{left:8.960000pt;}
.x38{left:10.720000pt;}
.x1b{left:12.320000pt;}
.x42{left:15.360000pt;}
.x1a{left:16.320000pt;}
.x40{left:17.920000pt;}
.x3b{left:22.720000pt;}
.x3c{left:25.440000pt;}
.x43{left:28.160000pt;}
.x4{left:29.114667pt;}
.x23{left:31.360000pt;}
.x48{left:32.383600pt;}
.x1f{left:34.432000pt;}
.x47{left:36.271714pt;}
.x3d{left:37.920000pt;}
.x41{left:39.040000pt;}
.x3e{left:41.120000pt;}
.x3f{left:46.080000pt;}
.x14{left:54.720000pt;}
.x1{left:56.800000pt;}
.x2{left:59.072000pt;}
.x7{left:62.559988pt;}
.x8{left:64.799988pt;}
.x2f{left:67.039988pt;}
.xe{left:69.279988pt;}
.x26{left:71.519988pt;}
.xb{left:74.591988pt;}
.x1d{left:76.352000pt;}
.x31{left:82.111988pt;}
.x30{left:89.471988pt;}
.x21{left:92.480000pt;}
.x15{left:100.186667pt;}
.x24{left:113.440000pt;}
.x44{left:123.360000pt;}
.x3{left:129.312000pt;}
.x29{left:152.346655pt;}
.x46{left:155.639365pt;}
.x10{left:157.786655pt;}
.x1e{left:163.706667pt;}
.x16{left:169.946667pt;}
.xd{left:171.546655pt;}
.x27{left:174.586655pt;}
.x6{left:245.634667pt;}
.x5{left:250.274667pt;}
.xf{left:273.346655pt;}
.xc{left:281.186655pt;}
.x9{left:308.866655pt;}
.x25{left:331.586655pt;}
.x17{left:372.546667pt;}
.x28{left:388.706655pt;}
.xa{left:396.733322pt;}
.x20{left:402.813333pt;}
.x11{left:404.893322pt;}
.x37{left:408.413333pt;}
.x2b{left:413.693322pt;}
.x12{left:417.373322pt;}
.x33{left:423.613322pt;}
.x2d{left:425.373322pt;}
.x39{left:445.533333pt;}
.x13{left:473.853322pt;}
.x2e{left:475.293322pt;}
.x4a{left:492.413322pt;}
.x2c{left:493.693322pt;}
.x34{left:504.573322pt;}
.x49{left:508.573322pt;}
.x36{left:510.173322pt;}
.x45{left:514.333322pt;}
.x35{left:550.533322pt;}
.x3a{left:677.733333pt;}
.x22{left:720.640000pt;}
.x2a{left:736.959988pt;}
.x32{left:749.439988pt;}
}




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