
    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_3a6f8f839a823ba28b6a8620.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_5f411482ff0cbafdce2defc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061035;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_ecf93880b5358373d84d792b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_87e1933eb61dea6cd7b7598b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_42cb7b0dd6f9aa0c2e48dfd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dd1925b8194a829f7fb8d11d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_58009f1f732a4fb64796d1eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971680;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_af55a30843dc30e5d56dea24.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_14edec54992aa2c4433fa047.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231708,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245615,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.412150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v2{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:41.760000px;}
.ls21{letter-spacing:-2.268000px;}
.ls24{letter-spacing:-1.548000px;}
.ls22{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-0.870000px;}
.ls8{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.170400px;}
.ls23{letter-spacing:-0.054120px;}
.ls9{letter-spacing:-0.034560px;}
.lsa{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.169200px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.262080px;}
.lse{letter-spacing:0.366000px;}
.lsb{letter-spacing:0.434400px;}
.lsf{letter-spacing:0.463680px;}
.ls17{letter-spacing:0.513600px;}
.ls1b{letter-spacing:0.530400px;}
.ls26{letter-spacing:0.531412px;}
.ls18{letter-spacing:0.547200px;}
.ls25{letter-spacing:0.648257px;}
.ls1a{letter-spacing:0.820527px;}
.ls3{letter-spacing:0.858000px;}
.lsd{letter-spacing:0.870000px;}
.ls1c{letter-spacing:1.212000px;}
.ls1d{letter-spacing:1.668000px;}
.ls19{letter-spacing:3.069990px;}
.ls14{letter-spacing:12.900000px;}
.ls12{letter-spacing:15.660000px;}
.ls13{letter-spacing:16.380000px;}
.ls15{letter-spacing:21.300000px;}
.ls4{letter-spacing:27.164241px;}
.ls1f{letter-spacing:358.140000px;}
.ls1e{letter-spacing:1448.940000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-19.457280px;}
.ws3{word-spacing:-19.448640px;}
.ws4{word-spacing:-19.405440px;}
.ws13{word-spacing:-17.772000px;}
.ws12{word-spacing:-17.107200px;}
.ws10{word-spacing:-17.090400px;}
.ws11{word-spacing:-17.073600px;}
.ws14{word-spacing:-17.023680px;}
.wsd{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.389600px;}
.wse{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.810000px;}
.wsa{word-spacing:-15.798000px;}
.ws15{word-spacing:-15.690000px;}
.ws17{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.109200px;}
.ws18{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.292000px;}
.ws7{word-spacing:-13.147200px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.440000px;}
.wsb{word-spacing:0.000000px;}
._1b{margin-left:-5.657466px;}
._15{margin-left:-3.789770px;}
._18{margin-left:-2.530560px;}
._0{margin-left:-1.192320px;}
._2{width:1.596480px;}
._3{width:3.071814px;}
._4{width:4.793839px;}
._d{width:5.961058px;}
._c{width:7.557121px;}
._b{width:8.691128px;}
._13{width:9.874528px;}
._f{width:10.995840px;}
._7{width:12.144482px;}
._6{width:13.290645px;}
._17{width:15.123360px;}
._9{width:16.152240px;}
._5{width:18.101731px;}
._e{width:19.143955px;}
._19{width:20.534400px;}
._11{width:21.708788px;}
._1c{width:22.846080px;}
._1d{width:23.994643px;}
._1a{width:25.727946px;}
._12{width:26.877657px;}
._14{width:28.042197px;}
._a{width:30.047525px;}
._1e{width:32.906728px;}
._8{width:34.631669px;}
._22{width:37.816320px;}
._21{width:39.995520px;}
._20{width:41.108160px;}
._1f{width:44.530560px;}
._16{width:45.793920px;}
._2b{width:72.386880px;}
._23{width:81.925440px;}
._24{width:83.190720px;}
._10{width:86.437920px;}
._2a{width:115.701120px;}
._29{width:117.363840px;}
._25{width:118.821120px;}
._26{width:119.867520px;}
._28{width:237.913920px;}
._27{width:239.510400px;}
._1{width:1388.186880px;}
.fc3{color:rgb(68,83,106);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:6.300000px;}
.yb5{bottom:6.480000px;}
.y2{bottom:6.660000px;}
.yb6{bottom:9.540000px;}
.y3{bottom:9.720000px;}
.yce{bottom:28.260000px;}
.yd0{bottom:50.040000px;}
.ycd{bottom:50.220000px;}
.y5{bottom:66.240000px;}
.ycf{bottom:72.000000px;}
.ycc{bottom:72.180000px;}
.ycb{bottom:93.960000px;}
.yd4{bottom:94.140000px;}
.yb8{bottom:94.860000px;}
.y98{bottom:113.040000px;}
.yac{bottom:113.400000px;}
.y6c{bottom:113.940000px;}
.y3c{bottom:114.300000px;}
.yd3{bottom:115.920000px;}
.yca{bottom:116.100000px;}
.ye4{bottom:131.220000px;}
.y97{bottom:134.856000px;}
.yab{bottom:135.216000px;}
.y6b{bottom:135.756000px;}
.y3b{bottom:136.116000px;}
.yc9{bottom:137.880000px;}
.ye3{bottom:153.210000px;}
.y96{bottom:156.810000px;}
.yaa{bottom:156.990000px;}
.y6a{bottom:157.530000px;}
.y3a{bottom:158.070000px;}
.ye2{bottom:174.990000px;}
.y95{bottom:178.590000px;}
.ya9{bottom:178.770000px;}
.y69{bottom:179.310000px;}
.y39{bottom:179.850000px;}
.ye1{bottom:196.770000px;}
.y94{bottom:200.370000px;}
.ya8{bottom:200.730000px;}
.y68{bottom:201.270000px;}
.y38{bottom:201.630000px;}
.ye0{bottom:218.550000px;}
.y93{bottom:222.150000px;}
.ya7{bottom:222.510000px;}
.y67{bottom:223.050000px;}
.y100{bottom:223.230000px;}
.y37{bottom:223.410000px;}
.yb3{bottom:234.390000px;}
.ydf{bottom:240.330000px;}
.y92{bottom:243.930000px;}
.ya6{bottom:244.290000px;}
.y66{bottom:244.830000px;}
.yff{bottom:245.010000px;}
.y36{bottom:245.190000px;}
.yb2{bottom:248.610000px;}
.yde{bottom:262.290000px;}
.y91{bottom:265.890000px;}
.ya5{bottom:266.070000px;}
.y65{bottom:266.610000px;}
.yfe{bottom:266.790000px;}
.y35{bottom:267.150000px;}
.ydd{bottom:284.070000px;}
.y9a{bottom:287.670000px;}
.y90{bottom:287.850000px;}
.y64{bottom:288.390000px;}
.yfd{bottom:288.750000px;}
.y34{bottom:288.930000px;}
.ydc{bottom:305.850000px;}
.y99{bottom:309.630000px;}
.y8f{bottom:309.810000px;}
.y63{bottom:310.350000px;}
.yfc{bottom:310.530000px;}
.y33{bottom:310.710000px;}
.ydb{bottom:327.630000px;}
.y32{bottom:329.970000px;}
.y8e{bottom:331.590000px;}
.y62{bottom:332.130000px;}
.yfb{bottom:332.310000px;}
.y31{bottom:345.810000px;}
.yda{bottom:349.590000px;}
.y8d{bottom:353.370000px;}
.y61{bottom:353.910000px;}
.yfa{bottom:354.090000px;}
.y30{bottom:361.110000px;}
.yd9{bottom:371.370000px;}
.y8c{bottom:375.150000px;}
.y60{bottom:375.690000px;}
.yf9{bottom:376.050000px;}
.y2f{bottom:378.390000px;}
.yd8{bottom:393.195000px;}
.y2e{bottom:395.535000px;}
.y8b{bottom:396.975000px;}
.y5f{bottom:397.695000px;}
.yf8{bottom:397.875000px;}
.y2d{bottom:412.815000px;}
.yd7{bottom:414.975000px;}
.y8a{bottom:418.935000px;}
.y5e{bottom:419.475000px;}
.yf7{bottom:419.655000px;}
.y2c{bottom:430.095000px;}
.yd6{bottom:436.755000px;}
.y89{bottom:440.715000px;}
.yb1{bottom:440.895000px;}
.y5d{bottom:441.255000px;}
.yf6{bottom:441.435000px;}
.y2b{bottom:447.375000px;}
.yd5{bottom:458.715000px;}
.y88{bottom:462.495000px;}
.yb0{bottom:462.855000px;}
.y5c{bottom:463.035000px;}
.yf5{bottom:463.215000px;}
.y2a{bottom:464.655000px;}
.yd2{bottom:474.195000px;}
.y29{bottom:481.755000px;}
.y87{bottom:484.275000px;}
.ya4{bottom:484.455000px;}
.yaf{bottom:484.635000px;}
.y5b{bottom:484.815000px;}
.yf4{bottom:485.175000px;}
.y28{bottom:499.035000px;}
.y86{bottom:506.235000px;}
.ya3{bottom:506.415000px;}
.y5a{bottom:506.775000px;}
.yf3{bottom:506.955000px;}
.y27{bottom:516.315000px;}
.y85{bottom:528.015000px;}
.ya2{bottom:528.195000px;}
.y59{bottom:528.555000px;}
.yf2{bottom:528.735000px;}
.y26{bottom:533.595000px;}
.y84{bottom:549.795000px;}
.ya1{bottom:550.155000px;}
.y58{bottom:550.335000px;}
.yf1{bottom:550.515000px;}
.y25{bottom:550.875000px;}
.y24{bottom:568.155000px;}
.y83{bottom:571.575000px;}
.ya0{bottom:571.935000px;}
.y57{bottom:572.115000px;}
.yf0{bottom:572.475000px;}
.y23{bottom:585.255000px;}
.y82{bottom:593.355000px;}
.y9f{bottom:593.715000px;}
.y56{bottom:594.075000px;}
.yef{bottom:594.255000px;}
.y22{bottom:602.535000px;}
.y81{bottom:615.315000px;}
.y9e{bottom:615.495000px;}
.y55{bottom:615.855000px;}
.yee{bottom:616.035000px;}
.y21{bottom:619.815000px;}
.yd1{bottom:628.455000px;}
.y20{bottom:637.095000px;}
.y9d{bottom:637.275000px;}
.y54{bottom:637.635000px;}
.yed{bottom:637.815000px;}
.yc8{bottom:650.985000px;}
.y1f{bottom:654.405000px;}
.y80{bottom:658.905000px;}
.y9c{bottom:659.265000px;}
.y53{bottom:659.445000px;}
.yec{bottom:659.625000px;}
.y1e{bottom:671.685000px;}
.y7f{bottom:680.865000px;}
.y9b{bottom:681.045000px;}
.y52{bottom:681.225000px;}
.yeb{bottom:681.585000px;}
.y1d{bottom:688.785000px;}
.y7e{bottom:702.825000px;}
.y51{bottom:703.185000px;}
.yea{bottom:703.365000px;}
.y1c{bottom:706.065000px;}
.y1b{bottom:723.345000px;}
.y7d{bottom:724.605000px;}
.y50{bottom:724.965000px;}
.ye9{bottom:725.145000px;}
.y1a{bottom:740.625000px;}
.y7c{bottom:746.565000px;}
.y4f{bottom:746.745000px;}
.ye8{bottom:746.925000px;}
.y19{bottom:757.905000px;}
.y7b{bottom:768.345000px;}
.y4e{bottom:768.525000px;}
.ye7{bottom:768.885000px;}
.y18{bottom:775.005000px;}
.y7a{bottom:790.125000px;}
.y4d{bottom:790.305000px;}
.ye6{bottom:790.665000px;}
.y17{bottom:795.525000px;}
.yc6{bottom:805.425000px;}
.y79{bottom:811.905000px;}
.y4c{bottom:812.265000px;}
.ye5{bottom:812.445000px;}
.y16{bottom:816.945000px;}
.y78{bottom:833.685000px;}
.y4b{bottom:834.045000px;}
.yc5{bottom:834.225000px;}
.y15{bottom:836.925000px;}
.y77{bottom:855.645000px;}
.y4a{bottom:855.825000px;}
.yc4{bottom:856.005000px;}
.y14{bottom:859.785000px;}
.y76{bottom:877.425000px;}
.y49{bottom:877.605000px;}
.yc3{bottom:877.965000px;}
.y13{bottom:880.125000px;}
.y75{bottom:899.250000px;}
.y48{bottom:899.610000px;}
.yc2{bottom:899.790000px;}
.y12{bottom:904.650000px;}
.y74{bottom:921.030000px;}
.y47{bottom:921.390000px;}
.yc1{bottom:921.570000px;}
.y11{bottom:922.470000px;}
.y73{bottom:942.810000px;}
.y46{bottom:943.170000px;}
.yc0{bottom:943.350000px;}
.y10{bottom:944.250000px;}
.yf{bottom:964.230000px;}
.y72{bottom:964.770000px;}
.y45{bottom:964.950000px;}
.ybf{bottom:965.310000px;}
.ye{bottom:983.130000px;}
.y71{bottom:986.550000px;}
.y44{bottom:986.730000px;}
.ybe{bottom:987.090000px;}
.y70{bottom:1008.330000px;}
.y43{bottom:1008.690000px;}
.yd{bottom:1008.870000px;}
.y6f{bottom:1030.110000px;}
.y42{bottom:1030.470000px;}
.ybd{bottom:1030.650000px;}
.yc{bottom:1034.790000px;}
.y6e{bottom:1052.070000px;}
.y41{bottom:1052.250000px;}
.ybc{bottom:1052.430000px;}
.yb{bottom:1057.470000px;}
.ya{bottom:1072.050000px;}
.y6d{bottom:1073.850000px;}
.y40{bottom:1074.030000px;}
.ybb{bottom:1074.390000px;}
.y9{bottom:1089.330000px;}
.yae{bottom:1095.630000px;}
.y3f{bottom:1095.990000px;}
.yba{bottom:1096.170000px;}
.y8{bottom:1106.610000px;}
.yad{bottom:1117.590000px;}
.y3e{bottom:1117.770000px;}
.yb9{bottom:1117.950000px;}
.y7{bottom:1123.710000px;}
.yb7{bottom:1137.210000px;}
.y3d{bottom:1139.550000px;}
.y6{bottom:1140.990000px;}
.yb4{bottom:1152.900000px;}
.y4{bottom:1168.920000px;}
.y1{bottom:1184.580000px;}
.h17{height:21.780000px;}
.h19{height:21.816000px;}
.h16{height:25.200000px;}
.h2{height:25.380000px;}
.h7{height:34.036523px;}
.h11{height:35.049375px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.hf{height:46.251562px;}
.h12{height:46.736719px;}
.h14{height:48.224531px;}
.h10{height:49.255313px;}
.h13{height:49.906406px;}
.he{height:50.364141px;}
.hd{height:53.966953px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h4{height:55.825312px;}
.h3{height:56.084062px;}
.h8{height:58.585781px;}
.h15{height:70.011563px;}
.hb{height:71.224453px;}
.h18{height:153.540000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:61.200000px;}
.w6{width:332.895000px;}
.w5{width:333.075000px;}
.w3{width:619.350000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x42{left:12.420000px;}
.x52{left:27.900000px;}
.x43{left:31.494000px;}
.x51{left:64.974000px;}
.x4b{left:69.834000px;}
.x44{left:73.974000px;}
.x61{left:86.040000px;}
.x5c{left:88.380000px;}
.x45{left:92.334000px;}
.x55{left:104.400000px;}
.x1{left:108.036000px;}
.x8{left:111.635987px;}
.x6{left:116.135987px;}
.xb{left:119.375987px;}
.x40{left:120.996000px;}
.x41{left:122.040000px;}
.x59{left:123.120000px;}
.x20{left:125.855987px;}
.x58{left:126.894000px;}
.x21{left:129.275987px;}
.x4c{left:131.439000px;}
.x23{left:140.075987px;}
.x29{left:144.215987px;}
.x1a{left:150.869987px;}
.x1f{left:152.309987px;}
.x5d{left:153.945000px;}
.x53{left:155.025000px;}
.x5{left:159.689987px;}
.x11{left:161.129987px;}
.x46{left:163.119000px;}
.x4d{left:165.279000px;}
.x3{left:169.230000px;}
.x60{left:170.325000px;}
.x19{left:174.089987px;}
.x10{left:181.289987px;}
.x47{left:185.439000px;}
.x3b{left:191.189987px;}
.xa{left:197.669987px;}
.x5b{left:202.539000px;}
.x4a{left:204.519000px;}
.x5e{left:206.505000px;}
.x48{left:209.559000px;}
.x56{left:212.985000px;}
.x38{left:215.849987px;}
.x49{left:229.719000px;}
.x39{left:231.329987px;}
.x4e{left:237.099000px;}
.x3d{left:238.529987px;}
.x9{left:241.589987px;}
.x63{left:245.189987px;}
.x2a{left:249.014987px;}
.x57{left:252.045000px;}
.x54{left:254.385000px;}
.x32{left:263.414987px;}
.x4f{left:266.439000px;}
.x5f{left:269.865000px;}
.x2e{left:270.974987px;}
.xf{left:278.714987px;}
.x2c{left:286.094987px;}
.x2f{left:289.514987px;}
.x5a{left:294.519000px;}
.x35{left:299.414987px;}
.x62{left:304.995000px;}
.x50{left:319.029000px;}
.xd{left:347.654987px;}
.x26{left:358.994987px;}
.x7{left:365.474987px;}
.x24{left:388.334987px;}
.x18{left:398.054987px;}
.xc{left:408.314987px;}
.xe{left:418.784987px;}
.x16{left:423.104987px;}
.x37{left:442.184987px;}
.x4{left:446.684987px;}
.x34{left:455.144987px;}
.x64{left:461.444987px;}
.x17{left:466.484987px;}
.x15{left:473.684987px;}
.x25{left:478.904987px;}
.x22{left:483.764987px;}
.x3e{left:506.984987px;}
.x1e{left:510.404987px;}
.x27{left:522.824987px;}
.x12{left:524.444987px;}
.x28{left:536.504987px;}
.x33{left:539.744987px;}
.x31{left:544.064987px;}
.x2b{left:585.464987px;}
.x1c{left:589.289987px;}
.x30{left:596.489987px;}
.x36{left:636.269987px;}
.x14{left:650.669987px;}
.x1b{left:663.269987px;}
.x13{left:665.249987px;}
.x2d{left:674.789987px;}
.x3c{left:693.509987px;}
.x3f{left:716.369987px;}
.x1d{left:721.409987px;}
.x3a{left:743.189987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v2{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:37.120000pt;}
.ls21{letter-spacing:-2.016000pt;}
.ls24{letter-spacing:-1.376000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-0.773333pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.151467pt;}
.ls23{letter-spacing:-0.048107pt;}
.ls9{letter-spacing:-0.030720pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.150400pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.325333pt;}
.lsb{letter-spacing:0.386133pt;}
.lsf{letter-spacing:0.412160pt;}
.ls17{letter-spacing:0.456533pt;}
.ls1b{letter-spacing:0.471467pt;}
.ls26{letter-spacing:0.472366pt;}
.ls18{letter-spacing:0.486400pt;}
.ls25{letter-spacing:0.576228pt;}
.ls1a{letter-spacing:0.729357pt;}
.ls3{letter-spacing:0.762667pt;}
.lsd{letter-spacing:0.773333pt;}
.ls1c{letter-spacing:1.077333pt;}
.ls1d{letter-spacing:1.482667pt;}
.ls19{letter-spacing:2.728880pt;}
.ls14{letter-spacing:11.466667pt;}
.ls12{letter-spacing:13.920000pt;}
.ls13{letter-spacing:14.560000pt;}
.ls15{letter-spacing:18.933333pt;}
.ls4{letter-spacing:24.145992pt;}
.ls1f{letter-spacing:318.346667pt;}
.ls1e{letter-spacing:1287.946667pt;}
.ws2{word-spacing:-17.295360pt;}
.ws3{word-spacing:-17.287680pt;}
.ws4{word-spacing:-17.249280pt;}
.ws13{word-spacing:-15.797333pt;}
.ws12{word-spacing:-15.206400pt;}
.ws10{word-spacing:-15.191467pt;}
.ws11{word-spacing:-15.176533pt;}
.ws14{word-spacing:-15.132160pt;}
.wsd{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.568533pt;}
.wse{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.053333pt;}
.wsa{word-spacing:-14.042667pt;}
.ws15{word-spacing:-13.946667pt;}
.ws17{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.430400pt;}
.ws18{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.280000pt;}
.wsf{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.704000pt;}
.ws7{word-spacing:-11.686400pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.280000pt;}
.wsb{word-spacing:0.000000pt;}
._1b{margin-left:-5.028859pt;}
._15{margin-left:-3.368685pt;}
._18{margin-left:-2.249387pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.419093pt;}
._3{width:2.730501pt;}
._4{width:4.261190pt;}
._d{width:5.298718pt;}
._c{width:6.717440pt;}
._b{width:7.725447pt;}
._13{width:8.777358pt;}
._f{width:9.774080pt;}
._7{width:10.795095pt;}
._6{width:11.813906pt;}
._17{width:13.442987pt;}
._9{width:14.357547pt;}
._5{width:16.090428pt;}
._e{width:17.016849pt;}
._19{width:18.252800pt;}
._11{width:19.296701pt;}
._1c{width:20.307627pt;}
._1d{width:21.328572pt;}
._1a{width:22.869285pt;}
._12{width:23.891251pt;}
._14{width:24.926398pt;}
._a{width:26.708911pt;}
._1e{width:29.250425pt;}
._8{width:30.783706pt;}
._22{width:33.614507pt;}
._21{width:35.551573pt;}
._20{width:36.540587pt;}
._1f{width:39.582720pt;}
._16{width:40.705707pt;}
._2b{width:64.343893pt;}
._23{width:72.822613pt;}
._24{width:73.947307pt;}
._10{width:76.833707pt;}
._2a{width:102.845440pt;}
._29{width:104.323413pt;}
._25{width:105.618773pt;}
._26{width:106.548907pt;}
._28{width:211.479040pt;}
._27{width:212.898133pt;}
._1{width:1233.943893pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:5.600000pt;}
.yb5{bottom:5.760000pt;}
.y2{bottom:5.920000pt;}
.yb6{bottom:8.480000pt;}
.y3{bottom:8.640000pt;}
.yce{bottom:25.120000pt;}
.yd0{bottom:44.480000pt;}
.ycd{bottom:44.640000pt;}
.y5{bottom:58.880000pt;}
.ycf{bottom:64.000000pt;}
.ycc{bottom:64.160000pt;}
.ycb{bottom:83.520000pt;}
.yd4{bottom:83.680000pt;}
.yb8{bottom:84.320000pt;}
.y98{bottom:100.480000pt;}
.yac{bottom:100.800000pt;}
.y6c{bottom:101.280000pt;}
.y3c{bottom:101.600000pt;}
.yd3{bottom:103.040000pt;}
.yca{bottom:103.200000pt;}
.ye4{bottom:116.640000pt;}
.y97{bottom:119.872000pt;}
.yab{bottom:120.192000pt;}
.y6b{bottom:120.672000pt;}
.y3b{bottom:120.992000pt;}
.yc9{bottom:122.560000pt;}
.ye3{bottom:136.186667pt;}
.y96{bottom:139.386667pt;}
.yaa{bottom:139.546667pt;}
.y6a{bottom:140.026667pt;}
.y3a{bottom:140.506667pt;}
.ye2{bottom:155.546667pt;}
.y95{bottom:158.746667pt;}
.ya9{bottom:158.906667pt;}
.y69{bottom:159.386667pt;}
.y39{bottom:159.866667pt;}
.ye1{bottom:174.906667pt;}
.y94{bottom:178.106667pt;}
.ya8{bottom:178.426667pt;}
.y68{bottom:178.906667pt;}
.y38{bottom:179.226667pt;}
.ye0{bottom:194.266667pt;}
.y93{bottom:197.466667pt;}
.ya7{bottom:197.786667pt;}
.y67{bottom:198.266667pt;}
.y100{bottom:198.426667pt;}
.y37{bottom:198.586667pt;}
.yb3{bottom:208.346667pt;}
.ydf{bottom:213.626667pt;}
.y92{bottom:216.826667pt;}
.ya6{bottom:217.146667pt;}
.y66{bottom:217.626667pt;}
.yff{bottom:217.786667pt;}
.y36{bottom:217.946667pt;}
.yb2{bottom:220.986667pt;}
.yde{bottom:233.146667pt;}
.y91{bottom:236.346667pt;}
.ya5{bottom:236.506667pt;}
.y65{bottom:236.986667pt;}
.yfe{bottom:237.146667pt;}
.y35{bottom:237.466667pt;}
.ydd{bottom:252.506667pt;}
.y9a{bottom:255.706667pt;}
.y90{bottom:255.866667pt;}
.y64{bottom:256.346667pt;}
.yfd{bottom:256.666667pt;}
.y34{bottom:256.826667pt;}
.ydc{bottom:271.866667pt;}
.y99{bottom:275.226667pt;}
.y8f{bottom:275.386667pt;}
.y63{bottom:275.866667pt;}
.yfc{bottom:276.026667pt;}
.y33{bottom:276.186667pt;}
.ydb{bottom:291.226667pt;}
.y32{bottom:293.306667pt;}
.y8e{bottom:294.746667pt;}
.y62{bottom:295.226667pt;}
.yfb{bottom:295.386667pt;}
.y31{bottom:307.386667pt;}
.yda{bottom:310.746667pt;}
.y8d{bottom:314.106667pt;}
.y61{bottom:314.586667pt;}
.yfa{bottom:314.746667pt;}
.y30{bottom:320.986667pt;}
.yd9{bottom:330.106667pt;}
.y8c{bottom:333.466667pt;}
.y60{bottom:333.946667pt;}
.yf9{bottom:334.266667pt;}
.y2f{bottom:336.346667pt;}
.yd8{bottom:349.506667pt;}
.y2e{bottom:351.586667pt;}
.y8b{bottom:352.866667pt;}
.y5f{bottom:353.506667pt;}
.yf8{bottom:353.666667pt;}
.y2d{bottom:366.946667pt;}
.yd7{bottom:368.866667pt;}
.y8a{bottom:372.386667pt;}
.y5e{bottom:372.866667pt;}
.yf7{bottom:373.026667pt;}
.y2c{bottom:382.306667pt;}
.yd6{bottom:388.226667pt;}
.y89{bottom:391.746667pt;}
.yb1{bottom:391.906667pt;}
.y5d{bottom:392.226667pt;}
.yf6{bottom:392.386667pt;}
.y2b{bottom:397.666667pt;}
.yd5{bottom:407.746667pt;}
.y88{bottom:411.106667pt;}
.yb0{bottom:411.426667pt;}
.y5c{bottom:411.586667pt;}
.yf5{bottom:411.746667pt;}
.y2a{bottom:413.026667pt;}
.yd2{bottom:421.506667pt;}
.y29{bottom:428.226667pt;}
.y87{bottom:430.466667pt;}
.ya4{bottom:430.626667pt;}
.yaf{bottom:430.786667pt;}
.y5b{bottom:430.946667pt;}
.yf4{bottom:431.266667pt;}
.y28{bottom:443.586667pt;}
.y86{bottom:449.986667pt;}
.ya3{bottom:450.146667pt;}
.y5a{bottom:450.466667pt;}
.yf3{bottom:450.626667pt;}
.y27{bottom:458.946667pt;}
.y85{bottom:469.346667pt;}
.ya2{bottom:469.506667pt;}
.y59{bottom:469.826667pt;}
.yf2{bottom:469.986667pt;}
.y26{bottom:474.306667pt;}
.y84{bottom:488.706667pt;}
.ya1{bottom:489.026667pt;}
.y58{bottom:489.186667pt;}
.yf1{bottom:489.346667pt;}
.y25{bottom:489.666667pt;}
.y24{bottom:505.026667pt;}
.y83{bottom:508.066667pt;}
.ya0{bottom:508.386667pt;}
.y57{bottom:508.546667pt;}
.yf0{bottom:508.866667pt;}
.y23{bottom:520.226667pt;}
.y82{bottom:527.426667pt;}
.y9f{bottom:527.746667pt;}
.y56{bottom:528.066667pt;}
.yef{bottom:528.226667pt;}
.y22{bottom:535.586667pt;}
.y81{bottom:546.946667pt;}
.y9e{bottom:547.106667pt;}
.y55{bottom:547.426667pt;}
.yee{bottom:547.586667pt;}
.y21{bottom:550.946667pt;}
.yd1{bottom:558.626667pt;}
.y20{bottom:566.306667pt;}
.y9d{bottom:566.466667pt;}
.y54{bottom:566.786667pt;}
.yed{bottom:566.946667pt;}
.yc8{bottom:578.653333pt;}
.y1f{bottom:581.693333pt;}
.y80{bottom:585.693333pt;}
.y9c{bottom:586.013333pt;}
.y53{bottom:586.173333pt;}
.yec{bottom:586.333333pt;}
.y1e{bottom:597.053333pt;}
.y7f{bottom:605.213333pt;}
.y9b{bottom:605.373333pt;}
.y52{bottom:605.533333pt;}
.yeb{bottom:605.853333pt;}
.y1d{bottom:612.253333pt;}
.y7e{bottom:624.733333pt;}
.y51{bottom:625.053333pt;}
.yea{bottom:625.213333pt;}
.y1c{bottom:627.613333pt;}
.y1b{bottom:642.973333pt;}
.y7d{bottom:644.093333pt;}
.y50{bottom:644.413333pt;}
.ye9{bottom:644.573333pt;}
.y1a{bottom:658.333333pt;}
.y7c{bottom:663.613333pt;}
.y4f{bottom:663.773333pt;}
.ye8{bottom:663.933333pt;}
.y19{bottom:673.693333pt;}
.y7b{bottom:682.973333pt;}
.y4e{bottom:683.133333pt;}
.ye7{bottom:683.453333pt;}
.y18{bottom:688.893333pt;}
.y7a{bottom:702.333333pt;}
.y4d{bottom:702.493333pt;}
.ye6{bottom:702.813333pt;}
.y17{bottom:707.133333pt;}
.yc6{bottom:715.933333pt;}
.y79{bottom:721.693333pt;}
.y4c{bottom:722.013333pt;}
.ye5{bottom:722.173333pt;}
.y16{bottom:726.173333pt;}
.y78{bottom:741.053333pt;}
.y4b{bottom:741.373333pt;}
.yc5{bottom:741.533333pt;}
.y15{bottom:743.933333pt;}
.y77{bottom:760.573333pt;}
.y4a{bottom:760.733333pt;}
.yc4{bottom:760.893333pt;}
.y14{bottom:764.253333pt;}
.y76{bottom:779.933333pt;}
.y49{bottom:780.093333pt;}
.yc3{bottom:780.413333pt;}
.y13{bottom:782.333333pt;}
.y75{bottom:799.333333pt;}
.y48{bottom:799.653333pt;}
.yc2{bottom:799.813333pt;}
.y12{bottom:804.133333pt;}
.y74{bottom:818.693333pt;}
.y47{bottom:819.013333pt;}
.yc1{bottom:819.173333pt;}
.y11{bottom:819.973333pt;}
.y73{bottom:838.053333pt;}
.y46{bottom:838.373333pt;}
.yc0{bottom:838.533333pt;}
.y10{bottom:839.333333pt;}
.yf{bottom:857.093333pt;}
.y72{bottom:857.573333pt;}
.y45{bottom:857.733333pt;}
.ybf{bottom:858.053333pt;}
.ye{bottom:873.893333pt;}
.y71{bottom:876.933333pt;}
.y44{bottom:877.093333pt;}
.ybe{bottom:877.413333pt;}
.y70{bottom:896.293333pt;}
.y43{bottom:896.613333pt;}
.yd{bottom:896.773333pt;}
.y6f{bottom:915.653333pt;}
.y42{bottom:915.973333pt;}
.ybd{bottom:916.133333pt;}
.yc{bottom:919.813333pt;}
.y6e{bottom:935.173333pt;}
.y41{bottom:935.333333pt;}
.ybc{bottom:935.493333pt;}
.yb{bottom:939.973333pt;}
.ya{bottom:952.933333pt;}
.y6d{bottom:954.533333pt;}
.y40{bottom:954.693333pt;}
.ybb{bottom:955.013333pt;}
.y9{bottom:968.293333pt;}
.yae{bottom:973.893333pt;}
.y3f{bottom:974.213333pt;}
.yba{bottom:974.373333pt;}
.y8{bottom:983.653333pt;}
.yad{bottom:993.413333pt;}
.y3e{bottom:993.573333pt;}
.yb9{bottom:993.733333pt;}
.y7{bottom:998.853333pt;}
.yb7{bottom:1010.853333pt;}
.y3d{bottom:1012.933333pt;}
.y6{bottom:1014.213333pt;}
.yb4{bottom:1024.800000pt;}
.y4{bottom:1039.040000pt;}
.y1{bottom:1052.960000pt;}
.h17{height:19.360000pt;}
.h19{height:19.392000pt;}
.h16{height:22.400000pt;}
.h2{height:22.560000pt;}
.h7{height:30.254687pt;}
.h11{height:31.155000pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.hf{height:41.112500pt;}
.h12{height:41.543750pt;}
.h14{height:42.866250pt;}
.h10{height:43.782500pt;}
.h13{height:44.361250pt;}
.he{height:44.768125pt;}
.hd{height:47.970625pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h4{height:49.622500pt;}
.h3{height:49.852500pt;}
.h8{height:52.076250pt;}
.h15{height:62.232500pt;}
.hb{height:63.310625pt;}
.h18{height:136.480000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:54.400000pt;}
.w6{width:295.906667pt;}
.w5{width:296.066667pt;}
.w3{width:550.533333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x42{left:11.040000pt;}
.x52{left:24.800000pt;}
.x43{left:27.994667pt;}
.x51{left:57.754667pt;}
.x4b{left:62.074667pt;}
.x44{left:65.754667pt;}
.x61{left:76.480000pt;}
.x5c{left:78.560000pt;}
.x45{left:82.074667pt;}
.x55{left:92.800000pt;}
.x1{left:96.032000pt;}
.x8{left:99.231988pt;}
.x6{left:103.231988pt;}
.xb{left:106.111988pt;}
.x40{left:107.552000pt;}
.x41{left:108.480000pt;}
.x59{left:109.440000pt;}
.x20{left:111.871988pt;}
.x58{left:112.794667pt;}
.x21{left:114.911988pt;}
.x4c{left:116.834667pt;}
.x23{left:124.511988pt;}
.x29{left:128.191988pt;}
.x1a{left:134.106655pt;}
.x1f{left:135.386655pt;}
.x5d{left:136.840000pt;}
.x53{left:137.800000pt;}
.x5{left:141.946655pt;}
.x11{left:143.226655pt;}
.x46{left:144.994667pt;}
.x4d{left:146.914667pt;}
.x3{left:150.426667pt;}
.x60{left:151.400000pt;}
.x19{left:154.746655pt;}
.x10{left:161.146655pt;}
.x47{left:164.834667pt;}
.x3b{left:169.946655pt;}
.xa{left:175.706655pt;}
.x5b{left:180.034667pt;}
.x4a{left:181.794667pt;}
.x5e{left:183.560000pt;}
.x48{left:186.274667pt;}
.x56{left:189.320000pt;}
.x38{left:191.866655pt;}
.x49{left:204.194667pt;}
.x39{left:205.626655pt;}
.x4e{left:210.754667pt;}
.x3d{left:212.026655pt;}
.x9{left:214.746655pt;}
.x63{left:217.946655pt;}
.x2a{left:221.346655pt;}
.x57{left:224.040000pt;}
.x54{left:226.120000pt;}
.x32{left:234.146655pt;}
.x4f{left:236.834667pt;}
.x5f{left:239.880000pt;}
.x2e{left:240.866655pt;}
.xf{left:247.746655pt;}
.x2c{left:254.306655pt;}
.x2f{left:257.346655pt;}
.x5a{left:261.794667pt;}
.x35{left:266.146655pt;}
.x62{left:271.106667pt;}
.x50{left:283.581333pt;}
.xd{left:309.026655pt;}
.x26{left:319.106655pt;}
.x7{left:324.866655pt;}
.x24{left:345.186655pt;}
.x18{left:353.826655pt;}
.xc{left:362.946655pt;}
.xe{left:372.253321pt;}
.x16{left:376.093322pt;}
.x37{left:393.053321pt;}
.x4{left:397.053321pt;}
.x34{left:404.573321pt;}
.x64{left:410.173321pt;}
.x17{left:414.653321pt;}
.x15{left:421.053321pt;}
.x25{left:425.693321pt;}
.x22{left:430.013321pt;}
.x3e{left:450.653321pt;}
.x1e{left:453.693321pt;}
.x27{left:464.733322pt;}
.x12{left:466.173321pt;}
.x28{left:476.893322pt;}
.x33{left:479.773322pt;}
.x31{left:483.613321pt;}
.x2b{left:520.413322pt;}
.x1c{left:523.813322pt;}
.x30{left:530.213322pt;}
.x36{left:565.573322pt;}
.x14{left:578.373321pt;}
.x1b{left:589.573322pt;}
.x13{left:591.333322pt;}
.x2d{left:599.813321pt;}
.x3c{left:616.453322pt;}
.x3f{left:636.773321pt;}
.x1d{left:641.253321pt;}
.x3a{left:660.613321pt;}
}




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