
    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_50ccae16679bbc557bb0e877.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_63f24d9a44c73b1a0ea52f80.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_72f0e5370608e8786f244c7a.woff')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_041b2c1c36c07307f9c150cd.woff')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_8587cc239adc455336894aa1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_3e2294cb07089d2c39d2f211.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_53e895c9f1800b44badec553.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls5{letter-spacing:-4.662000px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsc{letter-spacing:33.960000px;}
.ls8{letter-spacing:54.840000px;}
.ls7{letter-spacing:160.680000px;}
.lsb{letter-spacing:197.976000px;}
.ls0{letter-spacing:675.540000px;}
.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:-72.000000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._3c{margin-left:-8.916000px;}
._14{margin-left:-7.632000px;}
._15{margin-left:-6.336000px;}
._3{margin-left:-5.305200px;}
._4{margin-left:-3.264000px;}
._22{margin-left:-2.100000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._9{width:2.016000px;}
._b{width:3.240000px;}
._2{width:4.482720px;}
._7{width:5.506560px;}
._c{width:6.986880px;}
._5{width:8.208000px;}
._8{width:9.216000px;}
._6{width:10.320000px;}
._a{width:11.340000px;}
._e{width:12.528000px;}
._f{width:13.752000px;}
._11{width:15.072000px;}
._10{width:16.824000px;}
._d{width:19.992000px;}
._16{width:21.816000px;}
._1f{width:22.824000px;}
._19{width:24.480000px;}
._18{width:25.488000px;}
._17{width:27.216000px;}
._20{width:29.160000px;}
._3b{width:30.408000px;}
._1b{width:31.464000px;}
._1a{width:32.904000px;}
._1d{width:33.912000px;}
._2d{width:34.920000px;}
._12{width:36.504000px;}
._13{width:38.065200px;}
._3a{width:39.180000px;}
._1e{width:40.320000px;}
._1c{width:43.920000px;}
._3d{width:47.880000px;}
._2a{width:49.680000px;}
._2b{width:50.904000px;}
._28{width:53.784000px;}
._38{width:54.936000px;}
._29{width:56.088000px;}
._2c{width:65.880000px;}
._37{width:69.552000px;}
._31{width:72.000000px;}
._32{width:73.404000px;}
._25{width:77.976000px;}
._26{width:80.856000px;}
._24{width:86.976000px;}
._36{width:91.656000px;}
._27{width:97.452000px;}
._2e{width:109.368000px;}
._2f{width:111.024000px;}
._30{width:115.992000px;}
._33{width:124.560000px;}
._34{width:128.808000px;}
._39{width:209.124000px;}
._23{width:210.792000px;}
._35{width:212.832000px;}
._21{width:1336.128000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:14.580000px;}
.ye2{bottom:14.610000px;}
.ycd{bottom:14.754000px;}
.yea{bottom:14.760000px;}
.yde{bottom:22.140000px;}
.yd7{bottom:22.320000px;}
.yed{bottom:23.040000px;}
.ydb{bottom:23.220000px;}
.yd2{bottom:45.720000px;}
.ye1{bottom:45.750000px;}
.ye9{bottom:45.765000px;}
.yd6{bottom:53.280000px;}
.ye6{bottom:54.180000px;}
.yda{bottom:54.405000px;}
.y5{bottom:58.320000px;}
.yd1{bottom:76.680000px;}
.ye0{bottom:76.710000px;}
.ye8{bottom:76.905000px;}
.y4{bottom:79.056000px;}
.ydd{bottom:84.240000px;}
.yd5{bottom:84.420000px;}
.yec{bottom:85.140000px;}
.ye5{bottom:85.320000px;}
.yd9{bottom:85.365000px;}
.yd0{bottom:107.850000px;}
.y64{bottom:112.536000px;}
.y10c{bottom:121.716000px;}
.y148{bottom:130.896000px;}
.y96{bottom:132.156000px;}
.yb3{bottom:133.056000px;}
.y127{bottom:135.036000px;}
.y25{bottom:137.016000px;}
.yce{bottom:137.916000px;}
.y63{bottom:143.316000px;}
.y10b{bottom:152.850000px;}
.y44{bottom:154.470000px;}
.y7f{bottom:157.350000px;}
.y147{bottom:161.850000px;}
.y95{bottom:163.110000px;}
.yb2{bottom:163.650000px;}
.y126{bottom:167.430000px;}
.y24{bottom:167.970000px;}
.y62{bottom:174.450000px;}
.y10a{bottom:183.810000px;}
.y43{bottom:187.590000px;}
.y7e{bottom:188.310000px;}
.yeb{bottom:191.370000px;}
.y146{bottom:192.990000px;}
.y94{bottom:194.250000px;}
.yb1{bottom:195.150000px;}
.y125{bottom:198.750000px;}
.y23{bottom:199.110000px;}
.y61{bottom:205.410000px;}
.y109{bottom:214.950000px;}
.ycc{bottom:215.490000px;}
.y7d{bottom:219.450000px;}
.y42{bottom:219.990000px;}
.y145{bottom:223.950000px;}
.yb0{bottom:226.110000px;}
.y124{bottom:229.890000px;}
.y22{bottom:230.070000px;}
.y60{bottom:236.550000px;}
.y93{bottom:245.910000px;}
.y41{bottom:252.210000px;}
.y144{bottom:255.090000px;}
.yaf{bottom:257.250000px;}
.y123{bottom:260.850000px;}
.y21{bottom:261.210000px;}
.y5f{bottom:267.510000px;}
.y7c{bottom:271.110000px;}
.y108{bottom:277.050000px;}
.ycb{bottom:282.990000px;}
.y143{bottom:286.050000px;}
.y40{bottom:286.950000px;}
.yae{bottom:288.210000px;}
.y122{bottom:291.990000px;}
.y20{bottom:292.170000px;}
.ye7{bottom:293.610000px;}
.y92{bottom:298.290000px;}
.y5e{bottom:300.990000px;}
.y107{bottom:308.010000px;}
.yca{bottom:313.950000px;}
.y142{bottom:317.190000px;}
.yad{bottom:319.350000px;}
.y3f{bottom:320.250000px;}
.y121{bottom:322.950000px;}
.y1f{bottom:323.310000px;}
.y7b{bottom:323.490000px;}
.y91{bottom:329.295000px;}
.y5d{bottom:331.995000px;}
.y106{bottom:338.835000px;}
.yc9{bottom:345.135000px;}
.y141{bottom:348.195000px;}
.yac{bottom:350.355000px;}
.y3e{bottom:351.255000px;}
.y120{bottom:354.135000px;}
.y1e{bottom:354.315000px;}
.y7a{bottom:354.495000px;}
.y5c{bottom:362.955000px;}
.y105{bottom:369.795000px;}
.yc8{bottom:376.095000px;}
.y140{bottom:379.335000px;}
.yab{bottom:380.955000px;}
.y90{bottom:381.135000px;}
.y3d{bottom:384.735000px;}
.y11f{bottom:385.095000px;}
.y1d{bottom:385.455000px;}
.y79{bottom:385.635000px;}
.ye4{bottom:387.615000px;}
.y5b{bottom:394.095000px;}
.y104{bottom:400.935000px;}
.yc7{bottom:406.875000px;}
.y13f{bottom:410.295000px;}
.yaa{bottom:412.455000px;}
.y3c{bottom:415.515000px;}
.y11e{bottom:416.235000px;}
.y1c{bottom:416.415000px;}
.y78{bottom:416.595000px;}
.y5a{bottom:425.055000px;}
.y103{bottom:432.255000px;}
.y8f{bottom:433.515000px;}
.yc6{bottom:438.195000px;}
.y13e{bottom:441.435000px;}
.ya9{bottom:443.415000px;}
.y3b{bottom:446.655000px;}
.y11d{bottom:447.195000px;}
.y1b{bottom:447.555000px;}
.y59{bottom:458.535000px;}
.y102{bottom:463.395000px;}
.y8e{bottom:464.475000px;}
.y77{bottom:468.255000px;}
.yc5{bottom:469.335000px;}
.y13d{bottom:472.395000px;}
.ya8{bottom:474.555000px;}
.y3a{bottom:477.615000px;}
.y11c{bottom:478.335000px;}
.y1a{bottom:478.515000px;}
.y58{bottom:489.315000px;}
.ye3{bottom:490.035000px;}
.y101{bottom:494.355000px;}
.y8d{bottom:495.615000px;}
.yc4{bottom:500.295000px;}
.y13c{bottom:503.535000px;}
.ya7{bottom:505.515000px;}
.y39{bottom:508.755000px;}
.y11b{bottom:509.295000px;}
.y19{bottom:509.655000px;}
.y57{bottom:520.455000px;}
.y76{bottom:520.815000px;}
.y100{bottom:525.315000px;}
.y8c{bottom:526.575000px;}
.yc3{bottom:532.695000px;}
.y13b{bottom:534.495000px;}
.ya6{bottom:536.655000px;}
.y38{bottom:539.715000px;}
.y11a{bottom:540.075000px;}
.y129{bottom:540.435000px;}
.y18{bottom:540.615000px;}
.y56{bottom:551.415000px;}
.y75{bottom:551.775000px;}
.yff{bottom:556.455000px;}
.y8b{bottom:557.715000px;}
.yc2{bottom:563.655000px;}
.y13a{bottom:565.635000px;}
.ya5{bottom:567.615000px;}
.y37{bottom:570.855000px;}
.y119{bottom:571.395000px;}
.y17{bottom:571.755000px;}
.y55{bottom:582.555000px;}
.y74{bottom:582.915000px;}
.yfe{bottom:587.415000px;}
.y8a{bottom:590.295000px;}
.ydf{bottom:591.555000px;}
.yc1{bottom:594.825000px;}
.y139{bottom:596.625000px;}
.ya4{bottom:600.405000px;}
.y36{bottom:601.845000px;}
.y118{bottom:602.565000px;}
.y16{bottom:602.745000px;}
.y54{bottom:613.545000px;}
.y73{bottom:613.905000px;}
.yfd{bottom:618.585000px;}
.y89{bottom:621.645000px;}
.yc0{bottom:627.045000px;}
.y138{bottom:627.765000px;}
.ya3{bottom:631.725000px;}
.y35{bottom:632.805000px;}
.y117{bottom:633.525000px;}
.y15{bottom:633.885000px;}
.y53{bottom:644.685000px;}
.y72{bottom:645.045000px;}
.yfc{bottom:649.545000px;}
.ybf{bottom:658.185000px;}
.y137{bottom:658.725000px;}
.y34{bottom:663.945000px;}
.y116{bottom:664.665000px;}
.y14{bottom:664.845000px;}
.y88{bottom:673.845000px;}
.y71{bottom:676.005000px;}
.y52{bottom:678.165000px;}
.yfb{bottom:680.685000px;}
.ya2{bottom:683.745000px;}
.ybe{bottom:689.325000px;}
.y136{bottom:689.865000px;}
.y33{bottom:694.905000px;}
.y115{bottom:695.625000px;}
.y13{bottom:695.985000px;}
.y87{bottom:704.805000px;}
.y51{bottom:708.945000px;}
.yfa{bottom:711.645000px;}
.ya1{bottom:714.885000px;}
.ydc{bottom:716.505000px;}
.y135{bottom:720.825000px;}
.ybd{bottom:721.185000px;}
.y32{bottom:726.045000px;}
.y114{bottom:726.765000px;}
.y12{bottom:726.945000px;}
.y70{bottom:727.845000px;}
.y86{bottom:735.945000px;}
.y50{bottom:740.085000px;}
.yf9{bottom:742.785000px;}
.ya0{bottom:745.845000px;}
.y134{bottom:751.965000px;}
.ybc{bottom:752.145000px;}
.y31{bottom:757.005000px;}
.y113{bottom:757.725000px;}
.y11{bottom:758.085000px;}
.y85{bottom:766.905000px;}
.y4f{bottom:771.045000px;}
.yf8{bottom:773.745000px;}
.y6f{bottom:780.045000px;}
.y133{bottom:782.925000px;}
.ybb{bottom:783.645000px;}
.y30{bottom:788.145000px;}
.y112{bottom:788.865000px;}
.y10{bottom:789.045000px;}
.y9f{bottom:797.505000px;}
.y84{bottom:797.865000px;}
.y4e{bottom:802.185000px;}
.yf7{bottom:804.885000px;}
.y6e{bottom:811.185000px;}
.y132{bottom:814.065000px;}
.yba{bottom:814.785000px;}
.yd8{bottom:817.845000px;}
.y2f{bottom:819.105000px;}
.yf{bottom:819.825000px;}
.y4d{bottom:833.145000px;}
.yf6{bottom:835.845000px;}
.y6d{bottom:842.145000px;}
.y131{bottom:845.025000px;}
.yb9{bottom:847.005000px;}
.y83{bottom:849.705000px;}
.y9e{bottom:850.065000px;}
.y2e{bottom:850.245000px;}
.y111{bottom:850.965000px;}
.ye{bottom:857.445000px;}
.y4c{bottom:865.950000px;}
.yf5{bottom:867.030000px;}
.y6c{bottom:874.950000px;}
.y130{bottom:876.210000px;}
.yb8{bottom:879.450000px;}
.y9d{bottom:881.070000px;}
.y2d{bottom:881.250000px;}
.y110{bottom:881.970000px;}
.yd{bottom:882.330000px;}
.yf4{bottom:897.990000px;}
.y4b{bottom:899.790000px;}
.y82{bottom:902.130000px;}
.y12f{bottom:907.170000px;}
.y6b{bottom:908.790000px;}
.yb7{bottom:911.850000px;}
.y9c{bottom:912.210000px;}
.y2c{bottom:912.390000px;}
.y10f{bottom:913.110000px;}
.yc{bottom:915.090000px;}
.yd4{bottom:920.310000px;}
.yf3{bottom:929.130000px;}
.yb{bottom:931.470000px;}
.y4a{bottom:933.090000px;}
.y12e{bottom:938.310000px;}
.y6a{bottom:942.090000px;}
.y2b{bottom:942.990000px;}
.yb6{bottom:943.710000px;}
.y10e{bottom:944.070000px;}
.yf2{bottom:960.090000px;}
.y9b{bottom:963.870000px;}
.ya{bottom:964.230000px;}
.y49{bottom:966.390000px;}
.y12d{bottom:969.270000px;}
.y69{bottom:972.870000px;}
.yb5{bottom:975.210000px;}
.yf1{bottom:991.230000px;}
.y81{bottom:995.190000px;}
.y9{bottom:997.350000px;}
.y48{bottom:999.690000px;}
.y12c{bottom:1000.410000px;}
.y68{bottom:1004.010000px;}
.y10d{bottom:1005.810000px;}
.y2a{bottom:1006.170000px;}
.y9a{bottom:1016.250000px;}
.ycf{bottom:1021.830000px;}
.yf0{bottom:1022.190000px;}
.y12b{bottom:1031.370000px;}
.y47{bottom:1032.990000px;}
.y67{bottom:1034.970000px;}
.y29{bottom:1037.310000px;}
.y8{bottom:1042.890000px;}
.y80{bottom:1046.850000px;}
.y99{bottom:1047.210000px;}
.yef{bottom:1053.330000px;}
.y12a{bottom:1063.950000px;}
.y66{bottom:1066.110000px;}
.y46{bottom:1066.290000px;}
.yb4{bottom:1067.910000px;}
.y28{bottom:1068.270000px;}
.y7{bottom:1068.990000px;}
.y98{bottom:1078.350000px;}
.yee{bottom:1084.290000px;}
.y65{bottom:1097.070000px;}
.y27{bottom:1099.410000px;}
.y45{bottom:1099.590000px;}
.y128{bottom:1126.050000px;}
.y97{bottom:1130.040000px;}
.y26{bottom:1130.400000px;}
.y6{bottom:1130.580000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.hc{height:31.140000px;}
.h7{height:33.683203px;}
.h9{height:50.273438px;}
.hb{height:50.800781px;}
.h14{height:54.878906px;}
.h4{height:59.436914px;}
.h8{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.ha{height:74.004654px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h12{height:93.276000px;}
.h10{height:100.620000px;}
.he{height:100.800000px;}
.h13{height:101.520000px;}
.h11{height:101.700000px;}
.hf{height:101.736000px;}
.hd{height:124.236000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:228.630000px;}
.w3{width:228.675000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.xf{left:100.296000px;}
.xc{left:106.956000px;}
.x5{left:108.396000px;}
.x6{left:118.836000px;}
.xb{left:122.256000px;}
.xd{left:135.036000px;}
.x9{left:137.016000px;}
.xe{left:162.390000px;}
.x2{left:224.130000px;}
.x3{left:256.395000px;}
.x8{left:260.175000px;}
.xa{left:313.815000px;}
.x11{left:329.655000px;}
.x1{left:349.995000px;}
.x7{left:354.495000px;}
.x4{left:405.435000px;}
.x12{left:559.005000px;}
.x13{left:784.980000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls5{letter-spacing:-4.144000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsc{letter-spacing:30.186667pt;}
.ls8{letter-spacing:48.746667pt;}
.ls7{letter-spacing:142.826667pt;}
.lsb{letter-spacing:175.978667pt;}
.ls0{letter-spacing:600.480000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._3c{margin-left:-7.925333pt;}
._14{margin-left:-6.784000pt;}
._15{margin-left:-5.632000pt;}
._3{margin-left:-4.715733pt;}
._4{margin-left:-2.901333pt;}
._22{margin-left:-1.866667pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._9{width:1.792000pt;}
._b{width:2.880000pt;}
._2{width:3.984640pt;}
._7{width:4.894720pt;}
._c{width:6.210560pt;}
._5{width:7.296000pt;}
._8{width:8.192000pt;}
._6{width:9.173333pt;}
._a{width:10.080000pt;}
._e{width:11.136000pt;}
._f{width:12.224000pt;}
._11{width:13.397333pt;}
._10{width:14.954667pt;}
._d{width:17.770667pt;}
._16{width:19.392000pt;}
._1f{width:20.288000pt;}
._19{width:21.760000pt;}
._18{width:22.656000pt;}
._17{width:24.192000pt;}
._20{width:25.920000pt;}
._3b{width:27.029333pt;}
._1b{width:27.968000pt;}
._1a{width:29.248000pt;}
._1d{width:30.144000pt;}
._2d{width:31.040000pt;}
._12{width:32.448000pt;}
._13{width:33.835733pt;}
._3a{width:34.826667pt;}
._1e{width:35.840000pt;}
._1c{width:39.040000pt;}
._3d{width:42.560000pt;}
._2a{width:44.160000pt;}
._2b{width:45.248000pt;}
._28{width:47.808000pt;}
._38{width:48.832000pt;}
._29{width:49.856000pt;}
._2c{width:58.560000pt;}
._37{width:61.824000pt;}
._31{width:64.000000pt;}
._32{width:65.248000pt;}
._25{width:69.312000pt;}
._26{width:71.872000pt;}
._24{width:77.312000pt;}
._36{width:81.472000pt;}
._27{width:86.624000pt;}
._2e{width:97.216000pt;}
._2f{width:98.688000pt;}
._30{width:103.104000pt;}
._33{width:110.720000pt;}
._34{width:114.496000pt;}
._39{width:185.888000pt;}
._23{width:187.370667pt;}
._35{width:189.184000pt;}
._21{width:1187.669333pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:12.960000pt;}
.ye2{bottom:12.986667pt;}
.ycd{bottom:13.114667pt;}
.yea{bottom:13.120000pt;}
.yde{bottom:19.680000pt;}
.yd7{bottom:19.840000pt;}
.yed{bottom:20.480000pt;}
.ydb{bottom:20.640000pt;}
.yd2{bottom:40.640000pt;}
.ye1{bottom:40.666667pt;}
.ye9{bottom:40.680000pt;}
.yd6{bottom:47.360000pt;}
.ye6{bottom:48.160000pt;}
.yda{bottom:48.360000pt;}
.y5{bottom:51.840000pt;}
.yd1{bottom:68.160000pt;}
.ye0{bottom:68.186667pt;}
.ye8{bottom:68.360000pt;}
.y4{bottom:70.272000pt;}
.ydd{bottom:74.880000pt;}
.yd5{bottom:75.040000pt;}
.yec{bottom:75.680000pt;}
.ye5{bottom:75.840000pt;}
.yd9{bottom:75.880000pt;}
.yd0{bottom:95.866667pt;}
.y64{bottom:100.032000pt;}
.y10c{bottom:108.192000pt;}
.y148{bottom:116.352000pt;}
.y96{bottom:117.472000pt;}
.yb3{bottom:118.272000pt;}
.y127{bottom:120.032000pt;}
.y25{bottom:121.792000pt;}
.yce{bottom:122.592000pt;}
.y63{bottom:127.392000pt;}
.y10b{bottom:135.866667pt;}
.y44{bottom:137.306667pt;}
.y7f{bottom:139.866667pt;}
.y147{bottom:143.866667pt;}
.y95{bottom:144.986667pt;}
.yb2{bottom:145.466667pt;}
.y126{bottom:148.826667pt;}
.y24{bottom:149.306667pt;}
.y62{bottom:155.066667pt;}
.y10a{bottom:163.386667pt;}
.y43{bottom:166.746667pt;}
.y7e{bottom:167.386667pt;}
.yeb{bottom:170.106667pt;}
.y146{bottom:171.546667pt;}
.y94{bottom:172.666667pt;}
.yb1{bottom:173.466667pt;}
.y125{bottom:176.666667pt;}
.y23{bottom:176.986667pt;}
.y61{bottom:182.586667pt;}
.y109{bottom:191.066667pt;}
.ycc{bottom:191.546667pt;}
.y7d{bottom:195.066667pt;}
.y42{bottom:195.546667pt;}
.y145{bottom:199.066667pt;}
.yb0{bottom:200.986667pt;}
.y124{bottom:204.346667pt;}
.y22{bottom:204.506667pt;}
.y60{bottom:210.266667pt;}
.y93{bottom:218.586667pt;}
.y41{bottom:224.186667pt;}
.y144{bottom:226.746667pt;}
.yaf{bottom:228.666667pt;}
.y123{bottom:231.866667pt;}
.y21{bottom:232.186667pt;}
.y5f{bottom:237.786667pt;}
.y7c{bottom:240.986667pt;}
.y108{bottom:246.266667pt;}
.ycb{bottom:251.546667pt;}
.y143{bottom:254.266667pt;}
.y40{bottom:255.066667pt;}
.yae{bottom:256.186667pt;}
.y122{bottom:259.546667pt;}
.y20{bottom:259.706667pt;}
.ye7{bottom:260.986667pt;}
.y92{bottom:265.146667pt;}
.y5e{bottom:267.546667pt;}
.y107{bottom:273.786667pt;}
.yca{bottom:279.066667pt;}
.y142{bottom:281.946667pt;}
.yad{bottom:283.866667pt;}
.y3f{bottom:284.666667pt;}
.y121{bottom:287.066667pt;}
.y1f{bottom:287.386667pt;}
.y7b{bottom:287.546667pt;}
.y91{bottom:292.706667pt;}
.y5d{bottom:295.106667pt;}
.y106{bottom:301.186667pt;}
.yc9{bottom:306.786667pt;}
.y141{bottom:309.506667pt;}
.yac{bottom:311.426667pt;}
.y3e{bottom:312.226667pt;}
.y120{bottom:314.786667pt;}
.y1e{bottom:314.946667pt;}
.y7a{bottom:315.106667pt;}
.y5c{bottom:322.626667pt;}
.y105{bottom:328.706667pt;}
.yc8{bottom:334.306667pt;}
.y140{bottom:337.186667pt;}
.yab{bottom:338.626667pt;}
.y90{bottom:338.786667pt;}
.y3d{bottom:341.986667pt;}
.y11f{bottom:342.306667pt;}
.y1d{bottom:342.626667pt;}
.y79{bottom:342.786667pt;}
.ye4{bottom:344.546667pt;}
.y5b{bottom:350.306667pt;}
.y104{bottom:356.386667pt;}
.yc7{bottom:361.666667pt;}
.y13f{bottom:364.706667pt;}
.yaa{bottom:366.626667pt;}
.y3c{bottom:369.346667pt;}
.y11e{bottom:369.986667pt;}
.y1c{bottom:370.146667pt;}
.y78{bottom:370.306667pt;}
.y5a{bottom:377.826667pt;}
.y103{bottom:384.226667pt;}
.y8f{bottom:385.346667pt;}
.yc6{bottom:389.506667pt;}
.y13e{bottom:392.386667pt;}
.ya9{bottom:394.146667pt;}
.y3b{bottom:397.026667pt;}
.y11d{bottom:397.506667pt;}
.y1b{bottom:397.826667pt;}
.y59{bottom:407.586667pt;}
.y102{bottom:411.906667pt;}
.y8e{bottom:412.866667pt;}
.y77{bottom:416.226667pt;}
.yc5{bottom:417.186667pt;}
.y13d{bottom:419.906667pt;}
.ya8{bottom:421.826667pt;}
.y3a{bottom:424.546667pt;}
.y11c{bottom:425.186667pt;}
.y1a{bottom:425.346667pt;}
.y58{bottom:434.946667pt;}
.ye3{bottom:435.586667pt;}
.y101{bottom:439.426667pt;}
.y8d{bottom:440.546667pt;}
.yc4{bottom:444.706667pt;}
.y13c{bottom:447.586667pt;}
.ya7{bottom:449.346667pt;}
.y39{bottom:452.226667pt;}
.y11b{bottom:452.706667pt;}
.y19{bottom:453.026667pt;}
.y57{bottom:462.626667pt;}
.y76{bottom:462.946667pt;}
.y100{bottom:466.946667pt;}
.y8c{bottom:468.066667pt;}
.yc3{bottom:473.506667pt;}
.y13b{bottom:475.106667pt;}
.ya6{bottom:477.026667pt;}
.y38{bottom:479.746667pt;}
.y11a{bottom:480.066667pt;}
.y129{bottom:480.386667pt;}
.y18{bottom:480.546667pt;}
.y56{bottom:490.146667pt;}
.y75{bottom:490.466667pt;}
.yff{bottom:494.626667pt;}
.y8b{bottom:495.746667pt;}
.yc2{bottom:501.026667pt;}
.y13a{bottom:502.786667pt;}
.ya5{bottom:504.546667pt;}
.y37{bottom:507.426667pt;}
.y119{bottom:507.906667pt;}
.y17{bottom:508.226667pt;}
.y55{bottom:517.826667pt;}
.y74{bottom:518.146667pt;}
.yfe{bottom:522.146667pt;}
.y8a{bottom:524.706667pt;}
.ydf{bottom:525.826667pt;}
.yc1{bottom:528.733333pt;}
.y139{bottom:530.333333pt;}
.ya4{bottom:533.693333pt;}
.y36{bottom:534.973333pt;}
.y118{bottom:535.613333pt;}
.y16{bottom:535.773333pt;}
.y54{bottom:545.373333pt;}
.y73{bottom:545.693333pt;}
.yfd{bottom:549.853333pt;}
.y89{bottom:552.573333pt;}
.yc0{bottom:557.373333pt;}
.y138{bottom:558.013333pt;}
.ya3{bottom:561.533333pt;}
.y35{bottom:562.493333pt;}
.y117{bottom:563.133333pt;}
.y15{bottom:563.453333pt;}
.y53{bottom:573.053333pt;}
.y72{bottom:573.373333pt;}
.yfc{bottom:577.373333pt;}
.ybf{bottom:585.053333pt;}
.y137{bottom:585.533333pt;}
.y34{bottom:590.173333pt;}
.y116{bottom:590.813333pt;}
.y14{bottom:590.973333pt;}
.y88{bottom:598.973333pt;}
.y71{bottom:600.893333pt;}
.y52{bottom:602.813333pt;}
.yfb{bottom:605.053333pt;}
.ya2{bottom:607.773333pt;}
.ybe{bottom:612.733333pt;}
.y136{bottom:613.213333pt;}
.y33{bottom:617.693333pt;}
.y115{bottom:618.333333pt;}
.y13{bottom:618.653333pt;}
.y87{bottom:626.493333pt;}
.y51{bottom:630.173333pt;}
.yfa{bottom:632.573333pt;}
.ya1{bottom:635.453333pt;}
.ydc{bottom:636.893333pt;}
.y135{bottom:640.733333pt;}
.ybd{bottom:641.053333pt;}
.y32{bottom:645.373333pt;}
.y114{bottom:646.013333pt;}
.y12{bottom:646.173333pt;}
.y70{bottom:646.973333pt;}
.y86{bottom:654.173333pt;}
.y50{bottom:657.853333pt;}
.yf9{bottom:660.253333pt;}
.ya0{bottom:662.973333pt;}
.y134{bottom:668.413333pt;}
.ybc{bottom:668.573333pt;}
.y31{bottom:672.893333pt;}
.y113{bottom:673.533333pt;}
.y11{bottom:673.853333pt;}
.y85{bottom:681.693333pt;}
.y4f{bottom:685.373333pt;}
.yf8{bottom:687.773333pt;}
.y6f{bottom:693.373333pt;}
.y133{bottom:695.933333pt;}
.ybb{bottom:696.573333pt;}
.y30{bottom:700.573333pt;}
.y112{bottom:701.213333pt;}
.y10{bottom:701.373333pt;}
.y9f{bottom:708.893333pt;}
.y84{bottom:709.213333pt;}
.y4e{bottom:713.053333pt;}
.yf7{bottom:715.453333pt;}
.y6e{bottom:721.053333pt;}
.y132{bottom:723.613333pt;}
.yba{bottom:724.253333pt;}
.yd8{bottom:726.973333pt;}
.y2f{bottom:728.093333pt;}
.yf{bottom:728.733333pt;}
.y4d{bottom:740.573333pt;}
.yf6{bottom:742.973333pt;}
.y6d{bottom:748.573333pt;}
.y131{bottom:751.133333pt;}
.yb9{bottom:752.893333pt;}
.y83{bottom:755.293333pt;}
.y9e{bottom:755.613333pt;}
.y2e{bottom:755.773333pt;}
.y111{bottom:756.413333pt;}
.ye{bottom:762.173333pt;}
.y4c{bottom:769.733333pt;}
.yf5{bottom:770.693333pt;}
.y6c{bottom:777.733333pt;}
.y130{bottom:778.853333pt;}
.yb8{bottom:781.733333pt;}
.y9d{bottom:783.173333pt;}
.y2d{bottom:783.333333pt;}
.y110{bottom:783.973333pt;}
.yd{bottom:784.293333pt;}
.yf4{bottom:798.213333pt;}
.y4b{bottom:799.813333pt;}
.y82{bottom:801.893333pt;}
.y12f{bottom:806.373333pt;}
.y6b{bottom:807.813333pt;}
.yb7{bottom:810.533333pt;}
.y9c{bottom:810.853333pt;}
.y2c{bottom:811.013333pt;}
.y10f{bottom:811.653333pt;}
.yc{bottom:813.413333pt;}
.yd4{bottom:818.053333pt;}
.yf3{bottom:825.893333pt;}
.yb{bottom:827.973333pt;}
.y4a{bottom:829.413333pt;}
.y12e{bottom:834.053333pt;}
.y6a{bottom:837.413333pt;}
.y2b{bottom:838.213333pt;}
.yb6{bottom:838.853333pt;}
.y10e{bottom:839.173333pt;}
.yf2{bottom:853.413333pt;}
.y9b{bottom:856.773333pt;}
.ya{bottom:857.093333pt;}
.y49{bottom:859.013333pt;}
.y12d{bottom:861.573333pt;}
.y69{bottom:864.773333pt;}
.yb5{bottom:866.853333pt;}
.yf1{bottom:881.093333pt;}
.y81{bottom:884.613333pt;}
.y9{bottom:886.533333pt;}
.y48{bottom:888.613333pt;}
.y12c{bottom:889.253333pt;}
.y68{bottom:892.453333pt;}
.y10d{bottom:894.053333pt;}
.y2a{bottom:894.373333pt;}
.y9a{bottom:903.333333pt;}
.ycf{bottom:908.293333pt;}
.yf0{bottom:908.613333pt;}
.y12b{bottom:916.773333pt;}
.y47{bottom:918.213333pt;}
.y67{bottom:919.973333pt;}
.y29{bottom:922.053333pt;}
.y8{bottom:927.013333pt;}
.y80{bottom:930.533333pt;}
.y99{bottom:930.853333pt;}
.yef{bottom:936.293333pt;}
.y12a{bottom:945.733333pt;}
.y66{bottom:947.653333pt;}
.y46{bottom:947.813333pt;}
.yb4{bottom:949.253333pt;}
.y28{bottom:949.573333pt;}
.y7{bottom:950.213333pt;}
.y98{bottom:958.533333pt;}
.yee{bottom:963.813333pt;}
.y65{bottom:975.173333pt;}
.y27{bottom:977.253333pt;}
.y45{bottom:977.413333pt;}
.y128{bottom:1000.933333pt;}
.y97{bottom:1004.480000pt;}
.y26{bottom:1004.800000pt;}
.y6{bottom:1004.960000pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.hc{height:27.680000pt;}
.h7{height:29.940625pt;}
.h9{height:44.687500pt;}
.hb{height:45.156250pt;}
.h14{height:48.781250pt;}
.h4{height:52.832812pt;}
.h8{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.ha{height:65.781915pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h12{height:82.912000pt;}
.h10{height:89.440000pt;}
.he{height:89.600000pt;}
.h13{height:90.240000pt;}
.h11{height:90.400000pt;}
.hf{height:90.432000pt;}
.hd{height:110.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:203.226667pt;}
.w3{width:203.266667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.xf{left:89.152000pt;}
.xc{left:95.072000pt;}
.x5{left:96.352000pt;}
.x6{left:105.632000pt;}
.xb{left:108.672000pt;}
.xd{left:120.032000pt;}
.x9{left:121.792000pt;}
.xe{left:144.346667pt;}
.x2{left:199.226667pt;}
.x3{left:227.906667pt;}
.x8{left:231.266667pt;}
.xa{left:278.946667pt;}
.x11{left:293.026667pt;}
.x1{left:311.106667pt;}
.x7{left:315.106667pt;}
.x4{left:360.386667pt;}
.x12{left:496.893333pt;}
.x13{left:697.760000pt;}
}




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