
    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_3e0b81b854872ed5b3c4f0f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_acb462e4e4f3c43ebb4576b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f4924343402bc0d0a0cf185.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8d2e576bf3007b356239928.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_f44ae02c6f38841740ff7d7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b4d5ad67a5a434e020f90a2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969238;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_0f3462db05003f7f7b88ceff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969238;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_166b47039d7ddd0e6b9acc0f.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls14{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.422000px;}
.lsa{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.810000px;}
.ls4{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.ls12{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.498240px;}
.ls2{letter-spacing:0.501000px;}
.lsc{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.732000px;}
.ls11{letter-spacing:3.600000px;}
.ls10{letter-spacing:6.480000px;}
.lsd{letter-spacing:31.836000px;}
.ls15{letter-spacing:46.558560px;}
.lse{letter-spacing:54.876000px;}
.ls7{letter-spacing:82.690560px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws1{word-spacing:-12.381000px;}
.wsb{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-5.299200px;}
._8{margin-left:-3.988800px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.960000px;}
._d{width:5.688000px;}
._e{width:7.171200px;}
._9{width:9.000000px;}
._a{width:10.123200px;}
._b{width:12.079200px;}
._14{width:13.464000px;}
._18{width:14.548800px;}
._10{width:15.768000px;}
._f{width:16.920000px;}
._7{width:19.585920px;}
._13{width:21.312000px;}
._15{width:22.896000px;}
._1a{width:24.840000px;}
._1b{width:25.963200px;}
._12{width:27.216000px;}
._11{width:28.440000px;}
._23{width:30.312000px;}
._22{width:31.392000px;}
._17{width:35.712000px;}
._16{width:36.720000px;}
._24{width:52.992000px;}
._25{width:55.032000px;}
._26{width:81.792000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._20{width:1069.056000px;}
._1f{width:1097.976000px;}
._21{width:1118.424000px;}
._1c{width:1570.296000px;}
._3{width:1591.176000px;}
._1e{width:1673.436000px;}
._1d{width:2263.236000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs6{font-size:132.480000px;}
.fs5{font-size:144.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y45{bottom:3.240000px;}
.y31{bottom:6.840000px;}
.y44{bottom:24.165000px;}
.y30{bottom:30.594000px;}
.ye{bottom:43.560000px;}
.y43{bottom:47.925000px;}
.y2f{bottom:54.354000px;}
.yc{bottom:68.400000px;}
.y42{bottom:71.685000px;}
.y2e{bottom:78.159000px;}
.ya{bottom:94.716000px;}
.y41{bottom:95.445000px;}
.y2d{bottom:101.919000px;}
.y40{bottom:119.205000px;}
.y2c{bottom:126.039000px;}
.y9c{bottom:132.876000px;}
.yba{bottom:134.316000px;}
.y100{bottom:139.716000px;}
.y21{bottom:140.436000px;}
.yff{bottom:141.516000px;}
.y101{bottom:142.596000px;}
.y3f{bottom:143.325000px;}
.y2b{bottom:149.799000px;}
.y129{bottom:152.310000px;}
.y9b{bottom:156.630000px;}
.yb9{bottom:158.070000px;}
.yda{bottom:160.590000px;}
.yfe{bottom:161.670000px;}
.y89{bottom:163.470000px;}
.y5f{bottom:165.270000px;}
.y3e{bottom:167.115000px;}
.y2a{bottom:173.559000px;}
.y128{bottom:176.070000px;}
.yee{bottom:179.310000px;}
.y9a{bottom:180.390000px;}
.ya9{bottom:181.110000px;}
.yb8{bottom:181.830000px;}
.yd9{bottom:184.350000px;}
.y88{bottom:187.230000px;}
.y5e{bottom:189.390000px;}
.y3d{bottom:190.875000px;}
.y29{bottom:197.349000px;}
.y127{bottom:199.875000px;}
.yed{bottom:203.475000px;}
.y99{bottom:204.195000px;}
.ya8{bottom:204.915000px;}
.yb7{bottom:205.995000px;}
.yd8{bottom:208.155000px;}
.y87{bottom:211.035000px;}
.y5d{bottom:213.195000px;}
.y3c{bottom:214.635000px;}
.y28{bottom:221.109000px;}
.y126{bottom:223.995000px;}
.y98{bottom:227.955000px;}
.ya7{bottom:228.675000px;}
.yb6{bottom:229.755000px;}
.yd7{bottom:231.915000px;}
.y86{bottom:234.795000px;}
.y5c{bottom:236.955000px;}
.y3b{bottom:238.395000px;}
.y27{bottom:244.869000px;}
.y125{bottom:247.755000px;}
.y97{bottom:251.715000px;}
.ya6{bottom:252.435000px;}
.yec{bottom:253.515000px;}
.yb5{bottom:253.875000px;}
.yd6{bottom:256.035000px;}
.y85{bottom:258.555000px;}
.y5b{bottom:260.715000px;}
.y3a{bottom:262.155000px;}
.y26{bottom:268.629000px;}
.y124{bottom:271.515000px;}
.y96{bottom:275.475000px;}
.ya5{bottom:276.195000px;}
.yeb{bottom:277.635000px;}
.yd5{bottom:279.795000px;}
.y84{bottom:282.315000px;}
.y5a{bottom:284.475000px;}
.y39{bottom:285.960000px;}
.y25{bottom:292.389000px;}
.y123{bottom:295.275000px;}
.ya4{bottom:295.995000px;}
.y95{bottom:299.595000px;}
.yea{bottom:302.475000px;}
.yd4{bottom:303.555000px;}
.y83{bottom:306.435000px;}
.y59{bottom:308.235000px;}
.y38{bottom:309.720000px;}
.y24{bottom:316.554000px;}
.y122{bottom:319.035000px;}
.y94{bottom:323.385000px;}
.yd3{bottom:327.345000px;}
.y82{bottom:330.225000px;}
.y58{bottom:332.025000px;}
.y37{bottom:333.840000px;}
.ye9{bottom:338.505000px;}
.y23{bottom:340.314000px;}
.y121{bottom:342.825000px;}
.y93{bottom:347.145000px;}
.yd2{bottom:351.105000px;}
.y81{bottom:353.985000px;}
.y57{bottom:355.785000px;}
.ye8{bottom:363.705000px;}
.y22{bottom:364.074000px;}
.y120{bottom:366.585000px;}
.y92{bottom:370.905000px;}
.yd1{bottom:374.865000px;}
.y80{bottom:377.745000px;}
.y56{bottom:379.905000px;}
.ye7{bottom:388.545000px;}
.y11f{bottom:390.345000px;}
.y91{bottom:394.665000px;}
.yd0{bottom:398.625000px;}
.y7f{bottom:401.505000px;}
.y55{bottom:403.665000px;}
.ye6{bottom:413.385000px;}
.y11e{bottom:414.105000px;}
.y90{bottom:418.425000px;}
.ycf{bottom:422.385000px;}
.yfd{bottom:424.545000px;}
.y7e{bottom:425.265000px;}
.y54{bottom:427.425000px;}
.y11d{bottom:438.225000px;}
.y8f{bottom:442.185000px;}
.yfc{bottom:445.425000px;}
.yce{bottom:446.505000px;}
.y7d{bottom:449.025000px;}
.ye5{bottom:449.430000px;}
.y53{bottom:451.230000px;}
.y11c{bottom:462.030000px;}
.y8e{bottom:465.990000px;}
.yb4{bottom:466.350000px;}
.ycd{bottom:470.310000px;}
.y7c{bottom:472.830000px;}
.ye4{bottom:474.630000px;}
.y52{bottom:474.990000px;}
.y11b{bottom:485.790000px;}
.yfb{bottom:486.870000px;}
.y8d{bottom:490.110000px;}
.ycc{bottom:494.070000px;}
.y7b{bottom:496.950000px;}
.y51{bottom:498.750000px;}
.ye3{bottom:499.830000px;}
.yfa{bottom:507.390000px;}
.y11a{bottom:509.550000px;}
.y8c{bottom:513.870000px;}
.ya3{bottom:517.110000px;}
.ycb{bottom:517.830000px;}
.y7a{bottom:520.710000px;}
.y50{bottom:522.510000px;}
.ye2{bottom:525.030000px;}
.y20{bottom:526.470000px;}
.yf9{bottom:528.270000px;}
.y119{bottom:533.310000px;}
.y8b{bottom:537.630000px;}
.yb3{bottom:537.990000px;}
.ya2{bottom:540.870000px;}
.yca{bottom:541.590000px;}
.y79{bottom:544.470000px;}
.y4f{bottom:546.270000px;}
.yf8{bottom:548.790000px;}
.ye1{bottom:549.870000px;}
.y1f{bottom:551.310000px;}
.y8a{bottom:556.710000px;}
.y118{bottom:557.070000px;}
.yb2{bottom:561.750000px;}
.ya1{bottom:564.630000px;}
.yc9{bottom:565.350000px;}
.y78{bottom:568.230000px;}
.yf7{bottom:569.670000px;}
.y4e{bottom:570.030000px;}
.ye0{bottom:573.630000px;}
.y1e{bottom:579.060000px;}
.y117{bottom:580.860000px;}
.yb1{bottom:585.540000px;}
.ya0{bottom:588.420000px;}
.yc8{bottom:589.140000px;}
.yf6{bottom:590.220000px;}
.y77{bottom:592.020000px;}
.y4d{bottom:594.180000px;}
.ydf{bottom:598.500000px;}
.y1d{bottom:602.820000px;}
.y116{bottom:604.620000px;}
.yb0{bottom:608.580000px;}
.yf5{bottom:611.100000px;}
.y9f{bottom:612.180000px;}
.yc7{bottom:612.900000px;}
.y76{bottom:615.780000px;}
.y4c{bottom:617.940000px;}
.y1c{bottom:626.580000px;}
.y115{bottom:628.740000px;}
.yf4{bottom:631.620000px;}
.yde{bottom:634.860000px;}
.y9e{bottom:635.940000px;}
.yc6{bottom:637.020000px;}
.y75{bottom:639.540000px;}
.y4b{bottom:641.700000px;}
.y1b{bottom:643.860000px;}
.yf3{bottom:652.500000px;}
.y9d{bottom:656.820000px;}
.ydd{bottom:659.700000px;}
.yc5{bottom:660.780000px;}
.y74{bottom:663.300000px;}
.y4a{bottom:665.460000px;}
.yf2{bottom:673.020000px;}
.y1a{bottom:674.460000px;}
.y114{bottom:676.260000px;}
.yc4{bottom:684.540000px;}
.ydc{bottom:684.900000px;}
.y73{bottom:687.420000px;}
.y49{bottom:689.220000px;}
.yf1{bottom:693.900000px;}
.y19{bottom:698.220000px;}
.y113{bottom:700.020000px;}
.yc3{bottom:708.330000px;}
.ydb{bottom:710.130000px;}
.y72{bottom:711.210000px;}
.y48{bottom:713.010000px;}
.yf0{bottom:714.450000px;}
.y18{bottom:722.010000px;}
.y112{bottom:723.810000px;}
.yc2{bottom:732.090000px;}
.y71{bottom:734.970000px;}
.yef{bottom:735.330000px;}
.y17{bottom:738.930000px;}
.y111{bottom:747.570000px;}
.y47{bottom:750.810000px;}
.yc1{bottom:755.850000px;}
.y70{bottom:758.730000px;}
.y16{bottom:762.690000px;}
.y110{bottom:771.330000px;}
.y46{bottom:778.890000px;}
.yc0{bottom:779.610000px;}
.y6f{bottom:782.490000px;}
.y15{bottom:793.290000px;}
.y10f{bottom:795.090000px;}
.ybf{bottom:803.370000px;}
.y36{bottom:803.730000px;}
.y6e{bottom:806.250000px;}
.y14{bottom:806.610000px;}
.y10e{bottom:818.850000px;}
.yaf{bottom:822.450000px;}
.y13{bottom:825.690000px;}
.ybe{bottom:827.175000px;}
.y6d{bottom:830.055000px;}
.y10d{bottom:843.015000px;}
.yae{bottom:846.255000px;}
.ybd{bottom:851.295000px;}
.y12{bottom:852.375000px;}
.y6c{bottom:853.815000px;}
.y10c{bottom:866.775000px;}
.yad{bottom:870.015000px;}
.y11{bottom:873.255000px;}
.ybc{bottom:875.055000px;}
.y6b{bottom:877.575000px;}
.y10b{bottom:890.535000px;}
.y10{bottom:893.775000px;}
.ybb{bottom:896.295000px;}
.y6a{bottom:901.695000px;}
.y10a{bottom:914.295000px;}
.yf{bottom:915.375000px;}
.yac{bottom:917.895000px;}
.y69{bottom:925.455000px;}
.y109{bottom:938.055000px;}
.y9{bottom:941.295000px;}
.yab{bottom:941.655000px;}
.y68{bottom:949.215000px;}
.y8{bottom:958.605000px;}
.yaa{bottom:961.845000px;}
.y7{bottom:972.645000px;}
.y67{bottom:973.005000px;}
.y108{bottom:985.605000px;}
.y66{bottom:996.765000px;}
.y107{bottom:1009.365000px;}
.y65{bottom:1020.525000px;}
.y6{bottom:1027.365000px;}
.y106{bottom:1033.485000px;}
.y64{bottom:1044.285000px;}
.y5{bottom:1052.205000px;}
.y105{bottom:1057.245000px;}
.y63{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y104{bottom:1081.050000px;}
.y62{bottom:1092.210000px;}
.y3{bottom:1094.010000px;}
.y103{bottom:1104.810000px;}
.y2{bottom:1114.530000px;}
.y61{bottom:1115.970000px;}
.y1{bottom:1131.450000px;}
.y60{bottom:1139.730000px;}
.y102{bottom:1142.610000px;}
.y35{bottom:1166.370000px;}
.y34{bottom:1180.410000px;}
.y33{bottom:1201.290000px;}
.y32{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hd{height:34.363828px;}
.ha{height:34.410234px;}
.h7{height:39.570469px;}
.h5{height:41.707969px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.h10{height:44.031094px;}
.hc{height:52.066406px;}
.h3{height:52.136719px;}
.h18{height:52.417969px;}
.h11{height:54.246094px;}
.h13{height:54.878906px;}
.h17{height:55.125000px;}
.h12{height:61.723828px;}
.hb{height:61.770234px;}
.h19{height:63.580078px;}
.h9{height:69.863203px;}
.h16{height:73.722656px;}
.h15{height:95.931562px;}
.h14{height:104.273438px;}
.hf{height:350.745000px;}
.he{height:380.985000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x14{left:101.915987px;}
.x7{left:106.235987px;}
.xb{left:107.675987px;}
.x12{left:133.271987px;}
.x17{left:138.311987px;}
.x10{left:148.751987px;}
.x13{left:160.274987px;}
.xc{left:161.354987px;}
.x16{left:169.994987px;}
.xe{left:180.794987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xd{left:352.589987px;}
.x5{left:365.189987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.xf{left:447.660000px;}
.x15{left:540.209987px;}
.x11{left:608.294987px;}
.x1{left:786.929987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.264000pt;}
.lsa{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.720000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.442880pt;}
.ls2{letter-spacing:0.445333pt;}
.lsc{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.650667pt;}
.ls11{letter-spacing:3.200000pt;}
.ls10{letter-spacing:5.760000pt;}
.lsd{letter-spacing:28.298667pt;}
.ls15{letter-spacing:41.385387pt;}
.lse{letter-spacing:48.778667pt;}
.ls7{letter-spacing:73.502720pt;}
.ws8{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws2{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws1{word-spacing:-11.005333pt;}
.wsb{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-4.710400pt;}
._8{margin-left:-3.545600pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:3.520000pt;}
._d{width:5.056000pt;}
._e{width:6.374400pt;}
._9{width:8.000000pt;}
._a{width:8.998400pt;}
._b{width:10.737067pt;}
._14{width:11.968000pt;}
._18{width:12.932267pt;}
._10{width:14.016000pt;}
._f{width:15.040000pt;}
._7{width:17.409707pt;}
._13{width:18.944000pt;}
._15{width:20.352000pt;}
._1a{width:22.080000pt;}
._1b{width:23.078400pt;}
._12{width:24.192000pt;}
._11{width:25.280000pt;}
._23{width:26.944000pt;}
._22{width:27.904000pt;}
._17{width:31.744000pt;}
._16{width:32.640000pt;}
._24{width:47.104000pt;}
._25{width:48.917333pt;}
._26{width:72.704000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._20{width:950.272000pt;}
._1f{width:975.978667pt;}
._21{width:994.154667pt;}
._1c{width:1395.818667pt;}
._3{width:1414.378667pt;}
._1e{width:1487.498667pt;}
._1d{width:2011.765333pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs6{font-size:117.760000pt;}
.fs5{font-size:128.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y45{bottom:2.880000pt;}
.y31{bottom:6.080000pt;}
.y44{bottom:21.480000pt;}
.y30{bottom:27.194667pt;}
.ye{bottom:38.720000pt;}
.y43{bottom:42.600000pt;}
.y2f{bottom:48.314667pt;}
.yc{bottom:60.800000pt;}
.y42{bottom:63.720000pt;}
.y2e{bottom:69.474667pt;}
.ya{bottom:84.192000pt;}
.y41{bottom:84.840000pt;}
.y2d{bottom:90.594667pt;}
.y40{bottom:105.960000pt;}
.y2c{bottom:112.034667pt;}
.y9c{bottom:118.112000pt;}
.yba{bottom:119.392000pt;}
.y100{bottom:124.192000pt;}
.y21{bottom:124.832000pt;}
.yff{bottom:125.792000pt;}
.y101{bottom:126.752000pt;}
.y3f{bottom:127.400000pt;}
.y2b{bottom:133.154667pt;}
.y129{bottom:135.386667pt;}
.y9b{bottom:139.226667pt;}
.yb9{bottom:140.506667pt;}
.yda{bottom:142.746667pt;}
.yfe{bottom:143.706667pt;}
.y89{bottom:145.306667pt;}
.y5f{bottom:146.906667pt;}
.y3e{bottom:148.546667pt;}
.y2a{bottom:154.274667pt;}
.y128{bottom:156.506667pt;}
.yee{bottom:159.386667pt;}
.y9a{bottom:160.346667pt;}
.ya9{bottom:160.986667pt;}
.yb8{bottom:161.626667pt;}
.yd9{bottom:163.866667pt;}
.y88{bottom:166.426667pt;}
.y5e{bottom:168.346667pt;}
.y3d{bottom:169.666667pt;}
.y29{bottom:175.421333pt;}
.y127{bottom:177.666667pt;}
.yed{bottom:180.866667pt;}
.y99{bottom:181.506667pt;}
.ya8{bottom:182.146667pt;}
.yb7{bottom:183.106667pt;}
.yd8{bottom:185.026667pt;}
.y87{bottom:187.586667pt;}
.y5d{bottom:189.506667pt;}
.y3c{bottom:190.786667pt;}
.y28{bottom:196.541333pt;}
.y126{bottom:199.106667pt;}
.y98{bottom:202.626667pt;}
.ya7{bottom:203.266667pt;}
.yb6{bottom:204.226667pt;}
.yd7{bottom:206.146667pt;}
.y86{bottom:208.706667pt;}
.y5c{bottom:210.626667pt;}
.y3b{bottom:211.906667pt;}
.y27{bottom:217.661333pt;}
.y125{bottom:220.226667pt;}
.y97{bottom:223.746667pt;}
.ya6{bottom:224.386667pt;}
.yec{bottom:225.346667pt;}
.yb5{bottom:225.666667pt;}
.yd6{bottom:227.586667pt;}
.y85{bottom:229.826667pt;}
.y5b{bottom:231.746667pt;}
.y3a{bottom:233.026667pt;}
.y26{bottom:238.781333pt;}
.y124{bottom:241.346667pt;}
.y96{bottom:244.866667pt;}
.ya5{bottom:245.506667pt;}
.yeb{bottom:246.786667pt;}
.yd5{bottom:248.706667pt;}
.y84{bottom:250.946667pt;}
.y5a{bottom:252.866667pt;}
.y39{bottom:254.186667pt;}
.y25{bottom:259.901333pt;}
.y123{bottom:262.466667pt;}
.ya4{bottom:263.106667pt;}
.y95{bottom:266.306667pt;}
.yea{bottom:268.866667pt;}
.yd4{bottom:269.826667pt;}
.y83{bottom:272.386667pt;}
.y59{bottom:273.986667pt;}
.y38{bottom:275.306667pt;}
.y24{bottom:281.381333pt;}
.y122{bottom:283.586667pt;}
.y94{bottom:287.453333pt;}
.yd3{bottom:290.973333pt;}
.y82{bottom:293.533333pt;}
.y58{bottom:295.133333pt;}
.y37{bottom:296.746667pt;}
.ye9{bottom:300.893333pt;}
.y23{bottom:302.501333pt;}
.y121{bottom:304.733333pt;}
.y93{bottom:308.573333pt;}
.yd2{bottom:312.093333pt;}
.y81{bottom:314.653333pt;}
.y57{bottom:316.253333pt;}
.ye8{bottom:323.293333pt;}
.y22{bottom:323.621333pt;}
.y120{bottom:325.853333pt;}
.y92{bottom:329.693333pt;}
.yd1{bottom:333.213333pt;}
.y80{bottom:335.773333pt;}
.y56{bottom:337.693333pt;}
.ye7{bottom:345.373333pt;}
.y11f{bottom:346.973333pt;}
.y91{bottom:350.813333pt;}
.yd0{bottom:354.333333pt;}
.y7f{bottom:356.893333pt;}
.y55{bottom:358.813333pt;}
.ye6{bottom:367.453333pt;}
.y11e{bottom:368.093333pt;}
.y90{bottom:371.933333pt;}
.ycf{bottom:375.453333pt;}
.yfd{bottom:377.373333pt;}
.y7e{bottom:378.013333pt;}
.y54{bottom:379.933333pt;}
.y11d{bottom:389.533333pt;}
.y8f{bottom:393.053333pt;}
.yfc{bottom:395.933333pt;}
.yce{bottom:396.893333pt;}
.y7d{bottom:399.133333pt;}
.ye5{bottom:399.493333pt;}
.y53{bottom:401.093333pt;}
.y11c{bottom:410.693333pt;}
.y8e{bottom:414.213333pt;}
.yb4{bottom:414.533333pt;}
.ycd{bottom:418.053333pt;}
.y7c{bottom:420.293333pt;}
.ye4{bottom:421.893333pt;}
.y52{bottom:422.213333pt;}
.y11b{bottom:431.813333pt;}
.yfb{bottom:432.773333pt;}
.y8d{bottom:435.653333pt;}
.ycc{bottom:439.173333pt;}
.y7b{bottom:441.733333pt;}
.y51{bottom:443.333333pt;}
.ye3{bottom:444.293333pt;}
.yfa{bottom:451.013333pt;}
.y11a{bottom:452.933333pt;}
.y8c{bottom:456.773333pt;}
.ya3{bottom:459.653333pt;}
.ycb{bottom:460.293333pt;}
.y7a{bottom:462.853333pt;}
.y50{bottom:464.453333pt;}
.ye2{bottom:466.693333pt;}
.y20{bottom:467.973333pt;}
.yf9{bottom:469.573333pt;}
.y119{bottom:474.053333pt;}
.y8b{bottom:477.893333pt;}
.yb3{bottom:478.213333pt;}
.ya2{bottom:480.773333pt;}
.yca{bottom:481.413333pt;}
.y79{bottom:483.973333pt;}
.y4f{bottom:485.573333pt;}
.yf8{bottom:487.813333pt;}
.ye1{bottom:488.773333pt;}
.y1f{bottom:490.053333pt;}
.y8a{bottom:494.853333pt;}
.y118{bottom:495.173333pt;}
.yb2{bottom:499.333333pt;}
.ya1{bottom:501.893333pt;}
.yc9{bottom:502.533333pt;}
.y78{bottom:505.093333pt;}
.yf7{bottom:506.373333pt;}
.y4e{bottom:506.693333pt;}
.ye0{bottom:509.893333pt;}
.y1e{bottom:514.720000pt;}
.y117{bottom:516.320000pt;}
.yb1{bottom:520.480000pt;}
.ya0{bottom:523.040000pt;}
.yc8{bottom:523.680000pt;}
.yf6{bottom:524.640000pt;}
.y77{bottom:526.240000pt;}
.y4d{bottom:528.160000pt;}
.ydf{bottom:532.000000pt;}
.y1d{bottom:535.840000pt;}
.y116{bottom:537.440000pt;}
.yb0{bottom:540.960000pt;}
.yf5{bottom:543.200000pt;}
.y9f{bottom:544.160000pt;}
.yc7{bottom:544.800000pt;}
.y76{bottom:547.360000pt;}
.y4c{bottom:549.280000pt;}
.y1c{bottom:556.960000pt;}
.y115{bottom:558.880000pt;}
.yf4{bottom:561.440000pt;}
.yde{bottom:564.320000pt;}
.y9e{bottom:565.280000pt;}
.yc6{bottom:566.240000pt;}
.y75{bottom:568.480000pt;}
.y4b{bottom:570.400000pt;}
.y1b{bottom:572.320000pt;}
.yf3{bottom:580.000000pt;}
.y9d{bottom:583.840000pt;}
.ydd{bottom:586.400000pt;}
.yc5{bottom:587.360000pt;}
.y74{bottom:589.600000pt;}
.y4a{bottom:591.520000pt;}
.yf2{bottom:598.240000pt;}
.y1a{bottom:599.520000pt;}
.y114{bottom:601.120000pt;}
.yc4{bottom:608.480000pt;}
.ydc{bottom:608.800000pt;}
.y73{bottom:611.040000pt;}
.y49{bottom:612.640000pt;}
.yf1{bottom:616.800000pt;}
.y19{bottom:620.640000pt;}
.y113{bottom:622.240000pt;}
.yc3{bottom:629.626667pt;}
.ydb{bottom:631.226667pt;}
.y72{bottom:632.186667pt;}
.y48{bottom:633.786667pt;}
.yf0{bottom:635.066667pt;}
.y18{bottom:641.786667pt;}
.y112{bottom:643.386667pt;}
.yc2{bottom:650.746667pt;}
.y71{bottom:653.306667pt;}
.yef{bottom:653.626667pt;}
.y17{bottom:656.826667pt;}
.y111{bottom:664.506667pt;}
.y47{bottom:667.386667pt;}
.yc1{bottom:671.866667pt;}
.y70{bottom:674.426667pt;}
.y16{bottom:677.946667pt;}
.y110{bottom:685.626667pt;}
.y46{bottom:692.346667pt;}
.yc0{bottom:692.986667pt;}
.y6f{bottom:695.546667pt;}
.y15{bottom:705.146667pt;}
.y10f{bottom:706.746667pt;}
.ybf{bottom:714.106667pt;}
.y36{bottom:714.426667pt;}
.y6e{bottom:716.666667pt;}
.y14{bottom:716.986667pt;}
.y10e{bottom:727.866667pt;}
.yaf{bottom:731.066667pt;}
.y13{bottom:733.946667pt;}
.ybe{bottom:735.266667pt;}
.y6d{bottom:737.826667pt;}
.y10d{bottom:749.346667pt;}
.yae{bottom:752.226667pt;}
.ybd{bottom:756.706667pt;}
.y12{bottom:757.666667pt;}
.y6c{bottom:758.946667pt;}
.y10c{bottom:770.466667pt;}
.yad{bottom:773.346667pt;}
.y11{bottom:776.226667pt;}
.ybc{bottom:777.826667pt;}
.y6b{bottom:780.066667pt;}
.y10b{bottom:791.586667pt;}
.y10{bottom:794.466667pt;}
.ybb{bottom:796.706667pt;}
.y6a{bottom:801.506667pt;}
.y10a{bottom:812.706667pt;}
.yf{bottom:813.666667pt;}
.yac{bottom:815.906667pt;}
.y69{bottom:822.626667pt;}
.y109{bottom:833.826667pt;}
.y9{bottom:836.706667pt;}
.yab{bottom:837.026667pt;}
.y68{bottom:843.746667pt;}
.y8{bottom:852.093333pt;}
.yaa{bottom:854.973333pt;}
.y7{bottom:864.573333pt;}
.y67{bottom:864.893333pt;}
.y108{bottom:876.093333pt;}
.y66{bottom:886.013333pt;}
.y107{bottom:897.213333pt;}
.y65{bottom:907.133333pt;}
.y6{bottom:913.213333pt;}
.y106{bottom:918.653333pt;}
.y64{bottom:928.253333pt;}
.y5{bottom:935.293333pt;}
.y105{bottom:939.773333pt;}
.y63{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y104{bottom:960.933333pt;}
.y62{bottom:970.853333pt;}
.y3{bottom:972.453333pt;}
.y103{bottom:982.053333pt;}
.y2{bottom:990.693333pt;}
.y61{bottom:991.973333pt;}
.y1{bottom:1005.733333pt;}
.y60{bottom:1013.093333pt;}
.y102{bottom:1015.653333pt;}
.y35{bottom:1036.773333pt;}
.y34{bottom:1049.253333pt;}
.y33{bottom:1067.813333pt;}
.y32{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hd{height:30.545625pt;}
.ha{height:30.586875pt;}
.h7{height:35.173750pt;}
.h5{height:37.073750pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.h10{height:39.138750pt;}
.hc{height:46.281250pt;}
.h3{height:46.343750pt;}
.h18{height:46.593750pt;}
.h11{height:48.218750pt;}
.h13{height:48.781250pt;}
.h17{height:49.000000pt;}
.h12{height:54.865625pt;}
.hb{height:54.906875pt;}
.h19{height:56.515625pt;}
.h9{height:62.100625pt;}
.h16{height:65.531250pt;}
.h15{height:85.272500pt;}
.h14{height:92.687500pt;}
.hf{height:311.773333pt;}
.he{height:338.653333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x14{left:90.591988pt;}
.x7{left:94.431988pt;}
.xb{left:95.711988pt;}
.x12{left:118.463988pt;}
.x17{left:122.943988pt;}
.x10{left:132.223988pt;}
.x13{left:142.466655pt;}
.xc{left:143.426655pt;}
.x16{left:151.106655pt;}
.xe{left:160.706655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xd{left:313.413322pt;}
.x5{left:324.613322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.xf{left:397.920000pt;}
.x15{left:480.186655pt;}
.x11{left:540.706655pt;}
.x1{left:699.493322pt;}
}




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