
    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_692a1cdca0aca10875ca14f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e6458da3d9d1dd422c1264ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9bc886b0222e4af93e9d3c48.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8579b5ce2bb78029f5c26f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea37bbc78df44d9763be37c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_3256badf820f7eb4274d1373.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_2662ae9af96b7c2b64f80b9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed8811daedb24b62923c572f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6db3b3b34575bd24f38c35fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_4ae5bfffa478b114ede1d3c1.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-0.828000px;}
.ls3{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls8{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls15{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.153360px;}
.ls11{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.900000px;}
.ls10{letter-spacing:4.500000px;}
.lse{letter-spacing:5.220000px;}
.ls12{letter-spacing:9.540000px;}
.lsd{letter-spacing:10.260000px;}
.ls13{letter-spacing:23.364000px;}
.ls5{letter-spacing:25.308000px;}
.ls4{letter-spacing:28.062720px;}
.ls7{letter-spacing:52.668000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws5{word-spacing:-19.440000px;}
.ws2{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.wsb{word-spacing:-14.004000px;}
.ws6{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.924000px;}
.ws7{word-spacing:-12.906000px;}
.wsc{word-spacing:-12.672000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.170000px;}
._0{width:1.002000px;}
._3{width:2.129280px;}
._5{width:3.227040px;}
._9{width:4.703040px;}
._c{width:5.730000px;}
._a{width:7.244880px;}
._b{width:8.245440px;}
._4{width:9.644544px;}
._11{width:11.577456px;}
._16{width:15.102000px;}
._7{width:16.218000px;}
._6{width:17.629200px;}
._f{width:19.062000px;}
._12{width:20.250000px;}
._10{width:21.924000px;}
._14{width:23.490000px;}
._d{width:25.380000px;}
._e{width:26.730000px;}
._8{width:28.638960px;}
._1c{width:29.700000px;}
._1d{width:30.966000px;}
._13{width:32.184000px;}
._17{width:34.182000px;}
._18{width:35.262000px;}
._29{width:36.564000px;}
._1a{width:37.854000px;}
._24{width:39.066000px;}
._19{width:40.122000px;}
._2a{width:41.142000px;}
._25{width:42.174000px;}
._1b{width:43.524000px;}
._2c{width:45.018000px;}
._15{width:46.062000px;}
._2f{width:49.302000px;}
._1e{width:50.760000px;}
._2d{width:54.108000px;}
._22{width:56.268000px;}
._23{width:58.020000px;}
._27{width:60.372000px;}
._26{width:61.488000px;}
._28{width:64.314000px;}
._30{width:67.770000px;}
._31{width:69.102000px;}
._2b{width:80.082000px;}
._2e{width:81.918000px;}
._21{width:106.110000px;}
._20{width:114.588000px;}
._1f{width:116.706240px;}
._2{width:2903.467200px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.960000px;}
.y2{bottom:6.120000px;}
.y38{bottom:6.990000px;}
.y10d{bottom:9.720000px;}
.y11c{bottom:10.065000px;}
.y110{bottom:10.080000px;}
.y117{bottom:10.260000px;}
.y1c{bottom:11.805000px;}
.y1a{bottom:13.065000px;}
.y122{bottom:18.885000px;}
.y120{bottom:19.065000px;}
.y111{bottom:19.080000px;}
.y6{bottom:22.500000px;}
.y10c{bottom:27.540000px;}
.y11f{bottom:27.885000px;}
.y115{bottom:27.900000px;}
.y10f{bottom:28.080000px;}
.y19{bottom:37.725000px;}
.y5{bottom:41.040000px;}
.y31{bottom:41.430000px;}
.y4{bottom:56.880000px;}
.y1e{bottom:60.585000px;}
.y15e{bottom:82.620000px;}
.y108{bottom:82.800000px;}
.y188{bottom:83.520000px;}
.y12c{bottom:87.300000px;}
.y2e{bottom:90.030000px;}
.y150{bottom:91.620000px;}
.y74{bottom:92.520000px;}
.yab{bottom:93.420000px;}
.y15d{bottom:100.440000px;}
.y107{bottom:100.620000px;}
.y12{bottom:101.160000px;}
.y187{bottom:101.340000px;}
.y1ac{bottom:101.520000px;}
.y12b{bottom:105.300000px;}
.y14f{bottom:109.440000px;}
.y2d{bottom:109.830000px;}
.y73{bottom:110.340000px;}
.yaa{bottom:111.240000px;}
.y15c{bottom:118.260000px;}
.y106{bottom:118.440000px;}
.y186{bottom:119.160000px;}
.y1ab{bottom:119.340000px;}
.y12a{bottom:123.120000px;}
.y14e{bottom:127.260000px;}
.y72{bottom:128.160000px;}
.ya9{bottom:129.060000px;}
.y2c{bottom:129.810000px;}
.y11{bottom:131.040000px;}
.y15b{bottom:136.080000px;}
.y105{bottom:136.260000px;}
.y185{bottom:136.980000px;}
.y1aa{bottom:137.160000px;}
.y129{bottom:140.940000px;}
.y14{bottom:144.870000px;}
.y14d{bottom:145.080000px;}
.y71{bottom:145.980000px;}
.ya8{bottom:146.880000px;}
.y2b{bottom:149.610000px;}
.y15a{bottom:153.900000px;}
.y104{bottom:154.080000px;}
.y184{bottom:154.980000px;}
.ye0{bottom:155.520000px;}
.y128{bottom:158.760000px;}
.y10{bottom:160.740000px;}
.y14c{bottom:162.900000px;}
.y70{bottom:163.980000px;}
.ya7{bottom:164.880000px;}
.y2a{bottom:169.410000px;}
.y103{bottom:171.900000px;}
.y183{bottom:172.800000px;}
.y1a9{bottom:172.980000px;}
.y127{bottom:176.580000px;}
.y14b{bottom:180.900000px;}
.y6f{bottom:181.800000px;}
.ya6{bottom:182.700000px;}
.ydf{bottom:182.880000px;}
.y29{bottom:189.210000px;}
.y159{bottom:189.720000px;}
.y102{bottom:189.900000px;}
.yf{bottom:190.260000px;}
.y182{bottom:190.620000px;}
.y1a8{bottom:190.800000px;}
.y126{bottom:194.580000px;}
.y14a{bottom:198.720000px;}
.y6e{bottom:199.620000px;}
.ya5{bottom:200.520000px;}
.yde{bottom:200.700000px;}
.y158{bottom:207.570000px;}
.y101{bottom:207.750000px;}
.y23{bottom:208.440000px;}
.y181{bottom:208.470000px;}
.y1a7{bottom:208.650000px;}
.y28{bottom:209.010000px;}
.y149{bottom:216.570000px;}
.y6d{bottom:217.470000px;}
.ya4{bottom:218.370000px;}
.ydd{bottom:218.550000px;}
.y125{bottom:221.070000px;}
.y166{bottom:225.390000px;}
.y100{bottom:225.570000px;}
.y180{bottom:226.290000px;}
.y1a6{bottom:226.470000px;}
.y32{bottom:229.890000px;}
.y148{bottom:234.390000px;}
.y19a{bottom:235.290000px;}
.ya3{bottom:236.190000px;}
.ydc{bottom:236.370000px;}
.y124{bottom:238.890000px;}
.y165{bottom:243.210000px;}
.yff{bottom:243.390000px;}
.y17f{bottom:244.110000px;}
.y6c{bottom:244.290000px;}
.y26{bottom:248.835000px;}
.y30{bottom:249.870000px;}
.y147{bottom:252.210000px;}
.y199{bottom:253.110000px;}
.ya2{bottom:254.190000px;}
.y164{bottom:261.030000px;}
.yfe{bottom:261.210000px;}
.y123{bottom:261.225000px;}
.y6b{bottom:262.110000px;}
.y25{bottom:268.635000px;}
.y146{bottom:270.030000px;}
.y198{bottom:271.110000px;}
.ya1{bottom:272.010000px;}
.ydb{bottom:272.190000px;}
.y2f{bottom:278.670000px;}
.yfd{bottom:279.030000px;}
.y17e{bottom:279.930000px;}
.y6a{bottom:280.110000px;}
.y145{bottom:288.030000px;}
.y24{bottom:288.435000px;}
.y197{bottom:288.930000px;}
.ya0{bottom:289.830000px;}
.yda{bottom:290.010000px;}
.y163{bottom:296.850000px;}
.yfc{bottom:297.030000px;}
.y17d{bottom:297.750000px;}
.y69{bottom:297.930000px;}
.y144{bottom:305.850000px;}
.y196{bottom:306.750000px;}
.y121{bottom:306.765000px;}
.y9f{bottom:307.650000px;}
.yd9{bottom:307.830000px;}
.y162{bottom:314.310000px;}
.yfb{bottom:314.850000px;}
.y17c{bottom:315.570000px;}
.y68{bottom:315.750000px;}
.y143{bottom:323.670000px;}
.y195{bottom:324.570000px;}
.y9e{bottom:325.470000px;}
.yd8{bottom:325.650000px;}
.yfa{bottom:332.670000px;}
.y17b{bottom:333.390000px;}
.y67{bottom:333.570000px;}
.y142{bottom:341.490000px;}
.y194{bottom:342.390000px;}
.y9d{bottom:343.290000px;}
.yd7{bottom:343.470000px;}
.yf9{bottom:350.490000px;}
.y66{bottom:351.390000px;}
.y11e{bottom:352.125000px;}
.y141{bottom:359.310000px;}
.y17a{bottom:360.210000px;}
.y9c{bottom:361.290000px;}
.yf8{bottom:368.310000px;}
.y65{bottom:369.210000px;}
.y140{bottom:377.310000px;}
.y179{bottom:378.210000px;}
.yd6{bottom:379.290000px;}
.y9b{bottom:381.090000px;}
.yf7{bottom:386.310000px;}
.y64{bottom:387.210000px;}
.y13f{bottom:395.130000px;}
.y178{bottom:396.030000px;}
.yd5{bottom:397.110000px;}
.y11d{bottom:397.665000px;}
.yf6{bottom:404.130000px;}
.y63{bottom:405.030000px;}
.y13e{bottom:412.950000px;}
.y9a{bottom:413.850000px;}
.yd4{bottom:414.930000px;}
.yf5{bottom:421.950000px;}
.y62{bottom:422.490000px;}
.y193{bottom:422.850000px;}
.y11b{bottom:425.205000px;}
.y157{bottom:430.770000px;}
.y99{bottom:431.670000px;}
.yd3{bottom:432.750000px;}
.y27{bottom:437.430000px;}
.yf4{bottom:439.770000px;}
.y192{bottom:440.715000px;}
.y156{bottom:448.635000px;}
.y98{bottom:449.535000px;}
.y61{bottom:449.715000px;}
.yd2{bottom:450.615000px;}
.y177{bottom:451.515000px;}
.y11a{bottom:452.775000px;}
.yf3{bottom:457.635000px;}
.y191{bottom:458.535000px;}
.y155{bottom:466.455000px;}
.y60{bottom:467.535000px;}
.yd1{bottom:468.435000px;}
.yf2{bottom:475.455000px;}
.y190{bottom:476.535000px;}
.y119{bottom:480.495000px;}
.y154{bottom:484.455000px;}
.y97{bottom:485.355000px;}
.y5f{bottom:485.535000px;}
.yd0{bottom:486.435000px;}
.yf1{bottom:493.455000px;}
.y18f{bottom:494.355000px;}
.y153{bottom:502.275000px;}
.y96{bottom:503.175000px;}
.y5e{bottom:503.355000px;}
.ycf{bottom:504.255000px;}
.y118{bottom:508.035000px;}
.yf0{bottom:511.275000px;}
.y18e{bottom:512.175000px;}
.y161{bottom:520.095000px;}
.y95{bottom:520.995000px;}
.y5d{bottom:521.175000px;}
.yce{bottom:522.075000px;}
.yef{bottom:529.095000px;}
.y18d{bottom:529.995000px;}
.ye{bottom:532.695000px;}
.y116{bottom:535.575000px;}
.y1b1{bottom:535.755000px;}
.y176{bottom:537.915000px;}
.y5c{bottom:538.995000px;}
.ycd{bottom:539.895000px;}
.yee{bottom:546.915000px;}
.y94{bottom:547.815000px;}
.y175{bottom:555.735000px;}
.y5b{bottom:556.815000px;}
.ycc{bottom:557.715000px;}
.y114{bottom:563.295000px;}
.yed{bottom:564.735000px;}
.y93{bottom:565.635000px;}
.y174{bottom:573.735000px;}
.yd{bottom:573.915000px;}
.y5a{bottom:574.635000px;}
.ycb{bottom:575.715000px;}
.yec{bottom:582.735000px;}
.y92{bottom:583.635000px;}
.yc{bottom:589.575000px;}
.y173{bottom:591.555000px;}
.y59{bottom:592.635000px;}
.yca{bottom:593.535000px;}
.y1b0{bottom:595.515000px;}
.yeb{bottom:600.555000px;}
.y91{bottom:601.455000px;}
.y113{bottom:608.655000px;}
.y172{bottom:609.375000px;}
.y58{bottom:610.455000px;}
.yc9{bottom:611.355000px;}
.y22{bottom:614.595000px;}
.yea{bottom:618.375000px;}
.y90{bottom:619.275000px;}
.y1af{bottom:625.215000px;}
.y171{bottom:627.195000px;}
.y57{bottom:628.275000px;}
.yc8{bottom:629.175000px;}
.ye9{bottom:636.195000px;}
.y112{bottom:636.375000px;}
.y8f{bottom:637.095000px;}
.y1ae{bottom:642.675000px;}
.y21{bottom:643.215000px;}
.y170{bottom:645.015000px;}
.y56{bottom:646.095000px;}
.yc7{bottom:646.995000px;}
.ye8{bottom:654.015000px;}
.y8e{bottom:654.915000px;}
.y1d{bottom:655.920000px;}
.y16f{bottom:662.835000px;}
.y55{bottom:663.915000px;}
.yc6{bottom:664.815000px;}
.y13d{bottom:671.835000px;}
.y1a5{bottom:672.915000px;}
.y20{bottom:678.135000px;}
.yb{bottom:679.605000px;}
.ye7{bottom:680.505000px;}
.y16e{bottom:680.865000px;}
.y54{bottom:681.945000px;}
.yc5{bottom:682.845000px;}
.y1ad{bottom:687.165000px;}
.y13c{bottom:689.865000px;}
.y1a4{bottom:690.765000px;}
.y10e{bottom:691.485000px;}
.y16d{bottom:698.685000px;}
.y53{bottom:699.765000px;}
.y18c{bottom:701.745000px;}
.y1f{bottom:706.065000px;}
.y13b{bottom:707.685000px;}
.ye6{bottom:707.865000px;}
.y1a3{bottom:708.585000px;}
.yc4{bottom:709.305000px;}
.y16c{bottom:716.505000px;}
.y52{bottom:717.585000px;}
.y13a{bottom:725.505000px;}
.ye5{bottom:725.685000px;}
.y1a2{bottom:726.405000px;}
.y18b{bottom:734.505000px;}
.y51{bottom:735.045000px;}
.y8d{bottom:735.405000px;}
.ya{bottom:735.765000px;}
.yc3{bottom:736.125000px;}
.y10b{bottom:737.025000px;}
.y1b{bottom:741.780000px;}
.y139{bottom:743.325000px;}
.ye4{bottom:743.505000px;}
.y1a1{bottom:744.225000px;}
.y18a{bottom:752.325000px;}
.y8c{bottom:753.225000px;}
.yc2{bottom:756.285000px;}
.y138{bottom:761.145000px;}
.ye3{bottom:761.325000px;}
.y1a0{bottom:762.045000px;}
.y50{bottom:762.225000px;}
.y189{bottom:770.145000px;}
.y8b{bottom:771.045000px;}
.y15f{bottom:778.785000px;}
.ye2{bottom:779.145000px;}
.y4f{bottom:780.045000px;}
.y19f{bottom:782.025000px;}
.yc1{bottom:782.205000px;}
.y10a{bottom:787.785000px;}
.y152{bottom:788.145000px;}
.y8a{bottom:789.045000px;}
.y18{bottom:789.840000px;}
.y160{bottom:796.965000px;}
.ye1{bottom:797.145000px;}
.y4e{bottom:798.045000px;}
.y137{bottom:805.965000px;}
.y89{bottom:806.865000px;}
.y16b{bottom:814.785000px;}
.yc0{bottom:814.965000px;}
.y4d{bottom:815.865000px;}
.y136{bottom:823.785000px;}
.y88{bottom:824.685000px;}
.y16a{bottom:832.605000px;}
.ybf{bottom:832.785000px;}
.y4c{bottom:833.685000px;}
.y135{bottom:841.605000px;}
.y87{bottom:842.505000px;}
.y109{bottom:850.245000px;}
.y169{bottom:850.425000px;}
.ybe{bottom:850.605000px;}
.y4b{bottom:851.505000px;}
.y17{bottom:851.865000px;}
.y134{bottom:859.425000px;}
.y86{bottom:860.325000px;}
.y168{bottom:868.245000px;}
.ybd{bottom:868.425000px;}
.y4a{bottom:869.325000px;}
.y16{bottom:875.985000px;}
.y133{bottom:877.245000px;}
.y85{bottom:878.325000px;}
.ybc{bottom:886.245000px;}
.y49{bottom:887.325000px;}
.y132{bottom:895.245000px;}
.y84{bottom:896.145000px;}
.y15{bottom:900.105000px;}
.y19e{bottom:904.065000px;}
.ybb{bottom:904.245000px;}
.y48{bottom:905.145000px;}
.y131{bottom:913.110000px;}
.y83{bottom:914.010000px;}
.y19d{bottom:921.930000px;}
.yba{bottom:922.110000px;}
.y47{bottom:923.010000px;}
.y130{bottom:930.930000px;}
.y82{bottom:933.810000px;}
.y9{bottom:934.350000px;}
.y19c{bottom:939.750000px;}
.yb9{bottom:939.930000px;}
.y13{bottom:941.400000px;}
.y12f{bottom:948.750000px;}
.y46{bottom:949.830000px;}
.y37{bottom:955.800000px;}
.y19b{bottom:957.570000px;}
.yb8{bottom:957.750000px;}
.y81{bottom:966.570000px;}
.y45{bottom:967.650000px;}
.yb7{bottom:975.570000px;}
.y80{bottom:984.570000px;}
.y44{bottom:985.470000px;}
.y36{bottom:989.430000px;}
.yb6{bottom:993.570000px;}
.y7f{bottom:1002.390000px;}
.y43{bottom:1003.470000px;}
.yb5{bottom:1011.390000px;}
.y35{bottom:1015.710000px;}
.y151{bottom:1019.850000px;}
.y7e{bottom:1020.210000px;}
.y42{bottom:1021.290000px;}
.yb4{bottom:1029.210000px;}
.y7d{bottom:1038.030000px;}
.y41{bottom:1039.110000px;}
.y34{bottom:1041.990000px;}
.yb3{bottom:1047.030000px;}
.y7c{bottom:1055.850000px;}
.y40{bottom:1056.930000px;}
.yb2{bottom:1064.850000px;}
.y33{bottom:1068.450000px;}
.y7b{bottom:1073.670000px;}
.y3f{bottom:1074.750000px;}
.yb1{bottom:1082.670000px;}
.y7a{bottom:1091.670000px;}
.y3e{bottom:1092.750000px;}
.yb0{bottom:1100.670000px;}
.y8{bottom:1107.690000px;}
.y12e{bottom:1109.130000px;}
.y79{bottom:1109.490000px;}
.y3d{bottom:1110.570000px;}
.yaf{bottom:1118.490000px;}
.y12d{bottom:1126.950000px;}
.y78{bottom:1127.310000px;}
.y3c{bottom:1128.390000px;}
.yae{bottom:1136.310000px;}
.y77{bottom:1145.130000px;}
.y3b{bottom:1146.240000px;}
.yad{bottom:1154.160000px;}
.y76{bottom:1162.620000px;}
.y167{bottom:1162.980000px;}
.y3a{bottom:1164.060000px;}
.yac{bottom:1171.980000px;}
.y39{bottom:1183.860000px;}
.y75{bottom:1189.800000px;}
.y3{bottom:1215.360000px;}
.y1{bottom:1224.180000px;}
.h2{height:21.780000px;}
.h20{height:26.805000px;}
.h23{height:26.841000px;}
.h1f{height:26.850000px;}
.h22{height:26.985000px;}
.hd{height:36.000000px;}
.h18{height:37.705078px;}
.h24{height:44.507812px;}
.h21{height:44.625000px;}
.h1d{height:44.640000px;}
.h1e{height:44.820000px;}
.h14{height:49.255313px;}
.h3{height:51.519375px;}
.h5{height:52.971680px;}
.h8{height:52.998047px;}
.h7{height:53.709961px;}
.h1c{height:54.421875px;}
.h1b{height:55.503491px;}
.h6{height:55.825312px;}
.h19{height:56.214844px;}
.h12{height:58.621992px;}
.h10{height:58.651172px;}
.h13{height:58.763250px;}
.hc{height:59.436914px;}
.h15{height:60.226875px;}
.h4{height:65.010937px;}
.he{height:66.757500px;}
.hf{height:74.160000px;}
.h1a{height:78.367500px;}
.h17{height:80.949375px;}
.ha{height:84.898125px;}
.h16{height:132.480000px;}
.hb{height:138.780000px;}
.h9{height:160.380000px;}
.h11{height:311.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.wb{width:79.956000px;}
.wa{width:80.280000px;}
.wc{width:83.520000px;}
.w9{width:115.042500px;}
.w2{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w3{width:783.360000px;}
.w4{width:784.080000px;}
.w5{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.735500px;}
.x2f{left:9.720000px;}
.xb{left:10.800000px;}
.x2d{left:13.005000px;}
.x26{left:16.920000px;}
.x25{left:18.720000px;}
.x2a{left:21.060000px;}
.x2e{left:23.220000px;}
.x29{left:25.380000px;}
.x28{left:29.205000px;}
.x32{left:31.500000px;}
.x2b{left:33.300000px;}
.x2c{left:34.920000px;}
.x30{left:36.720000px;}
.x31{left:38.340000px;}
.x11{left:51.660000px;}
.x3{left:54.000000px;}
.x22{left:60.124500px;}
.x15{left:61.200000px;}
.x14{left:65.160000px;}
.x16{left:72.000000px;}
.x1e{left:81.000000px;}
.xd{left:89.136000px;}
.xc{left:100.296000px;}
.x20{left:108.036000px;}
.x17{left:110.010000px;}
.xe{left:112.176000px;}
.x12{left:129.996000px;}
.x4{left:161.670000px;}
.x1d{left:170.895000px;}
.x8{left:174.090000px;}
.x24{left:175.890000px;}
.x1c{left:198.360000px;}
.x1a{left:254.730000px;}
.x27{left:256.890000px;}
.x1b{left:282.315000px;}
.x18{left:288.435000px;}
.x10{left:291.495000px;}
.xf{left:337.215000px;}
.x5{left:356.655000px;}
.x19{left:358.635000px;}
.x1{left:367.920000px;}
.x13{left:455.685000px;}
.x2{left:462.960000px;}
.xa{left:465.945000px;}
.x1f{left:492.945000px;}
.x21{left:519.945000px;}
.x6{left:837.180000px;}
.x7{left:839.340000px;}
.x9{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.736000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls8{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls15{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.136320pt;}
.ls11{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.800000pt;}
.ls10{letter-spacing:4.000000pt;}
.lse{letter-spacing:4.640000pt;}
.ls12{letter-spacing:8.480000pt;}
.lsd{letter-spacing:9.120000pt;}
.ls13{letter-spacing:20.768000pt;}
.ls5{letter-spacing:22.496000pt;}
.ls4{letter-spacing:24.944640pt;}
.ls7{letter-spacing:46.816000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsb{word-spacing:-12.448000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.488000pt;}
.ws7{word-spacing:-11.472000pt;}
.wsc{word-spacing:-11.264000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.040000pt;}
._0{width:0.890667pt;}
._3{width:1.892693pt;}
._5{width:2.868480pt;}
._9{width:4.180480pt;}
._c{width:5.093333pt;}
._a{width:6.439893pt;}
._b{width:7.329280pt;}
._4{width:8.572928pt;}
._11{width:10.291072pt;}
._16{width:13.424000pt;}
._7{width:14.416000pt;}
._6{width:15.670400pt;}
._f{width:16.944000pt;}
._12{width:18.000000pt;}
._10{width:19.488000pt;}
._14{width:20.880000pt;}
._d{width:22.560000pt;}
._e{width:23.760000pt;}
._8{width:25.456853pt;}
._1c{width:26.400000pt;}
._1d{width:27.525333pt;}
._13{width:28.608000pt;}
._17{width:30.384000pt;}
._18{width:31.344000pt;}
._29{width:32.501333pt;}
._1a{width:33.648000pt;}
._24{width:34.725333pt;}
._19{width:35.664000pt;}
._2a{width:36.570667pt;}
._25{width:37.488000pt;}
._1b{width:38.688000pt;}
._2c{width:40.016000pt;}
._15{width:40.944000pt;}
._2f{width:43.824000pt;}
._1e{width:45.120000pt;}
._2d{width:48.096000pt;}
._22{width:50.016000pt;}
._23{width:51.573333pt;}
._27{width:53.664000pt;}
._26{width:54.656000pt;}
._28{width:57.168000pt;}
._30{width:60.240000pt;}
._31{width:61.424000pt;}
._2b{width:71.184000pt;}
._2e{width:72.816000pt;}
._21{width:94.320000pt;}
._20{width:101.856000pt;}
._1f{width:103.738880pt;}
._2{width:2580.859733pt;}
.fs0{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.520000pt;}
.y2{bottom:5.440000pt;}
.y38{bottom:6.213333pt;}
.y10d{bottom:8.640000pt;}
.y11c{bottom:8.946667pt;}
.y110{bottom:8.960000pt;}
.y117{bottom:9.120000pt;}
.y1c{bottom:10.493333pt;}
.y1a{bottom:11.613333pt;}
.y122{bottom:16.786667pt;}
.y120{bottom:16.946667pt;}
.y111{bottom:16.960000pt;}
.y6{bottom:20.000000pt;}
.y10c{bottom:24.480000pt;}
.y11f{bottom:24.786667pt;}
.y115{bottom:24.800000pt;}
.y10f{bottom:24.960000pt;}
.y19{bottom:33.533333pt;}
.y5{bottom:36.480000pt;}
.y31{bottom:36.826667pt;}
.y4{bottom:50.560000pt;}
.y1e{bottom:53.853333pt;}
.y15e{bottom:73.440000pt;}
.y108{bottom:73.600000pt;}
.y188{bottom:74.240000pt;}
.y12c{bottom:77.600000pt;}
.y2e{bottom:80.026667pt;}
.y150{bottom:81.440000pt;}
.y74{bottom:82.240000pt;}
.yab{bottom:83.040000pt;}
.y15d{bottom:89.280000pt;}
.y107{bottom:89.440000pt;}
.y12{bottom:89.920000pt;}
.y187{bottom:90.080000pt;}
.y1ac{bottom:90.240000pt;}
.y12b{bottom:93.600000pt;}
.y14f{bottom:97.280000pt;}
.y2d{bottom:97.626667pt;}
.y73{bottom:98.080000pt;}
.yaa{bottom:98.880000pt;}
.y15c{bottom:105.120000pt;}
.y106{bottom:105.280000pt;}
.y186{bottom:105.920000pt;}
.y1ab{bottom:106.080000pt;}
.y12a{bottom:109.440000pt;}
.y14e{bottom:113.120000pt;}
.y72{bottom:113.920000pt;}
.ya9{bottom:114.720000pt;}
.y2c{bottom:115.386667pt;}
.y11{bottom:116.480000pt;}
.y15b{bottom:120.960000pt;}
.y105{bottom:121.120000pt;}
.y185{bottom:121.760000pt;}
.y1aa{bottom:121.920000pt;}
.y129{bottom:125.280000pt;}
.y14{bottom:128.773333pt;}
.y14d{bottom:128.960000pt;}
.y71{bottom:129.760000pt;}
.ya8{bottom:130.560000pt;}
.y2b{bottom:132.986667pt;}
.y15a{bottom:136.800000pt;}
.y104{bottom:136.960000pt;}
.y184{bottom:137.760000pt;}
.ye0{bottom:138.240000pt;}
.y128{bottom:141.120000pt;}
.y10{bottom:142.880000pt;}
.y14c{bottom:144.800000pt;}
.y70{bottom:145.760000pt;}
.ya7{bottom:146.560000pt;}
.y2a{bottom:150.586667pt;}
.y103{bottom:152.800000pt;}
.y183{bottom:153.600000pt;}
.y1a9{bottom:153.760000pt;}
.y127{bottom:156.960000pt;}
.y14b{bottom:160.800000pt;}
.y6f{bottom:161.600000pt;}
.ya6{bottom:162.400000pt;}
.ydf{bottom:162.560000pt;}
.y29{bottom:168.186667pt;}
.y159{bottom:168.640000pt;}
.y102{bottom:168.800000pt;}
.yf{bottom:169.120000pt;}
.y182{bottom:169.440000pt;}
.y1a8{bottom:169.600000pt;}
.y126{bottom:172.960000pt;}
.y14a{bottom:176.640000pt;}
.y6e{bottom:177.440000pt;}
.ya5{bottom:178.240000pt;}
.yde{bottom:178.400000pt;}
.y158{bottom:184.506667pt;}
.y101{bottom:184.666667pt;}
.y23{bottom:185.280000pt;}
.y181{bottom:185.306667pt;}
.y1a7{bottom:185.466667pt;}
.y28{bottom:185.786667pt;}
.y149{bottom:192.506667pt;}
.y6d{bottom:193.306667pt;}
.ya4{bottom:194.106667pt;}
.ydd{bottom:194.266667pt;}
.y125{bottom:196.506667pt;}
.y166{bottom:200.346667pt;}
.y100{bottom:200.506667pt;}
.y180{bottom:201.146667pt;}
.y1a6{bottom:201.306667pt;}
.y32{bottom:204.346667pt;}
.y148{bottom:208.346667pt;}
.y19a{bottom:209.146667pt;}
.ya3{bottom:209.946667pt;}
.ydc{bottom:210.106667pt;}
.y124{bottom:212.346667pt;}
.y165{bottom:216.186667pt;}
.yff{bottom:216.346667pt;}
.y17f{bottom:216.986667pt;}
.y6c{bottom:217.146667pt;}
.y26{bottom:221.186667pt;}
.y30{bottom:222.106667pt;}
.y147{bottom:224.186667pt;}
.y199{bottom:224.986667pt;}
.ya2{bottom:225.946667pt;}
.y164{bottom:232.026667pt;}
.yfe{bottom:232.186667pt;}
.y123{bottom:232.200000pt;}
.y6b{bottom:232.986667pt;}
.y25{bottom:238.786667pt;}
.y146{bottom:240.026667pt;}
.y198{bottom:240.986667pt;}
.ya1{bottom:241.786667pt;}
.ydb{bottom:241.946667pt;}
.y2f{bottom:247.706667pt;}
.yfd{bottom:248.026667pt;}
.y17e{bottom:248.826667pt;}
.y6a{bottom:248.986667pt;}
.y145{bottom:256.026667pt;}
.y24{bottom:256.386667pt;}
.y197{bottom:256.826667pt;}
.ya0{bottom:257.626667pt;}
.yda{bottom:257.786667pt;}
.y163{bottom:263.866667pt;}
.yfc{bottom:264.026667pt;}
.y17d{bottom:264.666667pt;}
.y69{bottom:264.826667pt;}
.y144{bottom:271.866667pt;}
.y196{bottom:272.666667pt;}
.y121{bottom:272.680000pt;}
.y9f{bottom:273.466667pt;}
.yd9{bottom:273.626667pt;}
.y162{bottom:279.386667pt;}
.yfb{bottom:279.866667pt;}
.y17c{bottom:280.506667pt;}
.y68{bottom:280.666667pt;}
.y143{bottom:287.706667pt;}
.y195{bottom:288.506667pt;}
.y9e{bottom:289.306667pt;}
.yd8{bottom:289.466667pt;}
.yfa{bottom:295.706667pt;}
.y17b{bottom:296.346667pt;}
.y67{bottom:296.506667pt;}
.y142{bottom:303.546667pt;}
.y194{bottom:304.346667pt;}
.y9d{bottom:305.146667pt;}
.yd7{bottom:305.306667pt;}
.yf9{bottom:311.546667pt;}
.y66{bottom:312.346667pt;}
.y11e{bottom:313.000000pt;}
.y141{bottom:319.386667pt;}
.y17a{bottom:320.186667pt;}
.y9c{bottom:321.146667pt;}
.yf8{bottom:327.386667pt;}
.y65{bottom:328.186667pt;}
.y140{bottom:335.386667pt;}
.y179{bottom:336.186667pt;}
.yd6{bottom:337.146667pt;}
.y9b{bottom:338.746667pt;}
.yf7{bottom:343.386667pt;}
.y64{bottom:344.186667pt;}
.y13f{bottom:351.226667pt;}
.y178{bottom:352.026667pt;}
.yd5{bottom:352.986667pt;}
.y11d{bottom:353.480000pt;}
.yf6{bottom:359.226667pt;}
.y63{bottom:360.026667pt;}
.y13e{bottom:367.066667pt;}
.y9a{bottom:367.866667pt;}
.yd4{bottom:368.826667pt;}
.yf5{bottom:375.066667pt;}
.y62{bottom:375.546667pt;}
.y193{bottom:375.866667pt;}
.y11b{bottom:377.960000pt;}
.y157{bottom:382.906667pt;}
.y99{bottom:383.706667pt;}
.yd3{bottom:384.666667pt;}
.y27{bottom:388.826667pt;}
.yf4{bottom:390.906667pt;}
.y192{bottom:391.746667pt;}
.y156{bottom:398.786667pt;}
.y98{bottom:399.586667pt;}
.y61{bottom:399.746667pt;}
.yd2{bottom:400.546667pt;}
.y177{bottom:401.346667pt;}
.y11a{bottom:402.466667pt;}
.yf3{bottom:406.786667pt;}
.y191{bottom:407.586667pt;}
.y155{bottom:414.626667pt;}
.y60{bottom:415.586667pt;}
.yd1{bottom:416.386667pt;}
.yf2{bottom:422.626667pt;}
.y190{bottom:423.586667pt;}
.y119{bottom:427.106667pt;}
.y154{bottom:430.626667pt;}
.y97{bottom:431.426667pt;}
.y5f{bottom:431.586667pt;}
.yd0{bottom:432.386667pt;}
.yf1{bottom:438.626667pt;}
.y18f{bottom:439.426667pt;}
.y153{bottom:446.466667pt;}
.y96{bottom:447.266667pt;}
.y5e{bottom:447.426667pt;}
.ycf{bottom:448.226667pt;}
.y118{bottom:451.586667pt;}
.yf0{bottom:454.466667pt;}
.y18e{bottom:455.266667pt;}
.y161{bottom:462.306667pt;}
.y95{bottom:463.106667pt;}
.y5d{bottom:463.266667pt;}
.yce{bottom:464.066667pt;}
.yef{bottom:470.306667pt;}
.y18d{bottom:471.106667pt;}
.ye{bottom:473.506667pt;}
.y116{bottom:476.066667pt;}
.y1b1{bottom:476.226667pt;}
.y176{bottom:478.146667pt;}
.y5c{bottom:479.106667pt;}
.ycd{bottom:479.906667pt;}
.yee{bottom:486.146667pt;}
.y94{bottom:486.946667pt;}
.y175{bottom:493.986667pt;}
.y5b{bottom:494.946667pt;}
.ycc{bottom:495.746667pt;}
.y114{bottom:500.706667pt;}
.yed{bottom:501.986667pt;}
.y93{bottom:502.786667pt;}
.y174{bottom:509.986667pt;}
.yd{bottom:510.146667pt;}
.y5a{bottom:510.786667pt;}
.ycb{bottom:511.746667pt;}
.yec{bottom:517.986667pt;}
.y92{bottom:518.786667pt;}
.yc{bottom:524.066667pt;}
.y173{bottom:525.826667pt;}
.y59{bottom:526.786667pt;}
.yca{bottom:527.586667pt;}
.y1b0{bottom:529.346667pt;}
.yeb{bottom:533.826667pt;}
.y91{bottom:534.626667pt;}
.y113{bottom:541.026667pt;}
.y172{bottom:541.666667pt;}
.y58{bottom:542.626667pt;}
.yc9{bottom:543.426667pt;}
.y22{bottom:546.306667pt;}
.yea{bottom:549.666667pt;}
.y90{bottom:550.466667pt;}
.y1af{bottom:555.746667pt;}
.y171{bottom:557.506667pt;}
.y57{bottom:558.466667pt;}
.yc8{bottom:559.266667pt;}
.ye9{bottom:565.506667pt;}
.y112{bottom:565.666667pt;}
.y8f{bottom:566.306667pt;}
.y1ae{bottom:571.266667pt;}
.y21{bottom:571.746667pt;}
.y170{bottom:573.346667pt;}
.y56{bottom:574.306667pt;}
.yc7{bottom:575.106667pt;}
.ye8{bottom:581.346667pt;}
.y8e{bottom:582.146667pt;}
.y1d{bottom:583.040000pt;}
.y16f{bottom:589.186667pt;}
.y55{bottom:590.146667pt;}
.yc6{bottom:590.946667pt;}
.y13d{bottom:597.186667pt;}
.y1a5{bottom:598.146667pt;}
.y20{bottom:602.786667pt;}
.yb{bottom:604.093333pt;}
.ye7{bottom:604.893333pt;}
.y16e{bottom:605.213333pt;}
.y54{bottom:606.173333pt;}
.yc5{bottom:606.973333pt;}
.y1ad{bottom:610.813333pt;}
.y13c{bottom:613.213333pt;}
.y1a4{bottom:614.013333pt;}
.y10e{bottom:614.653333pt;}
.y16d{bottom:621.053333pt;}
.y53{bottom:622.013333pt;}
.y18c{bottom:623.773333pt;}
.y1f{bottom:627.613333pt;}
.y13b{bottom:629.053333pt;}
.ye6{bottom:629.213333pt;}
.y1a3{bottom:629.853333pt;}
.yc4{bottom:630.493333pt;}
.y16c{bottom:636.893333pt;}
.y52{bottom:637.853333pt;}
.y13a{bottom:644.893333pt;}
.ye5{bottom:645.053333pt;}
.y1a2{bottom:645.693333pt;}
.y18b{bottom:652.893333pt;}
.y51{bottom:653.373333pt;}
.y8d{bottom:653.693333pt;}
.ya{bottom:654.013333pt;}
.yc3{bottom:654.333333pt;}
.y10b{bottom:655.133333pt;}
.y1b{bottom:659.360000pt;}
.y139{bottom:660.733333pt;}
.ye4{bottom:660.893333pt;}
.y1a1{bottom:661.533333pt;}
.y18a{bottom:668.733333pt;}
.y8c{bottom:669.533333pt;}
.yc2{bottom:672.253333pt;}
.y138{bottom:676.573333pt;}
.ye3{bottom:676.733333pt;}
.y1a0{bottom:677.373333pt;}
.y50{bottom:677.533333pt;}
.y189{bottom:684.573333pt;}
.y8b{bottom:685.373333pt;}
.y15f{bottom:692.253333pt;}
.ye2{bottom:692.573333pt;}
.y4f{bottom:693.373333pt;}
.y19f{bottom:695.133333pt;}
.yc1{bottom:695.293333pt;}
.y10a{bottom:700.253333pt;}
.y152{bottom:700.573333pt;}
.y8a{bottom:701.373333pt;}
.y18{bottom:702.080000pt;}
.y160{bottom:708.413333pt;}
.ye1{bottom:708.573333pt;}
.y4e{bottom:709.373333pt;}
.y137{bottom:716.413333pt;}
.y89{bottom:717.213333pt;}
.y16b{bottom:724.253333pt;}
.yc0{bottom:724.413333pt;}
.y4d{bottom:725.213333pt;}
.y136{bottom:732.253333pt;}
.y88{bottom:733.053333pt;}
.y16a{bottom:740.093333pt;}
.ybf{bottom:740.253333pt;}
.y4c{bottom:741.053333pt;}
.y135{bottom:748.093333pt;}
.y87{bottom:748.893333pt;}
.y109{bottom:755.773333pt;}
.y169{bottom:755.933333pt;}
.ybe{bottom:756.093333pt;}
.y4b{bottom:756.893333pt;}
.y17{bottom:757.213333pt;}
.y134{bottom:763.933333pt;}
.y86{bottom:764.733333pt;}
.y168{bottom:771.773333pt;}
.ybd{bottom:771.933333pt;}
.y4a{bottom:772.733333pt;}
.y16{bottom:778.653333pt;}
.y133{bottom:779.773333pt;}
.y85{bottom:780.733333pt;}
.ybc{bottom:787.773333pt;}
.y49{bottom:788.733333pt;}
.y132{bottom:795.773333pt;}
.y84{bottom:796.573333pt;}
.y15{bottom:800.093333pt;}
.y19e{bottom:803.613333pt;}
.ybb{bottom:803.773333pt;}
.y48{bottom:804.573333pt;}
.y131{bottom:811.653333pt;}
.y83{bottom:812.453333pt;}
.y19d{bottom:819.493333pt;}
.yba{bottom:819.653333pt;}
.y47{bottom:820.453333pt;}
.y130{bottom:827.493333pt;}
.y82{bottom:830.053333pt;}
.y9{bottom:830.533333pt;}
.y19c{bottom:835.333333pt;}
.yb9{bottom:835.493333pt;}
.y13{bottom:836.800000pt;}
.y12f{bottom:843.333333pt;}
.y46{bottom:844.293333pt;}
.y37{bottom:849.600000pt;}
.y19b{bottom:851.173333pt;}
.yb8{bottom:851.333333pt;}
.y81{bottom:859.173333pt;}
.y45{bottom:860.133333pt;}
.yb7{bottom:867.173333pt;}
.y80{bottom:875.173333pt;}
.y44{bottom:875.973333pt;}
.y36{bottom:879.493333pt;}
.yb6{bottom:883.173333pt;}
.y7f{bottom:891.013333pt;}
.y43{bottom:891.973333pt;}
.yb5{bottom:899.013333pt;}
.y35{bottom:902.853333pt;}
.y151{bottom:906.533333pt;}
.y7e{bottom:906.853333pt;}
.y42{bottom:907.813333pt;}
.yb4{bottom:914.853333pt;}
.y7d{bottom:922.693333pt;}
.y41{bottom:923.653333pt;}
.y34{bottom:926.213333pt;}
.yb3{bottom:930.693333pt;}
.y7c{bottom:938.533333pt;}
.y40{bottom:939.493333pt;}
.yb2{bottom:946.533333pt;}
.y33{bottom:949.733333pt;}
.y7b{bottom:954.373333pt;}
.y3f{bottom:955.333333pt;}
.yb1{bottom:962.373333pt;}
.y7a{bottom:970.373333pt;}
.y3e{bottom:971.333333pt;}
.yb0{bottom:978.373333pt;}
.y8{bottom:984.613333pt;}
.y12e{bottom:985.893333pt;}
.y79{bottom:986.213333pt;}
.y3d{bottom:987.173333pt;}
.yaf{bottom:994.213333pt;}
.y12d{bottom:1001.733333pt;}
.y78{bottom:1002.053333pt;}
.y3c{bottom:1003.013333pt;}
.yae{bottom:1010.053333pt;}
.y77{bottom:1017.893333pt;}
.y3b{bottom:1018.880000pt;}
.yad{bottom:1025.920000pt;}
.y76{bottom:1033.440000pt;}
.y167{bottom:1033.760000pt;}
.y3a{bottom:1034.720000pt;}
.yac{bottom:1041.760000pt;}
.y39{bottom:1052.320000pt;}
.y75{bottom:1057.600000pt;}
.y3{bottom:1080.320000pt;}
.y1{bottom:1088.160000pt;}
.h2{height:19.360000pt;}
.h20{height:23.826667pt;}
.h23{height:23.858667pt;}
.h1f{height:23.866667pt;}
.h22{height:23.986667pt;}
.hd{height:32.000000pt;}
.h18{height:33.515625pt;}
.h24{height:39.562500pt;}
.h21{height:39.666667pt;}
.h1d{height:39.680000pt;}
.h1e{height:39.840000pt;}
.h14{height:43.782500pt;}
.h3{height:45.795000pt;}
.h5{height:47.085938pt;}
.h8{height:47.109375pt;}
.h7{height:47.742188pt;}
.h1c{height:48.375000pt;}
.h1b{height:49.336436pt;}
.h6{height:49.622500pt;}
.h19{height:49.968750pt;}
.h12{height:52.108438pt;}
.h10{height:52.134375pt;}
.h13{height:52.234000pt;}
.hc{height:52.832812pt;}
.h15{height:53.535000pt;}
.h4{height:57.787500pt;}
.he{height:59.340000pt;}
.hf{height:65.920000pt;}
.h1a{height:69.660000pt;}
.h17{height:71.955000pt;}
.ha{height:75.465000pt;}
.h16{height:117.760000pt;}
.hb{height:123.360000pt;}
.h9{height:142.560000pt;}
.h11{height:276.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.wb{width:71.072000pt;}
.wa{width:71.360000pt;}
.wc{width:74.240000pt;}
.w9{width:102.260000pt;}
.w2{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w3{width:696.320000pt;}
.w4{width:696.960000pt;}
.w5{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.876000pt;}
.x2f{left:8.640000pt;}
.xb{left:9.600000pt;}
.x2d{left:11.560000pt;}
.x26{left:15.040000pt;}
.x25{left:16.640000pt;}
.x2a{left:18.720000pt;}
.x2e{left:20.640000pt;}
.x29{left:22.560000pt;}
.x28{left:25.960000pt;}
.x32{left:28.000000pt;}
.x2b{left:29.600000pt;}
.x2c{left:31.040000pt;}
.x30{left:32.640000pt;}
.x31{left:34.080000pt;}
.x11{left:45.920000pt;}
.x3{left:48.000000pt;}
.x22{left:53.444000pt;}
.x15{left:54.400000pt;}
.x14{left:57.920000pt;}
.x16{left:64.000000pt;}
.x1e{left:72.000000pt;}
.xd{left:79.232000pt;}
.xc{left:89.152000pt;}
.x20{left:96.032000pt;}
.x17{left:97.786667pt;}
.xe{left:99.712000pt;}
.x12{left:115.552000pt;}
.x4{left:143.706667pt;}
.x1d{left:151.906667pt;}
.x8{left:154.746667pt;}
.x24{left:156.346667pt;}
.x1c{left:176.320000pt;}
.x1a{left:226.426667pt;}
.x27{left:228.346667pt;}
.x1b{left:250.946667pt;}
.x18{left:256.386667pt;}
.x10{left:259.106667pt;}
.xf{left:299.746667pt;}
.x5{left:317.026667pt;}
.x19{left:318.786667pt;}
.x1{left:327.040000pt;}
.x13{left:405.053333pt;}
.x2{left:411.520000pt;}
.xa{left:414.173333pt;}
.x1f{left:438.173333pt;}
.x21{left:462.173333pt;}
.x6{left:744.160000pt;}
.x7{left:746.080000pt;}
.x9{left:752.160000pt;}
}




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