
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_08a2711dab0ddec299e6ffb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f657e5f57bc94587b5940972.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8629cd92f6b1f82256cae399.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_b3b61b381d09bdffca41b8c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_836882ce48feaec7934ce697.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7e980e3261c74d63542a3d6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cc5d3d3a606be607ff32f330.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331543;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_3053dda8c49bd2f5a3e68b44.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331543;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_03ceb5bb7eb97c0bce21f918.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_9c97d50b484e0d0b35693404.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_50b521302b80f337606eadc7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.877441;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_0bc2eebe6a24bfe3c9d00ae8.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.ls3d{letter-spacing:-8.880000px;}
.ls25{letter-spacing:-0.810000px;}
.ls2c{letter-spacing:-0.774000px;}
.ls2a{letter-spacing:-0.666000px;}
.ls29{letter-spacing:-0.645098px;}
.ls3c{letter-spacing:-0.460200px;}
.ls28{letter-spacing:-0.303576px;}
.ls1d{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.280200px;}
.ls22{letter-spacing:-0.259800px;}
.ls27{letter-spacing:-0.226200px;}
.ls2f{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.106800px;}
.ls2e{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.053280px;}
.ls46{letter-spacing:-0.026640px;}
.ls32{letter-spacing:-0.000003px;}
.ls1b{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.037947px;}
.ls3a{letter-spacing:0.053280px;}
.ls34{letter-spacing:0.054000px;}
.ls1e{letter-spacing:0.075600px;}
.ls33{letter-spacing:0.090000px;}
.lsa{letter-spacing:0.094867px;}
.ls19{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.113841px;}
.ls4b{letter-spacing:0.126720px;}
.ls35{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.198000px;}
.ls45{letter-spacing:0.240600px;}
.ls2b{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls2d{letter-spacing:0.274800px;}
.ls1a{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.305400px;}
.ls23{letter-spacing:0.320400px;}
.ls1{letter-spacing:0.341280px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.376800px;}
.ls18{letter-spacing:0.379920px;}
.ls38{letter-spacing:0.439920px;}
.ls3b{letter-spacing:0.648000px;}
.ls21{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.666720px;}
.ls26{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.872780px;}
.ls43{letter-spacing:0.979920px;}
.ls44{letter-spacing:2.106720px;}
.ls15{letter-spacing:3.149597px;}
.ls37{letter-spacing:3.546720px;}
.ls14{letter-spacing:3.908536px;}
.ls42{letter-spacing:4.266720px;}
.ls4{letter-spacing:5.426414px;}
.ls6{letter-spacing:5.552904px;}
.ls47{letter-spacing:5.706720px;}
.ls5{letter-spacing:6.185353px;}
.lsc{letter-spacing:6.311843px;}
.lsd{letter-spacing:6.944292px;}
.ls41{letter-spacing:7.146720px;}
.ls8{letter-spacing:7.703231px;}
.ls40{letter-spacing:7.866720px;}
.lsb{letter-spacing:7.892966px;}
.ls9{letter-spacing:8.462170px;}
.ls4a{letter-spacing:8.586720px;}
.ls48{letter-spacing:8.820000px;}
.ls13{letter-spacing:9.221109px;}
.ls49{letter-spacing:9.306720px;}
.ls36{letter-spacing:10.746720px;}
.lsf{letter-spacing:11.497927px;}
.ls3f{letter-spacing:12.186720px;}
.lse{letter-spacing:12.256866px;}
.ls10{letter-spacing:12.383355px;}
.ls3e{letter-spacing:12.906720px;}
.ls11{letter-spacing:16.051561px;}
.ls12{letter-spacing:16.178051px;}
.ls4c{letter-spacing:41.706720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-84.240000px;}
.ws9{word-spacing:-60.136800px;}
.ws8{word-spacing:-60.080400px;}
.ws4{word-spacing:-59.835600px;}
.ws6{word-spacing:-59.760000px;}
.ws7{word-spacing:-59.500200px;}
.ws5{word-spacing:-59.479800px;}
.wsf{word-spacing:-56.958376px;}
.wse{word-spacing:-56.920429px;}
.ws10{word-spacing:-56.616853px;}
.ws15{word-spacing:-54.198000px;}
.ws18{word-spacing:-54.090000px;}
.ws19{word-spacing:-54.054000px;}
.ws16{word-spacing:-54.000000px;}
.ws17{word-spacing:-53.999997px;}
.ws1f{word-spacing:-17.261280px;}
.ws1d{word-spacing:-16.933680px;}
.ws12{word-spacing:-16.888080px;}
.ws22{word-spacing:-16.853880px;}
.wsa{word-spacing:-16.613280px;}
.ws23{word-spacing:-16.586640px;}
.ws1{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.506480px;}
.ws1c{word-spacing:-16.353480px;}
.ws2{word-spacing:-15.300000px;}
.ws1e{word-spacing:-14.993280px;}
.ws20{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.274000px;}
.ws0{word-spacing:-14.220000px;}
.ws1a{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.392000px;}
.wsb{word-spacing:-11.160000px;}
.wsd{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.213800px;}
.ws13{word-spacing:-8.928000px;}
.ws1b{word-spacing:0.000000px;}
.ws21{word-spacing:9.742800px;}
._14{margin-left:-17.128954px;}
._f{margin-left:-15.945686px;}
._3{margin-left:-12.299040px;}
._8{margin-left:-8.742480px;}
._e{margin-left:-7.551444px;}
._a{margin-left:-4.901938px;}
._5{margin-left:-3.683280px;}
._7{margin-left:-2.390400px;}
._0{margin-left:-1.093680px;}
._1{width:1.137600px;}
._2{width:2.464320px;}
._6{width:4.242960px;}
._b{width:5.889979px;}
._c{width:6.974037px;}
._d{width:8.168848px;}
._9{width:9.360720px;}
._10{width:10.456560px;}
._4{width:12.130560px;}
._11{width:13.142160px;}
._13{width:14.999760px;}
._12{width:18.342000px;}
._16{width:22.111200px;}
._15{width:23.127120px;}
._17{width:27.728640px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:1.440000px;}
.y43{bottom:2.700000px;}
.y39{bottom:4.125000px;}
.y50{bottom:5.010000px;}
.y42{bottom:10.260000px;}
.y2{bottom:13.680000px;}
.y5{bottom:14.040000px;}
.y4e{bottom:15.480000px;}
.y38{bottom:24.285000px;}
.y4{bottom:32.400000px;}
.y4d{bottom:34.200000px;}
.y41{bottom:40.320000px;}
.y37{bottom:44.265000px;}
.y40{bottom:52.020000px;}
.y3{bottom:55.470000px;}
.y4c{bottom:56.340000px;}
.ya{bottom:57.600000px;}
.y36{bottom:64.425000px;}
.y3f{bottom:64.980000px;}
.y4b{bottom:75.420000px;}
.y9{bottom:75.780000px;}
.y3e{bottom:78.120000px;}
.y35{bottom:87.465000px;}
.y4a{bottom:93.090000px;}
.y8{bottom:95.760000px;}
.y49{bottom:99.390000px;}
.y3d{bottom:99.930000px;}
.y34{bottom:113.565000px;}
.y48{bottom:115.410000px;}
.y3a{bottom:118.980000px;}
.y78{bottom:130.500000px;}
.y47{bottom:130.890000px;}
.y9f{bottom:134.640000px;}
.y33{bottom:139.710000px;}
.y46{bottom:146.370000px;}
.y77{bottom:153.720000px;}
.y9e{bottom:157.860000px;}
.y45{bottom:161.850000px;}
.y3c{bottom:162.030000px;}
.y32{bottom:162.930000px;}
.y3b{bottom:172.650000px;}
.y76{bottom:173.880000px;}
.y44{bottom:177.150000px;}
.y9d{bottom:178.020000px;}
.y31{bottom:183.090000px;}
.y75{bottom:193.860000px;}
.y9c{bottom:198.000000px;}
.y30{bottom:206.130000px;}
.y74{bottom:217.110000px;}
.y9b{bottom:218.190000px;}
.y2f{bottom:232.230000px;}
.y9a{bottom:238.350000px;}
.y73{bottom:240.150000px;}
.y2e{bottom:258.330000px;}
.y99{bottom:261.390000px;}
.y72{bottom:269.310000px;}
.y2d{bottom:284.430000px;}
.y98{bottom:284.610000px;}
.y71{bottom:292.350000px;}
.y2c{bottom:307.650000px;}
.y70{bottom:318.450000px;}
.yf{bottom:321.525000px;}
.y2b{bottom:330.690000px;}
.y6f{bottom:341.670000px;}
.y1d{bottom:345.990000px;}
.y2a{bottom:353.910000px;}
.y1c{bottom:361.860000px;}
.y97{bottom:362.910000px;}
.y6e{bottom:370.830000px;}
.y29{bottom:385.440000px;}
.y1b{bottom:385.980000px;}
.y96{bottom:389.010000px;}
.y6d{bottom:393.870000px;}
.y28{bottom:408.840000px;}
.y1a{bottom:410.100000px;}
.y95{bottom:412.050000px;}
.y6c{bottom:419.970000px;}
.yb6{bottom:420.870000px;}
.y27{bottom:432.420000px;}
.y19{bottom:434.220000px;}
.y94{bottom:435.270000px;}
.y6b{bottom:446.115000px;}
.yb5{bottom:447.015000px;}
.y26{bottom:456.000000px;}
.y93{bottom:458.355000px;}
.y18{bottom:458.520000px;}
.yb4{bottom:473.295000px;}
.y6a{bottom:478.335000px;}
.y25{bottom:479.400000px;}
.y17{bottom:482.640000px;}
.y92{bottom:487.515000px;}
.yb3{bottom:499.395000px;}
.y69{bottom:501.375000px;}
.y24{bottom:502.980000px;}
.y16{bottom:506.760000px;}
.y91{bottom:507.675000px;}
.yb2{bottom:525.495000px;}
.y23{bottom:526.560000px;}
.y68{bottom:527.475000px;}
.y90{bottom:527.655000px;}
.y15{bottom:530.880000px;}
.yb1{bottom:548.715000px;}
.y22{bottom:549.960000px;}
.y67{bottom:553.575000px;}
.y14{bottom:555.000000px;}
.y8f{bottom:556.815000px;}
.y21{bottom:573.540000px;}
.y66{bottom:576.795000px;}
.yb0{bottom:577.695000px;}
.y13{bottom:579.120000px;}
.y8e{bottom:579.855000px;}
.y20{bottom:597.165000px;}
.yaf{bottom:600.735000px;}
.y8d{bottom:603.075000px;}
.y12{bottom:603.465000px;}
.y65{bottom:605.955000px;}
.y1f{bottom:620.565000px;}
.yae{bottom:623.955000px;}
.y11{bottom:627.585000px;}
.y64{bottom:628.995000px;}
.y8c{bottom:632.055000px;}
.yad{bottom:644.115000px;}
.y1e{bottom:644.145000px;}
.y10{bottom:651.705000px;}
.y63{bottom:652.035000px;}
.y8b{bottom:655.275000px;}
.yac{bottom:664.095000px;}
.y62{bottom:675.255000px;}
.y8a{bottom:678.315000px;}
.yab{bottom:684.285000px;}
.y89{bottom:698.505000px;}
.y61{bottom:701.385000px;}
.yaa{bottom:704.445000px;}
.y60{bottom:724.425000px;}
.y88{bottom:727.485000px;}
.y87{bottom:750.705000px;}
.y5f{bottom:753.585000px;}
.y86{bottom:773.745000px;}
.y5e{bottom:776.625000px;}
.y85{bottom:793.905000px;}
.ya9{bottom:799.845000px;}
.y5d{bottom:802.725000px;}
.ya8{bottom:822.885000px;}
.y84{bottom:823.065000px;}
.y5c{bottom:829.005000px;}
.y83{bottom:846.105000px;}
.ya7{bottom:848.985000px;}
.y5b{bottom:855.105000px;}
.y82{bottom:872.205000px;}
.ya6{bottom:875.085000px;}
.y5a{bottom:878.145000px;}
.y81{bottom:895.425000px;}
.ya5{bottom:901.365000px;}
.y59{bottom:907.305000px;}
.y80{bottom:924.450000px;}
.ya4{bottom:927.510000px;}
.y58{bottom:930.390000px;}
.y7f{bottom:944.610000px;}
.ya3{bottom:950.550000px;}
.y57{bottom:956.490000px;}
.y7e{bottom:967.650000px;}
.ya2{bottom:973.770000px;}
.y56{bottom:982.770000px;}
.y7d{bottom:990.870000px;}
.ye{bottom:992.130000px;}
.ya1{bottom:999.870000px;}
.y55{bottom:1008.870000px;}
.yd{bottom:1018.230000px;}
.y7c{bottom:1019.850000px;}
.ya0{bottom:1022.910000px;}
.y54{bottom:1031.910000px;}
.y7b{bottom:1043.070000px;}
.yc{bottom:1047.390000px;}
.y53{bottom:1052.070000px;}
.y7a{bottom:1069.170000px;}
.y52{bottom:1075.110000px;}
.yb{bottom:1082.850000px;}
.y4f{bottom:1086.300000px;}
.y79{bottom:1095.270000px;}
.y51{bottom:1098.330000px;}
.y7{bottom:1114.710000px;}
.y1{bottom:1116.150000px;}
.h18{height:5.650313px;}
.h10{height:5.653125px;}
.h8{height:5.729063px;}
.h7{height:17.903320px;}
.h1a{height:27.540000px;}
.h16{height:29.678906px;}
.h15{height:35.332031px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h12{height:52.971680px;}
.h17{height:54.421875px;}
.h5{height:55.824609px;}
.h19{height:57.243164px;}
.ha{height:57.324375px;}
.h9{height:58.651172px;}
.h11{height:60.338990px;}
.hc{height:63.349102px;}
.h1b{height:64.002656px;}
.h6{height:65.010937px;}
.h3{height:65.884219px;}
.h13{height:70.218281px;}
.hb{height:89.299336px;}
.h2{height:92.370000px;}
.h4{height:117.180000px;}
.h14{height:201.810000px;}
.hd{height:661.230000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.876000px;}
.x19{left:8.085000px;}
.x6{left:10.965000px;}
.x4{left:12.765000px;}
.x14{left:14.211000px;}
.x17{left:16.011000px;}
.x1f{left:18.171000px;}
.x16{left:21.771000px;}
.x21{left:29.151000px;}
.x15{left:30.771000px;}
.x5{left:33.645000px;}
.x10{left:43.731000px;}
.x20{left:47.691000px;}
.x11{left:50.751000px;}
.xf{left:55.071000px;}
.x1a{left:62.130000px;}
.x22{left:66.225000px;}
.x13{left:73.605000px;}
.x1{left:78.300000px;}
.xc{left:86.436000px;}
.x2{left:95.790000px;}
.x23{left:102.765000px;}
.x1e{left:106.725000px;}
.x12{left:124.545000px;}
.x8{left:140.436000px;}
.x3{left:182.385000px;}
.x25{left:217.290000px;}
.x18{left:219.105000px;}
.x1d{left:285.360000px;}
.x7{left:311.100000px;}
.xe{left:330.195000px;}
.x1b{left:437.865000px;}
.x24{left:470.625000px;}
.x1c{left:588.375000px;}
.xd{left:633.210000px;}
.xb{left:766.050000px;}
.xa{left:784.410000px;}
.x9{left:806.940000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3d{letter-spacing:-7.893333pt;}
.ls25{letter-spacing:-0.720000pt;}
.ls2c{letter-spacing:-0.688000pt;}
.ls2a{letter-spacing:-0.592000pt;}
.ls29{letter-spacing:-0.573421pt;}
.ls3c{letter-spacing:-0.409067pt;}
.ls28{letter-spacing:-0.269845pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.249067pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls27{letter-spacing:-0.201067pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.094933pt;}
.ls2e{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls46{letter-spacing:-0.023680pt;}
.ls32{letter-spacing:-0.000003pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.033731pt;}
.ls3a{letter-spacing:0.047360pt;}
.ls34{letter-spacing:0.048000pt;}
.ls1e{letter-spacing:0.067200pt;}
.ls33{letter-spacing:0.080000pt;}
.lsa{letter-spacing:0.084327pt;}
.ls19{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.101192pt;}
.ls4b{letter-spacing:0.112640pt;}
.ls35{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.176000pt;}
.ls45{letter-spacing:0.213867pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls2d{letter-spacing:0.244267pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls23{letter-spacing:0.284800pt;}
.ls1{letter-spacing:0.303360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.334933pt;}
.ls18{letter-spacing:0.337707pt;}
.ls38{letter-spacing:0.391040pt;}
.ls3b{letter-spacing:0.576000pt;}
.ls21{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.592640pt;}
.ls26{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.775804pt;}
.ls43{letter-spacing:0.871040pt;}
.ls44{letter-spacing:1.872640pt;}
.ls15{letter-spacing:2.799642pt;}
.ls37{letter-spacing:3.152640pt;}
.ls14{letter-spacing:3.474254pt;}
.ls42{letter-spacing:3.792640pt;}
.ls4{letter-spacing:4.823479pt;}
.ls6{letter-spacing:4.935915pt;}
.ls47{letter-spacing:5.072640pt;}
.ls5{letter-spacing:5.498092pt;}
.lsc{letter-spacing:5.610527pt;}
.lsd{letter-spacing:6.172704pt;}
.ls41{letter-spacing:6.352640pt;}
.ls8{letter-spacing:6.847317pt;}
.ls40{letter-spacing:6.992640pt;}
.lsb{letter-spacing:7.015970pt;}
.ls9{letter-spacing:7.521929pt;}
.ls4a{letter-spacing:7.632640pt;}
.ls48{letter-spacing:7.840000pt;}
.ls13{letter-spacing:8.196542pt;}
.ls49{letter-spacing:8.272640pt;}
.ls36{letter-spacing:9.552640pt;}
.lsf{letter-spacing:10.220379pt;}
.ls3f{letter-spacing:10.832640pt;}
.lse{letter-spacing:10.894992pt;}
.ls10{letter-spacing:11.007427pt;}
.ls3e{letter-spacing:11.472640pt;}
.ls11{letter-spacing:14.268054pt;}
.ls12{letter-spacing:14.380490pt;}
.ls4c{letter-spacing:37.072640pt;}
.ws3{word-spacing:-74.880000pt;}
.ws9{word-spacing:-53.454933pt;}
.ws8{word-spacing:-53.404800pt;}
.ws4{word-spacing:-53.187200pt;}
.ws6{word-spacing:-53.120000pt;}
.ws7{word-spacing:-52.889067pt;}
.ws5{word-spacing:-52.870933pt;}
.wsf{word-spacing:-50.629667pt;}
.wse{word-spacing:-50.595937pt;}
.ws10{word-spacing:-50.326092pt;}
.ws15{word-spacing:-48.176000pt;}
.ws18{word-spacing:-48.080000pt;}
.ws19{word-spacing:-48.048000pt;}
.ws16{word-spacing:-48.000000pt;}
.ws17{word-spacing:-47.999997pt;}
.ws1f{word-spacing:-15.343360pt;}
.ws1d{word-spacing:-15.052160pt;}
.ws12{word-spacing:-15.011627pt;}
.ws22{word-spacing:-14.981227pt;}
.wsa{word-spacing:-14.767360pt;}
.ws23{word-spacing:-14.743680pt;}
.ws1{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.672427pt;}
.ws1c{word-spacing:-14.536427pt;}
.ws2{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.327360pt;}
.ws20{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.640000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.904000pt;}
.wsb{word-spacing:-9.920000pt;}
.wsd{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.078933pt;}
.ws13{word-spacing:-7.936000pt;}
.ws1b{word-spacing:0.000000pt;}
.ws21{word-spacing:8.660267pt;}
._14{margin-left:-15.225737pt;}
._f{margin-left:-14.173943pt;}
._3{margin-left:-10.932480pt;}
._8{margin-left:-7.771093pt;}
._e{margin-left:-6.712394pt;}
._a{margin-left:-4.357279pt;}
._5{margin-left:-3.274027pt;}
._7{margin-left:-2.124800pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.011200pt;}
._2{width:2.190507pt;}
._6{width:3.771520pt;}
._b{width:5.235537pt;}
._c{width:6.199144pt;}
._d{width:7.261198pt;}
._9{width:8.320640pt;}
._10{width:9.294720pt;}
._4{width:10.782720pt;}
._11{width:11.681920pt;}
._13{width:13.333120pt;}
._12{width:16.304000pt;}
._16{width:19.654400pt;}
._15{width:20.557440pt;}
._17{width:24.647680pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:1.280000pt;}
.y43{bottom:2.400000pt;}
.y39{bottom:3.666667pt;}
.y50{bottom:4.453333pt;}
.y42{bottom:9.120000pt;}
.y2{bottom:12.160000pt;}
.y5{bottom:12.480000pt;}
.y4e{bottom:13.760000pt;}
.y38{bottom:21.586667pt;}
.y4{bottom:28.800000pt;}
.y4d{bottom:30.400000pt;}
.y41{bottom:35.840000pt;}
.y37{bottom:39.346667pt;}
.y40{bottom:46.240000pt;}
.y3{bottom:49.306667pt;}
.y4c{bottom:50.080000pt;}
.ya{bottom:51.200000pt;}
.y36{bottom:57.266667pt;}
.y3f{bottom:57.760000pt;}
.y4b{bottom:67.040000pt;}
.y9{bottom:67.360000pt;}
.y3e{bottom:69.440000pt;}
.y35{bottom:77.746667pt;}
.y4a{bottom:82.746667pt;}
.y8{bottom:85.120000pt;}
.y49{bottom:88.346667pt;}
.y3d{bottom:88.826667pt;}
.y34{bottom:100.946667pt;}
.y48{bottom:102.586667pt;}
.y3a{bottom:105.760000pt;}
.y78{bottom:116.000000pt;}
.y47{bottom:116.346667pt;}
.y9f{bottom:119.680000pt;}
.y33{bottom:124.186667pt;}
.y46{bottom:130.106667pt;}
.y77{bottom:136.640000pt;}
.y9e{bottom:140.320000pt;}
.y45{bottom:143.866667pt;}
.y3c{bottom:144.026667pt;}
.y32{bottom:144.826667pt;}
.y3b{bottom:153.466667pt;}
.y76{bottom:154.560000pt;}
.y44{bottom:157.466667pt;}
.y9d{bottom:158.240000pt;}
.y31{bottom:162.746667pt;}
.y75{bottom:172.320000pt;}
.y9c{bottom:176.000000pt;}
.y30{bottom:183.226667pt;}
.y74{bottom:192.986667pt;}
.y9b{bottom:193.946667pt;}
.y2f{bottom:206.426667pt;}
.y9a{bottom:211.866667pt;}
.y73{bottom:213.466667pt;}
.y2e{bottom:229.626667pt;}
.y99{bottom:232.346667pt;}
.y72{bottom:239.386667pt;}
.y2d{bottom:252.826667pt;}
.y98{bottom:252.986667pt;}
.y71{bottom:259.866667pt;}
.y2c{bottom:273.466667pt;}
.y70{bottom:283.066667pt;}
.yf{bottom:285.800000pt;}
.y2b{bottom:293.946667pt;}
.y6f{bottom:303.706667pt;}
.y1d{bottom:307.546667pt;}
.y2a{bottom:314.586667pt;}
.y1c{bottom:321.653333pt;}
.y97{bottom:322.586667pt;}
.y6e{bottom:329.626667pt;}
.y29{bottom:342.613333pt;}
.y1b{bottom:343.093333pt;}
.y96{bottom:345.786667pt;}
.y6d{bottom:350.106667pt;}
.y28{bottom:363.413333pt;}
.y1a{bottom:364.533333pt;}
.y95{bottom:366.266667pt;}
.y6c{bottom:373.306667pt;}
.yb6{bottom:374.106667pt;}
.y27{bottom:384.373333pt;}
.y19{bottom:385.973333pt;}
.y94{bottom:386.906667pt;}
.y6b{bottom:396.546667pt;}
.yb5{bottom:397.346667pt;}
.y26{bottom:405.333333pt;}
.y93{bottom:407.426667pt;}
.y18{bottom:407.573333pt;}
.yb4{bottom:420.706667pt;}
.y6a{bottom:425.186667pt;}
.y25{bottom:426.133333pt;}
.y17{bottom:429.013333pt;}
.y92{bottom:433.346667pt;}
.yb3{bottom:443.906667pt;}
.y69{bottom:445.666667pt;}
.y24{bottom:447.093333pt;}
.y16{bottom:450.453333pt;}
.y91{bottom:451.266667pt;}
.yb2{bottom:467.106667pt;}
.y23{bottom:468.053333pt;}
.y68{bottom:468.866667pt;}
.y90{bottom:469.026667pt;}
.y15{bottom:471.893333pt;}
.yb1{bottom:487.746667pt;}
.y22{bottom:488.853333pt;}
.y67{bottom:492.066667pt;}
.y14{bottom:493.333333pt;}
.y8f{bottom:494.946667pt;}
.y21{bottom:509.813333pt;}
.y66{bottom:512.706667pt;}
.yb0{bottom:513.506667pt;}
.y13{bottom:514.773333pt;}
.y8e{bottom:515.426667pt;}
.y20{bottom:530.813333pt;}
.yaf{bottom:533.986667pt;}
.y8d{bottom:536.066667pt;}
.y12{bottom:536.413333pt;}
.y65{bottom:538.626667pt;}
.y1f{bottom:551.613333pt;}
.yae{bottom:554.626667pt;}
.y11{bottom:557.853333pt;}
.y64{bottom:559.106667pt;}
.y8c{bottom:561.826667pt;}
.yad{bottom:572.546667pt;}
.y1e{bottom:572.573333pt;}
.y10{bottom:579.293333pt;}
.y63{bottom:579.586667pt;}
.y8b{bottom:582.466667pt;}
.yac{bottom:590.306667pt;}
.y62{bottom:600.226667pt;}
.y8a{bottom:602.946667pt;}
.yab{bottom:608.253333pt;}
.y89{bottom:620.893333pt;}
.y61{bottom:623.453333pt;}
.yaa{bottom:626.173333pt;}
.y60{bottom:643.933333pt;}
.y88{bottom:646.653333pt;}
.y87{bottom:667.293333pt;}
.y5f{bottom:669.853333pt;}
.y86{bottom:687.773333pt;}
.y5e{bottom:690.333333pt;}
.y85{bottom:705.693333pt;}
.ya9{bottom:710.973333pt;}
.y5d{bottom:713.533333pt;}
.ya8{bottom:731.453333pt;}
.y84{bottom:731.613333pt;}
.y5c{bottom:736.893333pt;}
.y83{bottom:752.093333pt;}
.ya7{bottom:754.653333pt;}
.y5b{bottom:760.093333pt;}
.y82{bottom:775.293333pt;}
.ya6{bottom:777.853333pt;}
.y5a{bottom:780.573333pt;}
.y81{bottom:795.933333pt;}
.ya5{bottom:801.213333pt;}
.y59{bottom:806.493333pt;}
.y80{bottom:821.733333pt;}
.ya4{bottom:824.453333pt;}
.y58{bottom:827.013333pt;}
.y7f{bottom:839.653333pt;}
.ya3{bottom:844.933333pt;}
.y57{bottom:850.213333pt;}
.y7e{bottom:860.133333pt;}
.ya2{bottom:865.573333pt;}
.y56{bottom:873.573333pt;}
.y7d{bottom:880.773333pt;}
.ye{bottom:881.893333pt;}
.ya1{bottom:888.773333pt;}
.y55{bottom:896.773333pt;}
.yd{bottom:905.093333pt;}
.y7c{bottom:906.533333pt;}
.ya0{bottom:909.253333pt;}
.y54{bottom:917.253333pt;}
.y7b{bottom:927.173333pt;}
.yc{bottom:931.013333pt;}
.y53{bottom:935.173333pt;}
.y7a{bottom:950.373333pt;}
.y52{bottom:955.653333pt;}
.yb{bottom:962.533333pt;}
.y4f{bottom:965.600000pt;}
.y79{bottom:973.573333pt;}
.y51{bottom:976.293333pt;}
.y7{bottom:990.853333pt;}
.y1{bottom:992.133333pt;}
.h18{height:5.022500pt;}
.h10{height:5.025000pt;}
.h8{height:5.092500pt;}
.h7{height:15.914062pt;}
.h1a{height:24.480000pt;}
.h16{height:26.381250pt;}
.h15{height:31.406250pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h12{height:47.085938pt;}
.h17{height:48.375000pt;}
.h5{height:49.621875pt;}
.h19{height:50.882812pt;}
.ha{height:50.955000pt;}
.h9{height:52.134375pt;}
.h11{height:53.634657pt;}
.hc{height:56.310313pt;}
.h1b{height:56.891250pt;}
.h6{height:57.787500pt;}
.h3{height:58.563750pt;}
.h13{height:62.416250pt;}
.hb{height:79.377187pt;}
.h2{height:82.106667pt;}
.h4{height:104.160000pt;}
.h14{height:179.386667pt;}
.hd{height:587.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.112000pt;}
.x19{left:7.186667pt;}
.x6{left:9.746667pt;}
.x4{left:11.346667pt;}
.x14{left:12.632000pt;}
.x17{left:14.232000pt;}
.x1f{left:16.152000pt;}
.x16{left:19.352000pt;}
.x21{left:25.912000pt;}
.x15{left:27.352000pt;}
.x5{left:29.906667pt;}
.x10{left:38.872000pt;}
.x20{left:42.392000pt;}
.x11{left:45.112000pt;}
.xf{left:48.952000pt;}
.x1a{left:55.226667pt;}
.x22{left:58.866667pt;}
.x13{left:65.426667pt;}
.x1{left:69.600000pt;}
.xc{left:76.832000pt;}
.x2{left:85.146667pt;}
.x23{left:91.346667pt;}
.x1e{left:94.866667pt;}
.x12{left:110.706667pt;}
.x8{left:124.832000pt;}
.x3{left:162.120000pt;}
.x25{left:193.146667pt;}
.x18{left:194.760000pt;}
.x1d{left:253.653333pt;}
.x7{left:276.533333pt;}
.xe{left:293.506667pt;}
.x1b{left:389.213333pt;}
.x24{left:418.333333pt;}
.x1c{left:523.000000pt;}
.xd{left:562.853333pt;}
.xb{left:680.933333pt;}
.xa{left:697.253333pt;}
.x9{left:717.280000pt;}
}




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