
    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_c4c677bbe3d4acd235ff6097.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_52b321e19ed6bc0ada7bb81c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_82abfbc9bd9125d36952f8b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_574575ad35fd6163d7b548ca.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_691e7d1c1ed956ac898cd144.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_bec5e8652c05d33fa95eac43.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_bbbec9bca5cb167f1628ab49.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_807d914bd9d046823cc432d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_7105182e6423c21ddcf217d1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706055;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m2{transform:matrix(0.249781,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000002,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-33.120000px;}
.v4{vertical-align:-27.360000px;}
.v8{vertical-align:-20.880000px;}
.v1{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.vb{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v2{vertical-align:9.360000px;}
.v9{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.v7{vertical-align:33.120000px;}
.ls19{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.690000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.072000px;}
.ls35{letter-spacing:-0.000003px;}
.ls9{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.028080px;}
.ls23{letter-spacing:0.036000px;}
.ls2c{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.106800px;}
.ls33{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.138240px;}
.ls6{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.152640px;}
.ls2e{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.181440px;}
.ls32{letter-spacing:0.192000px;}
.ls30{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.245280px;}
.ls2b{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.269280px;}
.ls16{letter-spacing:0.288000px;}
.ls31{letter-spacing:0.298800px;}
.ls1c{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.449280px;}
.ls12{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.496080px;}
.ls18{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls24{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.440000px;}
.ls22{letter-spacing:3.600000px;}
.ls21{letter-spacing:4.320000px;}
.ls25{letter-spacing:5.220000px;}
.ls20{letter-spacing:12.240000px;}
.ls36{letter-spacing:15.840000px;}
.ls34{letter-spacing:21.600000px;}
.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;}
}
.ws2{word-spacing:-84.240000px;}
.ws8{word-spacing:-72.000000px;}
.ws21{word-spacing:-40.608000px;}
.ws22{word-spacing:-40.607997px;}
.ws1{word-spacing:-21.060000px;}
.wsf{word-spacing:-18.504000px;}
.wsd{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.496000px;}
.ws12{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.064000px;}
.ws1d{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.199800px;}
.ws20{word-spacing:-15.146400px;}
.ws1c{word-spacing:-15.093600px;}
.ws9{word-spacing:-15.046800px;}
.ws1a{word-spacing:-14.993280px;}
.ws1e{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.ws14{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.241200px;}
.ws15{word-spacing:-12.240000px;}
.wsc{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws18{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1.085280px;}
._0{width:1.426800px;}
._2{width:2.974800px;}
._b{width:3.986400px;}
._c{width:5.217600px;}
._26{width:6.226800px;}
._3{width:7.244640px;}
._4{width:8.676720px;}
._11{width:9.720000px;}
._e{width:11.160000px;}
._5{width:12.168000px;}
._10{width:13.825440px;}
._f{width:15.197280px;}
._d{width:16.416000px;}
._1d{width:19.056000px;}
._14{width:20.160000px;}
._15{width:21.432000px;}
._19{width:22.560000px;}
._a{width:24.301440px;}
._9{width:25.469280px;}
._18{width:27.306720px;}
._7{width:28.368000px;}
._8{width:30.230400px;}
._1e{width:32.040000px;}
._1f{width:33.888000px;}
._1c{width:36.360000px;}
._22{width:37.368000px;}
._1b{width:38.424000px;}
._12{width:40.032000px;}
._13{width:41.628000px;}
._25{width:42.879600px;}
._29{width:44.280000px;}
._1a{width:46.224000px;}
._2d{width:49.680000px;}
._20{width:52.848000px;}
._16{width:57.168000px;}
._17{width:58.477200px;}
._21{width:59.661600px;}
._27{width:72.072000px;}
._24{width:79.510560px;}
._23{width:80.640000px;}
._28{width:86.376000px;}
._2a{width:90.432000px;}
._3a{width:113.401680px;}
._2b{width:135.216000px;}
._2c{width:136.440000px;}
._38{width:143.281680px;}
._37{width:172.801680px;}
._6{width:194.376000px;}
._35{width:202.681680px;}
._40{width:224.171040px;}
._36{width:232.921680px;}
._39{width:234.132480px;}
._42{width:252.965760px;}
._3e{width:254.248560px;}
._33{width:263.868480px;}
._41{width:282.485760px;}
._3f{width:283.948560px;}
._31{width:292.015440px;}
._34{width:294.108480px;}
._2f{width:321.895440px;}
._3d{width:323.808480px;}
._32{width:351.775440px;}
._2e{width:381.655440px;}
._30{width:411.895440px;}
._3c{width:422.019360px;}
._3b{width:451.899360px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.994277px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1ae{bottom:2.988378px;}
.y1c2{bottom:7.020000px;}
.y1aa{bottom:8.460000px;}
.y1a6{bottom:8.640000px;}
.y1ab{bottom:9.900000px;}
.y1a7{bottom:10.080000px;}
.yff{bottom:11.880000px;}
.y103{bottom:14.220000px;}
.y10a{bottom:14.250000px;}
.y101{bottom:14.400000px;}
.y118{bottom:20.520000px;}
.y11c{bottom:24.660000px;}
.y11a{bottom:24.705000px;}
.yfd{bottom:24.840000px;}
.y129{bottom:25.920000px;}
.y120{bottom:31.500000px;}
.y122{bottom:31.530000px;}
.yfe{bottom:37.620000px;}
.y116{bottom:37.800000px;}
.y117{bottom:54.900000px;}
.y2{bottom:57.096000px;}
.y1c1{bottom:64.440000px;}
.y1{bottom:77.796000px;}
.y1bf{bottom:89.100000px;}
.y1c0{bottom:91.440000px;}
.y23{bottom:110.376000px;}
.y45{bottom:111.096000px;}
.y160{bottom:114.336000px;}
.y1a2{bottom:116.316000px;}
.y1e4{bottom:125.496000px;}
.ybb{bottom:129.816000px;}
.y15f{bottom:131.616000px;}
.y9b{bottom:134.496000px;}
.yca{bottom:138.096000px;}
.y22{bottom:138.816000px;}
.y64{bottom:140.076000px;}
.y80{bottom:142.056000px;}
.y44{bottom:142.596000px;}
.y1a1{bottom:143.316000px;}
.y114{bottom:146.556000px;}
.yf8{bottom:148.536000px;}
.y15e{bottom:148.896000px;}
.y1e3{bottom:156.450000px;}
.yba{bottom:160.950000px;}
.y15d{bottom:166.170000px;}
.y9a{bottom:167.070000px;}
.yc9{bottom:169.050000px;}
.y1a0{bottom:170.310000px;}
.y21{bottom:170.490000px;}
.y63{bottom:171.030000px;}
.y7f{bottom:173.190000px;}
.y43{bottom:175.170000px;}
.y113{bottom:177.690000px;}
.yf7{bottom:179.490000px;}
.y15c{bottom:183.270000px;}
.y1e2{bottom:187.590000px;}
.yb9{bottom:191.910000px;}
.y19f{bottom:197.310000px;}
.y112{bottom:197.715000px;}
.y99{bottom:198.030000px;}
.yc8{bottom:200.010000px;}
.y15b{bottom:200.550000px;}
.y62{bottom:202.170000px;}
.y20{bottom:202.890000px;}
.y7e{bottom:204.150000px;}
.y42{bottom:206.130000px;}
.yf6{bottom:206.670000px;}
.y111{bottom:214.995000px;}
.y15a{bottom:217.830000px;}
.y1e1{bottom:218.550000px;}
.yb8{bottom:223.590000px;}
.y19e{bottom:224.310000px;}
.y98{bottom:229.170000px;}
.yc7{bottom:231.150000px;}
.y110{bottom:232.275000px;}
.y61{bottom:233.130000px;}
.y1f{bottom:234.030000px;}
.y159{bottom:235.110000px;}
.y7d{bottom:235.290000px;}
.y41{bottom:237.270000px;}
.y1c4{bottom:239.970000px;}
.y1e0{bottom:249.690000px;}
.y19d{bottom:251.310000px;}
.y158{bottom:252.390000px;}
.y10f{bottom:255.855000px;}
.yb7{bottom:256.170000px;}
.y97{bottom:260.130000px;}
.yc6{bottom:262.110000px;}
.y60{bottom:264.270000px;}
.y75{bottom:264.810000px;}
.y1e{bottom:265.530000px;}
.y10e{bottom:266.115000px;}
.y7c{bottom:266.250000px;}
.y40{bottom:268.230000px;}
.y157{bottom:269.670000px;}
.y1c3{bottom:271.110000px;}
.y127{bottom:271.515000px;}
.y19c{bottom:278.310000px;}
.y1df{bottom:280.650000px;}
.y156{bottom:286.815000px;}
.yb6{bottom:287.175000px;}
.y1be{bottom:290.055000px;}
.y96{bottom:291.315000px;}
.yc5{bottom:293.295000px;}
.y5f{bottom:295.275000px;}
.y10d{bottom:297.075000px;}
.y74{bottom:297.435000px;}
.y1d{bottom:298.155000px;}
.y3f{bottom:299.415000px;}
.y126{bottom:302.655000px;}
.y155{bottom:304.095000px;}
.y19b{bottom:305.355000px;}
.y1de{bottom:311.835000px;}
.yb5{bottom:318.315000px;}
.y154{bottom:321.375000px;}
.y95{bottom:322.275000px;}
.y125{bottom:322.635000px;}
.yc4{bottom:324.975000px;}
.y5e{bottom:326.415000px;}
.y10c{bottom:328.215000px;}
.y7b{bottom:328.395000px;}
.y73{bottom:328.935000px;}
.y1c{bottom:329.835000px;}
.y3e{bottom:330.375000px;}
.y19a{bottom:332.355000px;}
.y153{bottom:338.655000px;}
.y124{bottom:339.915000px;}
.y1dd{bottom:342.795000px;}
.yb4{bottom:349.275000px;}
.y94{bottom:353.415000px;}
.y152{bottom:355.935000px;}
.y5d{bottom:357.375000px;}
.y10b{bottom:359.175000px;}
.y7a{bottom:359.355000px;}
.y3d{bottom:361.515000px;}
.y72{bottom:362.055000px;}
.y1b{bottom:362.235000px;}
.y123{bottom:363.495000px;}
.y12d{bottom:368.175000px;}
.y121{bottom:373.035000px;}
.y151{bottom:373.215000px;}
.y1dc{bottom:373.935000px;}
.yee{bottom:376.095000px;}
.yb3{bottom:380.415000px;}
.y93{bottom:384.375000px;}
.y199{bottom:386.355000px;}
.y5c{bottom:388.515000px;}
.y109{bottom:390.315000px;}
.y79{bottom:390.495000px;}
.y3c{bottom:392.475000px;}
.y1a{bottom:393.375000px;}
.y71{bottom:394.635000px;}
.yea{bottom:395.895000px;}
.y1bd{bottom:396.615000px;}
.y12c{bottom:399.345000px;}
.yed{bottom:403.095000px;}
.y1db{bottom:404.895000px;}
.y150{bottom:407.595000px;}
.yb2{bottom:411.375000px;}
.y198{bottom:413.355000px;}
.y11f{bottom:414.465000px;}
.ydb{bottom:415.515000px;}
.y92{bottom:416.055000px;}
.y12b{bottom:419.325000px;}
.y5b{bottom:419.475000px;}
.y108{bottom:421.305000px;}
.ybf{bottom:421.455000px;}
.y78{bottom:422.175000px;}
.y3b{bottom:423.615000px;}
.y19{bottom:424.335000px;}
.y14f{bottom:424.875000px;}
.y70{bottom:425.595000px;}
.ye9{bottom:427.035000px;}
.y1da{bottom:435.855000px;}
.y197{bottom:440.355000px;}
.y14e{bottom:442.155000px;}
.yb1{bottom:442.515000px;}
.y12a{bottom:442.905000px;}
.yda{bottom:446.475000px;}
.y91{bottom:449.175000px;}
.yc3{bottom:450.615000px;}
.y5a{bottom:451.155000px;}
.y107{bottom:452.445000px;}
.ybe{bottom:452.595000px;}
.y128{bottom:453.165000px;}
.yf5{bottom:453.855000px;}
.y3a{bottom:454.575000px;}
.y1bc{bottom:454.755000px;}
.y18{bottom:455.475000px;}
.y11e{bottom:455.865000px;}
.y6f{bottom:456.555000px;}
.ye8{bottom:457.995000px;}
.y14d{bottom:459.435000px;}
.y1d9{bottom:466.995000px;}
.y196{bottom:467.355000px;}
.yb0{bottom:473.475000px;}
.y14c{bottom:476.535000px;}
.yd9{bottom:477.615000px;}
.y90{bottom:481.575000px;}
.y106{bottom:483.405000px;}
.y59{bottom:483.555000px;}
.y1bb{bottom:483.735000px;}
.yf4{bottom:484.995000px;}
.y39{bottom:485.715000px;}
.y17{bottom:486.435000px;}
.y6e{bottom:487.695000px;}
.ye7{bottom:488.955000px;}
.y14b{bottom:493.815000px;}
.y195{bottom:494.355000px;}
.y11d{bottom:497.265000px;}
.y1d8{bottom:497.955000px;}
.yaf{bottom:504.615000px;}
.yd8{bottom:508.575000px;}
.y14a{bottom:511.095000px;}
.y8f{bottom:512.715000px;}
.yc2{bottom:513.255000px;}
.y105{bottom:514.545000px;}
.y58{bottom:514.695000px;}
.yf3{bottom:515.955000px;}
.ye6{bottom:516.135000px;}
.y38{bottom:516.675000px;}
.y16{bottom:517.395000px;}
.y6d{bottom:518.655000px;}
.y194{bottom:521.355000px;}
.y149{bottom:528.375000px;}
.y1d7{bottom:529.095000px;}
.yae{bottom:535.575000px;}
.y11b{bottom:538.665000px;}
.yd7{bottom:539.715000px;}
.y1ba{bottom:541.875000px;}
.y8e{bottom:543.675000px;}
.y104{bottom:545.505000px;}
.y57{bottom:545.655000px;}
.yf2{bottom:546.915000px;}
.y37{bottom:547.815000px;}
.y193{bottom:548.355000px;}
.y6c{bottom:549.795000px;}
.y15{bottom:555.375000px;}
.y1d6{bottom:560.055000px;}
.y148{bottom:562.935000px;}
.yad{bottom:566.565000px;}
.yd6{bottom:570.705000px;}
.y1b9{bottom:570.885000px;}
.y17d{bottom:573.945000px;}
.y8d{bottom:574.845000px;}
.y192{bottom:575.385000px;}
.y102{bottom:576.645000px;}
.y56{bottom:576.825000px;}
.yf1{bottom:578.085000px;}
.y36{bottom:578.805000px;}
.y119{bottom:580.065000px;}
.y14{bottom:580.245000px;}
.y6b{bottom:580.785000px;}
.y1d5{bottom:591.225000px;}
.y147{bottom:597.345000px;}
.yac{bottom:598.245000px;}
.y1b8{bottom:600.045000px;}
.yd5{bottom:601.845000px;}
.y191{bottom:602.385000px;}
.y17c{bottom:605.085000px;}
.y8c{bottom:605.805000px;}
.y100{bottom:607.650000px;}
.y55{bottom:607.785000px;}
.yc1{bottom:608.505000px;}
.yf0{bottom:609.045000px;}
.y35{bottom:609.945000px;}
.y6a{bottom:611.925000px;}
.y13{bottom:612.645000px;}
.y146{bottom:614.625000px;}
.y1d4{bottom:622.185000px;}
.y115{bottom:622.950000px;}
.y17b{bottom:625.065000px;}
.y1b7{bottom:629.025000px;}
.y190{bottom:629.385000px;}
.yab{bottom:631.365000px;}
.y145{bottom:631.905000px;}
.yd4{bottom:633.345000px;}
.yef{bottom:636.045000px;}
.y8b{bottom:636.945000px;}
.y54{bottom:638.925000px;}
.yfc{bottom:640.230000px;}
.y34{bottom:640.905000px;}
.y17a{bottom:642.165000px;}
.y69{bottom:642.885000px;}
.y12{bottom:643.785000px;}
.ye5{bottom:646.845000px;}
.y144{bottom:649.185000px;}
.y1d3{bottom:653.325000px;}
.y18f{bottom:656.385000px;}
.y1b6{bottom:658.005000px;}
.y179{bottom:659.445000px;}
.yaa{bottom:663.765000px;}
.yd3{bottom:665.925000px;}
.y143{bottom:666.465000px;}
.y8a{bottom:667.905000px;}
.y53{bottom:669.885000px;}
.y33{bottom:672.045000px;}
.y68{bottom:674.025000px;}
.y11{bottom:675.285000px;}
.y178{bottom:676.725000px;}
.ye4{bottom:677.985000px;}
.y18e{bottom:683.385000px;}
.y142{bottom:683.565000px;}
.y1d2{bottom:684.285000px;}
.y1b5{bottom:687.165000px;}
.y177{bottom:694.005000px;}
.ya9{bottom:694.905000px;}
.yd2{bottom:696.885000px;}
.yec{bottom:699.045000px;}
.y89{bottom:699.585000px;}
.y141{bottom:700.845000px;}
.y52{bottom:701.025000px;}
.y32{bottom:703.005000px;}
.y67{bottom:704.985000px;}
.yfb{bottom:707.730000px;}
.y10{bottom:707.865000px;}
.ye3{bottom:708.945000px;}
.y18d{bottom:710.385000px;}
.y176{bottom:711.285000px;}
.y1d1{bottom:715.425000px;}
.y1b4{bottom:716.145000px;}
.y140{bottom:718.125000px;}
.ya8{bottom:725.865000px;}
.yd1{bottom:728.565000px;}
.yeb{bottom:730.545000px;}
.y51{bottom:731.985000px;}
.y31{bottom:734.145000px;}
.y13f{bottom:735.405000px;}
.y66{bottom:736.125000px;}
.y18c{bottom:737.385000px;}
.yf{bottom:738.825000px;}
.yfa{bottom:738.870000px;}
.ye2{bottom:740.085000px;}
.y1b3{bottom:745.305000px;}
.y175{bottom:745.665000px;}
.y1d0{bottom:746.385000px;}
.y13e{bottom:752.685000px;}
.ya7{bottom:757.005000px;}
.yd0{bottom:761.145000px;}
.y174{bottom:762.945000px;}
.y88{bottom:763.125000px;}
.y50{bottom:763.665000px;}
.y18b{bottom:764.385000px;}
.y77{bottom:765.105000px;}
.y30{bottom:765.645000px;}
.ye1{bottom:766.905000px;}
.y65{bottom:767.085000px;}
.yf9{bottom:769.830000px;}
.ye{bottom:769.965000px;}
.y1b2{bottom:774.285000px;}
.y1cf{bottom:777.525000px;}
.y173{bottom:780.225000px;}
.y13d{bottom:787.065000px;}
.ya6{bottom:788.685000px;}
.y18a{bottom:791.385000px;}
.ycf{bottom:792.105000px;}
.y87{bottom:794.085000px;}
.y4f{bottom:796.245000px;}
.y172{bottom:797.505000px;}
.y2f{bottom:798.225000px;}
.yd{bottom:800.925000px;}
.y1b1{bottom:803.445000px;}
.y13c{bottom:804.345000px;}
.y1ce{bottom:808.485000px;}
.y171{bottom:814.785000px;}
.y189{bottom:818.385000px;}
.ya5{bottom:821.085000px;}
.y13b{bottom:821.625000px;}
.yce{bottom:823.065000px;}
.y86{bottom:825.225000px;}
.y4e{bottom:827.205000px;}
.y76{bottom:827.745000px;}
.y2e{bottom:829.185000px;}
.y170{bottom:831.885000px;}
.yc{bottom:832.065000px;}
.y1b0{bottom:832.425000px;}
.y13a{bottom:838.905000px;}
.y1cd{bottom:839.625000px;}
.y188{bottom:845.385000px;}
.y16f{bottom:849.210000px;}
.ya4{bottom:852.810000px;}
.ycd{bottom:854.250000px;}
.y85{bottom:856.230000px;}
.ybd{bottom:856.950000px;}
.y4d{bottom:858.390000px;}
.y2d{bottom:860.370000px;}
.y1af{bottom:861.450000px;}
.yb{bottom:863.070000px;}
.y16e{bottom:866.490000px;}
.y1cc{bottom:870.630000px;}
.y187{bottom:872.430000px;}
.y139{bottom:873.330000px;}
.y16d{bottom:883.770000px;}
.ya3{bottom:885.210000px;}
.y84{bottom:887.370000px;}
.y4c{bottom:889.350000px;}
.ye0{bottom:890.250000px;}
.y138{bottom:890.610000px;}
.y2c{bottom:891.330000px;}
.y1ad{bottom:897.539919px;}
.y186{bottom:899.430000px;}
.ya{bottom:901.050000px;}
.y1cb{bottom:901.770000px;}
.y137{bottom:907.890000px;}
.ya2{bottom:916.350000px;}
.ycc{bottom:916.890000px;}
.y83{bottom:918.330000px;}
.y1ac{bottom:919.590000px;}
.y4b{bottom:920.310000px;}
.ybc{bottom:921.030000px;}
.ydf{bottom:921.210000px;}
.y2b{bottom:922.470000px;}
.y9{bottom:925.170000px;}
.y185{bottom:926.430000px;}
.y1ca{bottom:932.730000px;}
.y16c{bottom:935.430000px;}
.y136{bottom:942.450000px;}
.ya1{bottom:947.310000px;}
.y1a9{bottom:948.750000px;}
.y82{bottom:950.010000px;}
.y4a{bottom:951.450000px;}
.yde{bottom:952.350000px;}
.y16b{bottom:952.710000px;}
.y2a{bottom:953.430000px;}
.y8{bottom:956.310000px;}
.y135{bottom:959.730000px;}
.y1c9{bottom:963.870000px;}
.y16a{bottom:969.990000px;}
.y134{bottom:976.830000px;}
.y1a8{bottom:977.730000px;}
.ya0{bottom:978.990000px;}
.y184{bottom:980.430000px;}
.y49{bottom:982.410000px;}
.ydd{bottom:983.310000px;}
.y29{bottom:984.570000px;}
.y7{bottom:987.270000px;}
.y133{bottom:994.110000px;}
.y1c8{bottom:994.830000px;}
.y169{bottom:1004.550000px;}
.y183{bottom:1007.430000px;}
.ydc{bottom:1010.310000px;}
.y132{bottom:1011.390000px;}
.y9f{bottom:1011.570000px;}
.y48{bottom:1013.550000px;}
.yc0{bottom:1014.090000px;}
.y1a5{bottom:1014.270000px;}
.y28{bottom:1015.530000px;}
.y6{bottom:1021.650000px;}
.y168{bottom:1021.830000px;}
.y1c7{bottom:1025.970000px;}
.y131{bottom:1028.670000px;}
.y182{bottom:1034.430000px;}
.y167{bottom:1038.930000px;}
.y9e{bottom:1042.530000px;}
.y47{bottom:1044.510000px;}
.y81{bottom:1045.230000px;}
.y130{bottom:1045.950000px;}
.y27{bottom:1046.670000px;}
.y166{bottom:1056.210000px;}
.y1c6{bottom:1056.930000px;}
.y5{bottom:1059.270000px;}
.y181{bottom:1061.430000px;}
.y12f{bottom:1063.230000px;}
.y1a4{bottom:1067.190000px;}
.y165{bottom:1073.490000px;}
.y9d{bottom:1074.210000px;}
.ycb{bottom:1075.650000px;}
.y46{bottom:1076.190000px;}
.y26{bottom:1077.630000px;}
.y12e{bottom:1080.330000px;}
.y1c5{bottom:1088.070000px;}
.y180{bottom:1088.430000px;}
.y164{bottom:1090.770000px;}
.y4{bottom:1095.450000px;}
.y1a3{bottom:1099.770000px;}
.y17f{bottom:1106.430000px;}
.y9c{bottom:1107.330000px;}
.y163{bottom:1108.050000px;}
.y25{bottom:1108.770000px;}
.y1e5{bottom:1119.030000px;}
.y162{bottom:1125.330000px;}
.y17e{bottom:1133.460000px;}
.y3{bottom:1134.180000px;}
.y24{bottom:1139.760000px;}
.y161{bottom:1142.460000px;}
.h1e{height:18.000892px;}
.h1d{height:26.640000px;}
.h1b{height:26.820000px;}
.h20{height:26.856000px;}
.h14{height:30.960000px;}
.h13{height:30.996000px;}
.h12{height:31.140000px;}
.h22{height:33.683203px;}
.h1c{height:34.380000px;}
.h15{height:34.855313px;}
.h6{height:39.760312px;}
.h19{height:41.400000px;}
.h18{height:41.436000px;}
.h11{height:42.164648px;}
.h1f{height:43.026120px;}
.h9{height:43.246406px;}
.h1a{height:44.100000px;}
.h23{height:50.273438px;}
.hb{height:50.800781px;}
.h10{height:51.660000px;}
.hc{height:52.695866px;}
.ha{height:53.573906px;}
.h16{height:55.735312px;}
.h8{height:59.343750px;}
.h2{height:64.546875px;}
.h7{height:67.120312px;}
.h3{height:67.565039px;}
.h17{height:68.940000px;}
.h5{height:70.606406px;}
.h4{height:75.519844px;}
.h21{height:105.840000px;}
.hf{height:892.980000px;}
.hd{height:892.980015px;}
.he{height:893.250000px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w1f{width:8.999873px;}
.w20{width:16.380000px;}
.w15{width:52.956000px;}
.w7{width:53.856000px;}
.w16{width:66.240000px;}
.w18{width:81.000000px;}
.we{width:81.756000px;}
.w8{width:89.280000px;}
.w19{width:94.500000px;}
.wf{width:105.300000px;}
.w9{width:121.500000px;}
.w1a{width:121.536000px;}
.w11{width:129.060000px;}
.wb{width:135.000000px;}
.wa{width:135.036000px;}
.w10{width:135.936000px;}
.wc{width:175.500000px;}
.w1c{width:178.230000px;}
.w1d{width:178.380000px;}
.w1b{width:189.000000px;}
.w13{width:197.280000px;}
.w14{width:197.310000px;}
.w12{width:219.810000px;}
.wd{width:221.250000px;}
.w17{width:239.970000px;}
.w1e{width:284.835000px;}
.w21{width:627.405000px;}
.w3{width:892.979988px;}
.w2{width:892.980000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w6{width:1262.879951px;}
.w4{width:1262.879970px;}
.w5{width:1263.000000px;}
.x46{left:-2.340000px;}
.x0{left:0.000000px;}
.x7b{left:1.406260px;}
.x78{left:7.020000px;}
.x52{left:8.100000px;}
.x72{left:9.360000px;}
.x73{left:10.620000px;}
.x65{left:13.500000px;}
.x56{left:14.760000px;}
.x4d{left:16.380000px;}
.x5f{left:17.820000px;}
.x69{left:19.080000px;}
.x48{left:20.880000px;}
.x55{left:22.320000px;}
.x4f{left:26.280000px;}
.x70{left:27.360000px;}
.x50{left:28.440000px;}
.x6f{left:29.880000px;}
.x6e{left:31.680000px;}
.x4a{left:34.380000px;}
.x60{left:37.620000px;}
.x4c{left:39.960000px;}
.x64{left:41.580000px;}
.x5d{left:42.660000px;}
.x51{left:46.620000px;}
.x6b{left:48.960000px;}
.x7c{left:50.580000px;}
.x5c{left:54.000000px;}
.x6c{left:55.440000px;}
.x68{left:57.420000px;}
.x57{left:58.500000px;}
.x58{left:63.000000px;}
.x5a{left:64.485000px;}
.x54{left:69.525000px;}
.x59{left:78.660000px;}
.x5e{left:83.160000px;}
.x75{left:85.500000px;}
.x6d{left:89.640000px;}
.x71{left:94.185000px;}
.x61{left:97.065000px;}
.x45{left:98.280000px;}
.x5b{left:101.565000px;}
.x2{left:106.415987px;}
.x6{left:112.355973px;}
.x7{left:121.355987px;}
.x77{left:123.516000px;}
.x80{left:130.355987px;}
.x7f{left:140.435987px;}
.x7e{left:142.236000px;}
.x47{left:152.130000px;}
.x62{left:180.030000px;}
.xa{left:190.289973px;}
.x30{left:192.449973px;}
.xb{left:199.289987px;}
.x31{left:210.449987px;}
.x2d{left:216.569987px;}
.x49{left:241.410000px;}
.x22{left:281.549973px;}
.x63{left:285.330000px;}
.x2b{left:292.709973px;}
.x23{left:299.594987px;}
.x13{left:304.634973px;}
.x2c{left:310.754987px;}
.x14{left:313.634987px;}
.x20{left:332.714987px;}
.x32{left:339.014987px;}
.x7a{left:345.689959px;}
.x2a{left:347.114987px;}
.x4b{left:362.910000px;}
.xc{left:377.534987px;}
.x26{left:385.454987px;}
.x33{left:390.314973px;}
.x3{left:393.194987px;}
.x2e{left:403.274973px;}
.x34{left:408.314987px;}
.x37{left:413.534987px;}
.x2f{left:421.274987px;}
.x1b{left:457.094973px;}
.xd{left:461.054973px;}
.xe{left:470.054987px;}
.x76{left:473.114987px;}
.x1c{left:475.094987px;}
.x1d{left:479.594973px;}
.x79{left:484.815000px;}
.x1e{left:497.624987px;}
.xf{left:508.064973px;}
.x10{left:517.064987px;}
.x7d{left:526.589959px;}
.x41{left:527.684987px;}
.x35{left:537.764973px;}
.x66{left:550.335000px;}
.x36{left:555.764987px;}
.x4{left:597.884973px;}
.x19{left:601.124973px;}
.x11{left:602.924973px;}
.x5{left:606.884987px;}
.x12{left:611.924987px;}
.x1a{left:619.124987px;}
.x24{left:622.364973px;}
.x4e{left:632.955000px;}
.x21{left:637.304987px;}
.x25{left:640.364987px;}
.x42{left:661.064987px;}
.x3d{left:669.164973px;}
.x3e{left:674.204973px;}
.x39{left:680.504987px;}
.x1f{left:686.624973px;}
.x3a{left:690.764987px;}
.x3f{left:692.204987px;}
.x15{left:704.669973px;}
.x16{left:722.669987px;}
.x27{left:725.909973px;}
.x17{left:727.169973px;}
.x40{left:728.969987px;}
.x3b{left:731.309973px;}
.x29{left:736.889987px;}
.x28{left:743.909987px;}
.x18{left:745.169987px;}
.x3c{left:749.309987px;}
.x74{left:754.485000px;}
.x8{left:767.489973px;}
.x38{left:768.749987px;}
.x67{left:770.145000px;}
.x43{left:774.329987px;}
.x9{left:776.489987px;}
.x1{left:777.749987px;}
.x53{left:943.485000px;}
.x6a{left:967.425000px;}
.x44{left:1138.649981px;}
@media print{
.va{vertical-align:-29.440000pt;}
.v4{vertical-align:-24.320000pt;}
.v8{vertical-align:-18.560000pt;}
.v1{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.vb{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v2{vertical-align:8.320000pt;}
.v9{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.v7{vertical-align:29.440000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls35{letter-spacing:-0.000003pt;}
.ls9{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.024960pt;}
.ls23{letter-spacing:0.032000pt;}
.ls2c{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.094933pt;}
.ls33{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.122880pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.135680pt;}
.ls2e{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.161280pt;}
.ls32{letter-spacing:0.170667pt;}
.ls30{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.218027pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.239360pt;}
.ls16{letter-spacing:0.256000pt;}
.ls31{letter-spacing:0.265600pt;}
.ls1c{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.399360pt;}
.ls12{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.440960pt;}
.ls18{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.640000pt;}
.ls20{letter-spacing:10.880000pt;}
.ls36{letter-spacing:14.080000pt;}
.ls34{letter-spacing:19.200000pt;}
.ws2{word-spacing:-74.880000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws21{word-spacing:-36.096000pt;}
.ws22{word-spacing:-36.095997pt;}
.ws1{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.448000pt;}
.wsd{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.552000pt;}
.ws12{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.510933pt;}
.ws20{word-spacing:-13.463467pt;}
.ws1c{word-spacing:-13.416533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1a{word-spacing:-13.327360pt;}
.ws1e{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.881067pt;}
.ws15{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws18{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-0.964693pt;}
._0{width:1.268267pt;}
._2{width:2.644267pt;}
._b{width:3.543467pt;}
._c{width:4.637867pt;}
._26{width:5.534933pt;}
._3{width:6.439680pt;}
._4{width:7.712640pt;}
._11{width:8.640000pt;}
._e{width:9.920000pt;}
._5{width:10.816000pt;}
._10{width:12.289280pt;}
._f{width:13.508693pt;}
._d{width:14.592000pt;}
._1d{width:16.938667pt;}
._14{width:17.920000pt;}
._15{width:19.050667pt;}
._19{width:20.053333pt;}
._a{width:21.601280pt;}
._9{width:22.639360pt;}
._18{width:24.272640pt;}
._7{width:25.216000pt;}
._8{width:26.871467pt;}
._1e{width:28.480000pt;}
._1f{width:30.122667pt;}
._1c{width:32.320000pt;}
._22{width:33.216000pt;}
._1b{width:34.154667pt;}
._12{width:35.584000pt;}
._13{width:37.002667pt;}
._25{width:38.115200pt;}
._29{width:39.360000pt;}
._1a{width:41.088000pt;}
._2d{width:44.160000pt;}
._20{width:46.976000pt;}
._16{width:50.816000pt;}
._17{width:51.979733pt;}
._21{width:53.032533pt;}
._27{width:64.064000pt;}
._24{width:70.676053pt;}
._23{width:71.680000pt;}
._28{width:76.778667pt;}
._2a{width:80.384000pt;}
._3a{width:100.801493pt;}
._2b{width:120.192000pt;}
._2c{width:121.280000pt;}
._38{width:127.361493pt;}
._37{width:153.601493pt;}
._6{width:172.778667pt;}
._35{width:180.161493pt;}
._40{width:199.263147pt;}
._36{width:207.041493pt;}
._39{width:208.117760pt;}
._42{width:224.858453pt;}
._3e{width:225.998720pt;}
._33{width:234.549760pt;}
._41{width:251.098453pt;}
._3f{width:252.398720pt;}
._31{width:259.569280pt;}
._34{width:261.429760pt;}
._2f{width:286.129280pt;}
._3d{width:287.829760pt;}
._32{width:312.689280pt;}
._2e{width:339.249280pt;}
._30{width:366.129280pt;}
._3c{width:375.128320pt;}
._3b{width:401.688320pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.661580pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1ae{bottom:2.656336pt;}
.y1c2{bottom:6.240000pt;}
.y1aa{bottom:7.520000pt;}
.y1a6{bottom:7.680000pt;}
.y1ab{bottom:8.800000pt;}
.y1a7{bottom:8.960000pt;}
.yff{bottom:10.560000pt;}
.y103{bottom:12.640000pt;}
.y10a{bottom:12.666667pt;}
.y101{bottom:12.800000pt;}
.y118{bottom:18.240000pt;}
.y11c{bottom:21.920000pt;}
.y11a{bottom:21.960000pt;}
.yfd{bottom:22.080000pt;}
.y129{bottom:23.040000pt;}
.y120{bottom:28.000000pt;}
.y122{bottom:28.026667pt;}
.yfe{bottom:33.440000pt;}
.y116{bottom:33.600000pt;}
.y117{bottom:48.800000pt;}
.y2{bottom:50.752000pt;}
.y1c1{bottom:57.280000pt;}
.y1{bottom:69.152000pt;}
.y1bf{bottom:79.200000pt;}
.y1c0{bottom:81.280000pt;}
.y23{bottom:98.112000pt;}
.y45{bottom:98.752000pt;}
.y160{bottom:101.632000pt;}
.y1a2{bottom:103.392000pt;}
.y1e4{bottom:111.552000pt;}
.ybb{bottom:115.392000pt;}
.y15f{bottom:116.992000pt;}
.y9b{bottom:119.552000pt;}
.yca{bottom:122.752000pt;}
.y22{bottom:123.392000pt;}
.y64{bottom:124.512000pt;}
.y80{bottom:126.272000pt;}
.y44{bottom:126.752000pt;}
.y1a1{bottom:127.392000pt;}
.y114{bottom:130.272000pt;}
.yf8{bottom:132.032000pt;}
.y15e{bottom:132.352000pt;}
.y1e3{bottom:139.066667pt;}
.yba{bottom:143.066667pt;}
.y15d{bottom:147.706667pt;}
.y9a{bottom:148.506667pt;}
.yc9{bottom:150.266667pt;}
.y1a0{bottom:151.386667pt;}
.y21{bottom:151.546667pt;}
.y63{bottom:152.026667pt;}
.y7f{bottom:153.946667pt;}
.y43{bottom:155.706667pt;}
.y113{bottom:157.946667pt;}
.yf7{bottom:159.546667pt;}
.y15c{bottom:162.906667pt;}
.y1e2{bottom:166.746667pt;}
.yb9{bottom:170.586667pt;}
.y19f{bottom:175.386667pt;}
.y112{bottom:175.746667pt;}
.y99{bottom:176.026667pt;}
.yc8{bottom:177.786667pt;}
.y15b{bottom:178.266667pt;}
.y62{bottom:179.706667pt;}
.y20{bottom:180.346667pt;}
.y7e{bottom:181.466667pt;}
.y42{bottom:183.226667pt;}
.yf6{bottom:183.706667pt;}
.y111{bottom:191.106667pt;}
.y15a{bottom:193.626667pt;}
.y1e1{bottom:194.266667pt;}
.yb8{bottom:198.746667pt;}
.y19e{bottom:199.386667pt;}
.y98{bottom:203.706667pt;}
.yc7{bottom:205.466667pt;}
.y110{bottom:206.466667pt;}
.y61{bottom:207.226667pt;}
.y1f{bottom:208.026667pt;}
.y159{bottom:208.986667pt;}
.y7d{bottom:209.146667pt;}
.y41{bottom:210.906667pt;}
.y1c4{bottom:213.306667pt;}
.y1e0{bottom:221.946667pt;}
.y19d{bottom:223.386667pt;}
.y158{bottom:224.346667pt;}
.y10f{bottom:227.426667pt;}
.yb7{bottom:227.706667pt;}
.y97{bottom:231.226667pt;}
.yc6{bottom:232.986667pt;}
.y60{bottom:234.906667pt;}
.y75{bottom:235.386667pt;}
.y1e{bottom:236.026667pt;}
.y10e{bottom:236.546667pt;}
.y7c{bottom:236.666667pt;}
.y40{bottom:238.426667pt;}
.y157{bottom:239.706667pt;}
.y1c3{bottom:240.986667pt;}
.y127{bottom:241.346667pt;}
.y19c{bottom:247.386667pt;}
.y1df{bottom:249.466667pt;}
.y156{bottom:254.946667pt;}
.yb6{bottom:255.266667pt;}
.y1be{bottom:257.826667pt;}
.y96{bottom:258.946667pt;}
.yc5{bottom:260.706667pt;}
.y5f{bottom:262.466667pt;}
.y10d{bottom:264.066667pt;}
.y74{bottom:264.386667pt;}
.y1d{bottom:265.026667pt;}
.y3f{bottom:266.146667pt;}
.y126{bottom:269.026667pt;}
.y155{bottom:270.306667pt;}
.y19b{bottom:271.426667pt;}
.y1de{bottom:277.186667pt;}
.yb5{bottom:282.946667pt;}
.y154{bottom:285.666667pt;}
.y95{bottom:286.466667pt;}
.y125{bottom:286.786667pt;}
.yc4{bottom:288.866667pt;}
.y5e{bottom:290.146667pt;}
.y10c{bottom:291.746667pt;}
.y7b{bottom:291.906667pt;}
.y73{bottom:292.386667pt;}
.y1c{bottom:293.186667pt;}
.y3e{bottom:293.666667pt;}
.y19a{bottom:295.426667pt;}
.y153{bottom:301.026667pt;}
.y124{bottom:302.146667pt;}
.y1dd{bottom:304.706667pt;}
.yb4{bottom:310.466667pt;}
.y94{bottom:314.146667pt;}
.y152{bottom:316.386667pt;}
.y5d{bottom:317.666667pt;}
.y10b{bottom:319.266667pt;}
.y7a{bottom:319.426667pt;}
.y3d{bottom:321.346667pt;}
.y72{bottom:321.826667pt;}
.y1b{bottom:321.986667pt;}
.y123{bottom:323.106667pt;}
.y12d{bottom:327.266667pt;}
.y121{bottom:331.586667pt;}
.y151{bottom:331.746667pt;}
.y1dc{bottom:332.386667pt;}
.yee{bottom:334.306667pt;}
.yb3{bottom:338.146667pt;}
.y93{bottom:341.666667pt;}
.y199{bottom:343.426667pt;}
.y5c{bottom:345.346667pt;}
.y109{bottom:346.946667pt;}
.y79{bottom:347.106667pt;}
.y3c{bottom:348.866667pt;}
.y1a{bottom:349.666667pt;}
.y71{bottom:350.786667pt;}
.yea{bottom:351.906667pt;}
.y1bd{bottom:352.546667pt;}
.y12c{bottom:354.973333pt;}
.yed{bottom:358.306667pt;}
.y1db{bottom:359.906667pt;}
.y150{bottom:362.306667pt;}
.yb2{bottom:365.666667pt;}
.y198{bottom:367.426667pt;}
.y11f{bottom:368.413333pt;}
.ydb{bottom:369.346667pt;}
.y92{bottom:369.826667pt;}
.y12b{bottom:372.733333pt;}
.y5b{bottom:372.866667pt;}
.y108{bottom:374.493333pt;}
.ybf{bottom:374.626667pt;}
.y78{bottom:375.266667pt;}
.y3b{bottom:376.546667pt;}
.y19{bottom:377.186667pt;}
.y14f{bottom:377.666667pt;}
.y70{bottom:378.306667pt;}
.ye9{bottom:379.586667pt;}
.y1da{bottom:387.426667pt;}
.y197{bottom:391.426667pt;}
.y14e{bottom:393.026667pt;}
.yb1{bottom:393.346667pt;}
.y12a{bottom:393.693333pt;}
.yda{bottom:396.866667pt;}
.y91{bottom:399.266667pt;}
.yc3{bottom:400.546667pt;}
.y5a{bottom:401.026667pt;}
.y107{bottom:402.173333pt;}
.ybe{bottom:402.306667pt;}
.y128{bottom:402.813333pt;}
.yf5{bottom:403.426667pt;}
.y3a{bottom:404.066667pt;}
.y1bc{bottom:404.226667pt;}
.y18{bottom:404.866667pt;}
.y11e{bottom:405.213333pt;}
.y6f{bottom:405.826667pt;}
.ye8{bottom:407.106667pt;}
.y14d{bottom:408.386667pt;}
.y1d9{bottom:415.106667pt;}
.y196{bottom:415.426667pt;}
.yb0{bottom:420.866667pt;}
.y14c{bottom:423.586667pt;}
.yd9{bottom:424.546667pt;}
.y90{bottom:428.066667pt;}
.y106{bottom:429.693333pt;}
.y59{bottom:429.826667pt;}
.y1bb{bottom:429.986667pt;}
.yf4{bottom:431.106667pt;}
.y39{bottom:431.746667pt;}
.y17{bottom:432.386667pt;}
.y6e{bottom:433.506667pt;}
.ye7{bottom:434.626667pt;}
.y14b{bottom:438.946667pt;}
.y195{bottom:439.426667pt;}
.y11d{bottom:442.013333pt;}
.y1d8{bottom:442.626667pt;}
.yaf{bottom:448.546667pt;}
.yd8{bottom:452.066667pt;}
.y14a{bottom:454.306667pt;}
.y8f{bottom:455.746667pt;}
.yc2{bottom:456.226667pt;}
.y105{bottom:457.373333pt;}
.y58{bottom:457.506667pt;}
.yf3{bottom:458.626667pt;}
.ye6{bottom:458.786667pt;}
.y38{bottom:459.266667pt;}
.y16{bottom:459.906667pt;}
.y6d{bottom:461.026667pt;}
.y194{bottom:463.426667pt;}
.y149{bottom:469.666667pt;}
.y1d7{bottom:470.306667pt;}
.yae{bottom:476.066667pt;}
.y11b{bottom:478.813333pt;}
.yd7{bottom:479.746667pt;}
.y1ba{bottom:481.666667pt;}
.y8e{bottom:483.266667pt;}
.y104{bottom:484.893333pt;}
.y57{bottom:485.026667pt;}
.yf2{bottom:486.146667pt;}
.y37{bottom:486.946667pt;}
.y193{bottom:487.426667pt;}
.y6c{bottom:488.706667pt;}
.y15{bottom:493.666667pt;}
.y1d6{bottom:497.826667pt;}
.y148{bottom:500.386667pt;}
.yad{bottom:503.613333pt;}
.yd6{bottom:507.293333pt;}
.y1b9{bottom:507.453333pt;}
.y17d{bottom:510.173333pt;}
.y8d{bottom:510.973333pt;}
.y192{bottom:511.453333pt;}
.y102{bottom:512.573333pt;}
.y56{bottom:512.733333pt;}
.yf1{bottom:513.853333pt;}
.y36{bottom:514.493333pt;}
.y119{bottom:515.613333pt;}
.y14{bottom:515.773333pt;}
.y6b{bottom:516.253333pt;}
.y1d5{bottom:525.533333pt;}
.y147{bottom:530.973333pt;}
.yac{bottom:531.773333pt;}
.y1b8{bottom:533.373333pt;}
.yd5{bottom:534.973333pt;}
.y191{bottom:535.453333pt;}
.y17c{bottom:537.853333pt;}
.y8c{bottom:538.493333pt;}
.y100{bottom:540.133333pt;}
.y55{bottom:540.253333pt;}
.yc1{bottom:540.893333pt;}
.yf0{bottom:541.373333pt;}
.y35{bottom:542.173333pt;}
.y6a{bottom:543.933333pt;}
.y13{bottom:544.573333pt;}
.y146{bottom:546.333333pt;}
.y1d4{bottom:553.053333pt;}
.y115{bottom:553.733333pt;}
.y17b{bottom:555.613333pt;}
.y1b7{bottom:559.133333pt;}
.y190{bottom:559.453333pt;}
.yab{bottom:561.213333pt;}
.y145{bottom:561.693333pt;}
.yd4{bottom:562.973333pt;}
.yef{bottom:565.373333pt;}
.y8b{bottom:566.173333pt;}
.y54{bottom:567.933333pt;}
.yfc{bottom:569.093333pt;}
.y34{bottom:569.693333pt;}
.y17a{bottom:570.813333pt;}
.y69{bottom:571.453333pt;}
.y12{bottom:572.253333pt;}
.ye5{bottom:574.973333pt;}
.y144{bottom:577.053333pt;}
.y1d3{bottom:580.733333pt;}
.y18f{bottom:583.453333pt;}
.y1b6{bottom:584.893333pt;}
.y179{bottom:586.173333pt;}
.yaa{bottom:590.013333pt;}
.yd3{bottom:591.933333pt;}
.y143{bottom:592.413333pt;}
.y8a{bottom:593.693333pt;}
.y53{bottom:595.453333pt;}
.y33{bottom:597.373333pt;}
.y68{bottom:599.133333pt;}
.y11{bottom:600.253333pt;}
.y178{bottom:601.533333pt;}
.ye4{bottom:602.653333pt;}
.y18e{bottom:607.453333pt;}
.y142{bottom:607.613333pt;}
.y1d2{bottom:608.253333pt;}
.y1b5{bottom:610.813333pt;}
.y177{bottom:616.893333pt;}
.ya9{bottom:617.693333pt;}
.yd2{bottom:619.453333pt;}
.yec{bottom:621.373333pt;}
.y89{bottom:621.853333pt;}
.y141{bottom:622.973333pt;}
.y52{bottom:623.133333pt;}
.y32{bottom:624.893333pt;}
.y67{bottom:626.653333pt;}
.yfb{bottom:629.093333pt;}
.y10{bottom:629.213333pt;}
.ye3{bottom:630.173333pt;}
.y18d{bottom:631.453333pt;}
.y176{bottom:632.253333pt;}
.y1d1{bottom:635.933333pt;}
.y1b4{bottom:636.573333pt;}
.y140{bottom:638.333333pt;}
.ya8{bottom:645.213333pt;}
.yd1{bottom:647.613333pt;}
.yeb{bottom:649.373333pt;}
.y51{bottom:650.653333pt;}
.y31{bottom:652.573333pt;}
.y13f{bottom:653.693333pt;}
.y66{bottom:654.333333pt;}
.y18c{bottom:655.453333pt;}
.yf{bottom:656.733333pt;}
.yfa{bottom:656.773333pt;}
.ye2{bottom:657.853333pt;}
.y1b3{bottom:662.493333pt;}
.y175{bottom:662.813333pt;}
.y1d0{bottom:663.453333pt;}
.y13e{bottom:669.053333pt;}
.ya7{bottom:672.893333pt;}
.yd0{bottom:676.573333pt;}
.y174{bottom:678.173333pt;}
.y88{bottom:678.333333pt;}
.y50{bottom:678.813333pt;}
.y18b{bottom:679.453333pt;}
.y77{bottom:680.093333pt;}
.y30{bottom:680.573333pt;}
.ye1{bottom:681.693333pt;}
.y65{bottom:681.853333pt;}
.yf9{bottom:684.293333pt;}
.ye{bottom:684.413333pt;}
.y1b2{bottom:688.253333pt;}
.y1cf{bottom:691.133333pt;}
.y173{bottom:693.533333pt;}
.y13d{bottom:699.613333pt;}
.ya6{bottom:701.053333pt;}
.y18a{bottom:703.453333pt;}
.ycf{bottom:704.093333pt;}
.y87{bottom:705.853333pt;}
.y4f{bottom:707.773333pt;}
.y172{bottom:708.893333pt;}
.y2f{bottom:709.533333pt;}
.yd{bottom:711.933333pt;}
.y1b1{bottom:714.173333pt;}
.y13c{bottom:714.973333pt;}
.y1ce{bottom:718.653333pt;}
.y171{bottom:724.253333pt;}
.y189{bottom:727.453333pt;}
.ya5{bottom:729.853333pt;}
.y13b{bottom:730.333333pt;}
.yce{bottom:731.613333pt;}
.y86{bottom:733.533333pt;}
.y4e{bottom:735.293333pt;}
.y76{bottom:735.773333pt;}
.y2e{bottom:737.053333pt;}
.y170{bottom:739.453333pt;}
.yc{bottom:739.613333pt;}
.y1b0{bottom:739.933333pt;}
.y13a{bottom:745.693333pt;}
.y1cd{bottom:746.333333pt;}
.y188{bottom:751.453333pt;}
.y16f{bottom:754.853333pt;}
.ya4{bottom:758.053333pt;}
.ycd{bottom:759.333333pt;}
.y85{bottom:761.093333pt;}
.ybd{bottom:761.733333pt;}
.y4d{bottom:763.013333pt;}
.y2d{bottom:764.773333pt;}
.y1af{bottom:765.733333pt;}
.yb{bottom:767.173333pt;}
.y16e{bottom:770.213333pt;}
.y1cc{bottom:773.893333pt;}
.y187{bottom:775.493333pt;}
.y139{bottom:776.293333pt;}
.y16d{bottom:785.573333pt;}
.ya3{bottom:786.853333pt;}
.y84{bottom:788.773333pt;}
.y4c{bottom:790.533333pt;}
.ye0{bottom:791.333333pt;}
.y138{bottom:791.653333pt;}
.y2c{bottom:792.293333pt;}
.y1ad{bottom:797.813261pt;}
.y186{bottom:799.493333pt;}
.ya{bottom:800.933333pt;}
.y1cb{bottom:801.573333pt;}
.y137{bottom:807.013333pt;}
.ya2{bottom:814.533333pt;}
.ycc{bottom:815.013333pt;}
.y83{bottom:816.293333pt;}
.y1ac{bottom:817.413333pt;}
.y4b{bottom:818.053333pt;}
.ybc{bottom:818.693333pt;}
.ydf{bottom:818.853333pt;}
.y2b{bottom:819.973333pt;}
.y9{bottom:822.373333pt;}
.y185{bottom:823.493333pt;}
.y1ca{bottom:829.093333pt;}
.y16c{bottom:831.493333pt;}
.y136{bottom:837.733333pt;}
.ya1{bottom:842.053333pt;}
.y1a9{bottom:843.333333pt;}
.y82{bottom:844.453333pt;}
.y4a{bottom:845.733333pt;}
.yde{bottom:846.533333pt;}
.y16b{bottom:846.853333pt;}
.y2a{bottom:847.493333pt;}
.y8{bottom:850.053333pt;}
.y135{bottom:853.093333pt;}
.y1c9{bottom:856.773333pt;}
.y16a{bottom:862.213333pt;}
.y134{bottom:868.293333pt;}
.y1a8{bottom:869.093333pt;}
.ya0{bottom:870.213333pt;}
.y184{bottom:871.493333pt;}
.y49{bottom:873.253333pt;}
.ydd{bottom:874.053333pt;}
.y29{bottom:875.173333pt;}
.y7{bottom:877.573333pt;}
.y133{bottom:883.653333pt;}
.y1c8{bottom:884.293333pt;}
.y169{bottom:892.933333pt;}
.y183{bottom:895.493333pt;}
.ydc{bottom:898.053333pt;}
.y132{bottom:899.013333pt;}
.y9f{bottom:899.173333pt;}
.y48{bottom:900.933333pt;}
.yc0{bottom:901.413333pt;}
.y1a5{bottom:901.573333pt;}
.y28{bottom:902.693333pt;}
.y6{bottom:908.133333pt;}
.y168{bottom:908.293333pt;}
.y1c7{bottom:911.973333pt;}
.y131{bottom:914.373333pt;}
.y182{bottom:919.493333pt;}
.y167{bottom:923.493333pt;}
.y9e{bottom:926.693333pt;}
.y47{bottom:928.453333pt;}
.y81{bottom:929.093333pt;}
.y130{bottom:929.733333pt;}
.y27{bottom:930.373333pt;}
.y166{bottom:938.853333pt;}
.y1c6{bottom:939.493333pt;}
.y5{bottom:941.573333pt;}
.y181{bottom:943.493333pt;}
.y12f{bottom:945.093333pt;}
.y1a4{bottom:948.613333pt;}
.y165{bottom:954.213333pt;}
.y9d{bottom:954.853333pt;}
.ycb{bottom:956.133333pt;}
.y46{bottom:956.613333pt;}
.y26{bottom:957.893333pt;}
.y12e{bottom:960.293333pt;}
.y1c5{bottom:967.173333pt;}
.y180{bottom:967.493333pt;}
.y164{bottom:969.573333pt;}
.y4{bottom:973.733333pt;}
.y1a3{bottom:977.573333pt;}
.y17f{bottom:983.493333pt;}
.y9c{bottom:984.293333pt;}
.y163{bottom:984.933333pt;}
.y25{bottom:985.573333pt;}
.y1e5{bottom:994.693333pt;}
.y162{bottom:1000.293333pt;}
.y17e{bottom:1007.520000pt;}
.y3{bottom:1008.160000pt;}
.y24{bottom:1013.120000pt;}
.y161{bottom:1015.520000pt;}
.h1e{height:16.000793pt;}
.h1d{height:23.680000pt;}
.h1b{height:23.840000pt;}
.h20{height:23.872000pt;}
.h14{height:27.520000pt;}
.h13{height:27.552000pt;}
.h12{height:27.680000pt;}
.h22{height:29.940625pt;}
.h1c{height:30.560000pt;}
.h15{height:30.982500pt;}
.h6{height:35.342500pt;}
.h19{height:36.800000pt;}
.h18{height:36.832000pt;}
.h11{height:37.479688pt;}
.h1f{height:38.245440pt;}
.h9{height:38.441250pt;}
.h1a{height:39.200000pt;}
.h23{height:44.687500pt;}
.hb{height:45.156250pt;}
.h10{height:45.920000pt;}
.hc{height:46.840769pt;}
.ha{height:47.621250pt;}
.h16{height:49.542500pt;}
.h8{height:52.750000pt;}
.h2{height:57.375000pt;}
.h7{height:59.662500pt;}
.h3{height:60.057813pt;}
.h17{height:61.280000pt;}
.h5{height:62.761250pt;}
.h4{height:67.128750pt;}
.h21{height:94.080000pt;}
.hf{height:793.760000pt;}
.hd{height:793.760013pt;}
.he{height:794.000000pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w1f{width:7.999887pt;}
.w20{width:14.560000pt;}
.w15{width:47.072000pt;}
.w7{width:47.872000pt;}
.w16{width:58.880000pt;}
.w18{width:72.000000pt;}
.we{width:72.672000pt;}
.w8{width:79.360000pt;}
.w19{width:84.000000pt;}
.wf{width:93.600000pt;}
.w9{width:108.000000pt;}
.w1a{width:108.032000pt;}
.w11{width:114.720000pt;}
.wb{width:120.000000pt;}
.wa{width:120.032000pt;}
.w10{width:120.832000pt;}
.wc{width:156.000000pt;}
.w1c{width:158.426667pt;}
.w1d{width:158.560000pt;}
.w1b{width:168.000000pt;}
.w13{width:175.360000pt;}
.w14{width:175.386667pt;}
.w12{width:195.386667pt;}
.wd{width:196.666667pt;}
.w17{width:213.306667pt;}
.w1e{width:253.186667pt;}
.w21{width:557.693333pt;}
.w3{width:793.759990pt;}
.w2{width:793.760000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w6{width:1122.559957pt;}
.w4{width:1122.559973pt;}
.w5{width:1122.666667pt;}
.x46{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x7b{left:1.250008pt;}
.x78{left:6.240000pt;}
.x52{left:7.200000pt;}
.x72{left:8.320000pt;}
.x73{left:9.440000pt;}
.x65{left:12.000000pt;}
.x56{left:13.120000pt;}
.x4d{left:14.560000pt;}
.x5f{left:15.840000pt;}
.x69{left:16.960000pt;}
.x48{left:18.560000pt;}
.x55{left:19.840000pt;}
.x4f{left:23.360000pt;}
.x70{left:24.320000pt;}
.x50{left:25.280000pt;}
.x6f{left:26.560000pt;}
.x6e{left:28.160000pt;}
.x4a{left:30.560000pt;}
.x60{left:33.440000pt;}
.x4c{left:35.520000pt;}
.x64{left:36.960000pt;}
.x5d{left:37.920000pt;}
.x51{left:41.440000pt;}
.x6b{left:43.520000pt;}
.x7c{left:44.960000pt;}
.x5c{left:48.000000pt;}
.x6c{left:49.280000pt;}
.x68{left:51.040000pt;}
.x57{left:52.000000pt;}
.x58{left:56.000000pt;}
.x5a{left:57.320000pt;}
.x54{left:61.800000pt;}
.x59{left:69.920000pt;}
.x5e{left:73.920000pt;}
.x75{left:76.000000pt;}
.x6d{left:79.680000pt;}
.x71{left:83.720000pt;}
.x61{left:86.280000pt;}
.x45{left:87.360000pt;}
.x5b{left:90.280000pt;}
.x2{left:94.591988pt;}
.x6{left:99.871976pt;}
.x7{left:107.871988pt;}
.x77{left:109.792000pt;}
.x80{left:115.871988pt;}
.x7f{left:124.831988pt;}
.x7e{left:126.432000pt;}
.x47{left:135.226667pt;}
.x62{left:160.026667pt;}
.xa{left:169.146643pt;}
.x30{left:171.066643pt;}
.xb{left:177.146655pt;}
.x31{left:187.066655pt;}
.x2d{left:192.506655pt;}
.x49{left:214.586667pt;}
.x22{left:250.266643pt;}
.x63{left:253.626667pt;}
.x2b{left:260.186643pt;}
.x23{left:266.306655pt;}
.x13{left:270.786643pt;}
.x2c{left:276.226655pt;}
.x14{left:278.786655pt;}
.x20{left:295.746655pt;}
.x32{left:301.346655pt;}
.x7a{left:307.279964pt;}
.x2a{left:308.546655pt;}
.x4b{left:322.586667pt;}
.xc{left:335.586655pt;}
.x26{left:342.626655pt;}
.x33{left:346.946643pt;}
.x3{left:349.506655pt;}
.x2e{left:358.466643pt;}
.x34{left:362.946655pt;}
.x37{left:367.586655pt;}
.x2f{left:374.466655pt;}
.x1b{left:406.306643pt;}
.xd{left:409.826643pt;}
.xe{left:417.826655pt;}
.x76{left:420.546655pt;}
.x1c{left:422.306655pt;}
.x1d{left:426.306643pt;}
.x79{left:430.946667pt;}
.x1e{left:442.333322pt;}
.xf{left:451.613310pt;}
.x10{left:459.613322pt;}
.x7d{left:468.079964pt;}
.x41{left:469.053322pt;}
.x35{left:478.013310pt;}
.x66{left:489.186667pt;}
.x36{left:494.013322pt;}
.x4{left:531.453310pt;}
.x19{left:534.333310pt;}
.x11{left:535.933310pt;}
.x5{left:539.453322pt;}
.x12{left:543.933322pt;}
.x1a{left:550.333322pt;}
.x24{left:553.213310pt;}
.x4e{left:562.626667pt;}
.x21{left:566.493322pt;}
.x25{left:569.213322pt;}
.x42{left:587.613322pt;}
.x3d{left:594.813310pt;}
.x3e{left:599.293310pt;}
.x39{left:604.893322pt;}
.x1f{left:610.333310pt;}
.x3a{left:614.013322pt;}
.x3f{left:615.293322pt;}
.x15{left:626.373310pt;}
.x16{left:642.373322pt;}
.x27{left:645.253310pt;}
.x17{left:646.373310pt;}
.x40{left:647.973322pt;}
.x3b{left:650.053310pt;}
.x29{left:655.013322pt;}
.x28{left:661.253322pt;}
.x18{left:662.373322pt;}
.x3c{left:666.053322pt;}
.x74{left:670.653333pt;}
.x8{left:682.213310pt;}
.x38{left:683.333322pt;}
.x67{left:684.573333pt;}
.x43{left:688.293322pt;}
.x9{left:690.213322pt;}
.x1{left:691.333322pt;}
.x53{left:838.653333pt;}
.x6a{left:859.933333pt;}
.x44{left:1012.133317pt;}
}




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