
    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_920739204bbd493c81a438e2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d45af40dd9abe45a11a77349.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_179cb8d1212ff5b80cbe9854.woff')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_e7076b1657ed6beb1d2e8c6c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_f2f58b381daeede027ac33db.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_39722ae25dfc9bbc61e26d87.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_0435f359ea1473fd3b939190.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_8880385decf912e4cb2920f6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_687263d27dcb2cd241a6c9da.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c8e6ee716ab7d914e507ba61.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_b1c5e265c44947cde6fb9f34.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_c6dbc37d36e1ee858552860e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fb82afd131c23d28f95fa28d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_e7f6ffbe44d44b48cd492a6e.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d6c6ec9e19fc5f784a291c6a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_bff92731766f6d2081f72b7c.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dda7c85a8842a1c4c5a31829.woff')format("woff");}.ff14{font-family:ff14;line-height:0.897949;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:ff15;src:url('chunks/assets/font_dc37696e3eeb4825fa56628f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.897949;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:ff16;src:url('chunks/assets/font_76ebf27ed143372c76563f8e.woff')format("woff");}.ff16{font-family:ff16;line-height:1.378906;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:ff17;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff17{font-family:ff17;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsd{letter-spacing:-2.724000px;}
.lse{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.039000px;}
.ls8{letter-spacing:0.219000px;}
.ls13{letter-spacing:0.256200px;}
.ls11{letter-spacing:0.666000px;}
.ls0{letter-spacing:1.476000px;}
.ls14{letter-spacing:1.722000px;}
.ls1{letter-spacing:1.854000px;}
.ls2{letter-spacing:1.906500px;}
.ls4{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.026500px;}
.ls15{letter-spacing:2.052000px;}
.ls3{letter-spacing:2.086500px;}
.lsf{letter-spacing:2.118000px;}
.ls18{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls7{letter-spacing:13.779000px;}
.ls19{letter-spacing:15.387000px;}
.ls16{letter-spacing:37.887000px;}
.ls17{letter-spacing:46.887000px;}
.ls12{letter-spacing:55.887000px;}
.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:-26.100000px;}
.ws7{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.789500px;}
.wsb{word-spacing:-16.347000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.wsa{word-spacing:-14.881200px;}
.ws6{word-spacing:-14.625000px;}
.ws8{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-10.449300px;}
._1e{margin-left:-7.546500px;}
._a{margin-left:-6.414000px;}
._7{margin-left:-5.114700px;}
._9{margin-left:-3.573000px;}
._2{margin-left:-2.322000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.024000px;}
._5{width:4.620000px;}
._3{width:6.534000px;}
._15{width:7.569000px;}
._b{width:8.635500px;}
._6{width:9.876000px;}
._17{width:11.830500px;}
._c{width:13.348500px;}
._18{width:14.511000px;}
._11{width:16.708500px;}
._12{width:17.779500px;}
._f{width:20.340000px;}
._10{width:21.967500px;}
._e{width:25.245000px;}
._16{width:26.266500px;}
._d{width:29.731500px;}
._14{width:31.069500px;}
._13{width:32.991000px;}
._1c{width:34.144500px;}
._1b{width:66.424500px;}
._1a{width:71.913000px;}
._19{width:98.962500px;}
._1d{width:112.336500px;}
.fc7{color:rgb(17,85,204);}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y1b{bottom:4.500000px;}
.ye{bottom:11.250000px;}
.y1d{bottom:12.420000px;}
.yc{bottom:13.545000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.yce{bottom:20.250000px;}
.yd9{bottom:20.280000px;}
.y4f{bottom:21.375000px;}
.yd1{bottom:21.405000px;}
.ydc{bottom:21.420000px;}
.y52{bottom:22.507500px;}
.y51{bottom:25.912500px;}
.y1a{bottom:29.280000px;}
.yb{bottom:30.420000px;}
.yd6{bottom:38.280000px;}
.y4e{bottom:38.295000px;}
.y19{bottom:45.030000px;}
.ya{bottom:46.200000px;}
.y4d{bottom:55.170000px;}
.yd8{bottom:55.200000px;}
.y5{bottom:57.412500px;}
.y18{bottom:61.950000px;}
.y9{bottom:73.200000px;}
.y17{bottom:78.825000px;}
.y1{bottom:81.075000px;}
.y4c{bottom:90.075000px;}
.y16{bottom:91.200000px;}
.y8{bottom:93.480000px;}
.y4b{bottom:106.950000px;}
.y15{bottom:108.120000px;}
.y7{bottom:110.355000px;}
.y4a{bottom:124.980000px;}
.y14{bottom:126.120000px;}
.yc3{bottom:128.362500px;}
.y88{bottom:131.737500px;}
.y50{bottom:135.112500px;}
.y49{bottom:141.855000px;}
.yc2{bottom:145.237500px;}
.y13{bottom:145.275000px;}
.y87{bottom:149.737500px;}
.yde{bottom:156.480000px;}
.yc1{bottom:158.745000px;}
.y48{bottom:158.775000px;}
.y86{bottom:166.650000px;}
.y12{bottom:171.150000px;}
.y1e{bottom:172.275000px;}
.ydd{bottom:174.525000px;}
.y47{bottom:176.775000px;}
.y85{bottom:183.525000px;}
.ya7{bottom:188.025000px;}
.y46{bottom:193.650000px;}
.ydb{bottom:195.900000px;}
.y11{bottom:197.070000px;}
.y84{bottom:201.570000px;}
.ya6{bottom:206.070000px;}
.y45{bottom:210.570000px;}
.y83{bottom:218.445000px;}
.y10{bottom:221.820000px;}
.ya5{bottom:222.945000px;}
.y44{bottom:228.555000px;}
.y82{bottom:235.320000px;}
.ya4{bottom:239.820000px;}
.y43{bottom:245.475000px;}
.yda{bottom:246.600000px;}
.y81{bottom:253.350000px;}
.y30{bottom:254.475000px;}
.ya3{bottom:257.850000px;}
.y42{bottom:262.350000px;}
.y2f{bottom:269.100000px;}
.y80{bottom:270.225000px;}
.ya2{bottom:274.725000px;}
.yd7{bottom:279.225000px;}
.y41{bottom:280.395000px;}
.y7f{bottom:287.130000px;}
.y2e{bottom:287.145000px;}
.ya1{bottom:291.645000px;}
.y40{bottom:297.270000px;}
.y2d{bottom:304.020000px;}
.y7e{bottom:305.145000px;}
.ya0{bottom:309.630000px;}
.y3f{bottom:314.145000px;}
.y7d{bottom:322.020000px;}
.y2c{bottom:322.050000px;}
.y9f{bottom:326.550000px;}
.y3e{bottom:332.175000px;}
.y2b{bottom:338.925000px;}
.y9e{bottom:343.425000px;}
.y3d{bottom:349.050000px;}
.y2a{bottom:355.800000px;}
.y7c{bottom:356.925000px;}
.y9d{bottom:361.425000px;}
.yd5{bottom:363.675000px;}
.y3c{bottom:365.955000px;}
.y7b{bottom:373.830000px;}
.y29{bottom:373.845000px;}
.y9c{bottom:378.330000px;}
.y3b{bottom:383.970000px;}
.y7a{bottom:390.705000px;}
.y28{bottom:390.720000px;}
.y9b{bottom:395.205000px;}
.y3a{bottom:400.845000px;}
.y79{bottom:408.705000px;}
.y27{bottom:408.750000px;}
.y9a{bottom:413.250000px;}
.yc0{bottom:415.500000px;}
.yee{bottom:416.625000px;}
.y39{bottom:417.750000px;}
.y26{bottom:425.625000px;}
.y99{bottom:430.125000px;}
.yd4{bottom:431.250000px;}
.ybf{bottom:432.375000px;}
.yed{bottom:433.500000px;}
.y38{bottom:435.750000px;}
.yb0{bottom:439.125000px;}
.y78{bottom:442.500000px;}
.y25{bottom:443.625000px;}
.y98{bottom:447.000000px;}
.ybe{bottom:449.250000px;}
.yec{bottom:451.530000px;}
.y37{bottom:452.670000px;}
.y24{bottom:460.545000px;}
.yd3{bottom:463.905000px;}
.y97{bottom:465.030000px;}
.ybd{bottom:467.295000px;}
.yeb{bottom:468.405000px;}
.y36{bottom:469.545000px;}
.y77{bottom:477.420000px;}
.y96{bottom:478.530000px;}
.y23{bottom:478.545000px;}
.ybc{bottom:484.170000px;}
.yea{bottom:485.280000px;}
.y35{bottom:487.545000px;}
.y76{bottom:494.325000px;}
.y22{bottom:495.450000px;}
.yd2{bottom:497.700000px;}
.ybb{bottom:501.075000px;}
.ye9{bottom:503.325000px;}
.y34{bottom:504.450000px;}
.y21{bottom:512.325000px;}
.yba{bottom:519.075000px;}
.ye8{bottom:520.200000px;}
.y33{bottom:521.325000px;}
.y75{bottom:529.200000px;}
.yd0{bottom:530.325000px;}
.yb9{bottom:535.995000px;}
.ye7{bottom:537.120000px;}
.y32{bottom:539.355000px;}
.y20{bottom:540.495000px;}
.y74{bottom:546.120000px;}
.yb8{bottom:552.870000px;}
.ye6{bottom:555.105000px;}
.y31{bottom:556.230000px;}
.y1f{bottom:558.480000px;}
.y73{bottom:564.120000px;}
.yb7{bottom:570.870000px;}
.ye5{bottom:571.980000px;}
.y72{bottom:581.025000px;}
.yb6{bottom:587.775000px;}
.ye4{bottom:588.900000px;}
.y71{bottom:597.900000px;}
.yb5{bottom:601.275000px;}
.ye3{bottom:606.900000px;}
.y70{bottom:615.900000px;}
.ye2{bottom:623.820000px;}
.ycf{bottom:630.570000px;}
.y6f{bottom:632.820000px;}
.ye1{bottom:640.695000px;}
.y6e{bottom:649.695000px;}
.ye0{bottom:658.695000px;}
.ycd{bottom:664.350000px;}
.y6d{bottom:667.725000px;}
.ydf{bottom:675.600000px;}
.y6c{bottom:684.600000px;}
.yaf{bottom:692.475000px;}
.y6b{bottom:701.475000px;}
.yae{bottom:710.505000px;}
.ycc{bottom:713.880000px;}
.y6a{bottom:719.520000px;}
.y95{bottom:725.130000px;}
.yad{bottom:727.380000px;}
.y69{bottom:736.395000px;}
.y1c{bottom:742.005000px;}
.yac{bottom:744.300000px;}
.y68{bottom:753.300000px;}
.y94{bottom:760.050000px;}
.ycb{bottom:761.175000px;}
.yab{bottom:762.300000px;}
.yf{bottom:771.300000px;}
.y93{bottom:776.925000px;}
.yca{bottom:778.050000px;}
.yaa{bottom:779.175000px;}
.y67{bottom:788.205000px;}
.yc9{bottom:794.955000px;}
.y92{bottom:796.080000px;}
.y66{bottom:809.580000px;}
.yc8{bottom:812.955000px;}
.ya9{bottom:814.080000px;}
.y91{bottom:815.205000px;}
.yb4{bottom:820.830000px;}
.yc7{bottom:829.875000px;}
.y65{bottom:831.000000px;}
.y90{bottom:835.500000px;}
.yb3{bottom:838.875000px;}
.yc6{bottom:846.750000px;}
.y64{bottom:847.875000px;}
.y8f{bottom:854.625000px;}
.yb2{bottom:855.750000px;}
.yc5{bottom:864.750000px;}
.y63{bottom:865.875000px;}
.yb1{bottom:869.295000px;}
.y8e{bottom:873.795000px;}
.yc4{bottom:878.295000px;}
.y62{bottom:882.795000px;}
.y8d{bottom:891.795000px;}
.ya8{bottom:896.295000px;}
.y61{bottom:899.670000px;}
.y8c{bottom:908.670000px;}
.y60{bottom:917.700000px;}
.y8b{bottom:927.825000px;}
.y5f{bottom:934.575000px;}
.y8a{bottom:946.950000px;}
.y5e{bottom:951.450000px;}
.y89{bottom:967.245000px;}
.y5d{bottom:969.495000px;}
.y5c{bottom:986.370000px;}
.y5b{bottom:1003.275000px;}
.yd{bottom:1007.775000px;}
.y5a{bottom:1021.275000px;}
.y6{bottom:1033.650000px;}
.y59{bottom:1038.195000px;}
.y58{bottom:1055.070000px;}
.y57{bottom:1073.070000px;}
.y56{bottom:1089.975000px;}
.y55{bottom:1106.850000px;}
.y54{bottom:1124.880000px;}
.y53{bottom:1141.755000px;}
.h22{height:16.875000px;}
.h21{height:18.000000px;}
.hb{height:25.875000px;}
.h13{height:29.287500px;}
.h12{height:29.953125px;}
.h2{height:32.625000px;}
.h20{height:33.750000px;}
.h1f{height:34.912500px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h1d{height:42.589600px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h23{height:51.825000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h1e{height:64.555664px;}
.h24{height:68.700000px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:236.475000px;}
.h15{height:569.730000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:145.275000px;}
.wb{width:205.020000px;}
.w7{width:214.020000px;}
.w9{width:261.300000px;}
.wa{width:278.250000px;}
.w8{width:533.925000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:6.750000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.xf{left:13.500000px;}
.x17{left:20.250000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x29{left:74.362500px;}
.x4{left:81.112487px;}
.x1f{left:92.362487px;}
.x6{left:97.987500px;}
.x18{left:108.149987px;}
.x13{left:109.237500px;}
.x14{left:111.487500px;}
.x12{left:120.532500px;}
.x2d{left:128.399987px;}
.x11{left:134.032500px;}
.x21{left:135.187487px;}
.x23{left:183.599987px;}
.x25{left:185.849987px;}
.x1a{left:202.769987px;}
.x15{left:214.012500px;}
.x7{left:218.520000px;}
.x1d{left:243.299987px;}
.x28{left:269.219987px;}
.x27{left:277.079987px;}
.x16{left:287.250000px;}
.xb{left:296.280000px;}
.x10{left:308.632500px;}
.x2b{left:335.670000px;}
.x9{left:351.450000px;}
.xa{left:370.605000px;}
.xe{left:373.957500px;}
.x20{left:429.194987px;}
.xd{left:437.055000px;}
.x1b{left:447.194987px;}
.xc{left:459.600000px;}
.x2c{left:615.030000px;}
.x1c{left:714.149987px;}
.x24{left:729.944987px;}
.x26{left:745.694987px;}
.x3{left:746.820000px;}
.x19{left:760.349987px;}
.x1e{left:762.599987px;}
.x22{left:765.974987px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsd{letter-spacing:-2.421333pt;}
.lse{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.034667pt;}
.ls8{letter-spacing:0.194667pt;}
.ls13{letter-spacing:0.227733pt;}
.ls11{letter-spacing:0.592000pt;}
.ls0{letter-spacing:1.312000pt;}
.ls14{letter-spacing:1.530667pt;}
.ls1{letter-spacing:1.648000pt;}
.ls2{letter-spacing:1.694667pt;}
.ls4{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.801333pt;}
.ls15{letter-spacing:1.824000pt;}
.ls3{letter-spacing:1.854667pt;}
.lsf{letter-spacing:1.882667pt;}
.ls18{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls7{letter-spacing:12.248000pt;}
.ls19{letter-spacing:13.677333pt;}
.ls16{letter-spacing:33.677333pt;}
.ls17{letter-spacing:41.677333pt;}
.ls12{letter-spacing:49.677333pt;}
.ws4{word-spacing:-23.200000pt;}
.ws7{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.924000pt;}
.wsb{word-spacing:-14.530667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.wsa{word-spacing:-13.227733pt;}
.ws6{word-spacing:-13.000000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-9.288267pt;}
._1e{margin-left:-6.708000pt;}
._a{margin-left:-5.701333pt;}
._7{margin-left:-4.546400pt;}
._9{margin-left:-3.176000pt;}
._2{margin-left:-2.064000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.688000pt;}
._5{width:4.106667pt;}
._3{width:5.808000pt;}
._15{width:6.728000pt;}
._b{width:7.676000pt;}
._6{width:8.778667pt;}
._17{width:10.516000pt;}
._c{width:11.865333pt;}
._18{width:12.898667pt;}
._11{width:14.852000pt;}
._12{width:15.804000pt;}
._f{width:18.080000pt;}
._10{width:19.526667pt;}
._e{width:22.440000pt;}
._16{width:23.348000pt;}
._d{width:26.428000pt;}
._14{width:27.617333pt;}
._13{width:29.325333pt;}
._1c{width:30.350667pt;}
._1b{width:59.044000pt;}
._1a{width:63.922667pt;}
._19{width:87.966667pt;}
._1d{width:99.854667pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y1b{bottom:4.000000pt;}
.ye{bottom:10.000000pt;}
.y1d{bottom:11.040000pt;}
.yc{bottom:12.040000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.yce{bottom:18.000000pt;}
.yd9{bottom:18.026667pt;}
.y4f{bottom:19.000000pt;}
.yd1{bottom:19.026667pt;}
.ydc{bottom:19.040000pt;}
.y52{bottom:20.006667pt;}
.y51{bottom:23.033333pt;}
.y1a{bottom:26.026667pt;}
.yb{bottom:27.040000pt;}
.yd6{bottom:34.026667pt;}
.y4e{bottom:34.040000pt;}
.y19{bottom:40.026667pt;}
.ya{bottom:41.066667pt;}
.y4d{bottom:49.040000pt;}
.yd8{bottom:49.066667pt;}
.y5{bottom:51.033333pt;}
.y18{bottom:55.066667pt;}
.y9{bottom:65.066667pt;}
.y17{bottom:70.066667pt;}
.y1{bottom:72.066667pt;}
.y4c{bottom:80.066667pt;}
.y16{bottom:81.066667pt;}
.y8{bottom:83.093333pt;}
.y4b{bottom:95.066667pt;}
.y15{bottom:96.106667pt;}
.y7{bottom:98.093333pt;}
.y4a{bottom:111.093333pt;}
.y14{bottom:112.106667pt;}
.yc3{bottom:114.100000pt;}
.y88{bottom:117.100000pt;}
.y50{bottom:120.100000pt;}
.y49{bottom:126.093333pt;}
.yc2{bottom:129.100000pt;}
.y13{bottom:129.133333pt;}
.y87{bottom:133.100000pt;}
.yde{bottom:139.093333pt;}
.yc1{bottom:141.106667pt;}
.y48{bottom:141.133333pt;}
.y86{bottom:148.133333pt;}
.y12{bottom:152.133333pt;}
.y1e{bottom:153.133333pt;}
.ydd{bottom:155.133333pt;}
.y47{bottom:157.133333pt;}
.y85{bottom:163.133333pt;}
.ya7{bottom:167.133333pt;}
.y46{bottom:172.133333pt;}
.ydb{bottom:174.133333pt;}
.y11{bottom:175.173333pt;}
.y84{bottom:179.173333pt;}
.ya6{bottom:183.173333pt;}
.y45{bottom:187.173333pt;}
.y83{bottom:194.173333pt;}
.y10{bottom:197.173333pt;}
.ya5{bottom:198.173333pt;}
.y44{bottom:203.160000pt;}
.y82{bottom:209.173333pt;}
.ya4{bottom:213.173333pt;}
.y43{bottom:218.200000pt;}
.yda{bottom:219.200000pt;}
.y81{bottom:225.200000pt;}
.y30{bottom:226.200000pt;}
.ya3{bottom:229.200000pt;}
.y42{bottom:233.200000pt;}
.y2f{bottom:239.200000pt;}
.y80{bottom:240.200000pt;}
.ya2{bottom:244.200000pt;}
.yd7{bottom:248.200000pt;}
.y41{bottom:249.240000pt;}
.y7f{bottom:255.226667pt;}
.y2e{bottom:255.240000pt;}
.ya1{bottom:259.240000pt;}
.y40{bottom:264.240000pt;}
.y2d{bottom:270.240000pt;}
.y7e{bottom:271.240000pt;}
.ya0{bottom:275.226667pt;}
.y3f{bottom:279.240000pt;}
.y7d{bottom:286.240000pt;}
.y2c{bottom:286.266667pt;}
.y9f{bottom:290.266667pt;}
.y3e{bottom:295.266667pt;}
.y2b{bottom:301.266667pt;}
.y9e{bottom:305.266667pt;}
.y3d{bottom:310.266667pt;}
.y2a{bottom:316.266667pt;}
.y7c{bottom:317.266667pt;}
.y9d{bottom:321.266667pt;}
.yd5{bottom:323.266667pt;}
.y3c{bottom:325.293333pt;}
.y7b{bottom:332.293333pt;}
.y29{bottom:332.306667pt;}
.y9c{bottom:336.293333pt;}
.y3b{bottom:341.306667pt;}
.y7a{bottom:347.293333pt;}
.y28{bottom:347.306667pt;}
.y9b{bottom:351.293333pt;}
.y3a{bottom:356.306667pt;}
.y79{bottom:363.293333pt;}
.y27{bottom:363.333333pt;}
.y9a{bottom:367.333333pt;}
.yc0{bottom:369.333333pt;}
.yee{bottom:370.333333pt;}
.y39{bottom:371.333333pt;}
.y26{bottom:378.333333pt;}
.y99{bottom:382.333333pt;}
.yd4{bottom:383.333333pt;}
.ybf{bottom:384.333333pt;}
.yed{bottom:385.333333pt;}
.y38{bottom:387.333333pt;}
.yb0{bottom:390.333333pt;}
.y78{bottom:393.333333pt;}
.y25{bottom:394.333333pt;}
.y98{bottom:397.333333pt;}
.ybe{bottom:399.333333pt;}
.yec{bottom:401.360000pt;}
.y37{bottom:402.373333pt;}
.y24{bottom:409.373333pt;}
.yd3{bottom:412.360000pt;}
.y97{bottom:413.360000pt;}
.ybd{bottom:415.373333pt;}
.yeb{bottom:416.360000pt;}
.y36{bottom:417.373333pt;}
.y77{bottom:424.373333pt;}
.y96{bottom:425.360000pt;}
.y23{bottom:425.373333pt;}
.ybc{bottom:430.373333pt;}
.yea{bottom:431.360000pt;}
.y35{bottom:433.373333pt;}
.y76{bottom:439.400000pt;}
.y22{bottom:440.400000pt;}
.yd2{bottom:442.400000pt;}
.ybb{bottom:445.400000pt;}
.ye9{bottom:447.400000pt;}
.y34{bottom:448.400000pt;}
.y21{bottom:455.400000pt;}
.yba{bottom:461.400000pt;}
.ye8{bottom:462.400000pt;}
.y33{bottom:463.400000pt;}
.y75{bottom:470.400000pt;}
.yd0{bottom:471.400000pt;}
.yb9{bottom:476.440000pt;}
.ye7{bottom:477.440000pt;}
.y32{bottom:479.426667pt;}
.y20{bottom:480.440000pt;}
.y74{bottom:485.440000pt;}
.yb8{bottom:491.440000pt;}
.ye6{bottom:493.426667pt;}
.y31{bottom:494.426667pt;}
.y1f{bottom:496.426667pt;}
.y73{bottom:501.440000pt;}
.yb7{bottom:507.440000pt;}
.ye5{bottom:508.426667pt;}
.y72{bottom:516.466667pt;}
.yb6{bottom:522.466667pt;}
.ye4{bottom:523.466667pt;}
.y71{bottom:531.466667pt;}
.yb5{bottom:534.466667pt;}
.ye3{bottom:539.466667pt;}
.y70{bottom:547.466667pt;}
.ye2{bottom:554.506667pt;}
.ycf{bottom:560.506667pt;}
.y6f{bottom:562.506667pt;}
.ye1{bottom:569.506667pt;}
.y6e{bottom:577.506667pt;}
.ye0{bottom:585.506667pt;}
.ycd{bottom:590.533333pt;}
.y6d{bottom:593.533333pt;}
.ydf{bottom:600.533333pt;}
.y6c{bottom:608.533333pt;}
.yaf{bottom:615.533333pt;}
.y6b{bottom:623.533333pt;}
.yae{bottom:631.560000pt;}
.ycc{bottom:634.560000pt;}
.y6a{bottom:639.573333pt;}
.y95{bottom:644.560000pt;}
.yad{bottom:646.560000pt;}
.y69{bottom:654.573333pt;}
.y1c{bottom:659.560000pt;}
.yac{bottom:661.600000pt;}
.y68{bottom:669.600000pt;}
.y94{bottom:675.600000pt;}
.ycb{bottom:676.600000pt;}
.yab{bottom:677.600000pt;}
.yf{bottom:685.600000pt;}
.y93{bottom:690.600000pt;}
.yca{bottom:691.600000pt;}
.yaa{bottom:692.600000pt;}
.y67{bottom:700.626667pt;}
.yc9{bottom:706.626667pt;}
.y92{bottom:707.626667pt;}
.y66{bottom:719.626667pt;}
.yc8{bottom:722.626667pt;}
.ya9{bottom:723.626667pt;}
.y91{bottom:724.626667pt;}
.yb4{bottom:729.626667pt;}
.yc7{bottom:737.666667pt;}
.y65{bottom:738.666667pt;}
.y90{bottom:742.666667pt;}
.yb3{bottom:745.666667pt;}
.yc6{bottom:752.666667pt;}
.y64{bottom:753.666667pt;}
.y8f{bottom:759.666667pt;}
.yb2{bottom:760.666667pt;}
.yc5{bottom:768.666667pt;}
.y63{bottom:769.666667pt;}
.yb1{bottom:772.706667pt;}
.y8e{bottom:776.706667pt;}
.yc4{bottom:780.706667pt;}
.y62{bottom:784.706667pt;}
.y8d{bottom:792.706667pt;}
.ya8{bottom:796.706667pt;}
.y61{bottom:799.706667pt;}
.y8c{bottom:807.706667pt;}
.y60{bottom:815.733333pt;}
.y8b{bottom:824.733333pt;}
.y5f{bottom:830.733333pt;}
.y8a{bottom:841.733333pt;}
.y5e{bottom:845.733333pt;}
.y89{bottom:859.773333pt;}
.y5d{bottom:861.773333pt;}
.y5c{bottom:876.773333pt;}
.y5b{bottom:891.800000pt;}
.yd{bottom:895.800000pt;}
.y5a{bottom:907.800000pt;}
.y6{bottom:918.800000pt;}
.y59{bottom:922.840000pt;}
.y58{bottom:937.840000pt;}
.y57{bottom:953.840000pt;}
.y56{bottom:968.866667pt;}
.y55{bottom:983.866667pt;}
.y54{bottom:999.893333pt;}
.y53{bottom:1014.893333pt;}
.h22{height:15.000000pt;}
.h21{height:16.000000pt;}
.hb{height:23.000000pt;}
.h13{height:26.033333pt;}
.h12{height:26.625000pt;}
.h2{height:29.000000pt;}
.h20{height:30.000000pt;}
.h1f{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1d{height:37.857422pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h23{height:46.066667pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h1e{height:57.382812pt;}
.h24{height:61.066667pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:210.200000pt;}
.h15{height:506.426667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:129.133333pt;}
.wb{width:182.240000pt;}
.w7{width:190.240000pt;}
.w9{width:232.266667pt;}
.wa{width:247.333333pt;}
.w8{width:474.600000pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.xf{left:12.000000pt;}
.x17{left:18.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x29{left:66.100000pt;}
.x4{left:72.099988pt;}
.x1f{left:82.099988pt;}
.x6{left:87.100000pt;}
.x18{left:96.133322pt;}
.x13{left:97.100000pt;}
.x14{left:99.100000pt;}
.x12{left:107.140000pt;}
.x2d{left:114.133322pt;}
.x11{left:119.140000pt;}
.x21{left:120.166655pt;}
.x23{left:163.199988pt;}
.x25{left:165.199988pt;}
.x1a{left:180.239988pt;}
.x15{left:190.233333pt;}
.x7{left:194.240000pt;}
.x1d{left:216.266655pt;}
.x28{left:239.306655pt;}
.x27{left:246.293322pt;}
.x16{left:255.333333pt;}
.xb{left:263.360000pt;}
.x10{left:274.340000pt;}
.x2b{left:298.373333pt;}
.x9{left:312.400000pt;}
.xa{left:329.426667pt;}
.xe{left:332.406667pt;}
.x20{left:381.506655pt;}
.xd{left:388.493333pt;}
.x1b{left:397.506655pt;}
.xc{left:408.533333pt;}
.x2c{left:546.693333pt;}
.x1c{left:634.799988pt;}
.x24{left:648.839988pt;}
.x26{left:662.839988pt;}
.x3{left:663.840000pt;}
.x19{left:675.866655pt;}
.x1e{left:677.866655pt;}
.x22{left:680.866655pt;}
}




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