
    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_a1d6468770109fa8703b363a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.747559;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_09ce54e16d661d49046991ab.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_c7debb582c0013f6e8601d97.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_44fc637bbf6e51cdef800f6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_e5c561e1c1163aefebca4b5a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.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_2f0dd5c201acd7f10f05db5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920410;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:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.100200px;}
.lsa{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls1b{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.109440px;}
.ls13{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206640px;}
.ls17{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.311760px;}
.ls1e{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.370080px;}
.ls1c{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls1a{letter-spacing:16.506720px;}
.ls2{letter-spacing:26.586720px;}
.ls18{letter-spacing:46.026720px;}
.lsc{letter-spacing:64.026720px;}
.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:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.075600px;}
.wsc{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.ws10{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-6.356640px;}
._e{margin-left:-3.775680px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:2.384880px;}
._13{width:4.013760px;}
._12{width:5.748720px;}
._10{width:6.757680px;}
._f{width:7.766400px;}
._3{width:9.540000px;}
._16{width:11.005920px;}
._1{width:12.420000px;}
._17{width:13.864320px;}
._22{width:16.647840px;}
._14{width:17.987760px;}
._1f{width:19.071360px;}
._15{width:20.076240px;}
._2a{width:21.812400px;}
._1a{width:23.067360px;}
._23{width:24.202800px;}
._2c{width:25.850880px;}
._20{width:27.310320px;}
._24{width:28.326240px;}
._1b{width:29.342160px;}
._1c{width:30.656880px;}
._1e{width:31.854960px;}
._29{width:33.824160px;}
._2e{width:34.899840px;}
._1d{width:36.573120px;}
._19{width:37.978320px;}
._18{width:39.023280px;}
._30{width:40.397760px;}
._2f{width:41.891760px;}
._2d{width:42.967440px;}
._28{width:43.981920px;}
._27{width:45.298080px;}
._33{width:46.314000px;}
._32{width:47.381520px;}
._2b{width:50.258160px;}
._25{width:51.513120px;}
._34{width:56.712240px;}
._26{width:57.847680px;}
._21{width:60.895440px;}
._3c{width:67.767840px;}
._38{width:70.158240px;}
._36{width:71.233920px;}
._35{width:72.309600px;}
._8{width:88.200000px;}
._3d{width:94.839120px;}
._6{width:97.380000px;}
._3a{width:100.720560px;}
._0{width:102.600000px;}
._3b{width:105.177600px;}
._9{width:108.180000px;}
._39{width:136.491840px;}
._3e{width:139.768320px;}
._31{width:155.700000px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._37{width:235.362000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.400000px;}
.y2b{bottom:5.760000px;}
.y124{bottom:5.940000px;}
.y45{bottom:7.020000px;}
.y10{bottom:7.200000px;}
.y1b{bottom:8.820000px;}
.y8{bottom:14.580000px;}
.yd{bottom:15.300000px;}
.y2a{bottom:25.560000px;}
.y132{bottom:25.590000px;}
.y118{bottom:25.740000px;}
.y10a{bottom:25.785000px;}
.y11b{bottom:26.280000px;}
.y135{bottom:26.460000px;}
.y11{bottom:38.700000px;}
.y7{bottom:38.880000px;}
.yc{bottom:44.100000px;}
.y29{bottom:45.360000px;}
.y130{bottom:45.540000px;}
.y109{bottom:45.585000px;}
.y11a{bottom:46.260000px;}
.y134{bottom:46.290000px;}
.yf{bottom:53.100000px;}
.y44{bottom:53.280000px;}
.y6{bottom:63.180000px;}
.y28{bottom:65.160000px;}
.y12f{bottom:65.340000px;}
.y116{bottom:65.370000px;}
.yb{bottom:73.080000px;}
.y12e{bottom:81.900000px;}
.y41{bottom:82.440000px;}
.y5{bottom:84.450000px;}
.y27{bottom:85.140000px;}
.y115{bottom:85.170000px;}
.y107{bottom:87.480000px;}
.ya3{bottom:88.200000px;}
.yd9{bottom:89.280000px;}
.y93{bottom:91.620000px;}
.ya{bottom:92.370000px;}
.y74{bottom:94.140000px;}
.yc1{bottom:96.480000px;}
.y40{bottom:102.240000px;}
.y26{bottom:104.940000px;}
.y4{bottom:106.950000px;}
.y106{bottom:107.280000px;}
.ya2{bottom:108.000000px;}
.yd8{bottom:109.080000px;}
.y9{bottom:110.190000px;}
.y92{bottom:111.420000px;}
.y73{bottom:113.940000px;}
.yc0{bottom:116.280000px;}
.y3f{bottom:122.040000px;}
.y25{bottom:124.770000px;}
.y3{bottom:126.750000px;}
.y105{bottom:127.080000px;}
.ya1{bottom:127.800000px;}
.yd7{bottom:128.880000px;}
.y91{bottom:131.400000px;}
.y72{bottom:133.920000px;}
.ybf{bottom:136.080000px;}
.y3e{bottom:141.840000px;}
.y24{bottom:144.570000px;}
.y104{bottom:146.880000px;}
.ya0{bottom:147.780000px;}
.yd6{bottom:148.680000px;}
.y90{bottom:151.200000px;}
.y71{bottom:153.750000px;}
.ybe{bottom:155.910000px;}
.y3d{bottom:161.850000px;}
.y23{bottom:164.370000px;}
.y103{bottom:166.710000px;}
.y9f{bottom:167.610000px;}
.y12d{bottom:167.790000px;}
.yd5{bottom:168.690000px;}
.y8f{bottom:171.030000px;}
.y70{bottom:173.550000px;}
.ybd{bottom:175.710000px;}
.y3c{bottom:181.650000px;}
.y22{bottom:184.350000px;}
.y102{bottom:186.690000px;}
.y9e{bottom:187.410000px;}
.y12c{bottom:187.770000px;}
.y8e{bottom:190.830000px;}
.y6f{bottom:193.350000px;}
.ybc{bottom:195.690000px;}
.yd4{bottom:197.490000px;}
.y3b{bottom:201.450000px;}
.y21{bottom:204.150000px;}
.y101{bottom:206.490000px;}
.y9d{bottom:207.210000px;}
.y12b{bottom:207.570000px;}
.y8d{bottom:210.630000px;}
.y6e{bottom:213.150000px;}
.ybb{bottom:215.490000px;}
.yd3{bottom:217.290000px;}
.y3a{bottom:221.250000px;}
.y20{bottom:223.950000px;}
.y100{bottom:226.290000px;}
.y9c{bottom:227.010000px;}
.y12a{bottom:227.370000px;}
.y8c{bottom:230.430000px;}
.y6d{bottom:233.130000px;}
.yba{bottom:235.290000px;}
.yd2{bottom:237.090000px;}
.y39{bottom:241.050000px;}
.y1f{bottom:243.750000px;}
.yff{bottom:246.090000px;}
.y9b{bottom:246.990000px;}
.y129{bottom:247.170000px;}
.y8b{bottom:250.410000px;}
.y6c{bottom:252.930000px;}
.yb9{bottom:255.090000px;}
.yd1{bottom:256.890000px;}
.y38{bottom:261.030000px;}
.y1e{bottom:263.550000px;}
.yfe{bottom:265.890000px;}
.y9a{bottom:266.790000px;}
.y128{bottom:266.970000px;}
.y8a{bottom:270.210000px;}
.y6b{bottom:272.730000px;}
.yb8{bottom:274.890000px;}
.yd0{bottom:276.870000px;}
.y37{bottom:280.830000px;}
.y1d{bottom:283.530000px;}
.yfd{bottom:285.870000px;}
.y99{bottom:286.590000px;}
.y127{bottom:286.950000px;}
.y89{bottom:290.010000px;}
.y6a{bottom:292.530000px;}
.yb7{bottom:294.870000px;}
.ycf{bottom:296.670000px;}
.y36{bottom:300.630000px;}
.yfc{bottom:305.670000px;}
.y98{bottom:306.390000px;}
.y126{bottom:306.750000px;}
.y88{bottom:309.810000px;}
.y69{bottom:312.330000px;}
.yb6{bottom:314.670000px;}
.yce{bottom:316.470000px;}
.y35{bottom:320.430000px;}
.y125{bottom:321.510000px;}
.yfb{bottom:325.470000px;}
.y97{bottom:326.190000px;}
.y68{bottom:329.070000px;}
.y87{bottom:329.610000px;}
.y15a{bottom:332.310000px;}
.yb5{bottom:334.470000px;}
.ycd{bottom:336.270000px;}
.y34{bottom:340.230000px;}
.y123{bottom:342.030000px;}
.yfa{bottom:345.270000px;}
.y96{bottom:346.170000px;}
.y86{bottom:349.590000px;}
.y159{bottom:352.110000px;}
.yb4{bottom:354.270000px;}
.ycc{bottom:356.070000px;}
.y33{bottom:360.210000px;}
.y122{bottom:362.730000px;}
.yf9{bottom:365.070000px;}
.y95{bottom:365.970000px;}
.y85{bottom:369.390000px;}
.y158{bottom:371.910000px;}
.yb3{bottom:374.070000px;}
.ycb{bottom:376.050000px;}
.y32{bottom:380.010000px;}
.y94{bottom:382.530000px;}
.y121{bottom:383.250000px;}
.yf8{bottom:385.050000px;}
.y84{bottom:389.190000px;}
.y157{bottom:391.710000px;}
.yb2{bottom:394.050000px;}
.yca{bottom:395.850000px;}
.y31{bottom:399.810000px;}
.yf7{bottom:404.895000px;}
.y83{bottom:409.035000px;}
.y156{bottom:411.555000px;}
.yb1{bottom:413.895000px;}
.yc9{bottom:415.695000px;}
.y30{bottom:419.655000px;}
.yf6{bottom:424.695000px;}
.y82{bottom:428.835000px;}
.y120{bottom:429.555000px;}
.y155{bottom:431.535000px;}
.yb0{bottom:433.695000px;}
.y2f{bottom:439.455000px;}
.yc8{bottom:444.495000px;}
.y81{bottom:448.815000px;}
.y11f{bottom:449.355000px;}
.y154{bottom:451.335000px;}
.yaf{bottom:453.495000px;}
.y2e{bottom:459.435000px;}
.yc7{bottom:464.295000px;}
.y80{bottom:468.615000px;}
.y11e{bottom:469.155000px;}
.y153{bottom:471.135000px;}
.yae{bottom:473.295000px;}
.y2d{bottom:479.235000px;}
.yc6{bottom:484.275000px;}
.y67{bottom:486.795000px;}
.y7f{bottom:488.415000px;}
.y11d{bottom:488.955000px;}
.y152{bottom:490.935000px;}
.yad{bottom:493.275000px;}
.yc5{bottom:504.075000px;}
.y66{bottom:506.595000px;}
.y7e{bottom:508.215000px;}
.y11c{bottom:508.935000px;}
.y151{bottom:510.735000px;}
.yac{bottom:513.075000px;}
.y2c{bottom:513.795000px;}
.yc4{bottom:523.875000px;}
.y65{bottom:526.395000px;}
.y7d{bottom:528.015000px;}
.y150{bottom:530.715000px;}
.y119{bottom:532.695000px;}
.yab{bottom:532.875000px;}
.y1c{bottom:534.495000px;}
.yc3{bottom:543.675000px;}
.y64{bottom:546.195000px;}
.y7c{bottom:547.995000px;}
.y14f{bottom:550.515000px;}
.yaa{bottom:552.675000px;}
.y117{bottom:553.215000px;}
.yc2{bottom:563.475000px;}
.y63{bottom:566.175000px;}
.y7b{bottom:567.795000px;}
.y14e{bottom:570.315000px;}
.ya9{bottom:572.475000px;}
.yf5{bottom:583.455000px;}
.y62{bottom:587.055000px;}
.y7a{bottom:587.595000px;}
.y14d{bottom:590.115000px;}
.ya8{bottom:592.455000px;}
.y114{bottom:593.715000px;}
.yf4{bottom:603.255000px;}
.y79{bottom:607.395000px;}
.y61{bottom:607.935000px;}
.y14c{bottom:609.915000px;}
.ya7{bottom:612.255000px;}
.yf3{bottom:623.055000px;}
.y78{bottom:627.195000px;}
.y60{bottom:628.815000px;}
.y14b{bottom:629.895000px;}
.ya6{bottom:632.055000px;}
.yf2{bottom:642.855000px;}
.y77{bottom:647.175000px;}
.y5f{bottom:649.725000px;}
.ya5{bottom:651.885000px;}
.yf1{bottom:662.685000px;}
.y76{bottom:667.005000px;}
.y14a{bottom:669.525000px;}
.y5e{bottom:670.605000px;}
.ya4{bottom:671.685000px;}
.yf0{bottom:682.665000px;}
.y75{bottom:683.565000px;}
.y149{bottom:689.325000px;}
.y5d{bottom:691.665000px;}
.y113{bottom:699.405000px;}
.yef{bottom:702.465000px;}
.y148{bottom:709.125000px;}
.y5c{bottom:711.465000px;}
.y112{bottom:719.205000px;}
.yee{bottom:722.265000px;}
.y147{bottom:729.105000px;}
.y5b{bottom:731.265000px;}
.y111{bottom:739.185000px;}
.yed{bottom:742.065000px;}
.y146{bottom:748.905000px;}
.y5a{bottom:751.065000px;}
.y110{bottom:758.985000px;}
.yec{bottom:761.865000px;}
.y145{bottom:768.705000px;}
.y59{bottom:770.865000px;}
.y10f{bottom:778.785000px;}
.yeb{bottom:781.845000px;}
.y144{bottom:788.505000px;}
.y58{bottom:790.845000px;}
.y10e{bottom:798.585000px;}
.yea{bottom:801.645000px;}
.y143{bottom:808.305000px;}
.y57{bottom:810.645000px;}
.y10d{bottom:818.385000px;}
.ye9{bottom:821.445000px;}
.y142{bottom:828.285000px;}
.y56{bottom:830.445000px;}
.y1a{bottom:832.785000px;}
.y10c{bottom:833.325000px;}
.ye8{bottom:841.245000px;}
.y141{bottom:848.085000px;}
.y55{bottom:850.245000px;}
.y10b{bottom:853.845000px;}
.ye7{bottom:861.045000px;}
.y19{bottom:862.125000px;}
.y140{bottom:867.885000px;}
.y54{bottom:870.045000px;}
.y108{bottom:874.365000px;}
.ye6{bottom:881.025000px;}
.y18{bottom:887.145000px;}
.y13f{bottom:887.685000px;}
.y53{bottom:890.025000px;}
.ye5{bottom:900.870000px;}
.y17{bottom:907.170000px;}
.y13e{bottom:907.530000px;}
.y52{bottom:909.870000px;}
.ye4{bottom:920.670000px;}
.y16{bottom:926.970000px;}
.y13d{bottom:927.330000px;}
.y51{bottom:929.670000px;}
.ye3{bottom:940.470000px;}
.y15{bottom:942.090000px;}
.y13c{bottom:947.310000px;}
.y50{bottom:949.470000px;}
.ye2{bottom:960.270000px;}
.y14{bottom:963.330000px;}
.y13b{bottom:967.110000px;}
.y4f{bottom:969.270000px;}
.ye1{bottom:980.250000px;}
.y13{bottom:986.910000px;}
.y4e{bottom:989.250000px;}
.ye0{bottom:1000.050000px;}
.y13a{bottom:1006.710000px;}
.y4d{bottom:1009.050000px;}
.y12{bottom:1018.590000px;}
.ydf{bottom:1019.850000px;}
.y139{bottom:1026.510000px;}
.y4c{bottom:1028.850000px;}
.yde{bottom:1039.650000px;}
.ye{bottom:1045.410000px;}
.y138{bottom:1046.490000px;}
.y4b{bottom:1048.650000px;}
.ydd{bottom:1059.450000px;}
.y137{bottom:1066.290000px;}
.y1{bottom:1067.730000px;}
.y4a{bottom:1068.450000px;}
.ydc{bottom:1079.430000px;}
.y136{bottom:1086.090000px;}
.y49{bottom:1088.430000px;}
.ydb{bottom:1099.230000px;}
.y133{bottom:1100.850000px;}
.y48{bottom:1108.230000px;}
.yda{bottom:1119.030000px;}
.y131{bottom:1121.550000px;}
.y47{bottom:1128.030000px;}
.y46{bottom:1147.860000px;}
.y43{bottom:1174.500000px;}
.y42{bottom:1193.580000px;}
.h3{height:1.999688px;}
.h12{height:19.800000px;}
.h1d{height:19.980000px;}
.h15{height:22.320000px;}
.ha{height:22.500000px;}
.h10{height:22.860000px;}
.hf{height:28.115859px;}
.h8{height:39.049805px;}
.h1f{height:39.636000px;}
.h1a{height:39.780000px;}
.h1c{height:39.816000px;}
.h17{height:41.843672px;}
.h4{height:42.164648px;}
.h6{height:43.215117px;}
.h13{height:43.506914px;}
.hb{height:47.901094px;}
.h16{height:48.312422px;}
.h14{height:48.995859px;}
.h5{height:50.800781px;}
.h7{height:52.066406px;}
.hc{height:53.224453px;}
.hd{height:59.439023px;}
.h18{height:59.616000px;}
.h1b{height:60.300000px;}
.h20{height:60.336000px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h1e{height:79.416000px;}
.h19{height:99.216000px;}
.h2{height:140.796000px;}
.h11{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:29.340000px;}
.w1b{width:29.376000px;}
.w1c{width:29.880000px;}
.w1a{width:30.060000px;}
.w15{width:44.100000px;}
.w1e{width:49.860000px;}
.w1f{width:49.896000px;}
.w6{width:52.776000px;}
.w11{width:54.540000px;}
.w21{width:55.080000px;}
.w23{width:55.116000px;}
.w12{width:60.120000px;}
.w13{width:60.156000px;}
.w14{width:63.720000px;}
.we{width:64.080000px;}
.wd{width:64.836000px;}
.wf{width:66.600000px;}
.w20{width:69.840000px;}
.wc{width:73.800000px;}
.w10{width:77.796000px;}
.w22{width:85.680000px;}
.w1d{width:85.716000px;}
.w17{width:90.180000px;}
.w18{width:90.216000px;}
.w16{width:91.296000px;}
.wb{width:91.836000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w3{width:464.865000px;}
.w9{width:585.690000px;}
.w7{width:731.670000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xd{left:57.780000px;}
.x1a{left:59.579987px;}
.xa{left:62.100000px;}
.x1b{left:63.899987px;}
.x19{left:67.139987px;}
.x6{left:80.865000px;}
.x1e{left:86.075987px;}
.x12{left:101.195987px;}
.xc{left:107.496000px;}
.x18{left:120.995987px;}
.x7{left:133.605000px;}
.x2b{left:141.336000px;}
.x1f{left:147.276000px;}
.x2{left:160.050000px;}
.x1c{left:168.689987px;}
.x25{left:176.790000px;}
.x22{left:188.490000px;}
.x2c{left:191.910000px;}
.x26{left:207.570000px;}
.x3{left:221.070000px;}
.x13{left:236.729987px;}
.x2d{left:242.490000px;}
.x5{left:248.295000px;}
.xe{left:249.870000px;}
.x27{left:267.915000px;}
.x20{left:287.355000px;}
.x2e{left:293.115000px;}
.x28{left:298.515000px;}
.x23{left:310.215000px;}
.x24{left:328.575000px;}
.x21{left:352.155000px;}
.x29{left:358.815000px;}
.x11{left:363.314987px;}
.x10{left:375.014987px;}
.x2a{left:389.415000px;}
.x1d{left:414.434987px;}
.xf{left:473.504987px;}
.x33{left:500.504987px;}
.x15{left:512.744987px;}
.x17{left:527.504987px;}
.x2f{left:560.805000px;}
.x30{left:611.385000px;}
.x16{left:656.249987px;}
.x31{left:662.190000px;}
.x8{left:685.950000px;}
.x32{left:712.770000px;}
.x14{left:782.789987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.089067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls1b{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.097280pt;}
.ls13{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183680pt;}
.ls17{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.277120pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.328960pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls2{letter-spacing:23.632640pt;}
.ls18{letter-spacing:40.912640pt;}
.lsc{letter-spacing:56.912640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.400533pt;}
.wsc{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-5.650347pt;}
._e{margin-left:-3.356160pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.119893pt;}
._13{width:3.567787pt;}
._12{width:5.109973pt;}
._10{width:6.006827pt;}
._f{width:6.903467pt;}
._3{width:8.480000pt;}
._16{width:9.783040pt;}
._1{width:11.040000pt;}
._17{width:12.323840pt;}
._22{width:14.798080pt;}
._14{width:15.989120pt;}
._1f{width:16.952320pt;}
._15{width:17.845547pt;}
._2a{width:19.388800pt;}
._1a{width:20.504320pt;}
._23{width:21.513600pt;}
._2c{width:22.978560pt;}
._20{width:24.275840pt;}
._24{width:25.178880pt;}
._1b{width:26.081920pt;}
._1c{width:27.250560pt;}
._1e{width:28.315520pt;}
._29{width:30.065920pt;}
._2e{width:31.022080pt;}
._1d{width:32.509440pt;}
._19{width:33.758507pt;}
._18{width:34.687360pt;}
._30{width:35.909120pt;}
._2f{width:37.237120pt;}
._2d{width:38.193280pt;}
._28{width:39.095040pt;}
._27{width:40.264960pt;}
._33{width:41.168000pt;}
._32{width:42.116907pt;}
._2b{width:44.673920pt;}
._25{width:45.789440pt;}
._34{width:50.410880pt;}
._26{width:51.420160pt;}
._21{width:54.129280pt;}
._3c{width:60.238080pt;}
._38{width:62.362880pt;}
._36{width:63.319040pt;}
._35{width:64.275200pt;}
._8{width:78.400000pt;}
._3d{width:84.301440pt;}
._6{width:86.560000pt;}
._3a{width:89.529387pt;}
._0{width:91.200000pt;}
._3b{width:93.491200pt;}
._9{width:96.160000pt;}
._39{width:121.326080pt;}
._3e{width:124.238507pt;}
._31{width:138.400000pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._37{width:209.210667pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.800000pt;}
.y2b{bottom:5.120000pt;}
.y124{bottom:5.280000pt;}
.y45{bottom:6.240000pt;}
.y10{bottom:6.400000pt;}
.y1b{bottom:7.840000pt;}
.y8{bottom:12.960000pt;}
.yd{bottom:13.600000pt;}
.y2a{bottom:22.720000pt;}
.y132{bottom:22.746667pt;}
.y118{bottom:22.880000pt;}
.y10a{bottom:22.920000pt;}
.y11b{bottom:23.360000pt;}
.y135{bottom:23.520000pt;}
.y11{bottom:34.400000pt;}
.y7{bottom:34.560000pt;}
.yc{bottom:39.200000pt;}
.y29{bottom:40.320000pt;}
.y130{bottom:40.480000pt;}
.y109{bottom:40.520000pt;}
.y11a{bottom:41.120000pt;}
.y134{bottom:41.146667pt;}
.yf{bottom:47.200000pt;}
.y44{bottom:47.360000pt;}
.y6{bottom:56.160000pt;}
.y28{bottom:57.920000pt;}
.y12f{bottom:58.080000pt;}
.y116{bottom:58.106667pt;}
.yb{bottom:64.960000pt;}
.y12e{bottom:72.800000pt;}
.y41{bottom:73.280000pt;}
.y5{bottom:75.066667pt;}
.y27{bottom:75.680000pt;}
.y115{bottom:75.706667pt;}
.y107{bottom:77.760000pt;}
.ya3{bottom:78.400000pt;}
.yd9{bottom:79.360000pt;}
.y93{bottom:81.440000pt;}
.ya{bottom:82.106667pt;}
.y74{bottom:83.680000pt;}
.yc1{bottom:85.760000pt;}
.y40{bottom:90.880000pt;}
.y26{bottom:93.280000pt;}
.y4{bottom:95.066667pt;}
.y106{bottom:95.360000pt;}
.ya2{bottom:96.000000pt;}
.yd8{bottom:96.960000pt;}
.y9{bottom:97.946667pt;}
.y92{bottom:99.040000pt;}
.y73{bottom:101.280000pt;}
.yc0{bottom:103.360000pt;}
.y3f{bottom:108.480000pt;}
.y25{bottom:110.906667pt;}
.y3{bottom:112.666667pt;}
.y105{bottom:112.960000pt;}
.ya1{bottom:113.600000pt;}
.yd7{bottom:114.560000pt;}
.y91{bottom:116.800000pt;}
.y72{bottom:119.040000pt;}
.ybf{bottom:120.960000pt;}
.y3e{bottom:126.080000pt;}
.y24{bottom:128.506667pt;}
.y104{bottom:130.560000pt;}
.ya0{bottom:131.360000pt;}
.yd6{bottom:132.160000pt;}
.y90{bottom:134.400000pt;}
.y71{bottom:136.666667pt;}
.ybe{bottom:138.586667pt;}
.y3d{bottom:143.866667pt;}
.y23{bottom:146.106667pt;}
.y103{bottom:148.186667pt;}
.y9f{bottom:148.986667pt;}
.y12d{bottom:149.146667pt;}
.yd5{bottom:149.946667pt;}
.y8f{bottom:152.026667pt;}
.y70{bottom:154.266667pt;}
.ybd{bottom:156.186667pt;}
.y3c{bottom:161.466667pt;}
.y22{bottom:163.866667pt;}
.y102{bottom:165.946667pt;}
.y9e{bottom:166.586667pt;}
.y12c{bottom:166.906667pt;}
.y8e{bottom:169.626667pt;}
.y6f{bottom:171.866667pt;}
.ybc{bottom:173.946667pt;}
.yd4{bottom:175.546667pt;}
.y3b{bottom:179.066667pt;}
.y21{bottom:181.466667pt;}
.y101{bottom:183.546667pt;}
.y9d{bottom:184.186667pt;}
.y12b{bottom:184.506667pt;}
.y8d{bottom:187.226667pt;}
.y6e{bottom:189.466667pt;}
.ybb{bottom:191.546667pt;}
.yd3{bottom:193.146667pt;}
.y3a{bottom:196.666667pt;}
.y20{bottom:199.066667pt;}
.y100{bottom:201.146667pt;}
.y9c{bottom:201.786667pt;}
.y12a{bottom:202.106667pt;}
.y8c{bottom:204.826667pt;}
.y6d{bottom:207.226667pt;}
.yba{bottom:209.146667pt;}
.yd2{bottom:210.746667pt;}
.y39{bottom:214.266667pt;}
.y1f{bottom:216.666667pt;}
.yff{bottom:218.746667pt;}
.y9b{bottom:219.546667pt;}
.y129{bottom:219.706667pt;}
.y8b{bottom:222.586667pt;}
.y6c{bottom:224.826667pt;}
.yb9{bottom:226.746667pt;}
.yd1{bottom:228.346667pt;}
.y38{bottom:232.026667pt;}
.y1e{bottom:234.266667pt;}
.yfe{bottom:236.346667pt;}
.y9a{bottom:237.146667pt;}
.y128{bottom:237.306667pt;}
.y8a{bottom:240.186667pt;}
.y6b{bottom:242.426667pt;}
.yb8{bottom:244.346667pt;}
.yd0{bottom:246.106667pt;}
.y37{bottom:249.626667pt;}
.y1d{bottom:252.026667pt;}
.yfd{bottom:254.106667pt;}
.y99{bottom:254.746667pt;}
.y127{bottom:255.066667pt;}
.y89{bottom:257.786667pt;}
.y6a{bottom:260.026667pt;}
.yb7{bottom:262.106667pt;}
.ycf{bottom:263.706667pt;}
.y36{bottom:267.226667pt;}
.yfc{bottom:271.706667pt;}
.y98{bottom:272.346667pt;}
.y126{bottom:272.666667pt;}
.y88{bottom:275.386667pt;}
.y69{bottom:277.626667pt;}
.yb6{bottom:279.706667pt;}
.yce{bottom:281.306667pt;}
.y35{bottom:284.826667pt;}
.y125{bottom:285.786667pt;}
.yfb{bottom:289.306667pt;}
.y97{bottom:289.946667pt;}
.y68{bottom:292.506667pt;}
.y87{bottom:292.986667pt;}
.y15a{bottom:295.386667pt;}
.yb5{bottom:297.306667pt;}
.ycd{bottom:298.906667pt;}
.y34{bottom:302.426667pt;}
.y123{bottom:304.026667pt;}
.yfa{bottom:306.906667pt;}
.y96{bottom:307.706667pt;}
.y86{bottom:310.746667pt;}
.y159{bottom:312.986667pt;}
.yb4{bottom:314.906667pt;}
.ycc{bottom:316.506667pt;}
.y33{bottom:320.186667pt;}
.y122{bottom:322.426667pt;}
.yf9{bottom:324.506667pt;}
.y95{bottom:325.306667pt;}
.y85{bottom:328.346667pt;}
.y158{bottom:330.586667pt;}
.yb3{bottom:332.506667pt;}
.ycb{bottom:334.266667pt;}
.y32{bottom:337.786667pt;}
.y94{bottom:340.026667pt;}
.y121{bottom:340.666667pt;}
.yf8{bottom:342.266667pt;}
.y84{bottom:345.946667pt;}
.y157{bottom:348.186667pt;}
.yb2{bottom:350.266667pt;}
.yca{bottom:351.866667pt;}
.y31{bottom:355.386667pt;}
.yf7{bottom:359.906667pt;}
.y83{bottom:363.586667pt;}
.y156{bottom:365.826667pt;}
.yb1{bottom:367.906667pt;}
.yc9{bottom:369.506667pt;}
.y30{bottom:373.026667pt;}
.yf6{bottom:377.506667pt;}
.y82{bottom:381.186667pt;}
.y120{bottom:381.826667pt;}
.y155{bottom:383.586667pt;}
.yb0{bottom:385.506667pt;}
.y2f{bottom:390.626667pt;}
.yc8{bottom:395.106667pt;}
.y81{bottom:398.946667pt;}
.y11f{bottom:399.426667pt;}
.y154{bottom:401.186667pt;}
.yaf{bottom:403.106667pt;}
.y2e{bottom:408.386667pt;}
.yc7{bottom:412.706667pt;}
.y80{bottom:416.546667pt;}
.y11e{bottom:417.026667pt;}
.y153{bottom:418.786667pt;}
.yae{bottom:420.706667pt;}
.y2d{bottom:425.986667pt;}
.yc6{bottom:430.466667pt;}
.y67{bottom:432.706667pt;}
.y7f{bottom:434.146667pt;}
.y11d{bottom:434.626667pt;}
.y152{bottom:436.386667pt;}
.yad{bottom:438.466667pt;}
.yc5{bottom:448.066667pt;}
.y66{bottom:450.306667pt;}
.y7e{bottom:451.746667pt;}
.y11c{bottom:452.386667pt;}
.y151{bottom:453.986667pt;}
.yac{bottom:456.066667pt;}
.y2c{bottom:456.706667pt;}
.yc4{bottom:465.666667pt;}
.y65{bottom:467.906667pt;}
.y7d{bottom:469.346667pt;}
.y150{bottom:471.746667pt;}
.y119{bottom:473.506667pt;}
.yab{bottom:473.666667pt;}
.y1c{bottom:475.106667pt;}
.yc3{bottom:483.266667pt;}
.y64{bottom:485.506667pt;}
.y7c{bottom:487.106667pt;}
.y14f{bottom:489.346667pt;}
.yaa{bottom:491.266667pt;}
.y117{bottom:491.746667pt;}
.yc2{bottom:500.866667pt;}
.y63{bottom:503.266667pt;}
.y7b{bottom:504.706667pt;}
.y14e{bottom:506.946667pt;}
.ya9{bottom:508.866667pt;}
.yf5{bottom:518.626667pt;}
.y62{bottom:521.826667pt;}
.y7a{bottom:522.306667pt;}
.y14d{bottom:524.546667pt;}
.ya8{bottom:526.626667pt;}
.y114{bottom:527.746667pt;}
.yf4{bottom:536.226667pt;}
.y79{bottom:539.906667pt;}
.y61{bottom:540.386667pt;}
.y14c{bottom:542.146667pt;}
.ya7{bottom:544.226667pt;}
.yf3{bottom:553.826667pt;}
.y78{bottom:557.506667pt;}
.y60{bottom:558.946667pt;}
.y14b{bottom:559.906667pt;}
.ya6{bottom:561.826667pt;}
.yf2{bottom:571.426667pt;}
.y77{bottom:575.266667pt;}
.y5f{bottom:577.533333pt;}
.ya5{bottom:579.453333pt;}
.yf1{bottom:589.053333pt;}
.y76{bottom:592.893333pt;}
.y14a{bottom:595.133333pt;}
.y5e{bottom:596.093333pt;}
.ya4{bottom:597.053333pt;}
.yf0{bottom:606.813333pt;}
.y75{bottom:607.613333pt;}
.y149{bottom:612.733333pt;}
.y5d{bottom:614.813333pt;}
.y113{bottom:621.693333pt;}
.yef{bottom:624.413333pt;}
.y148{bottom:630.333333pt;}
.y5c{bottom:632.413333pt;}
.y112{bottom:639.293333pt;}
.yee{bottom:642.013333pt;}
.y147{bottom:648.093333pt;}
.y5b{bottom:650.013333pt;}
.y111{bottom:657.053333pt;}
.yed{bottom:659.613333pt;}
.y146{bottom:665.693333pt;}
.y5a{bottom:667.613333pt;}
.y110{bottom:674.653333pt;}
.yec{bottom:677.213333pt;}
.y145{bottom:683.293333pt;}
.y59{bottom:685.213333pt;}
.y10f{bottom:692.253333pt;}
.yeb{bottom:694.973333pt;}
.y144{bottom:700.893333pt;}
.y58{bottom:702.973333pt;}
.y10e{bottom:709.853333pt;}
.yea{bottom:712.573333pt;}
.y143{bottom:718.493333pt;}
.y57{bottom:720.573333pt;}
.y10d{bottom:727.453333pt;}
.ye9{bottom:730.173333pt;}
.y142{bottom:736.253333pt;}
.y56{bottom:738.173333pt;}
.y1a{bottom:740.253333pt;}
.y10c{bottom:740.733333pt;}
.ye8{bottom:747.773333pt;}
.y141{bottom:753.853333pt;}
.y55{bottom:755.773333pt;}
.y10b{bottom:758.973333pt;}
.ye7{bottom:765.373333pt;}
.y19{bottom:766.333333pt;}
.y140{bottom:771.453333pt;}
.y54{bottom:773.373333pt;}
.y108{bottom:777.213333pt;}
.ye6{bottom:783.133333pt;}
.y18{bottom:788.573333pt;}
.y13f{bottom:789.053333pt;}
.y53{bottom:791.133333pt;}
.ye5{bottom:800.773333pt;}
.y17{bottom:806.373333pt;}
.y13e{bottom:806.693333pt;}
.y52{bottom:808.773333pt;}
.ye4{bottom:818.373333pt;}
.y16{bottom:823.973333pt;}
.y13d{bottom:824.293333pt;}
.y51{bottom:826.373333pt;}
.ye3{bottom:835.973333pt;}
.y15{bottom:837.413333pt;}
.y13c{bottom:842.053333pt;}
.y50{bottom:843.973333pt;}
.ye2{bottom:853.573333pt;}
.y14{bottom:856.293333pt;}
.y13b{bottom:859.653333pt;}
.y4f{bottom:861.573333pt;}
.ye1{bottom:871.333333pt;}
.y13{bottom:877.253333pt;}
.y4e{bottom:879.333333pt;}
.ye0{bottom:888.933333pt;}
.y13a{bottom:894.853333pt;}
.y4d{bottom:896.933333pt;}
.y12{bottom:905.413333pt;}
.ydf{bottom:906.533333pt;}
.y139{bottom:912.453333pt;}
.y4c{bottom:914.533333pt;}
.yde{bottom:924.133333pt;}
.ye{bottom:929.253333pt;}
.y138{bottom:930.213333pt;}
.y4b{bottom:932.133333pt;}
.ydd{bottom:941.733333pt;}
.y137{bottom:947.813333pt;}
.y1{bottom:949.093333pt;}
.y4a{bottom:949.733333pt;}
.ydc{bottom:959.493333pt;}
.y136{bottom:965.413333pt;}
.y49{bottom:967.493333pt;}
.ydb{bottom:977.093333pt;}
.y133{bottom:978.533333pt;}
.y48{bottom:985.093333pt;}
.yda{bottom:994.693333pt;}
.y131{bottom:996.933333pt;}
.y47{bottom:1002.693333pt;}
.y46{bottom:1020.320000pt;}
.y43{bottom:1044.000000pt;}
.y42{bottom:1060.960000pt;}
.h3{height:1.777500pt;}
.h12{height:17.600000pt;}
.h1d{height:17.760000pt;}
.h15{height:19.840000pt;}
.ha{height:20.000000pt;}
.h10{height:20.320000pt;}
.hf{height:24.991875pt;}
.h8{height:34.710938pt;}
.h1f{height:35.232000pt;}
.h1a{height:35.360000pt;}
.h1c{height:35.392000pt;}
.h17{height:37.194375pt;}
.h4{height:37.479688pt;}
.h6{height:38.413438pt;}
.h13{height:38.672812pt;}
.hb{height:42.578750pt;}
.h16{height:42.944375pt;}
.h14{height:43.551875pt;}
.h5{height:45.156250pt;}
.h7{height:46.281250pt;}
.hc{height:47.310625pt;}
.hd{height:52.834688pt;}
.h18{height:52.992000pt;}
.h1b{height:53.600000pt;}
.h20{height:53.632000pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h1e{height:70.592000pt;}
.h19{height:88.192000pt;}
.h2{height:125.152000pt;}
.h11{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:26.080000pt;}
.w1b{width:26.112000pt;}
.w1c{width:26.560000pt;}
.w1a{width:26.720000pt;}
.w15{width:39.200000pt;}
.w1e{width:44.320000pt;}
.w1f{width:44.352000pt;}
.w6{width:46.912000pt;}
.w11{width:48.480000pt;}
.w21{width:48.960000pt;}
.w23{width:48.992000pt;}
.w12{width:53.440000pt;}
.w13{width:53.472000pt;}
.w14{width:56.640000pt;}
.we{width:56.960000pt;}
.wd{width:57.632000pt;}
.wf{width:59.200000pt;}
.w20{width:62.080000pt;}
.wc{width:65.600000pt;}
.w10{width:69.152000pt;}
.w22{width:76.160000pt;}
.w1d{width:76.192000pt;}
.w17{width:80.160000pt;}
.w18{width:80.192000pt;}
.w16{width:81.152000pt;}
.wb{width:81.632000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w3{width:413.213333pt;}
.w9{width:520.613333pt;}
.w7{width:650.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xd{left:51.360000pt;}
.x1a{left:52.959988pt;}
.xa{left:55.200000pt;}
.x1b{left:56.799988pt;}
.x19{left:59.679988pt;}
.x6{left:71.880000pt;}
.x1e{left:76.511988pt;}
.x12{left:89.951988pt;}
.xc{left:95.552000pt;}
.x18{left:107.551988pt;}
.x7{left:118.760000pt;}
.x2b{left:125.632000pt;}
.x1f{left:130.912000pt;}
.x2{left:142.266667pt;}
.x1c{left:149.946655pt;}
.x25{left:157.146667pt;}
.x22{left:167.546667pt;}
.x2c{left:170.586667pt;}
.x26{left:184.506667pt;}
.x3{left:196.506667pt;}
.x13{left:210.426655pt;}
.x2d{left:215.546667pt;}
.x5{left:220.706667pt;}
.xe{left:222.106667pt;}
.x27{left:238.146667pt;}
.x20{left:255.426667pt;}
.x2e{left:260.546667pt;}
.x28{left:265.346667pt;}
.x23{left:275.746667pt;}
.x24{left:292.066667pt;}
.x21{left:313.026667pt;}
.x29{left:318.946667pt;}
.x11{left:322.946655pt;}
.x10{left:333.346655pt;}
.x2a{left:346.146667pt;}
.x1d{left:368.386655pt;}
.xf{left:420.893322pt;}
.x33{left:444.893322pt;}
.x15{left:455.773322pt;}
.x17{left:468.893322pt;}
.x2f{left:498.493333pt;}
.x30{left:543.453333pt;}
.x16{left:583.333322pt;}
.x31{left:588.613333pt;}
.x8{left:609.733333pt;}
.x32{left:633.573333pt;}
.x14{left:695.813322pt;}
}




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