
    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_1187d4d2991be15830de6a26.woff')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_1fc024c840dcff6877fec593.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_be42719dcac079c916d9976f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_05800c125ec889eb33220dd0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_890e1dea82da94011961020a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_f637e72595b3e79a06ea978f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_83314a79b99866e8b381ec0e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_cd19b802844b5759eafde091.woff')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_8e61a89a835beaa9b929d030.woff')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.206000px;}
.lsb{letter-spacing:-1.068000px;}
.lse{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.768000px;}
.lsf{letter-spacing:-0.732000px;}
.lsa{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.454800px;}
.ls9{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.305400px;}
.ls22{letter-spacing:-0.152400px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.152400px;}
.ls8{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls10{letter-spacing:0.708000px;}
.ls11{letter-spacing:0.720000px;}
.ls13{letter-spacing:5.040000px;}
.ls1c{letter-spacing:7.920000px;}
.ls1b{letter-spacing:40.637280px;}
.ls19{letter-spacing:44.957280px;}
.ls18{letter-spacing:49.265280px;}
.ls2{letter-spacing:51.996000px;}
.ls14{letter-spacing:63.838560px;}
.ls17{letter-spacing:94.061280px;}
.ls1d{letter-spacing:99.821280px;}
.ls1f{letter-spacing:104.141280px;}
.ls16{letter-spacing:125.741280px;}
.ls20{letter-spacing:128.621280px;}
.ls12{letter-spacing:151.661280px;}
.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;}
}
.ws13{word-spacing:-60.480000px;}
.ws14{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.712400px;}
.ws11{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws16{word-spacing:-16.407600px;}
.ws15{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsf{word-spacing:-12.600000px;}
.wsd{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.ws10{word-spacing:0.000000px;}
._13{margin-left:-5.550960px;}
._12{margin-left:-4.371840px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._4{width:2.505600px;}
._7{width:3.968640px;}
._8{width:4.993920px;}
._d{width:6.981120px;}
._c{width:8.239680px;}
._17{width:9.763200px;}
._6{width:11.008800px;}
._2{width:12.068640px;}
._1b{width:13.314240px;}
._18{width:14.634960px;}
._5{width:16.128000px;}
._1e{width:17.589840px;}
._b{width:18.613440px;}
._a{width:19.699200px;}
._16{width:21.169680px;}
._21{width:22.507200px;}
._23{width:26.279040px;}
._1d{width:27.366480px;}
._1c{width:29.808000px;}
._22{width:31.330320px;}
._19{width:42.194880px;}
._1a{width:43.354320px;}
._11{width:49.017600px;}
._10{width:50.394240px;}
._f{width:74.764320px;}
._e{width:75.934080px;}
._15{width:121.285440px;}
._14{width:122.437440px;}
._9{width:132.546240px;}
._1f{width:134.869440px;}
._20{width:284.398080px;}
.fc6{color:rgb(46,116,181);}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y106{bottom:3.594000px;}
.y101{bottom:3.600000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.yfe{bottom:5.760000px;}
.y93{bottom:6.480000px;}
.y90{bottom:7.560000px;}
.ya8{bottom:8.280000px;}
.y9c{bottom:8.640000px;}
.y99{bottom:9.000000px;}
.y94{bottom:9.360000px;}
.ya9{bottom:12.600000px;}
.yab{bottom:12.960000px;}
.y96{bottom:13.680000px;}
.y9a{bottom:14.040000px;}
.yae{bottom:14.400000px;}
.y91{bottom:17.280000px;}
.y9e{bottom:17.640000px;}
.ya1{bottom:18.000000px;}
.ya5{bottom:18.360000px;}
.yc4{bottom:18.390000px;}
.yf0{bottom:19.080000px;}
.y110{bottom:19.110000px;}
.yee{bottom:19.440000px;}
.y104{bottom:19.485000px;}
.y97{bottom:23.760000px;}
.y114{bottom:25.560000px;}
.y8f{bottom:26.640000px;}
.yec{bottom:29.520000px;}
.yeb{bottom:29.880000px;}
.y8e{bottom:30.600000px;}
.y100{bottom:31.320000px;}
.y102{bottom:31.680000px;}
.y9f{bottom:32.040000px;}
.ya2{bottom:32.400000px;}
.ya6{bottom:32.760000px;}
.y113{bottom:44.670000px;}
.ye9{bottom:55.800000px;}
.yea{bottom:56.160000px;}
.ye7{bottom:63.360000px;}
.y115{bottom:66.630000px;}
.ye8{bottom:82.080000px;}
.y3{bottom:82.116000px;}
.ye6{bottom:82.440000px;}
.y6{bottom:97.596000px;}
.y69{bottom:120.276000px;}
.y159{bottom:123.156000px;}
.y84{bottom:123.876000px;}
.y131{bottom:125.676000px;}
.y122{bottom:128.556000px;}
.y107{bottom:131.796000px;}
.ye2{bottom:138.636000px;}
.ycb{bottom:140.076000px;}
.y33{bottom:140.436000px;}
.y83{bottom:142.956000px;}
.y130{bottom:144.756000px;}
.y105{bottom:147.996000px;}
.yaf{bottom:155.550000px;}
.y121{bottom:156.630000px;}
.ye1{bottom:157.710000px;}
.yca{bottom:159.150000px;}
.y32{bottom:159.510000px;}
.y68{bottom:160.230000px;}
.y158{bottom:163.110000px;}
.yad{bottom:171.750000px;}
.ye0{bottom:176.790000px;}
.y31{bottom:178.590000px;}
.y103{bottom:180.750000px;}
.y157{bottom:182.190000px;}
.y82{bottom:182.550000px;}
.y120{bottom:184.710000px;}
.ydf{bottom:195.870000px;}
.y30{bottom:197.715000px;}
.yc9{bottom:199.155000px;}
.y67{bottom:200.235000px;}
.y156{bottom:200.955000px;}
.y12f{bottom:203.835000px;}
.y11f{bottom:212.835000px;}
.yac{bottom:214.995000px;}
.y2f{bottom:216.435000px;}
.y16a{bottom:216.795000px;}
.yc8{bottom:218.235000px;}
.y66{bottom:219.315000px;}
.y155{bottom:220.035000px;}
.y81{bottom:222.915000px;}
.y11e{bottom:231.915000px;}
.y2e{bottom:235.515000px;}
.yc7{bottom:237.315000px;}
.y65{bottom:238.035000px;}
.y154{bottom:239.115000px;}
.y80{bottom:241.995000px;}
.yff{bottom:245.235000px;}
.y2d{bottom:254.595000px;}
.yc6{bottom:256.395000px;}
.y169{bottom:256.755000px;}
.y64{bottom:257.115000px;}
.yaa{bottom:257.835000px;}
.y153{bottom:258.195000px;}
.y11d{bottom:259.995000px;}
.y7f{bottom:260.715000px;}
.y2c{bottom:273.675000px;}
.y152{bottom:276.915000px;}
.y11c{bottom:279.075000px;}
.y7e{bottom:279.795000px;}
.y2b{bottom:292.395000px;}
.yde{bottom:294.555000px;}
.yc5{bottom:295.995000px;}
.y168{bottom:296.715000px;}
.y63{bottom:297.075000px;}
.y11b{bottom:298.155000px;}
.ya7{bottom:299.595000px;}
.y12e{bottom:300.675000px;}
.yfd{bottom:306.075000px;}
.y2a{bottom:311.475000px;}
.yc3{bottom:312.195000px;}
.y167{bottom:315.795000px;}
.y11a{bottom:316.875000px;}
.y7d{bottom:319.755000px;}
.ydd{bottom:334.545000px;}
.y151{bottom:335.985000px;}
.y62{bottom:337.065000px;}
.y12d{bottom:340.665000px;}
.ya4{bottom:341.025000px;}
.yfc{bottom:342.825000px;}
.y29{bottom:351.465000px;}
.y119{bottom:352.905000px;}
.ydc{bottom:353.625000px;}
.y150{bottom:355.065000px;}
.y166{bottom:355.425000px;}
.y7c{bottom:359.745000px;}
.yc2{bottom:360.825000px;}
.y14f{bottom:373.785000px;}
.y165{bottom:374.505000px;}
.y61{bottom:377.025000px;}
.y12c{bottom:378.825000px;}
.y118{bottom:388.545000px;}
.y28{bottom:391.425000px;}
.y14e{bottom:392.865000px;}
.ydb{bottom:393.585000px;}
.y60{bottom:396.105000px;}
.y51{bottom:398.625000px;}
.y7b{bottom:399.705000px;}
.ya3{bottom:402.585000px;}
.y117{bottom:404.745000px;}
.yc1{bottom:409.425000px;}
.y14d{bottom:411.945000px;}
.y164{bottom:414.465000px;}
.y5f{bottom:414.825000px;}
.y50{bottom:417.705000px;}
.y12b{bottom:418.425000px;}
.y7a{bottom:418.785000px;}
.yfb{bottom:419.865000px;}
.y14c{bottom:431.025000px;}
.y27{bottom:431.385000px;}
.yda{bottom:433.545000px;}
.y5e{bottom:433.905000px;}
.y4f{bottom:436.785000px;}
.yfa{bottom:443.985000px;}
.y14b{bottom:449.790000px;}
.y26{bottom:450.510000px;}
.yd9{bottom:452.670000px;}
.y4e{bottom:455.550000px;}
.yc0{bottom:458.070000px;}
.y12a{bottom:458.430000px;}
.y79{bottom:458.790000px;}
.ya0{bottom:464.190000px;}
.y14a{bottom:468.870000px;}
.y25{bottom:469.230000px;}
.y116{bottom:469.590000px;}
.yd8{bottom:471.750000px;}
.y163{bottom:473.550000px;}
.y5d{bottom:473.910000px;}
.y4d{bottom:474.630000px;}
.yf9{bottom:483.990000px;}
.y149{bottom:487.950000px;}
.y24{bottom:488.310000px;}
.yd7{bottom:490.470000px;}
.y162{bottom:492.630000px;}
.y78{bottom:498.750000px;}
.yf8{bottom:503.070000px;}
.ybf{bottom:506.670000px;}
.y23{bottom:507.390000px;}
.y5c{bottom:513.870000px;}
.y4c{bottom:514.590000px;}
.y77{bottom:517.830000px;}
.y9d{bottom:525.750000px;}
.y22{bottom:526.470000px;}
.yf7{bottom:526.830000px;}
.y148{bottom:527.550000px;}
.yd6{bottom:530.430000px;}
.y161{bottom:532.590000px;}
.y5b{bottom:532.950000px;}
.y112{bottom:534.030000px;}
.y4b{bottom:536.550000px;}
.y21{bottom:545.190000px;}
.yf6{bottom:545.910000px;}
.y147{bottom:546.630000px;}
.y5a{bottom:552.030000px;}
.ybe{bottom:555.270000px;}
.y4a{bottom:555.630000px;}
.y20{bottom:564.270000px;}
.y146{bottom:565.710000px;}
.yd5{bottom:570.390000px;}
.y59{bottom:570.750000px;}
.y160{bottom:572.550000px;}
.y76{bottom:574.710000px;}
.yf5{bottom:581.580000px;}
.y1f{bottom:583.380000px;}
.y145{bottom:584.820000px;}
.y9b{bottom:586.980000px;}
.y15f{bottom:591.660000px;}
.y75{bottom:593.460000px;}
.y49{bottom:595.620000px;}
.yf4{bottom:597.780000px;}
.y1e{bottom:602.100000px;}
.y144{bottom:603.540000px;}
.ybd{bottom:603.900000px;}
.yd4{bottom:610.380000px;}
.y58{bottom:610.740000px;}
.y74{bottom:612.540000px;}
.y48{bottom:614.700000px;}
.y1d{bottom:621.180000px;}
.y143{bottom:622.620000px;}
.y98{bottom:629.460000px;}
.y111{bottom:630.180000px;}
.y15e{bottom:631.260000px;}
.y47{bottom:633.420000px;}
.y129{bottom:635.580000px;}
.y1c{bottom:640.260000px;}
.y142{bottom:641.700000px;}
.y15d{bottom:650.340000px;}
.y57{bottom:650.700000px;}
.ybc{bottom:652.140000px;}
.y73{bottom:652.500000px;}
.y128{bottom:654.660000px;}
.y141{bottom:660.780000px;}
.yf3{bottom:661.500000px;}
.yd3{bottom:669.420000px;}
.y56{bottom:669.780000px;}
.y95{bottom:672.660000px;}
.y46{bottom:673.380000px;}
.y140{bottom:679.500000px;}
.y1b{bottom:680.220000px;}
.y55{bottom:688.860000px;}
.y15c{bottom:690.300000px;}
.y45{bottom:692.460000px;}
.y10f{bottom:694.980000px;}
.ybb{bottom:700.770000px;}
.y1a{bottom:702.210000px;}
.y54{bottom:707.970000px;}
.yd2{bottom:709.410000px;}
.y127{bottom:711.570000px;}
.y13f{bottom:719.490000px;}
.y19{bottom:724.530000px;}
.y92{bottom:725.610000px;}
.yf2{bottom:725.970000px;}
.yd1{bottom:728.490000px;}
.y126{bottom:730.650000px;}
.y44{bottom:732.450000px;}
.y13e{bottom:738.570000px;}
.y53{bottom:747.570000px;}
.y15b{bottom:749.370000px;}
.yba{bottom:749.730000px;}
.y43{bottom:751.530000px;}
.y18{bottom:752.250000px;}
.y13d{bottom:757.650000px;}
.y8d{bottom:764.130000px;}
.y17{bottom:765.930000px;}
.y15a{bottom:768.450000px;}
.y125{bottom:770.250000px;}
.y42{bottom:770.610000px;}
.y13c{bottom:776.370000px;}
.y16{bottom:786.810000px;}
.yd0{bottom:787.530000px;}
.y72{bottom:789.330000px;}
.yf1{bottom:790.050000px;}
.y13b{bottom:795.450000px;}
.yb9{bottom:797.970000px;}
.y52{bottom:804.450000px;}
.y10e{bottom:805.170000px;}
.y15{bottom:808.050000px;}
.y41{bottom:810.210000px;}
.y13a{bottom:814.530000px;}
.ycf{bottom:827.175000px;}
.y8c{bottom:827.535000px;}
.y71{bottom:829.335000px;}
.y14{bottom:832.215000px;}
.y8b{bottom:846.255000px;}
.yb8{bottom:846.615000px;}
.y124{bottom:848.415000px;}
.y40{bottom:850.215000px;}
.yef{bottom:854.175000px;}
.y139{bottom:854.535000px;}
.y13{bottom:856.335000px;}
.yce{bottom:865.335000px;}
.y10d{bottom:866.415000px;}
.y123{bottom:867.495000px;}
.y3f{bottom:869.295000px;}
.y138{bottom:873.615000px;}
.y8a{bottom:886.215000px;}
.y3e{bottom:888.375000px;}
.y12{bottom:891.255000px;}
.y137{bottom:892.335000px;}
.yb7{bottom:895.215000px;}
.y10c{bottom:899.535000px;}
.y89{bottom:905.295000px;}
.y3d{bottom:907.455000px;}
.y136{bottom:911.415000px;}
.yed{bottom:917.895000px;}
.y3c{bottom:926.175000px;}
.y135{bottom:930.495000px;}
.y10b{bottom:933.735000px;}
.y3b{bottom:945.255000px;}
.yb6{bottom:947.415000px;}
.y134{bottom:949.215000px;}
.y11{bottom:951.735000px;}
.y10{bottom:962.925000px;}
.y88{bottom:964.365000px;}
.yb5{bottom:966.165000px;}
.y70{bottom:966.525000px;}
.y133{bottom:968.325000px;}
.y10a{bottom:978.405000px;}
.ye5{bottom:982.365000px;}
.y87{bottom:983.445000px;}
.y3a{bottom:985.245000px;}
.y132{bottom:987.405000px;}
.yf{bottom:989.205000px;}
.y109{bottom:997.485000px;}
.y86{bottom:1002.165000px;}
.y39{bottom:1004.325000px;}
.yb4{bottom:1006.125000px;}
.y6f{bottom:1006.485000px;}
.ye{bottom:1012.245000px;}
.y85{bottom:1021.245000px;}
.y38{bottom:1023.405000px;}
.yb3{bottom:1025.205000px;}
.yd{bottom:1034.205000px;}
.y37{bottom:1042.125000px;}
.yb2{bottom:1044.285000px;}
.y6e{bottom:1046.085000px;}
.yc{bottom:1056.165000px;}
.y36{bottom:1061.205000px;}
.y108{bottom:1062.645000px;}
.ycd{bottom:1063.005000px;}
.yb1{bottom:1063.365000px;}
.y6d{bottom:1065.165000px;}
.yb{bottom:1073.445000px;}
.ycc{bottom:1082.130000px;}
.y6c{bottom:1084.290000px;}
.ya{bottom:1090.770000px;}
.ye4{bottom:1097.250000px;}
.y35{bottom:1101.210000px;}
.yb0{bottom:1103.010000px;}
.y6b{bottom:1103.370000px;}
.y9{bottom:1108.050000px;}
.ye3{bottom:1119.210000px;}
.y6a{bottom:1122.090000px;}
.y8{bottom:1125.330000px;}
.y34{bottom:1141.170000px;}
.y7{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y5{bottom:1206.000000px;}
.h4{height:18.000000px;}
.h28{height:18.720000px;}
.h2{height:19.836000px;}
.h26{height:22.716000px;}
.ha{height:22.960547px;}
.h16{height:24.840000px;}
.h1d{height:28.116000px;}
.h1e{height:28.440000px;}
.h19{height:28.800000px;}
.h1f{height:29.160000px;}
.h18{height:29.520000px;}
.h20{height:29.916000px;}
.h17{height:39.276000px;}
.h9{height:41.547656px;}
.hf{height:41.696016px;}
.hb{height:45.921094px;}
.h15{height:46.080000px;}
.h27{height:46.800000px;}
.h1a{height:47.520000px;}
.h1b{height:47.880000px;}
.h1c{height:47.916000px;}
.h5{height:48.013594px;}
.h21{height:48.240000px;}
.h29{height:50.076000px;}
.h24{height:50.400000px;}
.h25{height:50.436000px;}
.h2a{height:50.760000px;}
.h23{height:50.796000px;}
.h6{height:53.067656px;}
.h12{height:58.121719px;}
.h14{height:58.283437px;}
.h11{height:58.833281px;}
.hd{height:63.175781px;}
.h8{height:65.884219px;}
.h3{height:67.824844px;}
.he{height:69.566484px;}
.hc{height:73.283906px;}
.h7{height:73.722656px;}
.h10{height:78.253594px;}
.h2b{height:82.116000px;}
.h13{height:83.071406px;}
.h22{height:97.596000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:18.720000px;}
.w4{width:37.800000px;}
.w6{width:56.916000px;}
.wd{width:60.876000px;}
.w9{width:82.836000px;}
.w11{width:90.756000px;}
.w8{width:103.356000px;}
.w13{width:109.476000px;}
.wa{width:114.516000px;}
.w7{width:114.876000px;}
.w14{width:116.316000px;}
.we{width:126.756000px;}
.w3{width:142.632000px;}
.wb{width:166.035000px;}
.wf{width:171.435000px;}
.w16{width:180.075000px;}
.w10{width:210.315000px;}
.w12{width:211.785000px;}
.w15{width:222.225000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.x12{left:8.280000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.x10{left:121.715987px;}
.x11{left:123.156000px;}
.xc{left:133.235987px;}
.xe{left:160.274987px;}
.x1{left:167.115000px;}
.xb{left:169.634987px;}
.x13{left:180.435000px;}
.x19{left:184.755000px;}
.x1c{left:214.995000px;}
.x7{left:218.954987px;}
.xa{left:283.784987px;}
.x14{left:295.665000px;}
.xd{left:297.464987px;}
.x1a{left:312.225000px;}
.x20{left:346.470000px;}
.x9{left:358.349987px;}
.x8{left:386.069987px;}
.x15{left:399.390000px;}
.x1d{left:427.860000px;}
.x16{left:482.580000px;}
.x1b{left:484.380000px;}
.x1e{left:538.050000px;}
.x17{left:597.450000px;}
.x1f{left:655.095000px;}
.x4{left:755.565000px;}
.x18{left:763.125000px;}
.xf{left:802.769987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:26.880000pt;}
.ls7{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.072000pt;}
.lsb{letter-spacing:-0.949333pt;}
.lse{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.682667pt;}
.lsf{letter-spacing:-0.650667pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.404267pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.271467pt;}
.ls22{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.135467pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls10{letter-spacing:0.629333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:36.122027pt;}
.ls19{letter-spacing:39.962027pt;}
.ls18{letter-spacing:43.791360pt;}
.ls2{letter-spacing:46.218667pt;}
.ls14{letter-spacing:56.745387pt;}
.ls17{letter-spacing:83.610027pt;}
.ls1d{letter-spacing:88.730027pt;}
.ls1f{letter-spacing:92.570027pt;}
.ls16{letter-spacing:111.770027pt;}
.ls20{letter-spacing:114.330027pt;}
.ls12{letter-spacing:134.810027pt;}
.ws13{word-spacing:-53.760000pt;}
.ws14{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.855467pt;}
.ws11{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws16{word-spacing:-14.584533pt;}
.ws15{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsf{word-spacing:-11.200000pt;}
.wsd{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.ws10{word-spacing:0.000000pt;}
._13{margin-left:-4.934187pt;}
._12{margin-left:-3.886080pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._4{width:2.227200pt;}
._7{width:3.527680pt;}
._8{width:4.439040pt;}
._d{width:6.205440pt;}
._c{width:7.324160pt;}
._17{width:8.678400pt;}
._6{width:9.785600pt;}
._2{width:10.727680pt;}
._1b{width:11.834880pt;}
._18{width:13.008853pt;}
._5{width:14.336000pt;}
._1e{width:15.635413pt;}
._b{width:16.545280pt;}
._a{width:17.510400pt;}
._16{width:18.817493pt;}
._21{width:20.006400pt;}
._23{width:23.359147pt;}
._1d{width:24.325760pt;}
._1c{width:26.496000pt;}
._22{width:27.849173pt;}
._19{width:37.506560pt;}
._1a{width:38.537173pt;}
._11{width:43.571200pt;}
._10{width:44.794880pt;}
._f{width:66.457173pt;}
._e{width:67.496960pt;}
._15{width:107.809280pt;}
._14{width:108.833280pt;}
._9{width:117.818880pt;}
._1f{width:119.883947pt;}
._20{width:252.798293pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:3.194667pt;}
.y101{bottom:3.200000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.yfe{bottom:5.120000pt;}
.y93{bottom:5.760000pt;}
.y90{bottom:6.720000pt;}
.ya8{bottom:7.360000pt;}
.y9c{bottom:7.680000pt;}
.y99{bottom:8.000000pt;}
.y94{bottom:8.320000pt;}
.ya9{bottom:11.200000pt;}
.yab{bottom:11.520000pt;}
.y96{bottom:12.160000pt;}
.y9a{bottom:12.480000pt;}
.yae{bottom:12.800000pt;}
.y91{bottom:15.360000pt;}
.y9e{bottom:15.680000pt;}
.ya1{bottom:16.000000pt;}
.ya5{bottom:16.320000pt;}
.yc4{bottom:16.346667pt;}
.yf0{bottom:16.960000pt;}
.y110{bottom:16.986667pt;}
.yee{bottom:17.280000pt;}
.y104{bottom:17.320000pt;}
.y97{bottom:21.120000pt;}
.y114{bottom:22.720000pt;}
.y8f{bottom:23.680000pt;}
.yec{bottom:26.240000pt;}
.yeb{bottom:26.560000pt;}
.y8e{bottom:27.200000pt;}
.y100{bottom:27.840000pt;}
.y102{bottom:28.160000pt;}
.y9f{bottom:28.480000pt;}
.ya2{bottom:28.800000pt;}
.ya6{bottom:29.120000pt;}
.y113{bottom:39.706667pt;}
.ye9{bottom:49.600000pt;}
.yea{bottom:49.920000pt;}
.ye7{bottom:56.320000pt;}
.y115{bottom:59.226667pt;}
.ye8{bottom:72.960000pt;}
.y3{bottom:72.992000pt;}
.ye6{bottom:73.280000pt;}
.y6{bottom:86.752000pt;}
.y69{bottom:106.912000pt;}
.y159{bottom:109.472000pt;}
.y84{bottom:110.112000pt;}
.y131{bottom:111.712000pt;}
.y122{bottom:114.272000pt;}
.y107{bottom:117.152000pt;}
.ye2{bottom:123.232000pt;}
.ycb{bottom:124.512000pt;}
.y33{bottom:124.832000pt;}
.y83{bottom:127.072000pt;}
.y130{bottom:128.672000pt;}
.y105{bottom:131.552000pt;}
.yaf{bottom:138.266667pt;}
.y121{bottom:139.226667pt;}
.ye1{bottom:140.186667pt;}
.yca{bottom:141.466667pt;}
.y32{bottom:141.786667pt;}
.y68{bottom:142.426667pt;}
.y158{bottom:144.986667pt;}
.yad{bottom:152.666667pt;}
.ye0{bottom:157.146667pt;}
.y31{bottom:158.746667pt;}
.y103{bottom:160.666667pt;}
.y157{bottom:161.946667pt;}
.y82{bottom:162.266667pt;}
.y120{bottom:164.186667pt;}
.ydf{bottom:174.106667pt;}
.y30{bottom:175.746667pt;}
.yc9{bottom:177.026667pt;}
.y67{bottom:177.986667pt;}
.y156{bottom:178.626667pt;}
.y12f{bottom:181.186667pt;}
.y11f{bottom:189.186667pt;}
.yac{bottom:191.106667pt;}
.y2f{bottom:192.386667pt;}
.y16a{bottom:192.706667pt;}
.yc8{bottom:193.986667pt;}
.y66{bottom:194.946667pt;}
.y155{bottom:195.586667pt;}
.y81{bottom:198.146667pt;}
.y11e{bottom:206.146667pt;}
.y2e{bottom:209.346667pt;}
.yc7{bottom:210.946667pt;}
.y65{bottom:211.586667pt;}
.y154{bottom:212.546667pt;}
.y80{bottom:215.106667pt;}
.yff{bottom:217.986667pt;}
.y2d{bottom:226.306667pt;}
.yc6{bottom:227.906667pt;}
.y169{bottom:228.226667pt;}
.y64{bottom:228.546667pt;}
.yaa{bottom:229.186667pt;}
.y153{bottom:229.506667pt;}
.y11d{bottom:231.106667pt;}
.y7f{bottom:231.746667pt;}
.y2c{bottom:243.266667pt;}
.y152{bottom:246.146667pt;}
.y11c{bottom:248.066667pt;}
.y7e{bottom:248.706667pt;}
.y2b{bottom:259.906667pt;}
.yde{bottom:261.826667pt;}
.yc5{bottom:263.106667pt;}
.y168{bottom:263.746667pt;}
.y63{bottom:264.066667pt;}
.y11b{bottom:265.026667pt;}
.ya7{bottom:266.306667pt;}
.y12e{bottom:267.266667pt;}
.yfd{bottom:272.066667pt;}
.y2a{bottom:276.866667pt;}
.yc3{bottom:277.506667pt;}
.y167{bottom:280.706667pt;}
.y11a{bottom:281.666667pt;}
.y7d{bottom:284.226667pt;}
.ydd{bottom:297.373333pt;}
.y151{bottom:298.653333pt;}
.y62{bottom:299.613333pt;}
.y12d{bottom:302.813333pt;}
.ya4{bottom:303.133333pt;}
.yfc{bottom:304.733333pt;}
.y29{bottom:312.413333pt;}
.y119{bottom:313.693333pt;}
.ydc{bottom:314.333333pt;}
.y150{bottom:315.613333pt;}
.y166{bottom:315.933333pt;}
.y7c{bottom:319.773333pt;}
.yc2{bottom:320.733333pt;}
.y14f{bottom:332.253333pt;}
.y165{bottom:332.893333pt;}
.y61{bottom:335.133333pt;}
.y12c{bottom:336.733333pt;}
.y118{bottom:345.373333pt;}
.y28{bottom:347.933333pt;}
.y14e{bottom:349.213333pt;}
.ydb{bottom:349.853333pt;}
.y60{bottom:352.093333pt;}
.y51{bottom:354.333333pt;}
.y7b{bottom:355.293333pt;}
.ya3{bottom:357.853333pt;}
.y117{bottom:359.773333pt;}
.yc1{bottom:363.933333pt;}
.y14d{bottom:366.173333pt;}
.y164{bottom:368.413333pt;}
.y5f{bottom:368.733333pt;}
.y50{bottom:371.293333pt;}
.y12b{bottom:371.933333pt;}
.y7a{bottom:372.253333pt;}
.yfb{bottom:373.213333pt;}
.y14c{bottom:383.133333pt;}
.y27{bottom:383.453333pt;}
.yda{bottom:385.373333pt;}
.y5e{bottom:385.693333pt;}
.y4f{bottom:388.253333pt;}
.yfa{bottom:394.653333pt;}
.y14b{bottom:399.813333pt;}
.y26{bottom:400.453333pt;}
.yd9{bottom:402.373333pt;}
.y4e{bottom:404.933333pt;}
.yc0{bottom:407.173333pt;}
.y12a{bottom:407.493333pt;}
.y79{bottom:407.813333pt;}
.ya0{bottom:412.613333pt;}
.y14a{bottom:416.773333pt;}
.y25{bottom:417.093333pt;}
.y116{bottom:417.413333pt;}
.yd8{bottom:419.333333pt;}
.y163{bottom:420.933333pt;}
.y5d{bottom:421.253333pt;}
.y4d{bottom:421.893333pt;}
.yf9{bottom:430.213333pt;}
.y149{bottom:433.733333pt;}
.y24{bottom:434.053333pt;}
.yd7{bottom:435.973333pt;}
.y162{bottom:437.893333pt;}
.y78{bottom:443.333333pt;}
.yf8{bottom:447.173333pt;}
.ybf{bottom:450.373333pt;}
.y23{bottom:451.013333pt;}
.y5c{bottom:456.773333pt;}
.y4c{bottom:457.413333pt;}
.y77{bottom:460.293333pt;}
.y9d{bottom:467.333333pt;}
.y22{bottom:467.973333pt;}
.yf7{bottom:468.293333pt;}
.y148{bottom:468.933333pt;}
.yd6{bottom:471.493333pt;}
.y161{bottom:473.413333pt;}
.y5b{bottom:473.733333pt;}
.y112{bottom:474.693333pt;}
.y4b{bottom:476.933333pt;}
.y21{bottom:484.613333pt;}
.yf6{bottom:485.253333pt;}
.y147{bottom:485.893333pt;}
.y5a{bottom:490.693333pt;}
.ybe{bottom:493.573333pt;}
.y4a{bottom:493.893333pt;}
.y20{bottom:501.573333pt;}
.y146{bottom:502.853333pt;}
.yd5{bottom:507.013333pt;}
.y59{bottom:507.333333pt;}
.y160{bottom:508.933333pt;}
.y76{bottom:510.853333pt;}
.yf5{bottom:516.960000pt;}
.y1f{bottom:518.560000pt;}
.y145{bottom:519.840000pt;}
.y9b{bottom:521.760000pt;}
.y15f{bottom:525.920000pt;}
.y75{bottom:527.520000pt;}
.y49{bottom:529.440000pt;}
.yf4{bottom:531.360000pt;}
.y1e{bottom:535.200000pt;}
.y144{bottom:536.480000pt;}
.ybd{bottom:536.800000pt;}
.yd4{bottom:542.560000pt;}
.y58{bottom:542.880000pt;}
.y74{bottom:544.480000pt;}
.y48{bottom:546.400000pt;}
.y1d{bottom:552.160000pt;}
.y143{bottom:553.440000pt;}
.y98{bottom:559.520000pt;}
.y111{bottom:560.160000pt;}
.y15e{bottom:561.120000pt;}
.y47{bottom:563.040000pt;}
.y129{bottom:564.960000pt;}
.y1c{bottom:569.120000pt;}
.y142{bottom:570.400000pt;}
.y15d{bottom:578.080000pt;}
.y57{bottom:578.400000pt;}
.ybc{bottom:579.680000pt;}
.y73{bottom:580.000000pt;}
.y128{bottom:581.920000pt;}
.y141{bottom:587.360000pt;}
.yf3{bottom:588.000000pt;}
.yd3{bottom:595.040000pt;}
.y56{bottom:595.360000pt;}
.y95{bottom:597.920000pt;}
.y46{bottom:598.560000pt;}
.y140{bottom:604.000000pt;}
.y1b{bottom:604.640000pt;}
.y55{bottom:612.320000pt;}
.y15c{bottom:613.600000pt;}
.y45{bottom:615.520000pt;}
.y10f{bottom:617.760000pt;}
.ybb{bottom:622.906667pt;}
.y1a{bottom:624.186667pt;}
.y54{bottom:629.306667pt;}
.yd2{bottom:630.586667pt;}
.y127{bottom:632.506667pt;}
.y13f{bottom:639.546667pt;}
.y19{bottom:644.026667pt;}
.y92{bottom:644.986667pt;}
.yf2{bottom:645.306667pt;}
.yd1{bottom:647.546667pt;}
.y126{bottom:649.466667pt;}
.y44{bottom:651.066667pt;}
.y13e{bottom:656.506667pt;}
.y53{bottom:664.506667pt;}
.y15b{bottom:666.106667pt;}
.yba{bottom:666.426667pt;}
.y43{bottom:668.026667pt;}
.y18{bottom:668.666667pt;}
.y13d{bottom:673.466667pt;}
.y8d{bottom:679.226667pt;}
.y17{bottom:680.826667pt;}
.y15a{bottom:683.066667pt;}
.y125{bottom:684.666667pt;}
.y42{bottom:684.986667pt;}
.y13c{bottom:690.106667pt;}
.y16{bottom:699.386667pt;}
.yd0{bottom:700.026667pt;}
.y72{bottom:701.626667pt;}
.yf1{bottom:702.266667pt;}
.y13b{bottom:707.066667pt;}
.yb9{bottom:709.306667pt;}
.y52{bottom:715.066667pt;}
.y10e{bottom:715.706667pt;}
.y15{bottom:718.266667pt;}
.y41{bottom:720.186667pt;}
.y13a{bottom:724.026667pt;}
.ycf{bottom:735.266667pt;}
.y8c{bottom:735.586667pt;}
.y71{bottom:737.186667pt;}
.y14{bottom:739.746667pt;}
.y8b{bottom:752.226667pt;}
.yb8{bottom:752.546667pt;}
.y124{bottom:754.146667pt;}
.y40{bottom:755.746667pt;}
.yef{bottom:759.266667pt;}
.y139{bottom:759.586667pt;}
.y13{bottom:761.186667pt;}
.yce{bottom:769.186667pt;}
.y10d{bottom:770.146667pt;}
.y123{bottom:771.106667pt;}
.y3f{bottom:772.706667pt;}
.y138{bottom:776.546667pt;}
.y8a{bottom:787.746667pt;}
.y3e{bottom:789.666667pt;}
.y12{bottom:792.226667pt;}
.y137{bottom:793.186667pt;}
.yb7{bottom:795.746667pt;}
.y10c{bottom:799.586667pt;}
.y89{bottom:804.706667pt;}
.y3d{bottom:806.626667pt;}
.y136{bottom:810.146667pt;}
.yed{bottom:815.906667pt;}
.y3c{bottom:823.266667pt;}
.y135{bottom:827.106667pt;}
.y10b{bottom:829.986667pt;}
.y3b{bottom:840.226667pt;}
.yb6{bottom:842.146667pt;}
.y134{bottom:843.746667pt;}
.y11{bottom:845.986667pt;}
.y10{bottom:855.933333pt;}
.y88{bottom:857.213333pt;}
.yb5{bottom:858.813333pt;}
.y70{bottom:859.133333pt;}
.y133{bottom:860.733333pt;}
.y10a{bottom:869.693333pt;}
.ye5{bottom:873.213333pt;}
.y87{bottom:874.173333pt;}
.y3a{bottom:875.773333pt;}
.y132{bottom:877.693333pt;}
.yf{bottom:879.293333pt;}
.y109{bottom:886.653333pt;}
.y86{bottom:890.813333pt;}
.y39{bottom:892.733333pt;}
.yb4{bottom:894.333333pt;}
.y6f{bottom:894.653333pt;}
.ye{bottom:899.773333pt;}
.y85{bottom:907.773333pt;}
.y38{bottom:909.693333pt;}
.yb3{bottom:911.293333pt;}
.yd{bottom:919.293333pt;}
.y37{bottom:926.333333pt;}
.yb2{bottom:928.253333pt;}
.y6e{bottom:929.853333pt;}
.yc{bottom:938.813333pt;}
.y36{bottom:943.293333pt;}
.y108{bottom:944.573333pt;}
.ycd{bottom:944.893333pt;}
.yb1{bottom:945.213333pt;}
.y6d{bottom:946.813333pt;}
.yb{bottom:954.173333pt;}
.ycc{bottom:961.893333pt;}
.y6c{bottom:963.813333pt;}
.ya{bottom:969.573333pt;}
.ye4{bottom:975.333333pt;}
.y35{bottom:978.853333pt;}
.yb0{bottom:980.453333pt;}
.y6b{bottom:980.773333pt;}
.y9{bottom:984.933333pt;}
.ye3{bottom:994.853333pt;}
.y6a{bottom:997.413333pt;}
.y8{bottom:1000.293333pt;}
.y34{bottom:1014.373333pt;}
.y7{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y5{bottom:1072.000000pt;}
.h4{height:16.000000pt;}
.h28{height:16.640000pt;}
.h2{height:17.632000pt;}
.h26{height:20.192000pt;}
.ha{height:20.409375pt;}
.h16{height:22.080000pt;}
.h1d{height:24.992000pt;}
.h1e{height:25.280000pt;}
.h19{height:25.600000pt;}
.h1f{height:25.920000pt;}
.h18{height:26.240000pt;}
.h20{height:26.592000pt;}
.h17{height:34.912000pt;}
.h9{height:36.931250pt;}
.hf{height:37.063125pt;}
.hb{height:40.818750pt;}
.h15{height:40.960000pt;}
.h27{height:41.600000pt;}
.h1a{height:42.240000pt;}
.h1b{height:42.560000pt;}
.h1c{height:42.592000pt;}
.h5{height:42.678750pt;}
.h21{height:42.880000pt;}
.h29{height:44.512000pt;}
.h24{height:44.800000pt;}
.h25{height:44.832000pt;}
.h2a{height:45.120000pt;}
.h23{height:45.152000pt;}
.h6{height:47.171250pt;}
.h12{height:51.663750pt;}
.h14{height:51.807500pt;}
.h11{height:52.296250pt;}
.hd{height:56.156250pt;}
.h8{height:58.563750pt;}
.h3{height:60.288750pt;}
.he{height:61.836875pt;}
.hc{height:65.141250pt;}
.h7{height:65.531250pt;}
.h10{height:69.558750pt;}
.h2b{height:72.992000pt;}
.h13{height:73.841250pt;}
.h22{height:86.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:16.640000pt;}
.w4{width:33.600000pt;}
.w6{width:50.592000pt;}
.wd{width:54.112000pt;}
.w9{width:73.632000pt;}
.w11{width:80.672000pt;}
.w8{width:91.872000pt;}
.w13{width:97.312000pt;}
.wa{width:101.792000pt;}
.w7{width:102.112000pt;}
.w14{width:103.392000pt;}
.we{width:112.672000pt;}
.w3{width:126.784000pt;}
.wb{width:147.586667pt;}
.wf{width:152.386667pt;}
.w16{width:160.066667pt;}
.w10{width:186.946667pt;}
.w12{width:188.253333pt;}
.w15{width:197.533333pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.x12{left:7.360000pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.x10{left:108.191988pt;}
.x11{left:109.472000pt;}
.xc{left:118.431988pt;}
.xe{left:142.466655pt;}
.x1{left:148.546667pt;}
.xb{left:150.786655pt;}
.x13{left:160.386667pt;}
.x19{left:164.226667pt;}
.x1c{left:191.106667pt;}
.x7{left:194.626655pt;}
.xa{left:252.253322pt;}
.x14{left:262.813333pt;}
.xd{left:264.413322pt;}
.x1a{left:277.533333pt;}
.x20{left:307.973333pt;}
.x9{left:318.533322pt;}
.x8{left:343.173322pt;}
.x15{left:355.013333pt;}
.x1d{left:380.320000pt;}
.x16{left:428.960000pt;}
.x1b{left:430.560000pt;}
.x1e{left:478.266667pt;}
.x17{left:531.066667pt;}
.x1f{left:582.306667pt;}
.x4{left:671.613333pt;}
.x18{left:678.333333pt;}
.xf{left:713.573322pt;}
}




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