
    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_6c96ea73b3de83f11cf9f3cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_4c6f8e64fee2f14bf428b04c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_fdd76bec88f4bd80825ffde6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3909a20ee7d8cbaf8fb164bb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d1e7673595c83f148eec1676.woff2')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_2890c894c5b15332326a08ba.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8176cca96daa6a4a161d423c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_afecc37434158904f464fc12.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_31c808d66c720f1a90f43bcb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_205e0ebe424589987d8dc491.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926800;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.382800px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.144000px;}
.lse{letter-spacing:0.152400px;}
.ls10{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.699840px;}
.lsd{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.ls2{letter-spacing:2.139840px;}
.ls15{letter-spacing:2.160000px;}
.lsc{letter-spacing:33.276000px;}
.ls9{letter-spacing:36.305280px;}
.ls11{letter-spacing:37.757280px;}
.ls8{letter-spacing:40.625280px;}
.ls7{letter-spacing:51.996000px;}
.lsf{letter-spacing:62.225280px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsa{word-spacing:-66.240000px;}
.wsb{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.172000px;}
.ws9{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-5.644800px;}
._a{margin-left:-4.259520px;}
._1c{margin-left:-3.216960px;}
._7{margin-left:-2.134080px;}
._3{margin-left:-1.022400px;}
._2{width:1.425600px;}
._6{width:2.496000px;}
._1d{width:3.598080px;}
._4{width:4.682400px;}
._8{width:5.764800px;}
._13{width:7.712640px;}
._b{width:9.074880px;}
._14{width:10.105920px;}
._17{width:11.157120px;}
._d{width:12.657600px;}
._c{width:13.711680px;}
._12{width:15.433920px;}
._9{width:18.017280px;}
._11{width:19.244160px;}
._1e{width:20.482560px;}
._16{width:21.660480px;}
._15{width:23.132160px;}
._1a{width:24.886080px;}
._19{width:26.562240px;}
._1f{width:27.961920px;}
._1b{width:29.160000px;}
._20{width:30.368640px;}
._f{width:32.060640px;}
._e{width:33.456960px;}
._26{width:35.115840px;}
._22{width:37.293120px;}
._21{width:38.963520px;}
._18{width:40.861440px;}
._23{width:41.947200px;}
._24{width:43.300800px;}
._10{width:46.779840px;}
._2a{width:65.232000px;}
._2b{width:66.308640px;}
._28{width:87.309120px;}
._29{width:88.548000px;}
._27{width:89.580000px;}
._1{width:395.333280px;}
._0{width:1101.485760px;}
._5{width:1645.896000px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs4{font-size:119.520000px;}
.y3{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.240000px;}
.y3f{bottom:3.600000px;}
.yd{bottom:4.320000px;}
.y8{bottom:17.316000px;}
.y6{bottom:17.676000px;}
.yc{bottom:24.480000px;}
.y9{bottom:30.600000px;}
.y5{bottom:32.436000px;}
.yb{bottom:44.670000px;}
.y4{bottom:57.240000px;}
.y3e{bottom:84.636000px;}
.y2{bottom:111.996000px;}
.ycb{bottom:113.076000px;}
.y139{bottom:117.396000px;}
.ye1{bottom:121.716000px;}
.y63{bottom:122.436000px;}
.y87{bottom:126.756000px;}
.yab{bottom:129.276000px;}
.y3a{bottom:134.676000px;}
.yfc{bottom:135.396000px;}
.y116{bottom:136.836000px;}
.yca{bottom:141.516000px;}
.y138{bottom:147.276000px;}
.ye0{bottom:150.150000px;}
.y62{bottom:152.670000px;}
.y86{bottom:155.190000px;}
.yaa{bottom:157.710000px;}
.y39{bottom:163.110000px;}
.y115{bottom:166.710000px;}
.yc9{bottom:169.950000px;}
.y137{bottom:171.030000px;}
.yfb{bottom:175.710000px;}
.ydf{bottom:178.590000px;}
.y85{bottom:183.630000px;}
.ya9{bottom:186.150000px;}
.y61{bottom:190.470000px;}
.y38{bottom:191.550000px;}
.yc8{bottom:198.435000px;}
.y136{bottom:200.955000px;}
.y84{bottom:212.115000px;}
.ya8{bottom:214.635000px;}
.y37{bottom:216.075000px;}
.y60{bottom:218.955000px;}
.y114{bottom:220.395000px;}
.y135{bottom:224.715000px;}
.yc7{bottom:226.875000px;}
.yde{bottom:228.315000px;}
.y36{bottom:237.675000px;}
.y83{bottom:240.555000px;}
.y109{bottom:243.075000px;}
.ya7{bottom:243.435000px;}
.y113{bottom:244.155000px;}
.yfa{bottom:244.515000px;}
.y5f{bottom:247.395000px;}
.y134{bottom:248.475000px;}
.yc6{bottom:255.315000px;}
.y35{bottom:259.635000px;}
.y112{bottom:267.915000px;}
.y82{bottom:268.995000px;}
.y108{bottom:271.515000px;}
.ya6{bottom:271.875000px;}
.yf9{bottom:272.955000px;}
.y5e{bottom:275.835000px;}
.ydd{bottom:277.635000px;}
.y133{bottom:278.355000px;}
.y34{bottom:281.595000px;}
.yc5{bottom:283.755000px;}
.y81{bottom:297.435000px;}
.y111{bottom:297.795000px;}
.ya5{bottom:300.315000px;}
.yf8{bottom:301.395000px;}
.y132{bottom:302.115000px;}
.y33{bottom:303.195000px;}
.y5d{bottom:304.275000px;}
.ydc{bottom:306.075000px;}
.yc4{bottom:312.195000px;}
.y107{bottom:321.195000px;}
.y110{bottom:321.555000px;}
.y150{bottom:322.995000px;}
.y32{bottom:325.185000px;}
.y80{bottom:326.265000px;}
.ya4{bottom:328.785000px;}
.yf7{bottom:330.225000px;}
.y131{bottom:332.025000px;}
.y5c{bottom:332.745000px;}
.ydb{bottom:334.545000px;}
.yc3{bottom:340.665000px;}
.y31{bottom:346.785000px;}
.y106{bottom:349.665000px;}
.y10f{bottom:351.105000px;}
.y7f{bottom:354.705000px;}
.y130{bottom:355.785000px;}
.ya3{bottom:357.225000px;}
.yf6{bottom:358.665000px;}
.y5b{bottom:361.545000px;}
.yda{bottom:362.985000px;}
.y30{bottom:368.745000px;}
.yc2{bottom:369.105000px;}
.y14f{bottom:370.545000px;}
.y10e{bottom:375.225000px;}
.y105{bottom:378.105000px;}
.y7e{bottom:383.145000px;}
.ya2{bottom:385.665000px;}
.y5a{bottom:389.985000px;}
.y2f{bottom:390.705000px;}
.yd9{bottom:391.425000px;}
.yc1{bottom:397.545000px;}
.yf5{bottom:398.985000px;}
.y14e{bottom:400.425000px;}
.y10d{bottom:404.745000px;}
.y104{bottom:406.545000px;}
.y7d{bottom:411.585000px;}
.y2e{bottom:412.305000px;}
.ya1{bottom:414.105000px;}
.y12f{bottom:415.545000px;}
.y59{bottom:418.425000px;}
.y14d{bottom:424.185000px;}
.yc0{bottom:425.985000px;}
.yf4{bottom:427.425000px;}
.y10c{bottom:428.505000px;}
.y2d{bottom:434.265000px;}
.y7c{bottom:440.025000px;}
.yd8{bottom:441.105000px;}
.ya0{bottom:442.545000px;}
.y12e{bottom:445.065000px;}
.y58{bottom:446.865000px;}
.y10b{bottom:452.670000px;}
.ybf{bottom:454.470000px;}
.y14c{bottom:455.550000px;}
.y2c{bottom:455.910000px;}
.y7b{bottom:468.510000px;}
.yd7{bottom:469.590000px;}
.y9f{bottom:471.030000px;}
.y12d{bottom:474.990000px;}
.y57{bottom:475.350000px;}
.y2b{bottom:477.870000px;}
.ybe{bottom:482.910000px;}
.yf3{bottom:484.350000px;}
.y14b{bottom:486.870000px;}
.y7a{bottom:496.950000px;}
.yd6{bottom:498.030000px;}
.y12c{bottom:498.750000px;}
.y9e{bottom:499.470000px;}
.y2a{bottom:499.830000px;}
.y56{bottom:503.790000px;}
.y10a{bottom:507.390000px;}
.ybd{bottom:511.350000px;}
.yf2{bottom:512.790000px;}
.y14a{bottom:516.750000px;}
.y29{bottom:521.430000px;}
.y79{bottom:525.390000px;}
.yd5{bottom:526.470000px;}
.y9d{bottom:527.910000px;}
.y12b{bottom:528.630000px;}
.y55{bottom:532.230000px;}
.ybc{bottom:539.790000px;}
.yf1{bottom:541.230000px;}
.y28{bottom:543.390000px;}
.y149{bottom:546.630000px;}
.y12a{bottom:552.390000px;}
.y78{bottom:553.830000px;}
.yd4{bottom:554.910000px;}
.y9c{bottom:556.350000px;}
.y54{bottom:560.670000px;}
.y27{bottom:564.990000px;}
.ybb{bottom:568.230000px;}
.yf0{bottom:569.670000px;}
.y148{bottom:576.180000px;}
.y77{bottom:582.300000px;}
.y9b{bottom:584.820000px;}
.y26{bottom:588.420000px;}
.y53{bottom:589.140000px;}
.yba{bottom:597.060000px;}
.yef{bottom:598.140000px;}
.yd3{bottom:604.260000px;}
.y25{bottom:605.340000px;}
.y147{bottom:606.060000px;}
.y76{bottom:610.740000px;}
.y129{bottom:612.180000px;}
.y9a{bottom:613.260000px;}
.y52{bottom:617.580000px;}
.yb9{bottom:625.500000px;}
.y24{bottom:625.860000px;}
.yee{bottom:626.580000px;}
.yd2{bottom:632.700000px;}
.y146{bottom:635.940000px;}
.y75{bottom:639.180000px;}
.y99{bottom:641.700000px;}
.y128{bottom:642.060000px;}
.y51{bottom:646.020000px;}
.y23{bottom:646.740000px;}
.y103{bottom:647.820000px;}
.yb8{bottom:653.940000px;}
.yed{bottom:655.020000px;}
.y145{bottom:659.700000px;}
.yd1{bottom:661.140000px;}
.y127{bottom:665.820000px;}
.y22{bottom:667.260000px;}
.y74{bottom:667.620000px;}
.y98{bottom:670.140000px;}
.y50{bottom:674.460000px;}
.y102{bottom:676.260000px;}
.yb7{bottom:682.380000px;}
.y21{bottom:688.140000px;}
.yd0{bottom:689.580000px;}
.y73{bottom:696.060000px;}
.y97{bottom:698.580000px;}
.y4f{bottom:702.930000px;}
.yec{bottom:704.730000px;}
.y20{bottom:708.690000px;}
.yb6{bottom:710.850000px;}
.y144{bottom:713.370000px;}
.ycf{bottom:718.050000px;}
.y126{bottom:719.490000px;}
.y72{bottom:724.530000px;}
.y96{bottom:727.050000px;}
.y1f{bottom:729.570000px;}
.y4e{bottom:731.370000px;}
.yeb{bottom:733.170000px;}
.yb5{bottom:739.290000px;}
.y125{bottom:743.250000px;}
.y1e{bottom:750.090000px;}
.y71{bottom:752.970000px;}
.y95{bottom:755.850000px;}
.y4d{bottom:759.810000px;}
.yea{bottom:761.610000px;}
.yce{bottom:765.210000px;}
.y143{bottom:767.010000px;}
.yb4{bottom:767.730000px;}
.y1d{bottom:770.970000px;}
.y124{bottom:773.130000px;}
.y70{bottom:781.410000px;}
.y101{bottom:782.490000px;}
.y94{bottom:784.290000px;}
.y4c{bottom:788.250000px;}
.ye9{bottom:790.050000px;}
.y142{bottom:790.770000px;}
.y1c{bottom:791.490000px;}
.ycd{bottom:794.730000px;}
.yb3{bottom:796.170000px;}
.y123{bottom:802.650000px;}
.y6f{bottom:809.850000px;}
.y100{bottom:810.930000px;}
.y1b{bottom:812.370000px;}
.y93{bottom:812.730000px;}
.y4b{bottom:816.690000px;}
.ye8{bottom:818.490000px;}
.y141{bottom:820.650000px;}
.yb2{bottom:824.610000px;}
.y122{bottom:826.815000px;}
.y1a{bottom:832.935000px;}
.y6e{bottom:838.695000px;}
.yff{bottom:839.415000px;}
.y92{bottom:841.215000px;}
.y140{bottom:844.455000px;}
.y4a{bottom:845.175000px;}
.y121{bottom:850.575000px;}
.yb1{bottom:853.095000px;}
.y19{bottom:853.815000px;}
.y6d{bottom:867.135000px;}
.ye7{bottom:867.855000px;}
.y13f{bottom:868.215000px;}
.y91{bottom:869.655000px;}
.y49{bottom:873.975000px;}
.y18{bottom:874.335000px;}
.y120{bottom:880.095000px;}
.yb0{bottom:881.535000px;}
.y17{bottom:895.215000px;}
.y6c{bottom:895.575000px;}
.y90{bottom:898.095000px;}
.y48{bottom:902.415000px;}
.y11f{bottom:904.215000px;}
.yaf{bottom:909.975000px;}
.y16{bottom:915.735000px;}
.ye6{bottom:917.535000px;}
.y13e{bottom:921.855000px;}
.y6b{bottom:924.015000px;}
.y8f{bottom:926.535000px;}
.y47{bottom:930.855000px;}
.y11e{bottom:933.735000px;}
.y15{bottom:936.615000px;}
.yae{bottom:938.415000px;}
.ye5{bottom:945.975000px;}
.y13d{bottom:951.735000px;}
.y6a{bottom:952.485000px;}
.y8e{bottom:955.005000px;}
.y14{bottom:957.165000px;}
.y11d{bottom:957.525000px;}
.y46{bottom:959.325000px;}
.yad{bottom:966.885000px;}
.ye4{bottom:974.445000px;}
.y13c{bottom:975.525000px;}
.y13{bottom:978.045000px;}
.y69{bottom:980.925000px;}
.y11c{bottom:981.645000px;}
.y8d{bottom:983.445000px;}
.y45{bottom:987.765000px;}
.yac{bottom:995.325000px;}
.y13b{bottom:999.285000px;}
.y12{bottom:1000.725000px;}
.ye3{bottom:1002.885000px;}
.y11b{bottom:1005.405000px;}
.y68{bottom:1009.365000px;}
.y44{bottom:1016.205000px;}
.y8c{bottom:1023.765000px;}
.y11{bottom:1028.085000px;}
.y13a{bottom:1029.165000px;}
.ye2{bottom:1031.325000px;}
.y11a{bottom:1034.925000px;}
.y67{bottom:1037.805000px;}
.y43{bottom:1044.645000px;}
.y8b{bottom:1052.205000px;}
.y119{bottom:1059.045000px;}
.yfe{bottom:1059.765000px;}
.y66{bottom:1066.245000px;}
.y10{bottom:1067.685000px;}
.y42{bottom:1073.085000px;}
.y8a{bottom:1080.690000px;}
.y118{bottom:1082.850000px;}
.yfd{bottom:1088.250000px;}
.ycc{bottom:1094.730000px;}
.y41{bottom:1101.570000px;}
.yf{bottom:1102.650000px;}
.y65{bottom:1106.610000px;}
.y89{bottom:1109.490000px;}
.y117{bottom:1112.370000px;}
.ye{bottom:1126.410000px;}
.y40{bottom:1133.970000px;}
.y64{bottom:1136.490000px;}
.y88{bottom:1137.930000px;}
.y1{bottom:1147.650000px;}
.y3d{bottom:1157.730000px;}
.ya{bottom:1168.890000px;}
.y3c{bottom:1173.570000px;}
.y3b{bottom:1193.730000px;}
.h3{height:8.639850px;}
.hf{height:8.640000px;}
.h10{height:16.596000px;}
.h5{height:43.956000px;}
.h6{height:47.264766px;}
.h13{height:48.013594px;}
.hd{height:48.601406px;}
.h4{height:54.426094px;}
.he{height:58.121719px;}
.hb{height:58.833281px;}
.h12{height:59.343750px;}
.h7{height:60.516000px;}
.hc{height:63.175781px;}
.h9{height:63.949219px;}
.h2{height:65.884219px;}
.h8{height:67.824844px;}
.h11{height:74.181094px;}
.ha{height:106.155703px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:118.836000px;}
.w7{width:334.230000px;}
.w6{width:346.470000px;}
.w3{width:618.735000px;}
.w5{width:680.685000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x2{left:77.796000px;}
.x6{left:89.685000px;}
.x1{left:106.235987px;}
.x7{left:108.039000px;}
.x19{left:119.915987px;}
.x1a{left:133.271987px;}
.xb{left:135.431987px;}
.x5{left:144.429000px;}
.x16{left:154.154987px;}
.x1c{left:160.274987px;}
.x14{left:163.154987px;}
.x1e{left:169.274987px;}
.x1f{left:170.354987px;}
.x9{left:171.429000px;}
.x1d{left:173.954987px;}
.xd{left:179.354987px;}
.x1b{left:187.274987px;}
.xc{left:203.114987px;}
.xe{left:238.064987px;}
.x13{left:240.584987px;}
.x10{left:244.904987px;}
.x11{left:262.184987px;}
.x15{left:276.224987px;}
.x12{left:286.304987px;}
.x8{left:287.394000px;}
.xf{left:299.264987px;}
.x18{left:305.070000px;}
.xa{left:446.579987px;}
.x17{left:452.700000px;}
.x4{left:696.525000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.340267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.135467pt;}
.ls10{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.622080pt;}
.lsd{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.ls2{letter-spacing:1.902080pt;}
.ls15{letter-spacing:1.920000pt;}
.lsc{letter-spacing:29.578667pt;}
.ls9{letter-spacing:32.271360pt;}
.ls11{letter-spacing:33.562027pt;}
.ls8{letter-spacing:36.111360pt;}
.ls7{letter-spacing:46.218667pt;}
.lsf{letter-spacing:55.311360pt;}
.wsc{word-spacing:-64.000000pt;}
.wsa{word-spacing:-58.880000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.264000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.440000pt;}
.ws2{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-5.017600pt;}
._a{margin-left:-3.786240pt;}
._1c{margin-left:-2.859520pt;}
._7{margin-left:-1.896960pt;}
._3{margin-left:-0.908800pt;}
._2{width:1.267200pt;}
._6{width:2.218667pt;}
._1d{width:3.198293pt;}
._4{width:4.162133pt;}
._8{width:5.124267pt;}
._13{width:6.855680pt;}
._b{width:8.066560pt;}
._14{width:8.983040pt;}
._17{width:9.917440pt;}
._d{width:11.251200pt;}
._c{width:12.188160pt;}
._12{width:13.719040pt;}
._9{width:16.015360pt;}
._11{width:17.105920pt;}
._1e{width:18.206720pt;}
._16{width:19.253760pt;}
._15{width:20.561920pt;}
._1a{width:22.120960pt;}
._19{width:23.610880pt;}
._1f{width:24.855040pt;}
._1b{width:25.920000pt;}
._20{width:26.994347pt;}
._f{width:28.498347pt;}
._e{width:29.739520pt;}
._26{width:31.214080pt;}
._22{width:33.149440pt;}
._21{width:34.634240pt;}
._18{width:36.321280pt;}
._23{width:37.286400pt;}
._24{width:38.489600pt;}
._10{width:41.582080pt;}
._2a{width:57.984000pt;}
._2b{width:58.941013pt;}
._28{width:77.608107pt;}
._29{width:78.709333pt;}
._27{width:79.626667pt;}
._1{width:351.407360pt;}
._0{width:979.098453pt;}
._5{width:1463.018667pt;}
.fs2{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs4{font-size:106.240000pt;}
.y3{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.880000pt;}
.y3f{bottom:3.200000pt;}
.yd{bottom:3.840000pt;}
.y8{bottom:15.392000pt;}
.y6{bottom:15.712000pt;}
.yc{bottom:21.760000pt;}
.y9{bottom:27.200000pt;}
.y5{bottom:28.832000pt;}
.yb{bottom:39.706667pt;}
.y4{bottom:50.880000pt;}
.y3e{bottom:75.232000pt;}
.y2{bottom:99.552000pt;}
.ycb{bottom:100.512000pt;}
.y139{bottom:104.352000pt;}
.ye1{bottom:108.192000pt;}
.y63{bottom:108.832000pt;}
.y87{bottom:112.672000pt;}
.yab{bottom:114.912000pt;}
.y3a{bottom:119.712000pt;}
.yfc{bottom:120.352000pt;}
.y116{bottom:121.632000pt;}
.yca{bottom:125.792000pt;}
.y138{bottom:130.912000pt;}
.ye0{bottom:133.466667pt;}
.y62{bottom:135.706667pt;}
.y86{bottom:137.946667pt;}
.yaa{bottom:140.186667pt;}
.y39{bottom:144.986667pt;}
.y115{bottom:148.186667pt;}
.yc9{bottom:151.066667pt;}
.y137{bottom:152.026667pt;}
.yfb{bottom:156.186667pt;}
.ydf{bottom:158.746667pt;}
.y85{bottom:163.226667pt;}
.ya9{bottom:165.466667pt;}
.y61{bottom:169.306667pt;}
.y38{bottom:170.266667pt;}
.yc8{bottom:176.386667pt;}
.y136{bottom:178.626667pt;}
.y84{bottom:188.546667pt;}
.ya8{bottom:190.786667pt;}
.y37{bottom:192.066667pt;}
.y60{bottom:194.626667pt;}
.y114{bottom:195.906667pt;}
.y135{bottom:199.746667pt;}
.yc7{bottom:201.666667pt;}
.yde{bottom:202.946667pt;}
.y36{bottom:211.266667pt;}
.y83{bottom:213.826667pt;}
.y109{bottom:216.066667pt;}
.ya7{bottom:216.386667pt;}
.y113{bottom:217.026667pt;}
.yfa{bottom:217.346667pt;}
.y5f{bottom:219.906667pt;}
.y134{bottom:220.866667pt;}
.yc6{bottom:226.946667pt;}
.y35{bottom:230.786667pt;}
.y112{bottom:238.146667pt;}
.y82{bottom:239.106667pt;}
.y108{bottom:241.346667pt;}
.ya6{bottom:241.666667pt;}
.yf9{bottom:242.626667pt;}
.y5e{bottom:245.186667pt;}
.ydd{bottom:246.786667pt;}
.y133{bottom:247.426667pt;}
.y34{bottom:250.306667pt;}
.yc5{bottom:252.226667pt;}
.y81{bottom:264.386667pt;}
.y111{bottom:264.706667pt;}
.ya5{bottom:266.946667pt;}
.yf8{bottom:267.906667pt;}
.y132{bottom:268.546667pt;}
.y33{bottom:269.506667pt;}
.y5d{bottom:270.466667pt;}
.ydc{bottom:272.066667pt;}
.yc4{bottom:277.506667pt;}
.y107{bottom:285.506667pt;}
.y110{bottom:285.826667pt;}
.y150{bottom:287.106667pt;}
.y32{bottom:289.053333pt;}
.y80{bottom:290.013333pt;}
.ya4{bottom:292.253333pt;}
.yf7{bottom:293.533333pt;}
.y131{bottom:295.133333pt;}
.y5c{bottom:295.773333pt;}
.ydb{bottom:297.373333pt;}
.yc3{bottom:302.813333pt;}
.y31{bottom:308.253333pt;}
.y106{bottom:310.813333pt;}
.y10f{bottom:312.093333pt;}
.y7f{bottom:315.293333pt;}
.y130{bottom:316.253333pt;}
.ya3{bottom:317.533333pt;}
.yf6{bottom:318.813333pt;}
.y5b{bottom:321.373333pt;}
.yda{bottom:322.653333pt;}
.y30{bottom:327.773333pt;}
.yc2{bottom:328.093333pt;}
.y14f{bottom:329.373333pt;}
.y10e{bottom:333.533333pt;}
.y105{bottom:336.093333pt;}
.y7e{bottom:340.573333pt;}
.ya2{bottom:342.813333pt;}
.y5a{bottom:346.653333pt;}
.y2f{bottom:347.293333pt;}
.yd9{bottom:347.933333pt;}
.yc1{bottom:353.373333pt;}
.yf5{bottom:354.653333pt;}
.y14e{bottom:355.933333pt;}
.y10d{bottom:359.773333pt;}
.y104{bottom:361.373333pt;}
.y7d{bottom:365.853333pt;}
.y2e{bottom:366.493333pt;}
.ya1{bottom:368.093333pt;}
.y12f{bottom:369.373333pt;}
.y59{bottom:371.933333pt;}
.y14d{bottom:377.053333pt;}
.yc0{bottom:378.653333pt;}
.yf4{bottom:379.933333pt;}
.y10c{bottom:380.893333pt;}
.y2d{bottom:386.013333pt;}
.y7c{bottom:391.133333pt;}
.yd8{bottom:392.093333pt;}
.ya0{bottom:393.373333pt;}
.y12e{bottom:395.613333pt;}
.y58{bottom:397.213333pt;}
.y10b{bottom:402.373333pt;}
.ybf{bottom:403.973333pt;}
.y14c{bottom:404.933333pt;}
.y2c{bottom:405.253333pt;}
.y7b{bottom:416.453333pt;}
.yd7{bottom:417.413333pt;}
.y9f{bottom:418.693333pt;}
.y12d{bottom:422.213333pt;}
.y57{bottom:422.533333pt;}
.y2b{bottom:424.773333pt;}
.ybe{bottom:429.253333pt;}
.yf3{bottom:430.533333pt;}
.y14b{bottom:432.773333pt;}
.y7a{bottom:441.733333pt;}
.yd6{bottom:442.693333pt;}
.y12c{bottom:443.333333pt;}
.y9e{bottom:443.973333pt;}
.y2a{bottom:444.293333pt;}
.y56{bottom:447.813333pt;}
.y10a{bottom:451.013333pt;}
.ybd{bottom:454.533333pt;}
.yf2{bottom:455.813333pt;}
.y14a{bottom:459.333333pt;}
.y29{bottom:463.493333pt;}
.y79{bottom:467.013333pt;}
.yd5{bottom:467.973333pt;}
.y9d{bottom:469.253333pt;}
.y12b{bottom:469.893333pt;}
.y55{bottom:473.093333pt;}
.ybc{bottom:479.813333pt;}
.yf1{bottom:481.093333pt;}
.y28{bottom:483.013333pt;}
.y149{bottom:485.893333pt;}
.y12a{bottom:491.013333pt;}
.y78{bottom:492.293333pt;}
.yd4{bottom:493.253333pt;}
.y9c{bottom:494.533333pt;}
.y54{bottom:498.373333pt;}
.y27{bottom:502.213333pt;}
.ybb{bottom:505.093333pt;}
.yf0{bottom:506.373333pt;}
.y148{bottom:512.160000pt;}
.y77{bottom:517.600000pt;}
.y9b{bottom:519.840000pt;}
.y26{bottom:523.040000pt;}
.y53{bottom:523.680000pt;}
.yba{bottom:530.720000pt;}
.yef{bottom:531.680000pt;}
.yd3{bottom:537.120000pt;}
.y25{bottom:538.080000pt;}
.y147{bottom:538.720000pt;}
.y76{bottom:542.880000pt;}
.y129{bottom:544.160000pt;}
.y9a{bottom:545.120000pt;}
.y52{bottom:548.960000pt;}
.yb9{bottom:556.000000pt;}
.y24{bottom:556.320000pt;}
.yee{bottom:556.960000pt;}
.yd2{bottom:562.400000pt;}
.y146{bottom:565.280000pt;}
.y75{bottom:568.160000pt;}
.y99{bottom:570.400000pt;}
.y128{bottom:570.720000pt;}
.y51{bottom:574.240000pt;}
.y23{bottom:574.880000pt;}
.y103{bottom:575.840000pt;}
.yb8{bottom:581.280000pt;}
.yed{bottom:582.240000pt;}
.y145{bottom:586.400000pt;}
.yd1{bottom:587.680000pt;}
.y127{bottom:591.840000pt;}
.y22{bottom:593.120000pt;}
.y74{bottom:593.440000pt;}
.y98{bottom:595.680000pt;}
.y50{bottom:599.520000pt;}
.y102{bottom:601.120000pt;}
.yb7{bottom:606.560000pt;}
.y21{bottom:611.680000pt;}
.yd0{bottom:612.960000pt;}
.y73{bottom:618.720000pt;}
.y97{bottom:620.960000pt;}
.y4f{bottom:624.826667pt;}
.yec{bottom:626.426667pt;}
.y20{bottom:629.946667pt;}
.yb6{bottom:631.866667pt;}
.y144{bottom:634.106667pt;}
.ycf{bottom:638.266667pt;}
.y126{bottom:639.546667pt;}
.y72{bottom:644.026667pt;}
.y96{bottom:646.266667pt;}
.y1f{bottom:648.506667pt;}
.y4e{bottom:650.106667pt;}
.yeb{bottom:651.706667pt;}
.yb5{bottom:657.146667pt;}
.y125{bottom:660.666667pt;}
.y1e{bottom:666.746667pt;}
.y71{bottom:669.306667pt;}
.y95{bottom:671.866667pt;}
.y4d{bottom:675.386667pt;}
.yea{bottom:676.986667pt;}
.yce{bottom:680.186667pt;}
.y143{bottom:681.786667pt;}
.yb4{bottom:682.426667pt;}
.y1d{bottom:685.306667pt;}
.y124{bottom:687.226667pt;}
.y70{bottom:694.586667pt;}
.y101{bottom:695.546667pt;}
.y94{bottom:697.146667pt;}
.y4c{bottom:700.666667pt;}
.ye9{bottom:702.266667pt;}
.y142{bottom:702.906667pt;}
.y1c{bottom:703.546667pt;}
.ycd{bottom:706.426667pt;}
.yb3{bottom:707.706667pt;}
.y123{bottom:713.466667pt;}
.y6f{bottom:719.866667pt;}
.y100{bottom:720.826667pt;}
.y1b{bottom:722.106667pt;}
.y93{bottom:722.426667pt;}
.y4b{bottom:725.946667pt;}
.ye8{bottom:727.546667pt;}
.y141{bottom:729.466667pt;}
.yb2{bottom:732.986667pt;}
.y122{bottom:734.946667pt;}
.y1a{bottom:740.386667pt;}
.y6e{bottom:745.506667pt;}
.yff{bottom:746.146667pt;}
.y92{bottom:747.746667pt;}
.y140{bottom:750.626667pt;}
.y4a{bottom:751.266667pt;}
.y121{bottom:756.066667pt;}
.yb1{bottom:758.306667pt;}
.y19{bottom:758.946667pt;}
.y6d{bottom:770.786667pt;}
.ye7{bottom:771.426667pt;}
.y13f{bottom:771.746667pt;}
.y91{bottom:773.026667pt;}
.y49{bottom:776.866667pt;}
.y18{bottom:777.186667pt;}
.y120{bottom:782.306667pt;}
.yb0{bottom:783.586667pt;}
.y17{bottom:795.746667pt;}
.y6c{bottom:796.066667pt;}
.y90{bottom:798.306667pt;}
.y48{bottom:802.146667pt;}
.y11f{bottom:803.746667pt;}
.yaf{bottom:808.866667pt;}
.y16{bottom:813.986667pt;}
.ye6{bottom:815.586667pt;}
.y13e{bottom:819.426667pt;}
.y6b{bottom:821.346667pt;}
.y8f{bottom:823.586667pt;}
.y47{bottom:827.426667pt;}
.y11e{bottom:829.986667pt;}
.y15{bottom:832.546667pt;}
.yae{bottom:834.146667pt;}
.ye5{bottom:840.866667pt;}
.y13d{bottom:845.986667pt;}
.y6a{bottom:846.653333pt;}
.y8e{bottom:848.893333pt;}
.y14{bottom:850.813333pt;}
.y11d{bottom:851.133333pt;}
.y46{bottom:852.733333pt;}
.yad{bottom:859.453333pt;}
.ye4{bottom:866.173333pt;}
.y13c{bottom:867.133333pt;}
.y13{bottom:869.373333pt;}
.y69{bottom:871.933333pt;}
.y11c{bottom:872.573333pt;}
.y8d{bottom:874.173333pt;}
.y45{bottom:878.013333pt;}
.yac{bottom:884.733333pt;}
.y13b{bottom:888.253333pt;}
.y12{bottom:889.533333pt;}
.ye3{bottom:891.453333pt;}
.y11b{bottom:893.693333pt;}
.y68{bottom:897.213333pt;}
.y44{bottom:903.293333pt;}
.y8c{bottom:910.013333pt;}
.y11{bottom:913.853333pt;}
.y13a{bottom:914.813333pt;}
.ye2{bottom:916.733333pt;}
.y11a{bottom:919.933333pt;}
.y67{bottom:922.493333pt;}
.y43{bottom:928.573333pt;}
.y8b{bottom:935.293333pt;}
.y119{bottom:941.373333pt;}
.yfe{bottom:942.013333pt;}
.y66{bottom:947.773333pt;}
.y10{bottom:949.053333pt;}
.y42{bottom:953.853333pt;}
.y8a{bottom:960.613333pt;}
.y118{bottom:962.533333pt;}
.yfd{bottom:967.333333pt;}
.ycc{bottom:973.093333pt;}
.y41{bottom:979.173333pt;}
.yf{bottom:980.133333pt;}
.y65{bottom:983.653333pt;}
.y89{bottom:986.213333pt;}
.y117{bottom:988.773333pt;}
.ye{bottom:1001.253333pt;}
.y40{bottom:1007.973333pt;}
.y64{bottom:1010.213333pt;}
.y88{bottom:1011.493333pt;}
.y1{bottom:1020.133333pt;}
.y3d{bottom:1029.093333pt;}
.ya{bottom:1039.013333pt;}
.y3c{bottom:1043.173333pt;}
.y3b{bottom:1061.093333pt;}
.h3{height:7.679867pt;}
.hf{height:7.680000pt;}
.h10{height:14.752000pt;}
.h5{height:39.072000pt;}
.h6{height:42.013125pt;}
.h13{height:42.678750pt;}
.hd{height:43.201250pt;}
.h4{height:48.378750pt;}
.he{height:51.663750pt;}
.hb{height:52.296250pt;}
.h12{height:52.750000pt;}
.h7{height:53.792000pt;}
.hc{height:56.156250pt;}
.h9{height:56.843750pt;}
.h2{height:58.563750pt;}
.h8{height:60.288750pt;}
.h11{height:65.938750pt;}
.ha{height:94.360625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:105.632000pt;}
.w7{width:297.093333pt;}
.w6{width:307.973333pt;}
.w3{width:549.986667pt;}
.w5{width:605.053333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x2{left:69.152000pt;}
.x6{left:79.720000pt;}
.x1{left:94.431988pt;}
.x7{left:96.034667pt;}
.x19{left:106.591988pt;}
.x1a{left:118.463988pt;}
.xb{left:120.383988pt;}
.x5{left:128.381333pt;}
.x16{left:137.026655pt;}
.x1c{left:142.466655pt;}
.x14{left:145.026655pt;}
.x1e{left:150.466655pt;}
.x1f{left:151.426655pt;}
.x9{left:152.381333pt;}
.x1d{left:154.626655pt;}
.xd{left:159.426655pt;}
.x1b{left:166.466655pt;}
.xc{left:180.546655pt;}
.xe{left:211.613322pt;}
.x13{left:213.853322pt;}
.x10{left:217.693322pt;}
.x11{left:233.053322pt;}
.x15{left:245.533322pt;}
.x12{left:254.493322pt;}
.x8{left:255.461333pt;}
.xf{left:266.013322pt;}
.x18{left:271.173333pt;}
.xa{left:396.959988pt;}
.x17{left:402.400000pt;}
.x4{left:619.133333pt;}
}




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