
    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_882ee4701dd0c6916efd7440.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_257a22e4aefa141d874c69e6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e4cb960ce451152e6c1e36a6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3eb56f9aaef6993c424766a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_aaf3cb8bba50bb0453032543.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921875;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_4e0a889b5df1f3fdebd6b075.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_3ed26b9efa23524c44d4f335.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_8ccec87ae39b98a52fc5f4dd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_4e2f441c322d7273a1969042.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_33bc26563f5880975e6f64d7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900391;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_2dd955308301aeb25426cc30.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-24.360000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.229800px;}
.ls7{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.lsa{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.493800px;}
.lsd{letter-spacing:0.900000px;}
.lsc{letter-spacing:46.026720px;}
.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;}
}
.wsf{word-spacing:-84.240000px;}
.wsa{word-spacing:-54.000000px;}
.ws10{word-spacing:-19.038240px;}
.ws1{word-spacing:-16.822200px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wse{word-spacing:-12.204000px;}
.ws6{word-spacing:-10.933800px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws8{word-spacing:-8.928000px;}
.ws12{word-spacing:-0.063360px;}
.wsd{word-spacing:0.000000px;}
.ws11{word-spacing:490.032000px;}
._26{margin-left:-2.360160px;}
._0{margin-left:-1.093680px;}
._1{width:1.414320px;}
._3{width:2.808000px;}
._9{width:3.920640px;}
._5{width:4.941360px;}
._4{width:6.750000px;}
._6{width:7.779360px;}
._b{width:8.838480px;}
._f{width:9.853680px;}
._8{width:11.101680px;}
._7{width:12.114000px;}
._13{width:13.685040px;}
._2{width:15.078960px;}
._a{width:16.236000px;}
._c{width:18.007680px;}
._e{width:19.780560px;}
._10{width:20.856240px;}
._d{width:21.951840px;}
._12{width:26.334000px;}
._11{width:27.972000px;}
._1e{width:31.573200px;}
._18{width:36.393840px;}
._14{width:40.338000px;}
._17{width:41.493360px;}
._1c{width:43.106880px;}
._1d{width:44.162640px;}
._1f{width:51.473280px;}
._20{width:52.648560px;}
._1b{width:57.369600px;}
._27{width:60.536880px;}
._1a{width:67.349520px;}
._19{width:76.452960px;}
._24{width:93.969120px;}
._2a{width:97.906800px;}
._16{width:102.388800px;}
._29{width:118.045920px;}
._28{width:131.890320px;}
._25{width:146.850240px;}
._21{width:153.463680px;}
._22{width:216.032400px;}
._23{width:218.024400px;}
._15{width:238.103760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.340000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y4d{bottom:11.520000px;}
.yad{bottom:15.300000px;}
.yf8{bottom:15.405000px;}
.y6c{bottom:16.560000px;}
.y7d{bottom:16.605000px;}
.y59{bottom:16.740000px;}
.y43{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y87{bottom:23.220000px;}
.y75{bottom:28.440000px;}
.y78{bottom:28.620000px;}
.yac{bottom:31.785000px;}
.yf7{bottom:31.860000px;}
.y58{bottom:32.400000px;}
.y7f{bottom:35.100000px;}
.ybe{bottom:35.130000px;}
.y6b{bottom:35.280000px;}
.yc4{bottom:35.325000px;}
.y42{bottom:37.845000px;}
.y74{bottom:40.500000px;}
.y84{bottom:47.154000px;}
.y70{bottom:47.160000px;}
.y7c{bottom:47.385000px;}
.y57{bottom:47.874000px;}
.y3{bottom:47.910000px;}
.ya7{bottom:48.630000px;}
.yf2{bottom:48.750000px;}
.y4c{bottom:53.634000px;}
.y9e{bottom:53.670000px;}
.y86{bottom:53.820000px;}
.y41{bottom:55.125000px;}
.y7{bottom:57.060000px;}
.y83{bottom:59.034000px;}
.y73{bottom:59.040000px;}
.y77{bottom:59.220000px;}
.y4b{bottom:63.354000px;}
.y56{bottom:65.694000px;}
.y6f{bottom:65.880000px;}
.y7b{bottom:65.925000px;}
.yaf{bottom:67.755000px;}
.ya8{bottom:71.895000px;}
.y40{bottom:72.405000px;}
.y4a{bottom:75.054000px;}
.yf3{bottom:77.070000px;}
.y82{bottom:77.754000px;}
.y72{bottom:77.760000px;}
.y55{bottom:81.174000px;}
.y6e{bottom:84.420000px;}
.y49{bottom:88.194000px;}
.y3f{bottom:89.505000px;}
.ya5{bottom:94.536000px;}
.ya9{bottom:95.190000px;}
.y54{bottom:98.994000px;}
.y48{bottom:101.154000px;}
.y45{bottom:103.896000px;}
.yf4{bottom:105.450000px;}
.y3e{bottom:106.785000px;}
.yf9{bottom:107.610000px;}
.ya4{bottom:111.816000px;}
.yf0{bottom:112.176000px;}
.y53{bottom:114.474000px;}
.y81{bottom:115.596000px;}
.yaa{bottom:118.470000px;}
.yae{bottom:119.415000px;}
.y3d{bottom:124.065000px;}
.ya3{bottom:128.916000px;}
.yef{bottom:129.456000px;}
.y52{bottom:129.954000px;}
.yf5{bottom:133.815000px;}
.y3c{bottom:141.345000px;}
.yab{bottom:141.735000px;}
.ya2{bottom:142.956000px;}
.y51{bottom:145.434000px;}
.ya6{bottom:145.440000px;}
.yee{bottom:146.556000px;}
.y3b{bottom:158.625000px;}
.y50{bottom:161.094000px;}
.yf6{bottom:162.180000px;}
.y47{bottom:163.074000px;}
.yed{bottom:163.830000px;}
.y46{bottom:173.694000px;}
.y3a{bottom:175.725000px;}
.y4f{bottom:176.574000px;}
.yec{bottom:181.110000px;}
.y39{bottom:193.005000px;}
.yeb{bottom:198.390000px;}
.y80{bottom:208.110000px;}
.y38{bottom:210.285000px;}
.yb1{bottom:212.865000px;}
.yea{bottom:215.670000px;}
.y37{bottom:227.565000px;}
.ye9{bottom:232.950000px;}
.yfa{bottom:235.410000px;}
.yb0{bottom:238.605000px;}
.y36{bottom:244.845000px;}
.ye8{bottom:250.050000px;}
.y35{bottom:262.125000px;}
.ye7{bottom:267.330000px;}
.yc6{bottom:274.350000px;}
.y34{bottom:279.225000px;}
.ye6{bottom:284.610000px;}
.y7e{bottom:288.750000px;}
.yc5{bottom:289.110000px;}
.y33{bottom:296.535000px;}
.ye5{bottom:301.890000px;}
.y10{bottom:307.650000px;}
.y1e{bottom:309.855000px;}
.y32{bottom:313.815000px;}
.ye4{bottom:319.170000px;}
.yc3{bottom:320.430000px;}
.y31{bottom:331.095000px;}
.y1d{bottom:333.975000px;}
.ye3{bottom:336.270000px;}
.y7a{bottom:338.610000px;}
.ye2{bottom:353.595000px;}
.y30{bottom:357.015000px;}
.y1c{bottom:358.095000px;}
.yc2{bottom:370.515000px;}
.ye1{bottom:370.875000px;}
.y2f{bottom:372.495000px;}
.y1b{bottom:382.395000px;}
.y2e{bottom:387.975000px;}
.ye0{bottom:388.155000px;}
.y2d{bottom:403.635000px;}
.ydf{bottom:405.435000px;}
.y1a{bottom:406.515000px;}
.ya1{bottom:418.575000px;}
.y2c{bottom:419.115000px;}
.y79{bottom:419.295000px;}
.yc1{bottom:420.555000px;}
.yde{bottom:422.715000px;}
.y19{bottom:430.635000px;}
.ya0{bottom:433.335000px;}
.y2b{bottom:434.595000px;}
.ydd{bottom:439.815000px;}
.y2a{bottom:450.075000px;}
.y18{bottom:454.755000px;}
.ydc{bottom:457.095000px;}
.y29{bottom:465.735000px;}
.yc0{bottom:470.415000px;}
.ydb{bottom:474.375000px;}
.y17{bottom:478.875000px;}
.y28{bottom:481.215000px;}
.y9f{bottom:483.195000px;}
.yda{bottom:491.655000px;}
.y27{bottom:496.695000px;}
.y16{bottom:502.995000px;}
.yd9{bottom:508.935000px;}
.y26{bottom:512.175000px;}
.y76{bottom:518.475000px;}
.ybf{bottom:520.455000px;}
.yd8{bottom:526.215000px;}
.y15{bottom:527.115000px;}
.y25{bottom:527.835000px;}
.y24{bottom:543.315000px;}
.y14{bottom:551.415000px;}
.y9d{bottom:551.955000px;}
.y23{bottom:558.795000px;}
.yd7{bottom:560.595000px;}
.ybd{bottom:570.495000px;}
.y22{bottom:574.320000px;}
.y13{bottom:575.580000px;}
.yd6{bottom:577.875000px;}
.y21{bottom:589.980000px;}
.yd5{bottom:595.155000px;}
.y12{bottom:599.700000px;}
.y20{bottom:605.460000px;}
.y71{bottom:611.205000px;}
.yd4{bottom:612.465000px;}
.y1f{bottom:620.940000px;}
.ybc{bottom:623.625000px;}
.y9c{bottom:623.805000px;}
.y11{bottom:623.820000px;}
.yd3{bottom:629.565000px;}
.y9b{bottom:640.905000px;}
.yd2{bottom:646.845000px;}
.y9a{bottom:658.185000px;}
.yd1{bottom:664.125000px;}
.y99{bottom:675.465000px;}
.yd0{bottom:681.405000px;}
.y98{bottom:692.745000px;}
.ycf{bottom:698.685000px;}
.y6d{bottom:703.725000px;}
.ybb{bottom:709.845000px;}
.y97{bottom:710.025000px;}
.yce{bottom:715.965000px;}
.yba{bottom:727.125000px;}
.y96{bottom:727.305000px;}
.ycd{bottom:733.065000px;}
.y95{bottom:744.405000px;}
.ycc{bottom:750.345000px;}
.y94{bottom:761.685000px;}
.ycb{bottom:767.625000px;}
.y93{bottom:778.965000px;}
.yca{bottom:784.905000px;}
.y92{bottom:796.245000px;}
.yc9{bottom:802.185000px;}
.y6a{bottom:802.905000px;}
.yb9{bottom:813.345000px;}
.y91{bottom:813.525000px;}
.yc8{bottom:819.465000px;}
.y90{bottom:830.625000px;}
.yc7{bottom:833.325000px;}
.yf1{bottom:836.820000px;}
.y8f{bottom:847.905000px;}
.y69{bottom:856.185000px;}
.y8e{bottom:865.185000px;}
.y68{bottom:873.510000px;}
.y8d{bottom:882.510000px;}
.y67{bottom:890.610000px;}
.yb8{bottom:899.610000px;}
.y8c{bottom:899.790000px;}
.y66{bottom:907.890000px;}
.yb7{bottom:916.890000px;}
.y8b{bottom:917.070000px;}
.y65{bottom:925.170000px;}
.y8a{bottom:934.170000px;}
.y64{bottom:942.450000px;}
.yf{bottom:943.710000px;}
.ye{bottom:948.390000px;}
.y89{bottom:951.450000px;}
.y63{bottom:959.730000px;}
.yd{bottom:965.670000px;}
.y88{bottom:966.210000px;}
.yb6{bottom:968.730000px;}
.y62{bottom:977.010000px;}
.yc{bottom:982.950000px;}
.yb5{bottom:986.010000px;}
.y61{bottom:994.110000px;}
.yb{bottom:1000.230000px;}
.yb4{bottom:1003.110000px;}
.y60{bottom:1011.390000px;}
.ya{bottom:1018.950000px;}
.yb3{bottom:1020.390000px;}
.y5f{bottom:1028.670000px;}
.y85{bottom:1034.790000px;}
.yb2{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.y5e{bottom:1054.950000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.064063px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h15{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h27{height:30.600000px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h13{height:38.997070px;}
.h14{height:39.471680px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h1f{height:43.506914px;}
.h5{height:46.251562px;}
.h23{height:46.308164px;}
.h29{height:49.097812px;}
.h1c{height:49.140000px;}
.h25{height:49.176000px;}
.h17{height:49.320000px;}
.h26{height:49.356000px;}
.h22{height:53.709961px;}
.h16{height:64.002656px;}
.h8{height:64.126055px;}
.h3{height:65.884219px;}
.h20{height:67.716000px;}
.h1e{height:67.860000px;}
.h1d{height:79.920000px;}
.h1b{height:79.956000px;}
.h24{height:83.787539px;}
.h2{height:84.996000px;}
.h19{height:91.800000px;}
.h1a{height:91.836000px;}
.h18{height:98.460000px;}
.h4{height:117.180000px;}
.h10{height:203.040000px;}
.h28{height:266.580000px;}
.h21{height:270.000000px;}
.hb{height:633.525000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:41.760000px;}
.w11{width:65.520000px;}
.wf{width:89.496000px;}
.w10{width:91.296000px;}
.w17{width:93.996000px;}
.w16{width:103.176000px;}
.w2{width:104.076000px;}
.wd{width:112.140000px;}
.wa{width:118.440000px;}
.w12{width:131.256000px;}
.w5{width:131.940000px;}
.wc{width:151.200000px;}
.w8{width:162.900000px;}
.w14{width:163.830000px;}
.w15{width:166.710000px;}
.wb{width:205.455000px;}
.we{width:209.910000px;}
.w13{width:497.520000px;}
.w6{width:593.430000px;}
.w7{width:594.150000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.056000px;}
.x18{left:8.100000px;}
.x16{left:10.440000px;}
.x4{left:12.780000px;}
.x1b{left:17.820000px;}
.x6{left:19.260000px;}
.x10{left:25.560000px;}
.x11{left:28.980000px;}
.xf{left:31.140000px;}
.x15{left:37.260000px;}
.x13{left:42.480000px;}
.x14{left:45.540000px;}
.x1c{left:47.340000px;}
.x37{left:53.535000px;}
.x2c{left:55.080000px;}
.x1d{left:56.700000px;}
.x19{left:62.145000px;}
.x12{left:65.874000px;}
.x1{left:78.300000px;}
.x9{left:86.435987px;}
.x2{left:95.790000px;}
.x38{left:101.625000px;}
.x1a{left:106.374000px;}
.x24{left:113.435987px;}
.x32{left:115.416000px;}
.x39{left:127.335000px;}
.x3b{left:130.035000px;}
.x2d{left:132.150000px;}
.x1f{left:134.676000px;}
.x5{left:141.345000px;}
.x2f{left:160.200000px;}
.x20{left:177.150000px;}
.x3{left:182.370000px;}
.x2b{left:196.740000px;}
.x25{left:207.930000px;}
.x17{left:218.370000px;}
.x31{left:224.535000px;}
.x33{left:248.070000px;}
.x2e{left:251.745000px;}
.x3a{left:254.055000px;}
.x21{left:281.955000px;}
.x30{left:309.600000px;}
.x22{left:401.115000px;}
.x34{left:412.635000px;}
.x26{left:418.575000px;}
.x27{left:508.785000px;}
.x35{left:580.065000px;}
.x28{left:600.990000px;}
.x23{left:607.290000px;}
.xc{left:608.909987px;}
.xd{left:618.089987px;}
.x29{left:667.230000px;}
.x36{left:683.970000px;}
.xa{left:686.489987px;}
.xb{left:691.529987px;}
.x2a{left:696.389987px;}
.x8{left:766.049987px;}
.x7{left:791.999987px;}
.xe{left:806.939987px;}
@media print{
.v1{vertical-align:-21.653333pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.204267pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsa{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.438933pt;}
.lsd{letter-spacing:0.800000pt;}
.lsc{letter-spacing:40.912640pt;}
.wsf{word-spacing:-74.880000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws10{word-spacing:-16.922880pt;}
.ws1{word-spacing:-14.953067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wse{word-spacing:-10.848000pt;}
.ws6{word-spacing:-9.718933pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws8{word-spacing:-7.936000pt;}
.ws12{word-spacing:-0.056320pt;}
.wsd{word-spacing:0.000000pt;}
.ws11{word-spacing:435.584000pt;}
._26{margin-left:-2.097920pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.257173pt;}
._3{width:2.496000pt;}
._9{width:3.485013pt;}
._5{width:4.392320pt;}
._4{width:6.000000pt;}
._6{width:6.914987pt;}
._b{width:7.856427pt;}
._f{width:8.758827pt;}
._8{width:9.868160pt;}
._7{width:10.768000pt;}
._13{width:12.164480pt;}
._2{width:13.403520pt;}
._a{width:14.432000pt;}
._c{width:16.006827pt;}
._e{width:17.582720pt;}
._10{width:18.538880pt;}
._d{width:19.512747pt;}
._12{width:23.408000pt;}
._11{width:24.864000pt;}
._1e{width:28.065067pt;}
._18{width:32.350080pt;}
._14{width:35.856000pt;}
._17{width:36.882987pt;}
._1c{width:38.317227pt;}
._1d{width:39.255680pt;}
._1f{width:45.754027pt;}
._20{width:46.798720pt;}
._1b{width:50.995200pt;}
._27{width:53.810560pt;}
._1a{width:59.866240pt;}
._19{width:67.958187pt;}
._24{width:83.528107pt;}
._2a{width:87.028267pt;}
._16{width:91.012267pt;}
._29{width:104.929707pt;}
._28{width:117.235840pt;}
._25{width:130.533547pt;}
._21{width:136.412160pt;}
._22{width:192.028800pt;}
._23{width:193.799467pt;}
._15{width:211.647787pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.080000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y4d{bottom:10.240000pt;}
.yad{bottom:13.600000pt;}
.yf8{bottom:13.693333pt;}
.y6c{bottom:14.720000pt;}
.y7d{bottom:14.760000pt;}
.y59{bottom:14.880000pt;}
.y43{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y87{bottom:20.640000pt;}
.y75{bottom:25.280000pt;}
.y78{bottom:25.440000pt;}
.yac{bottom:28.253333pt;}
.yf7{bottom:28.320000pt;}
.y58{bottom:28.800000pt;}
.y7f{bottom:31.200000pt;}
.ybe{bottom:31.226667pt;}
.y6b{bottom:31.360000pt;}
.yc4{bottom:31.400000pt;}
.y42{bottom:33.640000pt;}
.y74{bottom:36.000000pt;}
.y84{bottom:41.914667pt;}
.y70{bottom:41.920000pt;}
.y7c{bottom:42.120000pt;}
.y57{bottom:42.554667pt;}
.y3{bottom:42.586667pt;}
.ya7{bottom:43.226667pt;}
.yf2{bottom:43.333333pt;}
.y4c{bottom:47.674667pt;}
.y9e{bottom:47.706667pt;}
.y86{bottom:47.840000pt;}
.y41{bottom:49.000000pt;}
.y7{bottom:50.720000pt;}
.y83{bottom:52.474667pt;}
.y73{bottom:52.480000pt;}
.y77{bottom:52.640000pt;}
.y4b{bottom:56.314667pt;}
.y56{bottom:58.394667pt;}
.y6f{bottom:58.560000pt;}
.y7b{bottom:58.600000pt;}
.yaf{bottom:60.226667pt;}
.ya8{bottom:63.906667pt;}
.y40{bottom:64.360000pt;}
.y4a{bottom:66.714667pt;}
.yf3{bottom:68.506667pt;}
.y82{bottom:69.114667pt;}
.y72{bottom:69.120000pt;}
.y55{bottom:72.154667pt;}
.y6e{bottom:75.040000pt;}
.y49{bottom:78.394667pt;}
.y3f{bottom:79.560000pt;}
.ya5{bottom:84.032000pt;}
.ya9{bottom:84.613333pt;}
.y54{bottom:87.994667pt;}
.y48{bottom:89.914667pt;}
.y45{bottom:92.352000pt;}
.yf4{bottom:93.733333pt;}
.y3e{bottom:94.920000pt;}
.yf9{bottom:95.653333pt;}
.ya4{bottom:99.392000pt;}
.yf0{bottom:99.712000pt;}
.y53{bottom:101.754667pt;}
.y81{bottom:102.752000pt;}
.yaa{bottom:105.306667pt;}
.yae{bottom:106.146667pt;}
.y3d{bottom:110.280000pt;}
.ya3{bottom:114.592000pt;}
.yef{bottom:115.072000pt;}
.y52{bottom:115.514667pt;}
.yf5{bottom:118.946667pt;}
.y3c{bottom:125.640000pt;}
.yab{bottom:125.986667pt;}
.ya2{bottom:127.072000pt;}
.y51{bottom:129.274667pt;}
.ya6{bottom:129.280000pt;}
.yee{bottom:130.272000pt;}
.y3b{bottom:141.000000pt;}
.y50{bottom:143.194667pt;}
.yf6{bottom:144.160000pt;}
.y47{bottom:144.954667pt;}
.yed{bottom:145.626667pt;}
.y46{bottom:154.394667pt;}
.y3a{bottom:156.200000pt;}
.y4f{bottom:156.954667pt;}
.yec{bottom:160.986667pt;}
.y39{bottom:171.560000pt;}
.yeb{bottom:176.346667pt;}
.y80{bottom:184.986667pt;}
.y38{bottom:186.920000pt;}
.yb1{bottom:189.213333pt;}
.yea{bottom:191.706667pt;}
.y37{bottom:202.280000pt;}
.ye9{bottom:207.066667pt;}
.yfa{bottom:209.253333pt;}
.yb0{bottom:212.093333pt;}
.y36{bottom:217.640000pt;}
.ye8{bottom:222.266667pt;}
.y35{bottom:233.000000pt;}
.ye7{bottom:237.626667pt;}
.yc6{bottom:243.866667pt;}
.y34{bottom:248.200000pt;}
.ye6{bottom:252.986667pt;}
.y7e{bottom:256.666667pt;}
.yc5{bottom:256.986667pt;}
.y33{bottom:263.586667pt;}
.ye5{bottom:268.346667pt;}
.y10{bottom:273.466667pt;}
.y1e{bottom:275.426667pt;}
.y32{bottom:278.946667pt;}
.ye4{bottom:283.706667pt;}
.yc3{bottom:284.826667pt;}
.y31{bottom:294.306667pt;}
.y1d{bottom:296.866667pt;}
.ye3{bottom:298.906667pt;}
.y7a{bottom:300.986667pt;}
.ye2{bottom:314.306667pt;}
.y30{bottom:317.346667pt;}
.y1c{bottom:318.306667pt;}
.yc2{bottom:329.346667pt;}
.ye1{bottom:329.666667pt;}
.y2f{bottom:331.106667pt;}
.y1b{bottom:339.906667pt;}
.y2e{bottom:344.866667pt;}
.ye0{bottom:345.026667pt;}
.y2d{bottom:358.786667pt;}
.ydf{bottom:360.386667pt;}
.y1a{bottom:361.346667pt;}
.ya1{bottom:372.066667pt;}
.y2c{bottom:372.546667pt;}
.y79{bottom:372.706667pt;}
.yc1{bottom:373.826667pt;}
.yde{bottom:375.746667pt;}
.y19{bottom:382.786667pt;}
.ya0{bottom:385.186667pt;}
.y2b{bottom:386.306667pt;}
.ydd{bottom:390.946667pt;}
.y2a{bottom:400.066667pt;}
.y18{bottom:404.226667pt;}
.ydc{bottom:406.306667pt;}
.y29{bottom:413.986667pt;}
.yc0{bottom:418.146667pt;}
.ydb{bottom:421.666667pt;}
.y17{bottom:425.666667pt;}
.y28{bottom:427.746667pt;}
.y9f{bottom:429.506667pt;}
.yda{bottom:437.026667pt;}
.y27{bottom:441.506667pt;}
.y16{bottom:447.106667pt;}
.yd9{bottom:452.386667pt;}
.y26{bottom:455.266667pt;}
.y76{bottom:460.866667pt;}
.ybf{bottom:462.626667pt;}
.yd8{bottom:467.746667pt;}
.y15{bottom:468.546667pt;}
.y25{bottom:469.186667pt;}
.y24{bottom:482.946667pt;}
.y14{bottom:490.146667pt;}
.y9d{bottom:490.626667pt;}
.y23{bottom:496.706667pt;}
.yd7{bottom:498.306667pt;}
.ybd{bottom:507.106667pt;}
.y22{bottom:510.506667pt;}
.y13{bottom:511.626667pt;}
.yd6{bottom:513.666667pt;}
.y21{bottom:524.426667pt;}
.yd5{bottom:529.026667pt;}
.y12{bottom:533.066667pt;}
.y20{bottom:538.186667pt;}
.y71{bottom:543.293333pt;}
.yd4{bottom:544.413333pt;}
.y1f{bottom:551.946667pt;}
.ybc{bottom:554.333333pt;}
.y9c{bottom:554.493333pt;}
.y11{bottom:554.506667pt;}
.yd3{bottom:559.613333pt;}
.y9b{bottom:569.693333pt;}
.yd2{bottom:574.973333pt;}
.y9a{bottom:585.053333pt;}
.yd1{bottom:590.333333pt;}
.y99{bottom:600.413333pt;}
.yd0{bottom:605.693333pt;}
.y98{bottom:615.773333pt;}
.ycf{bottom:621.053333pt;}
.y6d{bottom:625.533333pt;}
.ybb{bottom:630.973333pt;}
.y97{bottom:631.133333pt;}
.yce{bottom:636.413333pt;}
.yba{bottom:646.333333pt;}
.y96{bottom:646.493333pt;}
.ycd{bottom:651.613333pt;}
.y95{bottom:661.693333pt;}
.ycc{bottom:666.973333pt;}
.y94{bottom:677.053333pt;}
.ycb{bottom:682.333333pt;}
.y93{bottom:692.413333pt;}
.yca{bottom:697.693333pt;}
.y92{bottom:707.773333pt;}
.yc9{bottom:713.053333pt;}
.y6a{bottom:713.693333pt;}
.yb9{bottom:722.973333pt;}
.y91{bottom:723.133333pt;}
.yc8{bottom:728.413333pt;}
.y90{bottom:738.333333pt;}
.yc7{bottom:740.733333pt;}
.yf1{bottom:743.840000pt;}
.y8f{bottom:753.693333pt;}
.y69{bottom:761.053333pt;}
.y8e{bottom:769.053333pt;}
.y68{bottom:776.453333pt;}
.y8d{bottom:784.453333pt;}
.y67{bottom:791.653333pt;}
.yb8{bottom:799.653333pt;}
.y8c{bottom:799.813333pt;}
.y66{bottom:807.013333pt;}
.yb7{bottom:815.013333pt;}
.y8b{bottom:815.173333pt;}
.y65{bottom:822.373333pt;}
.y8a{bottom:830.373333pt;}
.y64{bottom:837.733333pt;}
.yf{bottom:838.853333pt;}
.ye{bottom:843.013333pt;}
.y89{bottom:845.733333pt;}
.y63{bottom:853.093333pt;}
.yd{bottom:858.373333pt;}
.y88{bottom:858.853333pt;}
.yb6{bottom:861.093333pt;}
.y62{bottom:868.453333pt;}
.yc{bottom:873.733333pt;}
.yb5{bottom:876.453333pt;}
.y61{bottom:883.653333pt;}
.yb{bottom:889.093333pt;}
.yb4{bottom:891.653333pt;}
.y60{bottom:899.013333pt;}
.ya{bottom:905.733333pt;}
.yb3{bottom:907.013333pt;}
.y5f{bottom:914.373333pt;}
.y85{bottom:919.813333pt;}
.yb2{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.y5e{bottom:937.733333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.612500pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h15{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h27{height:27.200000pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h13{height:34.664062pt;}
.h14{height:35.085938pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h1f{height:38.672812pt;}
.h5{height:41.112500pt;}
.h23{height:41.162813pt;}
.h29{height:43.642500pt;}
.h1c{height:43.680000pt;}
.h25{height:43.712000pt;}
.h17{height:43.840000pt;}
.h26{height:43.872000pt;}
.h22{height:47.742188pt;}
.h16{height:56.891250pt;}
.h8{height:57.000937pt;}
.h3{height:58.563750pt;}
.h20{height:60.192000pt;}
.h1e{height:60.320000pt;}
.h1d{height:71.040000pt;}
.h1b{height:71.072000pt;}
.h24{height:74.477812pt;}
.h2{height:75.552000pt;}
.h19{height:81.600000pt;}
.h1a{height:81.632000pt;}
.h18{height:87.520000pt;}
.h4{height:104.160000pt;}
.h10{height:180.480000pt;}
.h28{height:236.960000pt;}
.h21{height:240.000000pt;}
.hb{height:563.133333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:37.120000pt;}
.w11{width:58.240000pt;}
.wf{width:79.552000pt;}
.w10{width:81.152000pt;}
.w17{width:83.552000pt;}
.w16{width:91.712000pt;}
.w2{width:92.512000pt;}
.wd{width:99.680000pt;}
.wa{width:105.280000pt;}
.w12{width:116.672000pt;}
.w5{width:117.280000pt;}
.wc{width:134.400000pt;}
.w8{width:144.800000pt;}
.w14{width:145.626667pt;}
.w15{width:148.186667pt;}
.wb{width:182.626667pt;}
.we{width:186.586667pt;}
.w13{width:442.240000pt;}
.w6{width:527.493333pt;}
.w7{width:528.133333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.272000pt;}
.x18{left:7.200000pt;}
.x16{left:9.280000pt;}
.x4{left:11.360000pt;}
.x1b{left:15.840000pt;}
.x6{left:17.120000pt;}
.x10{left:22.720000pt;}
.x11{left:25.760000pt;}
.xf{left:27.680000pt;}
.x15{left:33.120000pt;}
.x13{left:37.760000pt;}
.x14{left:40.480000pt;}
.x1c{left:42.080000pt;}
.x37{left:47.586667pt;}
.x2c{left:48.960000pt;}
.x1d{left:50.400000pt;}
.x19{left:55.240000pt;}
.x12{left:58.554667pt;}
.x1{left:69.600000pt;}
.x9{left:76.831988pt;}
.x2{left:85.146667pt;}
.x38{left:90.333333pt;}
.x1a{left:94.554667pt;}
.x24{left:100.831988pt;}
.x32{left:102.592000pt;}
.x39{left:113.186667pt;}
.x3b{left:115.586667pt;}
.x2d{left:117.466667pt;}
.x1f{left:119.712000pt;}
.x5{left:125.640000pt;}
.x2f{left:142.400000pt;}
.x20{left:157.466667pt;}
.x3{left:162.106667pt;}
.x2b{left:174.880000pt;}
.x25{left:184.826667pt;}
.x17{left:194.106667pt;}
.x31{left:199.586667pt;}
.x33{left:220.506667pt;}
.x2e{left:223.773333pt;}
.x3a{left:225.826667pt;}
.x21{left:250.626667pt;}
.x30{left:275.200000pt;}
.x22{left:356.546667pt;}
.x34{left:366.786667pt;}
.x26{left:372.066667pt;}
.x27{left:452.253333pt;}
.x35{left:515.613333pt;}
.x28{left:534.213333pt;}
.x23{left:539.813333pt;}
.xc{left:541.253322pt;}
.xd{left:549.413322pt;}
.x29{left:593.093333pt;}
.x36{left:607.973333pt;}
.xa{left:610.213322pt;}
.xb{left:614.693322pt;}
.x2a{left:619.013322pt;}
.x8{left:680.933322pt;}
.x7{left:703.999988pt;}
.xe{left:717.279988pt;}
}




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