
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_c7503b34ec06f55ba9742cd1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_841526b90d6326d545a1a256.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_47e37179aeb596ef025b1ad7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_5a199a18cfa794f9c4c50d19.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a81ca82af564d4fd1dcf9c0e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_56887e88262d8a152a806fb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_5c3db14177ae2e7f9cba781b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_ae1bfdffed0b03d7ff5807b8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3963294be8cd8dbaae7fce9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.080566;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_59c0ebac5961ed4453f856d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c8fe54d4ad1baaa2b75bf23.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_1b5796374f04c926faf2d597.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b700a748babaaa7df171dc4c.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v2{vertical-align:24.480000px;}
.ls10{letter-spacing:-0.942000px;}
.ls21{letter-spacing:-0.876000px;}
.lsf{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.596400px;}
.lsc{letter-spacing:-0.472200px;}
.ls9{letter-spacing:-0.184200px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.015840px;}
.lsd{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.483840px;}
.ls5{letter-spacing:0.498240px;}
.ls1{letter-spacing:0.627840px;}
.lsb{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.726000px;}
.ls1e{letter-spacing:0.732000px;}
.ls25{letter-spacing:0.840000px;}
.ls1d{letter-spacing:2.160000px;}
.ls20{letter-spacing:7.505280px;}
.ls14{letter-spacing:7.920000px;}
.ls1a{letter-spacing:13.680000px;}
.ls1b{letter-spacing:15.120000px;}
.ls18{letter-spacing:16.572000px;}
.ls1c{letter-spacing:16.680000px;}
.ls24{letter-spacing:18.000000px;}
.ls16{letter-spacing:19.440000px;}
.ls2{letter-spacing:19.800000px;}
.ls6{letter-spacing:23.760000px;}
.lse{letter-spacing:28.080000px;}
.ls26{letter-spacing:32.520000px;}
.ls15{letter-spacing:35.400000px;}
.ls7{letter-spacing:36.840000px;}
.ls1f{letter-spacing:40.625280px;}
.ls17{letter-spacing:48.240000px;}
.ls19{letter-spacing:49.680000px;}
.ls0{letter-spacing:196.829760px;}
.ls13{letter-spacing:199.800000px;}
.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;}
}
.ws1{word-spacing:-54.720000px;}
.wsd{word-spacing:-17.286000px;}
.wsf{word-spacing:-16.974600px;}
.wsc{word-spacing:-16.560000px;}
.wse{word-spacing:-15.963600px;}
.ws3{word-spacing:-15.212160px;}
.ws7{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.027960px;}
.ws2{word-spacing:-14.402160px;}
.ws9{word-spacing:-13.680000px;}
.wsb{word-spacing:-12.738000px;}
.ws6{word-spacing:-12.003960px;}
.ws8{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._2d{margin-left:-4.887360px;}
._7{margin-left:-3.761280px;}
._2{margin-left:-2.185440px;}
._0{margin-left:-1.152000px;}
._1{width:1.212000px;}
._4{width:2.246400px;}
._8{width:3.603360px;}
._16{width:5.615520px;}
._15{width:7.000800px;}
._1a{width:8.209920px;}
._10{width:9.485760px;}
._11{width:10.882560px;}
._17{width:12.326880px;}
._22{width:13.969920px;}
._19{width:15.098400px;}
._1e{width:17.708160px;}
._1c{width:19.402080px;}
._2b{width:20.424960px;}
._1b{width:21.522240px;}
._b{width:23.376480px;}
._a{width:24.510720px;}
._9{width:26.155680px;}
._f{width:27.301440px;}
._e{width:28.986240px;}
._1d{width:30.225600px;}
._c{width:32.105280px;}
._d{width:33.275040px;}
._13{width:34.858080px;}
._12{width:36.048000px;}
._14{width:37.579680px;}
._1f{width:38.820960px;}
._27{width:40.452480px;}
._26{width:41.466240px;}
._28{width:42.765120px;}
._3c{width:44.392800px;}
._25{width:46.347840px;}
._2c{width:47.432640px;}
._2a{width:48.660000px;}
._29{width:49.685760px;}
._24{width:50.981280px;}
._23{width:52.329600px;}
._34{width:55.900800px;}
._2e{width:56.926080px;}
._2f{width:58.688160px;}
._38{width:59.794560px;}
._33{width:63.046080px;}
._31{width:64.808640px;}
._32{width:65.952960px;}
._30{width:67.011360px;}
._20{width:68.253120px;}
._21{width:70.074720px;}
._3b{width:74.288640px;}
._35{width:75.579360px;}
._36{width:78.891840px;}
._37{width:80.348160px;}
._39{width:83.773440px;}
._3{width:152.778240px;}
._6{width:197.865120px;}
._5{width:199.104960px;}
._3a{width:847.716000px;}
._18{width:948.665760px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:11.520000px;}
.fs3{font-size:18.720000px;}
.fs9{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:90.720000px;}
.fsb{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.080000px;}
.y1d{bottom:1.440000px;}
.y18{bottom:2.520000px;}
.y2c{bottom:2.880000px;}
.y4e{bottom:2.910000px;}
.y29{bottom:3.240000px;}
.y2e{bottom:4.680000px;}
.y3d{bottom:7.200000px;}
.y7{bottom:7.920000px;}
.y1b{bottom:9.360000px;}
.y14{bottom:10.080000px;}
.y41{bottom:16.200000px;}
.y17{bottom:16.560000px;}
.y12{bottom:16.920000px;}
.y3a{bottom:18.360000px;}
.y4a{bottom:18.363000px;}
.y28{bottom:18.720000px;}
.y31{bottom:21.960000px;}
.y6{bottom:23.760000px;}
.y39{bottom:33.840000px;}
.y27{bottom:34.200000px;}
.y49{bottom:34.203000px;}
.y5{bottom:37.080000px;}
.y40{bottom:42.120000px;}
.y11{bottom:42.840000px;}
.y4{bottom:45.000000px;}
.y30{bottom:47.880000px;}
.y38{bottom:49.320000px;}
.y26{bottom:49.680000px;}
.y48{bottom:49.683000px;}
.y8b{bottom:54.756000px;}
.yb{bottom:55.116000px;}
.y52{bottom:55.476000px;}
.y2{bottom:61.560000px;}
.y37{bottom:64.800000px;}
.y25{bottom:65.160000px;}
.y47{bottom:65.163000px;}
.y3{bottom:65.880000px;}
.y10{bottom:68.400000px;}
.ya{bottom:68.796000px;}
.y36{bottom:80.280000px;}
.y24{bottom:80.640000px;}
.y46{bottom:80.643000px;}
.yf{bottom:94.320000px;}
.y23{bottom:96.120000px;}
.y45{bottom:96.123000px;}
.yd9{bottom:96.876000px;}
.y8a{bottom:105.156000px;}
.y35{bottom:111.600000px;}
.y44{bottom:111.603000px;}
.y22{bottom:111.645000px;}
.yd8{bottom:114.156000px;}
.y4c{bottom:118.116000px;}
.y89{bottom:124.236000px;}
.y34{bottom:127.110000px;}
.y43{bottom:127.113000px;}
.y21{bottom:127.125000px;}
.yd7{bottom:131.472000px;}
.y4b{bottom:137.232000px;}
.y42{bottom:141.192000px;}
.y33{bottom:142.590000px;}
.y20{bottom:142.965000px;}
.y88{bottom:142.992000px;}
.yd6{bottom:148.752000px;}
.y1f{bottom:158.445000px;}
.y87{bottom:162.075000px;}
.yd5{bottom:166.035000px;}
.y86{bottom:181.155000px;}
.yd4{bottom:183.315000px;}
.y85{bottom:200.235000px;}
.yd3{bottom:200.595000px;}
.yd2{bottom:217.875000px;}
.y84{bottom:218.955000px;}
.yd1{bottom:235.155000px;}
.y83{bottom:238.035000px;}
.yd0{bottom:252.435000px;}
.y82{bottom:257.115000px;}
.ycf{bottom:269.745000px;}
.y81{bottom:275.865000px;}
.y3f{bottom:280.905000px;}
.yce{bottom:286.665000px;}
.y80{bottom:294.945000px;}
.ycd{bottom:307.185000px;}
.y7f{bottom:314.025000px;}
.ycc{bottom:326.265000px;}
.y7e{bottom:333.105000px;}
.ycb{bottom:345.345000px;}
.y7d{bottom:351.825000px;}
.y3e{bottom:354.705000px;}
.yca{bottom:364.065000px;}
.y7c{bottom:370.905000px;}
.y3c{bottom:374.145000px;}
.yc9{bottom:383.145000px;}
.y7b{bottom:389.985000px;}
.y3b{bottom:398.310000px;}
.y32{bottom:401.910000px;}
.yc8{bottom:402.270000px;}
.y7a{bottom:408.750000px;}
.yc7{bottom:421.350000px;}
.y79{bottom:427.830000px;}
.yc6{bottom:440.070000px;}
.y8c{bottom:446.550000px;}
.y78{bottom:446.910000px;}
.yc5{bottom:459.150000px;}
.y77{bottom:465.630000px;}
.yc4{bottom:478.230000px;}
.y76{bottom:484.710000px;}
.yc3{bottom:496.950000px;}
.y75{bottom:503.790000px;}
.yc2{bottom:516.030000px;}
.y74{bottom:522.870000px;}
.yc1{bottom:535.140000px;}
.y73{bottom:541.620000px;}
.yc0{bottom:553.860000px;}
.y2f{bottom:557.100000px;}
.y72{bottom:560.700000px;}
.ybf{bottom:572.940000px;}
.y71{bottom:579.780000px;}
.ybe{bottom:592.020000px;}
.y70{bottom:598.500000px;}
.ybd{bottom:611.100000px;}
.y6f{bottom:617.580000px;}
.ybc{bottom:629.820000px;}
.y6e{bottom:636.660000px;}
.y2d{bottom:642.780000px;}
.ybb{bottom:648.900000px;}
.y6d{bottom:655.380000px;}
.y2b{bottom:661.890000px;}
.yba{bottom:668.010000px;}
.y6c{bottom:674.490000px;}
.ya1{bottom:681.330000px;}
.yb9{bottom:686.730000px;}
.y2a{bottom:693.210000px;}
.y6b{bottom:693.570000px;}
.y1e{bottom:696.810000px;}
.ya0{bottom:700.410000px;}
.yb8{bottom:705.810000px;}
.y6a{bottom:712.650000px;}
.yb7{bottom:724.890000px;}
.y69{bottom:731.370000px;}
.y9f{bottom:732.810000px;}
.yb6{bottom:743.610000px;}
.y68{bottom:750.450000px;}
.yb5{bottom:762.690000px;}
.y9e{bottom:765.210000px;}
.y67{bottom:769.530000px;}
.yb4{bottom:781.770000px;}
.y66{bottom:788.250000px;}
.yb3{bottom:800.895000px;}
.y9d{bottom:805.215000px;}
.y65{bottom:807.375000px;}
.yb2{bottom:819.615000px;}
.y9c{bottom:824.295000px;}
.y64{bottom:826.455000px;}
.yb1{bottom:838.695000px;}
.y9b{bottom:843.375000px;}
.y63{bottom:845.535000px;}
.yb0{bottom:857.775000px;}
.y9a{bottom:862.455000px;}
.y62{bottom:864.255000px;}
.y1c{bottom:867.855000px;}
.y1a{bottom:871.455000px;}
.yaf{bottom:876.495000px;}
.y99{bottom:881.175000px;}
.y61{bottom:883.335000px;}
.y19{bottom:894.855000px;}
.yae{bottom:895.575000px;}
.y16{bottom:898.455000px;}
.y98{bottom:900.255000px;}
.y60{bottom:902.415000px;}
.yad{bottom:914.655000px;}
.y97{bottom:919.335000px;}
.y5f{bottom:921.135000px;}
.y15{bottom:926.175000px;}
.y13{bottom:929.445000px;}
.yac{bottom:933.765000px;}
.y96{bottom:938.085000px;}
.y5e{bottom:940.245000px;}
.yab{bottom:952.485000px;}
.y95{bottom:957.165000px;}
.y5d{bottom:959.325000px;}
.ye{bottom:960.045000px;}
.yaa{bottom:971.565000px;}
.y94{bottom:976.245000px;}
.y5c{bottom:978.045000px;}
.ya9{bottom:990.645000px;}
.y93{bottom:995.325000px;}
.y5b{bottom:997.125000px;}
.ya8{bottom:1009.365000px;}
.y92{bottom:1014.045000px;}
.y5a{bottom:1016.205000px;}
.ya7{bottom:1028.445000px;}
.y91{bottom:1033.125000px;}
.y59{bottom:1035.285000px;}
.ya6{bottom:1047.525000px;}
.y90{bottom:1052.205000px;}
.y58{bottom:1054.005000px;}
.ya5{bottom:1066.290000px;}
.y8f{bottom:1070.970000px;}
.y57{bottom:1073.130000px;}
.ya4{bottom:1086.090000px;}
.y8e{bottom:1090.050000px;}
.y56{bottom:1092.210000px;}
.yd{bottom:1094.370000px;}
.ya3{bottom:1106.610000px;}
.y8d{bottom:1109.130000px;}
.y55{bottom:1110.930000px;}
.yc{bottom:1112.730000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.ya2{bottom:1127.490000px;}
.y54{bottom:1130.010000px;}
.y53{bottom:1149.090000px;}
.y51{bottom:1168.890000px;}
.y50{bottom:1189.770000px;}
.y4f{bottom:1191.930000px;}
.y4d{bottom:1194.810000px;}
.h12{height:3.276000px;}
.h17{height:3.600000px;}
.h27{height:3.960000px;}
.h18{height:5.650313px;}
.h8{height:5.729063px;}
.h13{height:5.805000px;}
.h29{height:11.458125px;}
.h28{height:15.156000px;}
.h7{height:18.372656px;}
.h5{height:18.674297px;}
.h20{height:19.116000px;}
.h24{height:19.440000px;}
.h19{height:23.400000px;}
.h23{height:24.156000px;}
.h14{height:27.720000px;}
.h10{height:30.600000px;}
.h1e{height:31.320000px;}
.h1c{height:38.368125px;}
.hb{height:39.330000px;}
.h9{height:40.985156px;}
.h2a{height:46.445625px;}
.h15{height:46.615078px;}
.h16{height:46.638281px;}
.h32{height:49.848750px;}
.h1f{height:53.677969px;}
.h1d{height:53.704687px;}
.h2d{height:54.596250px;}
.h1b{height:55.147500px;}
.h6{height:57.071250px;}
.h2b{height:57.280781px;}
.h31{height:59.328281px;}
.h11{height:60.952500px;}
.h30{height:63.663750px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h2c{height:69.086250px;}
.h2e{height:70.628906px;}
.h25{height:73.800000px;}
.h4{height:75.093750px;}
.hf{height:78.449766px;}
.h2{height:82.836000px;}
.h21{height:85.680000px;}
.he{height:91.428750px;}
.h2f{height:97.233750px;}
.hd{height:127.116000px;}
.h26{height:139.716000px;}
.h22{height:155.190000px;}
.h1a{height:171.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:212.145000px;}
.w9{width:222.945000px;}
.w2{width:287.385000px;}
.w3{width:435.060000px;}
.w8{width:499.500000px;}
.w6{width:510.300000px;}
.w5{width:722.445000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x8{left:31.680000px;}
.xb{left:47.520000px;}
.x6{left:68.079000px;}
.x1{left:84.636000px;}
.x13{left:111.995987px;}
.x2{left:117.399000px;}
.x9{left:137.559000px;}
.x14{left:138.995987px;}
.x17{left:166.754987px;}
.x7{left:190.869000px;}
.xc{left:197.349000px;}
.xe{left:203.835000px;}
.xa{left:207.789000px;}
.x11{left:214.995000px;}
.x16{left:357.269987px;}
.x18{left:359.429987px;}
.x5{left:361.224000px;}
.x15{left:369.149987px;}
.x3{left:372.030000px;}
.x10{left:584.490000px;}
.xd{left:595.290000px;}
.x12{left:636.734987px;}
.xf{left:795.884987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v2{vertical-align:21.760000pt;}
.ls10{letter-spacing:-0.837333pt;}
.ls21{letter-spacing:-0.778667pt;}
.lsf{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.530133pt;}
.lsc{letter-spacing:-0.419733pt;}
.ls9{letter-spacing:-0.163733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.014080pt;}
.lsd{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.430080pt;}
.ls5{letter-spacing:0.442880pt;}
.ls1{letter-spacing:0.558080pt;}
.lsb{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.645333pt;}
.ls1e{letter-spacing:0.650667pt;}
.ls25{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls20{letter-spacing:6.671360pt;}
.ls14{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:12.160000pt;}
.ls1b{letter-spacing:13.440000pt;}
.ls18{letter-spacing:14.730667pt;}
.ls1c{letter-spacing:14.826667pt;}
.ls24{letter-spacing:16.000000pt;}
.ls16{letter-spacing:17.280000pt;}
.ls2{letter-spacing:17.600000pt;}
.ls6{letter-spacing:21.120000pt;}
.lse{letter-spacing:24.960000pt;}
.ls26{letter-spacing:28.906667pt;}
.ls15{letter-spacing:31.466667pt;}
.ls7{letter-spacing:32.746667pt;}
.ls1f{letter-spacing:36.111360pt;}
.ls17{letter-spacing:42.880000pt;}
.ls19{letter-spacing:44.160000pt;}
.ls0{letter-spacing:174.959787pt;}
.ls13{letter-spacing:177.600000pt;}
.ws1{word-spacing:-48.640000pt;}
.wsd{word-spacing:-15.365333pt;}
.wsf{word-spacing:-15.088533pt;}
.wsc{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.189867pt;}
.ws3{word-spacing:-13.521920pt;}
.ws7{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.358187pt;}
.ws2{word-spacing:-12.801920pt;}
.ws9{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.322667pt;}
.ws6{word-spacing:-10.670187pt;}
.ws8{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._2d{margin-left:-4.344320pt;}
._7{margin-left:-3.343360pt;}
._2{margin-left:-1.942613pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.077333pt;}
._4{width:1.996800pt;}
._8{width:3.202987pt;}
._16{width:4.991573pt;}
._15{width:6.222933pt;}
._1a{width:7.297707pt;}
._10{width:8.431787pt;}
._11{width:9.673387pt;}
._17{width:10.957227pt;}
._22{width:12.417707pt;}
._19{width:13.420800pt;}
._1e{width:15.740587pt;}
._1c{width:17.246293pt;}
._2b{width:18.155520pt;}
._1b{width:19.130880pt;}
._b{width:20.779093pt;}
._a{width:21.787307pt;}
._9{width:23.249493pt;}
._f{width:24.267947pt;}
._e{width:25.765547pt;}
._1d{width:26.867200pt;}
._c{width:28.538027pt;}
._d{width:29.577813pt;}
._13{width:30.984960pt;}
._12{width:32.042667pt;}
._14{width:33.404160pt;}
._1f{width:34.507520pt;}
._27{width:35.957760pt;}
._26{width:36.858880pt;}
._28{width:38.013440pt;}
._3c{width:39.460267pt;}
._25{width:41.198080pt;}
._2c{width:42.162347pt;}
._2a{width:43.253333pt;}
._29{width:44.165120pt;}
._24{width:45.316693pt;}
._23{width:46.515200pt;}
._34{width:49.689600pt;}
._2e{width:50.600960pt;}
._2f{width:52.167253pt;}
._38{width:53.150720pt;}
._33{width:56.040960pt;}
._31{width:57.607680pt;}
._32{width:58.624853pt;}
._30{width:59.565653pt;}
._20{width:60.669440pt;}
._21{width:62.288640pt;}
._3b{width:66.034347pt;}
._35{width:67.181653pt;}
._36{width:70.126080pt;}
._37{width:71.420587pt;}
._39{width:74.465280pt;}
._3{width:135.802880pt;}
._6{width:175.880107pt;}
._5{width:176.982187pt;}
._3a{width:753.525333pt;}
._18{width:843.258453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:10.240000pt;}
.fs3{font-size:16.640000pt;}
.fs9{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:80.640000pt;}
.fsb{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.960000pt;}
.y1d{bottom:1.280000pt;}
.y18{bottom:2.240000pt;}
.y2c{bottom:2.560000pt;}
.y4e{bottom:2.586667pt;}
.y29{bottom:2.880000pt;}
.y2e{bottom:4.160000pt;}
.y3d{bottom:6.400000pt;}
.y7{bottom:7.040000pt;}
.y1b{bottom:8.320000pt;}
.y14{bottom:8.960000pt;}
.y41{bottom:14.400000pt;}
.y17{bottom:14.720000pt;}
.y12{bottom:15.040000pt;}
.y3a{bottom:16.320000pt;}
.y4a{bottom:16.322667pt;}
.y28{bottom:16.640000pt;}
.y31{bottom:19.520000pt;}
.y6{bottom:21.120000pt;}
.y39{bottom:30.080000pt;}
.y27{bottom:30.400000pt;}
.y49{bottom:30.402667pt;}
.y5{bottom:32.960000pt;}
.y40{bottom:37.440000pt;}
.y11{bottom:38.080000pt;}
.y4{bottom:40.000000pt;}
.y30{bottom:42.560000pt;}
.y38{bottom:43.840000pt;}
.y26{bottom:44.160000pt;}
.y48{bottom:44.162667pt;}
.y8b{bottom:48.672000pt;}
.yb{bottom:48.992000pt;}
.y52{bottom:49.312000pt;}
.y2{bottom:54.720000pt;}
.y37{bottom:57.600000pt;}
.y25{bottom:57.920000pt;}
.y47{bottom:57.922667pt;}
.y3{bottom:58.560000pt;}
.y10{bottom:60.800000pt;}
.ya{bottom:61.152000pt;}
.y36{bottom:71.360000pt;}
.y24{bottom:71.680000pt;}
.y46{bottom:71.682667pt;}
.yf{bottom:83.840000pt;}
.y23{bottom:85.440000pt;}
.y45{bottom:85.442667pt;}
.yd9{bottom:86.112000pt;}
.y8a{bottom:93.472000pt;}
.y35{bottom:99.200000pt;}
.y44{bottom:99.202667pt;}
.y22{bottom:99.240000pt;}
.yd8{bottom:101.472000pt;}
.y4c{bottom:104.992000pt;}
.y89{bottom:110.432000pt;}
.y34{bottom:112.986667pt;}
.y43{bottom:112.989333pt;}
.y21{bottom:113.000000pt;}
.yd7{bottom:116.864000pt;}
.y4b{bottom:121.984000pt;}
.y42{bottom:125.504000pt;}
.y33{bottom:126.746667pt;}
.y20{bottom:127.080000pt;}
.y88{bottom:127.104000pt;}
.yd6{bottom:132.224000pt;}
.y1f{bottom:140.840000pt;}
.y87{bottom:144.066667pt;}
.yd5{bottom:147.586667pt;}
.y86{bottom:161.026667pt;}
.yd4{bottom:162.946667pt;}
.y85{bottom:177.986667pt;}
.yd3{bottom:178.306667pt;}
.yd2{bottom:193.666667pt;}
.y84{bottom:194.626667pt;}
.yd1{bottom:209.026667pt;}
.y83{bottom:211.586667pt;}
.yd0{bottom:224.386667pt;}
.y82{bottom:228.546667pt;}
.ycf{bottom:239.773333pt;}
.y81{bottom:245.213333pt;}
.y3f{bottom:249.693333pt;}
.yce{bottom:254.813333pt;}
.y80{bottom:262.173333pt;}
.ycd{bottom:273.053333pt;}
.y7f{bottom:279.133333pt;}
.ycc{bottom:290.013333pt;}
.y7e{bottom:296.093333pt;}
.ycb{bottom:306.973333pt;}
.y7d{bottom:312.733333pt;}
.y3e{bottom:315.293333pt;}
.yca{bottom:323.613333pt;}
.y7c{bottom:329.693333pt;}
.y3c{bottom:332.573333pt;}
.yc9{bottom:340.573333pt;}
.y7b{bottom:346.653333pt;}
.y3b{bottom:354.053333pt;}
.y32{bottom:357.253333pt;}
.yc8{bottom:357.573333pt;}
.y7a{bottom:363.333333pt;}
.yc7{bottom:374.533333pt;}
.y79{bottom:380.293333pt;}
.yc6{bottom:391.173333pt;}
.y8c{bottom:396.933333pt;}
.y78{bottom:397.253333pt;}
.yc5{bottom:408.133333pt;}
.y77{bottom:413.893333pt;}
.yc4{bottom:425.093333pt;}
.y76{bottom:430.853333pt;}
.yc3{bottom:441.733333pt;}
.y75{bottom:447.813333pt;}
.yc2{bottom:458.693333pt;}
.y74{bottom:464.773333pt;}
.yc1{bottom:475.680000pt;}
.y73{bottom:481.440000pt;}
.yc0{bottom:492.320000pt;}
.y2f{bottom:495.200000pt;}
.y72{bottom:498.400000pt;}
.ybf{bottom:509.280000pt;}
.y71{bottom:515.360000pt;}
.ybe{bottom:526.240000pt;}
.y70{bottom:532.000000pt;}
.ybd{bottom:543.200000pt;}
.y6f{bottom:548.960000pt;}
.ybc{bottom:559.840000pt;}
.y6e{bottom:565.920000pt;}
.y2d{bottom:571.360000pt;}
.ybb{bottom:576.800000pt;}
.y6d{bottom:582.560000pt;}
.y2b{bottom:588.346667pt;}
.yba{bottom:593.786667pt;}
.y6c{bottom:599.546667pt;}
.ya1{bottom:605.626667pt;}
.yb9{bottom:610.426667pt;}
.y2a{bottom:616.186667pt;}
.y6b{bottom:616.506667pt;}
.y1e{bottom:619.386667pt;}
.ya0{bottom:622.586667pt;}
.yb8{bottom:627.386667pt;}
.y6a{bottom:633.466667pt;}
.yb7{bottom:644.346667pt;}
.y69{bottom:650.106667pt;}
.y9f{bottom:651.386667pt;}
.yb6{bottom:660.986667pt;}
.y68{bottom:667.066667pt;}
.yb5{bottom:677.946667pt;}
.y9e{bottom:680.186667pt;}
.y67{bottom:684.026667pt;}
.yb4{bottom:694.906667pt;}
.y66{bottom:700.666667pt;}
.yb3{bottom:711.906667pt;}
.y9d{bottom:715.746667pt;}
.y65{bottom:717.666667pt;}
.yb2{bottom:728.546667pt;}
.y9c{bottom:732.706667pt;}
.y64{bottom:734.626667pt;}
.yb1{bottom:745.506667pt;}
.y9b{bottom:749.666667pt;}
.y63{bottom:751.586667pt;}
.yb0{bottom:762.466667pt;}
.y9a{bottom:766.626667pt;}
.y62{bottom:768.226667pt;}
.y1c{bottom:771.426667pt;}
.y1a{bottom:774.626667pt;}
.yaf{bottom:779.106667pt;}
.y99{bottom:783.266667pt;}
.y61{bottom:785.186667pt;}
.y19{bottom:795.426667pt;}
.yae{bottom:796.066667pt;}
.y16{bottom:798.626667pt;}
.y98{bottom:800.226667pt;}
.y60{bottom:802.146667pt;}
.yad{bottom:813.026667pt;}
.y97{bottom:817.186667pt;}
.y5f{bottom:818.786667pt;}
.y15{bottom:823.266667pt;}
.y13{bottom:826.173333pt;}
.yac{bottom:830.013333pt;}
.y96{bottom:833.853333pt;}
.y5e{bottom:835.773333pt;}
.yab{bottom:846.653333pt;}
.y95{bottom:850.813333pt;}
.y5d{bottom:852.733333pt;}
.ye{bottom:853.373333pt;}
.yaa{bottom:863.613333pt;}
.y94{bottom:867.773333pt;}
.y5c{bottom:869.373333pt;}
.ya9{bottom:880.573333pt;}
.y93{bottom:884.733333pt;}
.y5b{bottom:886.333333pt;}
.ya8{bottom:897.213333pt;}
.y92{bottom:901.373333pt;}
.y5a{bottom:903.293333pt;}
.ya7{bottom:914.173333pt;}
.y91{bottom:918.333333pt;}
.y59{bottom:920.253333pt;}
.ya6{bottom:931.133333pt;}
.y90{bottom:935.293333pt;}
.y58{bottom:936.893333pt;}
.ya5{bottom:947.813333pt;}
.y8f{bottom:951.973333pt;}
.y57{bottom:953.893333pt;}
.ya4{bottom:965.413333pt;}
.y8e{bottom:968.933333pt;}
.y56{bottom:970.853333pt;}
.yd{bottom:972.773333pt;}
.ya3{bottom:983.653333pt;}
.y8d{bottom:985.893333pt;}
.y55{bottom:987.493333pt;}
.yc{bottom:989.093333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.ya2{bottom:1002.213333pt;}
.y54{bottom:1004.453333pt;}
.y53{bottom:1021.413333pt;}
.y51{bottom:1039.013333pt;}
.y50{bottom:1057.573333pt;}
.y4f{bottom:1059.493333pt;}
.y4d{bottom:1062.053333pt;}
.h12{height:2.912000pt;}
.h17{height:3.200000pt;}
.h27{height:3.520000pt;}
.h18{height:5.022500pt;}
.h8{height:5.092500pt;}
.h13{height:5.160000pt;}
.h29{height:10.185000pt;}
.h28{height:13.472000pt;}
.h7{height:16.331250pt;}
.h5{height:16.599375pt;}
.h20{height:16.992000pt;}
.h24{height:17.280000pt;}
.h19{height:20.800000pt;}
.h23{height:21.472000pt;}
.h14{height:24.640000pt;}
.h10{height:27.200000pt;}
.h1e{height:27.840000pt;}
.h1c{height:34.105000pt;}
.hb{height:34.960000pt;}
.h9{height:36.431250pt;}
.h2a{height:41.285000pt;}
.h15{height:41.435625pt;}
.h16{height:41.456250pt;}
.h32{height:44.310000pt;}
.h1f{height:47.713750pt;}
.h1d{height:47.737500pt;}
.h2d{height:48.530000pt;}
.h1b{height:49.020000pt;}
.h6{height:50.730000pt;}
.h2b{height:50.916250pt;}
.h31{height:52.736250pt;}
.h11{height:54.180000pt;}
.h30{height:56.590000pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h2c{height:61.410000pt;}
.h2e{height:62.781250pt;}
.h25{height:65.600000pt;}
.h4{height:66.750000pt;}
.hf{height:69.733125pt;}
.h2{height:73.632000pt;}
.h21{height:76.160000pt;}
.he{height:81.270000pt;}
.h2f{height:86.430000pt;}
.hd{height:112.992000pt;}
.h26{height:124.192000pt;}
.h22{height:137.946667pt;}
.h1a{height:152.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:188.573333pt;}
.w9{width:198.173333pt;}
.w2{width:255.453333pt;}
.w3{width:386.720000pt;}
.w8{width:444.000000pt;}
.w6{width:453.600000pt;}
.w5{width:642.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x8{left:28.160000pt;}
.xb{left:42.240000pt;}
.x6{left:60.514667pt;}
.x1{left:75.232000pt;}
.x13{left:99.551988pt;}
.x2{left:104.354667pt;}
.x9{left:122.274667pt;}
.x14{left:123.551988pt;}
.x17{left:148.226655pt;}
.x7{left:169.661333pt;}
.xc{left:175.421333pt;}
.xe{left:181.186667pt;}
.xa{left:184.701333pt;}
.x11{left:191.106667pt;}
.x16{left:317.573322pt;}
.x18{left:319.493322pt;}
.x5{left:321.088000pt;}
.x15{left:328.133322pt;}
.x3{left:330.693333pt;}
.x10{left:519.546667pt;}
.xd{left:529.146667pt;}
.x12{left:565.986655pt;}
.xf{left:707.453322pt;}
}




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