
    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_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_156cc3bde818d205f0fb425b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962402;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_830dee64bc224a1524d82497.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_fba95e4e40763b7db3c658c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964844;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_22fac46ad8f9ed31dc761aeb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d0dd58b99747bc4dde6dad4c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_585162a4a000127e3bef2a77.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916016;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_6afd0c129e948ddb14a16fdb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_09076e322b7ca381ae0326da.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4275a850e38c54c6c8ad3a9c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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:fff;src:url('chunks/assets/font_c0edf23cb69ebcb1a67c30ae.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_585720aa0369ef21a2107b47.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.372070;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:ff11;src:url('chunks/assets/font_0cc014e4caeb879a17b1467e.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.ls1{letter-spacing:4.266000px;}
.ls2{letter-spacing:33.960000px;}
.ls8{letter-spacing:143.976000px;}
.ls9{letter-spacing:172.776000px;}
.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:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws1{word-spacing:-23.976000px;}
.ws2{word-spacing:-19.900080px;}
.ws8{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:0.000000px;}
._37{margin-left:-10.404960px;}
._1d{margin-left:-8.722560px;}
._a{margin-left:-7.275600px;}
._c{margin-left:-6.244320px;}
._1e{margin-left:-5.215680px;}
._6{margin-left:-4.185120px;}
._4{margin-left:-2.376000px;}
._3{margin-left:-1.178880px;}
._1{width:1.054560px;}
._2{width:2.356320px;}
._5{width:3.528000px;}
._7{width:4.838400px;}
._8{width:5.995440px;}
._9{width:7.794480px;}
._10{width:8.981520px;}
._e{width:10.435200px;}
._d{width:12.024000px;}
._f{width:13.108800px;}
._13{width:14.971200px;}
._1c{width:16.752720px;}
._0{width:17.928000px;}
._b{width:19.297440px;}
._11{width:20.391360px;}
._17{width:21.600000px;}
._16{width:22.850880px;}
._18{width:24.264000px;}
._19{width:26.064000px;}
._14{width:27.801120px;}
._15{width:29.006880px;}
._20{width:31.843680px;}
._2c{width:33.460320px;}
._12{width:35.424000px;}
._24{width:36.648000px;}
._1f{width:38.140320px;}
._33{width:39.456000px;}
._26{width:42.264000px;}
._35{width:44.856000px;}
._36{width:46.333440px;}
._3d{width:47.796000px;}
._3b{width:53.280000px;}
._3c{width:54.421440px;}
._28{width:55.656000px;}
._29{width:56.880000px;}
._38{width:57.960000px;}
._27{width:62.738880px;}
._22{width:70.776000px;}
._23{width:71.964000px;}
._31{width:74.664000px;}
._2d{width:76.824000px;}
._21{width:79.200000px;}
._32{width:81.241440px;}
._2b{width:91.512000px;}
._2a{width:96.480000px;}
._34{width:106.344000px;}
._2f{width:135.616800px;}
._2e{width:137.500320px;}
._30{width:167.400000px;}
._39{width:173.016000px;}
._3a{width:179.712000px;}
._25{width:344.304000px;}
._1a{width:997.992000px;}
._1b{width:1004.472000px;}
.fc6{color:transparent;}
.fc5{color:rgb(247,202,172);}
.fc8{color:rgb(5,99,193);}
.fc4{color:rgb(0,32,96);}
.fc2{color:rgb(112,48,160);}
.fc7{color:rgb(255,255,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs4{font-size:216.000000px;}
.yd{bottom:-141.465000px;}
.yc{bottom:-71.625000px;}
.yb{bottom:-27.165000px;}
.y0{bottom:0.000000px;}
.y98{bottom:4.125000px;}
.y90{bottom:4.140000px;}
.y9a{bottom:4.485000px;}
.y94{bottom:4.500000px;}
.y97{bottom:24.825000px;}
.y92{bottom:24.840000px;}
.y99{bottom:25.185000px;}
.y93{bottom:25.200000px;}
.ya{bottom:27.225000px;}
.y5{bottom:58.716000px;}
.y9{bottom:62.685000px;}
.y4{bottom:79.416000px;}
.y8{bottom:93.105000px;}
.y3{bottom:97.956000px;}
.y7{bottom:122.445000px;}
.y2d{bottom:122.796000px;}
.y8a{bottom:132.696000px;}
.y69{bottom:132.876000px;}
.y50{bottom:133.056000px;}
.yf6{bottom:142.236000px;}
.ycf{bottom:142.596000px;}
.y107{bottom:144.936000px;}
.y2c{bottom:146.736000px;}
.y9d{bottom:150.525000px;}
.y89{bottom:156.630000px;}
.y4f{bottom:156.810000px;}
.y10e{bottom:156.990000px;}
.ye9{bottom:157.170000px;}
.ybc{bottom:161.670000px;}
.yf5{bottom:166.170000px;}
.yce{bottom:166.350000px;}
.y2b{bottom:170.670000px;}
.y4e{bottom:180.750000px;}
.y106{bottom:180.930000px;}
.ycd{bottom:190.110000px;}
.y7d{bottom:192.810000px;}
.y9c{bottom:192.825000px;}
.y104{bottom:192.990000px;}
.ye8{bottom:193.170000px;}
.y2a{bottom:194.610000px;}
.ybb{bottom:197.670000px;}
.y68{bottom:204.690000px;}
.y111{bottom:204.870000px;}
.y7c{bottom:216.750000px;}
.y4d{bottom:216.930000px;}
.y29{bottom:218.730000px;}
.yf4{bottom:225.930000px;}
.ycc{bottom:226.470000px;}
.y67{bottom:228.630000px;}
.y103{bottom:228.810000px;}
.ye7{bottom:229.170000px;}
.yba{bottom:233.490000px;}
.y9b{bottom:234.945000px;}
.y4c{bottom:240.690000px;}
.y28{bottom:242.670000px;}
.ycb{bottom:250.410000px;}
.y66{bottom:252.570000px;}
.y102{bottom:252.750000px;}
.y7b{bottom:252.930000px;}
.yf3{bottom:262.290000px;}
.y4b{bottom:264.630000px;}
.y88{bottom:264.810000px;}
.ye6{bottom:265.170000px;}
.y27{bottom:266.610000px;}
.yb9{bottom:269.850000px;}
.yca{bottom:274.350000px;}
.y65{bottom:276.690000px;}
.y96{bottom:277.065000px;}
.yf2{bottom:286.050000px;}
.y4a{bottom:288.750000px;}
.y26{bottom:290.550000px;}
.yb8{bottom:293.610000px;}
.yc9{bottom:298.290000px;}
.y101{bottom:300.630000px;}
.y87{bottom:300.810000px;}
.ye5{bottom:301.170000px;}
.yf1{bottom:310.035000px;}
.y49{bottom:312.735000px;}
.y7a{bottom:312.915000px;}
.y25{bottom:314.535000px;}
.yb7{bottom:317.775000px;}
.y95{bottom:319.215000px;}
.y86{bottom:324.615000px;}
.y110{bottom:324.795000px;}
.yf0{bottom:333.975000px;}
.yc8{bottom:334.515000px;}
.y48{bottom:336.675000px;}
.ye4{bottom:337.035000px;}
.yb6{bottom:341.715000px;}
.y85{bottom:348.555000px;}
.y64{bottom:348.735000px;}
.y24{bottom:350.355000px;}
.yc7{bottom:358.275000px;}
.y79{bottom:360.255000px;}
.y47{bottom:360.615000px;}
.y10a{bottom:360.795000px;}
.y91{bottom:361.335000px;}
.yb5{bottom:365.655000px;}
.yef{bottom:370.155000px;}
.y84{bottom:372.495000px;}
.y63{bottom:372.675000px;}
.ye3{bottom:373.395000px;}
.yc6{bottom:382.215000px;}
.y46{bottom:384.555000px;}
.y10d{bottom:384.735000px;}
.y23{bottom:386.715000px;}
.yb4{bottom:389.595000px;}
.y62{bottom:396.615000px;}
.y78{bottom:396.795000px;}
.ye2{bottom:397.155000px;}
.yee{bottom:401.835000px;}
.y8f{bottom:403.455000px;}
.yc5{bottom:406.335000px;}
.y83{bottom:408.315000px;}
.y45{bottom:408.675000px;}
.y100{bottom:408.855000px;}
.y22{bottom:410.475000px;}
.y61{bottom:420.555000px;}
.ye1{bottom:421.275000px;}
.yb3{bottom:425.775000px;}
.yc4{bottom:430.275000px;}
.yff{bottom:432.615000px;}
.y60{bottom:444.495000px;}
.y44{bottom:444.675000px;}
.ye0{bottom:445.215000px;}
.y21{bottom:446.655000px;}
.yb2{bottom:449.535000px;}
.yc3{bottom:454.215000px;}
.yfe{bottom:456.555000px;}
.y5f{bottom:468.435000px;}
.y43{bottom:468.615000px;}
.ydf{bottom:469.155000px;}
.y20{bottom:470.415000px;}
.yb1{bottom:473.655000px;}
.yfd{bottom:480.495000px;}
.yc2{bottom:490.395000px;}
.y8e{bottom:492.195000px;}
.y42{bottom:492.555000px;}
.yde{bottom:493.095000px;}
.y1f{bottom:494.535000px;}
.yb0{bottom:497.595000px;}
.yfc{bottom:504.435000px;}
.yc0{bottom:512.175000px;}
.y41{bottom:516.495000px;}
.y1e{bottom:518.475000px;}
.yaf{bottom:521.535000px;}
.yc1{bottom:521.895000px;}
.y5e{bottom:528.195000px;}
.y82{bottom:528.555000px;}
.y77{bottom:528.735000px;}
.ydd{bottom:529.275000px;}
.y40{bottom:540.435000px;}
.y10c{bottom:540.615000px;}
.y1d{bottom:542.415000px;}
.yae{bottom:545.475000px;}
.y76{bottom:552.495000px;}
.ydc{bottom:553.035000px;}
.y3f{bottom:564.405000px;}
.y5d{bottom:564.585000px;}
.y1c{bottom:566.385000px;}
.yad{bottom:569.445000px;}
.y75{bottom:576.465000px;}
.ydb{bottom:577.185000px;}
.y5c{bottom:588.345000px;}
.y3e{bottom:588.525000px;}
.y109{bottom:588.705000px;}
.y1b{bottom:590.325000px;}
.yac{bottom:593.565000px;}
.y74{bottom:600.405000px;}
.y10f{bottom:600.585000px;}
.yda{bottom:601.125000px;}
.y3d{bottom:612.465000px;}
.y1a{bottom:614.445000px;}
.yab{bottom:617.505000px;}
.y73{bottom:624.345000px;}
.y108{bottom:624.525000px;}
.yd9{bottom:625.065000px;}
.ybf{bottom:628.485000px;}
.y3c{bottom:636.405000px;}
.yfb{bottom:636.585000px;}
.y19{bottom:638.385000px;}
.y81{bottom:648.285000px;}
.y72{bottom:648.465000px;}
.yd8{bottom:649.005000px;}
.yaa{bottom:653.685000px;}
.ybe{bottom:660.165000px;}
.y5b{bottom:660.345000px;}
.y18{bottom:662.325000px;}
.y71{bottom:672.405000px;}
.y3b{bottom:672.585000px;}
.ya9{bottom:677.445000px;}
.y5a{bottom:684.285000px;}
.y80{bottom:684.465000px;}
.yd7{bottom:685.185000px;}
.y17{bottom:686.265000px;}
.y3a{bottom:696.345000px;}
.ya8{bottom:701.385000px;}
.y59{bottom:708.225000px;}
.yfa{bottom:708.405000px;}
.y16{bottom:710.205000px;}
.y39{bottom:720.285000px;}
.y7f{bottom:720.465000px;}
.yd6{bottom:721.185000px;}
.ya7{bottom:725.325000px;}
.yf9{bottom:732.345000px;}
.y70{bottom:732.525000px;}
.y15{bottom:734.325000px;}
.yd5{bottom:738.105000px;}
.y38{bottom:744.225000px;}
.y58{bottom:744.405000px;}
.ya6{bottom:749.265000px;}
.y6f{bottom:756.285000px;}
.y14{bottom:758.265000px;}
.y57{bottom:768.165000px;}
.y37{bottom:768.345000px;}
.y113{bottom:768.525000px;}
.ya5{bottom:773.385000px;}
.y6e{bottom:780.225000px;}
.yd4{bottom:780.240000px;}
.y36{bottom:792.285000px;}
.y10b{bottom:792.465000px;}
.y13{bottom:793.185000px;}
.ya4{bottom:797.325000px;}
.y6d{bottom:804.165000px;}
.y112{bottom:804.345000px;}
.y35{bottom:816.270000px;}
.ya3{bottom:821.310000px;}
.yd3{bottom:822.390000px;}
.y12{bottom:826.170000px;}
.y6c{bottom:828.330000px;}
.y56{bottom:828.510000px;}
.y34{bottom:840.210000px;}
.yd2{bottom:843.810000px;}
.ya2{bottom:845.250000px;}
.y55{bottom:852.270000px;}
.y7e{bottom:852.450000px;}
.y11{bottom:858.930000px;}
.y33{bottom:864.150000px;}
.y54{bottom:876.210000px;}
.yed{bottom:876.390000px;}
.ya1{bottom:881.430000px;}
.yd1{bottom:886.110000px;}
.y32{bottom:888.270000px;}
.yf8{bottom:888.450000px;}
.y8d{bottom:900.150000px;}
.y105{bottom:900.330000px;}
.y10{bottom:909.150000px;}
.y31{bottom:912.210000px;}
.y53{bottom:912.390000px;}
.ya0{bottom:917.430000px;}
.yec{bottom:923.730000px;}
.y8c{bottom:924.090000px;}
.yf7{bottom:924.270000px;}
.yd0{bottom:928.230000px;}
.y52{bottom:936.150000px;}
.y8b{bottom:948.210000px;}
.y30{bottom:948.390000px;}
.yf{bottom:951.450000px;}
.y9f{bottom:953.070000px;}
.yeb{bottom:959.910000px;}
.y6b{bottom:960.090000px;}
.y9e{bottom:970.350000px;}
.y2f{bottom:972.150000px;}
.y51{bottom:972.330000px;}
.ye{bottom:987.450000px;}
.ybd{bottom:995.730000px;}
.yea{bottom:995.910000px;}
.y2e{bottom:996.090000px;}
.y6a{bottom:996.270000px;}
.y2{bottom:1017.330000px;}
.y6{bottom:1035.855000px;}
.y1{bottom:1051.170000px;}
.h14{height:20.685000px;}
.h5{height:40.737305px;}
.h15{height:41.385000px;}
.h17{height:41.400000px;}
.h16{height:41.421000px;}
.h6{height:45.082617px;}
.he{height:50.273438px;}
.hd{height:50.800781px;}
.h4{height:54.316406px;}
.h13{height:54.878906px;}
.hb{height:62.184375px;}
.hc{height:63.855000px;}
.h10{height:70.664062px;}
.h1{height:71.613281px;}
.h12{height:71.824219px;}
.hf{height:72.562500px;}
.h2{height:73.722656px;}
.h18{height:74.004654px;}
.h11{height:74.953125px;}
.h9{height:76.201172px;}
.ha{height:82.676953px;}
.h7{height:108.843750px;}
.h3{height:142.245000px;}
.h8{height:217.687500px;}
.h0{height:1188.000000px;}
.wb{width:157.311000px;}
.w8{width:157.671000px;}
.w5{width:185.241000px;}
.w2{width:185.601000px;}
.w7{width:263.535000px;}
.w4{width:263.895000px;}
.w6{width:270.570000px;}
.w3{width:271.290000px;}
.wc{width:274.200000px;}
.w9{width:274.920000px;}
.wd{width:313.575000px;}
.wa{width:313.935000px;}
.w1{width:681.795000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:7.731000px;}
.x4{left:10.980000px;}
.x3{left:56.340000px;}
.x2{left:108.036000px;}
.x9{left:111.996000px;}
.xf{left:135.036000px;}
.x19{left:162.030000px;}
.x7{left:166.530000px;}
.xc{left:173.730000px;}
.x6{left:216.030000px;}
.x15{left:266.445000px;}
.x5{left:283.755000px;}
.xa{left:295.095000px;}
.x8{left:340.815000px;}
.xd{left:343.155000px;}
.xb{left:372.495000px;}
.x18{left:402.555000px;}
.xe{left:459.075000px;}
.x16{left:541.380000px;}
.x11{left:565.680000px;}
.x12{left:717.990000px;}
.x1{left:751.650000px;}
.x17{left:759.390000px;}
.x14{left:770.730000px;}
.x13{left:779.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls1{letter-spacing:3.792000pt;}
.ls2{letter-spacing:30.186667pt;}
.ls8{letter-spacing:127.978667pt;}
.ls9{letter-spacing:153.578667pt;}
.ws4{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws1{word-spacing:-21.312000pt;}
.ws2{word-spacing:-17.688960pt;}
.ws8{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:0.000000pt;}
._37{margin-left:-9.248853pt;}
._1d{margin-left:-7.753387pt;}
._a{margin-left:-6.467200pt;}
._c{margin-left:-5.550507pt;}
._1e{margin-left:-4.636160pt;}
._6{margin-left:-3.720107pt;}
._4{margin-left:-2.112000pt;}
._3{margin-left:-1.047893pt;}
._1{width:0.937387pt;}
._2{width:2.094507pt;}
._5{width:3.136000pt;}
._7{width:4.300800pt;}
._8{width:5.329280pt;}
._9{width:6.928427pt;}
._10{width:7.983573pt;}
._e{width:9.275733pt;}
._d{width:10.688000pt;}
._f{width:11.652267pt;}
._13{width:13.307733pt;}
._1c{width:14.891307pt;}
._0{width:15.936000pt;}
._b{width:17.153280pt;}
._11{width:18.125653pt;}
._17{width:19.200000pt;}
._16{width:20.311893pt;}
._18{width:21.568000pt;}
._19{width:23.168000pt;}
._14{width:24.712107pt;}
._15{width:25.783893pt;}
._20{width:28.305493pt;}
._2c{width:29.742507pt;}
._12{width:31.488000pt;}
._24{width:32.576000pt;}
._1f{width:33.902507pt;}
._33{width:35.072000pt;}
._26{width:37.568000pt;}
._35{width:39.872000pt;}
._36{width:41.185280pt;}
._3d{width:42.485333pt;}
._3b{width:47.360000pt;}
._3c{width:48.374613pt;}
._28{width:49.472000pt;}
._29{width:50.560000pt;}
._38{width:51.520000pt;}
._27{width:55.767893pt;}
._22{width:62.912000pt;}
._23{width:63.968000pt;}
._31{width:66.368000pt;}
._2d{width:68.288000pt;}
._21{width:70.400000pt;}
._32{width:72.214613pt;}
._2b{width:81.344000pt;}
._2a{width:85.760000pt;}
._34{width:94.528000pt;}
._2f{width:120.548267pt;}
._2e{width:122.222507pt;}
._30{width:148.800000pt;}
._39{width:153.792000pt;}
._3a{width:159.744000pt;}
._25{width:306.048000pt;}
._1a{width:887.104000pt;}
._1b{width:892.864000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs4{font-size:192.000000pt;}
.yd{bottom:-125.746667pt;}
.yc{bottom:-63.666667pt;}
.yb{bottom:-24.146667pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:3.666667pt;}
.y90{bottom:3.680000pt;}
.y9a{bottom:3.986667pt;}
.y94{bottom:4.000000pt;}
.y97{bottom:22.066667pt;}
.y92{bottom:22.080000pt;}
.y99{bottom:22.386667pt;}
.y93{bottom:22.400000pt;}
.ya{bottom:24.200000pt;}
.y5{bottom:52.192000pt;}
.y9{bottom:55.720000pt;}
.y4{bottom:70.592000pt;}
.y8{bottom:82.760000pt;}
.y3{bottom:87.072000pt;}
.y7{bottom:108.840000pt;}
.y2d{bottom:109.152000pt;}
.y8a{bottom:117.952000pt;}
.y69{bottom:118.112000pt;}
.y50{bottom:118.272000pt;}
.yf6{bottom:126.432000pt;}
.ycf{bottom:126.752000pt;}
.y107{bottom:128.832000pt;}
.y2c{bottom:130.432000pt;}
.y9d{bottom:133.800000pt;}
.y89{bottom:139.226667pt;}
.y4f{bottom:139.386667pt;}
.y10e{bottom:139.546667pt;}
.ye9{bottom:139.706667pt;}
.ybc{bottom:143.706667pt;}
.yf5{bottom:147.706667pt;}
.yce{bottom:147.866667pt;}
.y2b{bottom:151.706667pt;}
.y4e{bottom:160.666667pt;}
.y106{bottom:160.826667pt;}
.ycd{bottom:168.986667pt;}
.y7d{bottom:171.386667pt;}
.y9c{bottom:171.400000pt;}
.y104{bottom:171.546667pt;}
.ye8{bottom:171.706667pt;}
.y2a{bottom:172.986667pt;}
.ybb{bottom:175.706667pt;}
.y68{bottom:181.946667pt;}
.y111{bottom:182.106667pt;}
.y7c{bottom:192.666667pt;}
.y4d{bottom:192.826667pt;}
.y29{bottom:194.426667pt;}
.yf4{bottom:200.826667pt;}
.ycc{bottom:201.306667pt;}
.y67{bottom:203.226667pt;}
.y103{bottom:203.386667pt;}
.ye7{bottom:203.706667pt;}
.yba{bottom:207.546667pt;}
.y9b{bottom:208.840000pt;}
.y4c{bottom:213.946667pt;}
.y28{bottom:215.706667pt;}
.ycb{bottom:222.586667pt;}
.y66{bottom:224.506667pt;}
.y102{bottom:224.666667pt;}
.y7b{bottom:224.826667pt;}
.yf3{bottom:233.146667pt;}
.y4b{bottom:235.226667pt;}
.y88{bottom:235.386667pt;}
.ye6{bottom:235.706667pt;}
.y27{bottom:236.986667pt;}
.yb9{bottom:239.866667pt;}
.yca{bottom:243.866667pt;}
.y65{bottom:245.946667pt;}
.y96{bottom:246.280000pt;}
.yf2{bottom:254.266667pt;}
.y4a{bottom:256.666667pt;}
.y26{bottom:258.266667pt;}
.yb8{bottom:260.986667pt;}
.yc9{bottom:265.146667pt;}
.y101{bottom:267.226667pt;}
.y87{bottom:267.386667pt;}
.ye5{bottom:267.706667pt;}
.yf1{bottom:275.586667pt;}
.y49{bottom:277.986667pt;}
.y7a{bottom:278.146667pt;}
.y25{bottom:279.586667pt;}
.yb7{bottom:282.466667pt;}
.y95{bottom:283.746667pt;}
.y86{bottom:288.546667pt;}
.y110{bottom:288.706667pt;}
.yf0{bottom:296.866667pt;}
.yc8{bottom:297.346667pt;}
.y48{bottom:299.266667pt;}
.ye4{bottom:299.586667pt;}
.yb6{bottom:303.746667pt;}
.y85{bottom:309.826667pt;}
.y64{bottom:309.986667pt;}
.y24{bottom:311.426667pt;}
.yc7{bottom:318.466667pt;}
.y79{bottom:320.226667pt;}
.y47{bottom:320.546667pt;}
.y10a{bottom:320.706667pt;}
.y91{bottom:321.186667pt;}
.yb5{bottom:325.026667pt;}
.yef{bottom:329.026667pt;}
.y84{bottom:331.106667pt;}
.y63{bottom:331.266667pt;}
.ye3{bottom:331.906667pt;}
.yc6{bottom:339.746667pt;}
.y46{bottom:341.826667pt;}
.y10d{bottom:341.986667pt;}
.y23{bottom:343.746667pt;}
.yb4{bottom:346.306667pt;}
.y62{bottom:352.546667pt;}
.y78{bottom:352.706667pt;}
.ye2{bottom:353.026667pt;}
.yee{bottom:357.186667pt;}
.y8f{bottom:358.626667pt;}
.yc5{bottom:361.186667pt;}
.y83{bottom:362.946667pt;}
.y45{bottom:363.266667pt;}
.y100{bottom:363.426667pt;}
.y22{bottom:364.866667pt;}
.y61{bottom:373.826667pt;}
.ye1{bottom:374.466667pt;}
.yb3{bottom:378.466667pt;}
.yc4{bottom:382.466667pt;}
.yff{bottom:384.546667pt;}
.y60{bottom:395.106667pt;}
.y44{bottom:395.266667pt;}
.ye0{bottom:395.746667pt;}
.y21{bottom:397.026667pt;}
.yb2{bottom:399.586667pt;}
.yc3{bottom:403.746667pt;}
.yfe{bottom:405.826667pt;}
.y5f{bottom:416.386667pt;}
.y43{bottom:416.546667pt;}
.ydf{bottom:417.026667pt;}
.y20{bottom:418.146667pt;}
.yb1{bottom:421.026667pt;}
.yfd{bottom:427.106667pt;}
.yc2{bottom:435.906667pt;}
.y8e{bottom:437.506667pt;}
.y42{bottom:437.826667pt;}
.yde{bottom:438.306667pt;}
.y1f{bottom:439.586667pt;}
.yb0{bottom:442.306667pt;}
.yfc{bottom:448.386667pt;}
.yc0{bottom:455.266667pt;}
.y41{bottom:459.106667pt;}
.y1e{bottom:460.866667pt;}
.yaf{bottom:463.586667pt;}
.yc1{bottom:463.906667pt;}
.y5e{bottom:469.506667pt;}
.y82{bottom:469.826667pt;}
.y77{bottom:469.986667pt;}
.ydd{bottom:470.466667pt;}
.y40{bottom:480.386667pt;}
.y10c{bottom:480.546667pt;}
.y1d{bottom:482.146667pt;}
.yae{bottom:484.866667pt;}
.y76{bottom:491.106667pt;}
.ydc{bottom:491.586667pt;}
.y3f{bottom:501.693333pt;}
.y5d{bottom:501.853333pt;}
.y1c{bottom:503.453333pt;}
.yad{bottom:506.173333pt;}
.y75{bottom:512.413333pt;}
.ydb{bottom:513.053333pt;}
.y5c{bottom:522.973333pt;}
.y3e{bottom:523.133333pt;}
.y109{bottom:523.293333pt;}
.y1b{bottom:524.733333pt;}
.yac{bottom:527.613333pt;}
.y74{bottom:533.693333pt;}
.y10f{bottom:533.853333pt;}
.yda{bottom:534.333333pt;}
.y3d{bottom:544.413333pt;}
.y1a{bottom:546.173333pt;}
.yab{bottom:548.893333pt;}
.y73{bottom:554.973333pt;}
.y108{bottom:555.133333pt;}
.yd9{bottom:555.613333pt;}
.ybf{bottom:558.653333pt;}
.y3c{bottom:565.693333pt;}
.yfb{bottom:565.853333pt;}
.y19{bottom:567.453333pt;}
.y81{bottom:576.253333pt;}
.y72{bottom:576.413333pt;}
.yd8{bottom:576.893333pt;}
.yaa{bottom:581.053333pt;}
.ybe{bottom:586.813333pt;}
.y5b{bottom:586.973333pt;}
.y18{bottom:588.733333pt;}
.y71{bottom:597.693333pt;}
.y3b{bottom:597.853333pt;}
.ya9{bottom:602.173333pt;}
.y5a{bottom:608.253333pt;}
.y80{bottom:608.413333pt;}
.yd7{bottom:609.053333pt;}
.y17{bottom:610.013333pt;}
.y3a{bottom:618.973333pt;}
.ya8{bottom:623.453333pt;}
.y59{bottom:629.533333pt;}
.yfa{bottom:629.693333pt;}
.y16{bottom:631.293333pt;}
.y39{bottom:640.253333pt;}
.y7f{bottom:640.413333pt;}
.yd6{bottom:641.053333pt;}
.ya7{bottom:644.733333pt;}
.yf9{bottom:650.973333pt;}
.y70{bottom:651.133333pt;}
.y15{bottom:652.733333pt;}
.yd5{bottom:656.093333pt;}
.y38{bottom:661.533333pt;}
.y58{bottom:661.693333pt;}
.ya6{bottom:666.013333pt;}
.y6f{bottom:672.253333pt;}
.y14{bottom:674.013333pt;}
.y57{bottom:682.813333pt;}
.y37{bottom:682.973333pt;}
.y113{bottom:683.133333pt;}
.ya5{bottom:687.453333pt;}
.y6e{bottom:693.533333pt;}
.yd4{bottom:693.546667pt;}
.y36{bottom:704.253333pt;}
.y10b{bottom:704.413333pt;}
.y13{bottom:705.053333pt;}
.ya4{bottom:708.733333pt;}
.y6d{bottom:714.813333pt;}
.y112{bottom:714.973333pt;}
.y35{bottom:725.573333pt;}
.ya3{bottom:730.053333pt;}
.yd3{bottom:731.013333pt;}
.y12{bottom:734.373333pt;}
.y6c{bottom:736.293333pt;}
.y56{bottom:736.453333pt;}
.y34{bottom:746.853333pt;}
.yd2{bottom:750.053333pt;}
.ya2{bottom:751.333333pt;}
.y55{bottom:757.573333pt;}
.y7e{bottom:757.733333pt;}
.y11{bottom:763.493333pt;}
.y33{bottom:768.133333pt;}
.y54{bottom:778.853333pt;}
.yed{bottom:779.013333pt;}
.ya1{bottom:783.493333pt;}
.yd1{bottom:787.653333pt;}
.y32{bottom:789.573333pt;}
.yf8{bottom:789.733333pt;}
.y8d{bottom:800.133333pt;}
.y105{bottom:800.293333pt;}
.y10{bottom:808.133333pt;}
.y31{bottom:810.853333pt;}
.y53{bottom:811.013333pt;}
.ya0{bottom:815.493333pt;}
.yec{bottom:821.093333pt;}
.y8c{bottom:821.413333pt;}
.yf7{bottom:821.573333pt;}
.yd0{bottom:825.093333pt;}
.y52{bottom:832.133333pt;}
.y8b{bottom:842.853333pt;}
.y30{bottom:843.013333pt;}
.yf{bottom:845.733333pt;}
.y9f{bottom:847.173333pt;}
.yeb{bottom:853.253333pt;}
.y6b{bottom:853.413333pt;}
.y9e{bottom:862.533333pt;}
.y2f{bottom:864.133333pt;}
.y51{bottom:864.293333pt;}
.ye{bottom:877.733333pt;}
.ybd{bottom:885.093333pt;}
.yea{bottom:885.253333pt;}
.y2e{bottom:885.413333pt;}
.y6a{bottom:885.573333pt;}
.y2{bottom:904.293333pt;}
.y6{bottom:920.760000pt;}
.y1{bottom:934.373333pt;}
.h14{height:18.386667pt;}
.h5{height:36.210938pt;}
.h15{height:36.786667pt;}
.h17{height:36.800000pt;}
.h16{height:36.818667pt;}
.h6{height:40.073438pt;}
.he{height:44.687500pt;}
.hd{height:45.156250pt;}
.h4{height:48.281250pt;}
.h13{height:48.781250pt;}
.hb{height:55.275000pt;}
.hc{height:56.760000pt;}
.h10{height:62.812500pt;}
.h1{height:63.656250pt;}
.h12{height:63.843750pt;}
.hf{height:64.500000pt;}
.h2{height:65.531250pt;}
.h18{height:65.781915pt;}
.h11{height:66.625000pt;}
.h9{height:67.734375pt;}
.ha{height:73.490625pt;}
.h7{height:96.750000pt;}
.h3{height:126.440000pt;}
.h8{height:193.500000pt;}
.h0{height:1056.000000pt;}
.wb{width:139.832000pt;}
.w8{width:140.152000pt;}
.w5{width:164.658667pt;}
.w2{width:164.978667pt;}
.w7{width:234.253333pt;}
.w4{width:234.573333pt;}
.w6{width:240.506667pt;}
.w3{width:241.146667pt;}
.wc{width:243.733333pt;}
.w9{width:244.373333pt;}
.wd{width:278.733333pt;}
.wa{width:279.053333pt;}
.w1{width:606.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.872000pt;}
.x4{left:9.760000pt;}
.x3{left:50.080000pt;}
.x2{left:96.032000pt;}
.x9{left:99.552000pt;}
.xf{left:120.032000pt;}
.x19{left:144.026667pt;}
.x7{left:148.026667pt;}
.xc{left:154.426667pt;}
.x6{left:192.026667pt;}
.x15{left:236.840000pt;}
.x5{left:252.226667pt;}
.xa{left:262.306667pt;}
.x8{left:302.946667pt;}
.xd{left:305.026667pt;}
.xb{left:331.106667pt;}
.x18{left:357.826667pt;}
.xe{left:408.066667pt;}
.x16{left:481.226667pt;}
.x11{left:502.826667pt;}
.x12{left:638.213333pt;}
.x1{left:668.133333pt;}
.x17{left:675.013333pt;}
.x14{left:685.093333pt;}
.x13{left:693.093333pt;}
}




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