
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a9119fdc86e886c51e38c123.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_88e755a540a70e442e68bc3e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3052d7c4dbd157e477974c95.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_04ba035ac5711e7e8a4070cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a96a8b9a05e9dc18468ac2e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_95474d994ab3b57348f390a4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_727267a55fbb5cde7b06e4e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_e08578e5406711edf1a7d831.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_66bb1b9a563b3d28eef534ff.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v5{vertical-align:18.000000px;}
.v6{vertical-align:40.320000px;}
.v4{vertical-align:45.360000px;}
.v7{vertical-align:55.440000px;}
.ls13{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls7{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.038880px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.060600px;}
.ls10{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.ls19{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls1f{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:2.612520px;}
.ls18{letter-spacing:16.650360px;}
.ls17{letter-spacing:19.292520px;}
.ls20{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.265280px;}
.ws4{word-spacing:-13.226400px;}
.wsa{word-spacing:-13.162800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.159619px;}
._e{margin-left:-3.148491px;}
._6{margin-left:-2.144040px;}
._0{margin-left:-1.104000px;}
._3{width:1.006728px;}
._b{width:2.584945px;}
._9{width:3.762720px;}
._8{width:4.764960px;}
._10{width:5.936640px;}
._5{width:7.361281px;}
._4{width:8.364960px;}
._a{width:9.804960px;}
._c{width:11.122200px;}
._14{width:12.204360px;}
._12{width:14.910000px;}
._13{width:15.988870px;}
._7{width:17.004960px;}
._f{width:18.697200px;}
._2{width:19.877966px;}
._1{width:21.138012px;}
._d{width:22.598450px;}
._18{width:23.612953px;}
._15{width:26.452800px;}
._16{width:100.953722px;}
._17{width:193.824360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:7.830000px;}
.y11c{bottom:7.860000px;}
.y11a{bottom:7.920000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y101{bottom:111.450000px;}
.y59{bottom:115.680000px;}
.y12a{bottom:118.020000px;}
.y85{bottom:126.390000px;}
.yd7{bottom:130.620000px;}
.y1c8{bottom:133.320000px;}
.y58{bottom:134.130000px;}
.y129{bottom:135.570000px;}
.y19d{bottom:138.630000px;}
.y84{bottom:144.030000px;}
.y13c{bottom:147.090000px;}
.y100{bottom:147.900000px;}
.yd6{bottom:148.170000px;}
.y1c7{bottom:150.870000px;}
.yaf{bottom:153.480000px;}
.y19c{bottom:156.270000px;}
.y57{bottom:161.580000px;}
.y128{bottom:162.120000px;}
.y83{bottom:170.580000px;}
.yae{bottom:171.030000px;}
.y17a{bottom:174.090000px;}
.yd5{bottom:174.810000px;}
.y27{bottom:176.520000px;}
.y1c6{bottom:177.510000px;}
.y158{bottom:181.200000px;}
.y13b{bottom:182.640000px;}
.y19b{bottom:182.820000px;}
.yff{bottom:183.450000px;}
.yad{bottom:188.670000px;}
.y179{bottom:191.640000px;}
.y26{bottom:194.430000px;}
.y1c5{bottom:195.060000px;}
.y127{bottom:197.040000px;}
.y56{bottom:197.130000px;}
.y157{bottom:198.750000px;}
.y19a{bottom:200.370000px;}
.y82{bottom:206.130000px;}
.yac{bottom:206.220000px;}
.y126{bottom:209.190000px;}
.yd4{bottom:210.360000px;}
.y55{bottom:215.580000px;}
.y156{bottom:216.300000px;}
.y13a{bottom:218.190000px;}
.yfe{bottom:219.090000px;}
.y1c4{bottom:221.610000px;}
.y81{bottom:223.770000px;}
.y199{bottom:227.010000px;}
.y178{bottom:227.280000px;}
.yd3{bottom:227.910000px;}
.y25{bottom:231.510000px;}
.y54{bottom:233.130000px;}
.y125{bottom:236.550000px;}
.y1c3{bottom:239.250000px;}
.y80{bottom:241.320000px;}
.yab{bottom:241.860000px;}
.y198{bottom:244.560000px;}
.y177{bottom:244.830000px;}
.yfd{bottom:245.640000px;}
.y24{bottom:249.060000px;}
.y53{bottom:251.580000px;}
.y155{bottom:251.940000px;}
.y139{bottom:253.830000px;}
.yaa{bottom:259.410000px;}
.y197{bottom:262.200000px;}
.yd2{bottom:263.460000px;}
.y124{bottom:263.910000px;}
.y1c2{bottom:265.800000px;}
.y23{bottom:266.700000px;}
.y154{bottom:269.490000px;}
.y52{bottom:269.940000px;}
.y138{bottom:271.380000px;}
.y176{bottom:271.470000px;}
.yd1{bottom:273.540000px;}
.y7f{bottom:276.870000px;}
.ya9{bottom:276.960000px;}
.yfc{bottom:281.190000px;}
.y1c1{bottom:283.440000px;}
.y22{bottom:284.250000px;}
.y196{bottom:289.110000px;}
.y7e{bottom:294.510000px;}
.ya8{bottom:294.600000px;}
.y137{bottom:298.020000px;}
.yfb{bottom:299.640000px;}
.yd0{bottom:300.540000px;}
.y153{bottom:305.130000px;}
.y51{bottom:306.390000px;}
.y175{bottom:307.020000px;}
.y1c0{bottom:309.990000px;}
.y7d{bottom:312.060000px;}
.ya7{bottom:312.150000px;}
.y123{bottom:312.600000px;}
.yfa{bottom:317.190000px;}
.ycf{bottom:318.900000px;}
.y21{bottom:319.800000px;}
.y152{bottom:322.680000px;}
.y50{bottom:323.940000px;}
.y174{bottom:324.570000px;}
.y1bf{bottom:327.540000px;}
.y7c{bottom:329.700000px;}
.y136{bottom:333.570000px;}
.yf9{bottom:335.640000px;}
.yce{bottom:337.350000px;}
.y20{bottom:337.440000px;}
.ya6{bottom:347.790000px;}
.y122{bottom:348.150000px;}
.y4f{bottom:350.580000px;}
.yf8{bottom:353.190000px;}
.y1be{bottom:354.180000px;}
.y1f{bottom:354.990000px;}
.y7b{bottom:356.250000px;}
.y151{bottom:358.230000px;}
.y173{bottom:360.210000px;}
.y195{bottom:364.260000px;}
.ya5{bottom:365.340000px;}
.y121{bottom:365.790000px;}
.yf7{bottom:371.640000px;}
.y1bd{bottom:371.730000px;}
.y1e{bottom:372.630000px;}
.ycd{bottom:373.800000px;}
.y150{bottom:375.870000px;}
.y172{bottom:377.760000px;}
.ya4{bottom:382.890000px;}
.y4e{bottom:386.130000px;}
.yf6{bottom:389.190000px;}
.y1d{bottom:390.180000px;}
.y7a{bottom:391.800000px;}
.y1bc{bottom:398.370000px;}
.ya3{bottom:400.530000px;}
.y120{bottom:400.620000px;}
.y194{bottom:401.610000px;}
.y14f{bottom:402.780000px;}
.y4d{bottom:403.770000px;}
.y171{bottom:404.400000px;}
.yf5{bottom:407.640000px;}
.y1c{bottom:407.730000px;}
.ycc{bottom:409.260000px;}
.y79{bottom:409.440000px;}
.y11f{bottom:412.770000px;}
.y1bb{bottom:415.920000px;}
.ycb{bottom:419.340000px;}
.y4c{bottom:421.320000px;}
.yf4{bottom:425.190000px;}
.ya2{bottom:427.080000px;}
.y4b{bottom:438.870000px;}
.y170{bottom:439.950000px;}
.y11d{bottom:440.130000px;}
.y1ba{bottom:442.470000px;}
.y1b{bottom:443.370000px;}
.y78{bottom:444.990000px;}
.y193{bottom:449.760000px;}
.y14e{bottom:451.020000px;}
.y1b9{bottom:460.110000px;}
.y1a{bottom:460.920000px;}
.yf3{bottom:461.640000px;}
.y77{bottom:462.630000px;}
.ya1{bottom:462.720000px;}
.yca{bottom:464.250000px;}
.y11b{bottom:467.490000px;}
.y192{bottom:468.210000px;}
.y14d{bottom:468.660000px;}
.y4a{bottom:474.540000px;}
.y16f{bottom:475.530000px;}
.y19{bottom:478.590000px;}
.y76{bottom:480.210000px;}
.ya0{bottom:480.300000px;}
.yc9{bottom:481.830000px;}
.y14c{bottom:486.240000px;}
.y191{bottom:486.690000px;}
.yf2{bottom:488.220000px;}
.y49{bottom:492.090000px;}
.y16e{bottom:493.170000px;}
.y119{bottom:494.790000px;}
.y18{bottom:496.140000px;}
.y75{bottom:497.760000px;}
.y9f{bottom:497.850000px;}
.y190{bottom:504.240000px;}
.y1b8{bottom:504.330000px;}
.y48{bottom:509.730000px;}
.y17{bottom:513.690000px;}
.y74{bottom:515.400000px;}
.y9e{bottom:515.490000px;}
.yc8{bottom:517.470000px;}
.y16d{bottom:519.720000px;}
.y14b{bottom:521.790000px;}
.y18f{bottom:522.690000px;}
.yf1{bottom:523.860000px;}
.y47{bottom:527.280000px;}
.y1b7{bottom:530.880000px;}
.y16{bottom:531.330000px;}
.y9d{bottom:533.040000px;}
.yc7{bottom:535.020000px;}
.y18e{bottom:541.140000px;}
.yf0{bottom:541.410000px;}
.y73{bottom:541.950000px;}
.y118{bottom:543.480000px;}
.y46{bottom:544.830000px;}
.y1b6{bottom:548.430000px;}
.y15{bottom:548.880000px;}
.y9c{bottom:550.590000px;}
.yc6{bottom:552.660000px;}
.y14a{bottom:554.370000px;}
.y16c{bottom:555.270000px;}
.y18d{bottom:558.690000px;}
.yef{bottom:559.770000px;}
.y45{bottom:562.470000px;}
.y117{bottom:570.120000px;}
.yc5{bottom:570.210000px;}
.y149{bottom:572.820000px;}
.y16b{bottom:572.910000px;}
.y1b5{bottom:575.070000px;}
.y14{bottom:575.790000px;}
.y18c{bottom:577.140000px;}
.y9b{bottom:577.230000px;}
.y72{bottom:577.590000px;}
.yee{bottom:578.220000px;}
.y44{bottom:580.020000px;}
.y16a{bottom:590.460000px;}
.y1b4{bottom:592.620000px;}
.y71{bottom:595.140000px;}
.y18b{bottom:595.500000px;}
.yed{bottom:595.770000px;}
.yc4{bottom:596.760000px;}
.y148{bottom:600.270000px;}
.y116{bottom:605.670000px;}
.y43{bottom:606.660000px;}
.y70{bottom:612.690000px;}
.y9a{bottom:612.780000px;}
.yec{bottom:614.220000px;}
.y169{bottom:617.100000px;}
.y1b3{bottom:619.260000px;}
.y115{bottom:623.220000px;}
.y18a{bottom:623.310000px;}
.y13{bottom:624.030000px;}
.y6f{bottom:630.330000px;}
.y99{bottom:630.420000px;}
.yeb{bottom:631.770000px;}
.yc3{bottom:632.400000px;}
.y147{bottom:635.820000px;}
.y1b2{bottom:636.810000px;}
.y114{bottom:641.670000px;}
.y42{bottom:642.210000px;}
.yc2{bottom:649.950000px;}
.y168{bottom:652.650000px;}
.y146{bottom:653.370000px;}
.yea{bottom:659.220000px;}
.y41{bottom:659.760000px;}
.y12{bottom:659.850000px;}
.y189{bottom:660.210000px;}
.y1b1{bottom:663.360000px;}
.y6e{bottom:665.880000px;}
.y98{bottom:665.970000px;}
.y40{bottom:677.400000px;}
.y113{bottom:677.670000px;}
.y188{bottom:678.750000px;}
.y145{bottom:679.920000px;}
.y1b0{bottom:681.000000px;}
.y6d{bottom:683.520000px;}
.yc1{bottom:685.590000px;}
.y167{bottom:688.200000px;}
.ye9{bottom:694.860000px;}
.y3f{bottom:694.950000px;}
.y112{bottom:695.220000px;}
.y11{bottom:695.850000px;}
.y187{bottom:696.300000px;}
.y6c{bottom:701.070000px;}
.y97{bottom:701.160000px;}
.yc0{bottom:703.140000px;}
.y1af{bottom:707.550000px;}
.y144{bottom:709.980000px;}
.ye8{bottom:712.410000px;}
.y111{bottom:713.670000px;}
.y186{bottom:714.750000px;}
.y6b{bottom:718.620000px;}
.y96{bottom:718.710000px;}
.ybf{bottom:720.690000px;}
.y166{bottom:723.840000px;}
.y1ae{bottom:725.190000px;}
.ye7{bottom:730.050000px;}
.y3e{bottom:730.590000px;}
.y110{bottom:731.310000px;}
.y185{bottom:732.300000px;}
.y10{bottom:735.630000px;}
.y6a{bottom:736.260000px;}
.y95{bottom:736.350000px;}
.y143{bottom:737.250000px;}
.ybe{bottom:738.330000px;}
.y165{bottom:741.390000px;}
.y3d{bottom:748.140000px;}
.y10f{bottom:748.860000px;}
.yf{bottom:749.850000px;}
.y184{bottom:750.660000px;}
.y1ad{bottom:751.740000px;}
.ybd{bottom:755.880000px;}
.y69{bottom:762.810000px;}
.y94{bottom:762.900000px;}
.ye6{bottom:765.600000px;}
.y3c{bottom:765.690000px;}
.y164{bottom:768.030000px;}
.y1ac{bottom:769.290000px;}
.ye{bottom:771.630000px;}
.y10e{bottom:776.310000px;}
.y183{bottom:778.470000px;}
.ybc{bottom:782.520000px;}
.ye5{bottom:783.150000px;}
.y3b{bottom:783.330000px;}
.yd{bottom:785.850000px;}
.y142{bottom:786.030000px;}
.y1ab{bottom:786.930000px;}
.y68{bottom:798.450000px;}
.ye4{bottom:800.790000px;}
.y3a{bottom:800.880000px;}
.y163{bottom:803.580000px;}
.yc{bottom:807.630000px;}
.y10d{bottom:812.220000px;}
.y141{bottom:812.580000px;}
.y1aa{bottom:813.480000px;}
.y182{bottom:815.820000px;}
.y67{bottom:816.000000px;}
.y93{bottom:816.090000px;}
.ybb{bottom:818.070000px;}
.ye3{bottom:818.340000px;}
.y39{bottom:818.520000px;}
.y135{bottom:818.790000px;}
.yb{bottom:821.850000px;}
.y1a9{bottom:831.030000px;}
.y66{bottom:833.550000px;}
.y92{bottom:833.640000px;}
.yba{bottom:835.620000px;}
.ye2{bottom:835.890000px;}
.y134{bottom:836.340000px;}
.y162{bottom:839.130000px;}
.ya{bottom:843.630000px;}
.y140{bottom:845.160000px;}
.y65{bottom:851.190000px;}
.y91{bottom:851.280000px;}
.y181{bottom:852.810000px;}
.y133{bottom:853.890000px;}
.y38{bottom:854.070000px;}
.y161{bottom:856.770000px;}
.y1a8{bottom:857.670000px;}
.y10c{bottom:860.460000px;}
.y9{bottom:861.630000px;}
.ye1{bottom:862.530000px;}
.y180{bottom:870.450000px;}
.yb9{bottom:871.260000px;}
.y37{bottom:871.620000px;}
.y1a7{bottom:875.220000px;}
.y8{bottom:875.850000px;}
.y10b{bottom:878.010000px;}
.y132{bottom:880.530000px;}
.y13f{bottom:880.710000px;}
.y160{bottom:883.320000px;}
.y64{bottom:886.740000px;}
.y90{bottom:886.830000px;}
.yb8{bottom:888.810000px;}
.y36{bottom:889.260000px;}
.y7{bottom:897.630000px;}
.ye0{bottom:898.080000px;}
.y13e{bottom:898.350000px;}
.y1a6{bottom:901.860000px;}
.y63{bottom:904.380000px;}
.y17f{bottom:906.000000px;}
.yb7{bottom:906.450000px;}
.y35{bottom:906.810000px;}
.y10a{bottom:913.560000px;}
.y131{bottom:915.360000px;}
.ydf{bottom:915.720000px;}
.y15f{bottom:919.230000px;}
.y1a5{bottom:919.410000px;}
.y62{bottom:921.930000px;}
.y8f{bottom:922.020000px;}
.y17e{bottom:923.550000px;}
.yb6{bottom:924.000000px;}
.y34{bottom:924.450000px;}
.y13d{bottom:924.900000px;}
.y130{bottom:927.600000px;}
.y6{bottom:929.940000px;}
.y109{bottom:932.010000px;}
.y61{bottom:939.480000px;}
.y8e{bottom:939.570000px;}
.yb5{bottom:941.550000px;}
.y33{bottom:942.000000px;}
.y1a4{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y108{bottom:949.560000px;}
.yde{bottom:951.270000px;}
.y12f{bottom:954.870000px;}
.y60{bottom:957.120000px;}
.y8d{bottom:957.210000px;}
.yb4{bottom:959.190000px;}
.y32{bottom:959.550000px;}
.y1a3{bottom:963.600000px;}
.y15e{bottom:967.560000px;}
.y107{bottom:968.010000px;}
.ydd{bottom:969.630000px;}
.y17d{bottom:976.740000px;}
.y12e{bottom:982.230000px;}
.y8c{bottom:983.760000px;}
.y15d{bottom:985.110000px;}
.yb3{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.ydc{bottom:988.080000px;}
.y1a2{bottom:990.150000px;}
.y5f{bottom:992.670000px;}
.y31{bottom:995.190000px;}
.y106{bottom:995.460000px;}
.y15c{bottom:1003.470000px;}
.ydb{bottom:1006.440000px;}
.y1a1{bottom:1007.790000px;}
.y12d{bottom:1009.590000px;}
.y5e{bottom:1010.250000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1012.770000px;}
.y8b{bottom:1016.370000px;}
.yb2{bottom:1021.680000px;}
.y15b{bottom:1021.950000px;}
.y17c{bottom:1029.960000px;}
.y2f{bottom:1030.320000px;}
.y105{bottom:1031.040000px;}
.y1a0{bottom:1034.370000px;}
.y5d{bottom:1036.890000px;}
.y15a{bottom:1040.310000px;}
.yda{bottom:1042.920000px;}
.y2e{bottom:1047.960000px;}
.y104{bottom:1048.680000px;}
.y8a{bottom:1051.920000px;}
.y17b{bottom:1056.870000px;}
.yd9{bottom:1060.560000px;}
.y12c{bottom:1064.250000px;}
.y2d{bottom:1065.510000px;}
.y159{bottom:1068.120000px;}
.y89{bottom:1069.560000px;}
.yb1{bottom:1069.920000px;}
.y5c{bottom:1072.800000px;}
.y19f{bottom:1078.560000px;}
.y2c{bottom:1083.150000px;}
.y103{bottom:1084.230000px;}
.yd8{bottom:1087.110000px;}
.yb0{bottom:1087.560000px;}
.y12b{bottom:1091.610000px;}
.y19e{bottom:1096.110000px;}
.y2b{bottom:1100.700000px;}
.y102{bottom:1102.590000px;}
.y88{bottom:1105.110000px;}
.y5b{bottom:1121.040000px;}
.y87{bottom:1122.750000px;}
.y2a{bottom:1127.610000px;}
.y5a{bottom:1139.400000px;}
.y86{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h10{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h12{height:40.539023px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hd{height:90.987539px;}
.he{height:91.222383px;}
.hc{height:96.027539px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:51.750000px;}
.w11{width:65.070000px;}
.w12{width:67.080000px;}
.w13{width:83.160000px;}
.w6{width:132.570000px;}
.w10{width:133.200000px;}
.w4{width:135.360000px;}
.w3{width:139.530000px;}
.wa{width:141.750000px;}
.we{width:142.680000px;}
.w8{width:145.260000px;}
.wf{width:149.490000px;}
.w5{width:156.090000px;}
.wd{width:157.320000px;}
.w9{width:179.580000px;}
.wb{width:195.960000px;}
.wc{width:202.680000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x23{left:111.239987px;}
.x5{left:122.039987px;}
.xa{left:137.520000px;}
.x11{left:142.380000px;}
.x15{left:156.780000px;}
.x1a{left:200.819987px;}
.x2{left:206.939987px;}
.x1b{left:221.160000px;}
.x18{left:253.289987px;}
.x1e{left:271.290000px;}
.xc{left:277.770000px;}
.x12{left:282.720000px;}
.x8{left:318.989987px;}
.x16{left:337.080000px;}
.x9{left:365.249987px;}
.x10{left:375.149987px;}
.x1c{left:379.200000px;}
.x6{left:380.369987px;}
.x1f{left:405.210000px;}
.xd{left:413.850000px;}
.x13{left:428.700000px;}
.x7{left:431.939987px;}
.x20{left:471.000000px;}
.x1d{left:522.600000px;}
.x17{left:533.760000px;}
.x21{left:538.800000px;}
.xe{left:570.660000px;}
.x19{left:599.639987px;}
.x14{left:609.090000px;}
.xf{left:703.950000px;}
.x22{left:792.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v5{vertical-align:16.000000pt;}
.v6{vertical-align:35.840000pt;}
.v4{vertical-align:40.320000pt;}
.v7{vertical-align:49.280000pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls7{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.034560pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.053867pt;}
.ls10{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.ls19{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:2.322240pt;}
.ls18{letter-spacing:14.800320pt;}
.ls17{letter-spacing:17.148907pt;}
.ls20{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.791360pt;}
.ws4{word-spacing:-11.756800pt;}
.wsa{word-spacing:-11.700267pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.697439pt;}
._e{margin-left:-2.798659pt;}
._6{margin-left:-1.905813pt;}
._0{margin-left:-0.981333pt;}
._3{width:0.894869pt;}
._b{width:2.297729pt;}
._9{width:3.344640pt;}
._8{width:4.235520pt;}
._10{width:5.277014pt;}
._5{width:6.543361pt;}
._4{width:7.435520pt;}
._a{width:8.715520pt;}
._c{width:9.886400pt;}
._14{width:10.848320pt;}
._12{width:13.253334pt;}
._13{width:14.212329pt;}
._7{width:15.115520pt;}
._f{width:16.619733pt;}
._2{width:17.669303pt;}
._1{width:18.789344pt;}
._d{width:20.087511pt;}
._18{width:20.989292pt;}
._15{width:23.513600pt;}
._16{width:89.736642pt;}
._17{width:172.288320pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:6.960000pt;}
.y11c{bottom:6.986667pt;}
.y11a{bottom:7.040000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y101{bottom:99.066667pt;}
.y59{bottom:102.826667pt;}
.y12a{bottom:104.906667pt;}
.y85{bottom:112.346667pt;}
.yd7{bottom:116.106667pt;}
.y1c8{bottom:118.506667pt;}
.y58{bottom:119.226667pt;}
.y129{bottom:120.506667pt;}
.y19d{bottom:123.226667pt;}
.y84{bottom:128.026667pt;}
.y13c{bottom:130.746667pt;}
.y100{bottom:131.466667pt;}
.yd6{bottom:131.706667pt;}
.y1c7{bottom:134.106667pt;}
.yaf{bottom:136.426667pt;}
.y19c{bottom:138.906667pt;}
.y57{bottom:143.626667pt;}
.y128{bottom:144.106667pt;}
.y83{bottom:151.626667pt;}
.yae{bottom:152.026667pt;}
.y17a{bottom:154.746667pt;}
.yd5{bottom:155.386667pt;}
.y27{bottom:156.906667pt;}
.y1c6{bottom:157.786667pt;}
.y158{bottom:161.066667pt;}
.y13b{bottom:162.346667pt;}
.y19b{bottom:162.506667pt;}
.yff{bottom:163.066667pt;}
.yad{bottom:167.706667pt;}
.y179{bottom:170.346667pt;}
.y26{bottom:172.826667pt;}
.y1c5{bottom:173.386667pt;}
.y127{bottom:175.146667pt;}
.y56{bottom:175.226667pt;}
.y157{bottom:176.666667pt;}
.y19a{bottom:178.106667pt;}
.y82{bottom:183.226667pt;}
.yac{bottom:183.306667pt;}
.y126{bottom:185.946667pt;}
.yd4{bottom:186.986667pt;}
.y55{bottom:191.626667pt;}
.y156{bottom:192.266667pt;}
.y13a{bottom:193.946667pt;}
.yfe{bottom:194.746667pt;}
.y1c4{bottom:196.986667pt;}
.y81{bottom:198.906667pt;}
.y199{bottom:201.786667pt;}
.y178{bottom:202.026667pt;}
.yd3{bottom:202.586667pt;}
.y25{bottom:205.786667pt;}
.y54{bottom:207.226667pt;}
.y125{bottom:210.266667pt;}
.y1c3{bottom:212.666667pt;}
.y80{bottom:214.506667pt;}
.yab{bottom:214.986667pt;}
.y198{bottom:217.386667pt;}
.y177{bottom:217.626667pt;}
.yfd{bottom:218.346667pt;}
.y24{bottom:221.386667pt;}
.y53{bottom:223.626667pt;}
.y155{bottom:223.946667pt;}
.y139{bottom:225.626667pt;}
.yaa{bottom:230.586667pt;}
.y197{bottom:233.066667pt;}
.yd2{bottom:234.186667pt;}
.y124{bottom:234.586667pt;}
.y1c2{bottom:236.266667pt;}
.y23{bottom:237.066667pt;}
.y154{bottom:239.546667pt;}
.y52{bottom:239.946667pt;}
.y138{bottom:241.226667pt;}
.y176{bottom:241.306667pt;}
.yd1{bottom:243.146667pt;}
.y7f{bottom:246.106667pt;}
.ya9{bottom:246.186667pt;}
.yfc{bottom:249.946667pt;}
.y1c1{bottom:251.946667pt;}
.y22{bottom:252.666667pt;}
.y196{bottom:256.986667pt;}
.y7e{bottom:261.786667pt;}
.ya8{bottom:261.866667pt;}
.y137{bottom:264.906667pt;}
.yfb{bottom:266.346667pt;}
.yd0{bottom:267.146667pt;}
.y153{bottom:271.226667pt;}
.y51{bottom:272.346667pt;}
.y175{bottom:272.906667pt;}
.y1c0{bottom:275.546667pt;}
.y7d{bottom:277.386667pt;}
.ya7{bottom:277.466667pt;}
.y123{bottom:277.866667pt;}
.yfa{bottom:281.946667pt;}
.ycf{bottom:283.466667pt;}
.y21{bottom:284.266667pt;}
.y152{bottom:286.826667pt;}
.y50{bottom:287.946667pt;}
.y174{bottom:288.506667pt;}
.y1bf{bottom:291.146667pt;}
.y7c{bottom:293.066667pt;}
.y136{bottom:296.506667pt;}
.yf9{bottom:298.346667pt;}
.yce{bottom:299.866667pt;}
.y20{bottom:299.946667pt;}
.ya6{bottom:309.146667pt;}
.y122{bottom:309.466667pt;}
.y4f{bottom:311.626667pt;}
.yf8{bottom:313.946667pt;}
.y1be{bottom:314.826667pt;}
.y1f{bottom:315.546667pt;}
.y7b{bottom:316.666667pt;}
.y151{bottom:318.426667pt;}
.y173{bottom:320.186667pt;}
.y195{bottom:323.786667pt;}
.ya5{bottom:324.746667pt;}
.y121{bottom:325.146667pt;}
.yf7{bottom:330.346667pt;}
.y1bd{bottom:330.426667pt;}
.y1e{bottom:331.226667pt;}
.ycd{bottom:332.266667pt;}
.y150{bottom:334.106667pt;}
.y172{bottom:335.786667pt;}
.ya4{bottom:340.346667pt;}
.y4e{bottom:343.226667pt;}
.yf6{bottom:345.946667pt;}
.y1d{bottom:346.826667pt;}
.y7a{bottom:348.266667pt;}
.y1bc{bottom:354.106667pt;}
.ya3{bottom:356.026667pt;}
.y120{bottom:356.106667pt;}
.y194{bottom:356.986667pt;}
.y14f{bottom:358.026667pt;}
.y4d{bottom:358.906667pt;}
.y171{bottom:359.466667pt;}
.yf5{bottom:362.346667pt;}
.y1c{bottom:362.426667pt;}
.ycc{bottom:363.786667pt;}
.y79{bottom:363.946667pt;}
.y11f{bottom:366.906667pt;}
.y1bb{bottom:369.706667pt;}
.ycb{bottom:372.746667pt;}
.y4c{bottom:374.506667pt;}
.yf4{bottom:377.946667pt;}
.ya2{bottom:379.626667pt;}
.y4b{bottom:390.106667pt;}
.y170{bottom:391.066667pt;}
.y11d{bottom:391.226667pt;}
.y1ba{bottom:393.306667pt;}
.y1b{bottom:394.106667pt;}
.y78{bottom:395.546667pt;}
.y193{bottom:399.786667pt;}
.y14e{bottom:400.906667pt;}
.y1b9{bottom:408.986667pt;}
.y1a{bottom:409.706667pt;}
.yf3{bottom:410.346667pt;}
.y77{bottom:411.226667pt;}
.ya1{bottom:411.306667pt;}
.yca{bottom:412.666667pt;}
.y11b{bottom:415.546667pt;}
.y192{bottom:416.186667pt;}
.y14d{bottom:416.586667pt;}
.y4a{bottom:421.813333pt;}
.y16f{bottom:422.693333pt;}
.y19{bottom:425.413333pt;}
.y76{bottom:426.853333pt;}
.ya0{bottom:426.933333pt;}
.yc9{bottom:428.293333pt;}
.y14c{bottom:432.213333pt;}
.y191{bottom:432.613333pt;}
.yf2{bottom:433.973333pt;}
.y49{bottom:437.413333pt;}
.y16e{bottom:438.373333pt;}
.y119{bottom:439.813333pt;}
.y18{bottom:441.013333pt;}
.y75{bottom:442.453333pt;}
.y9f{bottom:442.533333pt;}
.y190{bottom:448.213333pt;}
.y1b8{bottom:448.293333pt;}
.y48{bottom:453.093333pt;}
.y17{bottom:456.613333pt;}
.y74{bottom:458.133333pt;}
.y9e{bottom:458.213333pt;}
.yc8{bottom:459.973333pt;}
.y16d{bottom:461.973333pt;}
.y14b{bottom:463.813333pt;}
.y18f{bottom:464.613333pt;}
.yf1{bottom:465.653333pt;}
.y47{bottom:468.693333pt;}
.y1b7{bottom:471.893333pt;}
.y16{bottom:472.293333pt;}
.y9d{bottom:473.813333pt;}
.yc7{bottom:475.573333pt;}
.y18e{bottom:481.013333pt;}
.yf0{bottom:481.253333pt;}
.y73{bottom:481.733333pt;}
.y118{bottom:483.093333pt;}
.y46{bottom:484.293333pt;}
.y1b6{bottom:487.493333pt;}
.y15{bottom:487.893333pt;}
.y9c{bottom:489.413333pt;}
.yc6{bottom:491.253333pt;}
.y14a{bottom:492.773333pt;}
.y16c{bottom:493.573333pt;}
.y18d{bottom:496.613333pt;}
.yef{bottom:497.573333pt;}
.y45{bottom:499.973333pt;}
.y117{bottom:506.773333pt;}
.yc5{bottom:506.853333pt;}
.y149{bottom:509.173333pt;}
.y16b{bottom:509.253333pt;}
.y1b5{bottom:511.173333pt;}
.y14{bottom:511.813333pt;}
.y18c{bottom:513.013333pt;}
.y9b{bottom:513.093333pt;}
.y72{bottom:513.413333pt;}
.yee{bottom:513.973333pt;}
.y44{bottom:515.573333pt;}
.y16a{bottom:524.853333pt;}
.y1b4{bottom:526.773333pt;}
.y71{bottom:529.013333pt;}
.y18b{bottom:529.333333pt;}
.yed{bottom:529.573333pt;}
.yc4{bottom:530.453333pt;}
.y148{bottom:533.573333pt;}
.y116{bottom:538.373333pt;}
.y43{bottom:539.253333pt;}
.y70{bottom:544.613333pt;}
.y9a{bottom:544.693333pt;}
.yec{bottom:545.973333pt;}
.y169{bottom:548.533333pt;}
.y1b3{bottom:550.453333pt;}
.y115{bottom:553.973333pt;}
.y18a{bottom:554.053333pt;}
.y13{bottom:554.693333pt;}
.y6f{bottom:560.293333pt;}
.y99{bottom:560.373333pt;}
.yeb{bottom:561.573333pt;}
.yc3{bottom:562.133333pt;}
.y147{bottom:565.173333pt;}
.y1b2{bottom:566.053333pt;}
.y114{bottom:570.373333pt;}
.y42{bottom:570.853333pt;}
.yc2{bottom:577.733333pt;}
.y168{bottom:580.133333pt;}
.y146{bottom:580.773333pt;}
.yea{bottom:585.973333pt;}
.y41{bottom:586.453333pt;}
.y12{bottom:586.533333pt;}
.y189{bottom:586.853333pt;}
.y1b1{bottom:589.653333pt;}
.y6e{bottom:591.893333pt;}
.y98{bottom:591.973333pt;}
.y40{bottom:602.133333pt;}
.y113{bottom:602.373333pt;}
.y188{bottom:603.333333pt;}
.y145{bottom:604.373333pt;}
.y1b0{bottom:605.333333pt;}
.y6d{bottom:607.573333pt;}
.yc1{bottom:609.413333pt;}
.y167{bottom:611.733333pt;}
.ye9{bottom:617.653333pt;}
.y3f{bottom:617.733333pt;}
.y112{bottom:617.973333pt;}
.y11{bottom:618.533333pt;}
.y187{bottom:618.933333pt;}
.y6c{bottom:623.173333pt;}
.y97{bottom:623.253333pt;}
.yc0{bottom:625.013333pt;}
.y1af{bottom:628.933333pt;}
.y144{bottom:631.093333pt;}
.ye8{bottom:633.253333pt;}
.y111{bottom:634.373333pt;}
.y186{bottom:635.333333pt;}
.y6b{bottom:638.773333pt;}
.y96{bottom:638.853333pt;}
.ybf{bottom:640.613333pt;}
.y166{bottom:643.413333pt;}
.y1ae{bottom:644.613333pt;}
.ye7{bottom:648.933333pt;}
.y3e{bottom:649.413333pt;}
.y110{bottom:650.053333pt;}
.y185{bottom:650.933333pt;}
.y10{bottom:653.893333pt;}
.y6a{bottom:654.453333pt;}
.y95{bottom:654.533333pt;}
.y143{bottom:655.333333pt;}
.ybe{bottom:656.293333pt;}
.y165{bottom:659.013333pt;}
.y3d{bottom:665.013333pt;}
.y10f{bottom:665.653333pt;}
.yf{bottom:666.533333pt;}
.y184{bottom:667.253333pt;}
.y1ad{bottom:668.213333pt;}
.ybd{bottom:671.893333pt;}
.y69{bottom:678.053333pt;}
.y94{bottom:678.133333pt;}
.ye6{bottom:680.533333pt;}
.y3c{bottom:680.613333pt;}
.y164{bottom:682.693333pt;}
.y1ac{bottom:683.813333pt;}
.ye{bottom:685.893333pt;}
.y10e{bottom:690.053333pt;}
.y183{bottom:691.973333pt;}
.ybc{bottom:695.573333pt;}
.ye5{bottom:696.133333pt;}
.y3b{bottom:696.293333pt;}
.yd{bottom:698.533333pt;}
.y142{bottom:698.693333pt;}
.y1ab{bottom:699.493333pt;}
.y68{bottom:709.733333pt;}
.ye4{bottom:711.813333pt;}
.y3a{bottom:711.893333pt;}
.y163{bottom:714.293333pt;}
.yc{bottom:717.893333pt;}
.y10d{bottom:721.973333pt;}
.y141{bottom:722.293333pt;}
.y1aa{bottom:723.093333pt;}
.y182{bottom:725.173333pt;}
.y67{bottom:725.333333pt;}
.y93{bottom:725.413333pt;}
.ybb{bottom:727.173333pt;}
.ye3{bottom:727.413333pt;}
.y39{bottom:727.573333pt;}
.y135{bottom:727.813333pt;}
.yb{bottom:730.533333pt;}
.y1a9{bottom:738.693333pt;}
.y66{bottom:740.933333pt;}
.y92{bottom:741.013333pt;}
.yba{bottom:742.773333pt;}
.ye2{bottom:743.013333pt;}
.y134{bottom:743.413333pt;}
.y162{bottom:745.893333pt;}
.ya{bottom:749.893333pt;}
.y140{bottom:751.253333pt;}
.y65{bottom:756.613333pt;}
.y91{bottom:756.693333pt;}
.y181{bottom:758.053333pt;}
.y133{bottom:759.013333pt;}
.y38{bottom:759.173333pt;}
.y161{bottom:761.573333pt;}
.y1a8{bottom:762.373333pt;}
.y10c{bottom:764.853333pt;}
.y9{bottom:765.893333pt;}
.ye1{bottom:766.693333pt;}
.y180{bottom:773.733333pt;}
.yb9{bottom:774.453333pt;}
.y37{bottom:774.773333pt;}
.y1a7{bottom:777.973333pt;}
.y8{bottom:778.533333pt;}
.y10b{bottom:780.453333pt;}
.y132{bottom:782.693333pt;}
.y13f{bottom:782.853333pt;}
.y160{bottom:785.173333pt;}
.y64{bottom:788.213333pt;}
.y90{bottom:788.293333pt;}
.yb8{bottom:790.053333pt;}
.y36{bottom:790.453333pt;}
.y7{bottom:797.893333pt;}
.ye0{bottom:798.293333pt;}
.y13e{bottom:798.533333pt;}
.y1a6{bottom:801.653333pt;}
.y63{bottom:803.893333pt;}
.y17f{bottom:805.333333pt;}
.yb7{bottom:805.733333pt;}
.y35{bottom:806.053333pt;}
.y10a{bottom:812.053333pt;}
.y131{bottom:813.653333pt;}
.ydf{bottom:813.973333pt;}
.y15f{bottom:817.093333pt;}
.y1a5{bottom:817.253333pt;}
.y62{bottom:819.493333pt;}
.y8f{bottom:819.573333pt;}
.y17e{bottom:820.933333pt;}
.yb6{bottom:821.333333pt;}
.y34{bottom:821.733333pt;}
.y13d{bottom:822.133333pt;}
.y130{bottom:824.533333pt;}
.y6{bottom:826.613333pt;}
.y109{bottom:828.453333pt;}
.y61{bottom:835.093333pt;}
.y8e{bottom:835.173333pt;}
.yb5{bottom:836.933333pt;}
.y33{bottom:837.333333pt;}
.y1a4{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y108{bottom:844.053333pt;}
.yde{bottom:845.573333pt;}
.y12f{bottom:848.773333pt;}
.y60{bottom:850.773333pt;}
.y8d{bottom:850.853333pt;}
.yb4{bottom:852.613333pt;}
.y32{bottom:852.933333pt;}
.y1a3{bottom:856.533333pt;}
.y15e{bottom:860.053333pt;}
.y107{bottom:860.453333pt;}
.ydd{bottom:861.893333pt;}
.y17d{bottom:868.213333pt;}
.y12e{bottom:873.093333pt;}
.y8c{bottom:874.453333pt;}
.y15d{bottom:875.653333pt;}
.yb3{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.ydc{bottom:878.293333pt;}
.y1a2{bottom:880.133333pt;}
.y5f{bottom:882.373333pt;}
.y31{bottom:884.613333pt;}
.y106{bottom:884.853333pt;}
.y15c{bottom:891.973333pt;}
.ydb{bottom:894.613333pt;}
.y1a1{bottom:895.813333pt;}
.y12d{bottom:897.413333pt;}
.y5e{bottom:898.000000pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:900.240000pt;}
.y8b{bottom:903.440000pt;}
.yb2{bottom:908.160000pt;}
.y15b{bottom:908.400000pt;}
.y17c{bottom:915.520000pt;}
.y2f{bottom:915.840000pt;}
.y105{bottom:916.480000pt;}
.y1a0{bottom:919.440000pt;}
.y5d{bottom:921.680000pt;}
.y15a{bottom:924.720000pt;}
.yda{bottom:927.040000pt;}
.y2e{bottom:931.520000pt;}
.y104{bottom:932.160000pt;}
.y8a{bottom:935.040000pt;}
.y17b{bottom:939.440000pt;}
.yd9{bottom:942.720000pt;}
.y12c{bottom:946.000000pt;}
.y2d{bottom:947.120000pt;}
.y159{bottom:949.440000pt;}
.y89{bottom:950.720000pt;}
.yb1{bottom:951.040000pt;}
.y5c{bottom:953.600000pt;}
.y19f{bottom:958.720000pt;}
.y2c{bottom:962.800000pt;}
.y103{bottom:963.760000pt;}
.yd8{bottom:966.320000pt;}
.yb0{bottom:966.720000pt;}
.y12b{bottom:970.320000pt;}
.y19e{bottom:974.320000pt;}
.y2b{bottom:978.400000pt;}
.y102{bottom:980.080000pt;}
.y88{bottom:982.320000pt;}
.y5b{bottom:996.480000pt;}
.y87{bottom:998.000000pt;}
.y2a{bottom:1002.320000pt;}
.y5a{bottom:1012.800000pt;}
.y86{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h10{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h12{height:36.034687pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hd{height:80.877812pt;}
.he{height:81.086563pt;}
.hc{height:85.357812pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:46.000000pt;}
.w11{width:57.840000pt;}
.w12{width:59.626667pt;}
.w13{width:73.920000pt;}
.w6{width:117.840000pt;}
.w10{width:118.400000pt;}
.w4{width:120.320000pt;}
.w3{width:124.026667pt;}
.wa{width:126.000000pt;}
.we{width:126.826667pt;}
.w8{width:129.120000pt;}
.wf{width:132.880000pt;}
.w5{width:138.746667pt;}
.wd{width:139.840000pt;}
.w9{width:159.626667pt;}
.wb{width:174.186667pt;}
.wc{width:180.160000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x23{left:98.879988pt;}
.x5{left:108.479988pt;}
.xa{left:122.240000pt;}
.x11{left:126.560000pt;}
.x15{left:139.360000pt;}
.x1a{left:178.506655pt;}
.x2{left:183.946655pt;}
.x1b{left:196.586667pt;}
.x18{left:225.146655pt;}
.x1e{left:241.146667pt;}
.xc{left:246.906667pt;}
.x12{left:251.306667pt;}
.x8{left:283.546655pt;}
.x16{left:299.626667pt;}
.x9{left:324.666655pt;}
.x10{left:333.466655pt;}
.x1c{left:337.066667pt;}
.x6{left:338.106655pt;}
.x1f{left:360.186667pt;}
.xd{left:367.866667pt;}
.x13{left:381.066667pt;}
.x7{left:383.946655pt;}
.x20{left:418.666667pt;}
.x1d{left:464.533333pt;}
.x17{left:474.453333pt;}
.x21{left:478.933333pt;}
.xe{left:507.253333pt;}
.x19{left:533.013322pt;}
.x14{left:541.413333pt;}
.xf{left:625.733333pt;}
.x22{left:704.053322pt;}
.x3{left:711.413322pt;}
}




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