
    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_b704fc02170fcd0e2d2e64fc.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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d4398de3f733a2e1e0b68edb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1decbbe3d4134a0eb08443b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_86a31ce1a7f6d22c0c1bb0e8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d2d29aa43b22da00397065ff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ede4684a9a983c62f543479e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2fd5be47b7701a294aec5904.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_58985701b4c755d552b4c977.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_693920d7f60ba8cb968f14ac.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6e1ec153d7b6f719ef8d6e97.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_855492c3549c7987cb1f2897.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.897949;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);}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.305400px;}
.ls5{letter-spacing:1.212000px;}
.ls2{letter-spacing:1.391040px;}
.ls1{letter-spacing:1.440000px;}
.ls7{letter-spacing:16.865280px;}
.lsb{letter-spacing:32.490720px;}
.lse{letter-spacing:36.449280px;}
.ls8{letter-spacing:41.130720px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.305520px;}
.ws6{word-spacing:-16.865400px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws7{word-spacing:-16.254600px;}
.ws2{word-spacing:-11.652000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-3.179520px;}
._13{margin-left:-2.057280px;}
._0{margin-left:-1.045440px;}
._2{width:1.059840px;}
._1{width:2.112720px;}
._3{width:3.322800px;}
._d{width:4.769280px;}
._e{width:5.880960px;}
._7{width:7.338240px;}
._c{width:8.544960px;}
._15{width:9.608640px;}
._b{width:11.113920px;}
._a{width:12.254400px;}
._6{width:13.824000px;}
._5{width:15.235200px;}
._12{width:18.547200px;}
._14{width:19.610880px;}
._11{width:21.182400px;}
._1c{width:22.322880px;}
._16{width:23.515200px;}
._3e{width:24.773760px;}
._1b{width:25.966080px;}
._9{width:27.158400px;}
._8{width:28.203840px;}
._36{width:29.679360px;}
._24{width:31.000320px;}
._10{width:32.462400px;}
._f{width:33.502080px;}
._27{width:34.704960px;}
._39{width:36.635520px;}
._40{width:38.549760px;}
._31{width:41.002560px;}
._17{width:43.122240px;}
._2b{width:44.848320px;}
._37{width:46.036800px;}
._23{width:47.825280px;}
._3b{width:50.342400px;}
._3f{width:51.346560px;}
._35{width:52.462080px;}
._2c{width:53.654400px;}
._25{width:55.442880px;}
._38{width:56.502720px;}
._1e{width:60.145920px;}
._18{width:66.306240px;}
._30{width:67.631040px;}
._1f{width:68.889600px;}
._20{width:70.545600px;}
._22{width:71.936640px;}
._3d{width:74.851200px;}
._3c{width:76.043520px;}
._42{width:78.028800px;}
._41{width:79.490880px;}
._26{width:83.462400px;}
._28{width:85.122240px;}
._1d{width:87.370560px;}
._34{width:88.496640px;}
._1a{width:91.481280px;}
._2d{width:97.836480px;}
._33{width:102.075840px;}
._2a{width:103.665600px;}
._29{width:105.192960px;}
._3a{width:136.189440px;}
._21{width:138.574080px;}
._43{width:144.012480px;}
._2f{width:179.046720px;}
._32{width:253.235520px;}
._2e{width:386.311680px;}
._19{width:514.419840px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.585000px;}
.y9e{bottom:3.600000px;}
.y94{bottom:3.780000px;}
.y11d{bottom:3.960000px;}
.yd2{bottom:4.140000px;}
.y9b{bottom:4.320000px;}
.y139{bottom:4.500000px;}
.y136{bottom:4.680000px;}
.y96{bottom:5.040000px;}
.y98{bottom:5.220000px;}
.y6{bottom:7.200000px;}
.ybc{bottom:22.485000px;}
.ya5{bottom:22.500000px;}
.ycb{bottom:22.665000px;}
.y9d{bottom:22.680000px;}
.yda{bottom:24.120000px;}
.ydb{bottom:24.480000px;}
.ybb{bottom:41.565000px;}
.ya1{bottom:41.580000px;}
.yc7{bottom:41.610000px;}
.yaf{bottom:41.760000px;}
.yd8{bottom:41.790000px;}
.y4{bottom:43.200000px;}
.yba{bottom:60.465000px;}
.yc2{bottom:60.480000px;}
.ycd{bottom:60.645000px;}
.ya0{bottom:60.660000px;}
.yc0{bottom:60.690000px;}
.y10d{bottom:67.680000px;}
.y6b{bottom:72.720000px;}
.y92{bottom:74.340000px;}
.y38{bottom:74.700000px;}
.y134{bottom:75.780000px;}
.yb9{bottom:79.545000px;}
.yb1{bottom:79.560000px;}
.ybf{bottom:79.590000px;}
.ya3{bottom:79.605000px;}
.yae{bottom:79.740000px;}
.y6a{bottom:91.800000px;}
.y37{bottom:93.600000px;}
.y177{bottom:93.960000px;}
.y10c{bottom:95.580000px;}
.yb8{bottom:98.445000px;}
.yd6{bottom:98.460000px;}
.yad{bottom:98.640000px;}
.yd0{bottom:100.980000px;}
.y91{bottom:102.600000px;}
.y133{bottom:103.860000px;}
.yf0{bottom:108.360000px;}
.y69{bottom:110.700000px;}
.y36{bottom:112.680000px;}
.y10b{bottom:114.300000px;}
.yb7{bottom:117.345000px;}
.yac{bottom:117.540000px;}
.y90{bottom:121.680000px;}
.y176{bottom:122.580000px;}
.y132{bottom:122.760000px;}
.y68{bottom:129.600000px;}
.y35{bottom:131.580000px;}
.yb6{bottom:136.425000px;}
.yef{bottom:136.620000px;}
.yab{bottom:136.650000px;}
.y8f{bottom:140.580000px;}
.y175{bottom:141.660000px;}
.y10a{bottom:142.560000px;}
.y155{bottom:145.620000px;}
.y67{bottom:148.680000px;}
.y131{bottom:150.660000px;}
.ybe{bottom:153.000000px;}
.yb5{bottom:155.325000px;}
.yaa{bottom:155.550000px;}
.yee{bottom:155.700000px;}
.y8e{bottom:159.300000px;}
.y34{bottom:159.660000px;}
.y174{bottom:160.560000px;}
.y109{bottom:161.460000px;}
.y154{bottom:164.520000px;}
.y66{bottom:167.580000px;}
.yb4{bottom:174.405000px;}
.yed{bottom:174.600000px;}
.ya9{bottom:174.630000px;}
.ycf{bottom:177.660000px;}
.y33{bottom:178.560000px;}
.y130{bottom:178.740000px;}
.y153{bottom:183.600000px;}
.y65{bottom:186.660000px;}
.y8d{bottom:187.560000px;}
.y173{bottom:188.460000px;}
.y108{bottom:189.540000px;}
.yec{bottom:193.320000px;}
.yb3{bottom:193.350000px;}
.ya8{bottom:193.530000px;}
.y152{bottom:202.500000px;}
.y32{bottom:206.490000px;}
.y12f{bottom:206.670000px;}
.y172{bottom:207.570000px;}
.y107{bottom:208.470000px;}
.ya7{bottom:212.430000px;}
.y64{bottom:214.590000px;}
.y151{bottom:221.430000px;}
.yeb{bottom:221.610000px;}
.y12e{bottom:225.390000px;}
.y31{bottom:225.570000px;}
.y63{bottom:233.490000px;}
.y171{bottom:235.470000px;}
.yce{bottom:235.485000px;}
.y106{bottom:236.550000px;}
.y150{bottom:240.510000px;}
.yea{bottom:240.690000px;}
.y8c{bottom:244.470000px;}
.yb2{bottom:248.805000px;}
.y62{bottom:252.570000px;}
.y30{bottom:253.470000px;}
.y12d{bottom:253.650000px;}
.y170{bottom:254.550000px;}
.y105{bottom:255.450000px;}
.y14f{bottom:259.410000px;}
.y8b{bottom:263.550000px;}
.ye9{bottom:268.590000px;}
.y61{bottom:271.470000px;}
.y2f{bottom:272.550000px;}
.y104{bottom:273.990000px;}
.y14e{bottom:278.490000px;}
.y13b{bottom:279.390000px;}
.y8a{bottom:282.090000px;}
.y16f{bottom:282.450000px;}
.ye8{bottom:287.490000px;}
.y60{bottom:290.550000px;}
.y2e{bottom:291.090000px;}
.ycc{bottom:293.085000px;}
.y14d{bottom:297.390000px;}
.y13a{bottom:300.090000px;}
.y16e{bottom:301.350000px;}
.y103{bottom:302.430000px;}
.ye7{bottom:306.570000px;}
.y5f{bottom:309.450000px;}
.y2d{bottom:309.990000px;}
.y89{bottom:310.350000px;}
.y14c{bottom:316.290000px;}
.y138{bottom:320.790000px;}
.y102{bottom:321.330000px;}
.y2c{bottom:329.070000px;}
.y88{bottom:329.430000px;}
.ye6{bottom:334.470000px;}
.y5e{bottom:337.350000px;}
.y137{bottom:340.950000px;}
.y14b{bottom:344.370000px;}
.y87{bottom:348.330000px;}
.y101{bottom:349.410000px;}
.ye5{bottom:353.550000px;}
.y5d{bottom:356.430000px;}
.y2b{bottom:357.330000px;}
.y135{bottom:361.650000px;}
.y14a{bottom:363.270000px;}
.y86{bottom:367.410000px;}
.y100{bottom:368.310000px;}
.yca{bottom:369.765000px;}
.ye4{bottom:372.090000px;}
.y5c{bottom:375.330000px;}
.y2a{bottom:376.410000px;}
.y149{bottom:382.350000px;}
.y12c{bottom:386.130000px;}
.y85{bottom:386.310000px;}
.y5b{bottom:394.410000px;}
.yff{bottom:396.210000px;}
.ye3{bottom:399.990000px;}
.y148{bottom:401.250000px;}
.y29{bottom:404.310000px;}
.y84{bottom:404.850000px;}
.y12b{bottom:414.390000px;}
.yfe{bottom:415.290000px;}
.ye2{bottom:419.070000px;}
.y147{bottom:420.150000px;}
.y5a{bottom:422.310000px;}
.y28{bottom:423.210000px;}
.y83{bottom:433.290000px;}
.y146{bottom:439.230000px;}
.y59{bottom:441.255000px;}
.y27{bottom:442.335000px;}
.y12a{bottom:442.515000px;}
.yfd{bottom:443.235000px;}
.ye1{bottom:447.015000px;}
.y16d{bottom:451.335000px;}
.y82{bottom:452.235000px;}
.yb0{bottom:458.175000px;}
.y58{bottom:460.335000px;}
.y26{bottom:461.235000px;}
.y129{bottom:461.415000px;}
.yfc{bottom:462.315000px;}
.yc9{bottom:465.375000px;}
.ye0{bottom:466.095000px;}
.y16c{bottom:470.235000px;}
.y81{bottom:471.315000px;}
.y145{bottom:477.255000px;}
.y25{bottom:480.315000px;}
.yfb{bottom:480.855000px;}
.y57{bottom:488.235000px;}
.y128{bottom:488.955000px;}
.y80{bottom:490.215000px;}
.ydf{bottom:493.995000px;}
.y144{bottom:495.795000px;}
.y16b{bottom:498.315000px;}
.y24{bottom:499.215000px;}
.y56{bottom:507.315000px;}
.y7f{bottom:509.115000px;}
.y16a{bottom:517.215000px;}
.y127{bottom:517.395000px;}
.y23{bottom:518.115000px;}
.yde{bottom:521.895000px;}
.y143{bottom:524.235000px;}
.y55{bottom:526.215000px;}
.y7e{bottom:527.835000px;}
.yfa{bottom:528.195000px;}
.yc8{bottom:542.055000px;}
.y54{bottom:545.115000px;}
.y126{bottom:545.295000px;}
.y22{bottom:546.195000px;}
.ydd{bottom:549.975000px;}
.y142{bottom:552.135000px;}
.ya6{bottom:553.755000px;}
.y7d{bottom:556.095000px;}
.y53{bottom:564.195000px;}
.y21{bottom:565.095000px;}
.y125{bottom:573.375000px;}
.y7c{bottom:575.175000px;}
.ydc{bottom:578.235000px;}
.y141{bottom:581.295000px;}
.y20{bottom:584.175000px;}
.y52{bottom:592.095000px;}
.yd9{bottom:593.895000px;}
.y7b{bottom:594.075000px;}
.y124{bottom:601.275000px;}
.y1f{bottom:603.075000px;}
.y140{bottom:610.455000px;}
.y51{bottom:611.175000px;}
.y7a{bottom:613.155000px;}
.y1e{bottom:622.155000px;}
.y123{bottom:629.355000px;}
.y13f{bottom:629.535000px;}
.y50{bottom:630.075000px;}
.y79{bottom:631.695000px;}
.yd7{bottom:634.035000px;}
.yc6{bottom:637.635000px;}
.y169{bottom:639.075000px;}
.y1d{bottom:640.695000px;}
.y122{bottom:648.255000px;}
.y4f{bottom:649.155000px;}
.yf9{bottom:650.055000px;}
.y168{bottom:658.155000px;}
.y78{bottom:659.955000px;}
.y121{bottom:666.795000px;}
.y4e{bottom:668.055000px;}
.yf8{bottom:668.955000px;}
.y13e{bottom:677.625000px;}
.y1c{bottom:677.985000px;}
.y77{bottom:679.065000px;}
.y167{bottom:686.085000px;}
.yf7{bottom:687.705000px;}
.yd5{bottom:691.845000px;}
.y13d{bottom:692.565000px;}
.y120{bottom:695.265000px;}
.y4d{bottom:695.985000px;}
.y1b{bottom:697.065000px;}
.y166{bottom:704.985000px;}
.y76{bottom:706.965000px;}
.y11f{bottom:710.925000px;}
.y4c{bottom:715.065000px;}
.yf6{bottom:715.965000px;}
.y1a{bottom:724.965000px;}
.y75{bottom:726.045000px;}
.y11e{bottom:730.545000px;}
.y165{bottom:733.065000px;}
.yc5{bottom:733.245000px;}
.y4b{bottom:733.965000px;}
.yf5{bottom:735.045000px;}
.y19{bottom:744.045000px;}
.y11c{bottom:750.345000px;}
.y164{bottom:751.965000px;}
.y4a{bottom:753.045000px;}
.y74{bottom:753.585000px;}
.y18{bottom:762.945000px;}
.y11b{bottom:770.145000px;}
.y49{bottom:771.945000px;}
.y163{bottom:780.045000px;}
.y17{bottom:781.845000px;}
.ya4{bottom:782.385000px;}
.y11a{bottom:793.545000px;}
.y48{bottom:799.845000px;}
.y73{bottom:800.925000px;}
.yd4{bottom:806.325000px;}
.y162{bottom:807.945000px;}
.y16{bottom:809.925000px;}
.y47{bottom:818.925000px;}
.y119{bottom:821.445000px;}
.y161{bottom:826.845000px;}
.y15{bottom:828.825000px;}
.y46{bottom:837.825000px;}
.ya2{bottom:839.985000px;}
.y160{bottom:845.925000px;}
.y14{bottom:847.905000px;}
.y118{bottom:849.705000px;}
.y45{bottom:856.905000px;}
.y15f{bottom:864.465000px;}
.y72{bottom:866.445000px;}
.y13{bottom:866.805000px;}
.y44{bottom:875.805000px;}
.y117{bottom:877.785000px;}
.yd3{bottom:883.005000px;}
.y15e{bottom:892.905000px;}
.y71{bottom:894.345000px;}
.y12{bottom:894.705000px;}
.yf4{bottom:903.705000px;}
.yd1{bottom:904.245000px;}
.y116{bottom:905.685000px;}
.y15d{bottom:911.850000px;}
.y11{bottom:913.830000px;}
.y43{bottom:922.830000px;}
.yc4{bottom:924.630000px;}
.y15c{bottom:930.750000px;}
.y10{bottom:932.730000px;}
.y115{bottom:933.810000px;}
.y9f{bottom:935.610000px;}
.y42{bottom:941.730000px;}
.y15b{bottom:949.830000px;}
.yf3{bottom:950.730000px;}
.yf{bottom:951.810000px;}
.y114{bottom:952.710000px;}
.y41{bottom:960.810000px;}
.y15a{bottom:968.730000px;}
.y70{bottom:969.810000px;}
.ye{bottom:970.710000px;}
.y113{bottom:980.610000px;}
.yc3{bottom:982.230000px;}
.y159{bottom:987.810000px;}
.yf2{bottom:988.350000px;}
.y40{bottom:988.710000px;}
.yd{bottom:989.610000px;}
.y112{bottom:999.690000px;}
.y158{bottom:1006.710000px;}
.y3f{bottom:1007.610000px;}
.yc{bottom:1008.330000px;}
.y9c{bottom:1012.290000px;}
.y6f{bottom:1016.610000px;}
.y157{bottom:1025.610000px;}
.y111{bottom:1027.230000px;}
.y3e{bottom:1035.690000px;}
.y156{bottom:1044.690000px;}
.y9a{bottom:1050.990000px;}
.yb{bottom:1053.150000px;}
.y3d{bottom:1054.590000px;}
.y110{bottom:1055.670000px;}
.yc1{bottom:1058.910000px;}
.y6e{bottom:1063.590000px;}
.y99{bottom:1071.330000px;}
.ya{bottom:1072.230000px;}
.yf1{bottom:1073.310000px;}
.y3c{bottom:1073.670000px;}
.y6d{bottom:1082.670000px;}
.y10f{bottom:1083.570000px;}
.y9{bottom:1090.770000px;}
.y13c{bottom:1092.210000px;}
.y97{bottom:1092.390000px;}
.y3b{bottom:1092.570000px;}
.y6c{bottom:1101.570000px;}
.y10e{bottom:1111.650000px;}
.y95{bottom:1113.630000px;}
.y8{bottom:1120.290000px;}
.y3a{bottom:1120.650000px;}
.y93{bottom:1134.690000px;}
.y7{bottom:1139.190000px;}
.y39{bottom:1139.550000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1179.180000px;}
.y5{bottom:1181.700000px;}
.y1{bottom:1200.240000px;}
.h27{height:18.900000px;}
.h28{height:19.080000px;}
.he{height:19.102500px;}
.h2a{height:19.440000px;}
.h22{height:19.476000px;}
.h11{height:19.620000px;}
.h29{height:19.980000px;}
.hf{height:20.340000px;}
.h10{height:20.520000px;}
.h6{height:23.580000px;}
.h12{height:37.980000px;}
.h25{height:39.405000px;}
.ha{height:40.985156px;}
.h9{height:42.086250px;}
.hd{height:46.251562px;}
.h18{height:46.736719px;}
.h7{height:52.417969px;}
.h1f{height:56.865000px;}
.h15{height:56.880000px;}
.h20{height:56.916000px;}
.h24{height:57.090000px;}
.h26{height:61.423863px;}
.hb{height:64.978594px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.h8{height:66.757500px;}
.h2b{height:68.084282px;}
.h5{height:69.086250px;}
.h3{height:70.664062px;}
.h1d{height:75.945000px;}
.h21{height:75.955500px;}
.h13{height:75.960000px;}
.h2{height:87.800625px;}
.h17{height:94.845000px;}
.h1b{height:94.860000px;}
.h1e{height:94.881000px;}
.h1a{height:94.882500px;}
.h1c{height:94.890000px;}
.h14{height:94.896000px;}
.h23{height:113.760000px;}
.h19{height:208.635000px;}
.h16{height:227.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:47.520000px;}
.wb{width:66.405000px;}
.w5{width:84.960000px;}
.w8{width:85.161000px;}
.w6{width:88.956000px;}
.w7{width:91.425000px;}
.wa{width:115.416000px;}
.w9{width:119.865000px;}
.w2{width:151.050000px;}
.wf{width:158.250000px;}
.wd{width:169.770000px;}
.w4{width:204.370500px;}
.wc{width:250.230000px;}
.w3{width:678.735000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:9.180000px;}
.x25{left:12.585000px;}
.x27{left:14.565000px;}
.x4{left:16.920000px;}
.x13{left:22.305000px;}
.x16{left:23.925000px;}
.x1c{left:28.065000px;}
.x23{left:29.160000px;}
.x19{left:32.205000px;}
.x15{left:34.200000px;}
.xe{left:36.540000px;}
.x1b{left:38.160000px;}
.x18{left:40.320000px;}
.x17{left:41.400000px;}
.x1e{left:42.465000px;}
.x1d{left:44.460000px;}
.x1a{left:45.540000px;}
.x26{left:48.960000px;}
.x2e{left:57.990000px;}
.x1f{left:59.940000px;}
.x2b{left:64.290000px;}
.x2f{left:68.934000px;}
.x30{left:70.965000px;}
.xc{left:73.111500px;}
.x1{left:75.600000px;}
.x5{left:77.760000px;}
.x32{left:79.245000px;}
.x7{left:80.460000px;}
.xa{left:96.876000px;}
.x29{left:109.974000px;}
.x31{left:119.154000px;}
.x28{left:133.236000px;}
.xb{left:265.750500px;}
.xd{left:280.875000px;}
.x22{left:355.935000px;}
.x9{left:359.535000px;}
.x20{left:364.035000px;}
.xf{left:366.735000px;}
.x34{left:368.175000px;}
.x6{left:379.155000px;}
.x2a{left:384.195000px;}
.x8{left:385.635000px;}
.x21{left:420.195000px;}
.x11{left:456.420000px;}
.x24{left:472.080000px;}
.x12{left:548.580000px;}
.x2c{left:554.685000px;}
.x2d{left:602.925000px;}
.x14{left:634.470000px;}
.x3{left:673.530000px;}
.x33{left:711.510000px;}
.x2{left:791.250000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.271467pt;}
.ls5{letter-spacing:1.077333pt;}
.ls2{letter-spacing:1.236480pt;}
.ls1{letter-spacing:1.280000pt;}
.ls7{letter-spacing:14.991360pt;}
.lsb{letter-spacing:28.880640pt;}
.lse{letter-spacing:32.399360pt;}
.ls8{letter-spacing:36.560640pt;}
.ws9{word-spacing:-58.880000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws6{word-spacing:-14.991467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws2{word-spacing:-10.357333pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-2.826240pt;}
._13{margin-left:-1.828693pt;}
._0{margin-left:-0.929280pt;}
._2{width:0.942080pt;}
._1{width:1.877973pt;}
._3{width:2.953600pt;}
._d{width:4.239360pt;}
._e{width:5.227520pt;}
._7{width:6.522880pt;}
._c{width:7.595520pt;}
._15{width:8.541013pt;}
._b{width:9.879040pt;}
._a{width:10.892800pt;}
._6{width:12.288000pt;}
._5{width:13.542400pt;}
._12{width:16.486400pt;}
._14{width:17.431893pt;}
._11{width:18.828800pt;}
._1c{width:19.842560pt;}
._16{width:20.902400pt;}
._3e{width:22.021120pt;}
._1b{width:23.080960pt;}
._9{width:24.140800pt;}
._8{width:25.070080pt;}
._36{width:26.381653pt;}
._24{width:27.555840pt;}
._10{width:28.855467pt;}
._f{width:29.779627pt;}
._27{width:30.848853pt;}
._39{width:32.564907pt;}
._40{width:34.266453pt;}
._31{width:36.446720pt;}
._17{width:38.330880pt;}
._2b{width:39.865173pt;}
._37{width:40.921600pt;}
._23{width:42.511360pt;}
._3b{width:44.748800pt;}
._3f{width:45.641387pt;}
._35{width:46.632960pt;}
._2c{width:47.692800pt;}
._25{width:49.282560pt;}
._38{width:50.224640pt;}
._1e{width:53.463040pt;}
._18{width:58.938880pt;}
._30{width:60.116480pt;}
._1f{width:61.235200pt;}
._20{width:62.707200pt;}
._22{width:63.943680pt;}
._3d{width:66.534400pt;}
._3c{width:67.594240pt;}
._42{width:69.358933pt;}
._41{width:70.658560pt;}
._26{width:74.188800pt;}
._28{width:75.664213pt;}
._1d{width:77.662720pt;}
._34{width:78.663680pt;}
._1a{width:81.316693pt;}
._2d{width:86.965760pt;}
._33{width:90.734080pt;}
._2a{width:92.147200pt;}
._29{width:93.504853pt;}
._3a{width:121.057280pt;}
._21{width:123.176960pt;}
._43{width:128.011093pt;}
._2f{width:159.152640pt;}
._32{width:225.098240pt;}
._2e{width:343.388160pt;}
._19{width:457.262080pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:3.186667pt;}
.y9e{bottom:3.200000pt;}
.y94{bottom:3.360000pt;}
.y11d{bottom:3.520000pt;}
.yd2{bottom:3.680000pt;}
.y9b{bottom:3.840000pt;}
.y139{bottom:4.000000pt;}
.y136{bottom:4.160000pt;}
.y96{bottom:4.480000pt;}
.y98{bottom:4.640000pt;}
.y6{bottom:6.400000pt;}
.ybc{bottom:19.986667pt;}
.ya5{bottom:20.000000pt;}
.ycb{bottom:20.146667pt;}
.y9d{bottom:20.160000pt;}
.yda{bottom:21.440000pt;}
.ydb{bottom:21.760000pt;}
.ybb{bottom:36.946667pt;}
.ya1{bottom:36.960000pt;}
.yc7{bottom:36.986667pt;}
.yaf{bottom:37.120000pt;}
.yd8{bottom:37.146667pt;}
.y4{bottom:38.400000pt;}
.yba{bottom:53.746667pt;}
.yc2{bottom:53.760000pt;}
.ycd{bottom:53.906667pt;}
.ya0{bottom:53.920000pt;}
.yc0{bottom:53.946667pt;}
.y10d{bottom:60.160000pt;}
.y6b{bottom:64.640000pt;}
.y92{bottom:66.080000pt;}
.y38{bottom:66.400000pt;}
.y134{bottom:67.360000pt;}
.yb9{bottom:70.706667pt;}
.yb1{bottom:70.720000pt;}
.ybf{bottom:70.746667pt;}
.ya3{bottom:70.760000pt;}
.yae{bottom:70.880000pt;}
.y6a{bottom:81.600000pt;}
.y37{bottom:83.200000pt;}
.y177{bottom:83.520000pt;}
.y10c{bottom:84.960000pt;}
.yb8{bottom:87.506667pt;}
.yd6{bottom:87.520000pt;}
.yad{bottom:87.680000pt;}
.yd0{bottom:89.760000pt;}
.y91{bottom:91.200000pt;}
.y133{bottom:92.320000pt;}
.yf0{bottom:96.320000pt;}
.y69{bottom:98.400000pt;}
.y36{bottom:100.160000pt;}
.y10b{bottom:101.600000pt;}
.yb7{bottom:104.306667pt;}
.yac{bottom:104.480000pt;}
.y90{bottom:108.160000pt;}
.y176{bottom:108.960000pt;}
.y132{bottom:109.120000pt;}
.y68{bottom:115.200000pt;}
.y35{bottom:116.960000pt;}
.yb6{bottom:121.266667pt;}
.yef{bottom:121.440000pt;}
.yab{bottom:121.466667pt;}
.y8f{bottom:124.960000pt;}
.y175{bottom:125.920000pt;}
.y10a{bottom:126.720000pt;}
.y155{bottom:129.440000pt;}
.y67{bottom:132.160000pt;}
.y131{bottom:133.920000pt;}
.ybe{bottom:136.000000pt;}
.yb5{bottom:138.066667pt;}
.yaa{bottom:138.266667pt;}
.yee{bottom:138.400000pt;}
.y8e{bottom:141.600000pt;}
.y34{bottom:141.920000pt;}
.y174{bottom:142.720000pt;}
.y109{bottom:143.520000pt;}
.y154{bottom:146.240000pt;}
.y66{bottom:148.960000pt;}
.yb4{bottom:155.026667pt;}
.yed{bottom:155.200000pt;}
.ya9{bottom:155.226667pt;}
.ycf{bottom:157.920000pt;}
.y33{bottom:158.720000pt;}
.y130{bottom:158.880000pt;}
.y153{bottom:163.200000pt;}
.y65{bottom:165.920000pt;}
.y8d{bottom:166.720000pt;}
.y173{bottom:167.520000pt;}
.y108{bottom:168.480000pt;}
.yec{bottom:171.840000pt;}
.yb3{bottom:171.866667pt;}
.ya8{bottom:172.026667pt;}
.y152{bottom:180.000000pt;}
.y32{bottom:183.546667pt;}
.y12f{bottom:183.706667pt;}
.y172{bottom:184.506667pt;}
.y107{bottom:185.306667pt;}
.ya7{bottom:188.826667pt;}
.y64{bottom:190.746667pt;}
.y151{bottom:196.826667pt;}
.yeb{bottom:196.986667pt;}
.y12e{bottom:200.346667pt;}
.y31{bottom:200.506667pt;}
.y63{bottom:207.546667pt;}
.y171{bottom:209.306667pt;}
.yce{bottom:209.320000pt;}
.y106{bottom:210.266667pt;}
.y150{bottom:213.786667pt;}
.yea{bottom:213.946667pt;}
.y8c{bottom:217.306667pt;}
.yb2{bottom:221.160000pt;}
.y62{bottom:224.506667pt;}
.y30{bottom:225.306667pt;}
.y12d{bottom:225.466667pt;}
.y170{bottom:226.266667pt;}
.y105{bottom:227.066667pt;}
.y14f{bottom:230.586667pt;}
.y8b{bottom:234.266667pt;}
.ye9{bottom:238.746667pt;}
.y61{bottom:241.306667pt;}
.y2f{bottom:242.266667pt;}
.y104{bottom:243.546667pt;}
.y14e{bottom:247.546667pt;}
.y13b{bottom:248.346667pt;}
.y8a{bottom:250.746667pt;}
.y16f{bottom:251.066667pt;}
.ye8{bottom:255.546667pt;}
.y60{bottom:258.266667pt;}
.y2e{bottom:258.746667pt;}
.ycc{bottom:260.520000pt;}
.y14d{bottom:264.346667pt;}
.y13a{bottom:266.746667pt;}
.y16e{bottom:267.866667pt;}
.y103{bottom:268.826667pt;}
.ye7{bottom:272.506667pt;}
.y5f{bottom:275.066667pt;}
.y2d{bottom:275.546667pt;}
.y89{bottom:275.866667pt;}
.y14c{bottom:281.146667pt;}
.y138{bottom:285.146667pt;}
.y102{bottom:285.626667pt;}
.y2c{bottom:292.506667pt;}
.y88{bottom:292.826667pt;}
.ye6{bottom:297.306667pt;}
.y5e{bottom:299.866667pt;}
.y137{bottom:303.066667pt;}
.y14b{bottom:306.106667pt;}
.y87{bottom:309.626667pt;}
.y101{bottom:310.586667pt;}
.ye5{bottom:314.266667pt;}
.y5d{bottom:316.826667pt;}
.y2b{bottom:317.626667pt;}
.y135{bottom:321.466667pt;}
.y14a{bottom:322.906667pt;}
.y86{bottom:326.586667pt;}
.y100{bottom:327.386667pt;}
.yca{bottom:328.680000pt;}
.ye4{bottom:330.746667pt;}
.y5c{bottom:333.626667pt;}
.y2a{bottom:334.586667pt;}
.y149{bottom:339.866667pt;}
.y12c{bottom:343.226667pt;}
.y85{bottom:343.386667pt;}
.y5b{bottom:350.586667pt;}
.yff{bottom:352.186667pt;}
.ye3{bottom:355.546667pt;}
.y148{bottom:356.666667pt;}
.y29{bottom:359.386667pt;}
.y84{bottom:359.866667pt;}
.y12b{bottom:368.346667pt;}
.yfe{bottom:369.146667pt;}
.ye2{bottom:372.506667pt;}
.y147{bottom:373.466667pt;}
.y5a{bottom:375.386667pt;}
.y28{bottom:376.186667pt;}
.y83{bottom:385.146667pt;}
.y146{bottom:390.426667pt;}
.y59{bottom:392.226667pt;}
.y27{bottom:393.186667pt;}
.y12a{bottom:393.346667pt;}
.yfd{bottom:393.986667pt;}
.ye1{bottom:397.346667pt;}
.y16d{bottom:401.186667pt;}
.y82{bottom:401.986667pt;}
.yb0{bottom:407.266667pt;}
.y58{bottom:409.186667pt;}
.y26{bottom:409.986667pt;}
.y129{bottom:410.146667pt;}
.yfc{bottom:410.946667pt;}
.yc9{bottom:413.666667pt;}
.ye0{bottom:414.306667pt;}
.y16c{bottom:417.986667pt;}
.y81{bottom:418.946667pt;}
.y145{bottom:424.226667pt;}
.y25{bottom:426.946667pt;}
.yfb{bottom:427.426667pt;}
.y57{bottom:433.986667pt;}
.y128{bottom:434.626667pt;}
.y80{bottom:435.746667pt;}
.ydf{bottom:439.106667pt;}
.y144{bottom:440.706667pt;}
.y16b{bottom:442.946667pt;}
.y24{bottom:443.746667pt;}
.y56{bottom:450.946667pt;}
.y7f{bottom:452.546667pt;}
.y16a{bottom:459.746667pt;}
.y127{bottom:459.906667pt;}
.y23{bottom:460.546667pt;}
.yde{bottom:463.906667pt;}
.y143{bottom:465.986667pt;}
.y55{bottom:467.746667pt;}
.y7e{bottom:469.186667pt;}
.yfa{bottom:469.506667pt;}
.yc8{bottom:481.826667pt;}
.y54{bottom:484.546667pt;}
.y126{bottom:484.706667pt;}
.y22{bottom:485.506667pt;}
.ydd{bottom:488.866667pt;}
.y142{bottom:490.786667pt;}
.ya6{bottom:492.226667pt;}
.y7d{bottom:494.306667pt;}
.y53{bottom:501.506667pt;}
.y21{bottom:502.306667pt;}
.y125{bottom:509.666667pt;}
.y7c{bottom:511.266667pt;}
.ydc{bottom:513.986667pt;}
.y141{bottom:516.706667pt;}
.y20{bottom:519.266667pt;}
.y52{bottom:526.306667pt;}
.yd9{bottom:527.906667pt;}
.y7b{bottom:528.066667pt;}
.y124{bottom:534.466667pt;}
.y1f{bottom:536.066667pt;}
.y140{bottom:542.626667pt;}
.y51{bottom:543.266667pt;}
.y7a{bottom:545.026667pt;}
.y1e{bottom:553.026667pt;}
.y123{bottom:559.426667pt;}
.y13f{bottom:559.586667pt;}
.y50{bottom:560.066667pt;}
.y79{bottom:561.506667pt;}
.yd7{bottom:563.586667pt;}
.yc6{bottom:566.786667pt;}
.y169{bottom:568.066667pt;}
.y1d{bottom:569.506667pt;}
.y122{bottom:576.226667pt;}
.y4f{bottom:577.026667pt;}
.yf9{bottom:577.826667pt;}
.y168{bottom:585.026667pt;}
.y78{bottom:586.626667pt;}
.y121{bottom:592.706667pt;}
.y4e{bottom:593.826667pt;}
.yf8{bottom:594.626667pt;}
.y13e{bottom:602.333333pt;}
.y1c{bottom:602.653333pt;}
.y77{bottom:603.613333pt;}
.y167{bottom:609.853333pt;}
.yf7{bottom:611.293333pt;}
.yd5{bottom:614.973333pt;}
.y13d{bottom:615.613333pt;}
.y120{bottom:618.013333pt;}
.y4d{bottom:618.653333pt;}
.y1b{bottom:619.613333pt;}
.y166{bottom:626.653333pt;}
.y76{bottom:628.413333pt;}
.y11f{bottom:631.933333pt;}
.y4c{bottom:635.613333pt;}
.yf6{bottom:636.413333pt;}
.y1a{bottom:644.413333pt;}
.y75{bottom:645.373333pt;}
.y11e{bottom:649.373333pt;}
.y165{bottom:651.613333pt;}
.yc5{bottom:651.773333pt;}
.y4b{bottom:652.413333pt;}
.yf5{bottom:653.373333pt;}
.y19{bottom:661.373333pt;}
.y11c{bottom:666.973333pt;}
.y164{bottom:668.413333pt;}
.y4a{bottom:669.373333pt;}
.y74{bottom:669.853333pt;}
.y18{bottom:678.173333pt;}
.y11b{bottom:684.573333pt;}
.y49{bottom:686.173333pt;}
.y163{bottom:693.373333pt;}
.y17{bottom:694.973333pt;}
.ya4{bottom:695.453333pt;}
.y11a{bottom:705.373333pt;}
.y48{bottom:710.973333pt;}
.y73{bottom:711.933333pt;}
.yd4{bottom:716.733333pt;}
.y162{bottom:718.173333pt;}
.y16{bottom:719.933333pt;}
.y47{bottom:727.933333pt;}
.y119{bottom:730.173333pt;}
.y161{bottom:734.973333pt;}
.y15{bottom:736.733333pt;}
.y46{bottom:744.733333pt;}
.ya2{bottom:746.653333pt;}
.y160{bottom:751.933333pt;}
.y14{bottom:753.693333pt;}
.y118{bottom:755.293333pt;}
.y45{bottom:761.693333pt;}
.y15f{bottom:768.413333pt;}
.y72{bottom:770.173333pt;}
.y13{bottom:770.493333pt;}
.y44{bottom:778.493333pt;}
.y117{bottom:780.253333pt;}
.yd3{bottom:784.893333pt;}
.y15e{bottom:793.693333pt;}
.y71{bottom:794.973333pt;}
.y12{bottom:795.293333pt;}
.yf4{bottom:803.293333pt;}
.yd1{bottom:803.773333pt;}
.y116{bottom:805.053333pt;}
.y15d{bottom:810.533333pt;}
.y11{bottom:812.293333pt;}
.y43{bottom:820.293333pt;}
.yc4{bottom:821.893333pt;}
.y15c{bottom:827.333333pt;}
.y10{bottom:829.093333pt;}
.y115{bottom:830.053333pt;}
.y9f{bottom:831.653333pt;}
.y42{bottom:837.093333pt;}
.y15b{bottom:844.293333pt;}
.yf3{bottom:845.093333pt;}
.yf{bottom:846.053333pt;}
.y114{bottom:846.853333pt;}
.y41{bottom:854.053333pt;}
.y15a{bottom:861.093333pt;}
.y70{bottom:862.053333pt;}
.ye{bottom:862.853333pt;}
.y113{bottom:871.653333pt;}
.yc3{bottom:873.093333pt;}
.y159{bottom:878.053333pt;}
.yf2{bottom:878.533333pt;}
.y40{bottom:878.853333pt;}
.yd{bottom:879.653333pt;}
.y112{bottom:888.613333pt;}
.y158{bottom:894.853333pt;}
.y3f{bottom:895.653333pt;}
.yc{bottom:896.293333pt;}
.y9c{bottom:899.813333pt;}
.y6f{bottom:903.653333pt;}
.y157{bottom:911.653333pt;}
.y111{bottom:913.093333pt;}
.y3e{bottom:920.613333pt;}
.y156{bottom:928.613333pt;}
.y9a{bottom:934.213333pt;}
.yb{bottom:936.133333pt;}
.y3d{bottom:937.413333pt;}
.y110{bottom:938.373333pt;}
.yc1{bottom:941.253333pt;}
.y6e{bottom:945.413333pt;}
.y99{bottom:952.293333pt;}
.ya{bottom:953.093333pt;}
.yf1{bottom:954.053333pt;}
.y3c{bottom:954.373333pt;}
.y6d{bottom:962.373333pt;}
.y10f{bottom:963.173333pt;}
.y9{bottom:969.573333pt;}
.y13c{bottom:970.853333pt;}
.y97{bottom:971.013333pt;}
.y3b{bottom:971.173333pt;}
.y6c{bottom:979.173333pt;}
.y10e{bottom:988.133333pt;}
.y95{bottom:989.893333pt;}
.y8{bottom:995.813333pt;}
.y3a{bottom:996.133333pt;}
.y93{bottom:1008.613333pt;}
.y7{bottom:1012.613333pt;}
.y39{bottom:1012.933333pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1048.160000pt;}
.y5{bottom:1050.400000pt;}
.y1{bottom:1066.880000pt;}
.h27{height:16.800000pt;}
.h28{height:16.960000pt;}
.he{height:16.980000pt;}
.h2a{height:17.280000pt;}
.h22{height:17.312000pt;}
.h11{height:17.440000pt;}
.h29{height:17.760000pt;}
.hf{height:18.080000pt;}
.h10{height:18.240000pt;}
.h6{height:20.960000pt;}
.h12{height:33.760000pt;}
.h25{height:35.026667pt;}
.ha{height:36.431250pt;}
.h9{height:37.410000pt;}
.hd{height:41.112500pt;}
.h18{height:41.543750pt;}
.h7{height:46.593750pt;}
.h1f{height:50.546667pt;}
.h15{height:50.560000pt;}
.h20{height:50.592000pt;}
.h24{height:50.746667pt;}
.h26{height:54.598989pt;}
.hb{height:57.758750pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.h8{height:59.340000pt;}
.h2b{height:60.519362pt;}
.h5{height:61.410000pt;}
.h3{height:62.812500pt;}
.h1d{height:67.506667pt;}
.h21{height:67.516000pt;}
.h13{height:67.520000pt;}
.h2{height:78.045000pt;}
.h17{height:84.306667pt;}
.h1b{height:84.320000pt;}
.h1e{height:84.338667pt;}
.h1a{height:84.340000pt;}
.h1c{height:84.346667pt;}
.h14{height:84.352000pt;}
.h23{height:101.120000pt;}
.h19{height:185.453333pt;}
.h16{height:202.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:42.240000pt;}
.wb{width:59.026667pt;}
.w5{width:75.520000pt;}
.w8{width:75.698667pt;}
.w6{width:79.072000pt;}
.w7{width:81.266667pt;}
.wa{width:102.592000pt;}
.w9{width:106.546667pt;}
.w2{width:134.266667pt;}
.wf{width:140.666667pt;}
.wd{width:150.906667pt;}
.w4{width:181.662667pt;}
.wc{width:222.426667pt;}
.w3{width:603.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:8.160000pt;}
.x25{left:11.186667pt;}
.x27{left:12.946667pt;}
.x4{left:15.040000pt;}
.x13{left:19.826667pt;}
.x16{left:21.266667pt;}
.x1c{left:24.946667pt;}
.x23{left:25.920000pt;}
.x19{left:28.626667pt;}
.x15{left:30.400000pt;}
.xe{left:32.480000pt;}
.x1b{left:33.920000pt;}
.x18{left:35.840000pt;}
.x17{left:36.800000pt;}
.x1e{left:37.746667pt;}
.x1d{left:39.520000pt;}
.x1a{left:40.480000pt;}
.x26{left:43.520000pt;}
.x2e{left:51.546667pt;}
.x1f{left:53.280000pt;}
.x2b{left:57.146667pt;}
.x2f{left:61.274667pt;}
.x30{left:63.080000pt;}
.xc{left:64.988000pt;}
.x1{left:67.200000pt;}
.x5{left:69.120000pt;}
.x32{left:70.440000pt;}
.x7{left:71.520000pt;}
.xa{left:86.112000pt;}
.x29{left:97.754667pt;}
.x31{left:105.914667pt;}
.x28{left:118.432000pt;}
.xb{left:236.222667pt;}
.xd{left:249.666667pt;}
.x22{left:316.386667pt;}
.x9{left:319.586667pt;}
.x20{left:323.586667pt;}
.xf{left:325.986667pt;}
.x34{left:327.266667pt;}
.x6{left:337.026667pt;}
.x2a{left:341.506667pt;}
.x8{left:342.786667pt;}
.x21{left:373.506667pt;}
.x11{left:405.706667pt;}
.x24{left:419.626667pt;}
.x12{left:487.626667pt;}
.x2c{left:493.053333pt;}
.x2d{left:535.933333pt;}
.x14{left:563.973333pt;}
.x3{left:598.693333pt;}
.x33{left:632.453333pt;}
.x2{left:703.333333pt;}
}




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