
    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_927a6c2ae4be37983c4b864f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_07867303ef48aed5e835b67d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_0b3fde5851423a2a72ef387a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148438;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_37927249187fdc4e406ed180.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_c22ea141289b466903f31bbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_cce71da99b4b8b409c674dad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_1a8fd00b88a3e798f11f91ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_89aee85c990aa67b47d1017a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120605;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;}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-88.558765px;}
.v4{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:41.759983px;}
.v5{vertical-align:55.439978px;}
.v2{vertical-align:82.799967px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.010553px;}
.ls5{letter-spacing:0.021282px;}
.ls0{letter-spacing:0.131383px;}
.ls6{letter-spacing:0.171780px;}
.ls4{letter-spacing:64.273774px;}
.ls1{letter-spacing:1343.603734px;}
.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;}
}
.ws1{word-spacing:-17.999993px;}
.ws3{word-spacing:-12.059995px;}
.ws2{word-spacing:-8.999996px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-2.420645px;}
._0{margin-left:-1.188075px;}
._2{width:1.183411px;}
._16{width:2.244599px;}
._44{width:3.353421px;}
._13{width:4.354427px;}
._8{width:5.399266px;}
._9{width:7.330142px;}
._d{width:9.372615px;}
._c{width:10.437816px;}
._5{width:11.530842px;}
._4{width:13.255463px;}
._47{width:14.267371px;}
._6{width:15.490244px;}
._b{width:16.605234px;}
._4a{width:19.331281px;}
._4b{width:20.924697px;}
._18{width:23.377224px;}
._17{width:24.487389px;}
._50{width:25.960028px;}
._29{width:27.425738px;}
._e{width:29.026035px;}
._11{width:30.046316px;}
._4e{width:31.302081px;}
._12{width:32.385212px;}
._45{width:35.301995px;}
._19{width:36.475953px;}
._15{width:41.725620px;}
._14{width:42.919720px;}
._48{width:44.212911px;}
._4d{width:45.229598px;}
._4c{width:46.442587px;}
._a{width:49.812197px;}
._46{width:50.834576px;}
._33{width:52.385624px;}
._34{width:53.428126px;}
._43{width:56.934652px;}
._3c{width:59.491371px;}
._31{width:61.156176px;}
._3d{width:62.435735px;}
._3f{width:66.063464px;}
._4f{width:68.217970px;}
._49{width:71.670569px;}
._39{width:73.694371px;}
._f{width:77.431835px;}
._10{width:78.629439px;}
._25{width:80.214819px;}
._3a{width:82.498167px;}
._3{width:90.064176px;}
._2e{width:95.068162px;}
._2c{width:97.084161px;}
._38{width:98.179024px;}
._32{width:103.852655px;}
._30{width:105.109758px;}
._37{width:106.618294px;}
._7{width:108.085037px;}
._36{width:113.854453px;}
._66{width:116.158261px;}
._2f{width:121.129752px;}
._41{width:122.291658px;}
._3b{width:134.163861px;}
._22{width:137.118300px;}
._64{width:150.180050px;}
._2d{width:155.219462px;}
._35{width:183.773033px;}
._5c{width:199.310698px;}
._5f{width:256.300293px;}
._3e{width:258.097404px;}
._1f{width:265.583781px;}
._5e{width:277.000535px;}
._62{width:288.288413px;}
._68{width:292.728182px;}
._63{width:295.532895px;}
._61{width:308.987993px;}
._24{width:312.887875px;}
._65{width:315.165911px;}
._42{width:325.935710px;}
._1d{width:333.624303px;}
._40{width:337.082145px;}
._23{width:348.394027px;}
._56{width:350.590822px;}
._1b{width:360.983867px;}
._1c{width:365.736176px;}
._5a{width:386.839236px;}
._26{width:389.711844px;}
._1a{width:393.600153px;}
._54{width:410.635722px;}
._60{width:430.835648px;}
._5d{width:445.381986px;}
._59{width:447.201377px;}
._57{width:449.586645px;}
._1e{width:452.855877px;}
._67{width:462.079503px;}
._20{width:468.911462px;}
._58{width:475.138254px;}
._5b{width:483.773422px;}
._21{width:489.647604px;}
._51{width:503.362645px;}
._53{width:518.972272px;}
._55{width:609.243750px;}
._27{width:845.090125px;}
._28{width:867.423293px;}
._2a{width:874.595808px;}
._52{width:1211.199749px;}
._2b{width:1244.897887px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.999986px;}
.fs7{font-size:48.239981px;}
.fs5{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs3{font-size:99.359960px;}
.ya1{bottom:-1.440820px;}
.ya5{bottom:-1.440777px;}
.ya3{bottom:-1.440734px;}
.y0{bottom:0.000000px;}
.y19c{bottom:3.419289px;}
.y177{bottom:3.420008px;}
.y107{bottom:95.340262px;}
.y9f{bottom:104.339958px;}
.y178{bottom:106.500257px;}
.y150{bottom:112.619955px;}
.y106{bottom:116.040254px;}
.y52{bottom:119.640252px;}
.y9e{bottom:124.859950px;}
.y176{bottom:127.020240px;}
.y175{bottom:130.440248px;}
.y14f{bottom:133.319947px;}
.y105{bottom:135.480246px;}
.y51{bottom:140.699944px;}
.y8a{bottom:144.119942px;}
.y9d{bottom:145.559942px;}
.y103{bottom:152.939939px;}
.y104{bottom:153.119939px;}
.y14e{bottom:154.019938px;}
.y28{bottom:155.279938px;}
.y50{bottom:159.599936px;}
.y174{bottom:164.099934px;}
.y89{bottom:164.819934px;}
.y9c{bottom:166.259933px;}
.y102{bottom:166.979933px;}
.y132{bottom:171.839931px;}
.y27{bottom:176.159930px;}
.y4f{bottom:178.679929px;}
.y14d{bottom:180.299928px;}
.y100{bottom:180.659928px;}
.y101{bottom:180.839928px;}
.y88{bottom:186.239926px;}
.y9b{bottom:186.959925px;}
.y173{bottom:188.039925px;}
.y131{bottom:192.539923px;}
.yff{bottom:194.519922px;}
.y4e{bottom:197.579921px;}
.y26{bottom:200.459920px;}
.y87{bottom:207.659917px;}
.yfd{bottom:208.199917px;}
.yfe{bottom:208.379917px;}
.y130{bottom:213.239915px;}
.y19f{bottom:215.939914px;}
.y4d{bottom:216.479913px;}
.y172{bottom:221.699911px;}
.yfc{bottom:222.239911px;}
.y25{bottom:224.579910px;}
.y14c{bottom:224.939910px;}
.y86{bottom:229.079908px;}
.y9a{bottom:233.219907px;}
.y12f{bottom:233.759906px;}
.y4c{bottom:235.559906px;}
.yfb{bottom:235.919906px;}
.y171{bottom:245.459902px;}
.y14b{bottom:245.639902px;}
.y19e{bottom:247.979901px;}
.y24{bottom:248.519901px;}
.yfa{bottom:249.779900px;}
.y85{bottom:250.499900px;}
.y4b{bottom:254.459898px;}
.y19d{bottom:256.439897px;}
.yf9{bottom:263.459895px;}
.y14a{bottom:266.339893px;}
.y23{bottom:270.659892px;}
.y84{bottom:271.559891px;}
.y19b{bottom:273.000600px;}
.y4a{bottom:273.539891px;}
.y99{bottom:275.159890px;}
.y19a{bottom:276.419889px;}
.yf8{bottom:277.319889px;}
.y170{bottom:279.119888px;}
.y149{bottom:287.039885px;}
.yf7{bottom:291.179884px;}
.y22{bottom:291.359883px;}
.y83{bottom:292.259883px;}
.y49{bottom:292.439883px;}
.y98{bottom:295.859882px;}
.yf5{bottom:304.679878px;}
.yf6{bottom:304.859878px;}
.y198{bottom:306.119878px;}
.y16f{bottom:307.559877px;}
.y148{bottom:307.739877px;}
.y48{bottom:311.339875px;}
.y21{bottom:312.059875px;}
.y82{bottom:312.959875px;}
.y97{bottom:315.299874px;}
.y12e{bottom:316.559873px;}
.yf4{bottom:318.719873px;}
.y197{bottom:325.919870px;}
.y147{bottom:328.439869px;}
.y96{bottom:329.159868px;}
.y47{bottom:330.419868px;}
.y81{bottom:331.319867px;}
.yf2{bottom:332.399867px;}
.yf3{bottom:332.579867px;}
.y20{bottom:333.659867px;}
.ya2{bottom:335.640600px;}
.y16e{bottom:335.999866px;}
.y12d{bottom:337.259865px;}
.y199{bottom:337.439865px;}
.y196{bottom:345.899862px;}
.yf1{bottom:346.439861px;}
.y146{bottom:349.139860px;}
.y46{bottom:349.319860px;}
.y80{bottom:352.019859px;}
.y12c{bottom:357.959857px;}
.yef{bottom:360.839856px;}
.y1f{bottom:363.539855px;}
.y195{bottom:365.879854px;}
.y45{bottom:369.119852px;}
.y16d{bottom:369.659852px;}
.y7f{bottom:372.719851px;}
.yee{bottom:374.699850px;}
.y145{bottom:375.239850px;}
.y12b{bottom:378.659849px;}
.y44{bottom:389.279844px;}
.yed{bottom:389.459844px;}
.y1e{bottom:393.419843px;}
.y16c{bottom:393.599843px;}
.y194{bottom:395.399842px;}
.y12a{bottom:399.359840px;}
.yf0{bottom:402.959839px;}
.yec{bottom:403.139839px;}
.y7e{bottom:414.119834px;}
.y193{bottom:415.379834px;}
.y43{bottom:416.819833px;}
.yeb{bottom:416.999833px;}
.y16b{bottom:417.359833px;}
.y144{bottom:419.879832px;}
.y129{bottom:420.059832px;}
.y1d{bottom:423.299831px;}
.ye7{bottom:431.579827px;}
.y7d{bottom:434.819826px;}
.y192{bottom:435.359826px;}
.y143{bottom:440.579824px;}
.y128{bottom:440.759824px;}
.ya4{bottom:443.640600px;}
.y42{bottom:444.539822px;}
.ye6{bottom:445.439822px;}
.y16a{bottom:451.019820px;}
.y1c{bottom:453.179819px;}
.y191{bottom:455.159818px;}
.y7c{bottom:455.519818px;}
.ye9{bottom:458.939816px;}
.ye5{bottom:459.119816px;}
.y142{bottom:461.279815px;}
.y127{bottom:461.459815px;}
.y41{bottom:472.079811px;}
.ye8{bottom:472.799811px;}
.ye4{bottom:472.979811px;}
.y169{bottom:474.959810px;}
.y190{bottom:475.139810px;}
.y7b{bottom:476.219810px;}
.y141{bottom:481.979807px;}
.y126{bottom:482.159807px;}
.y1b{bottom:482.879807px;}
.yea{bottom:486.659805px;}
.ye3{bottom:486.839805px;}
.y7a{bottom:496.919801px;}
.y40{bottom:499.619800px;}
.ye1{bottom:501.059800px;}
.ye2{bottom:501.239800px;}
.y140{bottom:502.679799px;}
.y125{bottom:502.859799px;}
.y168{bottom:503.399799px;}
.y18f{bottom:504.839798px;}
.y1a{bottom:512.759795px;}
.ye0{bottom:515.099794px;}
.y79{bottom:517.619793px;}
.y13f{bottom:523.379791px;}
.y124{bottom:523.559791px;}
.y18e{bottom:524.639790px;}
.y3f{bottom:527.339789px;}
.ydf{bottom:528.959788px;}
.y167{bottom:537.059785px;}
.y78{bottom:538.319785px;}
.y19{bottom:542.639783px;}
.y13e{bottom:544.079782px;}
.y123{bottom:544.259782px;}
.ya0{bottom:551.640600px;}
.y18d{bottom:554.339778px;}
.y3e{bottom:554.879778px;}
.ydd{bottom:556.319777px;}
.yde{bottom:556.499777px;}
.y77{bottom:559.019776px;}
.y13d{bottom:564.779774px;}
.y122{bottom:564.959774px;}
.y166{bottom:565.499774px;}
.ydc{bottom:570.359772px;}
.y18{bottom:572.519771px;}
.y18c{bottom:574.319770px;}
.y76{bottom:579.719768px;}
.y3d{bottom:582.419767px;}
.yda{bottom:583.859766px;}
.ydb{bottom:584.039766px;}
.y13c{bottom:585.479766px;}
.y121{bottom:585.659766px;}
.y165{bottom:589.259764px;}
.yd9{bottom:597.899761px;}
.y75{bottom:600.419760px;}
.y17{bottom:602.399759px;}
.y18b{bottom:604.019758px;}
.y13b{bottom:606.179758px;}
.y120{bottom:606.359757px;}
.y3c{bottom:609.959756px;}
.yd7{bottom:611.399755px;}
.yd8{bottom:611.579755px;}
.y74{bottom:621.119752px;}
.y164{bottom:623.459751px;}
.y18a{bottom:623.819750px;}
.yd6{bottom:625.439750px;}
.y13a{bottom:626.879749px;}
.y11f{bottom:627.059749px;}
.y16{bottom:632.279747px;}
.y3b{bottom:637.679745px;}
.yd4{bottom:639.299744px;}
.y73{bottom:641.819743px;}
.y189{bottom:643.799742px;}
.y95{bottom:645.239742px;}
.y163{bottom:647.399741px;}
.y139{bottom:647.579741px;}
.y11e{bottom:647.759741px;}
.yd3{bottom:653.159739px;}
.y15{bottom:662.159735px;}
.y72{bottom:662.519735px;}
.y3a{bottom:665.219734px;}
.y94{bottom:665.939734px;}
.yd2{bottom:666.839733px;}
.y138{bottom:668.279733px;}
.y11d{bottom:668.459733px;}
.y188{bottom:673.499731px;}
.yd5{bottom:680.519728px;}
.yd1{bottom:680.699728px;}
.y162{bottom:681.599727px;}
.y71{bottom:683.219727px;}
.y93{bottom:686.639725px;}
.y137{bottom:688.979724px;}
.y14{bottom:692.039723px;}
.y39{bottom:692.759723px;}
.y187{bottom:693.299723px;}
.yd0{bottom:694.559722px;}
.y11c{bottom:694.739722px;}
.y70{bottom:703.919718px;}
.y161{bottom:705.539718px;}
.y92{bottom:707.339717px;}
.yce{bottom:708.779716px;}
.ycf{bottom:708.959716px;}
.y136{bottom:709.679716px;}
.y38{bottom:720.479712px;}
.y13{bottom:721.919711px;}
.ycd{bottom:722.819711px;}
.y6f{bottom:724.619710px;}
.y15f{bottom:724.799710px;}
.y186{bottom:726.959709px;}
.y91{bottom:728.039709px;}
.y160{bottom:729.299708px;}
.y135{bottom:730.379708px;}
.ycb{bottom:736.499705px;}
.ycc{bottom:736.679705px;}
.y11b{bottom:739.379704px;}
.y6e{bottom:745.319702px;}
.y37{bottom:748.019701px;}
.y90{bottom:748.739701px;}
.yca{bottom:750.359700px;}
.y185{bottom:750.899700px;}
.y12{bottom:751.799699px;}
.y15e{bottom:753.239699px;}
.y134{bottom:756.479697px;}
.y11a{bottom:760.079696px;}
.yc8{bottom:764.039694px;}
.yc9{bottom:764.219694px;}
.y6d{bottom:766.019694px;}
.y8f{bottom:769.439692px;}
.y36{bottom:775.559690px;}
.yc7{bottom:778.079689px;}
.y119{bottom:780.779688px;}
.y11{bottom:781.679687px;}
.y184{bottom:784.559686px;}
.y15d{bottom:787.439685px;}
.y6c{bottom:791.399683px;}
.yc5{bottom:791.579683px;}
.yc6{bottom:791.759683px;}
.y8e{bottom:794.999682px;}
.y133{bottom:796.619681px;}
.y118{bottom:801.479679px;}
.y35{bottom:803.279679px;}
.yc4{bottom:805.619678px;}
.y15c{bottom:811.379675px;}
.y10{bottom:811.559675px;}
.y183{bottom:818.219673px;}
.yc2{bottom:819.479672px;}
.y117{bottom:822.179671px;}
.y34{bottom:830.819668px;}
.yc1{bottom:833.159667px;}
.y6b{bottom:833.339667px;}
.y8d{bottom:836.939665px;}
.yf{bottom:841.439663px;}
.y182{bottom:842.159663px;}
.y116{bottom:842.879663px;}
.y15b{bottom:845.579662px;}
.yc0{bottom:847.019661px;}
.y8c{bottom:856.379657px;}
.y33{bottom:858.359657px;}
.y6a{bottom:859.439656px;}
.yc3{bottom:860.699656px;}
.ybf{bottom:860.879656px;}
.y115{bottom:863.579655px;}
.y15a{bottom:869.339652px;}
.y8b{bottom:870.419652px;}
.ye{bottom:871.319651px;}
.ybe{bottom:874.559650px;}
.y181{bottom:875.819650px;}
.y114{bottom:884.279646px;}
.y5e{bottom:885.179646px;}
.y32{bottom:886.079646px;}
.ybc{bottom:888.959644px;}
.ybd{bottom:889.139644px;}
.y180{bottom:899.759640px;}
.yd{bottom:900.299640px;}
.ybb{bottom:902.999639px;}
.y159{bottom:903.539639px;}
.y69{bottom:904.079638px;}
.y113{bottom:904.979638px;}
.y5d{bottom:905.879638px;}
.y31{bottom:913.619635px;}
.yb9{bottom:916.499633px;}
.yba{bottom:916.679633px;}
.yc{bottom:920.999632px;}
.y68{bottom:924.779630px;}
.y112{bottom:925.679630px;}
.y5c{bottom:926.579629px;}
.yb8{bottom:930.539628px;}
.y17f{bottom:933.239627px;}
.y158{bottom:937.739625px;}
.y30{bottom:941.159624px;}
.yb{bottom:941.699623px;}
.yb6{bottom:944.219622px;}
.yb7{bottom:944.399622px;}
.y67{bottom:945.479622px;}
.y111{bottom:946.379621px;}
.y5b{bottom:947.279621px;}
.yb5{bottom:958.079617px;}
.y157{bottom:961.679615px;}
.ya{bottom:962.399615px;}
.y66{bottom:966.179614px;}
.y110{bottom:966.899613px;}
.y5a{bottom:967.979613px;}
.y2f{bottom:968.879612px;}
.yb3{bottom:971.759611px;}
.yb4{bottom:971.939611px;}
.y4{bottom:984.719606px;}
.yb2{bottom:985.799606px;}
.y65{bottom:986.879605px;}
.y10f{bottom:987.599605px;}
.y59{bottom:988.679605px;}
.y156{bottom:995.879602px;}
.y2e{bottom:996.419601px;}
.y9{bottom:997.319601px;}
.yb0{bottom:999.479600px;}
.y17e{bottom:1000.559600px;}
.y3{bottom:1000.919600px;}
.y64{bottom:1007.579597px;}
.y10e{bottom:1008.299597px;}
.y58{bottom:1009.379596px;}
.yaf{bottom:1013.339595px;}
.y8{bottom:1018.199593px;}
.y155{bottom:1019.819592px;}
.y2d{bottom:1023.959590px;}
.y17d{bottom:1024.499590px;}
.yae{bottom:1027.199589px;}
.y63{bottom:1028.279589px;}
.y10d{bottom:1028.999588px;}
.y57{bottom:1030.079588px;}
.yb1{bottom:1040.699584px;}
.yad{bottom:1040.879584px;}
.y7{bottom:1042.319583px;}
.y62{bottom:1048.979580px;}
.y10c{bottom:1049.699580px;}
.y56{bottom:1050.779580px;}
.y2c{bottom:1051.679579px;}
.y154{bottom:1054.019578px;}
.yac{bottom:1054.739578px;}
.y17c{bottom:1058.159577px;}
.yab{bottom:1068.419573px;}
.y61{bottom:1069.679572px;}
.y10b{bottom:1070.399572px;}
.y55{bottom:1071.479571px;}
.y6{bottom:1075.439570px;}
.yaa{bottom:1078.679569px;}
.y2b{bottom:1079.219568px;}
.y17b{bottom:1082.099567px;}
.ya9{bottom:1089.119564px;}
.y60{bottom:1090.379564px;}
.y153{bottom:1090.739564px;}
.y10a{bottom:1091.099564px;}
.y54{bottom:1092.179563px;}
.y5{bottom:1099.379560px;}
.ya8{bottom:1102.619559px;}
.y17a{bottom:1106.039558px;}
.y2a{bottom:1106.759557px;}
.y109{bottom:1111.799555px;}
.y53{bottom:1112.879555px;}
.y5f{bottom:1116.659553px;}
.y152{bottom:1119.539552px;}
.y2{bottom:1120.079552px;}
.ya7{bottom:1122.239551px;}
.y29{bottom:1134.479546px;}
.y108{bottom:1137.359545px;}
.y179{bottom:1139.699544px;}
.y151{bottom:1140.239544px;}
.ya6{bottom:1140.599544px;}
.y1{bottom:1141.679543px;}
.hc{height:15.120000px;}
.h1a{height:19.980000px;}
.hd{height:36.281235px;}
.h15{height:47.321348px;}
.hf{height:47.344903px;}
.h10{height:47.896856px;}
.h16{height:48.616856px;}
.h9{height:60.226851px;}
.h19{height:60.547476px;}
.h18{height:62.391069px;}
.h7{height:65.010911px;}
.h1{height:69.086222px;}
.h2{height:70.664034px;}
.ha{height:72.562471px;}
.h5{height:75.093720px;}
.he{height:78.041219px;}
.h3{height:87.859652px;}
.h4{height:93.586603px;}
.h6{height:96.508086px;}
.h8{height:99.874648px;}
.h14{height:102.064881px;}
.h12{height:102.784881px;}
.h13{height:103.336834px;}
.h17{height:103.504880px;}
.h11{height:104.056833px;}
.hb{height:153.464001px;}
.h0{height:1263.000000px;}
.w4{width:5.940000px;}
.w8{width:6.660000px;}
.w6{width:9.000000px;}
.w2{width:9.720000px;}
.w3{width:10.260000px;}
.w7{width:11.340000px;}
.w1{width:16.200000px;}
.w5{width:18.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.199958px;}
.x31{left:115.199954px;}
.x11{left:124.198325px;}
.x26{left:127.799949px;}
.x12{left:133.199008px;}
.x13{left:160.197998px;}
.x2d{left:168.299898px;}
.x34{left:177.119929px;}
.x7{left:216.179914px;}
.x2{left:218.699913px;}
.x27{left:235.799804px;}
.x3{left:249.659773px;}
.x28{left:276.299712px;}
.x15{left:278.999876px;}
.xd{left:320.748907px;}
.x17{left:322.919871px;}
.x29{left:330.299640px;}
.x36{left:339.480000px;}
.xf{left:344.699850px;}
.xa{left:350.280250px;}
.x6{left:352.979864px;}
.xc{left:354.600956px;}
.x32{left:355.859857px;}
.x9{left:361.080141px;}
.x4{left:376.379849px;}
.x2a{left:384.299568px;}
.x5{left:401.039873px;}
.xb{left:414.720095px;}
.xe{left:417.059787px;}
.x2b{left:424.799476px;}
.x8{left:446.400173px;}
.x16{left:451.619901px;}
.x1f{left:453.240000px;}
.x20{left:462.240000px;}
.x21{left:478.440000px;}
.x10{left:547.919781px;}
.x2c{left:559.799370px;}
.x1a{left:561.240000px;}
.x1b{left:571.500000px;}
.x18{left:574.740000px;}
.x1c{left:577.440000px;}
.x19{left:590.940000px;}
.x1d{left:595.440000px;}
.x1e{left:611.640000px;}
.x14{left:624.419820px;}
.x35{left:679.140000px;}
.x22{left:696.240000px;}
.x33{left:700.199181px;}
.x23{left:702.180000px;}
.x2e{left:708.299754px;}
.x24{left:711.180000px;}
.x25{left:727.380000px;}
.x2f{left:775.799719px;}
.x30{left:785.879686px;}
@media print{
.v1{vertical-align:-78.718902pt;}
.v4{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:37.119985pt;}
.v5{vertical-align:49.279980pt;}
.v2{vertical-align:73.599971pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.009381pt;}
.ls5{letter-spacing:0.018917pt;}
.ls0{letter-spacing:0.116785pt;}
.ls6{letter-spacing:0.152693pt;}
.ls4{letter-spacing:57.132244pt;}
.ls1{letter-spacing:1194.314430pt;}
.ws1{word-spacing:-15.999994pt;}
.ws3{word-spacing:-10.719996pt;}
.ws2{word-spacing:-7.999997pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-2.151684pt;}
._0{margin-left:-1.056066pt;}
._2{width:1.051921pt;}
._16{width:1.995199pt;}
._44{width:2.980818pt;}
._13{width:3.870602pt;}
._8{width:4.799347pt;}
._9{width:6.515682pt;}
._d{width:8.331213pt;}
._c{width:9.278059pt;}
._5{width:10.249637pt;}
._4{width:11.782634pt;}
._47{width:12.682108pt;}
._6{width:13.769105pt;}
._b{width:14.760208pt;}
._4a{width:17.183361pt;}
._4b{width:18.599731pt;}
._18{width:20.779755pt;}
._17{width:21.766568pt;}
._50{width:23.075580pt;}
._29{width:24.378434pt;}
._e{width:25.800920pt;}
._11{width:26.707836pt;}
._4e{width:27.824072pt;}
._12{width:28.786855pt;}
._45{width:31.379551pt;}
._19{width:32.423070pt;}
._15{width:37.089440pt;}
._14{width:38.150862pt;}
._48{width:39.300365pt;}
._4d{width:40.204087pt;}
._4c{width:41.282300pt;}
._a{width:44.277508pt;}
._46{width:45.186290pt;}
._33{width:46.564999pt;}
._34{width:47.491667pt;}
._43{width:50.608580pt;}
._3c{width:52.881219pt;}
._31{width:54.361045pt;}
._3d{width:55.498431pt;}
._3f{width:58.723079pt;}
._4f{width:60.638196pt;}
._49{width:63.707173pt;}
._39{width:65.506107pt;}
._f{width:68.828298pt;}
._10{width:69.892835pt;}
._25{width:71.302062pt;}
._3a{width:73.331704pt;}
._3{width:80.057045pt;}
._2e{width:84.505033pt;}
._2c{width:86.297032pt;}
._38{width:87.270244pt;}
._32{width:92.313471pt;}
._30{width:93.430896pt;}
._37{width:94.771817pt;}
._7{width:96.075588pt;}
._36{width:101.203958pt;}
._66{width:103.251787pt;}
._2f{width:107.670890pt;}
._41{width:108.703696pt;}
._3b{width:119.256766pt;}
._22{width:121.882933pt;}
._64{width:133.493378pt;}
._2d{width:137.972855pt;}
._35{width:163.353807pt;}
._5c{width:177.165065pt;}
._5f{width:227.822482pt;}
._3e{width:229.419915pt;}
._1f{width:236.074472pt;}
._5e{width:246.222698pt;}
._62{width:256.256367pt;}
._68{width:260.202828pt;}
._63{width:262.695906pt;}
._61{width:274.655994pt;}
._24{width:278.122555pt;}
._65{width:280.147477pt;}
._42{width:289.720631pt;}
._1d{width:296.554936pt;}
._40{width:299.628573pt;}
._23{width:309.683580pt;}
._56{width:311.636286pt;}
._1b{width:320.874549pt;}
._1c{width:325.098823pt;}
._5a{width:343.857098pt;}
._26{width:346.410528pt;}
._1a{width:349.866803pt;}
._54{width:365.009530pt;}
._60{width:382.965021pt;}
._5d{width:395.895098pt;}
._59{width:397.512336pt;}
._57{width:399.632573pt;}
._1e{width:402.538557pt;}
._67{width:410.737336pt;}
._20{width:416.810188pt;}
._58{width:422.345115pt;}
._5b{width:430.020820pt;}
._21{width:435.242315pt;}
._51{width:447.433462pt;}
._53{width:461.308687pt;}
._55{width:541.550000pt;}
._27{width:751.191223pt;}
._28{width:771.042927pt;}
._2a{width:777.418496pt;}
._52{width:1076.621999pt;}
._2b{width:1106.575899pt;}
.fs6{font-size:31.999987pt;}
.fs7{font-size:42.879983pt;}
.fs5{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs3{font-size:88.319965pt;}
.ya1{bottom:-1.280729pt;}
.ya5{bottom:-1.280691pt;}
.ya3{bottom:-1.280652pt;}
.y0{bottom:0.000000pt;}
.y19c{bottom:3.039368pt;}
.y177{bottom:3.040007pt;}
.y107{bottom:84.746899pt;}
.y9f{bottom:92.746630pt;}
.y178{bottom:94.666895pt;}
.y150{bottom:100.106627pt;}
.y106{bottom:103.146892pt;}
.y52{bottom:106.346891pt;}
.y9e{bottom:110.986622pt;}
.y176{bottom:112.906880pt;}
.y175{bottom:115.946887pt;}
.y14f{bottom:118.506619pt;}
.y105{bottom:120.426885pt;}
.y51{bottom:125.066617pt;}
.y8a{bottom:128.106615pt;}
.y9d{bottom:129.386615pt;}
.y103{bottom:135.946612pt;}
.y104{bottom:136.106612pt;}
.y14e{bottom:136.906612pt;}
.y28{bottom:138.026611pt;}
.y50{bottom:141.866610pt;}
.y174{bottom:145.866608pt;}
.y89{bottom:146.506608pt;}
.y9c{bottom:147.786608pt;}
.y102{bottom:148.426607pt;}
.y132{bottom:152.746606pt;}
.y27{bottom:156.586604pt;}
.y4f{bottom:158.826603pt;}
.y14d{bottom:160.266603pt;}
.y100{bottom:160.586602pt;}
.y101{bottom:160.746602pt;}
.y88{bottom:165.546600pt;}
.y9b{bottom:166.186600pt;}
.y173{bottom:167.146600pt;}
.y131{bottom:171.146598pt;}
.yff{bottom:172.906598pt;}
.y4e{bottom:175.626596pt;}
.y26{bottom:178.186595pt;}
.y87{bottom:184.586593pt;}
.yfd{bottom:185.066593pt;}
.yfe{bottom:185.226593pt;}
.y130{bottom:189.546591pt;}
.y19f{bottom:191.946590pt;}
.y4d{bottom:192.426590pt;}
.y172{bottom:197.066588pt;}
.yfc{bottom:197.546588pt;}
.y25{bottom:199.626587pt;}
.y14c{bottom:199.946587pt;}
.y86{bottom:203.626585pt;}
.y9a{bottom:207.306584pt;}
.y12f{bottom:207.786584pt;}
.y4c{bottom:209.386583pt;}
.yfb{bottom:209.706583pt;}
.y171{bottom:218.186579pt;}
.y14b{bottom:218.346579pt;}
.y19e{bottom:220.426578pt;}
.y24{bottom:220.906578pt;}
.yfa{bottom:222.026578pt;}
.y85{bottom:222.666578pt;}
.y4b{bottom:226.186576pt;}
.y19d{bottom:227.946575pt;}
.yf9{bottom:234.186573pt;}
.y14a{bottom:236.746572pt;}
.y23{bottom:240.586570pt;}
.y84{bottom:241.386570pt;}
.y19b{bottom:242.667200pt;}
.y4a{bottom:243.146569pt;}
.y99{bottom:244.586569pt;}
.y19a{bottom:245.706568pt;}
.yf8{bottom:246.506568pt;}
.y170{bottom:248.106567pt;}
.y149{bottom:255.146565pt;}
.yf7{bottom:258.826563pt;}
.y22{bottom:258.986563pt;}
.y83{bottom:259.786563pt;}
.y49{bottom:259.946563pt;}
.y98{bottom:262.986561pt;}
.yf5{bottom:270.826558pt;}
.yf6{bottom:270.986558pt;}
.y198{bottom:272.106558pt;}
.y16f{bottom:273.386557pt;}
.y148{bottom:273.546557pt;}
.y48{bottom:276.746556pt;}
.y21{bottom:277.386556pt;}
.y82{bottom:278.186555pt;}
.y97{bottom:280.266555pt;}
.y12e{bottom:281.386554pt;}
.yf4{bottom:283.306553pt;}
.y197{bottom:289.706551pt;}
.y147{bottom:291.946550pt;}
.y96{bottom:292.586550pt;}
.y47{bottom:293.706549pt;}
.y81{bottom:294.506549pt;}
.yf2{bottom:295.466548pt;}
.yf3{bottom:295.626548pt;}
.y20{bottom:296.586548pt;}
.ya2{bottom:298.347200pt;}
.y16e{bottom:298.666547pt;}
.y12d{bottom:299.786547pt;}
.y199{bottom:299.946547pt;}
.y196{bottom:307.466544pt;}
.yf1{bottom:307.946543pt;}
.y146{bottom:310.346543pt;}
.y46{bottom:310.506542pt;}
.y80{bottom:312.906542pt;}
.y12c{bottom:318.186539pt;}
.yef{bottom:320.746538pt;}
.y1f{bottom:323.146537pt;}
.y195{bottom:325.226537pt;}
.y45{bottom:328.106535pt;}
.y16d{bottom:328.586535pt;}
.y7f{bottom:331.306534pt;}
.yee{bottom:333.066533pt;}
.y145{bottom:333.546533pt;}
.y12b{bottom:336.586532pt;}
.y44{bottom:346.026528pt;}
.yed{bottom:346.186528pt;}
.y1e{bottom:349.706527pt;}
.y16c{bottom:349.866527pt;}
.y194{bottom:351.466526pt;}
.y12a{bottom:354.986525pt;}
.yf0{bottom:358.186523pt;}
.yec{bottom:358.346523pt;}
.y7e{bottom:368.106519pt;}
.y193{bottom:369.226519pt;}
.y43{bottom:370.506518pt;}
.yeb{bottom:370.666518pt;}
.y16b{bottom:370.986518pt;}
.y144{bottom:373.226517pt;}
.y129{bottom:373.386517pt;}
.y1d{bottom:376.266516pt;}
.ye7{bottom:383.626513pt;}
.y7d{bottom:386.506512pt;}
.y192{bottom:386.986512pt;}
.y143{bottom:391.626510pt;}
.y128{bottom:391.786510pt;}
.ya4{bottom:394.347200pt;}
.y42{bottom:395.146509pt;}
.ye6{bottom:395.946508pt;}
.y16a{bottom:400.906506pt;}
.y1c{bottom:402.826506pt;}
.y191{bottom:404.586505pt;}
.y7c{bottom:404.906505pt;}
.ye9{bottom:407.946503pt;}
.ye5{bottom:408.106503pt;}
.y142{bottom:410.026503pt;}
.y127{bottom:410.186503pt;}
.y41{bottom:419.626499pt;}
.ye8{bottom:420.266499pt;}
.ye4{bottom:420.426498pt;}
.y169{bottom:422.186498pt;}
.y190{bottom:422.346498pt;}
.y7b{bottom:423.306497pt;}
.y141{bottom:428.426495pt;}
.y126{bottom:428.586495pt;}
.y1b{bottom:429.226495pt;}
.yea{bottom:432.586494pt;}
.ye3{bottom:432.746494pt;}
.y7a{bottom:441.706490pt;}
.y40{bottom:444.106489pt;}
.ye1{bottom:445.386489pt;}
.ye2{bottom:445.546488pt;}
.y140{bottom:446.826488pt;}
.y125{bottom:446.986488pt;}
.y168{bottom:447.466488pt;}
.y18f{bottom:448.746487pt;}
.y1a{bottom:455.786484pt;}
.ye0{bottom:457.866484pt;}
.y79{bottom:460.106483pt;}
.y13f{bottom:465.226481pt;}
.y124{bottom:465.386481pt;}
.y18e{bottom:466.346480pt;}
.y3f{bottom:468.746479pt;}
.ydf{bottom:470.186479pt;}
.y167{bottom:477.386476pt;}
.y78{bottom:478.506475pt;}
.y19{bottom:482.346474pt;}
.y13e{bottom:483.626473pt;}
.y123{bottom:483.786473pt;}
.ya0{bottom:490.347200pt;}
.y18d{bottom:492.746470pt;}
.y3e{bottom:493.226469pt;}
.ydd{bottom:494.506469pt;}
.yde{bottom:494.666469pt;}
.y77{bottom:496.906468pt;}
.y13d{bottom:502.026466pt;}
.y122{bottom:502.186466pt;}
.y166{bottom:502.666466pt;}
.ydc{bottom:506.986464pt;}
.y18{bottom:508.906463pt;}
.y18c{bottom:510.506462pt;}
.y76{bottom:515.306461pt;}
.y3d{bottom:517.706460pt;}
.yda{bottom:518.986459pt;}
.ydb{bottom:519.146459pt;}
.y13c{bottom:520.426458pt;}
.y121{bottom:520.586458pt;}
.y165{bottom:523.786457pt;}
.yd9{bottom:531.466454pt;}
.y75{bottom:533.706453pt;}
.y17{bottom:535.466452pt;}
.y18b{bottom:536.906452pt;}
.y13b{bottom:538.826451pt;}
.y120{bottom:538.986451pt;}
.y3c{bottom:542.186450pt;}
.yd7{bottom:543.466449pt;}
.yd8{bottom:543.626449pt;}
.y74{bottom:552.106446pt;}
.y164{bottom:554.186445pt;}
.y18a{bottom:554.506445pt;}
.yd6{bottom:555.946444pt;}
.y13a{bottom:557.226444pt;}
.y11f{bottom:557.386444pt;}
.y16{bottom:562.026442pt;}
.y3b{bottom:566.826440pt;}
.yd4{bottom:568.266439pt;}
.y73{bottom:570.506438pt;}
.y189{bottom:572.266438pt;}
.y95{bottom:573.546437pt;}
.y163{bottom:575.466436pt;}
.y139{bottom:575.626436pt;}
.y11e{bottom:575.786436pt;}
.yd3{bottom:580.586434pt;}
.y15{bottom:588.586431pt;}
.y72{bottom:588.906431pt;}
.y3a{bottom:591.306430pt;}
.y94{bottom:591.946430pt;}
.yd2{bottom:592.746430pt;}
.y138{bottom:594.026429pt;}
.y11d{bottom:594.186429pt;}
.y188{bottom:598.666427pt;}
.yd5{bottom:604.906425pt;}
.yd1{bottom:605.066425pt;}
.y162{bottom:605.866424pt;}
.y71{bottom:607.306424pt;}
.y93{bottom:610.346423pt;}
.y137{bottom:612.426422pt;}
.y14{bottom:615.146421pt;}
.y39{bottom:615.786420pt;}
.y187{bottom:616.266420pt;}
.yd0{bottom:617.386420pt;}
.y11c{bottom:617.546420pt;}
.y70{bottom:625.706416pt;}
.y161{bottom:627.146416pt;}
.y92{bottom:628.746415pt;}
.yce{bottom:630.026415pt;}
.ycf{bottom:630.186415pt;}
.y136{bottom:630.826414pt;}
.y38{bottom:640.426410pt;}
.y13{bottom:641.706410pt;}
.ycd{bottom:642.506410pt;}
.y6f{bottom:644.106409pt;}
.y15f{bottom:644.266409pt;}
.y186{bottom:646.186408pt;}
.y91{bottom:647.146408pt;}
.y160{bottom:648.266407pt;}
.y135{bottom:649.226407pt;}
.ycb{bottom:654.666405pt;}
.ycc{bottom:654.826405pt;}
.y11b{bottom:657.226404pt;}
.y6e{bottom:662.506402pt;}
.y37{bottom:664.906401pt;}
.y90{bottom:665.546400pt;}
.yca{bottom:666.986400pt;}
.y185{bottom:667.466400pt;}
.y12{bottom:668.266399pt;}
.y15e{bottom:669.546399pt;}
.y134{bottom:672.426398pt;}
.y11a{bottom:675.626396pt;}
.yc8{bottom:679.146395pt;}
.yc9{bottom:679.306395pt;}
.y6d{bottom:680.906394pt;}
.y8f{bottom:683.946393pt;}
.y36{bottom:689.386391pt;}
.yc7{bottom:691.626390pt;}
.y119{bottom:694.026389pt;}
.y11{bottom:694.826389pt;}
.y184{bottom:697.386388pt;}
.y15d{bottom:699.946387pt;}
.y6c{bottom:703.466385pt;}
.yc5{bottom:703.626385pt;}
.yc6{bottom:703.786385pt;}
.y8e{bottom:706.666384pt;}
.y133{bottom:708.106383pt;}
.y118{bottom:712.426382pt;}
.y35{bottom:714.026381pt;}
.yc4{bottom:716.106380pt;}
.y15c{bottom:721.226378pt;}
.y10{bottom:721.386378pt;}
.y183{bottom:727.306376pt;}
.yc2{bottom:728.426375pt;}
.y117{bottom:730.826374pt;}
.y34{bottom:738.506371pt;}
.yc1{bottom:740.586370pt;}
.y6b{bottom:740.746370pt;}
.y8d{bottom:743.946369pt;}
.yf{bottom:747.946367pt;}
.y182{bottom:748.586367pt;}
.y116{bottom:749.226367pt;}
.y15b{bottom:751.626366pt;}
.yc0{bottom:752.906366pt;}
.y8c{bottom:761.226362pt;}
.y33{bottom:762.986361pt;}
.y6a{bottom:763.946361pt;}
.yc3{bottom:765.066361pt;}
.ybf{bottom:765.226361pt;}
.y115{bottom:767.626360pt;}
.y15a{bottom:772.746358pt;}
.y8b{bottom:773.706357pt;}
.ye{bottom:774.506357pt;}
.ybe{bottom:777.386356pt;}
.y181{bottom:778.506355pt;}
.y114{bottom:786.026352pt;}
.y5e{bottom:786.826352pt;}
.y32{bottom:787.626352pt;}
.ybc{bottom:790.186351pt;}
.ybd{bottom:790.346351pt;}
.y180{bottom:799.786347pt;}
.yd{bottom:800.266347pt;}
.ybb{bottom:802.666346pt;}
.y159{bottom:803.146345pt;}
.y69{bottom:803.626345pt;}
.y113{bottom:804.426345pt;}
.y5d{bottom:805.226345pt;}
.y31{bottom:812.106342pt;}
.yb9{bottom:814.666341pt;}
.yba{bottom:814.826341pt;}
.yc{bottom:818.666339pt;}
.y68{bottom:822.026338pt;}
.y112{bottom:822.826338pt;}
.y5c{bottom:823.626337pt;}
.yb8{bottom:827.146336pt;}
.y17f{bottom:829.546335pt;}
.y158{bottom:833.546333pt;}
.y30{bottom:836.586332pt;}
.yb{bottom:837.066332pt;}
.yb6{bottom:839.306331pt;}
.yb7{bottom:839.466331pt;}
.y67{bottom:840.426330pt;}
.y111{bottom:841.226330pt;}
.y5b{bottom:842.026330pt;}
.yb5{bottom:851.626326pt;}
.y157{bottom:854.826325pt;}
.ya{bottom:855.466324pt;}
.y66{bottom:858.826323pt;}
.y110{bottom:859.466323pt;}
.y5a{bottom:860.426322pt;}
.y2f{bottom:861.226322pt;}
.yb3{bottom:863.786321pt;}
.yb4{bottom:863.946321pt;}
.y4{bottom:875.306317pt;}
.yb2{bottom:876.266316pt;}
.y65{bottom:877.226316pt;}
.y10f{bottom:877.866316pt;}
.y59{bottom:878.826315pt;}
.y156{bottom:885.226313pt;}
.y2e{bottom:885.706312pt;}
.y9{bottom:886.506312pt;}
.yb0{bottom:888.426311pt;}
.y17e{bottom:889.386311pt;}
.y3{bottom:889.706311pt;}
.y64{bottom:895.626308pt;}
.y10e{bottom:896.266308pt;}
.y58{bottom:897.226308pt;}
.yaf{bottom:900.746306pt;}
.y8{bottom:905.066305pt;}
.y155{bottom:906.506304pt;}
.y2d{bottom:910.186303pt;}
.y17d{bottom:910.666302pt;}
.yae{bottom:913.066301pt;}
.y63{bottom:914.026301pt;}
.y10d{bottom:914.666301pt;}
.y57{bottom:915.626300pt;}
.yb1{bottom:925.066297pt;}
.yad{bottom:925.226297pt;}
.y7{bottom:926.506296pt;}
.y62{bottom:932.426294pt;}
.y10c{bottom:933.066293pt;}
.y56{bottom:934.026293pt;}
.y2c{bottom:934.826293pt;}
.y154{bottom:936.906292pt;}
.yac{bottom:937.546292pt;}
.y17c{bottom:940.586290pt;}
.yab{bottom:949.706287pt;}
.y61{bottom:950.826286pt;}
.y10b{bottom:951.466286pt;}
.y55{bottom:952.426286pt;}
.y6{bottom:955.946284pt;}
.yaa{bottom:958.826283pt;}
.y2b{bottom:959.306283pt;}
.y17b{bottom:961.866282pt;}
.ya9{bottom:968.106279pt;}
.y60{bottom:969.226279pt;}
.y153{bottom:969.546279pt;}
.y10a{bottom:969.866279pt;}
.y54{bottom:970.826278pt;}
.y5{bottom:977.226276pt;}
.ya8{bottom:980.106275pt;}
.y17a{bottom:983.146273pt;}
.y2a{bottom:983.786273pt;}
.y109{bottom:988.266271pt;}
.y53{bottom:989.226271pt;}
.y5f{bottom:992.586270pt;}
.y152{bottom:995.146269pt;}
.y2{bottom:995.626268pt;}
.ya7{bottom:997.546268pt;}
.y29{bottom:1008.426263pt;}
.y108{bottom:1010.986262pt;}
.y179{bottom:1013.066261pt;}
.y151{bottom:1013.546261pt;}
.ya6{bottom:1013.866261pt;}
.y1{bottom:1014.826261pt;}
.hc{height:13.440000pt;}
.h1a{height:17.760000pt;}
.hd{height:32.249987pt;}
.h15{height:42.063421pt;}
.hf{height:42.084358pt;}
.h10{height:42.574983pt;}
.h16{height:43.214983pt;}
.h9{height:53.534979pt;}
.h19{height:53.819978pt;}
.h18{height:55.458728pt;}
.h7{height:57.787477pt;}
.h1{height:61.409975pt;}
.h2{height:62.812475pt;}
.ha{height:64.499974pt;}
.h5{height:66.749973pt;}
.he{height:69.369972pt;}
.h3{height:78.097469pt;}
.h4{height:83.188092pt;}
.h6{height:85.784966pt;}
.h8{height:88.777464pt;}
.h14{height:90.724339pt;}
.h12{height:91.364338pt;}
.h13{height:91.854963pt;}
.h17{height:92.004338pt;}
.h11{height:92.494963pt;}
.hb{height:136.412445pt;}
.h0{height:1122.666667pt;}
.w4{width:5.280000pt;}
.w8{width:5.920000pt;}
.w6{width:8.000000pt;}
.w2{width:8.640000pt;}
.w3{width:9.120000pt;}
.w7{width:10.080000pt;}
.w1{width:14.400000pt;}
.w5{width:16.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.399962pt;}
.x31{left:102.399959pt;}
.x11{left:110.398511pt;}
.x26{left:113.599955pt;}
.x12{left:118.399118pt;}
.x13{left:142.398221pt;}
.x2d{left:149.599909pt;}
.x34{left:157.439937pt;}
.x7{left:192.159923pt;}
.x2{left:194.399922pt;}
.x27{left:209.599826pt;}
.x3{left:221.919798pt;}
.x28{left:245.599744pt;}
.x15{left:247.999890pt;}
.xd{left:285.110139pt;}
.x17{left:287.039885pt;}
.x29{left:293.599680pt;}
.x36{left:301.760000pt;}
.xf{left:306.399867pt;}
.xa{left:311.360223pt;}
.x6{left:313.759879pt;}
.xc{left:315.200850pt;}
.x32{left:316.319873pt;}
.x9{left:320.960125pt;}
.x4{left:334.559866pt;}
.x2a{left:341.599616pt;}
.x5{left:356.479888pt;}
.xb{left:368.640085pt;}
.xe{left:370.719811pt;}
.x2b{left:377.599534pt;}
.x8{left:396.800154pt;}
.x16{left:401.439912pt;}
.x1f{left:402.880000pt;}
.x20{left:410.880000pt;}
.x21{left:425.280000pt;}
.x10{left:487.039805pt;}
.x2c{left:497.599440pt;}
.x1a{left:498.880000pt;}
.x1b{left:508.000000pt;}
.x18{left:510.880000pt;}
.x1c{left:513.280000pt;}
.x19{left:525.280000pt;}
.x1d{left:529.280000pt;}
.x1e{left:543.680000pt;}
.x14{left:555.039840pt;}
.x35{left:603.680000pt;}
.x22{left:618.880000pt;}
.x33{left:622.399272pt;}
.x23{left:624.160000pt;}
.x2e{left:629.599781pt;}
.x24{left:632.160000pt;}
.x25{left:646.560000pt;}
.x2f{left:689.599750pt;}
.x30{left:698.559721pt;}
}




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