
    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_9532fb8c68d87a421c7274ea.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_30bfd5702c09349785d7ea5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff7{font-family:ff7;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: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_42ecc03d92d74991137b0c65.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls9{letter-spacing:-0.702000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.161760px;}
.lsd{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.566720px;}
.ls2{letter-spacing:42.048000px;}
.lsa{letter-spacing:46.026720px;}
.lsc{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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.wsa{word-spacing:-48.240000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.798000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1.460160px;}
._1{width:1.135440px;}
._9{width:2.270880px;}
._b{width:3.424080px;}
._a{width:4.541760px;}
._26{width:5.557680px;}
._1f{width:6.633360px;}
._1d{width:7.768800px;}
._1e{width:8.784720px;}
._7{width:10.099440px;}
._6{width:11.115360px;}
._d{width:12.310560px;}
._e{width:13.326480px;}
._f{width:16.613280px;}
._8{width:18.167040px;}
._1a{width:19.308240px;}
._19{width:20.312640px;}
._20{width:21.334320px;}
._12{width:22.356000px;}
._22{width:23.963760px;}
._14{width:25.974000px;}
._13{width:27.162000px;}
._1c{width:28.266480px;}
._1b{width:29.461680px;}
._21{width:30.537360px;}
._24{width:31.971600px;}
._25{width:33.644880px;}
._c{width:34.899840px;}
._18{width:36.692640px;}
._17{width:37.828080px;}
._15{width:39.023280px;}
._23{width:42.608880px;}
._10{width:44.388000px;}
._2c{width:45.537120px;}
._16{width:53.903520px;}
._35{width:56.831760px;}
._34{width:57.967200px;}
._39{width:60.536880px;}
._38{width:61.552560px;}
._11{width:62.802000px;}
._33{width:69.824160px;}
._32{width:70.970400px;}
._2d{width:91.612080px;}
._3{width:131.442960px;}
._28{width:137.926080px;}
._27{width:138.942000px;}
._36{width:269.658720px;}
._37{width:270.951840px;}
._29{width:280.035360px;}
._2a{width:281.051280px;}
._30{width:289.935360px;}
._31{width:291.090960px;}
._2b{width:300.473280px;}
._2e{width:304.757280px;}
._2f{width:306.210240px;}
._2{width:342.981120px;}
._5{width:1097.071440px;}
._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;}
.fs3{font-size:48.240000px;}
.fs6{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;}
.y45{bottom:2.556000px;}
.y38{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y31{bottom:5.940000px;}
.y7{bottom:8.316000px;}
.y43{bottom:8.496000px;}
.yc{bottom:14.040000px;}
.y11d{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.ye0{bottom:16.380000px;}
.y44{bottom:16.416000px;}
.y37{bottom:18.360000px;}
.y2f{bottom:19.440000px;}
.y118{bottom:20.565000px;}
.y11c{bottom:30.060000px;}
.ydf{bottom:30.285000px;}
.y36{bottom:34.020000px;}
.ya{bottom:35.460000px;}
.y2e{bottom:35.820000px;}
.y117{bottom:37.845000px;}
.y46{bottom:41.400000px;}
.y11b{bottom:43.920000px;}
.yde{bottom:43.965000px;}
.y35{bottom:49.500000px;}
.y2d{bottom:51.300000px;}
.y116{bottom:55.125000px;}
.y11a{bottom:57.600000px;}
.ydd{bottom:57.825000px;}
.y6{bottom:58.140000px;}
.y42{bottom:64.080000px;}
.y34{bottom:64.980000px;}
.y2c{bottom:66.780000px;}
.y115{bottom:72.405000px;}
.y33{bottom:80.460000px;}
.y2b{bottom:82.440000px;}
.y114{bottom:89.505000px;}
.y2a{bottom:97.950000px;}
.y39{bottom:106.245000px;}
.y113{bottom:106.785000px;}
.y29{bottom:113.430000px;}
.y41{bottom:118.296000px;}
.y77{bottom:120.816000px;}
.yd8{bottom:122.976000px;}
.yb6{bottom:126.756000px;}
.y28{bottom:128.910000px;}
.y40{bottom:135.576000px;}
.y76{bottom:138.096000px;}
.y26{bottom:138.285000px;}
.yd7{bottom:140.256000px;}
.y9f{bottom:144.036000px;}
.y3f{bottom:152.670000px;}
.y25{bottom:154.125000px;}
.yd6{bottom:157.530000px;}
.y75{bottom:161.310000px;}
.y3e{bottom:169.950000px;}
.y24{bottom:171.225000px;}
.yd5{bottom:174.810000px;}
.yb5{bottom:178.590000px;}
.y74{bottom:184.530000px;}
.y3d{bottom:187.230000px;}
.y23{bottom:188.505000px;}
.yd4{bottom:192.090000px;}
.y9e{bottom:201.810000px;}
.y3c{bottom:203.790000px;}
.y22{bottom:205.785000px;}
.y73{bottom:207.750000px;}
.yd3{bottom:209.190000px;}
.y3b{bottom:218.910000px;}
.y9d{bottom:219.090000px;}
.y21{bottom:223.065000px;}
.y72{bottom:225.030000px;}
.yd2{bottom:226.470000px;}
.y11e{bottom:227.730000px;}
.y9c{bottom:236.190000px;}
.y3a{bottom:237.990000px;}
.y20{bottom:240.345000px;}
.y119{bottom:241.770000px;}
.y71{bottom:242.310000px;}
.yd1{bottom:243.750000px;}
.yb4{bottom:248.250000px;}
.y18{bottom:251.310000px;}
.y9b{bottom:253.470000px;}
.y1f{bottom:257.625000px;}
.y70{bottom:259.590000px;}
.yd0{bottom:261.030000px;}
.yb3{bottom:265.530000px;}
.y9a{bottom:270.750000px;}
.y1e{bottom:274.725000px;}
.y6f{bottom:276.690000px;}
.ycf{bottom:278.310000px;}
.yb2{bottom:282.810000px;}
.y99{bottom:288.030000px;}
.y1d{bottom:292.005000px;}
.y6e{bottom:293.970000px;}
.yce{bottom:295.590000px;}
.yb1{bottom:300.090000px;}
.y98{bottom:305.310000px;}
.y1c{bottom:309.285000px;}
.y112{bottom:311.430000px;}
.ycd{bottom:312.690000px;}
.y6d{bottom:317.235000px;}
.y1b{bottom:326.595000px;}
.y97{bottom:328.575000px;}
.ycc{bottom:330.015000px;}
.y6c{bottom:334.515000px;}
.y1a{bottom:343.875000px;}
.ycb{bottom:347.295000px;}
.y6b{bottom:351.795000px;}
.yb0{bottom:357.735000px;}
.y19{bottom:361.155000px;}
.yca{bottom:364.575000px;}
.y6a{bottom:369.075000px;}
.y32{bottom:370.875000px;}
.y96{bottom:375.015000px;}
.yc9{bottom:381.855000px;}
.y69{bottom:386.355000px;}
.y95{bottom:392.295000px;}
.yc8{bottom:399.135000px;}
.y68{bottom:403.455000px;}
.y94{bottom:409.575000px;}
.yc7{bottom:416.235000px;}
.y67{bottom:420.735000px;}
.y93{bottom:426.855000px;}
.yc6{bottom:433.515000px;}
.yf5{bottom:435.495000px;}
.y66{bottom:438.015000px;}
.y111{bottom:440.355000px;}
.y92{bottom:443.955000px;}
.yc5{bottom:450.795000px;}
.yf4{bottom:452.775000px;}
.y65{bottom:455.295000px;}
.y110{bottom:457.455000px;}
.y91{bottom:461.235000px;}
.y30{bottom:464.835000px;}
.yc4{bottom:468.075000px;}
.yf3{bottom:470.055000px;}
.y64{bottom:472.575000px;}
.y10f{bottom:474.735000px;}
.y90{bottom:478.515000px;}
.yc3{bottom:485.355000px;}
.y27{bottom:485.535000px;}
.yf2{bottom:487.155000px;}
.y63{bottom:489.855000px;}
.y10e{bottom:492.015000px;}
.yaf{bottom:495.795000px;}
.y8f{bottom:501.735000px;}
.yc2{bottom:502.455000px;}
.yf1{bottom:504.435000px;}
.y10d{bottom:509.295000px;}
.y62{bottom:513.075000px;}
.y8e{bottom:519.015000px;}
.yc1{bottom:519.735000px;}
.yf0{bottom:521.715000px;}
.y10c{bottom:526.575000px;}
.y61{bottom:536.295000px;}
.yc0{bottom:537.015000px;}
.yef{bottom:538.995000px;}
.y10b{bottom:543.855000px;}
.y8d{bottom:553.575000px;}
.ybf{bottom:554.295000px;}
.yee{bottom:556.275000px;}
.y60{bottom:559.515000px;}
.y10a{bottom:560.955000px;}
.y8c{bottom:570.885000px;}
.ybe{bottom:571.605000px;}
.yed{bottom:573.585000px;}
.y5f{bottom:576.825000px;}
.y109{bottom:578.265000px;}
.y8b{bottom:587.985000px;}
.ybd{bottom:588.885000px;}
.yec{bottom:590.685000px;}
.y5e{bottom:594.105000px;}
.y108{bottom:595.545000px;}
.y8a{bottom:605.265000px;}
.ybc{bottom:605.985000px;}
.yeb{bottom:607.965000px;}
.y5d{bottom:611.385000px;}
.y107{bottom:612.825000px;}
.yae{bottom:622.545000px;}
.ybb{bottom:623.265000px;}
.yea{bottom:625.245000px;}
.y16{bottom:627.765000px;}
.y5c{bottom:628.485000px;}
.y106{bottom:630.105000px;}
.yba{bottom:640.545000px;}
.ye9{bottom:642.525000px;}
.yad{bottom:645.765000px;}
.y105{bottom:647.385000px;}
.y5b{bottom:651.705000px;}
.yb9{bottom:657.825000px;}
.ye8{bottom:659.805000px;}
.y15{bottom:662.325000px;}
.y104{bottom:664.485000px;}
.yac{bottom:668.985000px;}
.y5a{bottom:675.105000px;}
.ye7{bottom:677.085000px;}
.y103{bottom:681.765000px;}
.y14{bottom:682.305000px;}
.yab{bottom:692.205000px;}
.y89{bottom:692.385000px;}
.ye6{bottom:694.185000px;}
.y59{bottom:698.325000px;}
.y102{bottom:699.045000px;}
.y88{bottom:709.485000px;}
.y13{bottom:710.745000px;}
.ye5{bottom:711.465000px;}
.y58{bottom:715.605000px;}
.y101{bottom:716.325000px;}
.y87{bottom:726.765000px;}
.y12{bottom:728.385000px;}
.ye4{bottom:728.745000px;}
.y57{bottom:732.885000px;}
.y100{bottom:733.605000px;}
.y86{bottom:744.045000px;}
.ye3{bottom:746.025000px;}
.y11{bottom:749.625000px;}
.y56{bottom:749.985000px;}
.yff{bottom:750.885000px;}
.yaa{bottom:761.325000px;}
.ye2{bottom:763.305000px;}
.y55{bottom:767.265000px;}
.yfe{bottom:767.985000px;}
.ya9{bottom:778.605000px;}
.ye1{bottom:780.405000px;}
.y10{bottom:780.585000px;}
.y54{bottom:784.545000px;}
.yfd{bottom:785.265000px;}
.y85{bottom:790.485000px;}
.ydc{bottom:795.165000px;}
.ya8{bottom:795.705000px;}
.y53{bottom:801.825000px;}
.yfc{bottom:802.545000px;}
.yf{bottom:811.725000px;}
.y84{bottom:813.705000px;}
.ya7{bottom:818.925000px;}
.y52{bottom:819.105000px;}
.yfb{bottom:819.870000px;}
.yb8{bottom:825.090000px;}
.y83{bottom:831.030000px;}
.y51{bottom:836.250000px;}
.yfa{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.y82{bottom:848.310000px;}
.y50{bottom:853.530000px;}
.yf9{bottom:854.250000px;}
.ydb{bottom:865.050000px;}
.y81{bottom:865.590000px;}
.ya6{bottom:870.810000px;}
.yf8{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.y4f{bottom:876.750000px;}
.y80{bottom:882.870000px;}
.yb{bottom:887.010000px;}
.ya5{bottom:888.090000px;}
.yf7{bottom:888.810000px;}
.y4e{bottom:894.030000px;}
.y7f{bottom:900.150000px;}
.ya4{bottom:905.370000px;}
.yf6{bottom:906.090000px;}
.y4d{bottom:911.310000px;}
.y7e{bottom:917.250000px;}
.ya3{bottom:922.650000px;}
.yda{bottom:923.370000px;}
.y4c{bottom:928.590000px;}
.y7d{bottom:934.530000px;}
.ya2{bottom:939.750000px;}
.yd9{bottom:940.650000px;}
.y4b{bottom:945.870000px;}
.yb7{bottom:951.810000px;}
.y7c{bottom:957.750000px;}
.ya1{bottom:962.970000px;}
.y4a{bottom:963.150000px;}
.y7b{bottom:975.030000px;}
.y49{bottom:980.250000px;}
.ya0{bottom:986.370000px;}
.y7a{bottom:992.310000px;}
.y48{bottom:997.530000px;}
.y79{bottom:1009.590000px;}
.y47{bottom:1020.930000px;}
.y78{bottom:1026.870000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h1d{height:13.860000px;}
.h10{height:17.280000px;}
.h17{height:19.980000px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1e{height:34.036523px;}
.h13{height:37.705078px;}
.h1a{height:38.100586px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:46.251562px;}
.hc{height:46.736719px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.hd{height:65.884219px;}
.h21{height:68.940000px;}
.h1f{height:69.156000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h18{height:93.060000px;}
.h19{height:118.836000px;}
.h20{height:120.816000px;}
.h14{height:141.516000px;}
.h8{height:153.900000px;}
.h11{height:375.735000px;}
.h0{height:1188.000000px;}
.w2{width:45.036000px;}
.w6{width:211.710000px;}
.w7{width:329.295000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w8{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.480000px;}
.x15{left:7.560000px;}
.x5{left:8.640000px;}
.x21{left:12.420000px;}
.x12{left:19.980000px;}
.x17{left:23.265000px;}
.x14{left:29.745000px;}
.x16{left:31.725000px;}
.x8{left:45.540000px;}
.x4{left:53.999986px;}
.x1f{left:58.680000px;}
.x3{left:60.659986px;}
.x18{left:65.519986px;}
.xb{left:76.319986px;}
.x1d{left:80.130000px;}
.x1c{left:85.140000px;}
.x1b{left:86.759986px;}
.x6{left:100.836000px;}
.xc{left:105.695986px;}
.x7{left:108.035986px;}
.x1{left:150.509986px;}
.xf{left:153.749986px;}
.x2{left:220.709986px;}
.x20{left:295.635000px;}
.xe{left:420.554986px;}
.xa{left:459.074986px;}
.xd{left:464.294986px;}
.x10{left:465.374986px;}
.x19{left:478.334986px;}
.x1a{left:505.364986px;}
.x1e{left:526.604986px;}
.x11{left:650.805000px;}
.x9{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.143787pt;}
.lsd{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.392640pt;}
.ls2{letter-spacing:37.376000pt;}
.lsa{letter-spacing:40.912640pt;}
.lsc{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.wsa{word-spacing:-42.880000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.376000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1.297920pt;}
._1{width:1.009280pt;}
._9{width:2.018560pt;}
._b{width:3.043627pt;}
._a{width:4.037120pt;}
._26{width:4.940160pt;}
._1f{width:5.896320pt;}
._1d{width:6.905600pt;}
._1e{width:7.808640pt;}
._7{width:8.977280pt;}
._6{width:9.880320pt;}
._d{width:10.942720pt;}
._e{width:11.845760pt;}
._f{width:14.767360pt;}
._8{width:16.148480pt;}
._1a{width:17.162880pt;}
._19{width:18.055680pt;}
._20{width:18.963840pt;}
._12{width:19.872000pt;}
._22{width:21.301120pt;}
._14{width:23.088000pt;}
._13{width:24.144000pt;}
._1c{width:25.125760pt;}
._1b{width:26.188160pt;}
._21{width:27.144320pt;}
._24{width:28.419200pt;}
._25{width:29.906560pt;}
._c{width:31.022080pt;}
._18{width:32.615680pt;}
._17{width:33.624960pt;}
._15{width:34.687360pt;}
._23{width:37.874560pt;}
._10{width:39.456000pt;}
._2c{width:40.477440pt;}
._16{width:47.914240pt;}
._35{width:50.517120pt;}
._34{width:51.526400pt;}
._39{width:53.810560pt;}
._38{width:54.713387pt;}
._11{width:55.824000pt;}
._33{width:62.065920pt;}
._32{width:63.084800pt;}
._2d{width:81.432960pt;}
._3{width:116.838187pt;}
._28{width:122.600960pt;}
._27{width:123.504000pt;}
._36{width:239.696640pt;}
._37{width:240.846080pt;}
._29{width:248.920320pt;}
._2a{width:249.823360pt;}
._30{width:257.720320pt;}
._31{width:258.747520pt;}
._2b{width:267.087360pt;}
._2e{width:270.895360pt;}
._2f{width:272.186880pt;}
._2{width:304.872107pt;}
._5{width:975.174613pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:42.880000pt;}
.fs6{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;}
.y45{bottom:2.272000pt;}
.y38{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y31{bottom:5.280000pt;}
.y7{bottom:7.392000pt;}
.y43{bottom:7.552000pt;}
.yc{bottom:12.480000pt;}
.y11d{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.ye0{bottom:14.560000pt;}
.y44{bottom:14.592000pt;}
.y37{bottom:16.320000pt;}
.y2f{bottom:17.280000pt;}
.y118{bottom:18.280000pt;}
.y11c{bottom:26.720000pt;}
.ydf{bottom:26.920000pt;}
.y36{bottom:30.240000pt;}
.ya{bottom:31.520000pt;}
.y2e{bottom:31.840000pt;}
.y117{bottom:33.640000pt;}
.y46{bottom:36.800000pt;}
.y11b{bottom:39.040000pt;}
.yde{bottom:39.080000pt;}
.y35{bottom:44.000000pt;}
.y2d{bottom:45.600000pt;}
.y116{bottom:49.000000pt;}
.y11a{bottom:51.200000pt;}
.ydd{bottom:51.400000pt;}
.y6{bottom:51.680000pt;}
.y42{bottom:56.960000pt;}
.y34{bottom:57.760000pt;}
.y2c{bottom:59.360000pt;}
.y115{bottom:64.360000pt;}
.y33{bottom:71.520000pt;}
.y2b{bottom:73.280000pt;}
.y114{bottom:79.560000pt;}
.y2a{bottom:87.066667pt;}
.y39{bottom:94.440000pt;}
.y113{bottom:94.920000pt;}
.y29{bottom:100.826667pt;}
.y41{bottom:105.152000pt;}
.y77{bottom:107.392000pt;}
.yd8{bottom:109.312000pt;}
.yb6{bottom:112.672000pt;}
.y28{bottom:114.586667pt;}
.y40{bottom:120.512000pt;}
.y76{bottom:122.752000pt;}
.y26{bottom:122.920000pt;}
.yd7{bottom:124.672000pt;}
.y9f{bottom:128.032000pt;}
.y3f{bottom:135.706667pt;}
.y25{bottom:137.000000pt;}
.yd6{bottom:140.026667pt;}
.y75{bottom:143.386667pt;}
.y3e{bottom:151.066667pt;}
.y24{bottom:152.200000pt;}
.yd5{bottom:155.386667pt;}
.yb5{bottom:158.746667pt;}
.y74{bottom:164.026667pt;}
.y3d{bottom:166.426667pt;}
.y23{bottom:167.560000pt;}
.yd4{bottom:170.746667pt;}
.y9e{bottom:179.386667pt;}
.y3c{bottom:181.146667pt;}
.y22{bottom:182.920000pt;}
.y73{bottom:184.666667pt;}
.yd3{bottom:185.946667pt;}
.y3b{bottom:194.586667pt;}
.y9d{bottom:194.746667pt;}
.y21{bottom:198.280000pt;}
.y72{bottom:200.026667pt;}
.yd2{bottom:201.306667pt;}
.y11e{bottom:202.426667pt;}
.y9c{bottom:209.946667pt;}
.y3a{bottom:211.546667pt;}
.y20{bottom:213.640000pt;}
.y119{bottom:214.906667pt;}
.y71{bottom:215.386667pt;}
.yd1{bottom:216.666667pt;}
.yb4{bottom:220.666667pt;}
.y18{bottom:223.386667pt;}
.y9b{bottom:225.306667pt;}
.y1f{bottom:229.000000pt;}
.y70{bottom:230.746667pt;}
.yd0{bottom:232.026667pt;}
.yb3{bottom:236.026667pt;}
.y9a{bottom:240.666667pt;}
.y1e{bottom:244.200000pt;}
.y6f{bottom:245.946667pt;}
.ycf{bottom:247.386667pt;}
.yb2{bottom:251.386667pt;}
.y99{bottom:256.026667pt;}
.y1d{bottom:259.560000pt;}
.y6e{bottom:261.306667pt;}
.yce{bottom:262.746667pt;}
.yb1{bottom:266.746667pt;}
.y98{bottom:271.386667pt;}
.y1c{bottom:274.920000pt;}
.y112{bottom:276.826667pt;}
.ycd{bottom:277.946667pt;}
.y6d{bottom:281.986667pt;}
.y1b{bottom:290.306667pt;}
.y97{bottom:292.066667pt;}
.ycc{bottom:293.346667pt;}
.y6c{bottom:297.346667pt;}
.y1a{bottom:305.666667pt;}
.ycb{bottom:308.706667pt;}
.y6b{bottom:312.706667pt;}
.yb0{bottom:317.986667pt;}
.y19{bottom:321.026667pt;}
.yca{bottom:324.066667pt;}
.y6a{bottom:328.066667pt;}
.y32{bottom:329.666667pt;}
.y96{bottom:333.346667pt;}
.yc9{bottom:339.426667pt;}
.y69{bottom:343.426667pt;}
.y95{bottom:348.706667pt;}
.yc8{bottom:354.786667pt;}
.y68{bottom:358.626667pt;}
.y94{bottom:364.066667pt;}
.yc7{bottom:369.986667pt;}
.y67{bottom:373.986667pt;}
.y93{bottom:379.426667pt;}
.yc6{bottom:385.346667pt;}
.yf5{bottom:387.106667pt;}
.y66{bottom:389.346667pt;}
.y111{bottom:391.426667pt;}
.y92{bottom:394.626667pt;}
.yc5{bottom:400.706667pt;}
.yf4{bottom:402.466667pt;}
.y65{bottom:404.706667pt;}
.y110{bottom:406.626667pt;}
.y91{bottom:409.986667pt;}
.y30{bottom:413.186667pt;}
.yc4{bottom:416.066667pt;}
.yf3{bottom:417.826667pt;}
.y64{bottom:420.066667pt;}
.y10f{bottom:421.986667pt;}
.y90{bottom:425.346667pt;}
.yc3{bottom:431.426667pt;}
.y27{bottom:431.586667pt;}
.yf2{bottom:433.026667pt;}
.y63{bottom:435.426667pt;}
.y10e{bottom:437.346667pt;}
.yaf{bottom:440.706667pt;}
.y8f{bottom:445.986667pt;}
.yc2{bottom:446.626667pt;}
.yf1{bottom:448.386667pt;}
.y10d{bottom:452.706667pt;}
.y62{bottom:456.066667pt;}
.y8e{bottom:461.346667pt;}
.yc1{bottom:461.986667pt;}
.yf0{bottom:463.746667pt;}
.y10c{bottom:468.066667pt;}
.y61{bottom:476.706667pt;}
.yc0{bottom:477.346667pt;}
.yef{bottom:479.106667pt;}
.y10b{bottom:483.426667pt;}
.y8d{bottom:492.066667pt;}
.ybf{bottom:492.706667pt;}
.yee{bottom:494.466667pt;}
.y60{bottom:497.346667pt;}
.y10a{bottom:498.626667pt;}
.y8c{bottom:507.453333pt;}
.ybe{bottom:508.093333pt;}
.yed{bottom:509.853333pt;}
.y5f{bottom:512.733333pt;}
.y109{bottom:514.013333pt;}
.y8b{bottom:522.653333pt;}
.ybd{bottom:523.453333pt;}
.yec{bottom:525.053333pt;}
.y5e{bottom:528.093333pt;}
.y108{bottom:529.373333pt;}
.y8a{bottom:538.013333pt;}
.ybc{bottom:538.653333pt;}
.yeb{bottom:540.413333pt;}
.y5d{bottom:543.453333pt;}
.y107{bottom:544.733333pt;}
.yae{bottom:553.373333pt;}
.ybb{bottom:554.013333pt;}
.yea{bottom:555.773333pt;}
.y16{bottom:558.013333pt;}
.y5c{bottom:558.653333pt;}
.y106{bottom:560.093333pt;}
.yba{bottom:569.373333pt;}
.ye9{bottom:571.133333pt;}
.yad{bottom:574.013333pt;}
.y105{bottom:575.453333pt;}
.y5b{bottom:579.293333pt;}
.yb9{bottom:584.733333pt;}
.ye8{bottom:586.493333pt;}
.y15{bottom:588.733333pt;}
.y104{bottom:590.653333pt;}
.yac{bottom:594.653333pt;}
.y5a{bottom:600.093333pt;}
.ye7{bottom:601.853333pt;}
.y103{bottom:606.013333pt;}
.y14{bottom:606.493333pt;}
.yab{bottom:615.293333pt;}
.y89{bottom:615.453333pt;}
.ye6{bottom:617.053333pt;}
.y59{bottom:620.733333pt;}
.y102{bottom:621.373333pt;}
.y88{bottom:630.653333pt;}
.y13{bottom:631.773333pt;}
.ye5{bottom:632.413333pt;}
.y58{bottom:636.093333pt;}
.y101{bottom:636.733333pt;}
.y87{bottom:646.013333pt;}
.y12{bottom:647.453333pt;}
.ye4{bottom:647.773333pt;}
.y57{bottom:651.453333pt;}
.y100{bottom:652.093333pt;}
.y86{bottom:661.373333pt;}
.ye3{bottom:663.133333pt;}
.y11{bottom:666.333333pt;}
.y56{bottom:666.653333pt;}
.yff{bottom:667.453333pt;}
.yaa{bottom:676.733333pt;}
.ye2{bottom:678.493333pt;}
.y55{bottom:682.013333pt;}
.yfe{bottom:682.653333pt;}
.ya9{bottom:692.093333pt;}
.ye1{bottom:693.693333pt;}
.y10{bottom:693.853333pt;}
.y54{bottom:697.373333pt;}
.yfd{bottom:698.013333pt;}
.y85{bottom:702.653333pt;}
.ydc{bottom:706.813333pt;}
.ya8{bottom:707.293333pt;}
.y53{bottom:712.733333pt;}
.yfc{bottom:713.373333pt;}
.yf{bottom:721.533333pt;}
.y84{bottom:723.293333pt;}
.ya7{bottom:727.933333pt;}
.y52{bottom:728.093333pt;}
.yfb{bottom:728.773333pt;}
.yb8{bottom:733.413333pt;}
.y83{bottom:738.693333pt;}
.y51{bottom:743.333333pt;}
.yfa{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.y82{bottom:754.053333pt;}
.y50{bottom:758.693333pt;}
.yf9{bottom:759.333333pt;}
.ydb{bottom:768.933333pt;}
.y81{bottom:769.413333pt;}
.ya6{bottom:774.053333pt;}
.yf8{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.y4f{bottom:779.333333pt;}
.y80{bottom:784.773333pt;}
.yb{bottom:788.453333pt;}
.ya5{bottom:789.413333pt;}
.yf7{bottom:790.053333pt;}
.y4e{bottom:794.693333pt;}
.y7f{bottom:800.133333pt;}
.ya4{bottom:804.773333pt;}
.yf6{bottom:805.413333pt;}
.y4d{bottom:810.053333pt;}
.y7e{bottom:815.333333pt;}
.ya3{bottom:820.133333pt;}
.yda{bottom:820.773333pt;}
.y4c{bottom:825.413333pt;}
.y7d{bottom:830.693333pt;}
.ya2{bottom:835.333333pt;}
.yd9{bottom:836.133333pt;}
.y4b{bottom:840.773333pt;}
.yb7{bottom:846.053333pt;}
.y7c{bottom:851.333333pt;}
.ya1{bottom:855.973333pt;}
.y4a{bottom:856.133333pt;}
.y7b{bottom:866.693333pt;}
.y49{bottom:871.333333pt;}
.ya0{bottom:876.773333pt;}
.y7a{bottom:882.053333pt;}
.y48{bottom:886.693333pt;}
.y79{bottom:897.413333pt;}
.y47{bottom:907.493333pt;}
.y78{bottom:912.773333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h1d{height:12.320000pt;}
.h10{height:15.360000pt;}
.h17{height:17.760000pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1e{height:30.254687pt;}
.h13{height:33.515625pt;}
.h1a{height:33.867188pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:41.112500pt;}
.hc{height:41.543750pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.hd{height:58.563750pt;}
.h21{height:61.280000pt;}
.h1f{height:61.472000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h18{height:82.720000pt;}
.h19{height:105.632000pt;}
.h20{height:107.392000pt;}
.h14{height:125.792000pt;}
.h8{height:136.800000pt;}
.h11{height:333.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:40.032000pt;}
.w6{width:188.186667pt;}
.w7{width:292.706667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w8{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.760000pt;}
.x15{left:6.720000pt;}
.x5{left:7.680000pt;}
.x21{left:11.040000pt;}
.x12{left:17.760000pt;}
.x17{left:20.680000pt;}
.x14{left:26.440000pt;}
.x16{left:28.200000pt;}
.x8{left:40.480000pt;}
.x4{left:47.999988pt;}
.x1f{left:52.160000pt;}
.x3{left:53.919988pt;}
.x18{left:58.239988pt;}
.xb{left:67.839988pt;}
.x1d{left:71.226667pt;}
.x1c{left:75.680000pt;}
.x1b{left:77.119988pt;}
.x6{left:89.632000pt;}
.xc{left:93.951988pt;}
.x7{left:96.031988pt;}
.x1{left:133.786655pt;}
.xf{left:136.666655pt;}
.x2{left:196.186655pt;}
.x20{left:262.786667pt;}
.xe{left:373.826655pt;}
.xa{left:408.066655pt;}
.xd{left:412.706655pt;}
.x10{left:413.666655pt;}
.x19{left:425.186655pt;}
.x1a{left:449.213321pt;}
.x1e{left:468.093321pt;}
.x11{left:578.493333pt;}
.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; }
  