
    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_21b5e1cc28842dd1d2883a65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005859;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_24ea2468c19594c8e9a8dc3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4a0329908dd5f02d5d39f7b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_aa3d04f1e17a49b1d14914b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3affd9c92d49a3043e5d4d1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_241d059b5d7173834646d2ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.117000;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_2bd4affe4c97ae03dd359de8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895000;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_65645aa2ab5803f2e22ceadd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_b3abe5061d5c919431a30e38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747070;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_228602e3bcd6413b84f104f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_7e07fc64363675fd00b6dd61.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.152000px;}
.ls16{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.864000px;}
.ls12{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.450600px;}
.ls6{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.162000px;}
.lse{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.269280px;}
.ls2{letter-spacing:0.288000px;}
.ls17{letter-spacing:21.744000px;}
.ls18{letter-spacing:26.784000px;}
.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;}
}
.ws1{word-spacing:-23.418720px;}
.ws3{word-spacing:-20.304000px;}
.ws12{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.160000px;}
.ws6{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.ws9{word-spacing:-19.584000px;}
.wsd{word-spacing:-19.512000px;}
.wse{word-spacing:-19.152000px;}
.ws11{word-spacing:-19.080000px;}
.ws8{word-spacing:-16.613280px;}
.ws5{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.030000px;}
.ws2{word-spacing:-15.012000px;}
.wsb{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.229520px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-5.598000px;}
._15{margin-left:-4.536000px;}
._17{margin-left:-3.492000px;}
._5{margin-left:-2.340000px;}
._0{margin-left:-1.206000px;}
._1{width:1.010880px;}
._2{width:2.358720px;}
._3{width:3.653040px;}
._4{width:4.986960px;}
._6{width:6.192000px;}
._e{width:7.335120px;}
._a{width:8.496000px;}
._9{width:9.792000px;}
._12{width:10.935360px;}
._c{width:12.126000px;}
._b{width:13.320000px;}
._d{width:14.352000px;}
._10{width:16.344000px;}
._18{width:18.090000px;}
._1e{width:20.103120px;}
._16{width:21.114000px;}
._8{width:22.152000px;}
._7{width:23.400000px;}
._f{width:25.128000px;}
._27{width:26.982000px;}
._11{width:28.008000px;}
._1d{width:29.646000px;}
._13{width:30.816000px;}
._14{width:32.316000px;}
._19{width:33.354000px;}
._26{width:34.992000px;}
._2b{width:36.774000px;}
._2a{width:38.088000px;}
._29{width:39.492000px;}
._1c{width:41.436000px;}
._1b{width:42.690000px;}
._3a{width:44.640000px;}
._28{width:45.990000px;}
._20{width:55.242000px;}
._24{width:56.268000px;}
._23{width:58.050000px;}
._30{width:59.235120px;}
._2f{width:60.264000px;}
._31{width:62.492880px;}
._21{width:78.084000px;}
._32{width:102.348000px;}
._1f{width:103.788000px;}
._3f{width:105.768000px;}
._3e{width:107.568000px;}
._25{width:111.024000px;}
._2d{width:123.768000px;}
._2c{width:124.848000px;}
._22{width:161.838000px;}
._3b{width:189.072000px;}
._36{width:209.664000px;}
._35{width:210.816000px;}
._3d{width:236.304000px;}
._3c{width:237.492000px;}
._33{width:376.272000px;}
._34{width:377.505120px;}
._39{width:440.784000px;}
._38{width:442.116000px;}
._37{width:845.424000px;}
._2e{width:2139.624000px;}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(127,19,26);}
.fc7{color:rgb(65,71,81);}
.fc6{color:rgb(128,0,0);}
.fc4{color:rgb(148,54,52);}
.fc3{color:rgb(152,72,0);}
.fc2{color:rgb(125,0,0);}
.fc5{color:rgb(35,31,32);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.240000px;}
.yc0{bottom:3.600000px;}
.y94{bottom:10.620000px;}
.yd7{bottom:10.665000px;}
.y8c{bottom:10.800000px;}
.yc5{bottom:10.830000px;}
.yc8{bottom:11.160000px;}
.ybf{bottom:14.220000px;}
.y8f{bottom:16.560000px;}
.ya4{bottom:18.405000px;}
.y12b{bottom:18.540000px;}
.y6{bottom:19.620000px;}
.y19{bottom:20.160000px;}
.y9e{bottom:33.840000px;}
.y8e{bottom:34.020000px;}
.y96{bottom:34.050000px;}
.yd9{bottom:34.740000px;}
.yd5{bottom:34.785000px;}
.y18{bottom:35.640000px;}
.y12a{bottom:36.405000px;}
.ybe{bottom:37.620000px;}
.y17{bottom:51.120000px;}
.y4{bottom:56.916000px;}
.yac{bottom:57.240000px;}
.yaa{bottom:57.960000px;}
.yd8{bottom:58.140000px;}
.yc6{bottom:58.500000px;}
.yca{bottom:58.680000px;}
.yb1{bottom:59.400000px;}
.yaf{bottom:60.120000px;}
.ybd{bottom:60.840000px;}
.y5{bottom:61.956000px;}
.y8a{bottom:64.620000px;}
.y16{bottom:66.780000px;}
.yd3{bottom:71.325000px;}
.y129{bottom:72.225000px;}
.y3{bottom:77.976000px;}
.ya9{bottom:81.360000px;}
.yc9{bottom:81.900000px;}
.yc2{bottom:81.930000px;}
.y92{bottom:82.110000px;}
.yd2{bottom:82.125000px;}
.y15{bottom:82.260000px;}
.y9a{bottom:82.800000px;}
.yae{bottom:83.520000px;}
.ybc{bottom:84.060000px;}
.y89{bottom:88.020000px;}
.y128{bottom:90.045000px;}
.y2{bottom:99.216000px;}
.y14{bottom:100.800000px;}
.y91{bottom:105.510000px;}
.y99{bottom:106.020000px;}
.yad{bottom:106.740000px;}
.yd0{bottom:106.920000px;}
.ybb{bottom:107.460000px;}
.y127{bottom:107.865000px;}
.ya2{bottom:112.716000px;}
.y6e{bottom:113.076000px;}
.y86{bottom:113.256000px;}
.yec{bottom:117.396000px;}
.y47{bottom:118.836000px;}
.y13{bottom:119.565000px;}
.y1{bottom:120.276000px;}
.ye9{bottom:120.636000px;}
.y126{bottom:125.865000px;}
.ya1{bottom:126.576000px;}
.y98{bottom:129.240000px;}
.ycf{bottom:130.185000px;}
.yba{bottom:130.710000px;}
.y5c{bottom:131.076000px;}
.ydb{bottom:136.476000px;}
.ya0{bottom:140.256000px;}
.yf6{bottom:141.876000px;}
.y125{bottom:143.685000px;}
.y109{bottom:146.196000px;}
.ycd{bottom:152.310000px;}
.y11d{bottom:152.850000px;}
.yce{bottom:153.585000px;}
.yb9{bottom:153.930000px;}
.y6d{bottom:154.470000px;}
.y85{bottom:154.650000px;}
.y46{bottom:160.230000px;}
.y124{bottom:161.505000px;}
.ye8{bottom:162.030000px;}
.y5b{bottom:172.470000px;}
.yf4{bottom:177.150000px;}
.y7c{bottom:177.870000px;}
.ya7{bottom:178.020000px;}
.y2a{bottom:178.950000px;}
.y123{bottom:179.325000px;}
.y108{bottom:187.590000px;}
.y12d{bottom:188.670000px;}
.y11c{bottom:194.250000px;}
.y6c{bottom:195.870000px;}
.y84{bottom:196.050000px;}
.y122{bottom:197.145000px;}
.yda{bottom:199.650000px;}
.yf5{bottom:201.270000px;}
.ya6{bottom:201.420000px;}
.y45{bottom:201.630000px;}
.ye7{bottom:203.430000px;}
.y29{bottom:209.910000px;}
.y141{bottom:213.510000px;}
.y5a{bottom:213.870000px;}
.yf3{bottom:218.550000px;}
.y7b{bottom:219.270000px;}
.yd1{bottom:223.770000px;}
.yb7{bottom:226.110000px;}
.y107{bottom:228.990000px;}
.y12c{bottom:230.070000px;}
.y11b{bottom:235.650000px;}
.y6b{bottom:237.270000px;}
.y83{bottom:237.450000px;}
.y28{bottom:240.870000px;}
.y44{bottom:243.030000px;}
.ye6{bottom:244.830000px;}
.y121{bottom:249.150000px;}
.yb6{bottom:249.330000px;}
.y140{bottom:254.910000px;}
.y59{bottom:255.270000px;}
.yf2{bottom:259.950000px;}
.y7a{bottom:260.670000px;}
.y106{bottom:270.390000px;}
.yd4{bottom:271.110000px;}
.y27{bottom:272.010000px;}
.y11a{bottom:277.050000px;}
.y6a{bottom:278.670000px;}
.y82{bottom:279.210000px;}
.y43{bottom:284.475000px;}
.ye5{bottom:286.275000px;}
.yd6{bottom:295.095000px;}
.y13f{bottom:296.355000px;}
.y58{bottom:296.715000px;}
.y81{bottom:298.695000px;}
.yf1{bottom:301.395000px;}
.y79{bottom:302.115000px;}
.y26{bottom:303.015000px;}
.y105{bottom:311.835000px;}
.y80{bottom:312.375000px;}
.y119{bottom:318.495000px;}
.yb5{bottom:319.215000px;}
.y69{bottom:320.115000px;}
.y42{bottom:325.875000px;}
.y7f{bottom:326.235000px;}
.ye4{bottom:327.675000px;}
.y25{bottom:334.155000px;}
.yeb{bottom:334.695000px;}
.y13e{bottom:337.755000px;}
.y57{bottom:338.115000px;}
.yf0{bottom:339.195000px;}
.y97{bottom:341.355000px;}
.y78{bottom:343.515000px;}
.y104{bottom:353.235000px;}
.y41{bottom:356.835000px;}
.y118{bottom:359.895000px;}
.y68{bottom:361.515000px;}
.y24{bottom:365.115000px;}
.yea{bottom:365.835000px;}
.ycc{bottom:366.555000px;}
.ye3{bottom:369.075000px;}
.y13d{bottom:379.155000px;}
.y56{bottom:379.515000px;}
.y77{bottom:384.915000px;}
.y9d{bottom:388.515000px;}
.ycb{bottom:390.495000px;}
.y40{bottom:394.275000px;}
.y103{bottom:394.635000px;}
.y23{bottom:396.255000px;}
.y120{bottom:399.135000px;}
.y117{bottom:401.295000px;}
.y67{bottom:402.915000px;}
.ye2{bottom:410.475000px;}
.yb8{bottom:414.615000px;}
.y13c{bottom:420.555000px;}
.y55{bottom:420.915000px;}
.y76{bottom:426.315000px;}
.y22{bottom:427.215000px;}
.y9c{bottom:435.855000px;}
.y102{bottom:436.035000px;}
.y3f{bottom:440.355000px;}
.y116{bottom:442.695000px;}
.y66{bottom:444.315000px;}
.ye1{bottom:451.875000px;}
.y21{bottom:458.355000px;}
.y9b{bottom:459.975000px;}
.yc7{bottom:461.955000px;}
.y54{bottom:462.315000px;}
.y75{bottom:467.715000px;}
.y3e{bottom:471.495000px;}
.y101{bottom:477.435000px;}
.y90{bottom:483.915000px;}
.y115{bottom:484.095000px;}
.y65{bottom:485.715000px;}
.yc1{bottom:486.615000px;}
.y20{bottom:489.315000px;}
.ye0{bottom:493.275000px;}
.y3d{bottom:502.455000px;}
.y13b{bottom:503.355000px;}
.y53{bottom:503.715000px;}
.y95{bottom:508.035000px;}
.y74{bottom:509.115000px;}
.y100{bottom:518.835000px;}
.y1f{bottom:520.455000px;}
.y114{bottom:525.495000px;}
.y64{bottom:527.115000px;}
.y3c{bottom:533.595000px;}
.yc4{bottom:533.775000px;}
.ydf{bottom:534.675000px;}
.y13a{bottom:544.605000px;}
.y52{bottom:545.145000px;}
.y73{bottom:550.545000px;}
.y1e{bottom:551.445000px;}
.y93{bottom:555.405000px;}
.yc3{bottom:557.925000px;}
.yff{bottom:560.265000px;}
.y3b{bottom:564.585000px;}
.yef{bottom:565.125000px;}
.y113{bottom:566.925000px;}
.y63{bottom:568.545000px;}
.yde{bottom:569.265000px;}
.ya5{bottom:582.045000px;}
.y1d{bottom:582.585000px;}
.y139{bottom:586.005000px;}
.y51{bottom:586.545000px;}
.y3a{bottom:595.725000px;}
.yee{bottom:596.265000px;}
.yfe{bottom:601.665000px;}
.y88{bottom:602.745000px;}
.yb4{bottom:605.985000px;}
.y112{bottom:608.325000px;}
.y62{bottom:609.945000px;}
.y1c{bottom:613.545000px;}
.y11f{bottom:624.525000px;}
.y39{bottom:626.685000px;}
.y138{bottom:627.405000px;}
.y50{bottom:627.945000px;}
.yb3{bottom:630.105000px;}
.y8d{bottom:632.625000px;}
.yed{bottom:633.345000px;}
.yfd{bottom:643.065000px;}
.y111{bottom:649.725000px;}
.y61{bottom:651.345000px;}
.yb2{bottom:654.045000px;}
.y1b{bottom:654.945000px;}
.y11e{bottom:655.665000px;}
.y38{bottom:657.825000px;}
.y137{bottom:668.805000px;}
.y4f{bottom:669.345000px;}
.yb0{bottom:678.165000px;}
.y8b{bottom:679.965000px;}
.yfc{bottom:684.465000px;}
.y37{bottom:688.785000px;}
.y110{bottom:691.125000px;}
.y12{bottom:692.205000px;}
.y60{bottom:692.745000px;}
.ya8{bottom:702.105000px;}
.y87{bottom:704.085000px;}
.y136{bottom:710.205000px;}
.y4e{bottom:710.745000px;}
.y36{bottom:719.925000px;}
.yfb{bottom:725.865000px;}
.y10f{bottom:732.525000px;}
.y5f{bottom:734.145000px;}
.y7e{bottom:740.085000px;}
.y35{bottom:750.885000px;}
.y135{bottom:751.605000px;}
.y4d{bottom:752.145000px;}
.y7d{bottom:756.465000px;}
.yfa{bottom:767.265000px;}
.yab{bottom:772.665000px;}
.y10e{bottom:773.925000px;}
.y5e{bottom:775.545000px;}
.y34{bottom:782.025000px;}
.ydd{bottom:790.125000px;}
.y134{bottom:793.005000px;}
.y4c{bottom:793.545000px;}
.ya3{bottom:796.785000px;}
.yf9{bottom:805.110000px;}
.y33{bottom:813.030000px;}
.y10d{bottom:815.370000px;}
.y5d{bottom:816.990000px;}
.ydc{bottom:821.310000px;}
.y133{bottom:834.450000px;}
.y4b{bottom:834.990000px;}
.y9f{bottom:839.310000px;}
.y32{bottom:844.170000px;}
.y10c{bottom:852.990000px;}
.y72{bottom:858.390000px;}
.y11{bottom:870.090000px;}
.y31{bottom:875.130000px;}
.y132{bottom:875.850000px;}
.y4a{bottom:876.390000px;}
.y10{bottom:894.390000px;}
.y71{bottom:899.790000px;}
.y30{bottom:906.270000px;}
.y131{bottom:917.250000px;}
.y49{bottom:917.790000px;}
.yf{bottom:918.510000px;}
.y70{bottom:941.190000px;}
.ye{bottom:942.630000px;}
.y2f{bottom:947.670000px;}
.y130{bottom:958.650000px;}
.y48{bottom:959.190000px;}
.yd{bottom:965.490000px;}
.y2e{bottom:968.550000px;}
.y6f{bottom:982.590000px;}
.yc{bottom:982.770000px;}
.y12f{bottom:1000.050000px;}
.yb{bottom:1000.590000px;}
.y2d{bottom:1006.170000px;}
.yf8{bottom:1015.170000px;}
.ya{bottom:1021.290000px;}
.y12e{bottom:1041.450000px;}
.y9{bottom:1041.990000px;}
.yf7{bottom:1046.310000px;}
.y2c{bottom:1052.250000px;}
.y10b{bottom:1056.570000px;}
.y8{bottom:1062.720000px;}
.y2b{bottom:1083.240000px;}
.y7{bottom:1083.420000px;}
.y10a{bottom:1087.560000px;}
.h12{height:23.220000px;}
.h25{height:23.256000px;}
.hc{height:23.400000px;}
.h1d{height:23.436000px;}
.h1f{height:23.760000px;}
.he{height:29.160000px;}
.h2{height:30.960000px;}
.h14{height:30.996000px;}
.ha{height:32.220000px;}
.h27{height:44.061328px;}
.h13{height:46.440000px;}
.hd{height:46.620000px;}
.h10{height:46.656000px;}
.h24{height:47.376000px;}
.h3{height:50.312812px;}
.h9{height:56.320312px;}
.h1{height:60.679688px;}
.h5{height:62.327813px;}
.h29{height:64.546875px;}
.h17{height:69.840000px;}
.h21{height:70.560000px;}
.h26{height:70.740000px;}
.h1e{height:71.100000px;}
.h28{height:74.004654px;}
.h4{height:75.093750px;}
.h6{height:76.219102px;}
.h7{height:87.859687px;}
.h16{height:93.960000px;}
.h20{height:94.500000px;}
.h1c{height:94.536000px;}
.h23{height:94.716000px;}
.h19{height:95.400000px;}
.hb{height:100.620000px;}
.hf{height:118.116000px;}
.h18{height:119.340000px;}
.h11{height:141.840000px;}
.h8{height:153.210000px;}
.h22{height:166.170000px;}
.h1b{height:166.530000px;}
.h15{height:214.020000px;}
.h2a{height:227.730000px;}
.h1a{height:261.930000px;}
.h0{height:1188.000000px;}
.w4{width:106.380000px;}
.w6{width:131.400000px;}
.w9{width:135.576000px;}
.w7{width:190.830000px;}
.wa{width:244.290000px;}
.w8{width:379.875000px;}
.w2{width:515.085000px;}
.w5{width:595.365000px;}
.w3{width:638.025000px;}
.wb{width:702.105000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x3{left:10.800000px;}
.x4{left:23.760000px;}
.xb{left:37.080000px;}
.x10{left:60.525000px;}
.x2{left:80.280000px;}
.x1{left:108.035986px;}
.x1a{left:109.655986px;}
.xa{left:115.595986px;}
.x9{left:118.655986px;}
.x1c{left:119.735986px;}
.x18{left:122.255986px;}
.x1e{left:124.955986px;}
.x14{left:136.475986px;}
.x21{left:138.455986px;}
.x22{left:162.029986px;}
.x17{left:171.929986px;}
.xc{left:214.410000px;}
.xf{left:239.430000px;}
.x13{left:259.229986px;}
.x6{left:264.269986px;}
.xd{left:265.725000px;}
.x7{left:326.054986px;}
.x1d{left:333.794986px;}
.x1f{left:352.334986px;}
.xe{left:355.934986px;}
.x1b{left:380.954986px;}
.x19{left:382.934986px;}
.x15{left:415.514986px;}
.x11{left:430.275000px;}
.x8{left:461.414986px;}
.x12{left:565.845000px;}
.x20{left:616.604986px;}
.x16{left:810.149986px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls16{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.400533pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.239360pt;}
.ls2{letter-spacing:0.256000pt;}
.ls17{letter-spacing:19.328000pt;}
.ls18{letter-spacing:23.808000pt;}
.ws1{word-spacing:-20.816640pt;}
.ws3{word-spacing:-18.048000pt;}
.ws12{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.920000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws9{word-spacing:-17.408000pt;}
.wsd{word-spacing:-17.344000pt;}
.wse{word-spacing:-17.024000pt;}
.ws11{word-spacing:-16.960000pt;}
.ws8{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.360000pt;}
.ws2{word-spacing:-13.344000pt;}
.wsb{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.759573pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-4.976000pt;}
._15{margin-left:-4.032000pt;}
._17{margin-left:-3.104000pt;}
._5{margin-left:-2.080000pt;}
._0{margin-left:-1.072000pt;}
._1{width:0.898560pt;}
._2{width:2.096640pt;}
._3{width:3.247147pt;}
._4{width:4.432853pt;}
._6{width:5.504000pt;}
._e{width:6.520107pt;}
._a{width:7.552000pt;}
._9{width:8.704000pt;}
._12{width:9.720320pt;}
._c{width:10.778667pt;}
._b{width:11.840000pt;}
._d{width:12.757333pt;}
._10{width:14.528000pt;}
._18{width:16.080000pt;}
._1e{width:17.869440pt;}
._16{width:18.768000pt;}
._8{width:19.690667pt;}
._7{width:20.800000pt;}
._f{width:22.336000pt;}
._27{width:23.984000pt;}
._11{width:24.896000pt;}
._1d{width:26.352000pt;}
._13{width:27.392000pt;}
._14{width:28.725333pt;}
._19{width:29.648000pt;}
._26{width:31.104000pt;}
._2b{width:32.688000pt;}
._2a{width:33.856000pt;}
._29{width:35.104000pt;}
._1c{width:36.832000pt;}
._1b{width:37.946667pt;}
._3a{width:39.680000pt;}
._28{width:40.880000pt;}
._20{width:49.104000pt;}
._24{width:50.016000pt;}
._23{width:51.600000pt;}
._30{width:52.653440pt;}
._2f{width:53.568000pt;}
._31{width:55.549227pt;}
._21{width:69.408000pt;}
._32{width:90.976000pt;}
._1f{width:92.256000pt;}
._3f{width:94.016000pt;}
._3e{width:95.616000pt;}
._25{width:98.688000pt;}
._2d{width:110.016000pt;}
._2c{width:110.976000pt;}
._22{width:143.856000pt;}
._3b{width:168.064000pt;}
._36{width:186.368000pt;}
._35{width:187.392000pt;}
._3d{width:210.048000pt;}
._3c{width:211.104000pt;}
._33{width:334.464000pt;}
._34{width:335.560107pt;}
._39{width:391.808000pt;}
._38{width:392.992000pt;}
._37{width:751.488000pt;}
._2e{width:1901.888000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.880000pt;}
.yc0{bottom:3.200000pt;}
.y94{bottom:9.440000pt;}
.yd7{bottom:9.480000pt;}
.y8c{bottom:9.600000pt;}
.yc5{bottom:9.626667pt;}
.yc8{bottom:9.920000pt;}
.ybf{bottom:12.640000pt;}
.y8f{bottom:14.720000pt;}
.ya4{bottom:16.360000pt;}
.y12b{bottom:16.480000pt;}
.y6{bottom:17.440000pt;}
.y19{bottom:17.920000pt;}
.y9e{bottom:30.080000pt;}
.y8e{bottom:30.240000pt;}
.y96{bottom:30.266667pt;}
.yd9{bottom:30.880000pt;}
.yd5{bottom:30.920000pt;}
.y18{bottom:31.680000pt;}
.y12a{bottom:32.360000pt;}
.ybe{bottom:33.440000pt;}
.y17{bottom:45.440000pt;}
.y4{bottom:50.592000pt;}
.yac{bottom:50.880000pt;}
.yaa{bottom:51.520000pt;}
.yd8{bottom:51.680000pt;}
.yc6{bottom:52.000000pt;}
.yca{bottom:52.160000pt;}
.yb1{bottom:52.800000pt;}
.yaf{bottom:53.440000pt;}
.ybd{bottom:54.080000pt;}
.y5{bottom:55.072000pt;}
.y8a{bottom:57.440000pt;}
.y16{bottom:59.360000pt;}
.yd3{bottom:63.400000pt;}
.y129{bottom:64.200000pt;}
.y3{bottom:69.312000pt;}
.ya9{bottom:72.320000pt;}
.yc9{bottom:72.800000pt;}
.yc2{bottom:72.826667pt;}
.y92{bottom:72.986667pt;}
.yd2{bottom:73.000000pt;}
.y15{bottom:73.120000pt;}
.y9a{bottom:73.600000pt;}
.yae{bottom:74.240000pt;}
.ybc{bottom:74.720000pt;}
.y89{bottom:78.240000pt;}
.y128{bottom:80.040000pt;}
.y2{bottom:88.192000pt;}
.y14{bottom:89.600000pt;}
.y91{bottom:93.786667pt;}
.y99{bottom:94.240000pt;}
.yad{bottom:94.880000pt;}
.yd0{bottom:95.040000pt;}
.ybb{bottom:95.520000pt;}
.y127{bottom:95.880000pt;}
.ya2{bottom:100.192000pt;}
.y6e{bottom:100.512000pt;}
.y86{bottom:100.672000pt;}
.yec{bottom:104.352000pt;}
.y47{bottom:105.632000pt;}
.y13{bottom:106.280000pt;}
.y1{bottom:106.912000pt;}
.ye9{bottom:107.232000pt;}
.y126{bottom:111.880000pt;}
.ya1{bottom:112.512000pt;}
.y98{bottom:114.880000pt;}
.ycf{bottom:115.720000pt;}
.yba{bottom:116.186667pt;}
.y5c{bottom:116.512000pt;}
.ydb{bottom:121.312000pt;}
.ya0{bottom:124.672000pt;}
.yf6{bottom:126.112000pt;}
.y125{bottom:127.720000pt;}
.y109{bottom:129.952000pt;}
.ycd{bottom:135.386667pt;}
.y11d{bottom:135.866667pt;}
.yce{bottom:136.520000pt;}
.yb9{bottom:136.826667pt;}
.y6d{bottom:137.306667pt;}
.y85{bottom:137.466667pt;}
.y46{bottom:142.426667pt;}
.y124{bottom:143.560000pt;}
.ye8{bottom:144.026667pt;}
.y5b{bottom:153.306667pt;}
.yf4{bottom:157.466667pt;}
.y7c{bottom:158.106667pt;}
.ya7{bottom:158.240000pt;}
.y2a{bottom:159.066667pt;}
.y123{bottom:159.400000pt;}
.y108{bottom:166.746667pt;}
.y12d{bottom:167.706667pt;}
.y11c{bottom:172.666667pt;}
.y6c{bottom:174.106667pt;}
.y84{bottom:174.266667pt;}
.y122{bottom:175.240000pt;}
.yda{bottom:177.466667pt;}
.yf5{bottom:178.906667pt;}
.ya6{bottom:179.040000pt;}
.y45{bottom:179.226667pt;}
.ye7{bottom:180.826667pt;}
.y29{bottom:186.586667pt;}
.y141{bottom:189.786667pt;}
.y5a{bottom:190.106667pt;}
.yf3{bottom:194.266667pt;}
.y7b{bottom:194.906667pt;}
.yd1{bottom:198.906667pt;}
.yb7{bottom:200.986667pt;}
.y107{bottom:203.546667pt;}
.y12c{bottom:204.506667pt;}
.y11b{bottom:209.466667pt;}
.y6b{bottom:210.906667pt;}
.y83{bottom:211.066667pt;}
.y28{bottom:214.106667pt;}
.y44{bottom:216.026667pt;}
.ye6{bottom:217.626667pt;}
.y121{bottom:221.466667pt;}
.yb6{bottom:221.626667pt;}
.y140{bottom:226.586667pt;}
.y59{bottom:226.906667pt;}
.yf2{bottom:231.066667pt;}
.y7a{bottom:231.706667pt;}
.y106{bottom:240.346667pt;}
.yd4{bottom:240.986667pt;}
.y27{bottom:241.786667pt;}
.y11a{bottom:246.266667pt;}
.y6a{bottom:247.706667pt;}
.y82{bottom:248.186667pt;}
.y43{bottom:252.866667pt;}
.ye5{bottom:254.466667pt;}
.yd6{bottom:262.306667pt;}
.y13f{bottom:263.426667pt;}
.y58{bottom:263.746667pt;}
.y81{bottom:265.506667pt;}
.yf1{bottom:267.906667pt;}
.y79{bottom:268.546667pt;}
.y26{bottom:269.346667pt;}
.y105{bottom:277.186667pt;}
.y80{bottom:277.666667pt;}
.y119{bottom:283.106667pt;}
.yb5{bottom:283.746667pt;}
.y69{bottom:284.546667pt;}
.y42{bottom:289.666667pt;}
.y7f{bottom:289.986667pt;}
.ye4{bottom:291.266667pt;}
.y25{bottom:297.026667pt;}
.yeb{bottom:297.506667pt;}
.y13e{bottom:300.226667pt;}
.y57{bottom:300.546667pt;}
.yf0{bottom:301.506667pt;}
.y97{bottom:303.426667pt;}
.y78{bottom:305.346667pt;}
.y104{bottom:313.986667pt;}
.y41{bottom:317.186667pt;}
.y118{bottom:319.906667pt;}
.y68{bottom:321.346667pt;}
.y24{bottom:324.546667pt;}
.yea{bottom:325.186667pt;}
.ycc{bottom:325.826667pt;}
.ye3{bottom:328.066667pt;}
.y13d{bottom:337.026667pt;}
.y56{bottom:337.346667pt;}
.y77{bottom:342.146667pt;}
.y9d{bottom:345.346667pt;}
.ycb{bottom:347.106667pt;}
.y40{bottom:350.466667pt;}
.y103{bottom:350.786667pt;}
.y23{bottom:352.226667pt;}
.y120{bottom:354.786667pt;}
.y117{bottom:356.706667pt;}
.y67{bottom:358.146667pt;}
.ye2{bottom:364.866667pt;}
.yb8{bottom:368.546667pt;}
.y13c{bottom:373.826667pt;}
.y55{bottom:374.146667pt;}
.y76{bottom:378.946667pt;}
.y22{bottom:379.746667pt;}
.y9c{bottom:387.426667pt;}
.y102{bottom:387.586667pt;}
.y3f{bottom:391.426667pt;}
.y116{bottom:393.506667pt;}
.y66{bottom:394.946667pt;}
.ye1{bottom:401.666667pt;}
.y21{bottom:407.426667pt;}
.y9b{bottom:408.866667pt;}
.yc7{bottom:410.626667pt;}
.y54{bottom:410.946667pt;}
.y75{bottom:415.746667pt;}
.y3e{bottom:419.106667pt;}
.y101{bottom:424.386667pt;}
.y90{bottom:430.146667pt;}
.y115{bottom:430.306667pt;}
.y65{bottom:431.746667pt;}
.yc1{bottom:432.546667pt;}
.y20{bottom:434.946667pt;}
.ye0{bottom:438.466667pt;}
.y3d{bottom:446.626667pt;}
.y13b{bottom:447.426667pt;}
.y53{bottom:447.746667pt;}
.y95{bottom:451.586667pt;}
.y74{bottom:452.546667pt;}
.y100{bottom:461.186667pt;}
.y1f{bottom:462.626667pt;}
.y114{bottom:467.106667pt;}
.y64{bottom:468.546667pt;}
.y3c{bottom:474.306667pt;}
.yc4{bottom:474.466667pt;}
.ydf{bottom:475.266667pt;}
.y13a{bottom:484.093333pt;}
.y52{bottom:484.573333pt;}
.y73{bottom:489.373333pt;}
.y1e{bottom:490.173333pt;}
.y93{bottom:493.693333pt;}
.yc3{bottom:495.933333pt;}
.yff{bottom:498.013333pt;}
.y3b{bottom:501.853333pt;}
.yef{bottom:502.333333pt;}
.y113{bottom:503.933333pt;}
.y63{bottom:505.373333pt;}
.yde{bottom:506.013333pt;}
.ya5{bottom:517.373333pt;}
.y1d{bottom:517.853333pt;}
.y139{bottom:520.893333pt;}
.y51{bottom:521.373333pt;}
.y3a{bottom:529.533333pt;}
.yee{bottom:530.013333pt;}
.yfe{bottom:534.813333pt;}
.y88{bottom:535.773333pt;}
.yb4{bottom:538.653333pt;}
.y112{bottom:540.733333pt;}
.y62{bottom:542.173333pt;}
.y1c{bottom:545.373333pt;}
.y11f{bottom:555.133333pt;}
.y39{bottom:557.053333pt;}
.y138{bottom:557.693333pt;}
.y50{bottom:558.173333pt;}
.yb3{bottom:560.093333pt;}
.y8d{bottom:562.333333pt;}
.yed{bottom:562.973333pt;}
.yfd{bottom:571.613333pt;}
.y111{bottom:577.533333pt;}
.y61{bottom:578.973333pt;}
.yb2{bottom:581.373333pt;}
.y1b{bottom:582.173333pt;}
.y11e{bottom:582.813333pt;}
.y38{bottom:584.733333pt;}
.y137{bottom:594.493333pt;}
.y4f{bottom:594.973333pt;}
.yb0{bottom:602.813333pt;}
.y8b{bottom:604.413333pt;}
.yfc{bottom:608.413333pt;}
.y37{bottom:612.253333pt;}
.y110{bottom:614.333333pt;}
.y12{bottom:615.293333pt;}
.y60{bottom:615.773333pt;}
.ya8{bottom:624.093333pt;}
.y87{bottom:625.853333pt;}
.y136{bottom:631.293333pt;}
.y4e{bottom:631.773333pt;}
.y36{bottom:639.933333pt;}
.yfb{bottom:645.213333pt;}
.y10f{bottom:651.133333pt;}
.y5f{bottom:652.573333pt;}
.y7e{bottom:657.853333pt;}
.y35{bottom:667.453333pt;}
.y135{bottom:668.093333pt;}
.y4d{bottom:668.573333pt;}
.y7d{bottom:672.413333pt;}
.yfa{bottom:682.013333pt;}
.yab{bottom:686.813333pt;}
.y10e{bottom:687.933333pt;}
.y5e{bottom:689.373333pt;}
.y34{bottom:695.133333pt;}
.ydd{bottom:702.333333pt;}
.y134{bottom:704.893333pt;}
.y4c{bottom:705.373333pt;}
.ya3{bottom:708.253333pt;}
.yf9{bottom:715.653333pt;}
.y33{bottom:722.693333pt;}
.y10d{bottom:724.773333pt;}
.y5d{bottom:726.213333pt;}
.ydc{bottom:730.053333pt;}
.y133{bottom:741.733333pt;}
.y4b{bottom:742.213333pt;}
.y9f{bottom:746.053333pt;}
.y32{bottom:750.373333pt;}
.y10c{bottom:758.213333pt;}
.y72{bottom:763.013333pt;}
.y11{bottom:773.413333pt;}
.y31{bottom:777.893333pt;}
.y132{bottom:778.533333pt;}
.y4a{bottom:779.013333pt;}
.y10{bottom:795.013333pt;}
.y71{bottom:799.813333pt;}
.y30{bottom:805.573333pt;}
.y131{bottom:815.333333pt;}
.y49{bottom:815.813333pt;}
.yf{bottom:816.453333pt;}
.y70{bottom:836.613333pt;}
.ye{bottom:837.893333pt;}
.y2f{bottom:842.373333pt;}
.y130{bottom:852.133333pt;}
.y48{bottom:852.613333pt;}
.yd{bottom:858.213333pt;}
.y2e{bottom:860.933333pt;}
.y6f{bottom:873.413333pt;}
.yc{bottom:873.573333pt;}
.y12f{bottom:888.933333pt;}
.yb{bottom:889.413333pt;}
.y2d{bottom:894.373333pt;}
.yf8{bottom:902.373333pt;}
.ya{bottom:907.813333pt;}
.y12e{bottom:925.733333pt;}
.y9{bottom:926.213333pt;}
.yf7{bottom:930.053333pt;}
.y2c{bottom:935.333333pt;}
.y10b{bottom:939.173333pt;}
.y8{bottom:944.640000pt;}
.y2b{bottom:962.880000pt;}
.y7{bottom:963.040000pt;}
.y10a{bottom:966.720000pt;}
.h12{height:20.640000pt;}
.h25{height:20.672000pt;}
.hc{height:20.800000pt;}
.h1d{height:20.832000pt;}
.h1f{height:21.120000pt;}
.he{height:25.920000pt;}
.h2{height:27.520000pt;}
.h14{height:27.552000pt;}
.ha{height:28.640000pt;}
.h27{height:39.165625pt;}
.h13{height:41.280000pt;}
.hd{height:41.440000pt;}
.h10{height:41.472000pt;}
.h24{height:42.112000pt;}
.h3{height:44.722500pt;}
.h9{height:50.062500pt;}
.h1{height:53.937500pt;}
.h5{height:55.402500pt;}
.h29{height:57.375000pt;}
.h17{height:62.080000pt;}
.h21{height:62.720000pt;}
.h26{height:62.880000pt;}
.h1e{height:63.200000pt;}
.h28{height:65.781915pt;}
.h4{height:66.750000pt;}
.h6{height:67.750312pt;}
.h7{height:78.097500pt;}
.h16{height:83.520000pt;}
.h20{height:84.000000pt;}
.h1c{height:84.032000pt;}
.h23{height:84.192000pt;}
.h19{height:84.800000pt;}
.hb{height:89.440000pt;}
.hf{height:104.992000pt;}
.h18{height:106.080000pt;}
.h11{height:126.080000pt;}
.h8{height:136.186667pt;}
.h22{height:147.706667pt;}
.h1b{height:148.026667pt;}
.h15{height:190.240000pt;}
.h2a{height:202.426667pt;}
.h1a{height:232.826667pt;}
.h0{height:1056.000000pt;}
.w4{width:94.560000pt;}
.w6{width:116.800000pt;}
.w9{width:120.512000pt;}
.w7{width:169.626667pt;}
.wa{width:217.146667pt;}
.w8{width:337.666667pt;}
.w2{width:457.853333pt;}
.w5{width:529.213333pt;}
.w3{width:567.133333pt;}
.wb{width:624.093333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x3{left:9.600000pt;}
.x4{left:21.120000pt;}
.xb{left:32.960000pt;}
.x10{left:53.800000pt;}
.x2{left:71.360000pt;}
.x1{left:96.031988pt;}
.x1a{left:97.471988pt;}
.xa{left:102.751988pt;}
.x9{left:105.471988pt;}
.x1c{left:106.431988pt;}
.x18{left:108.671988pt;}
.x1e{left:111.071988pt;}
.x14{left:121.311988pt;}
.x21{left:123.071988pt;}
.x22{left:144.026655pt;}
.x17{left:152.826655pt;}
.xc{left:190.586667pt;}
.xf{left:212.826667pt;}
.x13{left:230.426655pt;}
.x6{left:234.906655pt;}
.xd{left:236.200000pt;}
.x7{left:289.826655pt;}
.x1d{left:296.706655pt;}
.x1f{left:313.186655pt;}
.xe{left:316.386655pt;}
.x1b{left:338.626655pt;}
.x19{left:340.386655pt;}
.x15{left:369.346655pt;}
.x11{left:382.466667pt;}
.x8{left:410.146655pt;}
.x12{left:502.973333pt;}
.x20{left:548.093321pt;}
.x16{left:720.133321pt;}
}




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