
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_5c74102de761f060ddf403cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b47f0c172c4f506f1c9c786.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_1910ff3973d623294aad0494.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.751953;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ed61f4e879f3e738335f238e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;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:ffe;src:url('chunks/assets/font_a5ce239c06f832572213a925.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.752930;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.ls11{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.223800px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls8{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.161760px;}
.ls4{letter-spacing:0.169920px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:16.506720px;}
.ls5{letter-spacing:37.386720px;}
.lsd{letter-spacing:37.779840px;}
.ls1{letter-spacing:41.868000px;}
.lsc{letter-spacing:46.026720px;}
.ls14{letter-spacing:64.170720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.wsd{word-spacing:-43.200720px;}
.wse{word-spacing:-41.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws9{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.996000px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._4{margin-left:-1.026000px;}
._1{width:1.135440px;}
._5{width:2.156880px;}
._8{width:3.764880px;}
._7{width:4.960080px;}
._b{width:5.998320px;}
._9{width:7.012560px;}
._17{width:8.444640px;}
._1f{width:9.483360px;}
._e{width:10.517760px;}
._10{width:12.131280px;}
._f{width:13.147200px;}
._c{width:16.156080px;}
._a{width:17.354880px;}
._d{width:18.963120px;}
._11{width:19.994400px;}
._13{width:21.060720px;}
._12{width:22.230720px;}
._1a{width:23.306400px;}
._19{width:25.727760px;}
._18{width:27.549360px;}
._22{width:28.673280px;}
._25{width:29.732880px;}
._21{width:31.204800px;}
._20{width:32.210640px;}
._16{width:33.365520px;}
._15{width:34.534800px;}
._1e{width:35.557200px;}
._1c{width:37.520880px;}
._1b{width:39.210960px;}
._1d{width:40.242480px;}
._23{width:41.365680px;}
._34{width:45.716400px;}
._14{width:53.365680px;}
._2b{width:56.005200px;}
._2a{width:57.011040px;}
._24{width:61.254000px;}
._2c{width:69.440400px;}
._32{width:71.771760px;}
._31{width:72.786960px;}
._30{width:76.552560px;}
._29{width:85.755600px;}
._28{width:87.309360px;}
._3{width:131.442960px;}
._27{width:161.352000px;}
._26{width:162.726480px;}
._2d{width:169.804560px;}
._2f{width:215.375040px;}
._2e{width:216.570240px;}
._2{width:342.981120px;}
._33{width:449.215920px;}
._6{width:1051.713600px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y48{bottom:2.556000px;}
.y3c{bottom:2.880000px;}
.y18{bottom:3.240000px;}
.y34{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y46{bottom:8.496000px;}
.y3a{bottom:9.720000px;}
.yc{bottom:14.040000px;}
.y8{bottom:16.236000px;}
.ye9{bottom:16.380000px;}
.y47{bottom:16.416000px;}
.y10c{bottom:18.720000px;}
.y32{bottom:19.440000px;}
.y39{bottom:25.200000px;}
.ye8{bottom:30.060000px;}
.y10e{bottom:30.240000px;}
.ya{bottom:35.460000px;}
.y31{bottom:35.820000px;}
.y10b{bottom:36.000000px;}
.y38{bottom:40.680000px;}
.y49{bottom:41.400000px;}
.ye7{bottom:43.920000px;}
.y30{bottom:51.300000px;}
.y10a{bottom:53.325000px;}
.y37{bottom:56.160000px;}
.ye6{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y45{bottom:64.080000px;}
.y2f{bottom:66.780000px;}
.y109{bottom:70.605000px;}
.y36{bottom:71.820000px;}
.y2e{bottom:82.440000px;}
.y108{bottom:87.705000px;}
.y29{bottom:94.905000px;}
.y2d{bottom:97.920000px;}
.y107{bottom:104.985000px;}
.y3b{bottom:106.245000px;}
.y28{bottom:110.745000px;}
.y86{bottom:112.536000px;}
.y2c{bottom:113.430000px;}
.y7f{bottom:121.896000px;}
.y44{bottom:123.696000px;}
.yaf{bottom:126.936000px;}
.y27{bottom:128.025000px;}
.y2b{bottom:128.910000px;}
.y85{bottom:129.816000px;}
.ye3{bottom:136.656000px;}
.y7e{bottom:139.176000px;}
.y43{bottom:140.256000px;}
.yae{bottom:143.496000px;}
.y26{bottom:145.305000px;}
.y84{bottom:147.096000px;}
.y42{bottom:153.930000px;}
.y7d{bottom:156.270000px;}
.yad{bottom:159.870000px;}
.y25{bottom:162.585000px;}
.y83{bottom:164.190000px;}
.y41{bottom:167.790000px;}
.ye2{bottom:171.210000px;}
.y7c{bottom:173.550000px;}
.yac{bottom:176.430000px;}
.y24{bottom:179.685000px;}
.y82{bottom:181.470000px;}
.y40{bottom:181.650000px;}
.ye1{bottom:188.490000px;}
.y7b{bottom:190.830000px;}
.yab{bottom:193.530000px;}
.y3f{bottom:195.330000px;}
.y23{bottom:196.965000px;}
.y10f{bottom:197.130000px;}
.y81{bottom:198.750000px;}
.y7a{bottom:204.870000px;}
.ye0{bottom:205.590000px;}
.y10d{bottom:208.290000px;}
.y3e{bottom:210.450000px;}
.yaa{bottom:210.810000px;}
.y79{bottom:212.430000px;}
.y22{bottom:214.245000px;}
.y80{bottom:216.030000px;}
.ydf{bottom:222.870000px;}
.ya9{bottom:228.090000px;}
.y3d{bottom:229.530000px;}
.y21{bottom:231.525000px;}
.y78{bottom:233.310000px;}
.yde{bottom:240.150000px;}
.y19{bottom:242.850000px;}
.ya8{bottom:245.370000px;}
.y20{bottom:248.805000px;}
.y77{bottom:250.590000px;}
.ydd{bottom:257.430000px;}
.ya7{bottom:262.650000px;}
.y1f{bottom:266.085000px;}
.y76{bottom:267.690000px;}
.ydc{bottom:274.710000px;}
.y106{bottom:278.130000px;}
.ya6{bottom:279.750000px;}
.y1e{bottom:283.185000px;}
.y75{bottom:284.970000px;}
.ydb{bottom:291.990000px;}
.ya5{bottom:297.030000px;}
.y1d{bottom:300.465000px;}
.y74{bottom:302.250000px;}
.yda{bottom:309.090000px;}
.ya4{bottom:314.310000px;}
.y1c{bottom:317.745000px;}
.y73{bottom:319.575000px;}
.yd9{bottom:326.415000px;}
.ya3{bottom:331.635000px;}
.y1b{bottom:335.055000px;}
.y72{bottom:336.855000px;}
.yd8{bottom:343.695000px;}
.ya2{bottom:348.915000px;}
.y1a{bottom:352.515000px;}
.y71{bottom:354.135000px;}
.yd7{bottom:360.975000px;}
.y35{bottom:362.415000px;}
.ya1{bottom:366.195000px;}
.y70{bottom:371.235000px;}
.yd6{bottom:378.255000px;}
.ya0{bottom:383.295000px;}
.y6f{bottom:388.515000px;}
.yd5{bottom:395.535000px;}
.y9f{bottom:400.575000px;}
.yec{bottom:403.815000px;}
.y6e{bottom:405.795000px;}
.yd4{bottom:412.635000px;}
.y105{bottom:417.495000px;}
.y9e{bottom:417.855000px;}
.y6d{bottom:423.075000px;}
.yeb{bottom:429.015000px;}
.yd3{bottom:429.915000px;}
.y9d{bottom:435.135000px;}
.y6c{bottom:440.355000px;}
.y104{bottom:442.695000px;}
.yd2{bottom:447.195000px;}
.y33{bottom:447.555000px;}
.y9c{bottom:452.415000px;}
.yea{bottom:454.215000px;}
.y6b{bottom:457.455000px;}
.yd1{bottom:464.475000px;}
.y103{bottom:467.895000px;}
.y2a{bottom:468.255000px;}
.y9b{bottom:469.695000px;}
.ye5{bottom:473.475000px;}
.y6a{bottom:474.735000px;}
.yd0{bottom:481.755000px;}
.y9a{bottom:486.795000px;}
.y69{bottom:492.015000px;}
.y102{bottom:493.095000px;}
.ycf{bottom:498.855000px;}
.y99{bottom:504.075000px;}
.y68{bottom:509.295000px;}
.yce{bottom:516.135000px;}
.y101{bottom:518.295000px;}
.y98{bottom:521.355000px;}
.y67{bottom:526.575000px;}
.ycd{bottom:533.415000px;}
.y97{bottom:538.635000px;}
.ye4{bottom:543.315000px;}
.y100{bottom:543.495000px;}
.y66{bottom:543.855000px;}
.ycc{bottom:550.695000px;}
.y96{bottom:555.915000px;}
.y65{bottom:560.955000px;}
.ycb{bottom:567.975000px;}
.yff{bottom:568.725000px;}
.y95{bottom:573.225000px;}
.y64{bottom:578.265000px;}
.yca{bottom:585.285000px;}
.y94{bottom:590.145000px;}
.yfe{bottom:593.925000px;}
.y63{bottom:595.545000px;}
.yc9{bottom:602.385000px;}
.y93{bottom:606.525000px;}
.y17{bottom:610.665000px;}
.y62{bottom:612.825000px;}
.yfd{bottom:619.125000px;}
.yc8{bottom:619.665000px;}
.y92{bottom:622.905000px;}
.y61{bottom:630.105000px;}
.yc7{bottom:636.945000px;}
.y91{bottom:639.285000px;}
.yfc{bottom:644.325000px;}
.y16{bottom:645.225000px;}
.y60{bottom:647.385000px;}
.yc6{bottom:654.225000px;}
.y90{bottom:655.845000px;}
.y5f{bottom:664.485000px;}
.y15{bottom:665.025000px;}
.yfb{bottom:669.525000px;}
.yc5{bottom:671.505000px;}
.y8f{bottom:672.225000px;}
.y5e{bottom:681.765000px;}
.y8e{bottom:688.605000px;}
.yc4{bottom:688.785000px;}
.yfa{bottom:694.725000px;}
.y14{bottom:698.685000px;}
.y5d{bottom:699.045000px;}
.y8d{bottom:704.985000px;}
.yc3{bottom:705.885000px;}
.y13{bottom:715.965000px;}
.y5c{bottom:716.325000px;}
.yf9{bottom:719.925000px;}
.y8c{bottom:721.365000px;}
.yc2{bottom:723.165000px;}
.y12{bottom:728.385000px;}
.y5b{bottom:733.605000px;}
.y8b{bottom:737.745000px;}
.yc1{bottom:740.445000px;}
.yf8{bottom:745.125000px;}
.y11{bottom:749.625000px;}
.y5a{bottom:750.885000px;}
.y8a{bottom:754.125000px;}
.yc0{bottom:757.725000px;}
.y59{bottom:767.985000px;}
.yf7{bottom:770.325000px;}
.y89{bottom:770.505000px;}
.ybf{bottom:775.005000px;}
.y10{bottom:780.585000px;}
.y58{bottom:785.265000px;}
.y88{bottom:786.885000px;}
.ybe{bottom:792.105000px;}
.yf6{bottom:795.525000px;}
.y57{bottom:802.545000px;}
.y87{bottom:803.265000px;}
.ybd{bottom:809.385000px;}
.yf{bottom:811.725000px;}
.y56{bottom:819.870000px;}
.yf5{bottom:820.770000px;}
.ybc{bottom:826.710000px;}
.y55{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.ybb{bottom:843.990000px;}
.yf4{bottom:845.970000px;}
.y54{bottom:854.250000px;}
.yba{bottom:861.270000px;}
.yf3{bottom:871.170000px;}
.y53{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.yb9{bottom:878.550000px;}
.yb{bottom:887.010000px;}
.y52{bottom:888.810000px;}
.yb8{bottom:895.650000px;}
.yf2{bottom:896.370000px;}
.y51{bottom:906.090000px;}
.yb7{bottom:912.750000px;}
.yf1{bottom:921.570000px;}
.y50{bottom:923.370000px;}
.yb6{bottom:929.130000px;}
.y4f{bottom:940.650000px;}
.yb5{bottom:945.510000px;}
.yf0{bottom:946.770000px;}
.y4e{bottom:957.750000px;}
.yb4{bottom:961.890000px;}
.yef{bottom:971.970000px;}
.y4d{bottom:975.030000px;}
.yb3{bottom:978.270000px;}
.y4c{bottom:992.310000px;}
.yb2{bottom:994.650000px;}
.yee{bottom:997.170000px;}
.y4b{bottom:1009.590000px;}
.yb1{bottom:1011.210000px;}
.yed{bottom:1022.370000px;}
.y4a{bottom:1026.870000px;}
.yb0{bottom:1027.590000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h20{height:13.680000px;}
.hf{height:17.100000px;}
.h17{height:19.980000px;}
.h4{height:27.576000px;}
.hd{height:28.115859px;}
.h21{height:34.036523px;}
.h6{height:34.884492px;}
.h1a{height:38.100586px;}
.h13{height:39.049805px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h10{height:42.164648px;}
.h5{height:43.215117px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h23{height:44.294766px;}
.h9{height:47.901094px;}
.h2{height:48.496641px;}
.h1f{height:48.995859px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h22{height:68.940000px;}
.h25{height:69.120000px;}
.h1d{height:70.474219px;}
.h1e{height:73.455117px;}
.hb{height:76.201172px;}
.he{height:78.099609px;}
.h18{height:84.420000px;}
.h19{height:118.836000px;}
.h24{height:119.016000px;}
.h14{height:141.516000px;}
.h8{height:153.900000px;}
.h11{height:366.915000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:201.270000px;}
.w7{width:329.295000px;}
.w5{width:607.425000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:6.660000px;}
.x5{left:8.640000px;}
.x21{left:12.420000px;}
.x17{left:18.045000px;}
.x13{left:20.205000px;}
.x15{left:24.705000px;}
.x16{left:26.505000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1a{left:59.579986px;}
.x3{left:60.659986px;}
.x18{left:65.519986px;}
.x1e{left:80.130000px;}
.x1d{left:85.140000px;}
.x1c{left:86.759986px;}
.x10{left:93.815986px;}
.xb{left:98.495986px;}
.x6{left:100.836000px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xf{left:163.109986px;}
.x2{left:220.709986px;}
.x20{left:295.635000px;}
.xe{left:321.554986px;}
.xc{left:405.074986px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x11{left:465.374986px;}
.x19{left:478.334986px;}
.x1b{left:505.364986px;}
.x1f{left:526.604986px;}
.x12{left:661.245000px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls8{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.143787pt;}
.ls4{letter-spacing:0.151040pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls5{letter-spacing:33.232640pt;}
.lsd{letter-spacing:33.582080pt;}
.ls1{letter-spacing:37.216000pt;}
.lsc{letter-spacing:40.912640pt;}
.ls14{letter-spacing:57.040640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.wsd{word-spacing:-38.400640pt;}
.wse{word-spacing:-37.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.552000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._4{margin-left:-0.912000pt;}
._1{width:1.009280pt;}
._5{width:1.917227pt;}
._8{width:3.346560pt;}
._7{width:4.408960pt;}
._b{width:5.331840pt;}
._9{width:6.233387pt;}
._17{width:7.506347pt;}
._1f{width:8.429653pt;}
._e{width:9.349120pt;}
._10{width:10.783360pt;}
._f{width:11.686400pt;}
._c{width:14.360960pt;}
._a{width:15.426560pt;}
._d{width:16.856107pt;}
._11{width:17.772800pt;}
._13{width:18.720640pt;}
._12{width:19.760640pt;}
._1a{width:20.716800pt;}
._19{width:22.869120pt;}
._18{width:24.488320pt;}
._22{width:25.487360pt;}
._25{width:26.429227pt;}
._21{width:27.737600pt;}
._20{width:28.631680pt;}
._16{width:29.658240pt;}
._15{width:30.697600pt;}
._1e{width:31.606400pt;}
._1c{width:33.351893pt;}
._1b{width:34.854187pt;}
._1d{width:35.771093pt;}
._23{width:36.769493pt;}
._34{width:40.636800pt;}
._14{width:47.436160pt;}
._2b{width:49.782400pt;}
._2a{width:50.676480pt;}
._24{width:54.448000pt;}
._2c{width:61.724800pt;}
._32{width:63.797120pt;}
._31{width:64.699520pt;}
._30{width:68.046720pt;}
._29{width:76.227200pt;}
._28{width:77.608320pt;}
._3{width:116.838187pt;}
._27{width:143.424000pt;}
._26{width:144.645760pt;}
._2d{width:150.937387pt;}
._2f{width:191.444480pt;}
._2e{width:192.506880pt;}
._2{width:304.872107pt;}
._33{width:399.303040pt;}
._6{width:934.856533pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y48{bottom:2.272000pt;}
.y3c{bottom:2.560000pt;}
.y18{bottom:2.880000pt;}
.y34{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y46{bottom:7.552000pt;}
.y3a{bottom:8.640000pt;}
.yc{bottom:12.480000pt;}
.y8{bottom:14.432000pt;}
.ye9{bottom:14.560000pt;}
.y47{bottom:14.592000pt;}
.y10c{bottom:16.640000pt;}
.y32{bottom:17.280000pt;}
.y39{bottom:22.400000pt;}
.ye8{bottom:26.720000pt;}
.y10e{bottom:26.880000pt;}
.ya{bottom:31.520000pt;}
.y31{bottom:31.840000pt;}
.y10b{bottom:32.000000pt;}
.y38{bottom:36.160000pt;}
.y49{bottom:36.800000pt;}
.ye7{bottom:39.040000pt;}
.y30{bottom:45.600000pt;}
.y10a{bottom:47.400000pt;}
.y37{bottom:49.920000pt;}
.ye6{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y45{bottom:56.960000pt;}
.y2f{bottom:59.360000pt;}
.y109{bottom:62.760000pt;}
.y36{bottom:63.840000pt;}
.y2e{bottom:73.280000pt;}
.y108{bottom:77.960000pt;}
.y29{bottom:84.360000pt;}
.y2d{bottom:87.040000pt;}
.y107{bottom:93.320000pt;}
.y3b{bottom:94.440000pt;}
.y28{bottom:98.440000pt;}
.y86{bottom:100.032000pt;}
.y2c{bottom:100.826667pt;}
.y7f{bottom:108.352000pt;}
.y44{bottom:109.952000pt;}
.yaf{bottom:112.832000pt;}
.y27{bottom:113.800000pt;}
.y2b{bottom:114.586667pt;}
.y85{bottom:115.392000pt;}
.ye3{bottom:121.472000pt;}
.y7e{bottom:123.712000pt;}
.y43{bottom:124.672000pt;}
.yae{bottom:127.552000pt;}
.y26{bottom:129.160000pt;}
.y84{bottom:130.752000pt;}
.y42{bottom:136.826667pt;}
.y7d{bottom:138.906667pt;}
.yad{bottom:142.106667pt;}
.y25{bottom:144.520000pt;}
.y83{bottom:145.946667pt;}
.y41{bottom:149.146667pt;}
.ye2{bottom:152.186667pt;}
.y7c{bottom:154.266667pt;}
.yac{bottom:156.826667pt;}
.y24{bottom:159.720000pt;}
.y82{bottom:161.306667pt;}
.y40{bottom:161.466667pt;}
.ye1{bottom:167.546667pt;}
.y7b{bottom:169.626667pt;}
.yab{bottom:172.026667pt;}
.y3f{bottom:173.626667pt;}
.y23{bottom:175.080000pt;}
.y10f{bottom:175.226667pt;}
.y81{bottom:176.666667pt;}
.y7a{bottom:182.106667pt;}
.ye0{bottom:182.746667pt;}
.y10d{bottom:185.146667pt;}
.y3e{bottom:187.066667pt;}
.yaa{bottom:187.386667pt;}
.y79{bottom:188.826667pt;}
.y22{bottom:190.440000pt;}
.y80{bottom:192.026667pt;}
.ydf{bottom:198.106667pt;}
.ya9{bottom:202.746667pt;}
.y3d{bottom:204.026667pt;}
.y21{bottom:205.800000pt;}
.y78{bottom:207.386667pt;}
.yde{bottom:213.466667pt;}
.y19{bottom:215.866667pt;}
.ya8{bottom:218.106667pt;}
.y20{bottom:221.160000pt;}
.y77{bottom:222.746667pt;}
.ydd{bottom:228.826667pt;}
.ya7{bottom:233.466667pt;}
.y1f{bottom:236.520000pt;}
.y76{bottom:237.946667pt;}
.ydc{bottom:244.186667pt;}
.y106{bottom:247.226667pt;}
.ya6{bottom:248.666667pt;}
.y1e{bottom:251.720000pt;}
.y75{bottom:253.306667pt;}
.ydb{bottom:259.546667pt;}
.ya5{bottom:264.026667pt;}
.y1d{bottom:267.080000pt;}
.y74{bottom:268.666667pt;}
.yda{bottom:274.746667pt;}
.ya4{bottom:279.386667pt;}
.y1c{bottom:282.440000pt;}
.y73{bottom:284.066667pt;}
.yd9{bottom:290.146667pt;}
.ya3{bottom:294.786667pt;}
.y1b{bottom:297.826667pt;}
.y72{bottom:299.426667pt;}
.yd8{bottom:305.506667pt;}
.ya2{bottom:310.146667pt;}
.y1a{bottom:313.346667pt;}
.y71{bottom:314.786667pt;}
.yd7{bottom:320.866667pt;}
.y35{bottom:322.146667pt;}
.ya1{bottom:325.506667pt;}
.y70{bottom:329.986667pt;}
.yd6{bottom:336.226667pt;}
.ya0{bottom:340.706667pt;}
.y6f{bottom:345.346667pt;}
.yd5{bottom:351.586667pt;}
.y9f{bottom:356.066667pt;}
.yec{bottom:358.946667pt;}
.y6e{bottom:360.706667pt;}
.yd4{bottom:366.786667pt;}
.y105{bottom:371.106667pt;}
.y9e{bottom:371.426667pt;}
.y6d{bottom:376.066667pt;}
.yeb{bottom:381.346667pt;}
.yd3{bottom:382.146667pt;}
.y9d{bottom:386.786667pt;}
.y6c{bottom:391.426667pt;}
.y104{bottom:393.506667pt;}
.yd2{bottom:397.506667pt;}
.y33{bottom:397.826667pt;}
.y9c{bottom:402.146667pt;}
.yea{bottom:403.746667pt;}
.y6b{bottom:406.626667pt;}
.yd1{bottom:412.866667pt;}
.y103{bottom:415.906667pt;}
.y2a{bottom:416.226667pt;}
.y9b{bottom:417.506667pt;}
.ye5{bottom:420.866667pt;}
.y6a{bottom:421.986667pt;}
.yd0{bottom:428.226667pt;}
.y9a{bottom:432.706667pt;}
.y69{bottom:437.346667pt;}
.y102{bottom:438.306667pt;}
.ycf{bottom:443.426667pt;}
.y99{bottom:448.066667pt;}
.y68{bottom:452.706667pt;}
.yce{bottom:458.786667pt;}
.y101{bottom:460.706667pt;}
.y98{bottom:463.426667pt;}
.y67{bottom:468.066667pt;}
.ycd{bottom:474.146667pt;}
.y97{bottom:478.786667pt;}
.ye4{bottom:482.946667pt;}
.y100{bottom:483.106667pt;}
.y66{bottom:483.426667pt;}
.ycc{bottom:489.506667pt;}
.y96{bottom:494.146667pt;}
.y65{bottom:498.626667pt;}
.ycb{bottom:504.866667pt;}
.yff{bottom:505.533333pt;}
.y95{bottom:509.533333pt;}
.y64{bottom:514.013333pt;}
.yca{bottom:520.253333pt;}
.y94{bottom:524.573333pt;}
.yfe{bottom:527.933333pt;}
.y63{bottom:529.373333pt;}
.yc9{bottom:535.453333pt;}
.y93{bottom:539.133333pt;}
.y17{bottom:542.813333pt;}
.y62{bottom:544.733333pt;}
.yfd{bottom:550.333333pt;}
.yc8{bottom:550.813333pt;}
.y92{bottom:553.693333pt;}
.y61{bottom:560.093333pt;}
.yc7{bottom:566.173333pt;}
.y91{bottom:568.253333pt;}
.yfc{bottom:572.733333pt;}
.y16{bottom:573.533333pt;}
.y60{bottom:575.453333pt;}
.yc6{bottom:581.533333pt;}
.y90{bottom:582.973333pt;}
.y5f{bottom:590.653333pt;}
.y15{bottom:591.133333pt;}
.yfb{bottom:595.133333pt;}
.yc5{bottom:596.893333pt;}
.y8f{bottom:597.533333pt;}
.y5e{bottom:606.013333pt;}
.y8e{bottom:612.093333pt;}
.yc4{bottom:612.253333pt;}
.yfa{bottom:617.533333pt;}
.y14{bottom:621.053333pt;}
.y5d{bottom:621.373333pt;}
.y8d{bottom:626.653333pt;}
.yc3{bottom:627.453333pt;}
.y13{bottom:636.413333pt;}
.y5c{bottom:636.733333pt;}
.yf9{bottom:639.933333pt;}
.y8c{bottom:641.213333pt;}
.yc2{bottom:642.813333pt;}
.y12{bottom:647.453333pt;}
.y5b{bottom:652.093333pt;}
.y8b{bottom:655.773333pt;}
.yc1{bottom:658.173333pt;}
.yf8{bottom:662.333333pt;}
.y11{bottom:666.333333pt;}
.y5a{bottom:667.453333pt;}
.y8a{bottom:670.333333pt;}
.yc0{bottom:673.533333pt;}
.y59{bottom:682.653333pt;}
.yf7{bottom:684.733333pt;}
.y89{bottom:684.893333pt;}
.ybf{bottom:688.893333pt;}
.y10{bottom:693.853333pt;}
.y58{bottom:698.013333pt;}
.y88{bottom:699.453333pt;}
.ybe{bottom:704.093333pt;}
.yf6{bottom:707.133333pt;}
.y57{bottom:713.373333pt;}
.y87{bottom:714.013333pt;}
.ybd{bottom:719.453333pt;}
.yf{bottom:721.533333pt;}
.y56{bottom:728.773333pt;}
.yf5{bottom:729.573333pt;}
.ybc{bottom:734.853333pt;}
.y55{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.ybb{bottom:750.213333pt;}
.yf4{bottom:751.973333pt;}
.y54{bottom:759.333333pt;}
.yba{bottom:765.573333pt;}
.yf3{bottom:774.373333pt;}
.y53{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.yb9{bottom:780.933333pt;}
.yb{bottom:788.453333pt;}
.y52{bottom:790.053333pt;}
.yb8{bottom:796.133333pt;}
.yf2{bottom:796.773333pt;}
.y51{bottom:805.413333pt;}
.yb7{bottom:811.333333pt;}
.yf1{bottom:819.173333pt;}
.y50{bottom:820.773333pt;}
.yb6{bottom:825.893333pt;}
.y4f{bottom:836.133333pt;}
.yb5{bottom:840.453333pt;}
.yf0{bottom:841.573333pt;}
.y4e{bottom:851.333333pt;}
.yb4{bottom:855.013333pt;}
.yef{bottom:863.973333pt;}
.y4d{bottom:866.693333pt;}
.yb3{bottom:869.573333pt;}
.y4c{bottom:882.053333pt;}
.yb2{bottom:884.133333pt;}
.yee{bottom:886.373333pt;}
.y4b{bottom:897.413333pt;}
.yb1{bottom:898.853333pt;}
.yed{bottom:908.773333pt;}
.y4a{bottom:912.773333pt;}
.yb0{bottom:913.413333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h20{height:12.160000pt;}
.hf{height:15.200000pt;}
.h17{height:17.760000pt;}
.h4{height:24.512000pt;}
.hd{height:24.991875pt;}
.h21{height:30.254687pt;}
.h6{height:31.008437pt;}
.h1a{height:33.867188pt;}
.h13{height:34.710938pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h10{height:37.479688pt;}
.h5{height:38.413438pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h23{height:39.373125pt;}
.h9{height:42.578750pt;}
.h2{height:43.108125pt;}
.h1f{height:43.551875pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h22{height:61.280000pt;}
.h25{height:61.440000pt;}
.h1d{height:62.643750pt;}
.h1e{height:65.293438pt;}
.hb{height:67.734375pt;}
.he{height:69.421875pt;}
.h18{height:75.040000pt;}
.h19{height:105.632000pt;}
.h24{height:105.792000pt;}
.h14{height:125.792000pt;}
.h8{height:136.800000pt;}
.h11{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:178.906667pt;}
.w7{width:292.706667pt;}
.w5{width:539.933333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.920000pt;}
.x5{left:7.680000pt;}
.x21{left:11.040000pt;}
.x17{left:16.040000pt;}
.x13{left:17.960000pt;}
.x15{left:21.960000pt;}
.x16{left:23.560000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1a{left:52.959988pt;}
.x3{left:53.919988pt;}
.x18{left:58.239988pt;}
.x1e{left:71.226667pt;}
.x1d{left:75.680000pt;}
.x1c{left:77.119988pt;}
.x10{left:83.391988pt;}
.xb{left:87.551988pt;}
.x6{left:89.632000pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xf{left:144.986655pt;}
.x2{left:196.186655pt;}
.x20{left:262.786667pt;}
.xe{left:285.826655pt;}
.xc{left:360.066655pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x11{left:413.666655pt;}
.x19{left:425.186655pt;}
.x1b{left:449.213321pt;}
.x1f{left:468.093321pt;}
.x12{left:587.773333pt;}
.x9{left:722.213333pt;}
}




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