
    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_068c0f6eafbcaaa05cf0b708.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_968ac4e7b72714d61da23d27.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d2d8771741d447e3094b8ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8bcbe5be1a1cdecc8d1737df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea97dfdf0b36502190af9060.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_47072a449a925537c13ee08a.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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6f0396b698fe1689078f2528.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_99da2d7d5885dbd9c3effef5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;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);}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-63.540000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v4{vertical-align:69.120000px;}
.ls29{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.259800px;}
.ls1e{letter-spacing:-0.253200px;}
.ls15{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.100200px;}
.ls10{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls24{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls2b{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.311760px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.620000px;}
.ls2d{letter-spacing:6.660000px;}
.ls27{letter-spacing:11.466720px;}
.ls1a{letter-spacing:13.860000px;}
.ls5{letter-spacing:16.740000px;}
.ls22{letter-spacing:18.180000px;}
.ls26{letter-spacing:41.706720px;}
.lsc{letter-spacing:46.260000px;}
.ls2c{letter-spacing:54.180000px;}
.lse{letter-spacing:58.266720px;}
.ls1b{letter-spacing:80.820000px;}
.ls0{letter-spacing:122.580000px;}
.ls18{letter-spacing:201.180000px;}
.ls21{letter-spacing:255.756000px;}
.ls25{letter-spacing:283.284000px;}
.ls6{letter-spacing:447.996000px;}
.ls3{letter-spacing:532.956000px;}
.ls1c{letter-spacing:1379.856000px;}
.ls20{letter-spacing:1500.096000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.093600px;}
.wsb{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.839800px;}
.wsc{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.686800px;}
.ws10{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws5{word-spacing:-14.220000px;}
.wse{word-spacing:-13.716000px;}
.wsd{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws11{word-spacing:-9.720000px;}
.ws14{word-spacing:-9.711360px;}
.ws3{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
._a{margin-left:-1.195200px;}
._0{width:1.082640px;}
._1{width:2.096880px;}
._1c{width:3.638400px;}
._2{width:5.438160px;}
._12{width:7.027920px;}
._8{width:8.031600px;}
._7{width:9.474000px;}
._5{width:10.510800px;}
._17{width:11.812320px;}
._16{width:12.988080px;}
._10{width:16.114320px;}
._11{width:17.441760px;}
._23{width:18.936960px;}
._20{width:20.103120px;}
._f{width:21.625200px;}
._e{width:22.702800px;}
._1d{width:23.968800px;}
._c{width:25.756560px;}
._d{width:26.864160px;}
._18{width:28.062240px;}
._4{width:29.096160px;}
._22{width:30.410640px;}
._1b{width:31.672800px;}
._1a{width:32.808240px;}
._9{width:34.433280px;}
._15{width:35.478960px;}
._b{width:37.051200px;}
._25{width:38.454960px;}
._6{width:39.700800px;}
._2d{width:40.935600px;}
._19{width:41.951520px;}
._3{width:43.565040px;}
._28{width:45.769200px;}
._29{width:46.974000px;}
._2c{width:48.490800px;}
._41{width:49.713360px;}
._40{width:51.639600px;}
._1f{width:52.701360px;}
._2e{width:54.082800px;}
._21{width:55.151520px;}
._24{width:57.063840px;}
._3f{width:58.392480px;}
._1e{width:59.394480px;}
._3c{width:60.969120px;}
._26{width:63.159360px;}
._31{width:64.278720px;}
._3b{width:66.625440px;}
._3e{width:67.827600px;}
._46{width:70.390320px;}
._14{width:71.652240px;}
._2b{width:76.253760px;}
._38{width:78.814320px;}
._30{width:80.257680px;}
._34{width:83.360160px;}
._2f{width:85.576320px;}
._44{width:97.468560px;}
._36{width:101.523840px;}
._37{width:102.643440px;}
._2a{width:106.611840px;}
._32{width:125.870640px;}
._33{width:143.244720px;}
._3d{width:152.985600px;}
._39{width:160.216560px;}
._27{width:201.036000px;}
._3a{width:206.948880px;}
._35{width:242.352960px;}
._43{width:302.863680px;}
._47{width:309.258000px;}
._13{width:352.349040px;}
._45{width:720.340080px;}
._42{width:906.858000px;}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.880000px;}
.y61{bottom:3.240000px;}
.y145{bottom:3.285000px;}
.y15a{bottom:5.400000px;}
.y14c{bottom:5.580000px;}
.yf8{bottom:5.940000px;}
.y11c{bottom:7.740000px;}
.yff{bottom:11.880000px;}
.y151{bottom:11.925000px;}
.y5e{bottom:18.540000px;}
.y5a{bottom:19.260000px;}
.y63{bottom:20.340000px;}
.y157{bottom:20.514000px;}
.y60{bottom:20.520000px;}
.y100{bottom:20.550000px;}
.y6c{bottom:20.565000px;}
.y5d{bottom:34.020000px;}
.y59{bottom:34.740000px;}
.y128{bottom:37.620000px;}
.y12b{bottom:37.650000px;}
.y156{bottom:37.794000px;}
.y122{bottom:37.800000px;}
.y58{bottom:50.220000px;}
.y127{bottom:54.900000px;}
.y124{bottom:54.945000px;}
.y121{bottom:55.080000px;}
.y126{bottom:72.180000px;}
.y120{bottom:72.360000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y75{bottom:120.996000px;}
.yd0{bottom:122.076000px;}
.y17f{bottom:124.596000px;}
.yef{bottom:125.676000px;}
.y17e{bottom:126.216000px;}
.y95{bottom:127.656000px;}
.y13a{bottom:128.376000px;}
.y30{bottom:128.916000px;}
.y56{bottom:130.176000px;}
.y117{bottom:133.416000px;}
.y155{bottom:134.136000px;}
.y74{bottom:138.276000px;}
.ycf{bottom:139.356000px;}
.y3c{bottom:141.876000px;}
.yee{bottom:142.956000px;}
.y17d{bottom:143.496000px;}
.y2f{bottom:144.936000px;}
.y139{bottom:145.656000px;}
.y55{bottom:147.276000px;}
.y116{bottom:150.690000px;}
.y73{bottom:155.550000px;}
.yce{bottom:156.630000px;}
.y2e{bottom:156.810000px;}
.y3b{bottom:159.150000px;}
.yed{bottom:160.230000px;}
.y17c{bottom:160.590000px;}
.y94{bottom:162.210000px;}
.y138{bottom:162.930000px;}
.y54{bottom:164.550000px;}
.y115{bottom:167.970000px;}
.y72{bottom:172.830000px;}
.ycd{bottom:173.730000px;}
.y3a{bottom:176.430000px;}
.yec{bottom:177.510000px;}
.y17b{bottom:177.870000px;}
.y93{bottom:179.490000px;}
.y137{bottom:180.210000px;}
.y53{bottom:181.830000px;}
.y114{bottom:185.070000px;}
.y154{bottom:186.690000px;}
.y11a{bottom:189.930000px;}
.y71{bottom:190.110000px;}
.ycc{bottom:191.010000px;}
.y39{bottom:193.710000px;}
.yeb{bottom:194.610000px;}
.y17a{bottom:195.150000px;}
.y92{bottom:196.770000px;}
.y136{bottom:197.490000px;}
.y52{bottom:199.110000px;}
.y113{bottom:202.350000px;}
.y70{bottom:207.390000px;}
.ycb{bottom:208.290000px;}
.y38{bottom:210.990000px;}
.yea{bottom:211.890000px;}
.y179{bottom:212.430000px;}
.y91{bottom:214.050000px;}
.y135{bottom:214.590000px;}
.y119{bottom:215.850000px;}
.y51{bottom:216.390000px;}
.y112{bottom:219.630000px;}
.y153{bottom:221.970000px;}
.y6f{bottom:224.490000px;}
.yca{bottom:225.570000px;}
.y37{bottom:228.090000px;}
.ye9{bottom:229.170000px;}
.y178{bottom:229.710000px;}
.y90{bottom:231.150000px;}
.y134{bottom:231.870000px;}
.y50{bottom:233.670000px;}
.y111{bottom:236.910000px;}
.y118{bottom:238.530000px;}
.y6e{bottom:241.770000px;}
.yc9{bottom:242.850000px;}
.y36{bottom:245.370000px;}
.ye8{bottom:246.450000px;}
.y177{bottom:246.990000px;}
.y8f{bottom:248.430000px;}
.y2d{bottom:248.790000px;}
.y133{bottom:249.150000px;}
.y4f{bottom:250.770000px;}
.y110{bottom:254.190000px;}
.y152{bottom:257.070000px;}
.y6d{bottom:259.050000px;}
.yc8{bottom:260.130000px;}
.y35{bottom:262.650000px;}
.ye7{bottom:263.730000px;}
.y176{bottom:264.090000px;}
.y2c{bottom:265.710000px;}
.y132{bottom:266.430000px;}
.y4e{bottom:268.050000px;}
.yb6{bottom:270.930000px;}
.y10f{bottom:271.470000px;}
.y6b{bottom:273.810000px;}
.yc7{bottom:277.230000px;}
.y150{bottom:279.570000px;}
.y34{bottom:279.930000px;}
.y175{bottom:281.370000px;}
.y8e{bottom:282.990000px;}
.y131{bottom:283.710000px;}
.y4d{bottom:285.330000px;}
.yb5{bottom:288.255000px;}
.y10e{bottom:288.615000px;}
.yc6{bottom:294.555000px;}
.y2b{bottom:297.255000px;}
.ye6{bottom:298.155000px;}
.y174{bottom:298.695000px;}
.y8d{bottom:300.315000px;}
.y130{bottom:301.035000px;}
.y4c{bottom:302.655000px;}
.yb4{bottom:305.355000px;}
.y10d{bottom:305.895000px;}
.y6a{bottom:309.135000px;}
.yc5{bottom:311.835000px;}
.y2a{bottom:314.535000px;}
.y14f{bottom:314.895000px;}
.ye5{bottom:315.435000px;}
.y173{bottom:315.975000px;}
.y8c{bottom:317.415000px;}
.y12f{bottom:318.135000px;}
.y4b{bottom:319.935000px;}
.yb3{bottom:322.635000px;}
.y10c{bottom:323.175000px;}
.yc4{bottom:329.115000px;}
.y29{bottom:331.635000px;}
.ye4{bottom:332.715000px;}
.y12e{bottom:332.895000px;}
.y172{bottom:333.255000px;}
.y8b{bottom:334.695000px;}
.y4a{bottom:337.215000px;}
.y14e{bottom:337.395000px;}
.yb2{bottom:339.915000px;}
.y10b{bottom:340.455000px;}
.y69{bottom:344.415000px;}
.yc3{bottom:346.395000px;}
.y33{bottom:348.915000px;}
.ye3{bottom:349.995000px;}
.y171{bottom:350.355000px;}
.y8a{bottom:351.975000px;}
.y49{bottom:354.315000px;}
.yb1{bottom:357.195000px;}
.y10a{bottom:357.735000px;}
.y14d{bottom:359.895000px;}
.yc2{bottom:363.495000px;}
.y28{bottom:366.195000px;}
.ye2{bottom:367.275000px;}
.y170{bottom:367.635000px;}
.y89{bottom:369.255000px;}
.yb0{bottom:374.475000px;}
.y109{bottom:374.835000px;}
.y68{bottom:379.515000px;}
.yc1{bottom:380.775000px;}
.y14b{bottom:382.395000px;}
.y27{bottom:383.475000px;}
.ye1{bottom:384.555000px;}
.y16f{bottom:384.915000px;}
.y88{bottom:386.535000px;}
.yaf{bottom:391.755000px;}
.y108{bottom:392.115000px;}
.y48{bottom:392.655000px;}
.yc0{bottom:398.055000px;}
.y26{bottom:400.755000px;}
.ye0{bottom:401.655000px;}
.y16e{bottom:402.195000px;}
.y87{bottom:403.815000px;}
.y14a{bottom:404.895000px;}
.yae{bottom:408.855000px;}
.y107{bottom:409.395000px;}
.y47{bottom:409.935000px;}
.y67{bottom:414.795000px;}
.ybf{bottom:415.335000px;}
.y25{bottom:417.855000px;}
.ydf{bottom:418.935000px;}
.y16d{bottom:419.475000px;}
.y12d{bottom:420.015000px;}
.y86{bottom:420.915000px;}
.yad{bottom:426.135000px;}
.y106{bottom:426.675000px;}
.y46{bottom:427.215000px;}
.ybe{bottom:429.375000px;}
.y24{bottom:435.135000px;}
.yde{bottom:436.215000px;}
.y16c{bottom:436.755000px;}
.y85{bottom:438.195000px;}
.yac{bottom:443.415000px;}
.y105{bottom:443.955000px;}
.y45{bottom:445.395000px;}
.y66{bottom:450.075000px;}
.y23{bottom:452.415000px;}
.ydd{bottom:453.495000px;}
.y16b{bottom:453.855000px;}
.y84{bottom:455.475000px;}
.yab{bottom:460.695000px;}
.y104{bottom:461.235000px;}
.y44{bottom:462.675000px;}
.y22{bottom:469.695000px;}
.ydc{bottom:470.775000px;}
.y16a{bottom:471.135000px;}
.y83{bottom:472.755000px;}
.yaa{bottom:477.975000px;}
.y103{bottom:478.335000px;}
.y43{bottom:481.035000px;}
.y65{bottom:485.355000px;}
.y21{bottom:486.975000px;}
.ydb{bottom:487.875000px;}
.y169{bottom:488.415000px;}
.y12c{bottom:489.675000px;}
.y82{bottom:490.035000px;}
.ya9{bottom:495.075000px;}
.y149{bottom:495.255000px;}
.y102{bottom:495.615000px;}
.y42{bottom:498.315000px;}
.y20{bottom:504.255000px;}
.yda{bottom:505.155000px;}
.y168{bottom:505.695000px;}
.y81{bottom:507.315000px;}
.ya8{bottom:512.355000px;}
.y101{bottom:512.895000px;}
.y41{bottom:516.675000px;}
.y64{bottom:520.635000px;}
.y1f{bottom:521.355000px;}
.yd9{bottom:522.435000px;}
.y167{bottom:522.975000px;}
.y80{bottom:524.415000px;}
.yfe{bottom:527.655000px;}
.ya7{bottom:529.635000px;}
.y40{bottom:533.955000px;}
.y1e{bottom:538.635000px;}
.yd8{bottom:539.715000px;}
.y166{bottom:540.255000px;}
.y7f{bottom:541.695000px;}
.y12a{bottom:542.235000px;}
.ya6{bottom:546.915000px;}
.y1d{bottom:555.945000px;}
.yd7{bottom:557.025000px;}
.y165{bottom:557.385000px;}
.y7e{bottom:559.005000px;}
.yfd{bottom:562.965000px;}
.ya5{bottom:564.225000px;}
.y1c{bottom:573.225000px;}
.yd6{bottom:574.305000px;}
.y164{bottom:574.665000px;}
.y7d{bottom:576.285000px;}
.yfc{bottom:580.965000px;}
.ya4{bottom:581.505000px;}
.y1b{bottom:590.505000px;}
.y62{bottom:591.045000px;}
.yd5{bottom:591.405000px;}
.y163{bottom:591.945000px;}
.y7c{bottom:593.565000px;}
.y129{bottom:594.645000px;}
.ya3{bottom:598.605000px;}
.y148{bottom:598.785000px;}
.yfb{bottom:598.965000px;}
.y1a{bottom:607.785000px;}
.yd4{bottom:608.685000px;}
.y162{bottom:609.225000px;}
.y7b{bottom:610.845000px;}
.ya2{bottom:615.885000px;}
.yfa{bottom:616.965000px;}
.y19{bottom:624.885000px;}
.yd3{bottom:625.965000px;}
.y5f{bottom:626.325000px;}
.y161{bottom:626.505000px;}
.y7a{bottom:627.945000px;}
.ya1{bottom:633.165000px;}
.yf9{bottom:634.965000px;}
.y18{bottom:642.165000px;}
.yd2{bottom:643.245000px;}
.y160{bottom:643.785000px;}
.y79{bottom:645.225000px;}
.ya0{bottom:650.445000px;}
.yf7{bottom:652.965000px;}
.y17{bottom:659.445000px;}
.y15f{bottom:660.885000px;}
.y57{bottom:661.605000px;}
.y78{bottom:662.505000px;}
.yd1{bottom:665.925000px;}
.y9f{bottom:667.725000px;}
.y16{bottom:676.725000px;}
.y15e{bottom:678.165000px;}
.yf6{bottom:679.605000px;}
.y77{bottom:679.785000px;}
.y125{bottom:681.765000px;}
.y147{bottom:685.005000px;}
.y76{bottom:693.825000px;}
.y15{bottom:694.005000px;}
.y15d{bottom:695.445000px;}
.yf5{bottom:696.885000px;}
.ybd{bottom:697.605000px;}
.y9e{bottom:702.105000px;}
.y5b{bottom:708.945000px;}
.y32{bottom:711.105000px;}
.y15c{bottom:712.725000px;}
.yf4{bottom:714.165000px;}
.ybc{bottom:714.885000px;}
.y9d{bottom:719.385000px;}
.y14{bottom:728.385000px;}
.y15b{bottom:730.005000px;}
.yf3{bottom:731.265000px;}
.ybb{bottom:732.165000px;}
.y9c{bottom:736.665000px;}
.y159{bottom:744.765000px;}
.y13{bottom:745.665000px;}
.yf2{bottom:748.545000px;}
.yba{bottom:749.265000px;}
.y9b{bottom:753.945000px;}
.y12{bottom:762.945000px;}
.yf1{bottom:765.825000px;}
.yb9{bottom:766.545000px;}
.y158{bottom:767.265000px;}
.y123{bottom:768.705000px;}
.y9a{bottom:771.225000px;}
.y11{bottom:780.225000px;}
.yf0{bottom:783.105000px;}
.yb8{bottom:783.825000px;}
.y146{bottom:785.985000px;}
.y99{bottom:788.505000px;}
.y10{bottom:797.505000px;}
.yb7{bottom:797.865000px;}
.y144{bottom:803.985000px;}
.y98{bottom:805.605000px;}
.yf{bottom:814.650000px;}
.y143{bottom:822.030000px;}
.y97{bottom:822.930000px;}
.ye{bottom:831.930000px;}
.y96{bottom:836.970000px;}
.y11f{bottom:838.410000px;}
.y142{bottom:840.030000px;}
.yd{bottom:849.210000px;}
.y141{bottom:858.030000px;}
.yc{bottom:866.490000px;}
.y140{bottom:876.030000px;}
.yb{bottom:883.770000px;}
.y13f{bottom:894.030000px;}
.ya{bottom:901.050000px;}
.y13e{bottom:912.030000px;}
.y9{bottom:918.150000px;}
.y11e{bottom:925.530000px;}
.y8{bottom:935.430000px;}
.y13d{bottom:947.310000px;}
.y7{bottom:952.710000px;}
.y11d{bottom:960.810000px;}
.y13c{bottom:965.310000px;}
.y6{bottom:969.990000px;}
.y13b{bottom:983.310000px;}
.y5{bottom:987.270000px;}
.y11b{bottom:995.910000px;}
.y4{bottom:1004.550000px;}
.y31{bottom:1021.650000px;}
.y3{bottom:1038.930000px;}
.y3f{bottom:1080.180000px;}
.y3e{bottom:1100.160000px;}
.y3d{bottom:1119.960000px;}
.he{height:15.480000px;}
.h1e{height:17.100000px;}
.h16{height:17.280000px;}
.h1f{height:17.316000px;}
.h20{height:21.600000px;}
.h17{height:21.780000px;}
.h15{height:22.680000px;}
.h11{height:34.380000px;}
.h12{height:34.416000px;}
.h10{height:34.560000px;}
.h13{height:34.596000px;}
.hb{height:43.215117px;}
.hf{height:46.620000px;}
.h5{height:49.255313px;}
.h8{height:51.519375px;}
.h1b{height:51.696000px;}
.h1c{height:51.840000px;}
.h6{height:52.998047px;}
.hd{height:54.421875px;}
.h9{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h21{height:59.038594px;}
.h3{height:60.226875px;}
.ha{height:61.423863px;}
.h7{height:62.327813px;}
.hc{height:62.820000px;}
.h1d{height:68.940000px;}
.h19{height:68.976000px;}
.h1{height:70.664062px;}
.h1a{height:86.220000px;}
.h18{height:86.400000px;}
.h14{height:127.771172px;}
.h0{height:1188.000000px;}
.w28{width:37.980000px;}
.w23{width:38.016000px;}
.w1b{width:41.760000px;}
.w1a{width:41.796000px;}
.w20{width:42.516000px;}
.w26{width:45.360000px;}
.w29{width:45.396000px;}
.w24{width:45.540000px;}
.w25{width:45.720000px;}
.w21{width:50.400000px;}
.w27{width:50.616000px;}
.w1e{width:50.760000px;}
.w15{width:51.300000px;}
.w1f{width:51.480000px;}
.w17{width:52.380000px;}
.w1c{width:54.900000px;}
.wf{width:60.516000px;}
.wc{width:72.900000px;}
.w10{width:81.540000px;}
.w3{width:82.656000px;}
.w4{width:82.800000px;}
.wd{width:84.996000px;}
.we{width:85.140000px;}
.w5{width:92.916000px;}
.w6{width:93.060000px;}
.w19{width:95.040000px;}
.w18{width:95.796000px;}
.w9{width:98.640000px;}
.w8{width:98.856000px;}
.w22{width:112.140000px;}
.w2{width:119.520000px;}
.wa{width:121.320000px;}
.wb{width:134.316000px;}
.w14{width:142.956000px;}
.w13{width:158.760000px;}
.w12{width:158.790000px;}
.w7{width:198.210000px;}
.w16{width:243.930000px;}
.w11{width:256.530000px;}
.w1d{width:367.995000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:3.420000px;}
.x14{left:5.940000px;}
.x17{left:7.200000px;}
.x11{left:8.640000px;}
.x1d{left:17.280000px;}
.x12{left:18.900000px;}
.x18{left:22.140000px;}
.x10{left:23.940000px;}
.x26{left:25.020000px;}
.x25{left:26.280000px;}
.x23{left:27.360000px;}
.x21{left:28.440000px;}
.x15{left:30.060000px;}
.x20{left:31.500000px;}
.x24{left:33.300000px;}
.x19{left:35.280000px;}
.x1f{left:37.980000px;}
.x22{left:41.940000px;}
.x1c{left:44.640000px;}
.x32{left:98.676000px;}
.x4a{left:102.095986px;}
.x2{left:106.415986px;}
.xa{left:114.335986px;}
.x3c{left:118.476000px;}
.xd{left:121.896000px;}
.x3{left:128.735986px;}
.x6{left:131.075986px;}
.x57{left:133.415986px;}
.x45{left:146.736000px;}
.x4c{left:149.616000px;}
.x28{left:160.409986px;}
.x9{left:168.689986px;}
.x3d{left:170.490000px;}
.x46{left:202.530000px;}
.x4{left:203.969986px;}
.x33{left:220.890000px;}
.x31{left:236.189986px;}
.xf{left:242.130000px;}
.xc{left:260.669986px;}
.x4d{left:262.470000px;}
.x2f{left:265.169986px;}
.x4b{left:268.769986px;}
.x4e{left:301.215000px;}
.x3b{left:303.914986px;}
.x5{left:319.214986px;}
.x13{left:325.515000px;}
.x44{left:342.794986px;}
.x4f{left:347.475000px;}
.x34{left:355.935000px;}
.x50{left:393.915000px;}
.x16{left:409.035000px;}
.x3e{left:415.155000px;}
.x35{left:429.735000px;}
.x2c{left:439.994986px;}
.x1{left:449.174986px;}
.x27{left:453.854986px;}
.x30{left:458.174986px;}
.x3f{left:468.255000px;}
.x2b{left:472.934986px;}
.x51{left:477.255000px;}
.x7{left:485.174986px;}
.x1a{left:502.665000px;}
.xb{left:512.204986px;}
.x36{left:515.445000px;}
.x52{left:528.585000px;}
.x8{left:539.204986px;}
.x2a{left:563.144986px;}
.x40{left:564.765000px;}
.x47{left:571.245000px;}
.x37{left:589.065000px;}
.x1b{left:596.445000px;}
.x48{left:622.905000px;}
.x53{left:641.445000px;}
.x58{left:647.564986px;}
.x41{left:660.525000px;}
.x38{left:674.925000px;}
.x54{left:680.145000px;}
.x1e{left:696.030000px;}
.x42{left:703.050000px;}
.x49{left:718.350000px;}
.x55{left:726.450000px;}
.x39{left:736.350000px;}
.x43{left:745.530000px;}
.x2e{left:764.249986px;}
.x56{left:772.710000px;}
.x2d{left:827.249986px;}
.x3a{left:833.909986px;}
.x29{left:854.609986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-56.480000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v4{vertical-align:61.440000pt;}
.ls29{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.230933pt;}
.ls1e{letter-spacing:-0.225067pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.089067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls24{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.277120pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls2d{letter-spacing:5.920000pt;}
.ls27{letter-spacing:10.192640pt;}
.ls1a{letter-spacing:12.320000pt;}
.ls5{letter-spacing:14.880000pt;}
.ls22{letter-spacing:16.160000pt;}
.ls26{letter-spacing:37.072640pt;}
.lsc{letter-spacing:41.120000pt;}
.ls2c{letter-spacing:48.160000pt;}
.lse{letter-spacing:51.792640pt;}
.ls1b{letter-spacing:71.840000pt;}
.ls0{letter-spacing:108.960000pt;}
.ls18{letter-spacing:178.826667pt;}
.ls21{letter-spacing:227.338667pt;}
.ls25{letter-spacing:251.808000pt;}
.ls6{letter-spacing:398.218667pt;}
.ls3{letter-spacing:473.738667pt;}
.ls1c{letter-spacing:1226.538667pt;}
.ls20{letter-spacing:1333.418667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.190933pt;}
.wsc{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.054933pt;}
.ws10{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.192000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws11{word-spacing:-8.640000pt;}
.ws14{word-spacing:-8.632320pt;}
.ws3{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
._a{margin-left:-1.062400pt;}
._0{width:0.962347pt;}
._1{width:1.863893pt;}
._1c{width:3.234133pt;}
._2{width:4.833920pt;}
._12{width:6.247040pt;}
._8{width:7.139200pt;}
._7{width:8.421333pt;}
._5{width:9.342933pt;}
._17{width:10.499840pt;}
._16{width:11.544960pt;}
._10{width:14.323840pt;}
._11{width:15.503787pt;}
._23{width:16.832853pt;}
._20{width:17.869440pt;}
._f{width:19.222400pt;}
._e{width:20.180267pt;}
._1d{width:21.305600pt;}
._c{width:22.894720pt;}
._d{width:23.879253pt;}
._18{width:24.944213pt;}
._4{width:25.863253pt;}
._22{width:27.031680pt;}
._1b{width:28.153600pt;}
._1a{width:29.162880pt;}
._9{width:30.607360pt;}
._15{width:31.536853pt;}
._b{width:32.934400pt;}
._25{width:34.182187pt;}
._6{width:35.289600pt;}
._2d{width:36.387200pt;}
._19{width:37.290240pt;}
._3{width:38.724480pt;}
._28{width:40.683733pt;}
._29{width:41.754667pt;}
._2c{width:43.102933pt;}
._41{width:44.189653pt;}
._40{width:45.901867pt;}
._1f{width:46.845653pt;}
._2e{width:48.073600pt;}
._21{width:49.023573pt;}
._24{width:50.723413pt;}
._3f{width:51.904427pt;}
._1e{width:52.795093pt;}
._3c{width:54.194773pt;}
._26{width:56.141653pt;}
._31{width:57.136640pt;}
._3b{width:59.222613pt;}
._3e{width:60.291200pt;}
._46{width:62.569173pt;}
._14{width:63.690880pt;}
._2b{width:67.781120pt;}
._38{width:70.057173pt;}
._30{width:71.340160pt;}
._34{width:74.097920pt;}
._2f{width:76.067840pt;}
._44{width:86.638720pt;}
._36{width:90.243413pt;}
._37{width:91.238613pt;}
._2a{width:94.766080pt;}
._32{width:111.885013pt;}
._33{width:127.328640pt;}
._3d{width:135.987200pt;}
._39{width:142.414720pt;}
._27{width:178.698667pt;}
._3a{width:183.954560pt;}
._35{width:215.424853pt;}
._43{width:269.212160pt;}
._47{width:274.896000pt;}
._13{width:313.199147pt;}
._45{width:640.302293pt;}
._42{width:806.096000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.560000pt;}
.y61{bottom:2.880000pt;}
.y145{bottom:2.920000pt;}
.y15a{bottom:4.800000pt;}
.y14c{bottom:4.960000pt;}
.yf8{bottom:5.280000pt;}
.y11c{bottom:6.880000pt;}
.yff{bottom:10.560000pt;}
.y151{bottom:10.600000pt;}
.y5e{bottom:16.480000pt;}
.y5a{bottom:17.120000pt;}
.y63{bottom:18.080000pt;}
.y157{bottom:18.234667pt;}
.y60{bottom:18.240000pt;}
.y100{bottom:18.266667pt;}
.y6c{bottom:18.280000pt;}
.y5d{bottom:30.240000pt;}
.y59{bottom:30.880000pt;}
.y128{bottom:33.440000pt;}
.y12b{bottom:33.466667pt;}
.y156{bottom:33.594667pt;}
.y122{bottom:33.600000pt;}
.y58{bottom:44.640000pt;}
.y127{bottom:48.800000pt;}
.y124{bottom:48.840000pt;}
.y121{bottom:48.960000pt;}
.y126{bottom:64.160000pt;}
.y120{bottom:64.320000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y75{bottom:107.552000pt;}
.yd0{bottom:108.512000pt;}
.y17f{bottom:110.752000pt;}
.yef{bottom:111.712000pt;}
.y17e{bottom:112.192000pt;}
.y95{bottom:113.472000pt;}
.y13a{bottom:114.112000pt;}
.y30{bottom:114.592000pt;}
.y56{bottom:115.712000pt;}
.y117{bottom:118.592000pt;}
.y155{bottom:119.232000pt;}
.y74{bottom:122.912000pt;}
.ycf{bottom:123.872000pt;}
.y3c{bottom:126.112000pt;}
.yee{bottom:127.072000pt;}
.y17d{bottom:127.552000pt;}
.y2f{bottom:128.832000pt;}
.y139{bottom:129.472000pt;}
.y55{bottom:130.912000pt;}
.y116{bottom:133.946667pt;}
.y73{bottom:138.266667pt;}
.yce{bottom:139.226667pt;}
.y2e{bottom:139.386667pt;}
.y3b{bottom:141.466667pt;}
.yed{bottom:142.426667pt;}
.y17c{bottom:142.746667pt;}
.y94{bottom:144.186667pt;}
.y138{bottom:144.826667pt;}
.y54{bottom:146.266667pt;}
.y115{bottom:149.306667pt;}
.y72{bottom:153.626667pt;}
.ycd{bottom:154.426667pt;}
.y3a{bottom:156.826667pt;}
.yec{bottom:157.786667pt;}
.y17b{bottom:158.106667pt;}
.y93{bottom:159.546667pt;}
.y137{bottom:160.186667pt;}
.y53{bottom:161.626667pt;}
.y114{bottom:164.506667pt;}
.y154{bottom:165.946667pt;}
.y11a{bottom:168.826667pt;}
.y71{bottom:168.986667pt;}
.ycc{bottom:169.786667pt;}
.y39{bottom:172.186667pt;}
.yeb{bottom:172.986667pt;}
.y17a{bottom:173.466667pt;}
.y92{bottom:174.906667pt;}
.y136{bottom:175.546667pt;}
.y52{bottom:176.986667pt;}
.y113{bottom:179.866667pt;}
.y70{bottom:184.346667pt;}
.ycb{bottom:185.146667pt;}
.y38{bottom:187.546667pt;}
.yea{bottom:188.346667pt;}
.y179{bottom:188.826667pt;}
.y91{bottom:190.266667pt;}
.y135{bottom:190.746667pt;}
.y119{bottom:191.866667pt;}
.y51{bottom:192.346667pt;}
.y112{bottom:195.226667pt;}
.y153{bottom:197.306667pt;}
.y6f{bottom:199.546667pt;}
.yca{bottom:200.506667pt;}
.y37{bottom:202.746667pt;}
.ye9{bottom:203.706667pt;}
.y178{bottom:204.186667pt;}
.y90{bottom:205.466667pt;}
.y134{bottom:206.106667pt;}
.y50{bottom:207.706667pt;}
.y111{bottom:210.586667pt;}
.y118{bottom:212.026667pt;}
.y6e{bottom:214.906667pt;}
.yc9{bottom:215.866667pt;}
.y36{bottom:218.106667pt;}
.ye8{bottom:219.066667pt;}
.y177{bottom:219.546667pt;}
.y8f{bottom:220.826667pt;}
.y2d{bottom:221.146667pt;}
.y133{bottom:221.466667pt;}
.y4f{bottom:222.906667pt;}
.y110{bottom:225.946667pt;}
.y152{bottom:228.506667pt;}
.y6d{bottom:230.266667pt;}
.yc8{bottom:231.226667pt;}
.y35{bottom:233.466667pt;}
.ye7{bottom:234.426667pt;}
.y176{bottom:234.746667pt;}
.y2c{bottom:236.186667pt;}
.y132{bottom:236.826667pt;}
.y4e{bottom:238.266667pt;}
.yb6{bottom:240.826667pt;}
.y10f{bottom:241.306667pt;}
.y6b{bottom:243.386667pt;}
.yc7{bottom:246.426667pt;}
.y150{bottom:248.506667pt;}
.y34{bottom:248.826667pt;}
.y175{bottom:250.106667pt;}
.y8e{bottom:251.546667pt;}
.y131{bottom:252.186667pt;}
.y4d{bottom:253.626667pt;}
.yb5{bottom:256.226667pt;}
.y10e{bottom:256.546667pt;}
.yc6{bottom:261.826667pt;}
.y2b{bottom:264.226667pt;}
.ye6{bottom:265.026667pt;}
.y174{bottom:265.506667pt;}
.y8d{bottom:266.946667pt;}
.y130{bottom:267.586667pt;}
.y4c{bottom:269.026667pt;}
.yb4{bottom:271.426667pt;}
.y10d{bottom:271.906667pt;}
.y6a{bottom:274.786667pt;}
.yc5{bottom:277.186667pt;}
.y2a{bottom:279.586667pt;}
.y14f{bottom:279.906667pt;}
.ye5{bottom:280.386667pt;}
.y173{bottom:280.866667pt;}
.y8c{bottom:282.146667pt;}
.y12f{bottom:282.786667pt;}
.y4b{bottom:284.386667pt;}
.yb3{bottom:286.786667pt;}
.y10c{bottom:287.266667pt;}
.yc4{bottom:292.546667pt;}
.y29{bottom:294.786667pt;}
.ye4{bottom:295.746667pt;}
.y12e{bottom:295.906667pt;}
.y172{bottom:296.226667pt;}
.y8b{bottom:297.506667pt;}
.y4a{bottom:299.746667pt;}
.y14e{bottom:299.906667pt;}
.yb2{bottom:302.146667pt;}
.y10b{bottom:302.626667pt;}
.y69{bottom:306.146667pt;}
.yc3{bottom:307.906667pt;}
.y33{bottom:310.146667pt;}
.ye3{bottom:311.106667pt;}
.y171{bottom:311.426667pt;}
.y8a{bottom:312.866667pt;}
.y49{bottom:314.946667pt;}
.yb1{bottom:317.506667pt;}
.y10a{bottom:317.986667pt;}
.y14d{bottom:319.906667pt;}
.yc2{bottom:323.106667pt;}
.y28{bottom:325.506667pt;}
.ye2{bottom:326.466667pt;}
.y170{bottom:326.786667pt;}
.y89{bottom:328.226667pt;}
.yb0{bottom:332.866667pt;}
.y109{bottom:333.186667pt;}
.y68{bottom:337.346667pt;}
.yc1{bottom:338.466667pt;}
.y14b{bottom:339.906667pt;}
.y27{bottom:340.866667pt;}
.ye1{bottom:341.826667pt;}
.y16f{bottom:342.146667pt;}
.y88{bottom:343.586667pt;}
.yaf{bottom:348.226667pt;}
.y108{bottom:348.546667pt;}
.y48{bottom:349.026667pt;}
.yc0{bottom:353.826667pt;}
.y26{bottom:356.226667pt;}
.ye0{bottom:357.026667pt;}
.y16e{bottom:357.506667pt;}
.y87{bottom:358.946667pt;}
.y14a{bottom:359.906667pt;}
.yae{bottom:363.426667pt;}
.y107{bottom:363.906667pt;}
.y47{bottom:364.386667pt;}
.y67{bottom:368.706667pt;}
.ybf{bottom:369.186667pt;}
.y25{bottom:371.426667pt;}
.ydf{bottom:372.386667pt;}
.y16d{bottom:372.866667pt;}
.y12d{bottom:373.346667pt;}
.y86{bottom:374.146667pt;}
.yad{bottom:378.786667pt;}
.y106{bottom:379.266667pt;}
.y46{bottom:379.746667pt;}
.ybe{bottom:381.666667pt;}
.y24{bottom:386.786667pt;}
.yde{bottom:387.746667pt;}
.y16c{bottom:388.226667pt;}
.y85{bottom:389.506667pt;}
.yac{bottom:394.146667pt;}
.y105{bottom:394.626667pt;}
.y45{bottom:395.906667pt;}
.y66{bottom:400.066667pt;}
.y23{bottom:402.146667pt;}
.ydd{bottom:403.106667pt;}
.y16b{bottom:403.426667pt;}
.y84{bottom:404.866667pt;}
.yab{bottom:409.506667pt;}
.y104{bottom:409.986667pt;}
.y44{bottom:411.266667pt;}
.y22{bottom:417.506667pt;}
.ydc{bottom:418.466667pt;}
.y16a{bottom:418.786667pt;}
.y83{bottom:420.226667pt;}
.yaa{bottom:424.866667pt;}
.y103{bottom:425.186667pt;}
.y43{bottom:427.586667pt;}
.y65{bottom:431.426667pt;}
.y21{bottom:432.866667pt;}
.ydb{bottom:433.666667pt;}
.y169{bottom:434.146667pt;}
.y12c{bottom:435.266667pt;}
.y82{bottom:435.586667pt;}
.ya9{bottom:440.066667pt;}
.y149{bottom:440.226667pt;}
.y102{bottom:440.546667pt;}
.y42{bottom:442.946667pt;}
.y20{bottom:448.226667pt;}
.yda{bottom:449.026667pt;}
.y168{bottom:449.506667pt;}
.y81{bottom:450.946667pt;}
.ya8{bottom:455.426667pt;}
.y101{bottom:455.906667pt;}
.y41{bottom:459.266667pt;}
.y64{bottom:462.786667pt;}
.y1f{bottom:463.426667pt;}
.yd9{bottom:464.386667pt;}
.y167{bottom:464.866667pt;}
.y80{bottom:466.146667pt;}
.yfe{bottom:469.026667pt;}
.ya7{bottom:470.786667pt;}
.y40{bottom:474.626667pt;}
.y1e{bottom:478.786667pt;}
.yd8{bottom:479.746667pt;}
.y166{bottom:480.226667pt;}
.y7f{bottom:481.506667pt;}
.y12a{bottom:481.986667pt;}
.ya6{bottom:486.146667pt;}
.y1d{bottom:494.173333pt;}
.yd7{bottom:495.133333pt;}
.y165{bottom:495.453333pt;}
.y7e{bottom:496.893333pt;}
.yfd{bottom:500.413333pt;}
.ya5{bottom:501.533333pt;}
.y1c{bottom:509.533333pt;}
.yd6{bottom:510.493333pt;}
.y164{bottom:510.813333pt;}
.y7d{bottom:512.253333pt;}
.yfc{bottom:516.413333pt;}
.ya4{bottom:516.893333pt;}
.y1b{bottom:524.893333pt;}
.y62{bottom:525.373333pt;}
.yd5{bottom:525.693333pt;}
.y163{bottom:526.173333pt;}
.y7c{bottom:527.613333pt;}
.y129{bottom:528.573333pt;}
.ya3{bottom:532.093333pt;}
.y148{bottom:532.253333pt;}
.yfb{bottom:532.413333pt;}
.y1a{bottom:540.253333pt;}
.yd4{bottom:541.053333pt;}
.y162{bottom:541.533333pt;}
.y7b{bottom:542.973333pt;}
.ya2{bottom:547.453333pt;}
.yfa{bottom:548.413333pt;}
.y19{bottom:555.453333pt;}
.yd3{bottom:556.413333pt;}
.y5f{bottom:556.733333pt;}
.y161{bottom:556.893333pt;}
.y7a{bottom:558.173333pt;}
.ya1{bottom:562.813333pt;}
.yf9{bottom:564.413333pt;}
.y18{bottom:570.813333pt;}
.yd2{bottom:571.773333pt;}
.y160{bottom:572.253333pt;}
.y79{bottom:573.533333pt;}
.ya0{bottom:578.173333pt;}
.yf7{bottom:580.413333pt;}
.y17{bottom:586.173333pt;}
.y15f{bottom:587.453333pt;}
.y57{bottom:588.093333pt;}
.y78{bottom:588.893333pt;}
.yd1{bottom:591.933333pt;}
.y9f{bottom:593.533333pt;}
.y16{bottom:601.533333pt;}
.y15e{bottom:602.813333pt;}
.yf6{bottom:604.093333pt;}
.y77{bottom:604.253333pt;}
.y125{bottom:606.013333pt;}
.y147{bottom:608.893333pt;}
.y76{bottom:616.733333pt;}
.y15{bottom:616.893333pt;}
.y15d{bottom:618.173333pt;}
.yf5{bottom:619.453333pt;}
.ybd{bottom:620.093333pt;}
.y9e{bottom:624.093333pt;}
.y5b{bottom:630.173333pt;}
.y32{bottom:632.093333pt;}
.y15c{bottom:633.533333pt;}
.yf4{bottom:634.813333pt;}
.ybc{bottom:635.453333pt;}
.y9d{bottom:639.453333pt;}
.y14{bottom:647.453333pt;}
.y15b{bottom:648.893333pt;}
.yf3{bottom:650.013333pt;}
.ybb{bottom:650.813333pt;}
.y9c{bottom:654.813333pt;}
.y159{bottom:662.013333pt;}
.y13{bottom:662.813333pt;}
.yf2{bottom:665.373333pt;}
.yba{bottom:666.013333pt;}
.y9b{bottom:670.173333pt;}
.y12{bottom:678.173333pt;}
.yf1{bottom:680.733333pt;}
.yb9{bottom:681.373333pt;}
.y158{bottom:682.013333pt;}
.y123{bottom:683.293333pt;}
.y9a{bottom:685.533333pt;}
.y11{bottom:693.533333pt;}
.yf0{bottom:696.093333pt;}
.yb8{bottom:696.733333pt;}
.y146{bottom:698.653333pt;}
.y99{bottom:700.893333pt;}
.y10{bottom:708.893333pt;}
.yb7{bottom:709.213333pt;}
.y144{bottom:714.653333pt;}
.y98{bottom:716.093333pt;}
.yf{bottom:724.133333pt;}
.y143{bottom:730.693333pt;}
.y97{bottom:731.493333pt;}
.ye{bottom:739.493333pt;}
.y96{bottom:743.973333pt;}
.y11f{bottom:745.253333pt;}
.y142{bottom:746.693333pt;}
.yd{bottom:754.853333pt;}
.y141{bottom:762.693333pt;}
.yc{bottom:770.213333pt;}
.y140{bottom:778.693333pt;}
.yb{bottom:785.573333pt;}
.y13f{bottom:794.693333pt;}
.ya{bottom:800.933333pt;}
.y13e{bottom:810.693333pt;}
.y9{bottom:816.133333pt;}
.y11e{bottom:822.693333pt;}
.y8{bottom:831.493333pt;}
.y13d{bottom:842.053333pt;}
.y7{bottom:846.853333pt;}
.y11d{bottom:854.053333pt;}
.y13c{bottom:858.053333pt;}
.y6{bottom:862.213333pt;}
.y13b{bottom:874.053333pt;}
.y5{bottom:877.573333pt;}
.y11b{bottom:885.253333pt;}
.y4{bottom:892.933333pt;}
.y31{bottom:908.133333pt;}
.y3{bottom:923.493333pt;}
.y3f{bottom:960.160000pt;}
.y3e{bottom:977.920000pt;}
.y3d{bottom:995.520000pt;}
.he{height:13.760000pt;}
.h1e{height:15.200000pt;}
.h16{height:15.360000pt;}
.h1f{height:15.392000pt;}
.h20{height:19.200000pt;}
.h17{height:19.360000pt;}
.h15{height:20.160000pt;}
.h11{height:30.560000pt;}
.h12{height:30.592000pt;}
.h10{height:30.720000pt;}
.h13{height:30.752000pt;}
.hb{height:38.413438pt;}
.hf{height:41.440000pt;}
.h5{height:43.782500pt;}
.h8{height:45.795000pt;}
.h1b{height:45.952000pt;}
.h1c{height:46.080000pt;}
.h6{height:47.109375pt;}
.hd{height:48.375000pt;}
.h9{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h21{height:52.478750pt;}
.h3{height:53.535000pt;}
.ha{height:54.598989pt;}
.h7{height:55.402500pt;}
.hc{height:55.840000pt;}
.h1d{height:61.280000pt;}
.h19{height:61.312000pt;}
.h1{height:62.812500pt;}
.h1a{height:76.640000pt;}
.h18{height:76.800000pt;}
.h14{height:113.574375pt;}
.h0{height:1056.000000pt;}
.w28{width:33.760000pt;}
.w23{width:33.792000pt;}
.w1b{width:37.120000pt;}
.w1a{width:37.152000pt;}
.w20{width:37.792000pt;}
.w26{width:40.320000pt;}
.w29{width:40.352000pt;}
.w24{width:40.480000pt;}
.w25{width:40.640000pt;}
.w21{width:44.800000pt;}
.w27{width:44.992000pt;}
.w1e{width:45.120000pt;}
.w15{width:45.600000pt;}
.w1f{width:45.760000pt;}
.w17{width:46.560000pt;}
.w1c{width:48.800000pt;}
.wf{width:53.792000pt;}
.wc{width:64.800000pt;}
.w10{width:72.480000pt;}
.w3{width:73.472000pt;}
.w4{width:73.600000pt;}
.wd{width:75.552000pt;}
.we{width:75.680000pt;}
.w5{width:82.592000pt;}
.w6{width:82.720000pt;}
.w19{width:84.480000pt;}
.w18{width:85.152000pt;}
.w9{width:87.680000pt;}
.w8{width:87.872000pt;}
.w22{width:99.680000pt;}
.w2{width:106.240000pt;}
.wa{width:107.840000pt;}
.wb{width:119.392000pt;}
.w14{width:127.072000pt;}
.w13{width:141.120000pt;}
.w12{width:141.146667pt;}
.w7{width:176.186667pt;}
.w16{width:216.826667pt;}
.w11{width:228.026667pt;}
.w1d{width:327.106667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.040000pt;}
.x14{left:5.280000pt;}
.x17{left:6.400000pt;}
.x11{left:7.680000pt;}
.x1d{left:15.360000pt;}
.x12{left:16.800000pt;}
.x18{left:19.680000pt;}
.x10{left:21.280000pt;}
.x26{left:22.240000pt;}
.x25{left:23.360000pt;}
.x23{left:24.320000pt;}
.x21{left:25.280000pt;}
.x15{left:26.720000pt;}
.x20{left:28.000000pt;}
.x24{left:29.600000pt;}
.x19{left:31.360000pt;}
.x1f{left:33.760000pt;}
.x22{left:37.280000pt;}
.x1c{left:39.680000pt;}
.x32{left:87.712000pt;}
.x4a{left:90.751988pt;}
.x2{left:94.591988pt;}
.xa{left:101.631988pt;}
.x3c{left:105.312000pt;}
.xd{left:108.352000pt;}
.x3{left:114.431988pt;}
.x6{left:116.511988pt;}
.x57{left:118.591988pt;}
.x45{left:130.432000pt;}
.x4c{left:132.992000pt;}
.x28{left:142.586655pt;}
.x9{left:149.946655pt;}
.x3d{left:151.546667pt;}
.x46{left:180.026667pt;}
.x4{left:181.306655pt;}
.x33{left:196.346667pt;}
.x31{left:209.946655pt;}
.xf{left:215.226667pt;}
.xc{left:231.706655pt;}
.x4d{left:233.306667pt;}
.x2f{left:235.706655pt;}
.x4b{left:238.906655pt;}
.x4e{left:267.746667pt;}
.x3b{left:270.146655pt;}
.x5{left:283.746655pt;}
.x13{left:289.346667pt;}
.x44{left:304.706655pt;}
.x4f{left:308.866667pt;}
.x34{left:316.386667pt;}
.x50{left:350.146667pt;}
.x16{left:363.586667pt;}
.x3e{left:369.026667pt;}
.x35{left:381.986667pt;}
.x2c{left:391.106655pt;}
.x1{left:399.266655pt;}
.x27{left:403.426655pt;}
.x30{left:407.266655pt;}
.x3f{left:416.226667pt;}
.x2b{left:420.386655pt;}
.x51{left:424.226667pt;}
.x7{left:431.266655pt;}
.x1a{left:446.813333pt;}
.xb{left:455.293321pt;}
.x36{left:458.173333pt;}
.x52{left:469.853333pt;}
.x8{left:479.293321pt;}
.x2a{left:500.573321pt;}
.x40{left:502.013333pt;}
.x47{left:507.773333pt;}
.x37{left:523.613333pt;}
.x1b{left:530.173333pt;}
.x48{left:553.693333pt;}
.x53{left:570.173333pt;}
.x58{left:575.613321pt;}
.x41{left:587.133333pt;}
.x38{left:599.933333pt;}
.x54{left:604.573333pt;}
.x1e{left:618.693333pt;}
.x42{left:624.933333pt;}
.x49{left:638.533333pt;}
.x55{left:645.733333pt;}
.x39{left:654.533333pt;}
.x43{left:662.693333pt;}
.x2e{left:679.333321pt;}
.x56{left:686.853333pt;}
.x2d{left:735.333321pt;}
.x3a{left:741.253321pt;}
.x29{left:759.653321pt;}
}




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