
    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_9435393e656b5a4f0010d4f8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a1107eed8f74c2f9f08ffb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_e9ce9087a191d4bbfc41d51b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_26a461c6d7e9a931b56c081c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_09610ee3f4b0e147807ac5df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_e5aad7de43679c465f0c86f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_337e65a5e938de9fa40cdc96.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_f7ea7320f8973b8859582238.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_62424f84e00e511161c61900.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9cdb4241aa9dcd22c42a5eb1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_5c8f7d98f4c7b2c5959b0349.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-15.660000px;}
.ls10{letter-spacing:-14.220000px;}
.ls11{letter-spacing:-12.060000px;}
.lsa{letter-spacing:-9.180000px;}
.lsd{letter-spacing:-7.740000px;}
.ls7{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.253200px;}
.ls15{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.106800px;}
.ls1d{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.513600px;}
.lse{letter-spacing:0.900000px;}
.lsf{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.160000px;}
.ls1c{letter-spacing:3.780000px;}
.ls1b{letter-spacing:5.220000px;}
.lsc{letter-spacing:8.820000px;}
.ls1{letter-spacing:11.700000px;}
.ls1a{letter-spacing:16.506720px;}
.ls17{letter-spacing:46.026720px;}
.ls2{letter-spacing:48.420000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.453600px;}
.ws6{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.686800px;}
.ws5{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.800000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-11.060400px;}
._2e{margin-left:-8.280240px;}
._17{margin-left:-5.254080px;}
._1d{margin-left:-4.135200px;}
._e{margin-left:-2.808720px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._c{width:3.346560px;}
._b{width:4.482000px;}
._1c{width:5.606400px;}
._10{width:7.290720px;}
._f{width:8.426160px;}
._13{width:9.684720px;}
._7{width:10.725120px;}
._d{width:11.839920px;}
._5{width:12.960000px;}
._11{width:16.238640px;}
._25{width:17.286720px;}
._8{width:18.624960px;}
._a{width:20.437920px;}
._26{width:21.823440px;}
._1a{width:23.175840px;}
._19{width:24.382080px;}
._22{width:25.740480px;}
._21{width:26.951760px;}
._15{width:28.505520px;}
._12{width:29.939760px;}
._2c{width:31.650720px;}
._2d{width:32.792640px;}
._1b{width:34.584960px;}
._20{width:35.676720px;}
._1f{width:36.812160px;}
._24{width:38.401200px;}
._23{width:40.338000px;}
._1e{width:42.071040px;}
._34{width:43.434480px;}
._35{width:44.722560px;}
._2a{width:45.895680px;}
._29{width:46.971360px;}
._30{width:48.339840px;}
._18{width:49.421520px;}
._36{width:50.676480px;}
._28{width:53.001600px;}
._3f{width:54.137040px;}
._4{width:57.204000px;}
._3c{width:58.664640px;}
._3d{width:59.760000px;}
._2b{width:62.508960px;}
._32{width:64.361520px;}
._27{width:67.936080px;}
._43{width:69.341520px;}
._31{width:71.896080px;}
._39{width:73.743840px;}
._3e{width:74.924400px;}
._16{width:82.289520px;}
._3{width:87.120000px;}
._38{width:94.480560px;}
._14{width:100.576080px;}
._33{width:104.134080px;}
._41{width:113.419440px;}
._40{width:114.798960px;}
._3a{width:127.696080px;}
._3b{width:128.826480px;}
._37{width:156.929760px;}
._6{width:199.416000px;}
._2{width:233.273760px;}
._42{width:236.220960px;}
._9{width:1023.282960px;}
.fc5{color:rgb(33,37,41);}
.fc4{color:rgb(32,33,34);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.yb7{bottom:5.760000px;}
.y25{bottom:5.940000px;}
.ycc{bottom:5.970000px;}
.y17{bottom:7.560000px;}
.ybb{bottom:13.320000px;}
.y6{bottom:13.860000px;}
.yb6{bottom:25.560000px;}
.y24{bottom:25.740000px;}
.ycb{bottom:25.770000px;}
.y5{bottom:45.000000px;}
.y23{bottom:45.540000px;}
.y9{bottom:59.580000px;}
.y22{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y37{bottom:84.420000px;}
.y21{bottom:85.140000px;}
.yb3{bottom:89.460000px;}
.y3e{bottom:91.260000px;}
.ya4{bottom:91.440000px;}
.y100{bottom:96.480000px;}
.y75{bottom:100.260000px;}
.y36{bottom:104.400000px;}
.y20{bottom:105.120000px;}
.y3{bottom:107.670000px;}
.yb2{bottom:109.260000px;}
.y3d{bottom:111.060000px;}
.ya3{bottom:111.240000px;}
.yce{bottom:114.840000px;}
.yff{bottom:116.280000px;}
.y74{bottom:120.060000px;}
.y35{bottom:124.200000px;}
.y1f{bottom:124.920000px;}
.yb1{bottom:129.060000px;}
.ycd{bottom:129.600000px;}
.y3c{bottom:130.860000px;}
.ya2{bottom:131.220000px;}
.yfe{bottom:136.080000px;}
.y73{bottom:139.860000px;}
.y2{bottom:140.430000px;}
.y34{bottom:144.000000px;}
.y1e{bottom:144.720000px;}
.yb0{bottom:148.860000px;}
.yca{bottom:149.400000px;}
.y3b{bottom:150.660000px;}
.ya1{bottom:151.020000px;}
.y129{bottom:155.910000px;}
.y72{bottom:159.690000px;}
.y33{bottom:163.830000px;}
.y1d{bottom:164.520000px;}
.yfd{bottom:164.910000px;}
.yaf{bottom:168.690000px;}
.y3a{bottom:170.670000px;}
.y128{bottom:175.890000px;}
.y71{bottom:179.670000px;}
.ya0{bottom:179.850000px;}
.y32{bottom:183.630000px;}
.y1c{bottom:184.320000px;}
.yfc{bottom:184.890000px;}
.yae{bottom:188.670000px;}
.yc9{bottom:189.210000px;}
.y39{bottom:190.470000px;}
.y127{bottom:195.690000px;}
.y70{bottom:199.470000px;}
.y9f{bottom:199.650000px;}
.y1b{bottom:204.300000px;}
.yfb{bottom:204.690000px;}
.y31{bottom:207.930000px;}
.yad{bottom:208.470000px;}
.yc8{bottom:209.010000px;}
.y38{bottom:210.270000px;}
.y126{bottom:215.490000px;}
.y6f{bottom:219.270000px;}
.y9e{bottom:219.450000px;}
.y1a{bottom:224.130000px;}
.yfa{bottom:224.490000px;}
.yac{bottom:228.270000px;}
.y30{bottom:230.070000px;}
.y125{bottom:235.290000px;}
.y6e{bottom:239.070000px;}
.y9d{bottom:239.430000px;}
.y19{bottom:243.930000px;}
.yf9{bottom:244.290000px;}
.yab{bottom:248.070000px;}
.yc7{bottom:248.610000px;}
.y2f{bottom:249.870000px;}
.y124{bottom:255.090000px;}
.y6d{bottom:258.870000px;}
.y9c{bottom:259.230000px;}
.yf8{bottom:264.090000px;}
.yaa{bottom:267.870000px;}
.yc6{bottom:268.590000px;}
.y2e{bottom:269.850000px;}
.y123{bottom:275.070000px;}
.y9b{bottom:279.030000px;}
.yf7{bottom:284.070000px;}
.y12a{bottom:286.230000px;}
.y6c{bottom:287.850000px;}
.y2d{bottom:289.650000px;}
.y122{bottom:294.870000px;}
.y9a{bottom:298.830000px;}
.yf6{bottom:303.870000px;}
.y6b{bottom:307.650000px;}
.yc5{bottom:308.190000px;}
.y2c{bottom:309.450000px;}
.y121{bottom:314.670000px;}
.y99{bottom:318.630000px;}
.yf5{bottom:323.670000px;}
.y6a{bottom:327.450000px;}
.yc4{bottom:327.990000px;}
.y2b{bottom:329.250000px;}
.y120{bottom:334.470000px;}
.y98{bottom:338.610000px;}
.yf4{bottom:343.470000px;}
.y69{bottom:347.250000px;}
.y2a{bottom:349.050000px;}
.y11f{bottom:354.270000px;}
.y97{bottom:358.410000px;}
.yf3{bottom:363.270000px;}
.y68{bottom:367.050000px;}
.yc3{bottom:368.490000px;}
.y29{bottom:369.030000px;}
.y11e{bottom:374.250000px;}
.y96{bottom:378.210000px;}
.yf2{bottom:383.250000px;}
.y67{bottom:387.030000px;}
.y28{bottom:388.830000px;}
.y11d{bottom:394.050000px;}
.yc2{bottom:394.770000px;}
.y95{bottom:398.010000px;}
.yf1{bottom:403.095000px;}
.y66{bottom:406.875000px;}
.y27{bottom:408.675000px;}
.y11c{bottom:413.895000px;}
.yc1{bottom:414.615000px;}
.y94{bottom:417.855000px;}
.yf0{bottom:422.895000px;}
.y65{bottom:426.675000px;}
.y26{bottom:428.475000px;}
.yc0{bottom:429.555000px;}
.y11b{bottom:433.695000px;}
.ya9{bottom:437.475000px;}
.y93{bottom:437.835000px;}
.yef{bottom:442.695000px;}
.y18{bottom:443.235000px;}
.y64{bottom:446.475000px;}
.y11a{bottom:453.495000px;}
.ya8{bottom:457.275000px;}
.y92{bottom:457.635000px;}
.yee{bottom:462.495000px;}
.y63{bottom:466.275000px;}
.ybf{bottom:469.155000px;}
.y119{bottom:473.475000px;}
.ya7{bottom:477.255000px;}
.y91{bottom:477.435000px;}
.yed{bottom:482.475000px;}
.y62{bottom:486.255000px;}
.ybe{bottom:489.675000px;}
.y118{bottom:493.275000px;}
.ya6{bottom:497.055000px;}
.y90{bottom:497.235000px;}
.yec{bottom:502.275000px;}
.y61{bottom:506.055000px;}
.y117{bottom:513.075000px;}
.ya5{bottom:516.855000px;}
.y8f{bottom:517.035000px;}
.yeb{bottom:522.075000px;}
.y60{bottom:525.855000px;}
.y116{bottom:532.875000px;}
.ybd{bottom:535.935000px;}
.y8e{bottom:537.015000px;}
.yea{bottom:541.875000px;}
.y5f{bottom:545.655000px;}
.y115{bottom:552.675000px;}
.ybc{bottom:555.735000px;}
.y8d{bottom:556.815000px;}
.ye9{bottom:561.675000px;}
.y5e{bottom:565.455000px;}
.yba{bottom:570.495000px;}
.y114{bottom:572.655000px;}
.y8c{bottom:576.615000px;}
.ye8{bottom:581.655000px;}
.y5d{bottom:585.255000px;}
.y113{bottom:592.455000px;}
.y8b{bottom:596.415000px;}
.yb9{bottom:597.855000px;}
.ye7{bottom:601.455000px;}
.y5c{bottom:605.235000px;}
.y112{bottom:612.255000px;}
.y8a{bottom:616.215000px;}
.ye6{bottom:621.255000px;}
.y5b{bottom:625.035000px;}
.y111{bottom:632.055000px;}
.y89{bottom:636.195000px;}
.yb8{bottom:637.635000px;}
.ye5{bottom:641.055000px;}
.y5a{bottom:644.835000px;}
.y110{bottom:651.885000px;}
.y88{bottom:656.025000px;}
.yb5{bottom:657.465000px;}
.ye4{bottom:660.885000px;}
.y59{bottom:664.665000px;}
.y10f{bottom:671.865000px;}
.y87{bottom:675.825000px;}
.ye3{bottom:680.865000px;}
.y58{bottom:684.465000px;}
.y10e{bottom:691.665000px;}
.y86{bottom:695.625000px;}
.yb4{bottom:697.785000px;}
.ye2{bottom:700.665000px;}
.y16{bottom:701.925000px;}
.y57{bottom:704.445000px;}
.y10d{bottom:711.465000px;}
.y85{bottom:715.425000px;}
.y56{bottom:724.245000px;}
.ye1{bottom:725.685000px;}
.y10c{bottom:731.265000px;}
.y84{bottom:735.405000px;}
.ye0{bottom:740.265000px;}
.y55{bottom:744.045000px;}
.y10b{bottom:751.065000px;}
.y83{bottom:755.205000px;}
.y15{bottom:759.705000px;}
.ydf{bottom:760.065000px;}
.y54{bottom:763.845000px;}
.y10a{bottom:771.045000px;}
.y82{bottom:775.005000px;}
.y14{bottom:779.505000px;}
.yde{bottom:780.045000px;}
.y53{bottom:783.645000px;}
.y109{bottom:790.845000px;}
.y81{bottom:794.805000px;}
.y13{bottom:799.305000px;}
.ydd{bottom:799.845000px;}
.y52{bottom:803.625000px;}
.y108{bottom:810.645000px;}
.y80{bottom:814.605000px;}
.y12{bottom:819.105000px;}
.ydc{bottom:819.645000px;}
.y51{bottom:823.425000px;}
.y107{bottom:830.445000px;}
.y7f{bottom:834.585000px;}
.y11{bottom:839.085000px;}
.ydb{bottom:839.445000px;}
.y50{bottom:843.225000px;}
.y106{bottom:850.245000px;}
.y7e{bottom:851.145000px;}
.y10{bottom:858.885000px;}
.yda{bottom:859.245000px;}
.y4f{bottom:863.025000px;}
.y105{bottom:870.225000px;}
.yf{bottom:878.685000px;}
.yd9{bottom:879.225000px;}
.y4e{bottom:882.825000px;}
.y104{bottom:890.025000px;}
.ye{bottom:893.805000px;}
.yd8{bottom:899.070000px;}
.y4d{bottom:902.850000px;}
.y103{bottom:909.870000px;}
.yd{bottom:915.630000px;}
.yd7{bottom:918.870000px;}
.y4c{bottom:922.650000px;}
.y102{bottom:929.670000px;}
.y7d{bottom:933.450000px;}
.yd6{bottom:938.670000px;}
.yc{bottom:940.650000px;}
.y4b{bottom:942.450000px;}
.y101{bottom:949.470000px;}
.y7c{bottom:953.250000px;}
.yd5{bottom:958.470000px;}
.y4a{bottom:962.250000px;}
.yb{bottom:972.330000px;}
.y7b{bottom:973.050000px;}
.yd4{bottom:978.450000px;}
.y49{bottom:982.050000px;}
.y7a{bottom:993.030000px;}
.yd3{bottom:998.250000px;}
.y48{bottom:1002.030000px;}
.ya{bottom:1004.010000px;}
.y79{bottom:1012.830000px;}
.y47{bottom:1021.830000px;}
.y8{bottom:1031.010000px;}
.y78{bottom:1032.630000px;}
.yd2{bottom:1032.810000px;}
.y46{bottom:1041.630000px;}
.y1{bottom:1047.390000px;}
.y77{bottom:1052.430000px;}
.yd1{bottom:1053.510000px;}
.y45{bottom:1061.430000px;}
.y76{bottom:1072.230000px;}
.yd0{bottom:1074.030000px;}
.y44{bottom:1081.230000px;}
.ycf{bottom:1094.550000px;}
.y43{bottom:1101.210000px;}
.y42{bottom:1121.010000px;}
.y41{bottom:1140.810000px;}
.y40{bottom:1170.720000px;}
.y3f{bottom:1193.580000px;}
.h18{height:19.800000px;}
.h16{height:19.836000px;}
.h19{height:19.980000px;}
.hb{height:26.100000px;}
.ha{height:27.147656px;}
.h17{height:27.360000px;}
.h15{height:39.600000px;}
.h14{height:39.780000px;}
.h1a{height:39.816000px;}
.he{height:41.726953px;}
.hc{height:42.164648px;}
.h5{height:43.448555px;}
.h1b{height:43.506914px;}
.h13{height:43.737568px;}
.hf{height:48.027656px;}
.h10{height:48.496641px;}
.h4{height:48.774375px;}
.h12{height:49.255313px;}
.h11{height:51.706406px;}
.h8{height:53.224453px;}
.h9{height:53.404453px;}
.h3{height:62.028281px;}
.h7{height:67.565039px;}
.h6{height:74.039062px;}
.h2{height:162.390000px;}
.hd{height:257.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w15{width:74.376000px;}
.w18{width:84.060000px;}
.w17{width:84.276000px;}
.w14{width:85.140000px;}
.w1a{width:98.136000px;}
.w1e{width:98.280000px;}
.w1d{width:98.316000px;}
.w10{width:106.236000px;}
.wa{width:114.156000px;}
.w9{width:117.396000px;}
.w19{width:129.456000px;}
.w16{width:138.276000px;}
.w4{width:144.576000px;}
.w12{width:148.716000px;}
.w1b{width:157.170000px;}
.w13{width:159.510000px;}
.wd{width:180.210000px;}
.w11{width:180.930000px;}
.wf{width:181.470000px;}
.wc{width:182.010000px;}
.wb{width:182.190000px;}
.we{width:186.870000px;}
.w1c{width:207.570000px;}
.w8{width:237.855000px;}
.w7{width:542.265000px;}
.w2{width:619.530000px;}
.w6{width:780.120000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x20{left:11.160000px;}
.x12{left:24.660000px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.x19{left:64.620000px;}
.x21{left:67.680000px;}
.x13{left:69.120000px;}
.x8{left:70.919987px;}
.x28{left:75.239987px;}
.x29{left:102.275987px;}
.x5{left:136.290000px;}
.x22{left:165.810000px;}
.xc{left:173.910000px;}
.x14{left:175.350000px;}
.x1a{left:202.890000px;}
.xd{left:288.075000px;}
.x23{left:322.995000px;}
.x15{left:356.295000px;}
.x1b{left:362.415000px;}
.x1c{left:446.685000px;}
.x10{left:468.285000px;}
.xe{left:470.265000px;}
.x9{left:473.144987px;}
.x26{left:494.384987px;}
.x16{left:505.005000px;}
.x27{left:521.384987px;}
.x1d{left:530.745000px;}
.xa{left:548.924987px;}
.x7{left:598.785000px;}
.x24{left:628.890000px;}
.xf{left:652.470000px;}
.x11{left:655.170000px;}
.x1e{left:660.210000px;}
.x17{left:664.530000px;}
.x3{left:673.530000px;}
.x4{left:694.590000px;}
.x25{left:727.170000px;}
.x1f{left:744.270000px;}
.x18{left:749.670000px;}
.xb{left:811.799987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-13.920000pt;}
.ls10{letter-spacing:-12.640000pt;}
.ls11{letter-spacing:-10.720000pt;}
.lsa{letter-spacing:-8.160000pt;}
.lsd{letter-spacing:-6.880000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.225067pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.094933pt;}
.ls1d{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.456533pt;}
.lse{letter-spacing:0.800000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:3.360000pt;}
.ls1b{letter-spacing:4.640000pt;}
.lsc{letter-spacing:7.840000pt;}
.ls1{letter-spacing:10.400000pt;}
.ls1a{letter-spacing:14.672640pt;}
.ls17{letter-spacing:40.912640pt;}
.ls2{letter-spacing:43.040000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.736533pt;}
.ws6{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.054933pt;}
.ws5{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.600000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-9.831467pt;}
._2e{margin-left:-7.360213pt;}
._17{margin-left:-4.670293pt;}
._1d{margin-left:-3.675733pt;}
._e{margin-left:-2.496640pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._c{width:2.974720pt;}
._b{width:3.984000pt;}
._1c{width:4.983467pt;}
._10{width:6.480640pt;}
._f{width:7.489920pt;}
._13{width:8.608640pt;}
._7{width:9.533440pt;}
._d{width:10.524373pt;}
._5{width:11.520000pt;}
._11{width:14.434347pt;}
._25{width:15.365973pt;}
._8{width:16.555520pt;}
._a{width:18.167040pt;}
._26{width:19.398613pt;}
._1a{width:20.600747pt;}
._19{width:21.672960pt;}
._22{width:22.880427pt;}
._21{width:23.957120pt;}
._15{width:25.338240pt;}
._12{width:26.613120pt;}
._2c{width:28.133973pt;}
._2d{width:29.149013pt;}
._1b{width:30.742187pt;}
._20{width:31.712640pt;}
._1f{width:32.721920pt;}
._24{width:34.134400pt;}
._23{width:35.856000pt;}
._1e{width:37.396480pt;}
._34{width:38.608427pt;}
._35{width:39.753387pt;}
._2a{width:40.796160pt;}
._29{width:41.752320pt;}
._30{width:42.968747pt;}
._18{width:43.930240pt;}
._36{width:45.045760pt;}
._28{width:47.112533pt;}
._3f{width:48.121813pt;}
._4{width:50.848000pt;}
._3c{width:52.146347pt;}
._3d{width:53.120000pt;}
._2b{width:55.563520pt;}
._32{width:57.210240pt;}
._27{width:60.387627pt;}
._43{width:61.636907pt;}
._31{width:63.907627pt;}
._39{width:65.550080pt;}
._3e{width:66.599467pt;}
._16{width:73.146240pt;}
._3{width:77.440000pt;}
._38{width:83.982720pt;}
._14{width:89.400960pt;}
._33{width:92.563627pt;}
._41{width:100.817280pt;}
._40{width:102.043520pt;}
._3a{width:113.507627pt;}
._3b{width:114.512427pt;}
._37{width:139.493120pt;}
._6{width:177.258667pt;}
._2{width:207.354453pt;}
._42{width:209.974187pt;}
._9{width:909.584853pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.yb7{bottom:5.120000pt;}
.y25{bottom:5.280000pt;}
.ycc{bottom:5.306667pt;}
.y17{bottom:6.720000pt;}
.ybb{bottom:11.840000pt;}
.y6{bottom:12.320000pt;}
.yb6{bottom:22.720000pt;}
.y24{bottom:22.880000pt;}
.ycb{bottom:22.906667pt;}
.y5{bottom:40.000000pt;}
.y23{bottom:40.480000pt;}
.y9{bottom:52.960000pt;}
.y22{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y37{bottom:75.040000pt;}
.y21{bottom:75.680000pt;}
.yb3{bottom:79.520000pt;}
.y3e{bottom:81.120000pt;}
.ya4{bottom:81.280000pt;}
.y100{bottom:85.760000pt;}
.y75{bottom:89.120000pt;}
.y36{bottom:92.800000pt;}
.y20{bottom:93.440000pt;}
.y3{bottom:95.706667pt;}
.yb2{bottom:97.120000pt;}
.y3d{bottom:98.720000pt;}
.ya3{bottom:98.880000pt;}
.yce{bottom:102.080000pt;}
.yff{bottom:103.360000pt;}
.y74{bottom:106.720000pt;}
.y35{bottom:110.400000pt;}
.y1f{bottom:111.040000pt;}
.yb1{bottom:114.720000pt;}
.ycd{bottom:115.200000pt;}
.y3c{bottom:116.320000pt;}
.ya2{bottom:116.640000pt;}
.yfe{bottom:120.960000pt;}
.y73{bottom:124.320000pt;}
.y2{bottom:124.826667pt;}
.y34{bottom:128.000000pt;}
.y1e{bottom:128.640000pt;}
.yb0{bottom:132.320000pt;}
.yca{bottom:132.800000pt;}
.y3b{bottom:133.920000pt;}
.ya1{bottom:134.240000pt;}
.y129{bottom:138.586667pt;}
.y72{bottom:141.946667pt;}
.y33{bottom:145.626667pt;}
.y1d{bottom:146.240000pt;}
.yfd{bottom:146.586667pt;}
.yaf{bottom:149.946667pt;}
.y3a{bottom:151.706667pt;}
.y128{bottom:156.346667pt;}
.y71{bottom:159.706667pt;}
.ya0{bottom:159.866667pt;}
.y32{bottom:163.226667pt;}
.y1c{bottom:163.840000pt;}
.yfc{bottom:164.346667pt;}
.yae{bottom:167.706667pt;}
.yc9{bottom:168.186667pt;}
.y39{bottom:169.306667pt;}
.y127{bottom:173.946667pt;}
.y70{bottom:177.306667pt;}
.y9f{bottom:177.466667pt;}
.y1b{bottom:181.600000pt;}
.yfb{bottom:181.946667pt;}
.y31{bottom:184.826667pt;}
.yad{bottom:185.306667pt;}
.yc8{bottom:185.786667pt;}
.y38{bottom:186.906667pt;}
.y126{bottom:191.546667pt;}
.y6f{bottom:194.906667pt;}
.y9e{bottom:195.066667pt;}
.y1a{bottom:199.226667pt;}
.yfa{bottom:199.546667pt;}
.yac{bottom:202.906667pt;}
.y30{bottom:204.506667pt;}
.y125{bottom:209.146667pt;}
.y6e{bottom:212.506667pt;}
.y9d{bottom:212.826667pt;}
.y19{bottom:216.826667pt;}
.yf9{bottom:217.146667pt;}
.yab{bottom:220.506667pt;}
.yc7{bottom:220.986667pt;}
.y2f{bottom:222.106667pt;}
.y124{bottom:226.746667pt;}
.y6d{bottom:230.106667pt;}
.y9c{bottom:230.426667pt;}
.yf8{bottom:234.746667pt;}
.yaa{bottom:238.106667pt;}
.yc6{bottom:238.746667pt;}
.y2e{bottom:239.866667pt;}
.y123{bottom:244.506667pt;}
.y9b{bottom:248.026667pt;}
.yf7{bottom:252.506667pt;}
.y12a{bottom:254.426667pt;}
.y6c{bottom:255.866667pt;}
.y2d{bottom:257.466667pt;}
.y122{bottom:262.106667pt;}
.y9a{bottom:265.626667pt;}
.yf6{bottom:270.106667pt;}
.y6b{bottom:273.466667pt;}
.yc5{bottom:273.946667pt;}
.y2c{bottom:275.066667pt;}
.y121{bottom:279.706667pt;}
.y99{bottom:283.226667pt;}
.yf5{bottom:287.706667pt;}
.y6a{bottom:291.066667pt;}
.yc4{bottom:291.546667pt;}
.y2b{bottom:292.666667pt;}
.y120{bottom:297.306667pt;}
.y98{bottom:300.986667pt;}
.yf4{bottom:305.306667pt;}
.y69{bottom:308.666667pt;}
.y2a{bottom:310.266667pt;}
.y11f{bottom:314.906667pt;}
.y97{bottom:318.586667pt;}
.yf3{bottom:322.906667pt;}
.y68{bottom:326.266667pt;}
.yc3{bottom:327.546667pt;}
.y29{bottom:328.026667pt;}
.y11e{bottom:332.666667pt;}
.y96{bottom:336.186667pt;}
.yf2{bottom:340.666667pt;}
.y67{bottom:344.026667pt;}
.y28{bottom:345.626667pt;}
.y11d{bottom:350.266667pt;}
.yc2{bottom:350.906667pt;}
.y95{bottom:353.786667pt;}
.yf1{bottom:358.306667pt;}
.y66{bottom:361.666667pt;}
.y27{bottom:363.266667pt;}
.y11c{bottom:367.906667pt;}
.yc1{bottom:368.546667pt;}
.y94{bottom:371.426667pt;}
.yf0{bottom:375.906667pt;}
.y65{bottom:379.266667pt;}
.y26{bottom:380.866667pt;}
.yc0{bottom:381.826667pt;}
.y11b{bottom:385.506667pt;}
.ya9{bottom:388.866667pt;}
.y93{bottom:389.186667pt;}
.yef{bottom:393.506667pt;}
.y18{bottom:393.986667pt;}
.y64{bottom:396.866667pt;}
.y11a{bottom:403.106667pt;}
.ya8{bottom:406.466667pt;}
.y92{bottom:406.786667pt;}
.yee{bottom:411.106667pt;}
.y63{bottom:414.466667pt;}
.ybf{bottom:417.026667pt;}
.y119{bottom:420.866667pt;}
.ya7{bottom:424.226667pt;}
.y91{bottom:424.386667pt;}
.yed{bottom:428.866667pt;}
.y62{bottom:432.226667pt;}
.ybe{bottom:435.266667pt;}
.y118{bottom:438.466667pt;}
.ya6{bottom:441.826667pt;}
.y90{bottom:441.986667pt;}
.yec{bottom:446.466667pt;}
.y61{bottom:449.826667pt;}
.y117{bottom:456.066667pt;}
.ya5{bottom:459.426667pt;}
.y8f{bottom:459.586667pt;}
.yeb{bottom:464.066667pt;}
.y60{bottom:467.426667pt;}
.y116{bottom:473.666667pt;}
.ybd{bottom:476.386667pt;}
.y8e{bottom:477.346667pt;}
.yea{bottom:481.666667pt;}
.y5f{bottom:485.026667pt;}
.y115{bottom:491.266667pt;}
.ybc{bottom:493.986667pt;}
.y8d{bottom:494.946667pt;}
.ye9{bottom:499.266667pt;}
.y5e{bottom:502.626667pt;}
.yba{bottom:507.106667pt;}
.y114{bottom:509.026667pt;}
.y8c{bottom:512.546667pt;}
.ye8{bottom:517.026667pt;}
.y5d{bottom:520.226667pt;}
.y113{bottom:526.626667pt;}
.y8b{bottom:530.146667pt;}
.yb9{bottom:531.426667pt;}
.ye7{bottom:534.626667pt;}
.y5c{bottom:537.986667pt;}
.y112{bottom:544.226667pt;}
.y8a{bottom:547.746667pt;}
.ye6{bottom:552.226667pt;}
.y5b{bottom:555.586667pt;}
.y111{bottom:561.826667pt;}
.y89{bottom:565.506667pt;}
.yb8{bottom:566.786667pt;}
.ye5{bottom:569.826667pt;}
.y5a{bottom:573.186667pt;}
.y110{bottom:579.453333pt;}
.y88{bottom:583.133333pt;}
.yb5{bottom:584.413333pt;}
.ye4{bottom:587.453333pt;}
.y59{bottom:590.813333pt;}
.y10f{bottom:597.213333pt;}
.y87{bottom:600.733333pt;}
.ye3{bottom:605.213333pt;}
.y58{bottom:608.413333pt;}
.y10e{bottom:614.813333pt;}
.y86{bottom:618.333333pt;}
.yb4{bottom:620.253333pt;}
.ye2{bottom:622.813333pt;}
.y16{bottom:623.933333pt;}
.y57{bottom:626.173333pt;}
.y10d{bottom:632.413333pt;}
.y85{bottom:635.933333pt;}
.y56{bottom:643.773333pt;}
.ye1{bottom:645.053333pt;}
.y10c{bottom:650.013333pt;}
.y84{bottom:653.693333pt;}
.ye0{bottom:658.013333pt;}
.y55{bottom:661.373333pt;}
.y10b{bottom:667.613333pt;}
.y83{bottom:671.293333pt;}
.y15{bottom:675.293333pt;}
.ydf{bottom:675.613333pt;}
.y54{bottom:678.973333pt;}
.y10a{bottom:685.373333pt;}
.y82{bottom:688.893333pt;}
.y14{bottom:692.893333pt;}
.yde{bottom:693.373333pt;}
.y53{bottom:696.573333pt;}
.y109{bottom:702.973333pt;}
.y81{bottom:706.493333pt;}
.y13{bottom:710.493333pt;}
.ydd{bottom:710.973333pt;}
.y52{bottom:714.333333pt;}
.y108{bottom:720.573333pt;}
.y80{bottom:724.093333pt;}
.y12{bottom:728.093333pt;}
.ydc{bottom:728.573333pt;}
.y51{bottom:731.933333pt;}
.y107{bottom:738.173333pt;}
.y7f{bottom:741.853333pt;}
.y11{bottom:745.853333pt;}
.ydb{bottom:746.173333pt;}
.y50{bottom:749.533333pt;}
.y106{bottom:755.773333pt;}
.y7e{bottom:756.573333pt;}
.y10{bottom:763.453333pt;}
.yda{bottom:763.773333pt;}
.y4f{bottom:767.133333pt;}
.y105{bottom:773.533333pt;}
.yf{bottom:781.053333pt;}
.yd9{bottom:781.533333pt;}
.y4e{bottom:784.733333pt;}
.y104{bottom:791.133333pt;}
.ye{bottom:794.493333pt;}
.yd8{bottom:799.173333pt;}
.y4d{bottom:802.533333pt;}
.y103{bottom:808.773333pt;}
.yd{bottom:813.893333pt;}
.yd7{bottom:816.773333pt;}
.y4c{bottom:820.133333pt;}
.y102{bottom:826.373333pt;}
.y7d{bottom:829.733333pt;}
.yd6{bottom:834.373333pt;}
.yc{bottom:836.133333pt;}
.y4b{bottom:837.733333pt;}
.y101{bottom:843.973333pt;}
.y7c{bottom:847.333333pt;}
.yd5{bottom:851.973333pt;}
.y4a{bottom:855.333333pt;}
.yb{bottom:864.293333pt;}
.y7b{bottom:864.933333pt;}
.yd4{bottom:869.733333pt;}
.y49{bottom:872.933333pt;}
.y7a{bottom:882.693333pt;}
.yd3{bottom:887.333333pt;}
.y48{bottom:890.693333pt;}
.ya{bottom:892.453333pt;}
.y79{bottom:900.293333pt;}
.y47{bottom:908.293333pt;}
.y8{bottom:916.453333pt;}
.y78{bottom:917.893333pt;}
.yd2{bottom:918.053333pt;}
.y46{bottom:925.893333pt;}
.y1{bottom:931.013333pt;}
.y77{bottom:935.493333pt;}
.yd1{bottom:936.453333pt;}
.y45{bottom:943.493333pt;}
.y76{bottom:953.093333pt;}
.yd0{bottom:954.693333pt;}
.y44{bottom:961.093333pt;}
.ycf{bottom:972.933333pt;}
.y43{bottom:978.853333pt;}
.y42{bottom:996.453333pt;}
.y41{bottom:1014.053333pt;}
.y40{bottom:1040.640000pt;}
.y3f{bottom:1060.960000pt;}
.h18{height:17.600000pt;}
.h16{height:17.632000pt;}
.h19{height:17.760000pt;}
.hb{height:23.200000pt;}
.ha{height:24.131250pt;}
.h17{height:24.320000pt;}
.h15{height:35.200000pt;}
.h14{height:35.360000pt;}
.h1a{height:35.392000pt;}
.he{height:37.090625pt;}
.hc{height:37.479688pt;}
.h5{height:38.620938pt;}
.h1b{height:38.672812pt;}
.h13{height:38.877839pt;}
.hf{height:42.691250pt;}
.h10{height:43.108125pt;}
.h4{height:43.355000pt;}
.h12{height:43.782500pt;}
.h11{height:45.961250pt;}
.h8{height:47.310625pt;}
.h9{height:47.470625pt;}
.h3{height:55.136250pt;}
.h7{height:60.057813pt;}
.h6{height:65.812500pt;}
.h2{height:144.346667pt;}
.hd{height:229.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w15{width:66.112000pt;}
.w18{width:74.720000pt;}
.w17{width:74.912000pt;}
.w14{width:75.680000pt;}
.w1a{width:87.232000pt;}
.w1e{width:87.360000pt;}
.w1d{width:87.392000pt;}
.w10{width:94.432000pt;}
.wa{width:101.472000pt;}
.w9{width:104.352000pt;}
.w19{width:115.072000pt;}
.w16{width:122.912000pt;}
.w4{width:128.512000pt;}
.w12{width:132.192000pt;}
.w1b{width:139.706667pt;}
.w13{width:141.786667pt;}
.wd{width:160.186667pt;}
.w11{width:160.826667pt;}
.wf{width:161.306667pt;}
.wc{width:161.786667pt;}
.wb{width:161.946667pt;}
.we{width:166.106667pt;}
.w1c{width:184.506667pt;}
.w8{width:211.426667pt;}
.w7{width:482.013333pt;}
.w2{width:550.693333pt;}
.w6{width:693.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x20{left:9.920000pt;}
.x12{left:21.920000pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.x19{left:57.440000pt;}
.x21{left:60.160000pt;}
.x13{left:61.440000pt;}
.x8{left:63.039988pt;}
.x28{left:66.879988pt;}
.x29{left:90.911988pt;}
.x5{left:121.146667pt;}
.x22{left:147.386667pt;}
.xc{left:154.586667pt;}
.x14{left:155.866667pt;}
.x1a{left:180.346667pt;}
.xd{left:256.066667pt;}
.x23{left:287.106667pt;}
.x15{left:316.706667pt;}
.x1b{left:322.146667pt;}
.x1c{left:397.053333pt;}
.x10{left:416.253333pt;}
.xe{left:418.013333pt;}
.x9{left:420.573322pt;}
.x26{left:439.453322pt;}
.x16{left:448.893333pt;}
.x27{left:463.453322pt;}
.x1d{left:471.773333pt;}
.xa{left:487.933322pt;}
.x7{left:532.253333pt;}
.x24{left:559.013333pt;}
.xf{left:579.973333pt;}
.x11{left:582.373333pt;}
.x1e{left:586.853333pt;}
.x17{left:590.693333pt;}
.x3{left:598.693333pt;}
.x4{left:617.413333pt;}
.x25{left:646.373333pt;}
.x1f{left:661.573333pt;}
.x18{left:666.373333pt;}
.xb{left:721.599988pt;}
}




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