
    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_b688c7ac4747d311fa6951c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_893e6a6077f807d47e92a2b4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_67b9f479204d844555811aa8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_9feddf0417f8c1c66975a617.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_05f52197a16602da37cd4bf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_77513b168a6994a45e043171.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_123cd6171029c64fdc17397b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37a33d1f618926041ef78195.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_90c69c8f82eb5beba29b5b63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995117;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,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);}
.m1{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);}
.m3{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:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v4{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:27.360000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls33{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.341400px;}
.ls19{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.037440px;}
.ls16{letter-spacing:-0.018720px;}
.ls11{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.142560px;}
.lsb{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.256200px;}
.ls2f{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378600px;}
.lsf{letter-spacing:0.378720px;}
.ls30{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.900000px;}
.ls4{letter-spacing:3.600000px;}
.lse{letter-spacing:4.320000px;}
.ls22{letter-spacing:5.040000px;}
.ls7{letter-spacing:5.760000px;}
.ls2a{letter-spacing:6.480000px;}
.ls9{letter-spacing:7.920000px;}
.ls1e{letter-spacing:8.640000px;}
.ls20{letter-spacing:10.080000px;}
.ls34{letter-spacing:10.944000px;}
.ls39{letter-spacing:16.560000px;}
.lsc{letter-spacing:18.000000px;}
.ls28{letter-spacing:23.040000px;}
.ls2c{letter-spacing:23.760000px;}
.ls2d{letter-spacing:26.640000px;}
.ls23{letter-spacing:31.680000px;}
.lsd{letter-spacing:33.120000px;}
.lsa{letter-spacing:36.720000px;}
.ls36{letter-spacing:38.880000px;}
.ls6{letter-spacing:45.360000px;}
.ls31{letter-spacing:61.920000px;}
.ls37{letter-spacing:75.600000px;}
.ls38{letter-spacing:76.320000px;}
.ls35{letter-spacing:77.040000px;}
.ls8{letter-spacing:77.760000px;}
.ls3a{letter-spacing:187.344000px;}
.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:-26.424000px;}
.ws4{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-21.041280px;}
.wsb{word-spacing:-21.022560px;}
.ws3{word-spacing:-20.718600px;}
.ws13{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.504000px;}
.ws15{word-spacing:-18.432000px;}
.ws12{word-spacing:-18.360000px;}
.wse{word-spacing:-18.288000px;}
.ws11{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.640000px;}
.ws10{word-spacing:-17.280000px;}
.ws17{word-spacing:-17.208000px;}
.ws1{word-spacing:-15.226440px;}
.ws16{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.700000px;}
.wsf{word-spacing:0.000000px;}
._0{margin-left:-1.188000px;}
._2{width:1.284480px;}
._3{width:2.346480px;}
._6{width:3.576000px;}
._14{width:4.644000px;}
._b{width:5.976000px;}
._c{width:7.919520px;}
._15{width:9.300000px;}
._18{width:10.955520px;}
._1a{width:12.084480px;}
._1b{width:13.176000px;}
._1e{width:14.400000px;}
._23{width:15.552000px;}
._19{width:16.920000px;}
._1{width:18.648000px;}
._a{width:19.944000px;}
._9{width:21.312000px;}
._1f{width:22.788000px;}
._1c{width:23.952000px;}
._2d{width:24.974880px;}
._4{width:26.030160px;}
._5{width:27.420240px;}
._f{width:28.595760px;}
._24{width:29.808000px;}
._16{width:30.996000px;}
._13{width:32.808000px;}
._12{width:33.948000px;}
._2e{width:35.100480px;}
._2a{width:36.119520px;}
._11{width:37.128000px;}
._e{width:39.168000px;}
._d{width:40.248000px;}
._20{width:42.276000px;}
._8{width:43.848000px;}
._7{width:44.976000px;}
._17{width:46.368000px;}
._26{width:48.288000px;}
._25{width:49.320000px;}
._2c{width:52.128000px;}
._2b{width:53.496000px;}
._32{width:56.352000px;}
._33{width:57.624000px;}
._1d{width:58.896000px;}
._29{width:60.768000px;}
._34{width:62.280000px;}
._3a{width:64.116000px;}
._35{width:65.928000px;}
._2f{width:72.648000px;}
._39{width:75.216000px;}
._3b{width:76.247520px;}
._10{width:77.976000px;}
._30{width:79.320000px;}
._31{width:80.735520px;}
._38{width:90.936000px;}
._21{width:92.160000px;}
._22{width:93.480000px;}
._27{width:105.264000px;}
._28{width:107.063520px;}
._37{width:130.392000px;}
._36{width:131.688000px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc7{color:rgb(17,17,17);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:75.893905px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.960000px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.ybb{bottom:13.860000px;}
.yb8{bottom:14.220000px;}
.ybc{bottom:23.940000px;}
.yb3{bottom:24.660000px;}
.yc3{bottom:24.690000px;}
.y2{bottom:28.260000px;}
.yb7{bottom:34.920000px;}
.yc5{bottom:34.950000px;}
.yb9{bottom:45.360000px;}
.yc4{bottom:45.390000px;}
.yb0{bottom:45.405000px;}
.yb6{bottom:55.620000px;}
.yba{bottom:66.060000px;}
.yaf{bottom:66.105000px;}
.y8{bottom:71.136000px;}
.yc1{bottom:86.760000px;}
.y6{bottom:86.796000px;}
.yb2{bottom:86.805000px;}
.yc0{bottom:107.460000px;}
.yb1{bottom:107.505000px;}
.y77{bottom:121.176000px;}
.yd4{bottom:121.536000px;}
.y55{bottom:123.156000px;}
.ybf{bottom:128.160000px;}
.y8f{bottom:128.196000px;}
.y94{bottom:131.976000px;}
.y35{bottom:138.096000px;}
.ya7{bottom:138.456000px;}
.y76{bottom:152.310000px;}
.y54{bottom:154.290000px;}
.yd3{bottom:155.370000px;}
.y8e{bottom:159.330000px;}
.y34{bottom:161.850000px;}
.ya6{bottom:169.590000px;}
.y90{bottom:171.210000px;}
.y75{bottom:183.270000px;}
.y53{bottom:185.250000px;}
.y33{bottom:185.610000px;}
.yd2{bottom:186.510000px;}
.y93{bottom:188.490000px;}
.y8d{bottom:190.290000px;}
.ya5{bottom:200.550000px;}
.y32{bottom:209.370000px;}
.y92{bottom:210.990000px;}
.y74{bottom:214.410000px;}
.y52{bottom:216.390000px;}
.yd1{bottom:217.470000px;}
.y8c{bottom:221.430000px;}
.ya4{bottom:231.690000px;}
.y31{bottom:233.310000px;}
.y73{bottom:245.370000px;}
.y51{bottom:247.350000px;}
.yd0{bottom:248.610000px;}
.y8b{bottom:252.390000px;}
.y30{bottom:257.610000px;}
.ya3{bottom:262.650000px;}
.y91{bottom:272.010000px;}
.y72{bottom:276.510000px;}
.y50{bottom:278.490000px;}
.ycf{bottom:279.570000px;}
.y2f{bottom:281.910000px;}
.y8a{bottom:283.530000px;}
.ya2{bottom:293.790000px;}
.y2e{bottom:306.030000px;}
.y71{bottom:307.470000px;}
.y4f{bottom:309.450000px;}
.yce{bottom:310.710000px;}
.y89{bottom:314.490000px;}
.ya1{bottom:324.750000px;}
.y2d{bottom:327.270000px;}
.y70{bottom:338.655000px;}
.y4e{bottom:340.635000px;}
.ycd{bottom:341.715000px;}
.y88{bottom:345.675000px;}
.y2c{bottom:351.435000px;}
.ya0{bottom:355.935000px;}
.y6f{bottom:369.615000px;}
.ycc{bottom:372.855000px;}
.y2b{bottom:375.555000px;}
.y87{bottom:376.635000px;}
.y4d{bottom:383.655000px;}
.y9f{bottom:386.895000px;}
.y2a{bottom:399.855000px;}
.y6e{bottom:400.755000px;}
.ycb{bottom:403.815000px;}
.y86{bottom:407.775000px;}
.y4c{bottom:414.615000px;}
.y9e{bottom:418.035000px;}
.y29{bottom:423.975000px;}
.y6d{bottom:431.715000px;}
.yca{bottom:434.955000px;}
.y85{bottom:438.735000px;}
.y4b{bottom:445.755000px;}
.y28{bottom:447.555000px;}
.y9d{bottom:448.995000px;}
.y6c{bottom:462.855000px;}
.yc9{bottom:465.915000px;}
.y27{bottom:468.255000px;}
.y84{bottom:469.875000px;}
.y4a{bottom:476.715000px;}
.y9c{bottom:480.135000px;}
.y26{bottom:488.955000px;}
.y6b{bottom:493.815000px;}
.yc8{bottom:497.055000px;}
.y83{bottom:500.835000px;}
.y49{bottom:507.855000px;}
.y25{bottom:509.655000px;}
.y9b{bottom:513.435000px;}
.y6a{bottom:524.955000px;}
.yc7{bottom:528.015000px;}
.y24{bottom:530.355000px;}
.y82{bottom:531.975000px;}
.y48{bottom:538.815000px;}
.y9a{bottom:540.075000px;}
.y23{bottom:551.415000px;}
.y69{bottom:555.915000px;}
.yc6{bottom:561.315000px;}
.y99{bottom:563.835000px;}
.y47{bottom:569.955000px;}
.y22{bottom:572.475000px;}
.y81{bottom:574.995000px;}
.yc2{bottom:581.835000px;}
.y68{bottom:587.055000px;}
.y98{bottom:587.775000px;}
.y21{bottom:593.535000px;}
.y46{bottom:600.915000px;}
.y80{bottom:605.985000px;}
.y97{bottom:611.565000px;}
.y20{bottom:614.265000px;}
.y67{bottom:618.045000px;}
.y96{bottom:635.325000px;}
.y1f{bottom:635.685000px;}
.y7f{bottom:637.125000px;}
.y45{bottom:643.965000px;}
.ybe{bottom:644.685000px;}
.y66{bottom:649.185000px;}
.y1e{bottom:659.805000px;}
.y95{bottom:664.125000px;}
.y7e{bottom:668.085000px;}
.y44{bottom:675.105000px;}
.y65{bottom:680.145000px;}
.y1d{bottom:683.925000px;}
.y7d{bottom:699.225000px;}
.y43{bottom:706.065000px;}
.y1c{bottom:708.045000px;}
.y64{bottom:711.285000px;}
.y7c{bottom:730.185000px;}
.y1b{bottom:732.165000px;}
.y42{bottom:737.205000px;}
.y63{bottom:742.245000px;}
.y1a{bottom:755.745000px;}
.y7b{bottom:761.325000px;}
.y62{bottom:773.385000px;}
.y19{bottom:776.445000px;}
.y41{bottom:780.225000px;}
.ybd{bottom:790.305000px;}
.y7a{bottom:792.285000px;}
.y18{bottom:797.145000px;}
.y61{bottom:804.345000px;}
.y40{bottom:811.185000px;}
.y17{bottom:817.845000px;}
.y79{bottom:823.425000px;}
.yae{bottom:832.425000px;}
.y60{bottom:835.305000px;}
.y16{bottom:838.545000px;}
.y3f{bottom:842.325000px;}
.y78{bottom:854.385000px;}
.y15{bottom:859.245000px;}
.y5f{bottom:866.445000px;}
.y3e{bottom:873.330000px;}
.yb5{bottom:873.870000px;}
.y14{bottom:879.990000px;}
.y5e{bottom:897.450000px;}
.y13{bottom:900.690000px;}
.y3d{bottom:904.470000px;}
.y12{bottom:921.390000px;}
.y5d{bottom:928.590000px;}
.yd5{bottom:929.670000px;}
.y3c{bottom:935.430000px;}
.y11{bottom:942.630000px;}
.y5c{bottom:959.550000px;}
.yad{bottom:961.890000px;}
.y10{bottom:966.210000px;}
.y3b{bottom:966.570000px;}
.yac{bottom:985.470000px;}
.yf{bottom:989.970000px;}
.y5b{bottom:990.690000px;}
.y3a{bottom:997.530000px;}
.yab{bottom:1006.170000px;}
.ye{bottom:1020.750000px;}
.y5a{bottom:1021.650000px;}
.yaa{bottom:1026.870000px;}
.y39{bottom:1028.670000px;}
.yd{bottom:1044.510000px;}
.ya9{bottom:1047.570000px;}
.y59{bottom:1052.790000px;}
.y38{bottom:1059.630000px;}
.yc{bottom:1067.370000px;}
.ya8{bottom:1080.870000px;}
.y58{bottom:1083.750000px;}
.y37{bottom:1090.770000px;}
.yb{bottom:1094.730000px;}
.y57{bottom:1114.890000px;}
.ya{bottom:1118.850000px;}
.y36{bottom:1121.730000px;}
.y9{bottom:1143.000000px;}
.y56{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h5{height:27.000000px;}
.h11{height:29.280938px;}
.h8{height:33.824531px;}
.h15{height:40.716000px;}
.h16{height:41.400000px;}
.h7{height:41.715352px;}
.h9{height:50.484375px;}
.ha{height:51.996094px;}
.h19{height:52.417969px;}
.h2{height:53.460000px;}
.hc{height:59.066719px;}
.hb{height:59.343750px;}
.he{height:60.679688px;}
.h14{height:61.184531px;}
.h18{height:61.956000px;}
.hf{height:62.261719px;}
.hd{height:63.961367px;}
.h4{height:65.884219px;}
.h10{height:67.824844px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.h13{height:82.800000px;}
.h12{height:124.236000px;}
.h17{height:144.900000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:52.380000px;}
.w7{width:52.596000px;}
.we{width:63.000000px;}
.w11{width:63.216000px;}
.wf{width:94.896000px;}
.wd{width:105.480000px;}
.w8{width:105.660000px;}
.w5{width:106.416000px;}
.wb{width:116.280000px;}
.w9{width:116.316000px;}
.wc{width:126.936000px;}
.wa{width:158.610000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x43{left:2.340000px;}
.x58{left:6.660000px;}
.x3f{left:8.100000px;}
.x47{left:9.180000px;}
.x41{left:10.620000px;}
.x57{left:12.645000px;}
.x42{left:13.680000px;}
.x5d{left:14.760000px;}
.x4d{left:16.560000px;}
.x3d{left:17.640000px;}
.x40{left:18.720000px;}
.x49{left:20.160000px;}
.x54{left:21.600000px;}
.x59{left:22.680000px;}
.x3e{left:26.100000px;}
.x5b{left:27.180000px;}
.x5a{left:28.620000px;}
.x4a{left:30.420000px;}
.x4c{left:33.480000px;}
.x4e{left:35.820000px;}
.x53{left:38.340000px;}
.x44{left:41.940000px;}
.x9{left:44.820000px;}
.x50{left:47.700000px;}
.x5c{left:48.774000px;}
.x3c{left:53.460000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x5{left:106.415987px;}
.x3a{left:109.295987px;}
.x2f{left:121.895987px;}
.x32{left:123.515987px;}
.x30{left:127.115987px;}
.x2b{left:138.995987px;}
.x34{left:141.515987px;}
.x12{left:145.115987px;}
.x10{left:148.535987px;}
.x2a{left:158.249987px;}
.x2e{left:159.509987px;}
.x11{left:167.069987px;}
.x2d{left:170.309987px;}
.xb{left:179.489987px;}
.x35{left:184.349987px;}
.x39{left:190.109987px;}
.x2{left:197.310000px;}
.x45{left:213.150000px;}
.xc{left:243.389987px;}
.x1c{left:246.629987px;}
.x1d{left:254.009987px;}
.x36{left:256.889987px;}
.x1e{left:259.949987px;}
.x1f{left:267.329987px;}
.x51{left:276.870000px;}
.x1{left:278.175000px;}
.x20{left:279.434987px;}
.x21{left:286.814987px;}
.x31{left:287.894987px;}
.x37{left:290.954987px;}
.xd{left:296.174987px;}
.x7{left:297.795000px;}
.xf{left:306.434987px;}
.x3b{left:309.314987px;}
.x46{left:330.195000px;}
.x13{left:336.134987px;}
.x5e{left:341.174987px;}
.xe{left:377.894987px;}
.x22{left:388.334987px;}
.x8{left:390.855000px;}
.x52{left:393.915000px;}
.x23{left:395.714987px;}
.x2c{left:397.694987px;}
.x24{left:401.654987px;}
.x25{left:409.034987px;}
.x26{left:488.084987px;}
.x48{left:489.525000px;}
.x27{left:495.464987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x28{left:501.404987px;}
.x29{left:508.784987px;}
.x55{left:542.805000px;}
.x4b{left:606.525000px;}
.x14{left:618.044987px;}
.x15{left:625.424987px;}
.x16{left:649.364987px;}
.x17{left:656.789987px;}
.x56{left:670.470000px;}
.x33{left:696.029987px;}
.x38{left:728.249987px;}
.x4f{left:734.190000px;}
.x18{left:755.429987px;}
.x19{left:762.809987px;}
.x1a{left:794.849987px;}
.x1b{left:802.229987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v4{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:24.320000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls33{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.303467pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.033280pt;}
.ls16{letter-spacing:-0.016640pt;}
.ls11{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.126720pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.227733pt;}
.ls2f{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336533pt;}
.lsf{letter-spacing:0.336640pt;}
.ls30{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls4{letter-spacing:3.200000pt;}
.lse{letter-spacing:3.840000pt;}
.ls22{letter-spacing:4.480000pt;}
.ls7{letter-spacing:5.120000pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:7.680000pt;}
.ls20{letter-spacing:8.960000pt;}
.ls34{letter-spacing:9.728000pt;}
.ls39{letter-spacing:14.720000pt;}
.lsc{letter-spacing:16.000000pt;}
.ls28{letter-spacing:20.480000pt;}
.ls2c{letter-spacing:21.120000pt;}
.ls2d{letter-spacing:23.680000pt;}
.ls23{letter-spacing:28.160000pt;}
.lsd{letter-spacing:29.440000pt;}
.lsa{letter-spacing:32.640000pt;}
.ls36{letter-spacing:34.560000pt;}
.ls6{letter-spacing:40.320000pt;}
.ls31{letter-spacing:55.040000pt;}
.ls37{letter-spacing:67.200000pt;}
.ls38{letter-spacing:67.840000pt;}
.ls35{letter-spacing:68.480000pt;}
.ls8{letter-spacing:69.120000pt;}
.ls3a{letter-spacing:166.528000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws4{word-spacing:-19.056533pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.703360pt;}
.wsb{word-spacing:-18.686720pt;}
.ws3{word-spacing:-18.416533pt;}
.ws13{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.448000pt;}
.ws15{word-spacing:-16.384000pt;}
.ws12{word-spacing:-16.320000pt;}
.wse{word-spacing:-16.256000pt;}
.ws11{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.680000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.296000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws16{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.400000pt;}
.wsf{word-spacing:0.000000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.141760pt;}
._3{width:2.085760pt;}
._6{width:3.178667pt;}
._14{width:4.128000pt;}
._b{width:5.312000pt;}
._c{width:7.039573pt;}
._15{width:8.266667pt;}
._18{width:9.738240pt;}
._1a{width:10.741760pt;}
._1b{width:11.712000pt;}
._1e{width:12.800000pt;}
._23{width:13.824000pt;}
._19{width:15.040000pt;}
._1{width:16.576000pt;}
._a{width:17.728000pt;}
._9{width:18.944000pt;}
._1f{width:20.256000pt;}
._1c{width:21.290667pt;}
._2d{width:22.199893pt;}
._4{width:23.137920pt;}
._5{width:24.373547pt;}
._f{width:25.418453pt;}
._24{width:26.496000pt;}
._16{width:27.552000pt;}
._13{width:29.162667pt;}
._12{width:30.176000pt;}
._2e{width:31.200427pt;}
._2a{width:32.106240pt;}
._11{width:33.002667pt;}
._e{width:34.816000pt;}
._d{width:35.776000pt;}
._20{width:37.578667pt;}
._8{width:38.976000pt;}
._7{width:39.978667pt;}
._17{width:41.216000pt;}
._26{width:42.922667pt;}
._25{width:43.840000pt;}
._2c{width:46.336000pt;}
._2b{width:47.552000pt;}
._32{width:50.090667pt;}
._33{width:51.221333pt;}
._1d{width:52.352000pt;}
._29{width:54.016000pt;}
._34{width:55.360000pt;}
._3a{width:56.992000pt;}
._35{width:58.602667pt;}
._2f{width:64.576000pt;}
._39{width:66.858667pt;}
._3b{width:67.775573pt;}
._10{width:69.312000pt;}
._30{width:70.506667pt;}
._31{width:71.764907pt;}
._38{width:80.832000pt;}
._21{width:81.920000pt;}
._22{width:83.093333pt;}
._27{width:93.568000pt;}
._28{width:95.167573pt;}
._37{width:115.904000pt;}
._36{width:117.056000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:67.461249pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.520000pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.ybb{bottom:12.320000pt;}
.yb8{bottom:12.640000pt;}
.ybc{bottom:21.280000pt;}
.yb3{bottom:21.920000pt;}
.yc3{bottom:21.946667pt;}
.y2{bottom:25.120000pt;}
.yb7{bottom:31.040000pt;}
.yc5{bottom:31.066667pt;}
.yb9{bottom:40.320000pt;}
.yc4{bottom:40.346667pt;}
.yb0{bottom:40.360000pt;}
.yb6{bottom:49.440000pt;}
.yba{bottom:58.720000pt;}
.yaf{bottom:58.760000pt;}
.y8{bottom:63.232000pt;}
.yc1{bottom:77.120000pt;}
.y6{bottom:77.152000pt;}
.yb2{bottom:77.160000pt;}
.yc0{bottom:95.520000pt;}
.yb1{bottom:95.560000pt;}
.y77{bottom:107.712000pt;}
.yd4{bottom:108.032000pt;}
.y55{bottom:109.472000pt;}
.ybf{bottom:113.920000pt;}
.y8f{bottom:113.952000pt;}
.y94{bottom:117.312000pt;}
.y35{bottom:122.752000pt;}
.ya7{bottom:123.072000pt;}
.y76{bottom:135.386667pt;}
.y54{bottom:137.146667pt;}
.yd3{bottom:138.106667pt;}
.y8e{bottom:141.626667pt;}
.y34{bottom:143.866667pt;}
.ya6{bottom:150.746667pt;}
.y90{bottom:152.186667pt;}
.y75{bottom:162.906667pt;}
.y53{bottom:164.666667pt;}
.y33{bottom:164.986667pt;}
.yd2{bottom:165.786667pt;}
.y93{bottom:167.546667pt;}
.y8d{bottom:169.146667pt;}
.ya5{bottom:178.266667pt;}
.y32{bottom:186.106667pt;}
.y92{bottom:187.546667pt;}
.y74{bottom:190.586667pt;}
.y52{bottom:192.346667pt;}
.yd1{bottom:193.306667pt;}
.y8c{bottom:196.826667pt;}
.ya4{bottom:205.946667pt;}
.y31{bottom:207.386667pt;}
.y73{bottom:218.106667pt;}
.y51{bottom:219.866667pt;}
.yd0{bottom:220.986667pt;}
.y8b{bottom:224.346667pt;}
.y30{bottom:228.986667pt;}
.ya3{bottom:233.466667pt;}
.y91{bottom:241.786667pt;}
.y72{bottom:245.786667pt;}
.y50{bottom:247.546667pt;}
.ycf{bottom:248.506667pt;}
.y2f{bottom:250.586667pt;}
.y8a{bottom:252.026667pt;}
.ya2{bottom:261.146667pt;}
.y2e{bottom:272.026667pt;}
.y71{bottom:273.306667pt;}
.y4f{bottom:275.066667pt;}
.yce{bottom:276.186667pt;}
.y89{bottom:279.546667pt;}
.ya1{bottom:288.666667pt;}
.y2d{bottom:290.906667pt;}
.y70{bottom:301.026667pt;}
.y4e{bottom:302.786667pt;}
.ycd{bottom:303.746667pt;}
.y88{bottom:307.266667pt;}
.y2c{bottom:312.386667pt;}
.ya0{bottom:316.386667pt;}
.y6f{bottom:328.546667pt;}
.ycc{bottom:331.426667pt;}
.y2b{bottom:333.826667pt;}
.y87{bottom:334.786667pt;}
.y4d{bottom:341.026667pt;}
.y9f{bottom:343.906667pt;}
.y2a{bottom:355.426667pt;}
.y6e{bottom:356.226667pt;}
.ycb{bottom:358.946667pt;}
.y86{bottom:362.466667pt;}
.y4c{bottom:368.546667pt;}
.y9e{bottom:371.586667pt;}
.y29{bottom:376.866667pt;}
.y6d{bottom:383.746667pt;}
.yca{bottom:386.626667pt;}
.y85{bottom:389.986667pt;}
.y4b{bottom:396.226667pt;}
.y28{bottom:397.826667pt;}
.y9d{bottom:399.106667pt;}
.y6c{bottom:411.426667pt;}
.yc9{bottom:414.146667pt;}
.y27{bottom:416.226667pt;}
.y84{bottom:417.666667pt;}
.y4a{bottom:423.746667pt;}
.y9c{bottom:426.786667pt;}
.y26{bottom:434.626667pt;}
.y6b{bottom:438.946667pt;}
.yc8{bottom:441.826667pt;}
.y83{bottom:445.186667pt;}
.y49{bottom:451.426667pt;}
.y25{bottom:453.026667pt;}
.y9b{bottom:456.386667pt;}
.y6a{bottom:466.626667pt;}
.yc7{bottom:469.346667pt;}
.y24{bottom:471.426667pt;}
.y82{bottom:472.866667pt;}
.y48{bottom:478.946667pt;}
.y9a{bottom:480.066667pt;}
.y23{bottom:490.146667pt;}
.y69{bottom:494.146667pt;}
.yc6{bottom:498.946667pt;}
.y99{bottom:501.186667pt;}
.y47{bottom:506.626667pt;}
.y22{bottom:508.866667pt;}
.y81{bottom:511.106667pt;}
.yc2{bottom:517.186667pt;}
.y68{bottom:521.826667pt;}
.y98{bottom:522.466667pt;}
.y21{bottom:527.586667pt;}
.y46{bottom:534.146667pt;}
.y80{bottom:538.653333pt;}
.y97{bottom:543.613333pt;}
.y20{bottom:546.013333pt;}
.y67{bottom:549.373333pt;}
.y96{bottom:564.733333pt;}
.y1f{bottom:565.053333pt;}
.y7f{bottom:566.333333pt;}
.y45{bottom:572.413333pt;}
.ybe{bottom:573.053333pt;}
.y66{bottom:577.053333pt;}
.y1e{bottom:586.493333pt;}
.y95{bottom:590.333333pt;}
.y7e{bottom:593.853333pt;}
.y44{bottom:600.093333pt;}
.y65{bottom:604.573333pt;}
.y1d{bottom:607.933333pt;}
.y7d{bottom:621.533333pt;}
.y43{bottom:627.613333pt;}
.y1c{bottom:629.373333pt;}
.y64{bottom:632.253333pt;}
.y7c{bottom:649.053333pt;}
.y1b{bottom:650.813333pt;}
.y42{bottom:655.293333pt;}
.y63{bottom:659.773333pt;}
.y1a{bottom:671.773333pt;}
.y7b{bottom:676.733333pt;}
.y62{bottom:687.453333pt;}
.y19{bottom:690.173333pt;}
.y41{bottom:693.533333pt;}
.ybd{bottom:702.493333pt;}
.y7a{bottom:704.253333pt;}
.y18{bottom:708.573333pt;}
.y61{bottom:714.973333pt;}
.y40{bottom:721.053333pt;}
.y17{bottom:726.973333pt;}
.y79{bottom:731.933333pt;}
.yae{bottom:739.933333pt;}
.y60{bottom:742.493333pt;}
.y16{bottom:745.373333pt;}
.y3f{bottom:748.733333pt;}
.y78{bottom:759.453333pt;}
.y15{bottom:763.773333pt;}
.y5f{bottom:770.173333pt;}
.y3e{bottom:776.293333pt;}
.yb5{bottom:776.773333pt;}
.y14{bottom:782.213333pt;}
.y5e{bottom:797.733333pt;}
.y13{bottom:800.613333pt;}
.y3d{bottom:803.973333pt;}
.y12{bottom:819.013333pt;}
.y5d{bottom:825.413333pt;}
.yd5{bottom:826.373333pt;}
.y3c{bottom:831.493333pt;}
.y11{bottom:837.893333pt;}
.y5c{bottom:852.933333pt;}
.yad{bottom:855.013333pt;}
.y10{bottom:858.853333pt;}
.y3b{bottom:859.173333pt;}
.yac{bottom:875.973333pt;}
.yf{bottom:879.973333pt;}
.y5b{bottom:880.613333pt;}
.y3a{bottom:886.693333pt;}
.yab{bottom:894.373333pt;}
.ye{bottom:907.333333pt;}
.y5a{bottom:908.133333pt;}
.yaa{bottom:912.773333pt;}
.y39{bottom:914.373333pt;}
.yd{bottom:928.453333pt;}
.ya9{bottom:931.173333pt;}
.y59{bottom:935.813333pt;}
.y38{bottom:941.893333pt;}
.yc{bottom:948.773333pt;}
.ya8{bottom:960.773333pt;}
.y58{bottom:963.333333pt;}
.y37{bottom:969.573333pt;}
.yb{bottom:973.093333pt;}
.y57{bottom:991.013333pt;}
.ya{bottom:994.533333pt;}
.y36{bottom:997.093333pt;}
.y9{bottom:1016.000000pt;}
.y56{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h5{height:24.000000pt;}
.h11{height:26.027500pt;}
.h8{height:30.066250pt;}
.h15{height:36.192000pt;}
.h16{height:36.800000pt;}
.h7{height:37.080312pt;}
.h9{height:44.875000pt;}
.ha{height:46.218750pt;}
.h19{height:46.593750pt;}
.h2{height:47.520000pt;}
.hc{height:52.503750pt;}
.hb{height:52.750000pt;}
.he{height:53.937500pt;}
.h14{height:54.386250pt;}
.h18{height:55.072000pt;}
.hf{height:55.343750pt;}
.hd{height:56.854549pt;}
.h4{height:58.563750pt;}
.h10{height:60.288750pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.h13{height:73.600000pt;}
.h12{height:110.432000pt;}
.h17{height:128.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:46.560000pt;}
.w7{width:46.752000pt;}
.we{width:56.000000pt;}
.w11{width:56.192000pt;}
.wf{width:84.352000pt;}
.wd{width:93.760000pt;}
.w8{width:93.920000pt;}
.w5{width:94.592000pt;}
.wb{width:103.360000pt;}
.w9{width:103.392000pt;}
.wc{width:112.832000pt;}
.wa{width:140.986667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x43{left:2.080000pt;}
.x58{left:5.920000pt;}
.x3f{left:7.200000pt;}
.x47{left:8.160000pt;}
.x41{left:9.440000pt;}
.x57{left:11.240000pt;}
.x42{left:12.160000pt;}
.x5d{left:13.120000pt;}
.x4d{left:14.720000pt;}
.x3d{left:15.680000pt;}
.x40{left:16.640000pt;}
.x49{left:17.920000pt;}
.x54{left:19.200000pt;}
.x59{left:20.160000pt;}
.x3e{left:23.200000pt;}
.x5b{left:24.160000pt;}
.x5a{left:25.440000pt;}
.x4a{left:27.040000pt;}
.x4c{left:29.760000pt;}
.x4e{left:31.840000pt;}
.x53{left:34.080000pt;}
.x44{left:37.280000pt;}
.x9{left:39.840000pt;}
.x50{left:42.400000pt;}
.x5c{left:43.354667pt;}
.x3c{left:47.520000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x5{left:94.591988pt;}
.x3a{left:97.151988pt;}
.x2f{left:108.351988pt;}
.x32{left:109.791988pt;}
.x30{left:112.991988pt;}
.x2b{left:123.551988pt;}
.x34{left:125.791988pt;}
.x12{left:128.991988pt;}
.x10{left:132.031988pt;}
.x2a{left:140.666655pt;}
.x2e{left:141.786655pt;}
.x11{left:148.506655pt;}
.x2d{left:151.386655pt;}
.xb{left:159.546655pt;}
.x35{left:163.866655pt;}
.x39{left:168.986655pt;}
.x2{left:175.386667pt;}
.x45{left:189.466667pt;}
.xc{left:216.346655pt;}
.x1c{left:219.226655pt;}
.x1d{left:225.786655pt;}
.x36{left:228.346655pt;}
.x1e{left:231.066655pt;}
.x1f{left:237.626655pt;}
.x51{left:246.106667pt;}
.x1{left:247.266667pt;}
.x20{left:248.386655pt;}
.x21{left:254.946655pt;}
.x31{left:255.906655pt;}
.x37{left:258.626655pt;}
.xd{left:263.266655pt;}
.x7{left:264.706667pt;}
.xf{left:272.386655pt;}
.x3b{left:274.946655pt;}
.x46{left:293.506667pt;}
.x13{left:298.786655pt;}
.x5e{left:303.266655pt;}
.xe{left:335.906655pt;}
.x22{left:345.186655pt;}
.x8{left:347.426667pt;}
.x52{left:350.146667pt;}
.x23{left:351.746655pt;}
.x2c{left:353.506655pt;}
.x24{left:357.026655pt;}
.x25{left:363.586655pt;}
.x26{left:433.853322pt;}
.x48{left:435.133333pt;}
.x27{left:440.413322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x28{left:445.693322pt;}
.x29{left:452.253322pt;}
.x55{left:482.493333pt;}
.x4b{left:539.133333pt;}
.x14{left:549.373322pt;}
.x15{left:555.933322pt;}
.x16{left:577.213322pt;}
.x17{left:583.813322pt;}
.x56{left:595.973333pt;}
.x33{left:618.693322pt;}
.x38{left:647.333322pt;}
.x4f{left:652.613333pt;}
.x18{left:671.493322pt;}
.x19{left:678.053322pt;}
.x1a{left:706.533322pt;}
.x1b{left:713.093322pt;}
}




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