
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_11c229c541ea5e4047fc4698.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_376d9c05cd6d341517daee0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_31db9806e6ec34dec60be016.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_07c93534b58f29635d729bc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_0831259a607be74dea55f4bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_1596776336a189313776323d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_fcf4ad514f4c44b20a67efbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_e6aef0821b09753f9304a0bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061523;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_22451ab56159f3f5c5e26e77.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls27{letter-spacing:-0.732000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls1e{letter-spacing:-0.260400px;}
.ls1c{letter-spacing:-0.187200px;}
.ls26{letter-spacing:-0.184200px;}
.ls19{letter-spacing:-0.157800px;}
.ls34{letter-spacing:-0.121200px;}
.ls15{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.052560px;}
.lsc{letter-spacing:-0.046800px;}
.ls2f{letter-spacing:-0.038880px;}
.lse{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls28{letter-spacing:0.059040px;}
.ls1a{letter-spacing:0.060480px;}
.ls31{letter-spacing:0.063600px;}
.ls22{letter-spacing:0.078000px;}
.ls8{letter-spacing:0.100800px;}
.ls1f{letter-spacing:0.126600px;}
.ls4{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.211680px;}
.ls18{letter-spacing:0.211800px;}
.ls21{letter-spacing:0.224400px;}
.ls20{letter-spacing:0.298800px;}
.ls1d{letter-spacing:0.309000px;}
.ls35{letter-spacing:0.319680px;}
.ls9{letter-spacing:0.348000px;}
.ls1{letter-spacing:0.351360px;}
.lsb{letter-spacing:0.357000px;}
.ls32{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls1b{letter-spacing:0.532800px;}
.ls12{letter-spacing:0.535680px;}
.ls2d{letter-spacing:0.535800px;}
.ls16{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.666720px;}
.ls14{letter-spacing:0.708000px;}
.ls24{letter-spacing:0.709200px;}
.ls0{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.972800px;}
.ls2b{letter-spacing:2.692800px;}
.ls2e{letter-spacing:2.694000px;}
.ls2c{letter-spacing:4.132800px;}
.ls11{letter-spacing:4.852800px;}
.ls2a{letter-spacing:6.292800px;}
.ls29{letter-spacing:7.012800px;}
.ls23{letter-spacing:10.612800px;}
.ls33{letter-spacing:47.466720px;}
.ls30{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-18.532800px;}
.wsc{word-spacing:-14.958600px;}
.ws4{word-spacing:-14.572800px;}
.wse{word-spacing:-13.813200px;}
.ws7{word-spacing:-13.504200px;}
.ws10{word-spacing:-13.359000px;}
.ws12{word-spacing:-13.273800px;}
.ws14{word-spacing:-13.225200px;}
.ws15{word-spacing:-13.210800px;}
.ws6{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.111200px;}
.wsf{word-spacing:-13.094640px;}
.wsd{word-spacing:-13.093920px;}
.ws16{word-spacing:-13.026000px;}
.ws11{word-spacing:-12.989400px;}
.ws13{word-spacing:-10.612800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:2.552040px;}
._12{margin-left:-5.438160px;}
._2{margin-left:-4.043436px;}
._3{margin-left:-2.567604px;}
._0{margin-left:-1.159200px;}
._1{width:1.434000px;}
._4{width:2.441170px;}
._8{width:4.362600px;}
._10{width:5.366524px;}
._c{width:6.710951px;}
._6{width:8.178324px;}
._11{width:9.310632px;}
._5{width:10.598400px;}
._7{width:12.052800px;}
._9{width:14.327281px;}
._f{width:15.543714px;}
._a{width:16.613400px;}
._b{width:17.928597px;}
._e{width:18.944399px;}
._d{width:20.019600px;}
._15{width:25.996080px;}
._14{width:27.011520px;}
._16{width:28.929840px;}
._13{width:169.089120px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y108{bottom:3.240000px;}
.yaa{bottom:7.734000px;}
.y78{bottom:7.740000px;}
.yd9{bottom:7.785000px;}
.y7a{bottom:7.920000px;}
.yce{bottom:7.950000px;}
.y7d{bottom:7.965000px;}
.y10a{bottom:8.820000px;}
.y111{bottom:9.540000px;}
.y75{bottom:17.820000px;}
.ye7{bottom:18.900000px;}
.y88{bottom:25.380000px;}
.y87{bottom:25.560000px;}
.y73{bottom:26.640000px;}
.y77{bottom:29.880000px;}
.y7c{bottom:30.105000px;}
.y8c{bottom:35.100000px;}
.y74{bottom:35.460000px;}
.y2{bottom:73.296000px;}
.y27{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y130{bottom:117.216000px;}
.y160{bottom:119.016000px;}
.y57{bottom:120.636000px;}
.y186{bottom:133.956000px;}
.ycc{bottom:134.676000px;}
.y12f{bottom:134.856000px;}
.yf3{bottom:135.216000px;}
.y15f{bottom:136.656000px;}
.y25{bottom:138.096000px;}
.ya9{bottom:142.416000px;}
.y106{bottom:151.050000px;}
.y185{bottom:151.590000px;}
.y12e{bottom:152.310000px;}
.y15e{bottom:154.110000px;}
.y24{bottom:155.730000px;}
.y56{bottom:156.270000px;}
.y199{bottom:160.590000px;}
.ycb{bottom:162.030000px;}
.yf2{bottom:162.390000px;}
.ya8{bottom:169.770000px;}
.y12d{bottom:169.950000px;}
.y83{bottom:170.130000px;}
.y55{bottom:173.910000px;}
.y184{bottom:178.230000px;}
.y23{bottom:182.550000px;}
.y105{bottom:186.690000px;}
.y12c{bottom:187.590000px;}
.y82{bottom:187.770000px;}
.yca{bottom:189.390000px;}
.yf1{bottom:189.750000px;}
.y54{bottom:191.370000px;}
.y183{bottom:195.870000px;}
.ya7{bottom:196.950000px;}
.y81{bottom:205.410000px;}
.y15d{bottom:207.390000px;}
.y1ad{bottom:213.510000px;}
.yc9{bottom:216.750000px;}
.yf0{bottom:217.110000px;}
.y53{bottom:218.010000px;}
.y104{bottom:222.150000px;}
.y182{bottom:222.330000px;}
.y80{bottom:222.870000px;}
.y12b{bottom:223.050000px;}
.ya6{bottom:224.310000px;}
.y15c{bottom:224.850000px;}
.y22{bottom:231.150000px;}
.y181{bottom:239.970000px;}
.y7f{bottom:240.510000px;}
.y12a{bottom:240.690000px;}
.y15b{bottom:242.490000px;}
.yc8{bottom:244.110000px;}
.yef{bottom:244.470000px;}
.ya5{bottom:251.670000px;}
.y52{bottom:253.470000px;}
.y7e{bottom:255.450000px;}
.y103{bottom:257.250000px;}
.y180{bottom:257.610000px;}
.y129{bottom:258.330000px;}
.y15a{bottom:260.130000px;}
.y21{bottom:268.230000px;}
.y51{bottom:271.110000px;}
.y102{bottom:271.290000px;}
.yc7{bottom:271.470000px;}
.yee{bottom:271.830000px;}
.y1ac{bottom:275.250000px;}
.y128{bottom:275.970000px;}
.y159{bottom:277.770000px;}
.ya4{bottom:279.030000px;}
.y17f{bottom:284.070000px;}
.y101{bottom:285.330000px;}
.y20{bottom:285.870000px;}
.y50{bottom:288.750000px;}
.y127{bottom:293.430000px;}
.y158{bottom:295.230000px;}
.yc6{bottom:298.650000px;}
.yed{bottom:299.190000px;}
.y17e{bottom:301.710000px;}
.y1f{bottom:303.510000px;}
.y7b{bottom:304.770000px;}
.y4f{bottom:306.390000px;}
.y126{bottom:311.115000px;}
.y157{bottom:312.915000px;}
.y100{bottom:318.135000px;}
.y17d{bottom:319.395000px;}
.y4e{bottom:324.075000px;}
.yc5{bottom:326.055000px;}
.yec{bottom:326.595000px;}
.y198{bottom:328.395000px;}
.y125{bottom:328.755000px;}
.y156{bottom:330.555000px;}
.ya3{bottom:333.795000px;}
.y1e{bottom:339.015000px;}
.y4d{bottom:341.535000px;}
.y17c{bottom:345.855000px;}
.y197{bottom:346.035000px;}
.y124{bottom:346.215000px;}
.y155{bottom:348.015000px;}
.yff{bottom:350.175000px;}
.yc4{bottom:353.415000px;}
.yeb{bottom:353.775000px;}
.y79{bottom:354.315000px;}
.y1d{bottom:356.655000px;}
.y4c{bottom:359.175000px;}
.y17b{bottom:363.495000px;}
.y196{bottom:363.675000px;}
.y123{bottom:363.855000px;}
.y154{bottom:365.655000px;}
.y1c{bottom:374.295000px;}
.y4b{bottom:376.815000px;}
.yc3{bottom:380.775000px;}
.yea{bottom:381.135000px;}
.y122{bottom:381.495000px;}
.ya2{bottom:382.395000px;}
.y153{bottom:383.295000px;}
.y17a{bottom:390.135000px;}
.y1b{bottom:391.755000px;}
.y4a{bottom:394.275000px;}
.y1ab{bottom:398.775000px;}
.y121{bottom:398.955000px;}
.y152{bottom:400.755000px;}
.y76{bottom:403.815000px;}
.y179{bottom:407.775000px;}
.yc2{bottom:408.135000px;}
.ye9{bottom:408.495000px;}
.y1a{bottom:409.395000px;}
.y49{bottom:411.915000px;}
.y120{bottom:416.595000px;}
.ya1{bottom:418.035000px;}
.y151{bottom:418.395000px;}
.y1aa{bottom:425.235000px;}
.y195{bottom:425.415000px;}
.y19{bottom:427.035000px;}
.y178{bottom:434.235000px;}
.yc1{bottom:435.495000px;}
.ya0{bottom:435.675000px;}
.ye8{bottom:435.855000px;}
.y150{bottom:436.035000px;}
.y48{bottom:438.375000px;}
.y1a9{bottom:442.875000px;}
.y11f{bottom:443.415000px;}
.y18{bottom:444.675000px;}
.y177{bottom:451.875000px;}
.y72{bottom:453.135000px;}
.y9f{bottom:453.315000px;}
.y14f{bottom:453.675000px;}
.yc0{bottom:462.855000px;}
.ye6{bottom:463.215000px;}
.y1a8{bottom:469.515000px;}
.y9e{bottom:470.775000px;}
.y14e{bottom:471.135000px;}
.y107{bottom:473.115000px;}
.y47{bottom:474.195000px;}
.y176{bottom:478.515000px;}
.y17{bottom:480.135000px;}
.y1a7{bottom:487.155000px;}
.y9d{bottom:488.415000px;}
.y14d{bottom:488.775000px;}
.y11e{bottom:489.135000px;}
.ybf{bottom:490.035000px;}
.y194{bottom:496.155000px;}
.y16{bottom:497.775000px;}
.y175{bottom:504.975000px;}
.y14c{bottom:506.415000px;}
.y193{bottom:513.615000px;}
.y15{bottom:515.415000px;}
.y11d{bottom:516.495000px;}
.ybe{bottom:517.395000px;}
.y46{bottom:522.615000px;}
.y9c{bottom:524.055000px;}
.y1a6{bottom:531.255000px;}
.y14{bottom:532.875000px;}
.ye5{bottom:533.955000px;}
.yfe{bottom:535.935000px;}
.y71{bottom:539.355000px;}
.y45{bottom:540.255000px;}
.y9b{bottom:541.695000px;}
.y14b{bottom:541.875000px;}
.y11c{bottom:543.855000px;}
.ybd{bottom:544.755000px;}
.y1a5{bottom:548.895000px;}
.y174{bottom:549.255000px;}
.y13{bottom:550.515000px;}
.yfd{bottom:553.575000px;}
.y192{bottom:557.895000px;}
.y9a{bottom:559.155000px;}
.y14a{bottom:559.515000px;}
.y173{bottom:566.895000px;}
.ye4{bottom:569.595000px;}
.yfc{bottom:571.035000px;}
.y11b{bottom:571.215000px;}
.ybc{bottom:572.115000px;}
.y70{bottom:574.995000px;}
.y1a4{bottom:575.355000px;}
.y44{bottom:575.715000px;}
.y99{bottom:576.795000px;}
.y149{bottom:577.155000px;}
.y172{bottom:584.385000px;}
.y12{bottom:586.005000px;}
.ye3{bottom:587.265000px;}
.y6f{bottom:592.665000px;}
.y1a3{bottom:593.025000px;}
.y43{bottom:593.385000px;}
.y98{bottom:594.465000px;}
.y148{bottom:594.645000px;}
.y11a{bottom:598.425000px;}
.ybb{bottom:599.505000px;}
.y191{bottom:602.025000px;}
.y11{bottom:603.645000px;}
.ye2{bottom:604.905000px;}
.yfb{bottom:606.705000px;}
.y6e{bottom:610.305000px;}
.y1a2{bottom:610.665000px;}
.y42{bottom:611.025000px;}
.y97{bottom:611.925000px;}
.y147{bottom:612.285000px;}
.y190{bottom:619.665000px;}
.ye1{bottom:622.365000px;}
.yfa{bottom:624.345000px;}
.y119{bottom:625.785000px;}
.yba{bottom:626.865000px;}
.y1a1{bottom:628.305000px;}
.y41{bottom:628.665000px;}
.y146{bottom:629.925000px;}
.y1b2{bottom:637.125000px;}
.y171{bottom:637.485000px;}
.y96{bottom:638.565000px;}
.y10{bottom:639.285000px;}
.ye0{bottom:640.005000px;}
.yf9{bottom:641.985000px;}
.y6d{bottom:645.765000px;}
.y18f{bottom:646.125000px;}
.y40{bottom:646.305000px;}
.y145{bottom:647.385000px;}
.y118{bottom:653.145000px;}
.yb9{bottom:654.225000px;}
.y1a0{bottom:654.765000px;}
.y95{bottom:656.205000px;}
.yf{bottom:656.925000px;}
.yf8{bottom:659.445000px;}
.y6c{bottom:663.405000px;}
.y18e{bottom:663.765000px;}
.y170{bottom:664.305000px;}
.y144{bottom:665.025000px;}
.ydf{bottom:666.465000px;}
.y19f{bottom:672.405000px;}
.yf7{bottom:677.085000px;}
.y117{bottom:680.505000px;}
.y6b{bottom:681.045000px;}
.yb8{bottom:681.405000px;}
.y3f{bottom:681.765000px;}
.y143{bottom:682.665000px;}
.ye{bottom:683.745000px;}
.y19e{bottom:690.045000px;}
.y94{bottom:691.845000px;}
.yf6{bottom:694.725000px;}
.y1b1{bottom:699.045000px;}
.y3e{bottom:699.405000px;}
.y142{bottom:700.305000px;}
.yde{bottom:702.105000px;}
.y116{bottom:707.865000px;}
.yb7{bottom:708.765000px;}
.y16f{bottom:712.725000px;}
.y6a{bottom:716.505000px;}
.y3d{bottom:717.045000px;}
.y141{bottom:717.765000px;}
.yf5{bottom:721.185000px;}
.y18d{bottom:725.505000px;}
.yd{bottom:731.985000px;}
.y69{bottom:734.145000px;}
.y3c{bottom:734.505000px;}
.y115{bottom:735.225000px;}
.y140{bottom:735.405000px;}
.yb6{bottom:736.125000px;}
.y93{bottom:737.745000px;}
.y16e{bottom:739.725000px;}
.y1b0{bottom:743.145000px;}
.ydd{bottom:744.405000px;}
.y68{bottom:751.785000px;}
.y3b{bottom:752.145000px;}
.y13f{bottom:753.045000px;}
.yf4{bottom:756.825000px;}
.y19d{bottom:760.605000px;}
.y1af{bottom:760.785000px;}
.y114{bottom:762.585000px;}
.yb5{bottom:763.485000px;}
.y92{bottom:764.925000px;}
.yc{bottom:767.805000px;}
.y67{bottom:769.245000px;}
.y3a{bottom:769.785000px;}
.y13e{bottom:770.505000px;}
.ydc{bottom:771.765000px;}
.y16d{bottom:776.625000px;}
.y19c{bottom:778.245000px;}
.y66{bottom:786.885000px;}
.y39{bottom:787.245000px;}
.y13d{bottom:788.145000px;}
.y113{bottom:789.765000px;}
.yb4{bottom:790.845000px;}
.y91{bottom:792.285000px;}
.y16c{bottom:794.265000px;}
.ydb{bottom:799.125000px;}
.yb{bottom:803.805000px;}
.y65{bottom:804.525000px;}
.y38{bottom:804.885000px;}
.y13c{bottom:805.785000px;}
.y16b{bottom:811.905000px;}
.y18c{bottom:813.885000px;}
.y112{bottom:817.125000px;}
.yb3{bottom:818.205000px;}
.y90{bottom:819.645000px;}
.y37{bottom:822.525000px;}
.y13b{bottom:823.245000px;}
.yda{bottom:826.485000px;}
.y18b{bottom:831.525000px;}
.y16a{bottom:838.725000px;}
.y64{bottom:839.985000px;}
.y13a{bottom:840.885000px;}
.ya{bottom:843.585000px;}
.y110{bottom:844.485000px;}
.yb2{bottom:845.565000px;}
.y8f{bottom:847.005000px;}
.y19b{bottom:848.985000px;}
.y18a{bottom:849.165000px;}
.yd8{bottom:853.845000px;}
.y63{bottom:857.625000px;}
.y9{bottom:857.805000px;}
.y36{bottom:857.985000px;}
.y139{bottom:858.570000px;}
.y19a{bottom:866.670000px;}
.yb1{bottom:872.970000px;}
.y10f{bottom:873.510000px;}
.y8e{bottom:874.410000px;}
.y62{bottom:875.310000px;}
.y35{bottom:875.670000px;}
.y169{bottom:876.030000px;}
.y138{bottom:876.210000px;}
.y8{bottom:879.630000px;}
.yd7{bottom:881.070000px;}
.y34{bottom:893.310000px;}
.y137{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.yb0{bottom:900.150000px;}
.y8b{bottom:901.770000px;}
.yd6{bottom:908.430000px;}
.y61{bottom:910.770000px;}
.y33{bottom:910.950000px;}
.y136{bottom:911.310000px;}
.y10e{bottom:922.290000px;}
.y168{bottom:924.450000px;}
.yaf{bottom:927.510000px;}
.y32{bottom:928.410000px;}
.y135{bottom:928.950000px;}
.y8d{bottom:929.130000px;}
.y6{bottom:930.030000px;}
.yd5{bottom:935.790000px;}
.y189{bottom:937.410000px;}
.y167{bottom:942.090000px;}
.y31{bottom:946.050000px;}
.y134{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yae{bottom:954.870000px;}
.y60{bottom:955.050000px;}
.y10d{bottom:957.930000px;}
.y166{bottom:959.550000px;}
.yd4{bottom:963.150000px;}
.y30{bottom:963.690000px;}
.y133{bottom:964.050000px;}
.y188{bottom:972.690000px;}
.y165{bottom:977.190000px;}
.y8a{bottom:977.730000px;}
.y132{bottom:981.690000px;}
.yad{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y1ae{bottom:990.150000px;}
.yd3{bottom:990.510000px;}
.y5f{bottom:990.690000px;}
.y10c{bottom:993.570000px;}
.y164{bottom:994.830000px;}
.y2f{bottom:999.150000px;}
.y89{bottom:1004.370000px;}
.y5e{bottom:1008.150000px;}
.y10b{bottom:1008.510000px;}
.yac{bottom:1009.590000px;}
.y3{bottom:1012.290000px;}
.y163{bottom:1012.470000px;}
.y2e{bottom:1016.790000px;}
.yd2{bottom:1017.870000px;}
.y86{bottom:1019.310000px;}
.y5d{bottom:1025.790000px;}
.y162{bottom:1029.930000px;}
.y2d{bottom:1034.430000px;}
.y109{bottom:1035.870000px;}
.yab{bottom:1036.950000px;}
.y5c{bottom:1043.430000px;}
.yd1{bottom:1045.230000px;}
.y2c{bottom:1052.070000px;}
.y161{bottom:1056.750000px;}
.y187{bottom:1060.890000px;}
.y5b{bottom:1061.070000px;}
.y85{bottom:1064.310000px;}
.y131{bottom:1069.890000px;}
.yd0{bottom:1072.410000px;}
.y5a{bottom:1078.530000px;}
.y2b{bottom:1087.530000px;}
.y84{bottom:1091.490000px;}
.y59{bottom:1096.170000px;}
.ycf{bottom:1099.770000px;}
.y2a{bottom:1105.170000px;}
.y58{bottom:1113.810000px;}
.y29{bottom:1122.810000px;}
.ycd{bottom:1127.130000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h16{height:17.460000px;}
.h10{height:26.460000px;}
.h14{height:26.496000px;}
.hf{height:26.640000px;}
.h13{height:26.676000px;}
.h17{height:27.540000px;}
.h18{height:28.296000px;}
.h2{height:29.717578px;}
.h6{height:36.878203px;}
.h3{height:39.468516px;}
.h15{height:41.974453px;}
.h11{height:44.100000px;}
.hd{height:48.600000px;}
.he{height:48.816000px;}
.hb{height:50.597578px;}
.h7{height:51.998203px;}
.h12{height:53.820000px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h19{height:61.423863px;}
.ha{height:62.211094px;}
.hc{height:64.080000px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:39.636000px;}
.w1e{width:47.880000px;}
.w20{width:48.060000px;}
.w1f{width:48.636000px;}
.w1d{width:51.696000px;}
.w4{width:54.000000px;}
.w22{width:64.620000px;}
.w14{width:68.220000px;}
.w12{width:68.256000px;}
.w26{width:76.536000px;}
.w8{width:80.856000px;}
.w27{width:88.020000px;}
.w25{width:93.420000px;}
.w7{width:96.840000px;}
.w23{width:108.576000px;}
.w1b{width:111.420000px;}
.w15{width:111.636000px;}
.we{width:122.256000px;}
.w24{width:123.156000px;}
.w6{width:136.836000px;}
.wc{width:142.056000px;}
.wb{width:153.570000px;}
.w11{width:185.430000px;}
.w18{width:186.870000px;}
.w9{width:193.890000px;}
.w13{width:194.430000px;}
.w1c{width:194.790000px;}
.w10{width:208.155000px;}
.wd{width:245.415000px;}
.w17{width:261.975000px;}
.w1a{width:262.470000px;}
.w16{width:263.370000px;}
.w5{width:346.215000px;}
.wf{width:394.305000px;}
.wa{width:406.695000px;}
.w19{width:449.565000px;}
.w21{width:558.105000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:4.860000px;}
.xa{left:7.740000px;}
.x1e{left:10.800000px;}
.x1{left:68.040000px;}
.x1b{left:75.599987px;}
.x1a{left:85.175987px;}
.x5{left:108.756000px;}
.x2b{left:111.275987px;}
.x6{left:163.110000px;}
.x25{left:167.610000px;}
.x19{left:207.209987px;}
.x2{left:210.989987px;}
.x16{left:221.970000px;}
.x12{left:224.310000px;}
.x26{left:233.130000px;}
.x10{left:249.510000px;}
.xd{left:252.570000px;}
.xb{left:263.415000px;}
.x1f{left:267.015000px;}
.x13{left:293.295000px;}
.x27{left:342.435000px;}
.x1c{left:362.774987px;}
.x20{left:379.155000px;}
.xe{left:395.355000px;}
.x22{left:427.755000px;}
.x11{left:458.385000px;}
.x28{left:466.305000px;}
.x23{left:477.285000px;}
.x1d{left:479.985000px;}
.x17{left:484.665000px;}
.x14{left:488.445000px;}
.x7{left:509.685000px;}
.xf{left:518.505000px;}
.x24{left:525.885000px;}
.x15{left:557.385000px;}
.x29{left:560.445000px;}
.x21{left:574.665000px;}
.x2a{left:637.710000px;}
.x8{left:646.890000px;}
.xc{left:671.010000px;}
.x9{left:744.090000px;}
.x3{left:800.429987px;}
.x18{left:813.419987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls27{letter-spacing:-0.650667pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls1e{letter-spacing:-0.231467pt;}
.ls1c{letter-spacing:-0.166400pt;}
.ls26{letter-spacing:-0.163733pt;}
.ls19{letter-spacing:-0.140267pt;}
.ls34{letter-spacing:-0.107733pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.046720pt;}
.lsc{letter-spacing:-0.041600pt;}
.ls2f{letter-spacing:-0.034560pt;}
.lse{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls28{letter-spacing:0.052480pt;}
.ls1a{letter-spacing:0.053760pt;}
.ls31{letter-spacing:0.056533pt;}
.ls22{letter-spacing:0.069333pt;}
.ls8{letter-spacing:0.089600pt;}
.ls1f{letter-spacing:0.112533pt;}
.ls4{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.188160pt;}
.ls18{letter-spacing:0.188267pt;}
.ls21{letter-spacing:0.199467pt;}
.ls20{letter-spacing:0.265600pt;}
.ls1d{letter-spacing:0.274667pt;}
.ls35{letter-spacing:0.284160pt;}
.ls9{letter-spacing:0.309333pt;}
.ls1{letter-spacing:0.312320pt;}
.lsb{letter-spacing:0.317333pt;}
.ls32{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls1b{letter-spacing:0.473600pt;}
.ls12{letter-spacing:0.476160pt;}
.ls2d{letter-spacing:0.476267pt;}
.ls16{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.592640pt;}
.ls14{letter-spacing:0.629333pt;}
.ls24{letter-spacing:0.630400pt;}
.ls0{letter-spacing:0.640000pt;}
.ls25{letter-spacing:1.753600pt;}
.ls2b{letter-spacing:2.393600pt;}
.ls2e{letter-spacing:2.394667pt;}
.ls2c{letter-spacing:3.673600pt;}
.ls11{letter-spacing:4.313600pt;}
.ls2a{letter-spacing:5.593600pt;}
.ls29{letter-spacing:6.233600pt;}
.ls23{letter-spacing:9.433600pt;}
.ls33{letter-spacing:42.192640pt;}
.ls30{letter-spacing:72.272640pt;}
.ws3{word-spacing:-16.473600pt;}
.wsc{word-spacing:-13.296533pt;}
.ws4{word-spacing:-12.953600pt;}
.wse{word-spacing:-12.278400pt;}
.ws7{word-spacing:-12.003733pt;}
.ws10{word-spacing:-11.874667pt;}
.ws12{word-spacing:-11.798933pt;}
.ws14{word-spacing:-11.755733pt;}
.ws15{word-spacing:-11.742933pt;}
.ws6{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.639680pt;}
.wsd{word-spacing:-11.639040pt;}
.ws16{word-spacing:-11.578667pt;}
.ws11{word-spacing:-11.546133pt;}
.ws13{word-spacing:-9.433600pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:2.268480pt;}
._12{margin-left:-4.833920pt;}
._2{margin-left:-3.594165pt;}
._3{margin-left:-2.282315pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.274667pt;}
._4{width:2.169929pt;}
._8{width:3.877866pt;}
._10{width:4.770244pt;}
._c{width:5.965289pt;}
._6{width:7.269622pt;}
._11{width:8.276117pt;}
._5{width:9.420800pt;}
._7{width:10.713600pt;}
._9{width:12.735361pt;}
._f{width:13.816634pt;}
._a{width:14.767467pt;}
._b{width:15.936530pt;}
._e{width:16.839466pt;}
._d{width:17.795200pt;}
._15{width:23.107627pt;}
._14{width:24.010240pt;}
._16{width:25.715413pt;}
._13{width:150.301440pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:2.880000pt;}
.yaa{bottom:6.874667pt;}
.y78{bottom:6.880000pt;}
.yd9{bottom:6.920000pt;}
.y7a{bottom:7.040000pt;}
.yce{bottom:7.066667pt;}
.y7d{bottom:7.080000pt;}
.y10a{bottom:7.840000pt;}
.y111{bottom:8.480000pt;}
.y75{bottom:15.840000pt;}
.ye7{bottom:16.800000pt;}
.y88{bottom:22.560000pt;}
.y87{bottom:22.720000pt;}
.y73{bottom:23.680000pt;}
.y77{bottom:26.560000pt;}
.y7c{bottom:26.760000pt;}
.y8c{bottom:31.200000pt;}
.y74{bottom:31.520000pt;}
.y2{bottom:65.152000pt;}
.y27{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y130{bottom:104.192000pt;}
.y160{bottom:105.792000pt;}
.y57{bottom:107.232000pt;}
.y186{bottom:119.072000pt;}
.ycc{bottom:119.712000pt;}
.y12f{bottom:119.872000pt;}
.yf3{bottom:120.192000pt;}
.y15f{bottom:121.472000pt;}
.y25{bottom:122.752000pt;}
.ya9{bottom:126.592000pt;}
.y106{bottom:134.266667pt;}
.y185{bottom:134.746667pt;}
.y12e{bottom:135.386667pt;}
.y15e{bottom:136.986667pt;}
.y24{bottom:138.426667pt;}
.y56{bottom:138.906667pt;}
.y199{bottom:142.746667pt;}
.ycb{bottom:144.026667pt;}
.yf2{bottom:144.346667pt;}
.ya8{bottom:150.906667pt;}
.y12d{bottom:151.066667pt;}
.y83{bottom:151.226667pt;}
.y55{bottom:154.586667pt;}
.y184{bottom:158.426667pt;}
.y23{bottom:162.266667pt;}
.y105{bottom:165.946667pt;}
.y12c{bottom:166.746667pt;}
.y82{bottom:166.906667pt;}
.yca{bottom:168.346667pt;}
.yf1{bottom:168.666667pt;}
.y54{bottom:170.106667pt;}
.y183{bottom:174.106667pt;}
.ya7{bottom:175.066667pt;}
.y81{bottom:182.586667pt;}
.y15d{bottom:184.346667pt;}
.y1ad{bottom:189.786667pt;}
.yc9{bottom:192.666667pt;}
.yf0{bottom:192.986667pt;}
.y53{bottom:193.786667pt;}
.y104{bottom:197.466667pt;}
.y182{bottom:197.626667pt;}
.y80{bottom:198.106667pt;}
.y12b{bottom:198.266667pt;}
.ya6{bottom:199.386667pt;}
.y15c{bottom:199.866667pt;}
.y22{bottom:205.466667pt;}
.y181{bottom:213.306667pt;}
.y7f{bottom:213.786667pt;}
.y12a{bottom:213.946667pt;}
.y15b{bottom:215.546667pt;}
.yc8{bottom:216.986667pt;}
.yef{bottom:217.306667pt;}
.ya5{bottom:223.706667pt;}
.y52{bottom:225.306667pt;}
.y7e{bottom:227.066667pt;}
.y103{bottom:228.666667pt;}
.y180{bottom:228.986667pt;}
.y129{bottom:229.626667pt;}
.y15a{bottom:231.226667pt;}
.y21{bottom:238.426667pt;}
.y51{bottom:240.986667pt;}
.y102{bottom:241.146667pt;}
.yc7{bottom:241.306667pt;}
.yee{bottom:241.626667pt;}
.y1ac{bottom:244.666667pt;}
.y128{bottom:245.306667pt;}
.y159{bottom:246.906667pt;}
.ya4{bottom:248.026667pt;}
.y17f{bottom:252.506667pt;}
.y101{bottom:253.626667pt;}
.y20{bottom:254.106667pt;}
.y50{bottom:256.666667pt;}
.y127{bottom:260.826667pt;}
.y158{bottom:262.426667pt;}
.yc6{bottom:265.466667pt;}
.yed{bottom:265.946667pt;}
.y17e{bottom:268.186667pt;}
.y1f{bottom:269.786667pt;}
.y7b{bottom:270.906667pt;}
.y4f{bottom:272.346667pt;}
.y126{bottom:276.546667pt;}
.y157{bottom:278.146667pt;}
.y100{bottom:282.786667pt;}
.y17d{bottom:283.906667pt;}
.y4e{bottom:288.066667pt;}
.yc5{bottom:289.826667pt;}
.yec{bottom:290.306667pt;}
.y198{bottom:291.906667pt;}
.y125{bottom:292.226667pt;}
.y156{bottom:293.826667pt;}
.ya3{bottom:296.706667pt;}
.y1e{bottom:301.346667pt;}
.y4d{bottom:303.586667pt;}
.y17c{bottom:307.426667pt;}
.y197{bottom:307.586667pt;}
.y124{bottom:307.746667pt;}
.y155{bottom:309.346667pt;}
.yff{bottom:311.266667pt;}
.yc4{bottom:314.146667pt;}
.yeb{bottom:314.466667pt;}
.y79{bottom:314.946667pt;}
.y1d{bottom:317.026667pt;}
.y4c{bottom:319.266667pt;}
.y17b{bottom:323.106667pt;}
.y196{bottom:323.266667pt;}
.y123{bottom:323.426667pt;}
.y154{bottom:325.026667pt;}
.y1c{bottom:332.706667pt;}
.y4b{bottom:334.946667pt;}
.yc3{bottom:338.466667pt;}
.yea{bottom:338.786667pt;}
.y122{bottom:339.106667pt;}
.ya2{bottom:339.906667pt;}
.y153{bottom:340.706667pt;}
.y17a{bottom:346.786667pt;}
.y1b{bottom:348.226667pt;}
.y4a{bottom:350.466667pt;}
.y1ab{bottom:354.466667pt;}
.y121{bottom:354.626667pt;}
.y152{bottom:356.226667pt;}
.y76{bottom:358.946667pt;}
.y179{bottom:362.466667pt;}
.yc2{bottom:362.786667pt;}
.ye9{bottom:363.106667pt;}
.y1a{bottom:363.906667pt;}
.y49{bottom:366.146667pt;}
.y120{bottom:370.306667pt;}
.ya1{bottom:371.586667pt;}
.y151{bottom:371.906667pt;}
.y1aa{bottom:377.986667pt;}
.y195{bottom:378.146667pt;}
.y19{bottom:379.586667pt;}
.y178{bottom:385.986667pt;}
.yc1{bottom:387.106667pt;}
.ya0{bottom:387.266667pt;}
.ye8{bottom:387.426667pt;}
.y150{bottom:387.586667pt;}
.y48{bottom:389.666667pt;}
.y1a9{bottom:393.666667pt;}
.y11f{bottom:394.146667pt;}
.y18{bottom:395.266667pt;}
.y177{bottom:401.666667pt;}
.y72{bottom:402.786667pt;}
.y9f{bottom:402.946667pt;}
.y14f{bottom:403.266667pt;}
.yc0{bottom:411.426667pt;}
.ye6{bottom:411.746667pt;}
.y1a8{bottom:417.346667pt;}
.y9e{bottom:418.466667pt;}
.y14e{bottom:418.786667pt;}
.y107{bottom:420.546667pt;}
.y47{bottom:421.506667pt;}
.y176{bottom:425.346667pt;}
.y17{bottom:426.786667pt;}
.y1a7{bottom:433.026667pt;}
.y9d{bottom:434.146667pt;}
.y14d{bottom:434.466667pt;}
.y11e{bottom:434.786667pt;}
.ybf{bottom:435.586667pt;}
.y194{bottom:441.026667pt;}
.y16{bottom:442.466667pt;}
.y175{bottom:448.866667pt;}
.y14c{bottom:450.146667pt;}
.y193{bottom:456.546667pt;}
.y15{bottom:458.146667pt;}
.y11d{bottom:459.106667pt;}
.ybe{bottom:459.906667pt;}
.y46{bottom:464.546667pt;}
.y9c{bottom:465.826667pt;}
.y1a6{bottom:472.226667pt;}
.y14{bottom:473.666667pt;}
.ye5{bottom:474.626667pt;}
.yfe{bottom:476.386667pt;}
.y71{bottom:479.426667pt;}
.y45{bottom:480.226667pt;}
.y9b{bottom:481.506667pt;}
.y14b{bottom:481.666667pt;}
.y11c{bottom:483.426667pt;}
.ybd{bottom:484.226667pt;}
.y1a5{bottom:487.906667pt;}
.y174{bottom:488.226667pt;}
.y13{bottom:489.346667pt;}
.yfd{bottom:492.066667pt;}
.y192{bottom:495.906667pt;}
.y9a{bottom:497.026667pt;}
.y14a{bottom:497.346667pt;}
.y173{bottom:503.906667pt;}
.ye4{bottom:506.306667pt;}
.yfc{bottom:507.586667pt;}
.y11b{bottom:507.746667pt;}
.ybc{bottom:508.546667pt;}
.y70{bottom:511.106667pt;}
.y1a4{bottom:511.426667pt;}
.y44{bottom:511.746667pt;}
.y99{bottom:512.706667pt;}
.y149{bottom:513.026667pt;}
.y172{bottom:519.453333pt;}
.y12{bottom:520.893333pt;}
.ye3{bottom:522.013333pt;}
.y6f{bottom:526.813333pt;}
.y1a3{bottom:527.133333pt;}
.y43{bottom:527.453333pt;}
.y98{bottom:528.413333pt;}
.y148{bottom:528.573333pt;}
.y11a{bottom:531.933333pt;}
.ybb{bottom:532.893333pt;}
.y191{bottom:535.133333pt;}
.y11{bottom:536.573333pt;}
.ye2{bottom:537.693333pt;}
.yfb{bottom:539.293333pt;}
.y6e{bottom:542.493333pt;}
.y1a2{bottom:542.813333pt;}
.y42{bottom:543.133333pt;}
.y97{bottom:543.933333pt;}
.y147{bottom:544.253333pt;}
.y190{bottom:550.813333pt;}
.ye1{bottom:553.213333pt;}
.yfa{bottom:554.973333pt;}
.y119{bottom:556.253333pt;}
.yba{bottom:557.213333pt;}
.y1a1{bottom:558.493333pt;}
.y41{bottom:558.813333pt;}
.y146{bottom:559.933333pt;}
.y1b2{bottom:566.333333pt;}
.y171{bottom:566.653333pt;}
.y96{bottom:567.613333pt;}
.y10{bottom:568.253333pt;}
.ye0{bottom:568.893333pt;}
.yf9{bottom:570.653333pt;}
.y6d{bottom:574.013333pt;}
.y18f{bottom:574.333333pt;}
.y40{bottom:574.493333pt;}
.y145{bottom:575.453333pt;}
.y118{bottom:580.573333pt;}
.yb9{bottom:581.533333pt;}
.y1a0{bottom:582.013333pt;}
.y95{bottom:583.293333pt;}
.yf{bottom:583.933333pt;}
.yf8{bottom:586.173333pt;}
.y6c{bottom:589.693333pt;}
.y18e{bottom:590.013333pt;}
.y170{bottom:590.493333pt;}
.y144{bottom:591.133333pt;}
.ydf{bottom:592.413333pt;}
.y19f{bottom:597.693333pt;}
.yf7{bottom:601.853333pt;}
.y117{bottom:604.893333pt;}
.y6b{bottom:605.373333pt;}
.yb8{bottom:605.693333pt;}
.y3f{bottom:606.013333pt;}
.y143{bottom:606.813333pt;}
.ye{bottom:607.773333pt;}
.y19e{bottom:613.373333pt;}
.y94{bottom:614.973333pt;}
.yf6{bottom:617.533333pt;}
.y1b1{bottom:621.373333pt;}
.y3e{bottom:621.693333pt;}
.y142{bottom:622.493333pt;}
.yde{bottom:624.093333pt;}
.y116{bottom:629.213333pt;}
.yb7{bottom:630.013333pt;}
.y16f{bottom:633.533333pt;}
.y6a{bottom:636.893333pt;}
.y3d{bottom:637.373333pt;}
.y141{bottom:638.013333pt;}
.yf5{bottom:641.053333pt;}
.y18d{bottom:644.893333pt;}
.yd{bottom:650.653333pt;}
.y69{bottom:652.573333pt;}
.y3c{bottom:652.893333pt;}
.y115{bottom:653.533333pt;}
.y140{bottom:653.693333pt;}
.yb6{bottom:654.333333pt;}
.y93{bottom:655.773333pt;}
.y16e{bottom:657.533333pt;}
.y1b0{bottom:660.573333pt;}
.ydd{bottom:661.693333pt;}
.y68{bottom:668.253333pt;}
.y3b{bottom:668.573333pt;}
.y13f{bottom:669.373333pt;}
.yf4{bottom:672.733333pt;}
.y19d{bottom:676.093333pt;}
.y1af{bottom:676.253333pt;}
.y114{bottom:677.853333pt;}
.yb5{bottom:678.653333pt;}
.y92{bottom:679.933333pt;}
.yc{bottom:682.493333pt;}
.y67{bottom:683.773333pt;}
.y3a{bottom:684.253333pt;}
.y13e{bottom:684.893333pt;}
.ydc{bottom:686.013333pt;}
.y16d{bottom:690.333333pt;}
.y19c{bottom:691.773333pt;}
.y66{bottom:699.453333pt;}
.y39{bottom:699.773333pt;}
.y13d{bottom:700.573333pt;}
.y113{bottom:702.013333pt;}
.yb4{bottom:702.973333pt;}
.y91{bottom:704.253333pt;}
.y16c{bottom:706.013333pt;}
.ydb{bottom:710.333333pt;}
.yb{bottom:714.493333pt;}
.y65{bottom:715.133333pt;}
.y38{bottom:715.453333pt;}
.y13c{bottom:716.253333pt;}
.y16b{bottom:721.693333pt;}
.y18c{bottom:723.453333pt;}
.y112{bottom:726.333333pt;}
.yb3{bottom:727.293333pt;}
.y90{bottom:728.573333pt;}
.y37{bottom:731.133333pt;}
.y13b{bottom:731.773333pt;}
.yda{bottom:734.653333pt;}
.y18b{bottom:739.133333pt;}
.y16a{bottom:745.533333pt;}
.y64{bottom:746.653333pt;}
.y13a{bottom:747.453333pt;}
.ya{bottom:749.853333pt;}
.y110{bottom:750.653333pt;}
.yb2{bottom:751.613333pt;}
.y8f{bottom:752.893333pt;}
.y19b{bottom:754.653333pt;}
.y18a{bottom:754.813333pt;}
.yd8{bottom:758.973333pt;}
.y63{bottom:762.333333pt;}
.y9{bottom:762.493333pt;}
.y36{bottom:762.653333pt;}
.y139{bottom:763.173333pt;}
.y19a{bottom:770.373333pt;}
.yb1{bottom:775.973333pt;}
.y10f{bottom:776.453333pt;}
.y8e{bottom:777.253333pt;}
.y62{bottom:778.053333pt;}
.y35{bottom:778.373333pt;}
.y169{bottom:778.693333pt;}
.y138{bottom:778.853333pt;}
.y8{bottom:781.893333pt;}
.yd7{bottom:783.173333pt;}
.y34{bottom:794.053333pt;}
.y137{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.yb0{bottom:800.133333pt;}
.y8b{bottom:801.573333pt;}
.yd6{bottom:807.493333pt;}
.y61{bottom:809.573333pt;}
.y33{bottom:809.733333pt;}
.y136{bottom:810.053333pt;}
.y10e{bottom:819.813333pt;}
.y168{bottom:821.733333pt;}
.yaf{bottom:824.453333pt;}
.y32{bottom:825.253333pt;}
.y135{bottom:825.733333pt;}
.y8d{bottom:825.893333pt;}
.y6{bottom:826.693333pt;}
.yd5{bottom:831.813333pt;}
.y189{bottom:833.253333pt;}
.y167{bottom:837.413333pt;}
.y31{bottom:840.933333pt;}
.y134{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yae{bottom:848.773333pt;}
.y60{bottom:848.933333pt;}
.y10d{bottom:851.493333pt;}
.y166{bottom:852.933333pt;}
.yd4{bottom:856.133333pt;}
.y30{bottom:856.613333pt;}
.y133{bottom:856.933333pt;}
.y188{bottom:864.613333pt;}
.y165{bottom:868.613333pt;}
.y8a{bottom:869.093333pt;}
.y132{bottom:872.613333pt;}
.yad{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y1ae{bottom:880.133333pt;}
.yd3{bottom:880.453333pt;}
.y5f{bottom:880.613333pt;}
.y10c{bottom:883.173333pt;}
.y164{bottom:884.293333pt;}
.y2f{bottom:888.133333pt;}
.y89{bottom:892.773333pt;}
.y5e{bottom:896.133333pt;}
.y10b{bottom:896.453333pt;}
.yac{bottom:897.413333pt;}
.y3{bottom:899.813333pt;}
.y163{bottom:899.973333pt;}
.y2e{bottom:903.813333pt;}
.yd2{bottom:904.773333pt;}
.y86{bottom:906.053333pt;}
.y5d{bottom:911.813333pt;}
.y162{bottom:915.493333pt;}
.y2d{bottom:919.493333pt;}
.y109{bottom:920.773333pt;}
.yab{bottom:921.733333pt;}
.y5c{bottom:927.493333pt;}
.yd1{bottom:929.093333pt;}
.y2c{bottom:935.173333pt;}
.y161{bottom:939.333333pt;}
.y187{bottom:943.013333pt;}
.y5b{bottom:943.173333pt;}
.y85{bottom:946.053333pt;}
.y131{bottom:951.013333pt;}
.yd0{bottom:953.253333pt;}
.y5a{bottom:958.693333pt;}
.y2b{bottom:966.693333pt;}
.y84{bottom:970.213333pt;}
.y59{bottom:974.373333pt;}
.ycf{bottom:977.573333pt;}
.y2a{bottom:982.373333pt;}
.y58{bottom:990.053333pt;}
.y29{bottom:998.053333pt;}
.ycd{bottom:1001.893333pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h16{height:15.520000pt;}
.h10{height:23.520000pt;}
.h14{height:23.552000pt;}
.hf{height:23.680000pt;}
.h13{height:23.712000pt;}
.h17{height:24.480000pt;}
.h18{height:25.152000pt;}
.h2{height:26.415625pt;}
.h6{height:32.780625pt;}
.h3{height:35.083125pt;}
.h15{height:37.310625pt;}
.h11{height:39.200000pt;}
.hd{height:43.200000pt;}
.he{height:43.392000pt;}
.hb{height:44.975625pt;}
.h7{height:46.220625pt;}
.h12{height:47.840000pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h19{height:54.598989pt;}
.ha{height:55.298750pt;}
.hc{height:56.960000pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:35.232000pt;}
.w1e{width:42.560000pt;}
.w20{width:42.720000pt;}
.w1f{width:43.232000pt;}
.w1d{width:45.952000pt;}
.w4{width:48.000000pt;}
.w22{width:57.440000pt;}
.w14{width:60.640000pt;}
.w12{width:60.672000pt;}
.w26{width:68.032000pt;}
.w8{width:71.872000pt;}
.w27{width:78.240000pt;}
.w25{width:83.040000pt;}
.w7{width:86.080000pt;}
.w23{width:96.512000pt;}
.w1b{width:99.040000pt;}
.w15{width:99.232000pt;}
.we{width:108.672000pt;}
.w24{width:109.472000pt;}
.w6{width:121.632000pt;}
.wc{width:126.272000pt;}
.wb{width:136.506667pt;}
.w11{width:164.826667pt;}
.w18{width:166.106667pt;}
.w9{width:172.346667pt;}
.w13{width:172.826667pt;}
.w1c{width:173.146667pt;}
.w10{width:185.026667pt;}
.wd{width:218.146667pt;}
.w17{width:232.866667pt;}
.w1a{width:233.306667pt;}
.w16{width:234.106667pt;}
.w5{width:307.746667pt;}
.wf{width:350.493333pt;}
.wa{width:361.506667pt;}
.w19{width:399.613333pt;}
.w21{width:496.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:4.320000pt;}
.xa{left:6.880000pt;}
.x1e{left:9.600000pt;}
.x1{left:60.480000pt;}
.x1b{left:67.199988pt;}
.x1a{left:75.711988pt;}
.x5{left:96.672000pt;}
.x2b{left:98.911988pt;}
.x6{left:144.986667pt;}
.x25{left:148.986667pt;}
.x19{left:184.186655pt;}
.x2{left:187.546655pt;}
.x16{left:197.306667pt;}
.x12{left:199.386667pt;}
.x26{left:207.226667pt;}
.x10{left:221.786667pt;}
.xd{left:224.506667pt;}
.xb{left:234.146667pt;}
.x1f{left:237.346667pt;}
.x13{left:260.706667pt;}
.x27{left:304.386667pt;}
.x1c{left:322.466655pt;}
.x20{left:337.026667pt;}
.xe{left:351.426667pt;}
.x22{left:380.226667pt;}
.x11{left:407.453333pt;}
.x28{left:414.493333pt;}
.x23{left:424.253333pt;}
.x1d{left:426.653333pt;}
.x17{left:430.813333pt;}
.x14{left:434.173333pt;}
.x7{left:453.053333pt;}
.xf{left:460.893333pt;}
.x24{left:467.453333pt;}
.x15{left:495.453333pt;}
.x29{left:498.173333pt;}
.x21{left:510.813333pt;}
.x2a{left:566.853333pt;}
.x8{left:575.013333pt;}
.xc{left:596.453333pt;}
.x9{left:661.413333pt;}
.x3{left:711.493322pt;}
.x18{left:723.039988pt;}
}




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