
    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_c1738eb7f418a558e00a46fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_0988e6868d064a9949016769.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_68fc8bf5861ea4c66b761ca7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_63171bfb597f1da1d53b3613.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_221f37a0264bcce0cd404896.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_72039ab18b4dfb5d4a027069.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.774000px;}
.ls15{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.439920px;}
.ls16{letter-spacing:0.900000px;}
.ls1b{letter-spacing:16.506720px;}
.ls19{letter-spacing:33.984000px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.lsa{letter-spacing:46.026720px;}
.lse{letter-spacing:64.026720px;}
.ls18{letter-spacing:64.170720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.wsf{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.wse{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-1.460160px;}
._0{width:1.135440px;}
._14{width:2.154240px;}
._9{width:3.224160px;}
._5{width:4.601520px;}
._a{width:6.344160px;}
._6{width:7.445760px;}
._b{width:8.510160px;}
._7{width:9.669600px;}
._8{width:10.817040px;}
._f{width:12.489840px;}
._c{width:13.864320px;}
._12{width:16.778880px;}
._e{width:18.491760px;}
._d{width:19.661040px;}
._10{width:21.095280px;}
._11{width:22.410000px;}
._15{width:24.023520px;}
._1e{width:25.390560px;}
._24{width:26.772480px;}
._23{width:28.087200px;}
._1d{width:29.222640px;}
._18{width:30.895920px;}
._13{width:32.832000px;}
._20{width:34.171200px;}
._16{width:35.796240px;}
._29{width:37.082520px;}
._25{width:38.483640px;}
._21{width:40.457520px;}
._17{width:42.011280px;}
._19{width:43.445520px;}
._1b{width:44.640720px;}
._2e{width:46.015200px;}
._1f{width:47.150640px;}
._22{width:48.584880px;}
._2c{width:49.729440px;}
._2b{width:51.274080px;}
._32{width:52.529040px;}
._2d{width:58.086720px;}
._1a{width:59.819760px;}
._31{width:61.211520px;}
._1c{width:62.269920px;}
._2a{width:63.584640px;}
._30{width:65.975040px;}
._2f{width:74.879280px;}
._33{width:91.851120px;}
._28{width:94.986720px;}
._2{width:131.442960px;}
._27{width:143.547120px;}
._26{width:220.804560px;}
._1{width:342.981120px;}
._4{width:916.177920px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y3e{bottom:2.880000px;}
.y14{bottom:3.240000px;}
.y192{bottom:3.600000px;}
.y34{bottom:5.940000px;}
.y4{bottom:8.316000px;}
.y3a{bottom:9.720000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.236000px;}
.y18a{bottom:16.380000px;}
.y191{bottom:17.460000px;}
.y32{bottom:19.440000px;}
.y3d{bottom:19.980000px;}
.y39{bottom:25.200000px;}
.y189{bottom:30.240000px;}
.y190{bottom:31.350000px;}
.y7{bottom:35.460000px;}
.y3c{bottom:35.685000px;}
.y31{bottom:35.850000px;}
.y38{bottom:40.680000px;}
.y188{bottom:43.920000px;}
.y18f{bottom:45.030000px;}
.y29{bottom:45.405000px;}
.y30{bottom:51.330000px;}
.y37{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.y18e{bottom:58.890000px;}
.y28{bottom:62.685000px;}
.y2f{bottom:66.810000px;}
.y36{bottom:71.820000px;}
.y18d{bottom:72.750000px;}
.y27{bottom:79.965000px;}
.y2e{bottom:82.470000px;}
.y26{bottom:97.065000px;}
.y2d{bottom:97.950000px;}
.y126{bottom:113.076000px;}
.y2c{bottom:113.430000px;}
.y105{bottom:114.156000px;}
.y25{bottom:114.345000px;}
.y82{bottom:122.796000px;}
.y155{bottom:123.696000px;}
.yba{bottom:123.876000px;}
.y49{bottom:124.776000px;}
.y3b{bottom:126.405000px;}
.y2b{bottom:128.910000px;}
.y125{bottom:130.356000px;}
.y104{bottom:131.436000px;}
.y24{bottom:131.625000px;}
.y81{bottom:140.076000px;}
.y48{bottom:140.436000px;}
.y154{bottom:140.976000px;}
.yb9{bottom:141.156000px;}
.y124{bottom:147.636000px;}
.y103{bottom:148.716000px;}
.y23{bottom:148.905000px;}
.y185{bottom:149.616000px;}
.yd4{bottom:154.110000px;}
.y47{bottom:155.910000px;}
.y80{bottom:157.350000px;}
.yb8{bottom:158.430000px;}
.y153{bottom:160.950000px;}
.y102{bottom:165.990000px;}
.y22{bottom:166.185000px;}
.y184{bottom:166.890000px;}
.y46{bottom:171.390000px;}
.y7f{bottom:174.630000px;}
.yb7{bottom:175.710000px;}
.y152{bottom:178.230000px;}
.y101{bottom:183.270000px;}
.y21{bottom:183.465000px;}
.y183{bottom:184.170000px;}
.y45{bottom:186.870000px;}
.yd3{bottom:188.670000px;}
.y7e{bottom:191.910000px;}
.yb6{bottom:192.990000px;}
.y151{bottom:195.510000px;}
.y100{bottom:200.550000px;}
.y20{bottom:200.565000px;}
.y182{bottom:201.270000px;}
.y44{bottom:202.530000px;}
.yd2{bottom:205.770000px;}
.y7d{bottom:209.190000px;}
.yb5{bottom:210.090000px;}
.y150{bottom:212.790000px;}
.yff{bottom:217.650000px;}
.y1f{bottom:217.845000px;}
.y43{bottom:218.010000px;}
.y181{bottom:218.550000px;}
.yd1{bottom:223.050000px;}
.y7c{bottom:226.290000px;}
.yb4{bottom:227.370000px;}
.y14f{bottom:230.070000px;}
.y42{bottom:233.490000px;}
.yfe{bottom:234.930000px;}
.y1e{bottom:235.125000px;}
.y180{bottom:235.830000px;}
.yd0{bottom:240.330000px;}
.y7b{bottom:243.570000px;}
.yb3{bottom:244.650000px;}
.y14e{bottom:247.350000px;}
.y41{bottom:249.330000px;}
.y123{bottom:252.210000px;}
.y1d{bottom:252.405000px;}
.y17f{bottom:253.110000px;}
.yfd{bottom:253.290000px;}
.ycf{bottom:257.610000px;}
.y7a{bottom:260.850000px;}
.yb2{bottom:261.930000px;}
.y40{bottom:266.610000px;}
.y14d{bottom:267.330000px;}
.y122{bottom:269.490000px;}
.y1c{bottom:269.685000px;}
.y17e{bottom:270.390000px;}
.yfc{bottom:270.570000px;}
.yce{bottom:274.890000px;}
.y79{bottom:278.130000px;}
.yb1{bottom:279.210000px;}
.y3f{bottom:283.530000px;}
.y14c{bottom:284.610000px;}
.y121{bottom:286.770000px;}
.y1b{bottom:286.995000px;}
.y17d{bottom:287.490000px;}
.yfb{bottom:287.850000px;}
.ycd{bottom:292.170000px;}
.y78{bottom:295.410000px;}
.yb0{bottom:296.490000px;}
.y15{bottom:296.850000px;}
.y14b{bottom:301.890000px;}
.y120{bottom:304.050000px;}
.y1a{bottom:304.095000px;}
.y17c{bottom:304.770000px;}
.yfa{bottom:305.130000px;}
.ycc{bottom:309.270000px;}
.y77{bottom:312.690000px;}
.yaf{bottom:313.590000px;}
.y14a{bottom:319.035000px;}
.y11f{bottom:321.195000px;}
.y19{bottom:321.375000px;}
.y17b{bottom:322.095000px;}
.yf9{bottom:322.275000px;}
.ycb{bottom:326.595000px;}
.y76{bottom:329.835000px;}
.yae{bottom:330.915000px;}
.y149{bottom:336.315000px;}
.y11e{bottom:338.475000px;}
.y18{bottom:338.655000px;}
.y17a{bottom:339.375000px;}
.yf8{bottom:340.635000px;}
.yca{bottom:343.875000px;}
.y75{bottom:347.115000px;}
.yad{bottom:348.195000px;}
.y148{bottom:353.595000px;}
.y11d{bottom:355.755000px;}
.y17{bottom:355.935000px;}
.y179{bottom:356.655000px;}
.yf7{bottom:357.915000px;}
.yc9{bottom:361.155000px;}
.y74{bottom:364.395000px;}
.yac{bottom:365.475000px;}
.y147{bottom:370.875000px;}
.y11c{bottom:373.035000px;}
.y16{bottom:373.215000px;}
.y178{bottom:373.935000px;}
.yf6{bottom:375.195000px;}
.yc8{bottom:378.435000px;}
.y73{bottom:381.675000px;}
.yab{bottom:382.755000px;}
.y146{bottom:388.155000px;}
.y11b{bottom:390.315000px;}
.y177{bottom:391.035000px;}
.yf5{bottom:392.475000px;}
.yc7{bottom:395.715000px;}
.y72{bottom:398.955000px;}
.yaa{bottom:399.855000px;}
.y145{bottom:405.435000px;}
.y11a{bottom:407.415000px;}
.y176{bottom:408.315000px;}
.yf4{bottom:409.575000px;}
.yc6{bottom:412.815000px;}
.y71{bottom:416.235000px;}
.ya9{bottom:417.135000px;}
.y144{bottom:422.535000px;}
.y119{bottom:424.695000px;}
.y175{bottom:425.595000px;}
.yf3{bottom:426.855000px;}
.yc5{bottom:430.095000px;}
.y70{bottom:433.335000px;}
.ya8{bottom:434.415000px;}
.y35{bottom:436.575000px;}
.y143{bottom:440.895000px;}
.y118{bottom:441.975000px;}
.y174{bottom:442.875000px;}
.yf2{bottom:444.135000px;}
.yc4{bottom:447.375000px;}
.y6f{bottom:450.615000px;}
.ya7{bottom:451.695000px;}
.y117{bottom:459.255000px;}
.y173{bottom:460.155000px;}
.yf1{bottom:461.415000px;}
.yc3{bottom:464.655000px;}
.y6e{bottom:467.895000px;}
.ya6{bottom:468.975000px;}
.y116{bottom:476.535000px;}
.y172{bottom:477.435000px;}
.yf0{bottom:478.695000px;}
.yc2{bottom:481.935000px;}
.y6d{bottom:485.175000px;}
.ya5{bottom:486.255000px;}
.y171{bottom:494.535000px;}
.y115{bottom:494.895000px;}
.yef{bottom:495.975000px;}
.yc1{bottom:499.215000px;}
.y6c{bottom:502.455000px;}
.ya4{bottom:503.355000px;}
.y170{bottom:511.815000px;}
.y142{bottom:511.995000px;}
.yee{bottom:513.075000px;}
.yc0{bottom:516.315000px;}
.y6b{bottom:519.555000px;}
.ya3{bottom:520.635000px;}
.y33{bottom:521.715000px;}
.y16f{bottom:529.095000px;}
.y141{bottom:529.275000px;}
.yed{bottom:530.355000px;}
.y114{bottom:531.435000px;}
.ybf{bottom:533.595000px;}
.y6a{bottom:536.835000px;}
.ya2{bottom:537.915000px;}
.y2a{bottom:542.415000px;}
.y16e{bottom:546.375000px;}
.yec{bottom:547.635000px;}
.y18c{bottom:547.815000px;}
.y113{bottom:548.715000px;}
.ybe{bottom:551.955000px;}
.y69{bottom:554.115000px;}
.ya1{bottom:555.195000px;}
.y16d{bottom:563.655000px;}
.yeb{bottom:564.915000px;}
.y112{bottom:565.995000px;}
.ybd{bottom:569.265000px;}
.y68{bottom:571.425000px;}
.ya0{bottom:572.505000px;}
.y16c{bottom:580.965000px;}
.yea{bottom:582.225000px;}
.y111{bottom:583.305000px;}
.ybc{bottom:587.625000px;}
.y67{bottom:588.705000px;}
.y9f{bottom:589.785000px;}
.y16b{bottom:598.065000px;}
.ye9{bottom:599.505000px;}
.y110{bottom:600.585000px;}
.ybb{bottom:604.725000px;}
.y66{bottom:605.985000px;}
.y9e{bottom:606.885000px;}
.y16a{bottom:615.345000px;}
.ye8{bottom:616.605000px;}
.y10f{bottom:617.685000px;}
.y65{bottom:623.085000px;}
.y9d{bottom:624.165000px;}
.y18b{bottom:632.445000px;}
.y169{bottom:633.705000px;}
.y140{bottom:633.885000px;}
.ye7{bottom:634.965000px;}
.y64{bottom:640.365000px;}
.y9c{bottom:641.445000px;}
.y187{bottom:647.025000px;}
.y168{bottom:650.985000px;}
.y13f{bottom:651.165000px;}
.ye6{bottom:652.245000px;}
.y63{bottom:657.645000px;}
.y9b{bottom:658.725000px;}
.y167{bottom:668.265000px;}
.y13e{bottom:668.445000px;}
.ye5{bottom:669.525000px;}
.y10e{bottom:670.605000px;}
.y62{bottom:674.925000px;}
.y9a{bottom:676.005000px;}
.y13{bottom:684.825000px;}
.y166{bottom:685.365000px;}
.y13d{bottom:685.725000px;}
.ye4{bottom:686.805000px;}
.y10d{bottom:688.965000px;}
.y61{bottom:692.205000px;}
.y99{bottom:693.285000px;}
.y13c{bottom:702.825000px;}
.y186{bottom:703.005000px;}
.y165{bottom:703.725000px;}
.ye3{bottom:704.985000px;}
.y10c{bottom:707.145000px;}
.y60{bottom:709.485000px;}
.y98{bottom:710.385000px;}
.y12{bottom:719.385000px;}
.y13b{bottom:720.105000px;}
.y164{bottom:721.005000px;}
.ye2{bottom:722.265000px;}
.y10b{bottom:724.425000px;}
.y5f{bottom:726.585000px;}
.y97{bottom:727.665000px;}
.y13a{bottom:737.385000px;}
.y163{bottom:738.285000px;}
.y11{bottom:739.185000px;}
.ye1{bottom:739.545000px;}
.y10a{bottom:741.705000px;}
.y5e{bottom:743.865000px;}
.y96{bottom:744.945000px;}
.y139{bottom:754.665000px;}
.y162{bottom:755.565000px;}
.ye0{bottom:757.905000px;}
.y109{bottom:758.985000px;}
.y5d{bottom:761.145000px;}
.y95{bottom:762.225000px;}
.y138{bottom:773.025000px;}
.y161{bottom:773.925000px;}
.y10{bottom:774.105000px;}
.ydf{bottom:775.185000px;}
.y108{bottom:776.265000px;}
.y5c{bottom:778.425000px;}
.y94{bottom:779.505000px;}
.yf{bottom:787.065000px;}
.y137{bottom:790.305000px;}
.y160{bottom:791.025000px;}
.yde{bottom:792.465000px;}
.y107{bottom:793.545000px;}
.y5b{bottom:795.705000px;}
.y93{bottom:796.605000px;}
.ye{bottom:808.125000px;}
.y15f{bottom:808.305000px;}
.y136{bottom:808.485000px;}
.ydd{bottom:810.645000px;}
.y106{bottom:811.725000px;}
.y5a{bottom:812.805000px;}
.y92{bottom:813.885000px;}
.y15e{bottom:825.630000px;}
.y135{bottom:825.810000px;}
.ydc{bottom:827.970000px;}
.y59{bottom:830.130000px;}
.y91{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y15d{bottom:842.910000px;}
.y134{bottom:843.090000px;}
.ydb{bottom:845.250000px;}
.y58{bottom:847.410000px;}
.y90{bottom:848.490000px;}
.y15c{bottom:860.190000px;}
.y133{bottom:860.370000px;}
.yda{bottom:862.530000px;}
.y57{bottom:864.690000px;}
.y8f{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.y15b{bottom:877.470000px;}
.y132{bottom:877.650000px;}
.yd9{bottom:880.890000px;}
.y56{bottom:881.970000px;}
.y8e{bottom:883.050000px;}
.y131{bottom:894.930000px;}
.y15a{bottom:897.450000px;}
.yd8{bottom:897.990000px;}
.y55{bottom:899.250000px;}
.y8d{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y130{bottom:913.110000px;}
.y159{bottom:914.730000px;}
.yd7{bottom:915.270000px;}
.y54{bottom:916.350000px;}
.y8c{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y12f{bottom:931.470000px;}
.y158{bottom:932.010000px;}
.yd6{bottom:932.550000px;}
.y53{bottom:933.630000px;}
.y8b{bottom:934.710000px;}
.y8{bottom:945.510000px;}
.y12e{bottom:948.750000px;}
.y157{bottom:949.110000px;}
.y52{bottom:950.910000px;}
.y8a{bottom:951.990000px;}
.y12d{bottom:966.030000px;}
.y156{bottom:966.570000px;}
.y51{bottom:968.190000px;}
.y89{bottom:969.270000px;}
.y12c{bottom:983.310000px;}
.y50{bottom:985.470000px;}
.y88{bottom:986.550000px;}
.y12b{bottom:1000.410000px;}
.yd5{bottom:1002.570000px;}
.y4f{bottom:1002.750000px;}
.y87{bottom:1003.650000px;}
.y12a{bottom:1018.770000px;}
.y4e{bottom:1019.850000px;}
.y86{bottom:1020.930000px;}
.y129{bottom:1036.050000px;}
.y4d{bottom:1037.130000px;}
.y85{bottom:1038.210000px;}
.y128{bottom:1053.330000px;}
.y4c{bottom:1054.410000px;}
.y84{bottom:1055.490000px;}
.y4b{bottom:1071.360000px;}
.y127{bottom:1071.720000px;}
.y83{bottom:1072.800000px;}
.y4a{bottom:1086.840000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1a{height:13.860000px;}
.hd{height:17.100000px;}
.h13{height:19.980000px;}
.h3{height:27.576000px;}
.h1b{height:34.036523px;}
.hb{height:36.641953px;}
.h16{height:38.100586px;}
.h12{height:39.999023px;}
.he{height:42.164648px;}
.h5{height:42.327773px;}
.h18{height:43.506914px;}
.h2{height:45.024258px;}
.h11{height:47.381836px;}
.h8{height:49.906406px;}
.h1{height:50.800781px;}
.h4{height:52.435898px;}
.ha{height:53.224453px;}
.h1c{height:55.260000px;}
.h7{height:58.121719px;}
.h19{height:63.175781px;}
.h17{height:65.884219px;}
.h9{height:76.201172px;}
.h1d{height:83.916000px;}
.h14{height:84.420000px;}
.hc{height:94.763672px;}
.h15{height:138.996000px;}
.h10{height:141.516000px;}
.h6{height:153.930000px;}
.hf{height:387.075000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w8{width:60.516000px;}
.w6{width:220.170000px;}
.w9{width:328.890000px;}
.w7{width:390.135000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x10{left:19.980000px;}
.x16{left:27.360000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x1f{left:63.899986px;}
.x17{left:65.519986px;}
.x1c{left:86.759986px;}
.x1b{left:88.199986px;}
.x20{left:90.899986px;}
.x21{left:92.555986px;}
.x9{left:97.955986px;}
.x4{left:100.836000px;}
.x22{left:106.230000px;}
.x5{left:108.035986px;}
.x15{left:110.025000px;}
.x23{left:112.170000px;}
.x24{left:121.176000px;}
.x14{left:153.765000px;}
.xd{left:219.629986px;}
.xa{left:226.109986px;}
.xc{left:318.134986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x18{left:478.334986px;}
.x1d{left:479.804986px;}
.x19{left:484.124986px;}
.x1e{left:506.804986px;}
.x1a{left:511.124986px;}
.xf{left:642.345000px;}
.x7{left:812.490000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.391040pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:14.672640pt;}
.ls19{letter-spacing:30.208000pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.lsa{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.ls18{letter-spacing:57.040640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-1.297920pt;}
._0{width:1.009280pt;}
._14{width:1.914880pt;}
._9{width:2.865920pt;}
._5{width:4.090240pt;}
._a{width:5.639253pt;}
._6{width:6.618453pt;}
._b{width:7.564587pt;}
._7{width:8.595200pt;}
._8{width:9.615147pt;}
._f{width:11.102080pt;}
._c{width:12.323840pt;}
._12{width:14.914560pt;}
._e{width:16.437120pt;}
._d{width:17.476480pt;}
._10{width:18.751360pt;}
._11{width:19.920000pt;}
._15{width:21.354240pt;}
._1e{width:22.569387pt;}
._24{width:23.797760pt;}
._23{width:24.966400pt;}
._1d{width:25.975680pt;}
._18{width:27.463040pt;}
._13{width:29.184000pt;}
._20{width:30.374400pt;}
._16{width:31.818880pt;}
._29{width:32.962240pt;}
._25{width:34.207680pt;}
._21{width:35.962240pt;}
._17{width:37.343360pt;}
._19{width:38.618240pt;}
._1b{width:39.680640pt;}
._2e{width:40.902400pt;}
._1f{width:41.911680pt;}
._22{width:43.186560pt;}
._2c{width:44.203947pt;}
._2b{width:45.576960pt;}
._32{width:46.692480pt;}
._2d{width:51.632640pt;}
._1a{width:53.173120pt;}
._31{width:54.410240pt;}
._1c{width:55.351040pt;}
._2a{width:56.519680pt;}
._30{width:58.644480pt;}
._2f{width:66.559360pt;}
._33{width:81.645440pt;}
._28{width:84.432640pt;}
._2{width:116.838187pt;}
._27{width:127.597440pt;}
._26{width:196.270720pt;}
._1{width:304.872107pt;}
._4{width:814.380373pt;}
.fs3{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y3e{bottom:2.560000pt;}
.y14{bottom:2.880000pt;}
.y192{bottom:3.200000pt;}
.y34{bottom:5.280000pt;}
.y4{bottom:7.392000pt;}
.y3a{bottom:8.640000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.432000pt;}
.y18a{bottom:14.560000pt;}
.y191{bottom:15.520000pt;}
.y32{bottom:17.280000pt;}
.y3d{bottom:17.760000pt;}
.y39{bottom:22.400000pt;}
.y189{bottom:26.880000pt;}
.y190{bottom:27.866667pt;}
.y7{bottom:31.520000pt;}
.y3c{bottom:31.720000pt;}
.y31{bottom:31.866667pt;}
.y38{bottom:36.160000pt;}
.y188{bottom:39.040000pt;}
.y18f{bottom:40.026667pt;}
.y29{bottom:40.360000pt;}
.y30{bottom:45.626667pt;}
.y37{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.y18e{bottom:52.346667pt;}
.y28{bottom:55.720000pt;}
.y2f{bottom:59.386667pt;}
.y36{bottom:63.840000pt;}
.y18d{bottom:64.666667pt;}
.y27{bottom:71.080000pt;}
.y2e{bottom:73.306667pt;}
.y26{bottom:86.280000pt;}
.y2d{bottom:87.066667pt;}
.y126{bottom:100.512000pt;}
.y2c{bottom:100.826667pt;}
.y105{bottom:101.472000pt;}
.y25{bottom:101.640000pt;}
.y82{bottom:109.152000pt;}
.y155{bottom:109.952000pt;}
.yba{bottom:110.112000pt;}
.y49{bottom:110.912000pt;}
.y3b{bottom:112.360000pt;}
.y2b{bottom:114.586667pt;}
.y125{bottom:115.872000pt;}
.y104{bottom:116.832000pt;}
.y24{bottom:117.000000pt;}
.y81{bottom:124.512000pt;}
.y48{bottom:124.832000pt;}
.y154{bottom:125.312000pt;}
.yb9{bottom:125.472000pt;}
.y124{bottom:131.232000pt;}
.y103{bottom:132.192000pt;}
.y23{bottom:132.360000pt;}
.y185{bottom:132.992000pt;}
.yd4{bottom:136.986667pt;}
.y47{bottom:138.586667pt;}
.y80{bottom:139.866667pt;}
.yb8{bottom:140.826667pt;}
.y153{bottom:143.066667pt;}
.y102{bottom:147.546667pt;}
.y22{bottom:147.720000pt;}
.y184{bottom:148.346667pt;}
.y46{bottom:152.346667pt;}
.y7f{bottom:155.226667pt;}
.yb7{bottom:156.186667pt;}
.y152{bottom:158.426667pt;}
.y101{bottom:162.906667pt;}
.y21{bottom:163.080000pt;}
.y183{bottom:163.706667pt;}
.y45{bottom:166.106667pt;}
.yd3{bottom:167.706667pt;}
.y7e{bottom:170.586667pt;}
.yb6{bottom:171.546667pt;}
.y151{bottom:173.786667pt;}
.y100{bottom:178.266667pt;}
.y20{bottom:178.280000pt;}
.y182{bottom:178.906667pt;}
.y44{bottom:180.026667pt;}
.yd2{bottom:182.906667pt;}
.y7d{bottom:185.946667pt;}
.yb5{bottom:186.746667pt;}
.y150{bottom:189.146667pt;}
.yff{bottom:193.466667pt;}
.y1f{bottom:193.640000pt;}
.y43{bottom:193.786667pt;}
.y181{bottom:194.266667pt;}
.yd1{bottom:198.266667pt;}
.y7c{bottom:201.146667pt;}
.yb4{bottom:202.106667pt;}
.y14f{bottom:204.506667pt;}
.y42{bottom:207.546667pt;}
.yfe{bottom:208.826667pt;}
.y1e{bottom:209.000000pt;}
.y180{bottom:209.626667pt;}
.yd0{bottom:213.626667pt;}
.y7b{bottom:216.506667pt;}
.yb3{bottom:217.466667pt;}
.y14e{bottom:219.866667pt;}
.y41{bottom:221.626667pt;}
.y123{bottom:224.186667pt;}
.y1d{bottom:224.360000pt;}
.y17f{bottom:224.986667pt;}
.yfd{bottom:225.146667pt;}
.ycf{bottom:228.986667pt;}
.y7a{bottom:231.866667pt;}
.yb2{bottom:232.826667pt;}
.y40{bottom:236.986667pt;}
.y14d{bottom:237.626667pt;}
.y122{bottom:239.546667pt;}
.y1c{bottom:239.720000pt;}
.y17e{bottom:240.346667pt;}
.yfc{bottom:240.506667pt;}
.yce{bottom:244.346667pt;}
.y79{bottom:247.226667pt;}
.yb1{bottom:248.186667pt;}
.y3f{bottom:252.026667pt;}
.y14c{bottom:252.986667pt;}
.y121{bottom:254.906667pt;}
.y1b{bottom:255.106667pt;}
.y17d{bottom:255.546667pt;}
.yfb{bottom:255.866667pt;}
.ycd{bottom:259.706667pt;}
.y78{bottom:262.586667pt;}
.yb0{bottom:263.546667pt;}
.y15{bottom:263.866667pt;}
.y14b{bottom:268.346667pt;}
.y120{bottom:270.266667pt;}
.y1a{bottom:270.306667pt;}
.y17c{bottom:270.906667pt;}
.yfa{bottom:271.226667pt;}
.ycc{bottom:274.906667pt;}
.y77{bottom:277.946667pt;}
.yaf{bottom:278.746667pt;}
.y14a{bottom:283.586667pt;}
.y11f{bottom:285.506667pt;}
.y19{bottom:285.666667pt;}
.y17b{bottom:286.306667pt;}
.yf9{bottom:286.466667pt;}
.ycb{bottom:290.306667pt;}
.y76{bottom:293.186667pt;}
.yae{bottom:294.146667pt;}
.y149{bottom:298.946667pt;}
.y11e{bottom:300.866667pt;}
.y18{bottom:301.026667pt;}
.y17a{bottom:301.666667pt;}
.yf8{bottom:302.786667pt;}
.yca{bottom:305.666667pt;}
.y75{bottom:308.546667pt;}
.yad{bottom:309.506667pt;}
.y148{bottom:314.306667pt;}
.y11d{bottom:316.226667pt;}
.y17{bottom:316.386667pt;}
.y179{bottom:317.026667pt;}
.yf7{bottom:318.146667pt;}
.yc9{bottom:321.026667pt;}
.y74{bottom:323.906667pt;}
.yac{bottom:324.866667pt;}
.y147{bottom:329.666667pt;}
.y11c{bottom:331.586667pt;}
.y16{bottom:331.746667pt;}
.y178{bottom:332.386667pt;}
.yf6{bottom:333.506667pt;}
.yc8{bottom:336.386667pt;}
.y73{bottom:339.266667pt;}
.yab{bottom:340.226667pt;}
.y146{bottom:345.026667pt;}
.y11b{bottom:346.946667pt;}
.y177{bottom:347.586667pt;}
.yf5{bottom:348.866667pt;}
.yc7{bottom:351.746667pt;}
.y72{bottom:354.626667pt;}
.yaa{bottom:355.426667pt;}
.y145{bottom:360.386667pt;}
.y11a{bottom:362.146667pt;}
.y176{bottom:362.946667pt;}
.yf4{bottom:364.066667pt;}
.yc6{bottom:366.946667pt;}
.y71{bottom:369.986667pt;}
.ya9{bottom:370.786667pt;}
.y144{bottom:375.586667pt;}
.y119{bottom:377.506667pt;}
.y175{bottom:378.306667pt;}
.yf3{bottom:379.426667pt;}
.yc5{bottom:382.306667pt;}
.y70{bottom:385.186667pt;}
.ya8{bottom:386.146667pt;}
.y35{bottom:388.066667pt;}
.y143{bottom:391.906667pt;}
.y118{bottom:392.866667pt;}
.y174{bottom:393.666667pt;}
.yf2{bottom:394.786667pt;}
.yc4{bottom:397.666667pt;}
.y6f{bottom:400.546667pt;}
.ya7{bottom:401.506667pt;}
.y117{bottom:408.226667pt;}
.y173{bottom:409.026667pt;}
.yf1{bottom:410.146667pt;}
.yc3{bottom:413.026667pt;}
.y6e{bottom:415.906667pt;}
.ya6{bottom:416.866667pt;}
.y116{bottom:423.586667pt;}
.y172{bottom:424.386667pt;}
.yf0{bottom:425.506667pt;}
.yc2{bottom:428.386667pt;}
.y6d{bottom:431.266667pt;}
.ya5{bottom:432.226667pt;}
.y171{bottom:439.586667pt;}
.y115{bottom:439.906667pt;}
.yef{bottom:440.866667pt;}
.yc1{bottom:443.746667pt;}
.y6c{bottom:446.626667pt;}
.ya4{bottom:447.426667pt;}
.y170{bottom:454.946667pt;}
.y142{bottom:455.106667pt;}
.yee{bottom:456.066667pt;}
.yc0{bottom:458.946667pt;}
.y6b{bottom:461.826667pt;}
.ya3{bottom:462.786667pt;}
.y33{bottom:463.746667pt;}
.y16f{bottom:470.306667pt;}
.y141{bottom:470.466667pt;}
.yed{bottom:471.426667pt;}
.y114{bottom:472.386667pt;}
.ybf{bottom:474.306667pt;}
.y6a{bottom:477.186667pt;}
.ya2{bottom:478.146667pt;}
.y2a{bottom:482.146667pt;}
.y16e{bottom:485.666667pt;}
.yec{bottom:486.786667pt;}
.y18c{bottom:486.946667pt;}
.y113{bottom:487.746667pt;}
.ybe{bottom:490.626667pt;}
.y69{bottom:492.546667pt;}
.ya1{bottom:493.506667pt;}
.y16d{bottom:501.026667pt;}
.yeb{bottom:502.146667pt;}
.y112{bottom:503.106667pt;}
.ybd{bottom:506.013333pt;}
.y68{bottom:507.933333pt;}
.ya0{bottom:508.893333pt;}
.y16c{bottom:516.413333pt;}
.yea{bottom:517.533333pt;}
.y111{bottom:518.493333pt;}
.ybc{bottom:522.333333pt;}
.y67{bottom:523.293333pt;}
.y9f{bottom:524.253333pt;}
.y16b{bottom:531.613333pt;}
.ye9{bottom:532.893333pt;}
.y110{bottom:533.853333pt;}
.ybb{bottom:537.533333pt;}
.y66{bottom:538.653333pt;}
.y9e{bottom:539.453333pt;}
.y16a{bottom:546.973333pt;}
.ye8{bottom:548.093333pt;}
.y10f{bottom:549.053333pt;}
.y65{bottom:553.853333pt;}
.y9d{bottom:554.813333pt;}
.y18b{bottom:562.173333pt;}
.y169{bottom:563.293333pt;}
.y140{bottom:563.453333pt;}
.ye7{bottom:564.413333pt;}
.y64{bottom:569.213333pt;}
.y9c{bottom:570.173333pt;}
.y187{bottom:575.133333pt;}
.y168{bottom:578.653333pt;}
.y13f{bottom:578.813333pt;}
.ye6{bottom:579.773333pt;}
.y63{bottom:584.573333pt;}
.y9b{bottom:585.533333pt;}
.y167{bottom:594.013333pt;}
.y13e{bottom:594.173333pt;}
.ye5{bottom:595.133333pt;}
.y10e{bottom:596.093333pt;}
.y62{bottom:599.933333pt;}
.y9a{bottom:600.893333pt;}
.y13{bottom:608.733333pt;}
.y166{bottom:609.213333pt;}
.y13d{bottom:609.533333pt;}
.ye4{bottom:610.493333pt;}
.y10d{bottom:612.413333pt;}
.y61{bottom:615.293333pt;}
.y99{bottom:616.253333pt;}
.y13c{bottom:624.733333pt;}
.y186{bottom:624.893333pt;}
.y165{bottom:625.533333pt;}
.ye3{bottom:626.653333pt;}
.y10c{bottom:628.573333pt;}
.y60{bottom:630.653333pt;}
.y98{bottom:631.453333pt;}
.y12{bottom:639.453333pt;}
.y13b{bottom:640.093333pt;}
.y164{bottom:640.893333pt;}
.ye2{bottom:642.013333pt;}
.y10b{bottom:643.933333pt;}
.y5f{bottom:645.853333pt;}
.y97{bottom:646.813333pt;}
.y13a{bottom:655.453333pt;}
.y163{bottom:656.253333pt;}
.y11{bottom:657.053333pt;}
.ye1{bottom:657.373333pt;}
.y10a{bottom:659.293333pt;}
.y5e{bottom:661.213333pt;}
.y96{bottom:662.173333pt;}
.y139{bottom:670.813333pt;}
.y162{bottom:671.613333pt;}
.ye0{bottom:673.693333pt;}
.y109{bottom:674.653333pt;}
.y5d{bottom:676.573333pt;}
.y95{bottom:677.533333pt;}
.y138{bottom:687.133333pt;}
.y161{bottom:687.933333pt;}
.y10{bottom:688.093333pt;}
.ydf{bottom:689.053333pt;}
.y108{bottom:690.013333pt;}
.y5c{bottom:691.933333pt;}
.y94{bottom:692.893333pt;}
.yf{bottom:699.613333pt;}
.y137{bottom:702.493333pt;}
.y160{bottom:703.133333pt;}
.yde{bottom:704.413333pt;}
.y107{bottom:705.373333pt;}
.y5b{bottom:707.293333pt;}
.y93{bottom:708.093333pt;}
.ye{bottom:718.333333pt;}
.y15f{bottom:718.493333pt;}
.y136{bottom:718.653333pt;}
.ydd{bottom:720.573333pt;}
.y106{bottom:721.533333pt;}
.y5a{bottom:722.493333pt;}
.y92{bottom:723.453333pt;}
.y15e{bottom:733.893333pt;}
.y135{bottom:734.053333pt;}
.ydc{bottom:735.973333pt;}
.y59{bottom:737.893333pt;}
.y91{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y15d{bottom:749.253333pt;}
.y134{bottom:749.413333pt;}
.ydb{bottom:751.333333pt;}
.y58{bottom:753.253333pt;}
.y90{bottom:754.213333pt;}
.y15c{bottom:764.613333pt;}
.y133{bottom:764.773333pt;}
.yda{bottom:766.693333pt;}
.y57{bottom:768.613333pt;}
.y8f{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.y15b{bottom:779.973333pt;}
.y132{bottom:780.133333pt;}
.yd9{bottom:783.013333pt;}
.y56{bottom:783.973333pt;}
.y8e{bottom:784.933333pt;}
.y131{bottom:795.493333pt;}
.y15a{bottom:797.733333pt;}
.yd8{bottom:798.213333pt;}
.y55{bottom:799.333333pt;}
.y8d{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y130{bottom:811.653333pt;}
.y159{bottom:813.093333pt;}
.yd7{bottom:813.573333pt;}
.y54{bottom:814.533333pt;}
.y8c{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y12f{bottom:827.973333pt;}
.y158{bottom:828.453333pt;}
.yd6{bottom:828.933333pt;}
.y53{bottom:829.893333pt;}
.y8b{bottom:830.853333pt;}
.y8{bottom:840.453333pt;}
.y12e{bottom:843.333333pt;}
.y157{bottom:843.653333pt;}
.y52{bottom:845.253333pt;}
.y8a{bottom:846.213333pt;}
.y12d{bottom:858.693333pt;}
.y156{bottom:859.173333pt;}
.y51{bottom:860.613333pt;}
.y89{bottom:861.573333pt;}
.y12c{bottom:874.053333pt;}
.y50{bottom:875.973333pt;}
.y88{bottom:876.933333pt;}
.y12b{bottom:889.253333pt;}
.yd5{bottom:891.173333pt;}
.y4f{bottom:891.333333pt;}
.y87{bottom:892.133333pt;}
.y12a{bottom:905.573333pt;}
.y4e{bottom:906.533333pt;}
.y86{bottom:907.493333pt;}
.y129{bottom:920.933333pt;}
.y4d{bottom:921.893333pt;}
.y85{bottom:922.853333pt;}
.y128{bottom:936.293333pt;}
.y4c{bottom:937.253333pt;}
.y84{bottom:938.213333pt;}
.y4b{bottom:952.320000pt;}
.y127{bottom:952.640000pt;}
.y83{bottom:953.600000pt;}
.y4a{bottom:966.080000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1a{height:12.320000pt;}
.hd{height:15.200000pt;}
.h13{height:17.760000pt;}
.h3{height:24.512000pt;}
.h1b{height:30.254687pt;}
.hb{height:32.570625pt;}
.h16{height:33.867188pt;}
.h12{height:35.554688pt;}
.he{height:37.479688pt;}
.h5{height:37.624687pt;}
.h18{height:38.672812pt;}
.h2{height:40.021563pt;}
.h11{height:42.117188pt;}
.h8{height:44.361250pt;}
.h1{height:45.156250pt;}
.h4{height:46.609688pt;}
.ha{height:47.310625pt;}
.h1c{height:49.120000pt;}
.h7{height:51.663750pt;}
.h19{height:56.156250pt;}
.h17{height:58.563750pt;}
.h9{height:67.734375pt;}
.h1d{height:74.592000pt;}
.h14{height:75.040000pt;}
.hc{height:84.234375pt;}
.h15{height:123.552000pt;}
.h10{height:125.792000pt;}
.h6{height:136.826667pt;}
.hf{height:344.066667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w8{width:53.792000pt;}
.w6{width:195.706667pt;}
.w9{width:292.346667pt;}
.w7{width:346.786667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x10{left:17.760000pt;}
.x16{left:24.320000pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x1f{left:56.799988pt;}
.x17{left:58.239988pt;}
.x1c{left:77.119988pt;}
.x1b{left:78.399988pt;}
.x20{left:80.799988pt;}
.x21{left:82.271988pt;}
.x9{left:87.071988pt;}
.x4{left:89.632000pt;}
.x22{left:94.426667pt;}
.x5{left:96.031988pt;}
.x15{left:97.800000pt;}
.x23{left:99.706667pt;}
.x24{left:107.712000pt;}
.x14{left:136.680000pt;}
.xd{left:195.226655pt;}
.xa{left:200.986655pt;}
.xc{left:282.786655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x18{left:425.186655pt;}
.x1d{left:426.493321pt;}
.x19{left:430.333321pt;}
.x1e{left:450.493321pt;}
.x1a{left:454.333321pt;}
.xf{left:570.973333pt;}
.x7{left:722.213333pt;}
}




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