
    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_56964699de760466bd2f39ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_a6d8eaacf081f7353f7a25c6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3da1c73ef8b1aaf8d5718564.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_41fac74929322ebe0b8be052.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-22.768068px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:14.994141px;}
.ls9{letter-spacing:16.663445px;}
.ls8{letter-spacing:17.985914px;}
.lsa{letter-spacing:18.000000px;}
.lsb{letter-spacing:19.494141px;}
.ls1{letter-spacing:22.500000px;}
.lsc{letter-spacing:25.663445px;}
.ls6{letter-spacing:27.000000px;}
.ls7{letter-spacing:28.494141px;}
.ls3{letter-spacing:31.500000px;}
.ls2{letter-spacing:31.500023px;}
.ls4{letter-spacing:35.985914px;}
.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;}
}
.ws5{word-spacing:-43.447859px;}
.ws46{word-spacing:-40.605468px;}
.ws2d{word-spacing:-36.000000px;}
.ws67{word-spacing:-33.837890px;}
.ws0{word-spacing:-33.017598px;}
.ws4b{word-spacing:-24.363282px;}
.ws4{word-spacing:-24.223821px;}
.ws3{word-spacing:-24.223798px;}
.ws6{word-spacing:-24.223725px;}
.ws7{word-spacing:-24.213063px;}
.ws1{word-spacing:-24.017601px;}
.ws1a{word-spacing:-22.605503px;}
.ws44{word-spacing:-22.605502px;}
.ws28{word-spacing:-22.605491px;}
.ws18{word-spacing:-22.605481px;}
.wsc{word-spacing:-22.605480px;}
.wsf{word-spacing:-22.605471px;}
.ws35{word-spacing:-22.605470px;}
.ws9{word-spacing:-22.605468px;}
.ws15{word-spacing:-22.605466px;}
.ws1e{word-spacing:-22.605458px;}
.wse{word-spacing:-22.605447px;}
.ws69{word-spacing:-22.605445px;}
.ws48{word-spacing:-22.605435px;}
.ws5f{word-spacing:-21.600001px;}
.ws2{word-spacing:-19.298506px;}
.ws50{word-spacing:-18.855550px;}
.ws64{word-spacing:-18.855541px;}
.ws53{word-spacing:-18.855468px;}
.ws39{word-spacing:-18.855439px;}
.ws75{word-spacing:-18.854206px;}
.ws65{word-spacing:-18.854188px;}
.ws37{word-spacing:-18.854116px;}
.ws77{word-spacing:-18.852834px;}
.ws6b{word-spacing:-18.849619px;}
.ws32{word-spacing:-18.105503px;}
.ws14{word-spacing:-18.105491px;}
.ws11{word-spacing:-18.105480px;}
.ws5e{word-spacing:-18.105471px;}
.ws60{word-spacing:-18.105470px;}
.ws19{word-spacing:-18.105469px;}
.ws5a{word-spacing:-18.105466px;}
.ws2e{word-spacing:-18.105458px;}
.ws68{word-spacing:-18.105446px;}
.ws78{word-spacing:-18.000035px;}
.ws91{word-spacing:-18.000024px;}
.ws2f{word-spacing:-18.000023px;}
.ws90{word-spacing:-18.000013px;}
.ws59{word-spacing:-18.000012px;}
.wsd{word-spacing:-18.000003px;}
.ws3e{word-spacing:-18.000002px;}
.ws1f{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.999999px;}
.ws2b{word-spacing:-17.999989px;}
.ws2a{word-spacing:-17.999980px;}
.ws30{word-spacing:-17.999978px;}
.ws71{word-spacing:-17.999967px;}
.ws38{word-spacing:-15.014964px;}
.ws66{word-spacing:-14.354116px;}
.ws42{word-spacing:-13.605503px;}
.ws73{word-spacing:-13.605492px;}
.ws36{word-spacing:-13.605491px;}
.ws13{word-spacing:-13.605480px;}
.ws7e{word-spacing:-13.605479px;}
.ws1b{word-spacing:-13.605471px;}
.ws17{word-spacing:-13.605469px;}
.ws7f{word-spacing:-13.605468px;}
.ws47{word-spacing:-13.605466px;}
.ws6e{word-spacing:-13.605457px;}
.ws58{word-spacing:-13.605447px;}
.ws79{word-spacing:-13.500024px;}
.ws1d{word-spacing:-13.500022px;}
.ws1c{word-spacing:-13.500015px;}
.ws27{word-spacing:-13.500012px;}
.ws20{word-spacing:-13.500003px;}
.ws57{word-spacing:-13.500001px;}
.ws74{word-spacing:-13.500000px;}
.ws4e{word-spacing:-13.499999px;}
.ws88{word-spacing:-13.499989px;}
.ws33{word-spacing:-13.499978px;}
.ws54{word-spacing:-13.349553px;}
.ws4f{word-spacing:-9.855561px;}
.ws6a{word-spacing:-9.855464px;}
.ws52{word-spacing:-9.854122px;}
.ws76{word-spacing:-9.852836px;}
.ws84{word-spacing:-9.105503px;}
.ws26{word-spacing:-9.105491px;}
.ws12{word-spacing:-9.105480px;}
.ws6d{word-spacing:-9.105471px;}
.ws10{word-spacing:-9.105469px;}
.ws70{word-spacing:-9.105458px;}
.ws3b{word-spacing:-9.105446px;}
.ws34{word-spacing:-9.000023px;}
.ws5d{word-spacing:-9.000012px;}
.ws86{word-spacing:-9.000003px;}
.ws3f{word-spacing:-9.000000px;}
.ws62{word-spacing:-8.999998px;}
.ws7a{word-spacing:-8.999980px;}
.ws41{word-spacing:-8.999978px;}
.ws49{word-spacing:-8.999967px;}
.ws51{word-spacing:-5.350242px;}
.ws61{word-spacing:-4.605492px;}
.ws81{word-spacing:-4.605481px;}
.ws24{word-spacing:-4.605479px;}
.ws7c{word-spacing:-4.605472px;}
.ws21{word-spacing:-4.605469px;}
.ws4c{word-spacing:-4.605467px;}
.ws4a{word-spacing:-4.605457px;}
.ws55{word-spacing:-4.500023px;}
.ws63{word-spacing:-4.500012px;}
.ws3d{word-spacing:-4.500000px;}
.ws72{word-spacing:-4.499999px;}
.ws7d{word-spacing:-4.499981px;}
.ws16{word-spacing:-4.499978px;}
.ws4d{word-spacing:-4.499967px;}
.ws22{word-spacing:-0.105480px;}
.ws29{word-spacing:-0.105469px;}
.ws3a{word-spacing:-0.105468px;}
.ws85{word-spacing:-0.000023px;}
.ws89{word-spacing:-0.000003px;}
.ws6c{word-spacing:-0.000001px;}
.wsa{word-spacing:0.000000px;}
.ws45{word-spacing:4.394509px;}
.ws43{word-spacing:4.394520px;}
.ws80{word-spacing:4.394529px;}
.ws2c{word-spacing:4.394531px;}
.ws8e{word-spacing:4.499999px;}
.ws7b{word-spacing:4.500031px;}
.ws95{word-spacing:8.894498px;}
.ws3c{word-spacing:8.894508px;}
.ws31{word-spacing:8.894519px;}
.ws23{word-spacing:8.894531px;}
.ws8d{word-spacing:9.000000px;}
.ws82{word-spacing:13.394508px;}
.ws6f{word-spacing:13.394520px;}
.ws8{word-spacing:13.394532px;}
.ws5c{word-spacing:13.394543px;}
.ws56{word-spacing:13.394565px;}
.ws83{word-spacing:13.499978px;}
.ws87{word-spacing:17.894531px;}
.wsb{word-spacing:18.000000px;}
.ws8f{word-spacing:22.394520px;}
.ws25{word-spacing:22.394530px;}
.ws5b{word-spacing:22.500000px;}
.ws8c{word-spacing:31.394520px;}
.ws8a{word-spacing:35.894520px;}
.ws8b{word-spacing:40.499999px;}
.ws94{word-spacing:139.394530px;}
.ws92{word-spacing:143.894531px;}
.ws93{word-spacing:148.500000px;}
._4{margin-left:-9.281250px;}
._15{margin-left:-7.980386px;}
._0{margin-left:-5.749734px;}
._7{margin-left:-3.972651px;}
._1{margin-left:-2.737653px;}
._3{margin-left:-1.300781px;}
._9{width:17.999999px;}
._12{width:19.413579px;}
._14{width:20.418434px;}
._5{width:22.500000px;}
._6{width:27.000001px;}
._11{width:28.474665px;}
._a{width:31.499988px;}
._13{width:32.933056px;}
._8{width:36.000000px;}
._d{width:40.500022px;}
._b{width:45.000002px;}
._f{width:49.500018px;}
._2{width:54.000000px;}
._c{width:58.500004px;}
._e{width:63.000078px;}
._10{width:72.000002px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:43.200002px;}
.fs6{font-size:59.999999px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.040014px;}
.fs1{font-size:96.000003px;}
.fs0{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.893554px;}
.y167{bottom:3.893556px;}
.y1fe{bottom:3.899415px;}
.yd{bottom:22.117675px;}
.y1e{bottom:32.466788px;}
.y14{bottom:32.466795px;}
.y16{bottom:32.466797px;}
.yf{bottom:32.466888px;}
.y1d{bottom:73.863277px;}
.y13{bottom:73.863285px;}
.y10d{bottom:111.410148px;}
.y20e{bottom:112.060552px;}
.y1ae{bottom:113.403802px;}
.y1c{bottom:115.259768px;}
.y12{bottom:115.259775px;}
.y144{bottom:116.403802px;}
.y97{bottom:117.102165px;}
.y1b9{bottom:117.451178px;}
.y129{bottom:117.705525px;}
.y7d{bottom:121.499992px;}
.y5e{bottom:123.451898px;}
.y10c{bottom:128.658693px;}
.y1e6{bottom:129.451178px;}
.y20d{bottom:132.755857px;}
.y183{bottom:134.954055px;}
.y3d{bottom:135.594368px;}
.y1cb{bottom:136.951178px;}
.yc2{bottom:138.142088px;}
.y1fc{bottom:140.999992px;}
.y1ad{bottom:144.451178px;}
.y10b{bottom:145.907223px;}
.y143{bottom:147.451178px;}
.y1b8{bottom:148.499992px;}
.y1aa{bottom:151.599240px;}
.y7c{bottom:152.547367px;}
.y5d{bottom:154.499272px;}
.y1d8{bottom:155.999992px;}
.y1b{bottom:156.656242px;}
.y11{bottom:156.656250px;}
.y22{bottom:156.656258px;}
.y21e{bottom:158.830073px;}
.y20c{bottom:159.397027px;}
.y15b{bottom:160.045898px;}
.y1e3{bottom:160.499992px;}
.y10a{bottom:163.155768px;}
.y8{bottom:164.484914px;}
.y3c{bottom:166.641727px;}
.yf3{bottom:167.999992px;}
.y165{bottom:168.847785px;}
.yc1{bottom:169.188727px;}
.y182{bottom:170.998537px;}
.y1fb{bottom:172.045898px;}
.y1ac{bottom:175.498537px;}
.y1be{bottom:175.499992px;}
.y142{bottom:178.498537px;}
.y1b7{bottom:179.545898px;}
.y7b{bottom:183.594727px;}
.y5c{bottom:185.546632px;}
.y109{bottom:186.096315px;}
.y1d7{bottom:187.048823px;}
.y21d{bottom:189.878902px;}
.y15a{bottom:191.093257px;}
.y1e2{bottom:191.548823px;}
.y233{bottom:191.833012px;}
.y3b{bottom:197.689087px;}
.y1a{bottom:198.052733px;}
.y96{bottom:198.593993px;}
.yf2{bottom:199.045898px;}
.y20b{bottom:199.048823px;}
.y181{bottom:202.045898px;}
.y128{bottom:202.047367px;}
.y1fa{bottom:203.094727px;}
.y197{bottom:206.545898px;}
.yd5{bottom:206.547367px;}
.yc0{bottom:207.735353px;}
.y141{bottom:209.545898px;}
.y7{bottom:210.227594px;}
.y1b6{bottom:210.591803px;}
.y1ab{bottom:214.047367px;}
.y7a{bottom:214.641727px;}
.y5b{bottom:216.593993px;}
.y108{bottom:219.041017px;}
.y159{bottom:222.140617px;}
.y1e1{bottom:222.594727px;}
.y232{bottom:222.878902px;}
.y1d6{bottom:225.594727px;}
.y3a{bottom:228.736448px;}
.y95{bottom:229.641353px;}
.yf1{bottom:230.094727px;}
.y20a{bottom:230.097652px;}
.y180{bottom:233.093257px;}
.y127{bottom:233.094727px;}
.y1bd{bottom:237.591803px;}
.y196{bottom:237.593257px;}
.yd4{bottom:237.594727px;}
.y21c{bottom:238.924807px;}
.y19{bottom:239.449208px;}
.y21{bottom:239.449222px;}
.y140{bottom:240.593257px;}
.y1b5{bottom:241.640617px;}
.y164{bottom:245.094727px;}
.y79{bottom:245.689088px;}
.ya9{bottom:247.641353px;}
.y107{bottom:250.089847px;}
.y158{bottom:253.187992px;}
.y1e0{bottom:253.640617px;}
.y1d5{bottom:256.640617px;}
.y5a{bottom:259.641727px;}
.ybf{bottom:259.783448px;}
.y39{bottom:259.783807px;}
.y94{bottom:260.688727px;}
.yf0{bottom:261.140617px;}
.y209{bottom:261.143557px;}
.y17f{bottom:264.140617px;}
.y126{bottom:264.142088px;}
.y195{bottom:268.640617px;}
.yd3{bottom:268.642088px;}
.y13f{bottom:271.640617px;}
.y231{bottom:271.927733px;}
.y1b4{bottom:272.689447px;}
.y163{bottom:276.142088px;}
.y78{bottom:276.736448px;}
.ya8{bottom:278.688727px;}
.y18{bottom:280.845698px;}
.y106{bottom:281.135738px;}
.y157{bottom:284.236822px;}
.y1df{bottom:284.689447px;}
.y1d4{bottom:287.689447px;}
.y21b{bottom:287.970698px;}
.y59{bottom:290.689088px;}
.ybe{bottom:290.830807px;}
.y38{bottom:290.831183px;}
.y93{bottom:291.736088px;}
.yef{bottom:292.189447px;}
.y17e{bottom:295.187992px;}
.y125{bottom:295.189447px;}
.y24{bottom:298.036371px;}
.y194{bottom:299.687992px;}
.yd2{bottom:299.689447px;}
.y13e{bottom:302.687992px;}
.y1c8{bottom:303.735353px;}
.y162{bottom:307.189447px;}
.y77{bottom:307.783807px;}
.ya7{bottom:309.736088px;}
.y1b3{bottom:311.238278px;}
.y1de{bottom:315.738278px;}
.y1d3{bottom:318.735353px;}
.y21a{bottom:319.019528px;}
.y230{bottom:320.976563px;}
.y58{bottom:321.736448px;}
.ybd{bottom:321.878167px;}
.y37{bottom:321.878542px;}
.y20{bottom:322.242187px;}
.y92{bottom:322.783448px;}
.y156{bottom:322.784183px;}
.yee{bottom:323.235353px;}
.y208{bottom:323.238278px;}
.y105{bottom:324.184567px;}
.y17d{bottom:326.235353px;}
.y124{bottom:326.236823px;}
.y193{bottom:330.735353px;}
.y13d{bottom:333.735353px;}
.y1c7{bottom:334.781242px;}
.yd1{bottom:338.235353px;}
.y161{bottom:338.236823px;}
.y76{bottom:338.831183px;}
.y1f8{bottom:342.284183px;}
.y1dd{bottom:346.784183px;}
.y1d2{bottom:349.784183px;}
.y219{bottom:350.068358px;}
.y57{bottom:352.783807px;}
.ya6{bottom:352.784183px;}
.ybc{bottom:352.925542px;}
.y36{bottom:352.925903px;}
.y91{bottom:353.830807px;}
.yed{bottom:354.284183px;}
.y207{bottom:354.287107px;}
.y104{bottom:355.231927px;}
.y23{bottom:356.307861px;}
.y17c{bottom:357.282712px;}
.y123{bottom:357.284183px;}
.y1bc{bottom:361.781242px;}
.y192{bottom:361.782712px;}
.y13c{bottom:364.782712px;}
.y1c6{bottom:365.830073px;}
.y155{bottom:365.831543px;}
.yd0{bottom:369.282712px;}
.y160{bottom:369.284183px;}
.y75{bottom:369.878542px;}
.y22f{bottom:370.022467px;}
.y1f7{bottom:373.330073px;}
.y1dc{bottom:377.830073px;}
.y1d1{bottom:380.830073px;}
.y56{bottom:383.831183px;}
.ya5{bottom:383.831543px;}
.ybb{bottom:383.972903px;}
.y35{bottom:383.973262px;}
.y90{bottom:384.878167px;}
.yec{bottom:385.330073px;}
.y206{bottom:385.333012px;}
.y103{bottom:386.279302px;}
.y17b{bottom:388.330073px;}
.y122{bottom:388.331543px;}
.y191{bottom:392.830073px;}
.y13b{bottom:395.830073px;}
.y154{bottom:396.878902px;}
.y218{bottom:399.114262px;}
.ycf{bottom:400.330073px;}
.y15f{bottom:400.331543px;}
.y1f6{bottom:404.378902px;}
.y1d0{bottom:411.878902px;}
.y74{bottom:412.925542px;}
.y1f{bottom:414.579345px;}
.y55{bottom:414.878542px;}
.ya4{bottom:414.878902px;}
.yeb{bottom:416.378902px;}
.y102{bottom:417.326662px;}
.y22e{bottom:419.068358px;}
.y17a{bottom:419.377448px;}
.y121{bottom:419.378902px;}
.y6{bottom:422.331104px;}
.y190{bottom:423.877448px;}
.y1b2{bottom:423.878902px;}
.y13a{bottom:426.877448px;}
.y34{bottom:427.020262px;}
.y1c5{bottom:427.924807px;}
.y8f{bottom:427.926263px;}
.yce{bottom:431.377448px;}
.y15e{bottom:431.378902px;}
.y1f5{bottom:435.427733px;}
.yba{bottom:436.020998px;}
.y1cf{bottom:442.924807px;}
.y73{bottom:443.972903px;}
.y54{bottom:445.925903px;}
.ya3{bottom:445.926263px;}
.y1ca{bottom:447.424807px;}
.yea{bottom:447.425542px;}
.y217{bottom:448.160152px;}
.y101{bottom:448.374023px;}
.y22d{bottom:450.117187px;}
.y179{bottom:450.424807px;}
.y120{bottom:450.426263px;}
.y18f{bottom:454.924807px;}
.y17{bottom:455.975835px;}
.y139{bottom:457.924807px;}
.y33{bottom:458.067622px;}
.y1c4{bottom:458.970698px;}
.y8e{bottom:458.973637px;}
.ycd{bottom:462.424807px;}
.y15d{bottom:462.426263px;}
.y1f9{bottom:462.427733px;}
.y242{bottom:463.166017px;}
.y5{bottom:464.751794px;}
.y1f4{bottom:466.473637px;}
.y1ce{bottom:473.973637px;}
.ya2{bottom:476.973637px;}
.ye9{bottom:478.472902px;}
.y1c9{bottom:478.473637px;}
.yb9{bottom:479.066888px;}
.y100{bottom:479.421382px;}
.y178{bottom:481.472168px;}
.y11f{bottom:481.473637px;}
.y1b1{bottom:485.970698px;}
.y18e{bottom:485.972168px;}
.y72{bottom:487.020263px;}
.y53{bottom:488.972902px;}
.y32{bottom:489.114998px;}
.y8d{bottom:490.020998px;}
.ycc{bottom:493.472168px;}
.y15c{bottom:493.473637px;}
.y241{bottom:494.211908px;}
.y216{bottom:497.208982px;}
.y1c3{bottom:497.519527px;}
.y22c{bottom:499.166018px;}
.y138{bottom:500.973637px;}
.y1cd{bottom:505.019527px;}
.y4{bottom:507.172559px;}
.ya1{bottom:508.020998px;}
.y1db{bottom:509.519527px;}
.yff{bottom:510.468742px;}
.y177{bottom:512.519527px;}
.y11e{bottom:512.520998px;}
.y18d{bottom:517.019527px;}
.ye8{bottom:517.020998px;}
.y71{bottom:518.067622px;}
.y52{bottom:520.020263px;}
.y31{bottom:520.162358px;}
.y8c{bottom:521.068358px;}
.yb8{bottom:522.114998px;}
.ycb{bottom:524.519527px;}
.y240{bottom:525.257812px;}
.y215{bottom:528.257812px;}
.y153{bottom:528.566888px;}
.y1c2{bottom:528.568357px;}
.y22b{bottom:530.211908px;}
.y137{bottom:532.019527px;}
.y1cc{bottom:536.068357px;}
.ya0{bottom:539.068358px;}
.y1da{bottom:540.568358px;}
.yfe{bottom:541.516118px;}
.y176{bottom:543.566888px;}
.y11d{bottom:543.568358px;}
.y1a9{bottom:548.066888px;}
.ye7{bottom:548.068358px;}
.y70{bottom:549.114998px;}
.y51{bottom:551.067622px;}
.y30{bottom:551.209718px;}
.yca{bottom:555.566888px;}
.y18c{bottom:555.568358px;}
.y152{bottom:559.614262px;}
.y1f3{bottom:559.617188px;}
.y3{bottom:560.574769px;}
.y22a{bottom:561.257812px;}
.y136{bottom:563.068358px;}
.y8b{bottom:564.114998px;}
.yb7{bottom:565.163092px;}
.y1c1{bottom:567.114262px;}
.y9f{bottom:570.115718px;}
.y1d9{bottom:571.614262px;}
.yfd{bottom:572.563477px;}
.y23f{bottom:574.306643px;}
.y175{bottom:574.614262px;}
.y11c{bottom:574.615718px;}
.y214{bottom:577.303718px;}
.y1a8{bottom:579.114262px;}
.ye6{bottom:579.115718px;}
.y6f{bottom:580.162358px;}
.y50{bottom:582.114998px;}
.y2f{bottom:582.257077px;}
.yc9{bottom:586.614262px;}
.y18b{bottom:586.615718px;}
.y1bb{bottom:586.617188px;}
.y151{bottom:590.661623px;}
.y1f2{bottom:590.663092px;}
.y229{bottom:592.306643px;}
.y135{bottom:594.114262px;}
.y8a{bottom:595.162358px;}
.y9e{bottom:601.163092px;}
.y1e5{bottom:602.663092px;}
.yfc{bottom:603.610838px;}
.y23e{bottom:605.355473px;}
.y11b{bottom:605.663092px;}
.yb6{bottom:608.208982px;}
.y1b0{bottom:610.160152px;}
.y1a7{bottom:610.161623px;}
.ye5{bottom:610.163092px;}
.y4f{bottom:613.162358px;}
.y174{bottom:613.163092px;}
.y2e{bottom:613.304438px;}
.yc8{bottom:617.661623px;}
.y18a{bottom:617.663092px;}
.y150{bottom:621.708982px;}
.y6e{bottom:623.210078px;}
.y134{bottom:625.163092px;}
.y89{bottom:626.209718px;}
.y213{bottom:626.349608px;}
.y9d{bottom:632.210452px;}
.yfb{bottom:634.658198px;}
.y11a{bottom:636.710452px;}
.y1a6{bottom:641.208982px;}
.ye4{bottom:641.210452px;}
.y228{bottom:641.355473px;}
.y4e{bottom:644.209718px;}
.y173{bottom:644.210452px;}
.y2d{bottom:644.351813px;}
.yc7{bottom:648.708982px;}
.y189{bottom:648.710452px;}
.yb5{bottom:651.257077px;}
.y14f{bottom:652.756342px;}
.y1f1{bottom:652.757812px;}
.y6d{bottom:654.257452px;}
.y23d{bottom:654.401363px;}
.y133{bottom:656.208982px;}
.y88{bottom:657.257077px;}
.y212{bottom:657.398438px;}
.y9c{bottom:663.257812px;}
.yfa{bottom:665.705573px;}
.y119{bottom:667.757812px;}
.y2{bottom:671.300531px;}
.y1a5{bottom:672.256342px;}
.ye3{bottom:672.257812px;}
.y227{bottom:672.401363px;}
.y4d{bottom:675.257077px;}
.y172{bottom:675.257812px;}
.y2c{bottom:675.399173px;}
.yc6{bottom:679.756342px;}
.y188{bottom:679.757812px;}
.y14e{bottom:683.803718px;}
.y6c{bottom:685.304813px;}
.y132{bottom:687.257812px;}
.y87{bottom:688.304438px;}
.y211{bottom:688.447268px;}
.y1f0{bottom:691.303718px;}
.y9b{bottom:694.305173px;}
.yf9{bottom:696.851077px;}
.y1a4{bottom:703.303718px;}
.ye2{bottom:703.305173px;}
.y23c{bottom:703.447268px;}
.y118{bottom:706.303718px;}
.y4c{bottom:706.304438px;}
.y171{bottom:706.305173px;}
.yc5{bottom:710.803718px;}
.y187{bottom:710.805173px;}
.y1ba{bottom:710.806643px;}
.y14d{bottom:714.851077px;}
.y6b{bottom:716.352173px;}
.y131{bottom:718.303718px;}
.y2b{bottom:718.446532px;}
.y86{bottom:719.351813px;}
.y1{bottom:720.069039px;}
.y226{bottom:721.447268px;}
.y1ef{bottom:722.352533px;}
.y9a{bottom:725.352533px;}
.y1c0{bottom:734.349608px;}
.y1a3{bottom:734.351077px;}
.ye1{bottom:734.352533px;}
.y23b{bottom:734.496098px;}
.yb4{bottom:737.351077px;}
.y4b{bottom:737.351813px;}
.y170{bottom:737.352533px;}
.y210{bottom:737.493158px;}
.yf8{bottom:739.898438px;}
.yc4{bottom:741.851077px;}
.y186{bottom:741.852533px;}
.y14c{bottom:745.898438px;}
.y6a{bottom:747.399533px;}
.y130{bottom:749.352533px;}
.y2a{bottom:749.494073px;}
.y225{bottom:752.496098px;}
.y1ee{bottom:753.398438px;}
.y85{bottom:756.399908px;}
.y15{bottom:762.626226px;}
.y1a2{bottom:765.398438px;}
.ye0{bottom:765.399908px;}
.y117{bottom:768.398438px;}
.y4a{bottom:768.399173px;}
.y16f{bottom:768.399908px;}
.yf7{bottom:770.947268px;}
.yc3{bottom:772.898438px;}
.y185{bottom:772.899908px;}
.y14b{bottom:776.945798px;}
.y69{bottom:778.446892px;}
.y12f{bottom:780.398438px;}
.yb3{bottom:780.399173px;}
.y29{bottom:780.541448px;}
.y23a{bottom:783.544928px;}
.y1ed{bottom:784.447268px;}
.y20f{bottom:786.544928px;}
.y99{bottom:787.447268px;}
.y1a1{bottom:796.445798px;}
.ydf{bottom:796.447268px;}
.y116{bottom:799.445798px;}
.y49{bottom:799.446532px;}
.y16e{bottom:799.447268px;}
.y224{bottom:801.544928px;}
.y184{bottom:803.947268px;}
.y14a{bottom:807.993158px;}
.yf6{bottom:807.994628px;}
.y68{bottom:809.494267px;}
.yb2{bottom:811.446532px;}
.y12e{bottom:811.447268px;}
.y239{bottom:814.590818px;}
.y1ec{bottom:815.493158px;}
.y98{bottom:818.494627px;}
.y10{bottom:820.897702px;}
.y28{bottom:823.588988px;}
.y1e4{bottom:827.493158px;}
.y115{bottom:830.493158px;}
.y48{bottom:830.493892px;}
.y16d{bottom:830.494627px;}
.y223{bottom:832.590818px;}
.yde{bottom:834.993158px;}
.y1a0{bottom:834.994627px;}
.y1af{bottom:834.996098px;}
.y149{bottom:839.040533px;}
.y67{bottom:840.541628px;}
.y12d{bottom:842.493158px;}
.yb1{bottom:842.493892px;}
.y1eb{bottom:846.541988px;}
.y114{bottom:861.540533px;}
.y84{bottom:861.541253px;}
.y16c{bottom:861.541988px;}
.y238{bottom:863.636723px;}
.ydd{bottom:866.040532px;}
.y19f{bottom:866.041988px;}
.y148{bottom:870.087892px;}
.y66{bottom:871.588988px;}
.yb0{bottom:873.541252px;}
.y47{bottom:873.541628px;}
.y12c{bottom:873.541988px;}
.y205{bottom:873.544928px;}
.y1ea{bottom:877.587892px;}
.y222{bottom:881.636723px;}
.y113{bottom:892.587892px;}
.y83{bottom:892.588628px;}
.y16b{bottom:892.589362px;}
.y237{bottom:894.685552px;}
.ydc{bottom:897.087892px;}
.y19e{bottom:897.089362px;}
.y147{bottom:901.135252px;}
.y65{bottom:902.636348px;}
.y12b{bottom:904.587892px;}
.yaf{bottom:904.588628px;}
.y46{bottom:904.588988px;}
.y204{bottom:904.590817px;}
.y1e9{bottom:908.636723px;}
.y112{bottom:923.635252px;}
.y82{bottom:923.635988px;}
.y16a{bottom:923.636723px;}
.ydb{bottom:928.135252px;}
.y19d{bottom:928.136723px;}
.y221{bottom:930.685552px;}
.y146{bottom:932.184082px;}
.y64{bottom:933.683722px;}
.yae{bottom:935.635988px;}
.y45{bottom:935.636348px;}
.y12a{bottom:935.636723px;}
.y1e8{bottom:939.685552px;}
.y236{bottom:943.734367px;}
.y27{bottom:948.231082px;}
.y81{bottom:954.683347px;}
.y169{bottom:954.684082px;}
.yda{bottom:959.182613px;}
.y19c{bottom:959.184082px;}
.y1bf{bottom:959.185552px;}
.y63{bottom:964.731082px;}
.y111{bottom:966.682613px;}
.yad{bottom:966.683347px;}
.y44{bottom:966.683722px;}
.y203{bottom:966.685552px;}
.y145{bottom:970.729988px;}
.y1e7{bottom:978.228518px;}
.y220{bottom:979.734367px;}
.y80{bottom:985.730708px;}
.y168{bottom:985.731442px;}
.y26{bottom:986.778442px;}
.yd9{bottom:990.229988px;}
.y19b{bottom:990.231442px;}
.y235{bottom:992.780273px;}
.y62{bottom:995.778442px;}
.yac{bottom:997.730714px;}
.y43{bottom:997.731080px;}
.y110{bottom:997.731446px;}
.y202{bottom:997.734375px;}
.ye{bottom:1003.358643px;}
.y21f{bottom:1010.780274px;}
.yc{bottom:1013.707856px;}
.y7f{bottom:1016.778076px;}
.yd8{bottom:1021.277343px;}
.y19a{bottom:1021.278808px;}
.y25{bottom:1025.325440px;}
.y10f{bottom:1028.777343px;}
.yab{bottom:1028.778076px;}
.y42{bottom:1028.778442px;}
.y201{bottom:1028.780274px;}
.y61{bottom:1032.825439px;}
.y234{bottom:1041.826172px;}
.y7e{bottom:1047.825440px;}
.yd7{bottom:1052.324707px;}
.y199{bottom:1052.326172px;}
.yaa{bottom:1059.825439px;}
.y41{bottom:1059.825806px;}
.y10e{bottom:1059.826171px;}
.y198{bottom:1083.372070px;}
.yd6{bottom:1083.373534px;}
.yf5{bottom:1090.872071px;}
.y60{bottom:1090.872803px;}
.y40{bottom:1090.873169px;}
.y200{bottom:1090.875000px;}
.y5f{bottom:1121.920165px;}
.yb{bottom:1121.920349px;}
.y3f{bottom:1121.920531px;}
.yf4{bottom:1121.920899px;}
.y1ff{bottom:1121.923828px;}
.y1fd{bottom:1172.850585px;}
.y9{bottom:1172.853333px;}
.y166{bottom:1172.853515px;}
.y3e{bottom:1172.853516px;}
.h12{height:25.910156px;}
.h14{height:30.029060px;}
.hf{height:32.273438px;}
.h13{height:39.670899px;}
.h5{height:39.671631px;}
.h10{height:39.672363px;}
.h15{height:39.673829px;}
.h16{height:40.786876px;}
.h8{height:46.797363px;}
.h17{height:49.992188px;}
.h11{height:53.789061px;}
.hb{height:57.146484px;}
.h9{height:57.146575px;}
.h7{height:63.949219px;}
.h6{height:64.546875px;}
.he{height:66.049807px;}
.h3{height:68.425676px;}
.h4{height:69.065168px;}
.h2{height:85.265628px;}
.h1{height:117.240237px;}
.ha{height:181.335938px;}
.hc{height:305.525385px;}
.hd{height:346.921875px;}
.h0{height:1263.000000px;}
.w3{width:90.000000px;}
.w1{width:222.750000px;}
.w2{width:582.750000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xe{left:6.750000px;}
.xc{left:33.750000px;}
.xf{left:60.750000px;}
.xa{left:108.000000px;}
.xb{left:109.125000px;}
.x14{left:112.564603px;}
.x10{left:135.000000px;}
.x18{left:144.000000px;}
.x16{left:159.555328px;}
.x15{left:160.875000px;}
.x7{left:162.000000px;}
.x19{left:169.875000px;}
.x13{left:204.750000px;}
.x9{left:213.750000px;}
.x1a{left:216.000000px;}
.x17{left:225.556792px;}
.x4{left:278.722836px;}
.x2{left:325.907640px;}
.x1{left:334.062056px;}
.x5{left:359.714824px;}
.x3{left:362.756318px;}
.x6{left:420.261446px;}
.x11{left:432.999315px;}
.x8{left:560.250000px;}
.x12{left:611.452440px;}
.xd{left:693.000000px;}
@media print{
.v2{vertical-align:-20.238283pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:13.328125pt;}
.ls9{letter-spacing:14.811951pt;}
.ls8{letter-spacing:15.987479pt;}
.lsa{letter-spacing:16.000000pt;}
.lsb{letter-spacing:17.328125pt;}
.ls1{letter-spacing:20.000000pt;}
.lsc{letter-spacing:22.811951pt;}
.ls6{letter-spacing:24.000000pt;}
.ls7{letter-spacing:25.328125pt;}
.ls3{letter-spacing:28.000000pt;}
.ls2{letter-spacing:28.000020pt;}
.ls4{letter-spacing:31.987479pt;}
.ws5{word-spacing:-38.620319pt;}
.ws46{word-spacing:-36.093750pt;}
.ws2d{word-spacing:-32.000000pt;}
.ws67{word-spacing:-30.078124pt;}
.ws0{word-spacing:-29.348976pt;}
.ws4b{word-spacing:-21.656251pt;}
.ws4{word-spacing:-21.532285pt;}
.ws3{word-spacing:-21.532265pt;}
.ws6{word-spacing:-21.532200pt;}
.ws7{word-spacing:-21.522723pt;}
.ws1{word-spacing:-21.348978pt;}
.ws1a{word-spacing:-20.093780pt;}
.ws44{word-spacing:-20.093780pt;}
.ws28{word-spacing:-20.093770pt;}
.ws18{word-spacing:-20.093761pt;}
.wsc{word-spacing:-20.093760pt;}
.wsf{word-spacing:-20.093752pt;}
.ws35{word-spacing:-20.093751pt;}
.ws9{word-spacing:-20.093750pt;}
.ws15{word-spacing:-20.093748pt;}
.ws1e{word-spacing:-20.093740pt;}
.wse{word-spacing:-20.093730pt;}
.ws69{word-spacing:-20.093729pt;}
.ws48{word-spacing:-20.093720pt;}
.ws5f{word-spacing:-19.200001pt;}
.ws2{word-spacing:-17.154227pt;}
.ws50{word-spacing:-16.760489pt;}
.ws64{word-spacing:-16.760480pt;}
.ws53{word-spacing:-16.760416pt;}
.ws39{word-spacing:-16.760390pt;}
.ws75{word-spacing:-16.759294pt;}
.ws65{word-spacing:-16.759278pt;}
.ws37{word-spacing:-16.759214pt;}
.ws77{word-spacing:-16.758075pt;}
.ws6b{word-spacing:-16.755217pt;}
.ws32{word-spacing:-16.093780pt;}
.ws14{word-spacing:-16.093770pt;}
.ws11{word-spacing:-16.093760pt;}
.ws5e{word-spacing:-16.093752pt;}
.ws60{word-spacing:-16.093751pt;}
.ws19{word-spacing:-16.093750pt;}
.ws5a{word-spacing:-16.093748pt;}
.ws2e{word-spacing:-16.093740pt;}
.ws68{word-spacing:-16.093730pt;}
.ws78{word-spacing:-16.000031pt;}
.ws91{word-spacing:-16.000021pt;}
.ws2f{word-spacing:-16.000020pt;}
.ws90{word-spacing:-16.000011pt;}
.ws59{word-spacing:-16.000010pt;}
.wsd{word-spacing:-16.000003pt;}
.ws3e{word-spacing:-16.000002pt;}
.ws1f{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.999999pt;}
.ws2b{word-spacing:-15.999990pt;}
.ws2a{word-spacing:-15.999982pt;}
.ws30{word-spacing:-15.999980pt;}
.ws71{word-spacing:-15.999971pt;}
.ws38{word-spacing:-13.346635pt;}
.ws66{word-spacing:-12.759214pt;}
.ws42{word-spacing:-12.093780pt;}
.ws73{word-spacing:-12.093771pt;}
.ws36{word-spacing:-12.093770pt;}
.ws13{word-spacing:-12.093760pt;}
.ws7e{word-spacing:-12.093759pt;}
.ws1b{word-spacing:-12.093752pt;}
.ws17{word-spacing:-12.093750pt;}
.ws7f{word-spacing:-12.093749pt;}
.ws47{word-spacing:-12.093748pt;}
.ws6e{word-spacing:-12.093740pt;}
.ws58{word-spacing:-12.093730pt;}
.ws79{word-spacing:-12.000021pt;}
.ws1d{word-spacing:-12.000020pt;}
.ws1c{word-spacing:-12.000013pt;}
.ws27{word-spacing:-12.000010pt;}
.ws20{word-spacing:-12.000003pt;}
.ws57{word-spacing:-12.000001pt;}
.ws74{word-spacing:-12.000000pt;}
.ws4e{word-spacing:-11.999999pt;}
.ws88{word-spacing:-11.999990pt;}
.ws33{word-spacing:-11.999980pt;}
.ws54{word-spacing:-11.866269pt;}
.ws4f{word-spacing:-8.760499pt;}
.ws6a{word-spacing:-8.760412pt;}
.ws52{word-spacing:-8.759219pt;}
.ws76{word-spacing:-8.758077pt;}
.ws84{word-spacing:-8.093780pt;}
.ws26{word-spacing:-8.093770pt;}
.ws12{word-spacing:-8.093760pt;}
.ws6d{word-spacing:-8.093752pt;}
.ws10{word-spacing:-8.093750pt;}
.ws70{word-spacing:-8.093740pt;}
.ws3b{word-spacing:-8.093730pt;}
.ws34{word-spacing:-8.000020pt;}
.ws5d{word-spacing:-8.000011pt;}
.ws86{word-spacing:-8.000002pt;}
.ws3f{word-spacing:-8.000000pt;}
.ws62{word-spacing:-7.999998pt;}
.ws7a{word-spacing:-7.999982pt;}
.ws41{word-spacing:-7.999980pt;}
.ws49{word-spacing:-7.999970pt;}
.ws51{word-spacing:-4.755771pt;}
.ws61{word-spacing:-4.093770pt;}
.ws81{word-spacing:-4.093761pt;}
.ws24{word-spacing:-4.093760pt;}
.ws7c{word-spacing:-4.093752pt;}
.ws21{word-spacing:-4.093750pt;}
.ws4c{word-spacing:-4.093749pt;}
.ws4a{word-spacing:-4.093740pt;}
.ws55{word-spacing:-4.000020pt;}
.ws63{word-spacing:-4.000011pt;}
.ws3d{word-spacing:-4.000000pt;}
.ws72{word-spacing:-3.999999pt;}
.ws7d{word-spacing:-3.999983pt;}
.ws16{word-spacing:-3.999980pt;}
.ws4d{word-spacing:-3.999971pt;}
.ws22{word-spacing:-0.093760pt;}
.ws29{word-spacing:-0.093750pt;}
.ws3a{word-spacing:-0.093749pt;}
.ws85{word-spacing:-0.000020pt;}
.ws89{word-spacing:-0.000002pt;}
.ws6c{word-spacing:0.000000pt;}
.wsa{word-spacing:0.000000pt;}
.ws45{word-spacing:3.906230pt;}
.ws43{word-spacing:3.906240pt;}
.ws80{word-spacing:3.906248pt;}
.ws2c{word-spacing:3.906250pt;}
.ws8e{word-spacing:3.999999pt;}
.ws7b{word-spacing:4.000028pt;}
.ws95{word-spacing:7.906220pt;}
.ws3c{word-spacing:7.906230pt;}
.ws31{word-spacing:7.906239pt;}
.ws23{word-spacing:7.906250pt;}
.ws8d{word-spacing:8.000000pt;}
.ws82{word-spacing:11.906230pt;}
.ws6f{word-spacing:11.906240pt;}
.ws8{word-spacing:11.906250pt;}
.ws5c{word-spacing:11.906260pt;}
.ws56{word-spacing:11.906280pt;}
.ws83{word-spacing:11.999980pt;}
.ws87{word-spacing:15.906250pt;}
.wsb{word-spacing:16.000000pt;}
.ws8f{word-spacing:19.906240pt;}
.ws25{word-spacing:19.906249pt;}
.ws5b{word-spacing:20.000000pt;}
.ws8c{word-spacing:27.906240pt;}
.ws8a{word-spacing:31.906240pt;}
.ws8b{word-spacing:35.999999pt;}
.ws94{word-spacing:123.906249pt;}
.ws92{word-spacing:127.906250pt;}
.ws93{word-spacing:132.000000pt;}
._4{margin-left:-8.250000pt;}
._15{margin-left:-7.093676pt;}
._0{margin-left:-5.110875pt;}
._7{margin-left:-3.531246pt;}
._1{margin-left:-2.433469pt;}
._3{margin-left:-1.156250pt;}
._9{width:15.999999pt;}
._12{width:17.256515pt;}
._14{width:18.149719pt;}
._5{width:20.000000pt;}
._6{width:24.000001pt;}
._11{width:25.310814pt;}
._a{width:27.999990pt;}
._13{width:29.273827pt;}
._8{width:32.000000pt;}
._d{width:36.000019pt;}
._b{width:40.000002pt;}
._f{width:44.000016pt;}
._2{width:48.000000pt;}
._c{width:52.000004pt;}
._e{width:56.000070pt;}
._10{width:64.000002pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:38.400002pt;}
.fs6{font-size:53.333332pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:68.480012pt;}
.fs1{font-size:85.333336pt;}
.fs0{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.460937pt;}
.y167{bottom:3.460939pt;}
.y1fe{bottom:3.466147pt;}
.yd{bottom:19.660156pt;}
.y1e{bottom:28.859367pt;}
.y14{bottom:28.859373pt;}
.y16{bottom:28.859375pt;}
.yf{bottom:28.859456pt;}
.y1d{bottom:65.656247pt;}
.y13{bottom:65.656253pt;}
.y10d{bottom:99.031243pt;}
.y20e{bottom:99.609380pt;}
.y1ae{bottom:100.803380pt;}
.y1c{bottom:102.453127pt;}
.y12{bottom:102.453133pt;}
.y144{bottom:103.470047pt;}
.y97{bottom:104.090814pt;}
.y1b9{bottom:104.401047pt;}
.y129{bottom:104.627133pt;}
.y7d{bottom:107.999993pt;}
.y5e{bottom:109.735020pt;}
.y10c{bottom:114.363283pt;}
.y1e6{bottom:115.067713pt;}
.y20d{bottom:118.005207pt;}
.y183{bottom:119.959160pt;}
.y3d{bottom:120.528327pt;}
.y1cb{bottom:121.734380pt;}
.yc2{bottom:122.792967pt;}
.y1fc{bottom:125.333327pt;}
.y1ad{bottom:128.401047pt;}
.y10b{bottom:129.695310pt;}
.y143{bottom:131.067713pt;}
.y1b8{bottom:131.999993pt;}
.y1aa{bottom:134.754880pt;}
.y7c{bottom:135.597660pt;}
.y5d{bottom:137.332687pt;}
.y1d8{bottom:138.666660pt;}
.y1b{bottom:139.249993pt;}
.y11{bottom:139.250000pt;}
.y22{bottom:139.250007pt;}
.y21e{bottom:141.182287pt;}
.y20c{bottom:141.686246pt;}
.y15b{bottom:142.263020pt;}
.y1e3{bottom:142.666660pt;}
.y10a{bottom:145.027350pt;}
.y8{bottom:146.208812pt;}
.y3c{bottom:148.125980pt;}
.yf3{bottom:149.333327pt;}
.y165{bottom:150.086920pt;}
.yc1{bottom:150.389979pt;}
.y182{bottom:151.998700pt;}
.y1fb{bottom:152.929687pt;}
.y1ac{bottom:155.998700pt;}
.y1be{bottom:155.999993pt;}
.y142{bottom:158.665367pt;}
.y1b7{bottom:159.596353pt;}
.y7b{bottom:163.195313pt;}
.y5c{bottom:164.930340pt;}
.y109{bottom:165.418947pt;}
.y1d7{bottom:166.265620pt;}
.y21d{bottom:168.781247pt;}
.y15a{bottom:169.860673pt;}
.y1e2{bottom:170.265620pt;}
.y233{bottom:170.518233pt;}
.y3b{bottom:175.723633pt;}
.y1a{bottom:176.046873pt;}
.y96{bottom:176.527993pt;}
.yf2{bottom:176.929687pt;}
.y20b{bottom:176.932287pt;}
.y181{bottom:179.596353pt;}
.y128{bottom:179.597660pt;}
.y1fa{bottom:180.528646pt;}
.y197{bottom:183.596353pt;}
.yd5{bottom:183.597660pt;}
.yc0{bottom:184.653647pt;}
.y141{bottom:186.263020pt;}
.y7{bottom:186.868972pt;}
.y1b6{bottom:187.192713pt;}
.y1ab{bottom:190.264327pt;}
.y7a{bottom:190.792647pt;}
.y5b{bottom:192.527993pt;}
.y108{bottom:194.703127pt;}
.y159{bottom:197.458327pt;}
.y1e1{bottom:197.861980pt;}
.y232{bottom:198.114580pt;}
.y1d6{bottom:200.528647pt;}
.y3a{bottom:203.321287pt;}
.y95{bottom:204.125647pt;}
.yf1{bottom:204.528647pt;}
.y20a{bottom:204.531247pt;}
.y180{bottom:207.194007pt;}
.y127{bottom:207.195313pt;}
.y1bd{bottom:211.192713pt;}
.y196{bottom:211.194007pt;}
.yd4{bottom:211.195313pt;}
.y21c{bottom:212.377607pt;}
.y19{bottom:212.843740pt;}
.y21{bottom:212.843753pt;}
.y140{bottom:213.860673pt;}
.y1b5{bottom:214.791660pt;}
.y164{bottom:217.861980pt;}
.y79{bottom:218.390300pt;}
.ya9{bottom:220.125647pt;}
.y107{bottom:222.302087pt;}
.y158{bottom:225.055993pt;}
.y1e0{bottom:225.458327pt;}
.y1d5{bottom:228.124993pt;}
.y5a{bottom:230.792647pt;}
.ybf{bottom:230.918620pt;}
.y39{bottom:230.918940pt;}
.y94{bottom:231.723313pt;}
.yf0{bottom:232.124993pt;}
.y209{bottom:232.127607pt;}
.y17f{bottom:234.791660pt;}
.y126{bottom:234.792967pt;}
.y195{bottom:238.791660pt;}
.yd3{bottom:238.792967pt;}
.y13f{bottom:241.458327pt;}
.y231{bottom:241.713540pt;}
.y1b4{bottom:242.390619pt;}
.y163{bottom:245.459633pt;}
.y78{bottom:245.987953pt;}
.ya8{bottom:247.723313pt;}
.y18{bottom:249.640620pt;}
.y106{bottom:249.898433pt;}
.y157{bottom:252.654953pt;}
.y1df{bottom:253.057287pt;}
.y1d4{bottom:255.723953pt;}
.y21b{bottom:255.973953pt;}
.y59{bottom:258.390300pt;}
.ybe{bottom:258.516273pt;}
.y38{bottom:258.516607pt;}
.y93{bottom:259.320967pt;}
.yef{bottom:259.723953pt;}
.y17e{bottom:262.389327pt;}
.y125{bottom:262.390620pt;}
.y24{bottom:264.921219pt;}
.y194{bottom:266.389327pt;}
.yd2{bottom:266.390620pt;}
.y13e{bottom:269.055993pt;}
.y1c8{bottom:269.986980pt;}
.y162{bottom:273.057287pt;}
.y77{bottom:273.585607pt;}
.ya7{bottom:275.320967pt;}
.y1b3{bottom:276.656247pt;}
.y1de{bottom:280.656247pt;}
.y1d3{bottom:283.320313pt;}
.y21a{bottom:283.572913pt;}
.y230{bottom:285.312500pt;}
.y58{bottom:285.987953pt;}
.ybd{bottom:286.113927pt;}
.y37{bottom:286.114260pt;}
.y20{bottom:286.437500pt;}
.y92{bottom:286.918620pt;}
.y156{bottom:286.919273pt;}
.yee{bottom:287.320313pt;}
.y208{bottom:287.322913pt;}
.y105{bottom:288.164060pt;}
.y17d{bottom:289.986980pt;}
.y124{bottom:289.988287pt;}
.y193{bottom:293.986980pt;}
.y13d{bottom:296.653647pt;}
.y1c7{bottom:297.583327pt;}
.yd1{bottom:300.653647pt;}
.y161{bottom:300.654953pt;}
.y76{bottom:301.183273pt;}
.y1f8{bottom:304.252607pt;}
.y1dd{bottom:308.252607pt;}
.y1d2{bottom:310.919273pt;}
.y219{bottom:311.171873pt;}
.y57{bottom:313.585607pt;}
.ya6{bottom:313.585940pt;}
.ybc{bottom:313.711593pt;}
.y36{bottom:313.711913pt;}
.y91{bottom:314.516273pt;}
.yed{bottom:314.919273pt;}
.y207{bottom:314.921873pt;}
.y104{bottom:315.761713pt;}
.y23{bottom:316.718099pt;}
.y17c{bottom:317.584633pt;}
.y123{bottom:317.585940pt;}
.y1bc{bottom:321.583327pt;}
.y192{bottom:321.584633pt;}
.y13c{bottom:324.251300pt;}
.y1c6{bottom:325.182287pt;}
.y155{bottom:325.183593pt;}
.yd0{bottom:328.251300pt;}
.y160{bottom:328.252607pt;}
.y75{bottom:328.780927pt;}
.y22f{bottom:328.908860pt;}
.y1f7{bottom:331.848953pt;}
.y1dc{bottom:335.848953pt;}
.y1d1{bottom:338.515620pt;}
.y56{bottom:341.183273pt;}
.ya5{bottom:341.183593pt;}
.ybb{bottom:341.309247pt;}
.y35{bottom:341.309567pt;}
.y90{bottom:342.113927pt;}
.yec{bottom:342.515620pt;}
.y206{bottom:342.518233pt;}
.y103{bottom:343.359380pt;}
.y17b{bottom:345.182287pt;}
.y122{bottom:345.183593pt;}
.y191{bottom:349.182287pt;}
.y13b{bottom:351.848953pt;}
.y154{bottom:352.781247pt;}
.y218{bottom:354.768233pt;}
.ycf{bottom:355.848953pt;}
.y15f{bottom:355.850260pt;}
.y1f6{bottom:359.447913pt;}
.y1d0{bottom:366.114580pt;}
.y74{bottom:367.044927pt;}
.y1f{bottom:368.514973pt;}
.y55{bottom:368.780927pt;}
.ya4{bottom:368.781247pt;}
.yeb{bottom:370.114580pt;}
.y102{bottom:370.957033pt;}
.y22e{bottom:372.505207pt;}
.y17a{bottom:372.779953pt;}
.y121{bottom:372.781247pt;}
.y6{bottom:375.405425pt;}
.y190{bottom:376.779953pt;}
.y1b2{bottom:376.781247pt;}
.y13a{bottom:379.446620pt;}
.y34{bottom:379.573567pt;}
.y1c5{bottom:380.377607pt;}
.y8f{bottom:380.378900pt;}
.yce{bottom:383.446620pt;}
.y15e{bottom:383.447913pt;}
.y1f5{bottom:387.046873pt;}
.yba{bottom:387.574220pt;}
.y1cf{bottom:393.710940pt;}
.y73{bottom:394.642580pt;}
.y54{bottom:396.378580pt;}
.ya3{bottom:396.378900pt;}
.y1ca{bottom:397.710940pt;}
.yea{bottom:397.711593pt;}
.y217{bottom:398.364580pt;}
.y101{bottom:398.554687pt;}
.y22d{bottom:400.104167pt;}
.y179{bottom:400.377607pt;}
.y120{bottom:400.378900pt;}
.y18f{bottom:404.377607pt;}
.y17{bottom:405.311853pt;}
.y139{bottom:407.044273pt;}
.y33{bottom:407.171220pt;}
.y1c4{bottom:407.973953pt;}
.y8e{bottom:407.976567pt;}
.ycd{bottom:411.044273pt;}
.y15d{bottom:411.045567pt;}
.y1f9{bottom:411.046873pt;}
.y242{bottom:411.703127pt;}
.y5{bottom:413.112705pt;}
.y1f4{bottom:414.643233pt;}
.y1ce{bottom:421.309900pt;}
.ya2{bottom:423.976567pt;}
.ye9{bottom:425.309247pt;}
.y1c9{bottom:425.309900pt;}
.yb9{bottom:425.837233pt;}
.y100{bottom:426.152340pt;}
.y178{bottom:427.975260pt;}
.y11f{bottom:427.976567pt;}
.y1b1{bottom:431.973953pt;}
.y18e{bottom:431.975260pt;}
.y72{bottom:432.906900pt;}
.y53{bottom:434.642580pt;}
.y32{bottom:434.768887pt;}
.y8d{bottom:435.574220pt;}
.ycc{bottom:438.641927pt;}
.y15c{bottom:438.643233pt;}
.y241{bottom:439.299473pt;}
.y216{bottom:441.963540pt;}
.y1c3{bottom:442.239580pt;}
.y22c{bottom:443.703127pt;}
.y138{bottom:445.309900pt;}
.y1cd{bottom:448.906247pt;}
.y4{bottom:450.820052pt;}
.ya1{bottom:451.574220pt;}
.y1db{bottom:452.906247pt;}
.yff{bottom:453.749993pt;}
.y177{bottom:455.572913pt;}
.y11e{bottom:455.574220pt;}
.y18d{bottom:459.572913pt;}
.ye8{bottom:459.574220pt;}
.y71{bottom:460.504553pt;}
.y52{bottom:462.240233pt;}
.y31{bottom:462.366540pt;}
.y8c{bottom:463.171873pt;}
.yb8{bottom:464.102220pt;}
.ycb{bottom:466.239580pt;}
.y240{bottom:466.895833pt;}
.y215{bottom:469.562500pt;}
.y153{bottom:469.837233pt;}
.y1c2{bottom:469.838539pt;}
.y22b{bottom:471.299473pt;}
.y137{bottom:472.906247pt;}
.y1cc{bottom:476.505206pt;}
.ya0{bottom:479.171873pt;}
.y1da{bottom:480.505207pt;}
.yfe{bottom:481.347660pt;}
.y176{bottom:483.170567pt;}
.y11d{bottom:483.171873pt;}
.y1a9{bottom:487.170567pt;}
.ye7{bottom:487.171873pt;}
.y70{bottom:488.102220pt;}
.y51{bottom:489.837887pt;}
.y30{bottom:489.964193pt;}
.yca{bottom:493.837233pt;}
.y18c{bottom:493.838540pt;}
.y152{bottom:497.434900pt;}
.y1f3{bottom:497.437500pt;}
.y3{bottom:498.288683pt;}
.y22a{bottom:498.895833pt;}
.y136{bottom:500.505207pt;}
.y8b{bottom:501.435553pt;}
.yb7{bottom:502.367193pt;}
.y1c1{bottom:504.101567pt;}
.y9f{bottom:506.769527pt;}
.y1d9{bottom:508.101567pt;}
.yfd{bottom:508.945313pt;}
.y23f{bottom:510.494793pt;}
.y175{bottom:510.768233pt;}
.y11c{bottom:510.769527pt;}
.y214{bottom:513.158860pt;}
.y1a8{bottom:514.768233pt;}
.ye6{bottom:514.769527pt;}
.y6f{bottom:515.699873pt;}
.y50{bottom:517.435553pt;}
.y2f{bottom:517.561847pt;}
.yc9{bottom:521.434900pt;}
.y18b{bottom:521.436193pt;}
.y1bb{bottom:521.437500pt;}
.y151{bottom:525.032553pt;}
.y1f2{bottom:525.033860pt;}
.y229{bottom:526.494793pt;}
.y135{bottom:528.101567pt;}
.y8a{bottom:529.033207pt;}
.y9e{bottom:534.367193pt;}
.y1e5{bottom:535.700527pt;}
.yfc{bottom:536.542967pt;}
.y23e{bottom:538.093753pt;}
.y11b{bottom:538.367193pt;}
.yb6{bottom:540.630207pt;}
.y1b0{bottom:542.364580pt;}
.y1a7{bottom:542.365887pt;}
.ye5{bottom:542.367193pt;}
.y4f{bottom:545.033207pt;}
.y174{bottom:545.033860pt;}
.y2e{bottom:545.159500pt;}
.yc8{bottom:549.032553pt;}
.y18a{bottom:549.033860pt;}
.y150{bottom:552.630207pt;}
.y6e{bottom:553.964513pt;}
.y134{bottom:555.700527pt;}
.y89{bottom:556.630860pt;}
.y213{bottom:556.755207pt;}
.y9d{bottom:561.964847pt;}
.yfb{bottom:564.140620pt;}
.y11a{bottom:565.964847pt;}
.y1a6{bottom:569.963540pt;}
.ye4{bottom:569.964847pt;}
.y228{bottom:570.093753pt;}
.y4e{bottom:572.630860pt;}
.y173{bottom:572.631513pt;}
.y2d{bottom:572.757167pt;}
.yc7{bottom:576.630207pt;}
.y189{bottom:576.631513pt;}
.yb5{bottom:578.895180pt;}
.y14f{bottom:580.227860pt;}
.y1f1{bottom:580.229167pt;}
.y6d{bottom:581.562180pt;}
.y23d{bottom:581.690100pt;}
.y133{bottom:583.296873pt;}
.y88{bottom:584.228513pt;}
.y212{bottom:584.354167pt;}
.y9c{bottom:589.562500pt;}
.yfa{bottom:591.738287pt;}
.y119{bottom:593.562500pt;}
.y2{bottom:596.711583pt;}
.y1a5{bottom:597.561193pt;}
.ye3{bottom:597.562500pt;}
.y227{bottom:597.690100pt;}
.y4d{bottom:600.228513pt;}
.y172{bottom:600.229167pt;}
.y2c{bottom:600.354820pt;}
.yc6{bottom:604.227860pt;}
.y188{bottom:604.229167pt;}
.y14e{bottom:607.825527pt;}
.y6c{bottom:609.159833pt;}
.y132{bottom:610.895833pt;}
.y87{bottom:611.826167pt;}
.y211{bottom:611.953127pt;}
.y1f0{bottom:614.492193pt;}
.y9b{bottom:617.160153pt;}
.yf9{bottom:619.423180pt;}
.y1a4{bottom:625.158860pt;}
.ye2{bottom:625.160153pt;}
.y23c{bottom:625.286460pt;}
.y118{bottom:627.825527pt;}
.y4c{bottom:627.826167pt;}
.y171{bottom:627.826820pt;}
.yc5{bottom:631.825527pt;}
.y187{bottom:631.826820pt;}
.y1ba{bottom:631.828127pt;}
.y14d{bottom:635.423180pt;}
.y6b{bottom:636.757487pt;}
.y131{bottom:638.492193pt;}
.y2b{bottom:638.619140pt;}
.y86{bottom:639.423833pt;}
.y1{bottom:640.061368pt;}
.y226{bottom:641.286460pt;}
.y1ef{bottom:642.091140pt;}
.y9a{bottom:644.757807pt;}
.y1c0{bottom:652.755207pt;}
.y1a3{bottom:652.756513pt;}
.ye1{bottom:652.757807pt;}
.y23b{bottom:652.885420pt;}
.yb4{bottom:655.423180pt;}
.y4b{bottom:655.423833pt;}
.y170{bottom:655.424473pt;}
.y210{bottom:655.549473pt;}
.yf8{bottom:657.687500pt;}
.yc4{bottom:659.423180pt;}
.y186{bottom:659.424473pt;}
.y14c{bottom:663.020833pt;}
.y6a{bottom:664.355140pt;}
.y130{bottom:666.091140pt;}
.y2a{bottom:666.216953pt;}
.y225{bottom:668.885420pt;}
.y1ee{bottom:669.687500pt;}
.y85{bottom:672.355473pt;}
.y15{bottom:677.889979pt;}
.y1a2{bottom:680.354167pt;}
.ye0{bottom:680.355473pt;}
.y117{bottom:683.020833pt;}
.y4a{bottom:683.021487pt;}
.y16f{bottom:683.022140pt;}
.yf7{bottom:685.286460pt;}
.yc3{bottom:687.020833pt;}
.y185{bottom:687.022140pt;}
.y14b{bottom:690.618487pt;}
.y69{bottom:691.952793pt;}
.y12f{bottom:693.687500pt;}
.yb3{bottom:693.688153pt;}
.y29{bottom:693.814620pt;}
.y23a{bottom:696.484380pt;}
.y1ed{bottom:697.286460pt;}
.y20f{bottom:699.151048pt;}
.y99{bottom:699.953127pt;}
.y1a1{bottom:707.951820pt;}
.ydf{bottom:707.953127pt;}
.y116{bottom:710.618487pt;}
.y49{bottom:710.619140pt;}
.y16e{bottom:710.619793pt;}
.y224{bottom:712.484380pt;}
.y184{bottom:714.619793pt;}
.y14a{bottom:718.216140pt;}
.yf6{bottom:718.217447pt;}
.y68{bottom:719.550460pt;}
.yb2{bottom:721.285807pt;}
.y12e{bottom:721.286460pt;}
.y239{bottom:724.080727pt;}
.y1ec{bottom:724.882807pt;}
.y98{bottom:727.550780pt;}
.y10{bottom:729.686847pt;}
.y28{bottom:732.079100pt;}
.y1e4{bottom:735.549473pt;}
.y115{bottom:738.216140pt;}
.y48{bottom:738.216793pt;}
.y16d{bottom:738.217447pt;}
.y223{bottom:740.080727pt;}
.yde{bottom:742.216140pt;}
.y1a0{bottom:742.217447pt;}
.y1af{bottom:742.218753pt;}
.y149{bottom:745.813807pt;}
.y67{bottom:747.148113pt;}
.y12d{bottom:748.882807pt;}
.yb1{bottom:748.883460pt;}
.y1eb{bottom:752.481767pt;}
.y114{bottom:765.813807pt;}
.y84{bottom:765.814447pt;}
.y16c{bottom:765.815100pt;}
.y238{bottom:767.677087pt;}
.ydd{bottom:769.813807pt;}
.y19f{bottom:769.815100pt;}
.y148{bottom:773.411460pt;}
.y66{bottom:774.745767pt;}
.yb0{bottom:776.481113pt;}
.y47{bottom:776.481447pt;}
.y12c{bottom:776.481767pt;}
.y205{bottom:776.484380pt;}
.y1ea{bottom:780.078127pt;}
.y222{bottom:783.677087pt;}
.y113{bottom:793.411460pt;}
.y83{bottom:793.412113pt;}
.y16b{bottom:793.412767pt;}
.y237{bottom:795.276047pt;}
.ydc{bottom:797.411460pt;}
.y19e{bottom:797.412767pt;}
.y147{bottom:801.009113pt;}
.y65{bottom:802.343420pt;}
.y12b{bottom:804.078127pt;}
.yaf{bottom:804.078780pt;}
.y46{bottom:804.079100pt;}
.y204{bottom:804.080727pt;}
.y1e9{bottom:807.677087pt;}
.y112{bottom:821.009113pt;}
.y82{bottom:821.009767pt;}
.y16a{bottom:821.010420pt;}
.ydb{bottom:825.009113pt;}
.y19d{bottom:825.010420pt;}
.y221{bottom:827.276047pt;}
.y146{bottom:828.608073pt;}
.y64{bottom:829.941087pt;}
.yae{bottom:831.676433pt;}
.y45{bottom:831.676753pt;}
.y12a{bottom:831.677087pt;}
.y1e8{bottom:835.276046pt;}
.y236{bottom:838.874993pt;}
.y27{bottom:842.872073pt;}
.y81{bottom:848.607420pt;}
.y169{bottom:848.608073pt;}
.yda{bottom:852.606767pt;}
.y19c{bottom:852.608073pt;}
.y1bf{bottom:852.609380pt;}
.y63{bottom:857.538740pt;}
.y111{bottom:859.273433pt;}
.yad{bottom:859.274087pt;}
.y44{bottom:859.274420pt;}
.y203{bottom:859.276047pt;}
.y145{bottom:862.871101pt;}
.y1e7{bottom:869.536460pt;}
.y220{bottom:870.874993pt;}
.y80{bottom:876.205073pt;}
.y168{bottom:876.205727pt;}
.y26{bottom:877.136393pt;}
.yd9{bottom:880.204433pt;}
.y19b{bottom:880.205727pt;}
.y235{bottom:882.471353pt;}
.y62{bottom:885.136393pt;}
.yac{bottom:886.871745pt;}
.y43{bottom:886.872071pt;}
.y110{bottom:886.872396pt;}
.y202{bottom:886.875000pt;}
.ye{bottom:891.874349pt;}
.y21f{bottom:898.471355pt;}
.yc{bottom:901.073649pt;}
.y7f{bottom:903.802735pt;}
.yd8{bottom:907.802083pt;}
.y19a{bottom:907.803385pt;}
.y25{bottom:911.400392pt;}
.y10f{bottom:914.468749pt;}
.yab{bottom:914.469401pt;}
.y42{bottom:914.469727pt;}
.y201{bottom:914.471355pt;}
.y61{bottom:918.067057pt;}
.y234{bottom:926.067708pt;}
.y7e{bottom:931.400391pt;}
.yd7{bottom:935.399740pt;}
.y199{bottom:935.401041pt;}
.yaa{bottom:942.067057pt;}
.y41{bottom:942.067383pt;}
.y10e{bottom:942.067708pt;}
.y198{bottom:962.997395pt;}
.yd6{bottom:962.998697pt;}
.yf5{bottom:969.664063pt;}
.y60{bottom:969.664713pt;}
.y40{bottom:969.665039pt;}
.y200{bottom:969.666667pt;}
.y5f{bottom:997.262369pt;}
.yb{bottom:997.262532pt;}
.y3f{bottom:997.262695pt;}
.yf4{bottom:997.263021pt;}
.y1ff{bottom:997.265625pt;}
.y1fd{bottom:1042.533853pt;}
.y9{bottom:1042.536296pt;}
.y166{bottom:1042.536457pt;}
.y3e{bottom:1042.536459pt;}
.h12{height:23.031250pt;}
.h14{height:26.692498pt;}
.hf{height:28.687500pt;}
.h13{height:35.263021pt;}
.h5{height:35.263672pt;}
.h10{height:35.264323pt;}
.h15{height:35.265625pt;}
.h16{height:36.255001pt;}
.h8{height:41.597656pt;}
.h17{height:44.437500pt;}
.h11{height:47.812499pt;}
.hb{height:50.796875pt;}
.h9{height:50.796956pt;}
.h7{height:56.843750pt;}
.h6{height:57.375000pt;}
.he{height:58.710940pt;}
.h3{height:60.822823pt;}
.h4{height:61.391261pt;}
.h2{height:75.791669pt;}
.h1{height:104.213544pt;}
.ha{height:161.187500pt;}
.hc{height:271.578120pt;}
.hd{height:308.375000pt;}
.h0{height:1122.666667pt;}
.w3{width:80.000000pt;}
.w1{width:198.000000pt;}
.w2{width:518.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xe{left:6.000000pt;}
.xc{left:30.000000pt;}
.xf{left:54.000000pt;}
.xa{left:96.000000pt;}
.xb{left:97.000000pt;}
.x14{left:100.057425pt;}
.x10{left:120.000000pt;}
.x18{left:128.000000pt;}
.x16{left:141.826958pt;}
.x15{left:143.000000pt;}
.x7{left:144.000000pt;}
.x19{left:151.000000pt;}
.x13{left:182.000000pt;}
.x9{left:190.000000pt;}
.x1a{left:192.000000pt;}
.x17{left:200.494926pt;}
.x4{left:247.753632pt;}
.x2{left:289.695680pt;}
.x1{left:296.944050pt;}
.x5{left:319.746510pt;}
.x3{left:322.450060pt;}
.x6{left:373.565730pt;}
.x11{left:384.888280pt;}
.x8{left:498.000000pt;}
.x12{left:543.513280pt;}
.xd{left:616.000000pt;}
}




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