
    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_eaeba921c6608f9ad41cb066.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_ab745bde9626c5118714b6b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_57333d7ef585e8c8e45a8085.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_7b9c44f3809afb4943fdaeb5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8abdb06fc4057b1f7da9d3fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_a7db45357212abfeab066094.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_01ce8cbd34e42b9a86a59126.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_323f00c91ceea33f466dd975.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dac63177887f1d1e861e18de.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_11a28482d8a19bd6158869ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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);}
.v4{vertical-align:-31.680000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:28.920000px;}
.ls22{letter-spacing:-1.290000px;}
.ls20{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.567600px;}
.ls1a{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.262200px;}
.ls25{letter-spacing:-0.178800px;}
.ls9{letter-spacing:-0.109200px;}
.ls1d{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.037440px;}
.ls23{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.070560px;}
.ls27{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.262080px;}
.ls1f{letter-spacing:0.262200px;}
.ls1e{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.666720px;}
.ls18{letter-spacing:0.894240px;}
.ls14{letter-spacing:0.979920px;}
.ls1{letter-spacing:1.080000px;}
.ls28{letter-spacing:2.309760px;}
.ls12{letter-spacing:2.465280px;}
.ls21{letter-spacing:3.905280px;}
.ls24{letter-spacing:4.625280px;}
.ls26{letter-spacing:11.105280px;}
.ls13{letter-spacing:24.785280px;}
.ls17{letter-spacing:59.345280px;}
.ls2{letter-spacing:844.104000px;}
.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;}
}
.wse{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-33.733320px;}
.ws0{word-spacing:-23.381280px;}
.ws4{word-spacing:-18.720120px;}
.ws18{word-spacing:-18.676920px;}
.ws7{word-spacing:-18.567120px;}
.ws6{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.wsb{word-spacing:-18.152520px;}
.wsf{word-spacing:-18.109320px;}
.ws14{word-spacing:-17.956920px;}
.ws19{word-spacing:-17.847120px;}
.ws12{word-spacing:-17.694720px;}
.wsc{word-spacing:-17.586720px;}
.ws15{word-spacing:-17.225280px;}
.wsd{word-spacing:-16.613280px;}
.ws17{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.506480px;}
.ws3{word-spacing:-13.447440px;}
.ws11{word-spacing:-12.204000px;}
.ws8{word-spacing:-11.609280px;}
.ws1d{word-spacing:-11.430480px;}
.ws9{word-spacing:-10.808640px;}
.ws13{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:32.800320px;}
.ws1b{word-spacing:222.624000px;}
.ws10{word-spacing:248.046000px;}
.ws1a{word-spacing:677.232000px;}
._a{margin-left:-17.657280px;}
._5{margin-left:-15.342720px;}
._7{margin-left:-13.357440px;}
._9{margin-left:-9.475200px;}
._6{margin-left:-7.148640px;}
._1c{margin-left:-4.504320px;}
._8{margin-left:-3.409920px;}
._1{margin-left:-2.376000px;}
._2{margin-left:-1.109760px;}
._0{width:1.404000px;}
._c{width:2.972160px;}
._d{width:4.901760px;}
._e{width:6.261600px;}
._16{width:7.308960px;}
._1a{width:8.549760px;}
._17{width:9.783840px;}
._18{width:11.119680px;}
._1b{width:12.238080px;}
._1f{width:13.901760px;}
._15{width:15.782400px;}
._14{width:16.824960px;}
._26{width:18.764640px;}
._10{width:20.203200px;}
._f{width:21.842880px;}
._29{width:22.852800px;}
._25{width:23.963760px;}
._12{width:25.436160px;}
._11{width:26.752320px;}
._27{width:27.891600px;}
._24{width:29.133360px;}
._2a{width:30.271680px;}
._22{width:31.344480px;}
._23{width:33.136560px;}
._19{width:34.511040px;}
._20{width:36.216960px;}
._1e{width:37.310400px;}
._1d{width:38.485440px;}
._13{width:39.528960px;}
._2f{width:42.526080px;}
._2e{width:44.695680px;}
._2c{width:48.401280px;}
._2b{width:49.841280px;}
._28{width:59.284800px;}
._21{width:63.897120px;}
._30{width:75.419040px;}
._35{width:80.174400px;}
._32{width:81.280800px;}
._31{width:123.668640px;}
._34{width:235.416960px;}
._33{width:528.462720px;}
._b{width:845.741280px;}
._2d{width:876.714240px;}
._4{width:906.954240px;}
._3{width:1262.490240px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(166,166,166);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(130,0,65);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:8.460000px;}
.y112{bottom:8.640000px;}
.y79{bottom:9.540000px;}
.y5b{bottom:11.700000px;}
.ydf{bottom:11.730000px;}
.yf0{bottom:11.874000px;}
.y67{bottom:11.880000px;}
.y10a{bottom:11.925000px;}
.yd8{bottom:24.840000px;}
.y140{bottom:24.915000px;}
.ya6{bottom:37.614000px;}
.y5a{bottom:37.620000px;}
.y7b{bottom:37.665000px;}
.y11d{bottom:37.794000px;}
.y66{bottom:37.800000px;}
.y136{bottom:40.065000px;}
.y120{bottom:41.040000px;}
.yb0{bottom:45.180000px;}
.y129{bottom:52.200000px;}
.yaf{bottom:52.890000px;}
.y65{bottom:63.540000px;}
.y137{bottom:64.185000px;}
.y15{bottom:66.096000px;}
.y128{bottom:73.650000px;}
.y138{bottom:88.305000px;}
.y64{bottom:90.540000px;}
.y127{bottom:95.145000px;}
.y12f{bottom:103.170000px;}
.y139{bottom:112.470000px;}
.y199{bottom:112.536000px;}
.y11c{bottom:114.876000px;}
.y135{bottom:115.200000px;}
.y69{bottom:116.280000px;}
.y63{bottom:116.460000px;}
.y126{bottom:116.640000px;}
.y14{bottom:117.576000px;}
.yd3{bottom:120.636000px;}
.y71{bottom:121.536000px;}
.y11f{bottom:123.195000px;}
.ya5{bottom:123.876000px;}
.y121{bottom:124.305000px;}
.y142{bottom:126.540000px;}
.ya3{bottom:129.096000px;}
.y40{bottom:133.596000px;}
.yae{bottom:134.070000px;}
.y134{bottom:135.210000px;}
.y13a{bottom:136.590000px;}
.y81{bottom:136.656000px;}
.y125{bottom:138.090000px;}
.y152{bottom:138.096000px;}
.yb2{bottom:139.935000px;}
.y198{bottom:140.976000px;}
.y62{bottom:142.200000px;}
.yef{bottom:143.136000px;}
.y68{bottom:143.280000px;}
.y13{bottom:146.016000px;}
.yad{bottom:149.010000px;}
.yd2{bottom:149.076000px;}
.y1a7{bottom:149.616000px;}
.y70{bottom:149.976000px;}
.y12e{bottom:156.885000px;}
.y110{bottom:157.170000px;}
.ya2{bottom:157.530000px;}
.y141{bottom:158.910000px;}
.y124{bottom:159.585000px;}
.y13b{bottom:160.710000px;}
.y3f{bottom:162.030000px;}
.y80{bottom:165.090000px;}
.y166{bottom:165.810000px;}
.y133{bottom:165.885000px;}
.y151{bottom:166.530000px;}
.y11a{bottom:166.710000px;}
.y61{bottom:169.230000px;}
.y17e{bottom:169.410000px;}
.yee{bottom:171.210000px;}
.y10f{bottom:172.830000px;}
.y12c{bottom:173.985000px;}
.y12{bottom:174.450000px;}
.y12a{bottom:175.500000px;}
.yd1{bottom:177.510000px;}
.y6f{bottom:178.410000px;}
.y122{bottom:180.570000px;}
.ya4{bottom:183.990000px;}
.ya7{bottom:184.140000px;}
.y13c{bottom:184.860000px;}
.ya1{bottom:185.970000px;}
.y3e{bottom:190.470000px;}
.y12d{bottom:193.065000px;}
.y7f{bottom:193.710000px;}
.y165{bottom:194.250000px;}
.y12b{bottom:194.370000px;}
.y60{bottom:194.970000px;}
.y17d{bottom:198.030000px;}
.yed{bottom:199.110000px;}
.y10e{bottom:202.890000px;}
.y11{bottom:203.070000px;}
.y197{bottom:203.790000px;}
.yd0{bottom:207.210000px;}
.y132{bottom:207.690000px;}
.y130{bottom:208.260000px;}
.y13d{bottom:208.980000px;}
.y123{bottom:209.805000px;}
.yac{bottom:211.575000px;}
.yb1{bottom:211.755000px;}
.ya0{bottom:214.410000px;}
.y6e{bottom:218.730000px;}
.y3d{bottom:218.910000px;}
.y5f{bottom:220.890000px;}
.y7e{bottom:222.150000px;}
.y164{bottom:222.690000px;}
.y150{bottom:223.410000px;}
.y17c{bottom:226.470000px;}
.yec{bottom:227.010000px;}
.y10{bottom:231.510000px;}
.y13e{bottom:233.100000px;}
.y10d{bottom:233.130000px;}
.ycf{bottom:235.650000px;}
.y131{bottom:242.640000px;}
.y9f{bottom:242.850000px;}
.y196{bottom:244.290000px;}
.y5e{bottom:246.810000px;}
.y3c{bottom:247.350000px;}
.y7d{bottom:250.590000px;}
.y163{bottom:251.130000px;}
.y14f{bottom:251.850000px;}
.y17b{bottom:254.910000px;}
.yeb{bottom:255.090000px;}
.y13f{bottom:257.220000px;}
.yf{bottom:261.030000px;}
.y10c{bottom:263.190000px;}
.yce{bottom:264.090000px;}
.y9e{bottom:271.470000px;}
.y195{bottom:272.730000px;}
.y3b{bottom:275.790000px;}
.y7c{bottom:279.030000px;}
.y162{bottom:279.570000px;}
.y14e{bottom:280.290000px;}
.yea{bottom:282.990000px;}
.yab{bottom:284.190000px;}
.y10b{bottom:293.430000px;}
.ycd{bottom:293.610000px;}
.ye{bottom:294.510000px;}
.y17a{bottom:295.230000px;}
.y9d{bottom:299.910000px;}
.y194{bottom:301.170000px;}
.y3a{bottom:304.230000px;}
.y161{bottom:308.010000px;}
.ye9{bottom:311.070000px;}
.y7a{bottom:312.510000px;}
.ycc{bottom:322.050000px;}
.y109{bottom:323.490000px;}
.y179{bottom:323.850000px;}
.y14d{bottom:326.730000px;}
.y9c{bottom:328.395000px;}
.y193{bottom:329.655000px;}
.yd{bottom:330.915000px;}
.y6d{bottom:332.715000px;}
.y39{bottom:332.895000px;}
.y160{bottom:336.675000px;}
.ye8{bottom:339.015000px;}
.ycb{bottom:350.535000px;}
.y178{bottom:352.335000px;}
.y108{bottom:353.595000px;}
.y14c{bottom:355.215000px;}
.y9b{bottom:356.835000px;}
.yaa{bottom:358.815000px;}
.y6c{bottom:361.155000px;}
.y38{bottom:361.335000px;}
.y78{bottom:364.215000px;}
.y15f{bottom:365.115000px;}
.ye7{bottom:366.915000px;}
.yc{bottom:369.435000px;}
.yca{bottom:380.235000px;}
.y177{bottom:380.775000px;}
.y14b{bottom:383.655000px;}
.y107{bottom:383.835000px;}
.y9a{bottom:385.275000px;}
.y6b{bottom:389.775000px;}
.y15e{bottom:393.555000px;}
.ye6{bottom:394.995000px;}
.y37{bottom:401.475000px;}
.y192{bottom:404.715000px;}
.yc9{bottom:408.675000px;}
.y176{bottom:409.215000px;}
.y14a{bottom:412.275000px;}
.y99{bottom:413.715000px;}
.y106{bottom:413.895000px;}
.yb{bottom:415.515000px;}
.y15d{bottom:421.995000px;}
.ye5{bottom:422.895000px;}
.y6a{bottom:429.915000px;}
.y36{bottom:430.275000px;}
.y191{bottom:433.155000px;}
.ya9{bottom:436.605000px;}
.y175{bottom:437.655000px;}
.yc8{bottom:438.195000px;}
.y149{bottom:440.715000px;}
.y98{bottom:442.155000px;}
.y105{bottom:444.135000px;}
.y5d{bottom:445.575000px;}
.y15c{bottom:450.435000px;}
.ye4{bottom:450.975000px;}
.ya8{bottom:457.305000px;}
.y35{bottom:458.715000px;}
.y174{bottom:466.275000px;}
.yc7{bottom:466.635000px;}
.ya{bottom:467.355000px;}
.y190{bottom:467.535000px;}
.y148{bottom:469.155000px;}
.y97{bottom:470.595000px;}
.y104{bottom:474.195000px;}
.y119{bottom:476.895000px;}
.ye3{bottom:478.875000px;}
.y34{bottom:487.155000px;}
.y56{bottom:489.135000px;}
.y173{bottom:494.715000px;}
.yc6{bottom:496.155000px;}
.y96{bottom:499.035000px;}
.y103{bottom:504.435000px;}
.y118{bottom:505.515000px;}
.ye2{bottom:506.775000px;}
.y18f{bottom:508.035000px;}
.y33{bottom:515.595000px;}
.y9{bottom:519.015000px;}
.y172{bottom:523.155000px;}
.yc5{bottom:524.775000px;}
.y15b{bottom:525.315000px;}
.y95{bottom:527.655000px;}
.y55{bottom:529.635000px;}
.y117{bottom:533.955000px;}
.y102{bottom:534.495000px;}
.ye1{bottom:534.855000px;}
.y18e{bottom:536.475000px;}
.y32{bottom:544.035000px;}
.y171{bottom:551.595000px;}
.y15a{bottom:553.755000px;}
.yc4{bottom:554.295000px;}
.y94{bottom:556.095000px;}
.y54{bottom:558.255000px;}
.y116{bottom:562.395000px;}
.ye0{bottom:562.755000px;}
.y101{bottom:564.735000px;}
.y18d{bottom:564.915000px;}
.y8{bottom:570.675000px;}
.y31{bottom:572.475000px;}
.y170{bottom:580.035000px;}
.y159{bottom:582.195000px;}
.yc3{bottom:582.735000px;}
.y93{bottom:584.535000px;}
.yde{bottom:590.835000px;}
.y100{bottom:594.825000px;}
.y53{bottom:598.605000px;}
.y18c{bottom:599.325000px;}
.y30{bottom:600.945000px;}
.y1a6{bottom:604.185000px;}
.y16f{bottom:608.505000px;}
.y158{bottom:610.845000px;}
.yc2{bottom:611.205000px;}
.ydd{bottom:618.765000px;}
.y115{bottom:619.305000px;}
.y7{bottom:622.545000px;}
.y92{bottom:624.885000px;}
.yff{bottom:625.065000px;}
.y52{bottom:627.225000px;}
.y2f{bottom:629.385000px;}
.y16e{bottom:636.945000px;}
.y157{bottom:639.285000px;}
.yc1{bottom:639.645000px;}
.y18b{bottom:639.825000px;}
.y1a4{bottom:642.165000px;}
.ydc{bottom:646.665000px;}
.y114{bottom:647.745000px;}
.y91{bottom:653.505000px;}
.yfe{bottom:655.125000px;}
.y51{bottom:655.665000px;}
.y2e{bottom:657.825000px;}
.y16d{bottom:665.385000px;}
.y156{bottom:667.725000px;}
.y18a{bottom:668.445000px;}
.y6{bottom:674.205000px;}
.ydb{bottom:674.745000px;}
.yc0{bottom:679.965000px;}
.y113{bottom:681.225000px;}
.y90{bottom:681.945000px;}
.y50{bottom:684.105000px;}
.yfd{bottom:686.085000px;}
.y2d{bottom:686.445000px;}
.y1a3{bottom:688.605000px;}
.y16c{bottom:693.825000px;}
.y155{bottom:696.165000px;}
.y189{bottom:696.885000px;}
.yda{bottom:702.645000px;}
.y147{bottom:704.445000px;}
.y111{bottom:707.145000px;}
.ybf{bottom:708.585000px;}
.y8f{bottom:710.385000px;}
.y5{bottom:715.425000px;}
.y5c{bottom:715.965000px;}
.yfc{bottom:717.045000px;}
.y11e{bottom:717.120000px;}
.y16b{bottom:722.445000px;}
.y4f{bottom:724.425000px;}
.y154{bottom:724.605000px;}
.y188{bottom:725.325000px;}
.yd9{bottom:730.725000px;}
.y2c{bottom:732.885000px;}
.ybe{bottom:737.025000px;}
.y8e{bottom:738.825000px;}
.y1a2{bottom:745.485000px;}
.y4{bottom:749.625000px;}
.y16a{bottom:750.885000px;}
.y59{bottom:751.065000px;}
.y85{bottom:752.865000px;}
.y4e{bottom:753.045000px;}
.y187{bottom:753.765000px;}
.yd7{bottom:759.345000px;}
.y2b{bottom:761.325000px;}
.ybd{bottom:765.465000px;}
.y8d{bottom:767.265000px;}
.y1f{bottom:768.525000px;}
.y77{bottom:770.865000px;}
.y153{bottom:771.045000px;}
.y169{bottom:779.325000px;}
.y1a1{bottom:779.865000px;}
.y4d{bottom:781.485000px;}
.y186{bottom:788.145000px;}
.y2a{bottom:789.765000px;}
.y3{bottom:790.485000px;}
.ybc{bottom:794.085000px;}
.y8c{bottom:795.705000px;}
.yfb{bottom:797.865000px;}
.y76{bottom:799.485000px;}
.y168{bottom:807.765000px;}
.y1e{bottom:809.025000px;}
.y4c{bottom:809.925000px;}
.yd6{bottom:813.885000px;}
.y29{bottom:818.205000px;}
.y1a0{bottom:820.365000px;}
.ybb{bottom:823.605000px;}
.y8b{bottom:824.145000px;}
.yfa{bottom:826.485000px;}
.y75{bottom:827.925000px;}
.y185{bottom:828.645000px;}
.y58{bottom:836.025000px;}
.y146{bottom:836.205000px;}
.y2{bottom:837.105000px;}
.y4b{bottom:838.365000px;}
.y28{bottom:846.645000px;}
.y19f{bottom:848.985000px;}
.y1d{bottom:849.345000px;}
.yba{bottom:852.045000px;}
.y8a{bottom:852.585000px;}
.yf9{bottom:854.925000px;}
.y74{bottom:856.365000px;}
.y184{bottom:857.085000px;}
.y57{bottom:864.690000px;}
.y4a{bottom:867.030000px;}
.y19e{bottom:877.470000px;}
.yb9{bottom:880.530000px;}
.y89{bottom:881.250000px;}
.yf8{bottom:883.410000px;}
.y73{bottom:885.030000px;}
.y1c{bottom:889.890000px;}
.y183{bottom:891.510000px;}
.y1{bottom:892.770000px;}
.y27{bottom:893.130000px;}
.y84{bottom:895.470000px;}
.y19d{bottom:905.910000px;}
.yb8{bottom:908.970000px;}
.y88{bottom:909.690000px;}
.yf7{bottom:911.850000px;}
.y49{bottom:913.290000px;}
.y72{bottom:913.470000px;}
.y145{bottom:917.610000px;}
.y26{bottom:921.570000px;}
.y83{bottom:923.910000px;}
.y1b{bottom:930.390000px;}
.y182{bottom:932.010000px;}
.yb7{bottom:937.410000px;}
.y87{bottom:938.130000px;}
.yf6{bottom:940.290000px;}
.y48{bottom:941.910000px;}
.y25{bottom:950.010000px;}
.y144{bottom:958.110000px;}
.y181{bottom:960.630000px;}
.yb6{bottom:965.850000px;}
.y82{bottom:970.170000px;}
.y47{bottom:970.350000px;}
.y1a{bottom:970.890000px;}
.y86{bottom:978.450000px;}
.y24{bottom:978.630000px;}
.yf5{bottom:980.610000px;}
.y19c{bottom:980.790000px;}
.y180{bottom:995.010000px;}
.yb5{bottom:995.550000px;}
.y143{bottom:998.610000px;}
.y46{bottom:998.790000px;}
.y23{bottom:1007.070000px;}
.yd5{bottom:1007.970000px;}
.yf4{bottom:1009.230000px;}
.y19{bottom:1011.210000px;}
.yb4{bottom:1025.070000px;}
.y45{bottom:1027.230000px;}
.y22{bottom:1035.510000px;}
.yf3{bottom:1037.670000px;}
.y19b{bottom:1043.610000px;}
.y18{bottom:1051.710000px;}
.yb3{bottom:1054.590000px;}
.y44{bottom:1055.670000px;}
.y21{bottom:1063.950000px;}
.y167{bottom:1066.110000px;}
.yf2{bottom:1066.290000px;}
.y1a5{bottom:1073.490000px;}
.yd4{bottom:1083.030000px;}
.y43{bottom:1084.110000px;}
.y17{bottom:1092.210000px;}
.y20{bottom:1092.390000px;}
.y17f{bottom:1098.330000px;}
.yf1{bottom:1112.370000px;}
.y42{bottom:1112.550000px;}
.y16{bottom:1141.020000px;}
.y41{bottom:1141.200000px;}
.y19a{bottom:1147.140000px;}
.hc{height:25.740000px;}
.h18{height:25.776000px;}
.h17{height:25.920000px;}
.h19{height:25.956000px;}
.h21{height:45.206250px;}
.h20{height:45.326250px;}
.h1e{height:47.980898px;}
.ha{height:51.660000px;}
.hf{height:51.696000px;}
.h16{height:51.840000px;}
.h15{height:51.876000px;}
.h12{height:53.709961px;}
.h13{height:55.291992px;}
.h1f{height:59.383125px;}
.h9{height:59.439023px;}
.hb{height:62.327813px;}
.h6{height:69.086250px;}
.h8{height:75.093750px;}
.h14{height:82.629961px;}
.h5{height:87.859687px;}
.h7{height:99.874688px;}
.h3{height:112.640625px;}
.h4{height:125.406562px;}
.h2{height:137.421562px;}
.h1c{height:228.240000px;}
.h1a{height:238.170000px;}
.hd{height:261.930000px;}
.h1d{height:276.660000px;}
.h1b{height:285.330000px;}
.he{height:381.810000px;}
.h11{height:508.320000px;}
.h10{height:508.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:318.450000px;}
.wa{width:318.675000px;}
.w4{width:318.810000px;}
.w5{width:319.035000px;}
.w7{width:419.040000px;}
.w6{width:419.115000px;}
.wd{width:620.100000px;}
.wc{width:621.180000px;}
.w8{width:637.125000px;}
.wb{width:637.305000px;}
.w3{width:637.845000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x4d{left:9.396000px;}
.x22{left:10.620000px;}
.x4c{left:16.230000px;}
.x42{left:29.310000px;}
.x1c{left:31.470000px;}
.x40{left:33.810000px;}
.x12{left:35.094000px;}
.x44{left:36.570000px;}
.x35{left:40.494000px;}
.x4e{left:50.145000px;}
.x19{left:52.020000px;}
.x2c{left:57.054000px;}
.x30{left:59.574000px;}
.x13{left:62.094000px;}
.x48{left:63.825000px;}
.x33{left:66.774000px;}
.x1b{left:68.145000px;}
.x3c{left:70.374000px;}
.x10{left:73.074000px;}
.x41{left:75.450000px;}
.x2d{left:76.674000px;}
.x1a{left:82.365000px;}
.x2e{left:85.494000px;}
.x34{left:87.114000px;}
.x28{left:88.374000px;}
.x37{left:89.634000px;}
.x2f{left:91.254000px;}
.x2b{left:92.514000px;}
.x3b{left:94.674000px;}
.x2a{left:97.554000px;}
.x3a{left:98.634000px;}
.x36{left:99.714000px;}
.x39{left:101.334000px;}
.x38{left:104.214000px;}
.x24{left:107.130000px;}
.x31{left:108.354000px;}
.x29{left:113.034000px;}
.x23{left:114.654000px;}
.x27{left:117.174000px;}
.x11{left:120.630000px;}
.xe{left:127.655987px;}
.x32{left:131.394000px;}
.x3f{left:135.540000px;}
.x25{left:140.430000px;}
.x26{left:144.750000px;}
.x1d{left:146.415000px;}
.x7{left:147.995987px;}
.x18{left:153.615000px;}
.x6{left:154.649987px;}
.x16{left:172.410000px;}
.x21{left:181.649987px;}
.x17{left:185.910000px;}
.x45{left:194.475000px;}
.x20{left:208.649987px;}
.x9{left:217.289987px;}
.x8{left:220.709987px;}
.xb{left:231.509987px;}
.x2{left:256.709987px;}
.x1e{left:257.760000px;}
.x1f{left:265.575000px;}
.x46{left:274.890000px;}
.x3{left:303.194987px;}
.xa{left:304.814987px;}
.x43{left:307.290000px;}
.x49{left:309.240000px;}
.x15{left:345.315000px;}
.x4{left:363.134987px;}
.x4a{left:382.170000px;}
.xc{left:409.214987px;}
.x47{left:435.780000px;}
.x5{left:446.474987px;}
.x4b{left:462.600000px;}
.xd{left:499.964987px;}
.x4f{left:548.670000px;}
.x1{left:615.704987px;}
.x3e{left:629.214000px;}
.x3d{left:631.374000px;}
.x14{left:636.414000px;}
.x51{left:765.509987px;}
.x50{left:766.769987px;}
@media print{
.v4{vertical-align:-28.160000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:25.706667pt;}
.ls22{letter-spacing:-1.146667pt;}
.ls20{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.504533pt;}
.ls1a{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.233067pt;}
.ls25{letter-spacing:-0.158933pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.033280pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.062720pt;}
.ls27{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.232960pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls1e{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.592640pt;}
.ls18{letter-spacing:0.794880pt;}
.ls14{letter-spacing:0.871040pt;}
.ls1{letter-spacing:0.960000pt;}
.ls28{letter-spacing:2.053120pt;}
.ls12{letter-spacing:2.191360pt;}
.ls21{letter-spacing:3.471360pt;}
.ls24{letter-spacing:4.111360pt;}
.ls26{letter-spacing:9.871360pt;}
.ls13{letter-spacing:22.031360pt;}
.ls17{letter-spacing:52.751360pt;}
.ls2{letter-spacing:750.314667pt;}
.wse{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-29.985173pt;}
.ws0{word-spacing:-20.783360pt;}
.ws4{word-spacing:-16.640107pt;}
.ws18{word-spacing:-16.601707pt;}
.ws7{word-spacing:-16.504107pt;}
.ws6{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.wsb{word-spacing:-16.135573pt;}
.wsf{word-spacing:-16.097173pt;}
.ws14{word-spacing:-15.961707pt;}
.ws19{word-spacing:-15.864107pt;}
.ws12{word-spacing:-15.728640pt;}
.wsc{word-spacing:-15.632640pt;}
.ws15{word-spacing:-15.311360pt;}
.wsd{word-spacing:-14.767360pt;}
.ws17{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.672427pt;}
.ws3{word-spacing:-11.953280pt;}
.ws11{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.319360pt;}
.ws1d{word-spacing:-10.160427pt;}
.ws9{word-spacing:-9.607680pt;}
.ws13{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:29.155840pt;}
.ws1b{word-spacing:197.888000pt;}
.ws10{word-spacing:220.485333pt;}
.ws1a{word-spacing:601.984000pt;}
._a{margin-left:-15.695360pt;}
._5{margin-left:-13.637973pt;}
._7{margin-left:-11.873280pt;}
._9{margin-left:-8.422400pt;}
._6{margin-left:-6.354347pt;}
._1c{margin-left:-4.003840pt;}
._8{margin-left:-3.031040pt;}
._1{margin-left:-2.112000pt;}
._2{margin-left:-0.986453pt;}
._0{width:1.248000pt;}
._c{width:2.641920pt;}
._d{width:4.357120pt;}
._e{width:5.565867pt;}
._16{width:6.496853pt;}
._1a{width:7.599787pt;}
._17{width:8.696747pt;}
._18{width:9.884160pt;}
._1b{width:10.878293pt;}
._1f{width:12.357120pt;}
._15{width:14.028800pt;}
._14{width:14.955520pt;}
._26{width:16.679680pt;}
._10{width:17.958400pt;}
._f{width:19.415893pt;}
._29{width:20.313600pt;}
._25{width:21.301120pt;}
._12{width:22.609920pt;}
._11{width:23.779840pt;}
._27{width:24.792533pt;}
._24{width:25.896320pt;}
._2a{width:26.908160pt;}
._22{width:27.861760pt;}
._23{width:29.454720pt;}
._19{width:30.676480pt;}
._20{width:32.192853pt;}
._1e{width:33.164800pt;}
._1d{width:34.209280pt;}
._13{width:35.136853pt;}
._2f{width:37.800960pt;}
._2e{width:39.729493pt;}
._2c{width:43.023360pt;}
._2b{width:44.303360pt;}
._28{width:52.697600pt;}
._21{width:56.797440pt;}
._30{width:67.039147pt;}
._35{width:71.266133pt;}
._32{width:72.249600pt;}
._31{width:109.927680pt;}
._34{width:209.259520pt;}
._33{width:469.744640pt;}
._b{width:751.770027pt;}
._2d{width:779.301547pt;}
._4{width:806.181547pt;}
._3{width:1122.213547pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:7.520000pt;}
.y112{bottom:7.680000pt;}
.y79{bottom:8.480000pt;}
.y5b{bottom:10.400000pt;}
.ydf{bottom:10.426667pt;}
.yf0{bottom:10.554667pt;}
.y67{bottom:10.560000pt;}
.y10a{bottom:10.600000pt;}
.yd8{bottom:22.080000pt;}
.y140{bottom:22.146667pt;}
.ya6{bottom:33.434667pt;}
.y5a{bottom:33.440000pt;}
.y7b{bottom:33.480000pt;}
.y11d{bottom:33.594667pt;}
.y66{bottom:33.600000pt;}
.y136{bottom:35.613333pt;}
.y120{bottom:36.480000pt;}
.yb0{bottom:40.160000pt;}
.y129{bottom:46.400000pt;}
.yaf{bottom:47.013333pt;}
.y65{bottom:56.480000pt;}
.y137{bottom:57.053333pt;}
.y15{bottom:58.752000pt;}
.y128{bottom:65.466667pt;}
.y138{bottom:78.493333pt;}
.y64{bottom:80.480000pt;}
.y127{bottom:84.573333pt;}
.y12f{bottom:91.706667pt;}
.y139{bottom:99.973333pt;}
.y199{bottom:100.032000pt;}
.y11c{bottom:102.112000pt;}
.y135{bottom:102.400000pt;}
.y69{bottom:103.360000pt;}
.y63{bottom:103.520000pt;}
.y126{bottom:103.680000pt;}
.y14{bottom:104.512000pt;}
.yd3{bottom:107.232000pt;}
.y71{bottom:108.032000pt;}
.y11f{bottom:109.506667pt;}
.ya5{bottom:110.112000pt;}
.y121{bottom:110.493333pt;}
.y142{bottom:112.480000pt;}
.ya3{bottom:114.752000pt;}
.y40{bottom:118.752000pt;}
.yae{bottom:119.173333pt;}
.y134{bottom:120.186667pt;}
.y13a{bottom:121.413333pt;}
.y81{bottom:121.472000pt;}
.y125{bottom:122.746667pt;}
.y152{bottom:122.752000pt;}
.yb2{bottom:124.386667pt;}
.y198{bottom:125.312000pt;}
.y62{bottom:126.400000pt;}
.yef{bottom:127.232000pt;}
.y68{bottom:127.360000pt;}
.y13{bottom:129.792000pt;}
.yad{bottom:132.453333pt;}
.yd2{bottom:132.512000pt;}
.y1a7{bottom:132.992000pt;}
.y70{bottom:133.312000pt;}
.y12e{bottom:139.453333pt;}
.y110{bottom:139.706667pt;}
.ya2{bottom:140.026667pt;}
.y141{bottom:141.253333pt;}
.y124{bottom:141.853333pt;}
.y13b{bottom:142.853333pt;}
.y3f{bottom:144.026667pt;}
.y80{bottom:146.746667pt;}
.y166{bottom:147.386667pt;}
.y133{bottom:147.453333pt;}
.y151{bottom:148.026667pt;}
.y11a{bottom:148.186667pt;}
.y61{bottom:150.426667pt;}
.y17e{bottom:150.586667pt;}
.yee{bottom:152.186667pt;}
.y10f{bottom:153.626667pt;}
.y12c{bottom:154.653333pt;}
.y12{bottom:155.066667pt;}
.y12a{bottom:156.000000pt;}
.yd1{bottom:157.786667pt;}
.y6f{bottom:158.586667pt;}
.y122{bottom:160.506667pt;}
.ya4{bottom:163.546667pt;}
.ya7{bottom:163.680000pt;}
.y13c{bottom:164.320000pt;}
.ya1{bottom:165.306667pt;}
.y3e{bottom:169.306667pt;}
.y12d{bottom:171.613333pt;}
.y7f{bottom:172.186667pt;}
.y165{bottom:172.666667pt;}
.y12b{bottom:172.773333pt;}
.y60{bottom:173.306667pt;}
.y17d{bottom:176.026667pt;}
.yed{bottom:176.986667pt;}
.y10e{bottom:180.346667pt;}
.y11{bottom:180.506667pt;}
.y197{bottom:181.146667pt;}
.yd0{bottom:184.186667pt;}
.y132{bottom:184.613333pt;}
.y130{bottom:185.120000pt;}
.y13d{bottom:185.760000pt;}
.y123{bottom:186.493333pt;}
.yac{bottom:188.066667pt;}
.yb1{bottom:188.226667pt;}
.ya0{bottom:190.586667pt;}
.y6e{bottom:194.426667pt;}
.y3d{bottom:194.586667pt;}
.y5f{bottom:196.346667pt;}
.y7e{bottom:197.466667pt;}
.y164{bottom:197.946667pt;}
.y150{bottom:198.586667pt;}
.y17c{bottom:201.306667pt;}
.yec{bottom:201.786667pt;}
.y10{bottom:205.786667pt;}
.y13e{bottom:207.200000pt;}
.y10d{bottom:207.226667pt;}
.ycf{bottom:209.466667pt;}
.y131{bottom:215.680000pt;}
.y9f{bottom:215.866667pt;}
.y196{bottom:217.146667pt;}
.y5e{bottom:219.386667pt;}
.y3c{bottom:219.866667pt;}
.y7d{bottom:222.746667pt;}
.y163{bottom:223.226667pt;}
.y14f{bottom:223.866667pt;}
.y17b{bottom:226.586667pt;}
.yeb{bottom:226.746667pt;}
.y13f{bottom:228.640000pt;}
.yf{bottom:232.026667pt;}
.y10c{bottom:233.946667pt;}
.yce{bottom:234.746667pt;}
.y9e{bottom:241.306667pt;}
.y195{bottom:242.426667pt;}
.y3b{bottom:245.146667pt;}
.y7c{bottom:248.026667pt;}
.y162{bottom:248.506667pt;}
.y14e{bottom:249.146667pt;}
.yea{bottom:251.546667pt;}
.yab{bottom:252.613333pt;}
.y10b{bottom:260.826667pt;}
.ycd{bottom:260.986667pt;}
.ye{bottom:261.786667pt;}
.y17a{bottom:262.426667pt;}
.y9d{bottom:266.586667pt;}
.y194{bottom:267.706667pt;}
.y3a{bottom:270.426667pt;}
.y161{bottom:273.786667pt;}
.ye9{bottom:276.506667pt;}
.y7a{bottom:277.786667pt;}
.ycc{bottom:286.266667pt;}
.y109{bottom:287.546667pt;}
.y179{bottom:287.866667pt;}
.y14d{bottom:290.426667pt;}
.y9c{bottom:291.906667pt;}
.y193{bottom:293.026667pt;}
.yd{bottom:294.146667pt;}
.y6d{bottom:295.746667pt;}
.y39{bottom:295.906667pt;}
.y160{bottom:299.266667pt;}
.ye8{bottom:301.346667pt;}
.ycb{bottom:311.586667pt;}
.y178{bottom:313.186667pt;}
.y108{bottom:314.306667pt;}
.y14c{bottom:315.746667pt;}
.y9b{bottom:317.186667pt;}
.yaa{bottom:318.946667pt;}
.y6c{bottom:321.026667pt;}
.y38{bottom:321.186667pt;}
.y78{bottom:323.746667pt;}
.y15f{bottom:324.546667pt;}
.ye7{bottom:326.146667pt;}
.yc{bottom:328.386667pt;}
.yca{bottom:337.986667pt;}
.y177{bottom:338.466667pt;}
.y14b{bottom:341.026667pt;}
.y107{bottom:341.186667pt;}
.y9a{bottom:342.466667pt;}
.y6b{bottom:346.466667pt;}
.y15e{bottom:349.826667pt;}
.ye6{bottom:351.106667pt;}
.y37{bottom:356.866667pt;}
.y192{bottom:359.746667pt;}
.yc9{bottom:363.266667pt;}
.y176{bottom:363.746667pt;}
.y14a{bottom:366.466667pt;}
.y99{bottom:367.746667pt;}
.y106{bottom:367.906667pt;}
.yb{bottom:369.346667pt;}
.y15d{bottom:375.106667pt;}
.ye5{bottom:375.906667pt;}
.y6a{bottom:382.146667pt;}
.y36{bottom:382.466667pt;}
.y191{bottom:385.026667pt;}
.ya9{bottom:388.093333pt;}
.y175{bottom:389.026667pt;}
.yc8{bottom:389.506667pt;}
.y149{bottom:391.746667pt;}
.y98{bottom:393.026667pt;}
.y105{bottom:394.786667pt;}
.y5d{bottom:396.066667pt;}
.y15c{bottom:400.386667pt;}
.ye4{bottom:400.866667pt;}
.ya8{bottom:406.493333pt;}
.y35{bottom:407.746667pt;}
.y174{bottom:414.466667pt;}
.yc7{bottom:414.786667pt;}
.ya{bottom:415.426667pt;}
.y190{bottom:415.586667pt;}
.y148{bottom:417.026667pt;}
.y97{bottom:418.306667pt;}
.y104{bottom:421.506667pt;}
.y119{bottom:423.906667pt;}
.ye3{bottom:425.666667pt;}
.y34{bottom:433.026667pt;}
.y56{bottom:434.786667pt;}
.y173{bottom:439.746667pt;}
.yc6{bottom:441.026667pt;}
.y96{bottom:443.586667pt;}
.y103{bottom:448.386667pt;}
.y118{bottom:449.346667pt;}
.ye2{bottom:450.466667pt;}
.y18f{bottom:451.586667pt;}
.y33{bottom:458.306667pt;}
.y9{bottom:461.346667pt;}
.y172{bottom:465.026667pt;}
.yc5{bottom:466.466667pt;}
.y15b{bottom:466.946667pt;}
.y95{bottom:469.026667pt;}
.y55{bottom:470.786667pt;}
.y117{bottom:474.626667pt;}
.y102{bottom:475.106667pt;}
.ye1{bottom:475.426667pt;}
.y18e{bottom:476.866667pt;}
.y32{bottom:483.586667pt;}
.y171{bottom:490.306667pt;}
.y15a{bottom:492.226667pt;}
.yc4{bottom:492.706667pt;}
.y94{bottom:494.306667pt;}
.y54{bottom:496.226667pt;}
.y116{bottom:499.906667pt;}
.ye0{bottom:500.226667pt;}
.y101{bottom:501.986667pt;}
.y18d{bottom:502.146667pt;}
.y8{bottom:507.266667pt;}
.y31{bottom:508.866667pt;}
.y170{bottom:515.586667pt;}
.y159{bottom:517.506667pt;}
.yc3{bottom:517.986667pt;}
.y93{bottom:519.586667pt;}
.yde{bottom:525.186667pt;}
.y100{bottom:528.733333pt;}
.y53{bottom:532.093333pt;}
.y18c{bottom:532.733333pt;}
.y30{bottom:534.173333pt;}
.y1a6{bottom:537.053333pt;}
.y16f{bottom:540.893333pt;}
.y158{bottom:542.973333pt;}
.yc2{bottom:543.293333pt;}
.ydd{bottom:550.013333pt;}
.y115{bottom:550.493333pt;}
.y7{bottom:553.373333pt;}
.y92{bottom:555.453333pt;}
.yff{bottom:555.613333pt;}
.y52{bottom:557.533333pt;}
.y2f{bottom:559.453333pt;}
.y16e{bottom:566.173333pt;}
.y157{bottom:568.253333pt;}
.yc1{bottom:568.573333pt;}
.y18b{bottom:568.733333pt;}
.y1a4{bottom:570.813333pt;}
.ydc{bottom:574.813333pt;}
.y114{bottom:575.773333pt;}
.y91{bottom:580.893333pt;}
.yfe{bottom:582.333333pt;}
.y51{bottom:582.813333pt;}
.y2e{bottom:584.733333pt;}
.y16d{bottom:591.453333pt;}
.y156{bottom:593.533333pt;}
.y18a{bottom:594.173333pt;}
.y6{bottom:599.293333pt;}
.ydb{bottom:599.773333pt;}
.yc0{bottom:604.413333pt;}
.y113{bottom:605.533333pt;}
.y90{bottom:606.173333pt;}
.y50{bottom:608.093333pt;}
.yfd{bottom:609.853333pt;}
.y2d{bottom:610.173333pt;}
.y1a3{bottom:612.093333pt;}
.y16c{bottom:616.733333pt;}
.y155{bottom:618.813333pt;}
.y189{bottom:619.453333pt;}
.yda{bottom:624.573333pt;}
.y147{bottom:626.173333pt;}
.y111{bottom:628.573333pt;}
.ybf{bottom:629.853333pt;}
.y8f{bottom:631.453333pt;}
.y5{bottom:635.933333pt;}
.y5c{bottom:636.413333pt;}
.yfc{bottom:637.373333pt;}
.y11e{bottom:637.440000pt;}
.y16b{bottom:642.173333pt;}
.y4f{bottom:643.933333pt;}
.y154{bottom:644.093333pt;}
.y188{bottom:644.733333pt;}
.yd9{bottom:649.533333pt;}
.y2c{bottom:651.453333pt;}
.ybe{bottom:655.133333pt;}
.y8e{bottom:656.733333pt;}
.y1a2{bottom:662.653333pt;}
.y4{bottom:666.333333pt;}
.y16a{bottom:667.453333pt;}
.y59{bottom:667.613333pt;}
.y85{bottom:669.213333pt;}
.y4e{bottom:669.373333pt;}
.y187{bottom:670.013333pt;}
.yd7{bottom:674.973333pt;}
.y2b{bottom:676.733333pt;}
.ybd{bottom:680.413333pt;}
.y8d{bottom:682.013333pt;}
.y1f{bottom:683.133333pt;}
.y77{bottom:685.213333pt;}
.y153{bottom:685.373333pt;}
.y169{bottom:692.733333pt;}
.y1a1{bottom:693.213333pt;}
.y4d{bottom:694.653333pt;}
.y186{bottom:700.573333pt;}
.y2a{bottom:702.013333pt;}
.y3{bottom:702.653333pt;}
.ybc{bottom:705.853333pt;}
.y8c{bottom:707.293333pt;}
.yfb{bottom:709.213333pt;}
.y76{bottom:710.653333pt;}
.y168{bottom:718.013333pt;}
.y1e{bottom:719.133333pt;}
.y4c{bottom:719.933333pt;}
.yd6{bottom:723.453333pt;}
.y29{bottom:727.293333pt;}
.y1a0{bottom:729.213333pt;}
.ybb{bottom:732.093333pt;}
.y8b{bottom:732.573333pt;}
.yfa{bottom:734.653333pt;}
.y75{bottom:735.933333pt;}
.y185{bottom:736.573333pt;}
.y58{bottom:743.133333pt;}
.y146{bottom:743.293333pt;}
.y2{bottom:744.093333pt;}
.y4b{bottom:745.213333pt;}
.y28{bottom:752.573333pt;}
.y19f{bottom:754.653333pt;}
.y1d{bottom:754.973333pt;}
.yba{bottom:757.373333pt;}
.y8a{bottom:757.853333pt;}
.yf9{bottom:759.933333pt;}
.y74{bottom:761.213333pt;}
.y184{bottom:761.853333pt;}
.y57{bottom:768.613333pt;}
.y4a{bottom:770.693333pt;}
.y19e{bottom:779.973333pt;}
.yb9{bottom:782.693333pt;}
.y89{bottom:783.333333pt;}
.yf8{bottom:785.253333pt;}
.y73{bottom:786.693333pt;}
.y1c{bottom:791.013333pt;}
.y183{bottom:792.453333pt;}
.y1{bottom:793.573333pt;}
.y27{bottom:793.893333pt;}
.y84{bottom:795.973333pt;}
.y19d{bottom:805.253333pt;}
.yb8{bottom:807.973333pt;}
.y88{bottom:808.613333pt;}
.yf7{bottom:810.533333pt;}
.y49{bottom:811.813333pt;}
.y72{bottom:811.973333pt;}
.y145{bottom:815.653333pt;}
.y26{bottom:819.173333pt;}
.y83{bottom:821.253333pt;}
.y1b{bottom:827.013333pt;}
.y182{bottom:828.453333pt;}
.yb7{bottom:833.253333pt;}
.y87{bottom:833.893333pt;}
.yf6{bottom:835.813333pt;}
.y48{bottom:837.253333pt;}
.y25{bottom:844.453333pt;}
.y144{bottom:851.653333pt;}
.y181{bottom:853.893333pt;}
.yb6{bottom:858.533333pt;}
.y82{bottom:862.373333pt;}
.y47{bottom:862.533333pt;}
.y1a{bottom:863.013333pt;}
.y86{bottom:869.733333pt;}
.y24{bottom:869.893333pt;}
.yf5{bottom:871.653333pt;}
.y19c{bottom:871.813333pt;}
.y180{bottom:884.453333pt;}
.yb5{bottom:884.933333pt;}
.y143{bottom:887.653333pt;}
.y46{bottom:887.813333pt;}
.y23{bottom:895.173333pt;}
.yd5{bottom:895.973333pt;}
.yf4{bottom:897.093333pt;}
.y19{bottom:898.853333pt;}
.yb4{bottom:911.173333pt;}
.y45{bottom:913.093333pt;}
.y22{bottom:920.453333pt;}
.yf3{bottom:922.373333pt;}
.y19b{bottom:927.653333pt;}
.y18{bottom:934.853333pt;}
.yb3{bottom:937.413333pt;}
.y44{bottom:938.373333pt;}
.y21{bottom:945.733333pt;}
.y167{bottom:947.653333pt;}
.yf2{bottom:947.813333pt;}
.y1a5{bottom:954.213333pt;}
.yd4{bottom:962.693333pt;}
.y43{bottom:963.653333pt;}
.y17{bottom:970.853333pt;}
.y20{bottom:971.013333pt;}
.y17f{bottom:976.293333pt;}
.yf1{bottom:988.773333pt;}
.y42{bottom:988.933333pt;}
.y16{bottom:1014.240000pt;}
.y41{bottom:1014.400000pt;}
.y19a{bottom:1019.680000pt;}
.hc{height:22.880000pt;}
.h18{height:22.912000pt;}
.h17{height:23.040000pt;}
.h19{height:23.072000pt;}
.h21{height:40.183333pt;}
.h20{height:40.290000pt;}
.h1e{height:42.649687pt;}
.ha{height:45.920000pt;}
.hf{height:45.952000pt;}
.h16{height:46.080000pt;}
.h15{height:46.112000pt;}
.h12{height:47.742188pt;}
.h13{height:49.148438pt;}
.h1f{height:52.785000pt;}
.h9{height:52.834688pt;}
.hb{height:55.402500pt;}
.h6{height:61.410000pt;}
.h8{height:66.750000pt;}
.h14{height:73.448854pt;}
.h5{height:78.097500pt;}
.h7{height:88.777500pt;}
.h3{height:100.125000pt;}
.h4{height:111.472500pt;}
.h2{height:122.152500pt;}
.h1c{height:202.880000pt;}
.h1a{height:211.706667pt;}
.hd{height:232.826667pt;}
.h1d{height:245.920000pt;}
.h1b{height:253.626667pt;}
.he{height:339.386667pt;}
.h11{height:451.840000pt;}
.h10{height:451.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:283.066667pt;}
.wa{width:283.266667pt;}
.w4{width:283.386667pt;}
.w5{width:283.586667pt;}
.w7{width:372.480000pt;}
.w6{width:372.546667pt;}
.wd{width:551.200000pt;}
.wc{width:552.160000pt;}
.w8{width:566.333333pt;}
.wb{width:566.493333pt;}
.w3{width:566.973333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x4d{left:8.352000pt;}
.x22{left:9.440000pt;}
.x4c{left:14.426667pt;}
.x42{left:26.053333pt;}
.x1c{left:27.973333pt;}
.x40{left:30.053333pt;}
.x12{left:31.194667pt;}
.x44{left:32.506667pt;}
.x35{left:35.994667pt;}
.x4e{left:44.573333pt;}
.x19{left:46.240000pt;}
.x2c{left:50.714667pt;}
.x30{left:52.954667pt;}
.x13{left:55.194667pt;}
.x48{left:56.733333pt;}
.x33{left:59.354667pt;}
.x1b{left:60.573333pt;}
.x3c{left:62.554667pt;}
.x10{left:64.954667pt;}
.x41{left:67.066667pt;}
.x2d{left:68.154667pt;}
.x1a{left:73.213333pt;}
.x2e{left:75.994667pt;}
.x34{left:77.434667pt;}
.x28{left:78.554667pt;}
.x37{left:79.674667pt;}
.x2f{left:81.114667pt;}
.x2b{left:82.234667pt;}
.x3b{left:84.154667pt;}
.x2a{left:86.714667pt;}
.x3a{left:87.674667pt;}
.x36{left:88.634667pt;}
.x39{left:90.074667pt;}
.x38{left:92.634667pt;}
.x24{left:95.226667pt;}
.x31{left:96.314667pt;}
.x29{left:100.474667pt;}
.x23{left:101.914667pt;}
.x27{left:104.154667pt;}
.x11{left:107.226667pt;}
.xe{left:113.471988pt;}
.x32{left:116.794667pt;}
.x3f{left:120.480000pt;}
.x25{left:124.826667pt;}
.x26{left:128.666667pt;}
.x1d{left:130.146667pt;}
.x7{left:131.551988pt;}
.x18{left:136.546667pt;}
.x6{left:137.466655pt;}
.x16{left:153.253333pt;}
.x21{left:161.466655pt;}
.x17{left:165.253333pt;}
.x45{left:172.866667pt;}
.x20{left:185.466655pt;}
.x9{left:193.146655pt;}
.x8{left:196.186655pt;}
.xb{left:205.786655pt;}
.x2{left:228.186655pt;}
.x1e{left:229.120000pt;}
.x1f{left:236.066667pt;}
.x46{left:244.346667pt;}
.x3{left:269.506655pt;}
.xa{left:270.946655pt;}
.x43{left:273.146667pt;}
.x49{left:274.880000pt;}
.x15{left:306.946667pt;}
.x4{left:322.786655pt;}
.x4a{left:339.706667pt;}
.xc{left:363.746655pt;}
.x47{left:387.360000pt;}
.x5{left:396.866655pt;}
.x4b{left:411.200000pt;}
.xd{left:444.413322pt;}
.x4f{left:487.706667pt;}
.x1{left:547.293322pt;}
.x3e{left:559.301333pt;}
.x3d{left:561.221333pt;}
.x14{left:565.701333pt;}
.x51{left:680.453322pt;}
.x50{left:681.573322pt;}
}




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