
    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_bd540519d5039e6ffd2006a7.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_48c8980feb5dadc2b23dedb5.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_b2c0a42f18ac47bae8b020f3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5c8c6ca87efd86d3870cb54.woff')format("woff");}.ff4{font-family:ff4;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: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_9d1dd9c0e284f979b5553b43.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_a3ec329586c3d6601b390186.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_4f20af93fd5ec8eea375b5bd.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_a9ffd852a9c1bdeee4134f76.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_37a4af8ba38a5f96cd10ef59.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_2db0d5da4458ea27546bd0ab.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_c189c54705b5f5b143c1faaf.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_16e2ac8e72a22c6b8d8bb7b6.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_b337900f6a635bf4206dc911.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_fd27cd2710a4f9002f894dcf.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_e014080e37d13e417c25f26c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.891113;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.ls15{letter-spacing:-1.740000px;}
.lse{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.816000px;}
.lsb{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.108000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.013500px;}
.ls11{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.476000px;}
.ls12{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.906500px;}
.ls10{letter-spacing:1.917000px;}
.ls2{letter-spacing:1.966500px;}
.ls1{letter-spacing:2.034000px;}
.ls13{letter-spacing:2.164500px;}
.ls16{letter-spacing:2.220000px;}
.ls4{letter-spacing:2.250000px;}
.ls14{letter-spacing:2.310000px;}
.ls18{letter-spacing:2.370000px;}
.ls17{letter-spacing:2.430000px;}
.ls5{letter-spacing:4.779000px;}
.ls19{letter-spacing:46.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:-23.166000px;}
.ws8{word-spacing:-16.875000px;}
.wsd{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws7{word-spacing:-14.625000px;}
.ws6{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.wsc{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.wsb{word-spacing:-10.138500px;}
.ws9{word-spacing:-10.125000px;}
.ws5{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._8{margin-left:-11.376000px;}
._7{margin-left:-9.833550px;}
._a{margin-left:-8.131500px;}
._6{margin-left:-6.252450px;}
._18{margin-left:-5.142900px;}
._9{margin-left:-4.125600px;}
._2{margin-left:-2.526000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.114000px;}
._3{width:4.332000px;}
._c{width:5.650500px;}
._d{width:6.888000px;}
._14{width:7.923450px;}
._b{width:9.066000px;}
._5{width:10.170000px;}
._f{width:12.222000px;}
._19{width:13.290000px;}
._10{width:16.339500px;}
._13{width:17.344500px;}
._12{width:20.473500px;}
._e{width:21.501000px;}
._1a{width:24.850500px;}
._11{width:26.239500px;}
._16{width:30.276000px;}
._15{width:35.073000px;}
._17{width:38.421000px;}
._1e{width:48.443400px;}
._1c{width:52.819500px;}
._1b{width:61.258500px;}
._1d{width:67.035600px;}
.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;}
.y1b{bottom:1.125000px;}
.y3{bottom:3.375000px;}
.yaa{bottom:3.390000px;}
.y43{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yc7{bottom:4.530000px;}
.yf3{bottom:4.545000px;}
.yfe{bottom:5.655000px;}
.yde{bottom:5.670000px;}
.y97{bottom:6.750000px;}
.yd7{bottom:6.765000px;}
.ye1{bottom:6.795000px;}
.yf1{bottom:7.875000px;}
.ye{bottom:11.295000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.yc3{bottom:14.625000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.y42{bottom:20.295000px;}
.yc5{bottom:21.375000px;}
.y48{bottom:21.405000px;}
.yb6{bottom:21.420000px;}
.y96{bottom:23.625000px;}
.y18{bottom:28.125000px;}
.y46{bottom:29.280000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y41{bottom:38.295000px;}
.y47{bottom:40.545000px;}
.y94{bottom:41.655000px;}
.y45{bottom:43.920000px;}
.y17{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y40{bottom:55.215000px;}
.y16{bottom:60.795000px;}
.y1{bottom:61.912500px;}
.y3f{bottom:72.090000px;}
.y9{bottom:73.185000px;}
.y15{bottom:74.295000px;}
.y3e{bottom:90.120000px;}
.y14{bottom:91.200000px;}
.y8{bottom:93.435000px;}
.y102{bottom:103.575000px;}
.y3d{bottom:106.995000px;}
.y13{bottom:109.200000px;}
.y7{bottom:110.355000px;}
.y56{bottom:113.700000px;}
.yce{bottom:119.362500px;}
.y101{bottom:121.612500px;}
.y3c{bottom:123.870000px;}
.y92{bottom:126.112500px;}
.y12{bottom:128.370000px;}
.y55{bottom:130.612500px;}
.y2c{bottom:131.790000px;}
.ycd{bottom:132.862500px;}
.y3b{bottom:141.915000px;}
.y91{bottom:142.987500px;}
.y54{bottom:147.487500px;}
.y2b{bottom:148.665000px;}
.ycc{bottom:150.870000px;}
.y11{bottom:154.245000px;}
.y3a{bottom:158.790000px;}
.y90{bottom:161.025000px;}
.y53{bottom:165.525000px;}
.y2a{bottom:166.665000px;}
.ycb{bottom:168.900000px;}
.y39{bottom:175.695000px;}
.y8f{bottom:177.900000px;}
.y10{bottom:179.025000px;}
.y100{bottom:181.275000px;}
.y52{bottom:182.400000px;}
.y29{bottom:183.570000px;}
.yca{bottom:186.900000px;}
.y38{bottom:193.695000px;}
.y8e{bottom:194.775000px;}
.y51{bottom:199.275000px;}
.y28{bottom:200.445000px;}
.yc9{bottom:204.945000px;}
.y37{bottom:210.570000px;}
.y8d{bottom:212.820000px;}
.y50{bottom:217.320000px;}
.y27{bottom:218.490000px;}
.yff{bottom:220.695000px;}
.yc8{bottom:222.945000px;}
.y36{bottom:227.490000px;}
.y8c{bottom:229.695000px;}
.y4f{bottom:234.195000px;}
.y26{bottom:235.365000px;}
.yfd{bottom:238.695000px;}
.yc6{bottom:240.945000px;}
.y35{bottom:245.490000px;}
.y8b{bottom:246.600000px;}
.y4e{bottom:251.100000px;}
.y25{bottom:253.395000px;}
.yc4{bottom:258.975000px;}
.y34{bottom:262.395000px;}
.y8a{bottom:264.600000px;}
.y4d{bottom:269.100000px;}
.y24{bottom:270.270000px;}
.yfc{bottom:276.975000px;}
.y33{bottom:279.270000px;}
.y89{bottom:281.475000px;}
.y4c{bottom:286.005000px;}
.y23{bottom:288.270000px;}
.yc2{bottom:295.005000px;}
.y32{bottom:297.300000px;}
.yfb{bottom:298.380000px;}
.y88{bottom:298.395000px;}
.y4b{bottom:302.880000px;}
.y22{bottom:305.190000px;}
.y31{bottom:314.175000px;}
.y87{bottom:316.380000px;}
.y4a{bottom:320.880000px;}
.y21{bottom:323.175000px;}
.yc1{bottom:327.675000px;}
.y30{bottom:331.050000px;}
.y86{bottom:333.300000px;}
.yfa{bottom:336.675000px;}
.y49{bottom:337.800000px;}
.y20{bottom:340.095000px;}
.yc0{bottom:344.550000px;}
.y2f{bottom:349.095000px;}
.y85{bottom:350.175000px;}
.y44{bottom:352.425000px;}
.yf9{bottom:354.675000px;}
.ybf{bottom:359.175000px;}
.y2e{bottom:365.970000px;}
.y1f{bottom:367.095000px;}
.y84{bottom:368.205000px;}
.yf8{bottom:376.080000px;}
.ybe{bottom:377.205000px;}
.y2d{bottom:382.875000px;}
.y83{bottom:385.080000px;}
.y1e{bottom:385.125000px;}
.yf7{bottom:394.080000px;}
.ybd{bottom:395.205000px;}
.y82{bottom:401.955000px;}
.y1d{bottom:407.580000px;}
.ybc{bottom:413.250000px;}
.yf6{bottom:414.375000px;}
.y81{bottom:420.000000px;}
.ybb{bottom:431.250000px;}
.yf5{bottom:432.375000px;}
.y80{bottom:436.875000px;}
.yba{bottom:449.250000px;}
.yf4{bottom:453.780000px;}
.y7f{bottom:453.795000px;}
.yb9{bottom:467.280000px;}
.y7e{bottom:471.780000px;}
.yb8{bottom:485.280000px;}
.y7d{bottom:488.655000px;}
.yf2{bottom:492.030000px;}
.yb7{bottom:503.325000px;}
.y7c{bottom:505.575000px;}
.yf0{bottom:510.075000px;}
.yb5{bottom:521.325000px;}
.y7b{bottom:523.575000px;}
.yef{bottom:535.995000px;}
.y7a{bottom:540.495000px;}
.yee{bottom:552.870000px;}
.y79{bottom:557.370000px;}
.yb4{bottom:560.745000px;}
.yed{bottom:569.745000px;}
.y78{bottom:575.355000px;}
.yb3{bottom:577.650000px;}
.yec{bottom:587.775000px;}
.y77{bottom:592.275000px;}
.yb2{bottom:594.525000px;}
.yeb{bottom:604.650000px;}
.y76{bottom:609.150000px;}
.yb1{bottom:612.525000px;}
.yea{bottom:621.570000px;}
.y75{bottom:627.195000px;}
.yb0{bottom:629.445000px;}
.ye9{bottom:639.570000px;}
.y74{bottom:644.070000px;}
.yaf{bottom:646.320000px;}
.ye8{bottom:656.445000px;}
.y73{bottom:660.975000px;}
.yae{bottom:664.350000px;}
.ye7{bottom:673.350000px;}
.y72{bottom:678.975000px;}
.yad{bottom:681.225000px;}
.ye6{bottom:687.975000px;}
.y71{bottom:695.850000px;}
.yac{bottom:698.100000px;}
.ye5{bottom:708.255000px;}
.y70{bottom:712.770000px;}
.yab{bottom:715.005000px;}
.ya9{bottom:729.630000px;}
.y6f{bottom:730.755000px;}
.y6e{bottom:747.675000px;}
.y6d{bottom:764.550000px;}
.ya8{bottom:765.675000px;}
.ye4{bottom:769.050000px;}
.y6c{bottom:782.550000px;}
.ye3{bottom:787.080000px;}
.y6b{bottom:799.455000px;}
.y1a{bottom:803.955000px;}
.ya7{bottom:805.080000px;}
.ye2{bottom:807.330000px;}
.y6a{bottom:816.330000px;}
.ya6{bottom:821.955000px;}
.ye0{bottom:825.330000px;}
.yf{bottom:834.375000px;}
.ya5{bottom:838.875000px;}
.ydf{bottom:846.750000px;}
.y69{bottom:851.250000px;}
.ya4{bottom:856.875000px;}
.ydd{bottom:864.750000px;}
.y68{bottom:868.125000px;}
.ya3{bottom:873.795000px;}
.ydc{bottom:885.045000px;}
.y67{bottom:886.170000px;}
.ya2{bottom:890.670000px;}
.ydb{bottom:903.030000px;}
.y66{bottom:903.045000px;}
.ya1{bottom:905.295000px;}
.y65{bottom:919.950000px;}
.yda{bottom:924.450000px;}
.y64{bottom:937.950000px;}
.ya0{bottom:940.200000px;}
.yd9{bottom:942.450000px;}
.y63{bottom:954.870000px;}
.y9f{bottom:958.245000px;}
.yd8{bottom:962.745000px;}
.y62{bottom:971.745000px;}
.y9e{bottom:976.245000px;}
.yd6{bottom:980.730000px;}
.y61{bottom:989.745000px;}
.y9d{bottom:994.275000px;}
.yd5{bottom:1002.150000px;}
.y60{bottom:1006.650000px;}
.y9c{bottom:1012.275000px;}
.yd4{bottom:1020.150000px;}
.y5f{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.y9b{bottom:1030.275000px;}
.yd3{bottom:1040.445000px;}
.y5e{bottom:1041.570000px;}
.y9a{bottom:1048.320000px;}
.y6{bottom:1053.945000px;}
.y5d{bottom:1058.445000px;}
.y99{bottom:1066.320000px;}
.y5c{bottom:1075.320000px;}
.yd2{bottom:1079.850000px;}
.y98{bottom:1084.350000px;}
.y5b{bottom:1093.350000px;}
.yd1{bottom:1097.850000px;}
.y93{bottom:1102.350000px;}
.y5a{bottom:1110.225000px;}
.yd0{bottom:1119.255000px;}
.y95{bottom:1120.380000px;}
.y59{bottom:1127.130000px;}
.ycf{bottom:1137.255000px;}
.y58{bottom:1145.130000px;}
.y57{bottom:1162.050000px;}
.h29{height:16.860000px;}
.h23{height:16.875000px;}
.h24{height:16.912500px;}
.h28{height:17.985000px;}
.h1f{height:18.000000px;}
.h20{height:18.022500px;}
.h1e{height:18.037500px;}
.h2a{height:19.162500px;}
.h26{height:20.250000px;}
.h27{height:20.287500px;}
.h2b{height:21.375000px;}
.hb{height:25.912500px;}
.h25{height:28.125000px;}
.h11{height:29.953125px;}
.h12{height:30.412500px;}
.h2{height:32.662500px;}
.h21{height:34.897500px;}
.h22{height:34.912500px;}
.h8{height:37.125000px;}
.h1b{height:39.832031px;}
.h19{height:40.847168px;}
.h18{height:41.275635px;}
.h17{height:41.389893px;}
.h2c{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h1d{height:46.278809px;}
.h1c{height:46.458809px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h9{height:54.000000px;}
.h1a{height:55.162500px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:193.650000px;}
.h14{height:396.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w4{width:141.937500px;}
.wa{width:144.187500px;}
.w9{width:145.312500px;}
.wb{width:146.437500px;}
.wf{width:177.975000px;}
.w11{width:180.225000px;}
.wc{width:181.350000px;}
.w16{width:181.395000px;}
.wd{width:182.475000px;}
.we{width:182.520000px;}
.w15{width:183.645000px;}
.w7{width:209.520000px;}
.w14{width:362.700000px;}
.w12{width:363.825000px;}
.w13{width:364.950000px;}
.w10{width:369.450000px;}
.w8{width:522.675000px;}
.w5{width:590.250000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:6.750000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x14{left:20.280000px;}
.x10{left:72.067500px;}
.x11{left:76.567500px;}
.x1{left:81.112500px;}
.x16{left:82.237500px;}
.xf{left:83.362500px;}
.x5{left:97.987500px;}
.x2c{left:108.149987px;}
.xd{left:119.407500px;}
.xe{left:127.282500px;}
.x2d{left:135.187487px;}
.x23{left:188.099987px;}
.x12{left:214.012500px;}
.x15{left:215.144987px;}
.x24{left:216.254987px;}
.x6{left:223.050000px;}
.x17{left:228.675000px;}
.x27{left:229.799987px;}
.x29{left:236.549987px;}
.x25{left:261.345000px;}
.x20{left:264.720000px;}
.x28{left:265.845000px;}
.x9{left:284.955000px;}
.x13{left:290.625000px;}
.x1f{left:321.029987px;}
.x7{left:340.170000px;}
.x8{left:359.325000px;}
.xc{left:364.957500px;}
.x1c{left:372.870000px;}
.x19{left:373.995000px;}
.xb{left:425.775000px;}
.x21{left:447.195000px;}
.xa{left:448.320000px;}
.x1d{left:518.175000px;}
.x1a{left:520.425000px;}
.x2a{left:628.530000px;}
.x22{left:629.655000px;}
.x2b{left:630.780000px;}
.x26{left:631.950000px;}
.x1e{left:665.745000px;}
.x1b{left:666.870000px;}
.x3{left:740.070000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls15{letter-spacing:-1.546667pt;}
.lse{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.725333pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.012000pt;}
.ls11{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.312000pt;}
.ls12{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.694667pt;}
.ls10{letter-spacing:1.704000pt;}
.ls2{letter-spacing:1.748000pt;}
.ls1{letter-spacing:1.808000pt;}
.ls13{letter-spacing:1.924000pt;}
.ls16{letter-spacing:1.973333pt;}
.ls4{letter-spacing:2.000000pt;}
.ls14{letter-spacing:2.053333pt;}
.ls18{letter-spacing:2.106667pt;}
.ls17{letter-spacing:2.160000pt;}
.ls5{letter-spacing:4.248000pt;}
.ls19{letter-spacing:41.677333pt;}
.ws4{word-spacing:-20.592000pt;}
.ws8{word-spacing:-15.000000pt;}
.wsd{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws7{word-spacing:-13.000000pt;}
.ws6{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.wsc{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.wsb{word-spacing:-9.012000pt;}
.ws9{word-spacing:-9.000000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._8{margin-left:-10.112000pt;}
._7{margin-left:-8.740933pt;}
._a{margin-left:-7.228000pt;}
._6{margin-left:-5.557733pt;}
._18{margin-left:-4.571467pt;}
._9{margin-left:-3.667200pt;}
._2{margin-left:-2.245333pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.768000pt;}
._3{width:3.850667pt;}
._c{width:5.022667pt;}
._d{width:6.122667pt;}
._14{width:7.043067pt;}
._b{width:8.058667pt;}
._5{width:9.040000pt;}
._f{width:10.864000pt;}
._19{width:11.813333pt;}
._10{width:14.524000pt;}
._13{width:15.417333pt;}
._12{width:18.198667pt;}
._e{width:19.112000pt;}
._1a{width:22.089333pt;}
._11{width:23.324000pt;}
._16{width:26.912000pt;}
._15{width:31.176000pt;}
._17{width:34.152000pt;}
._1e{width:43.060800pt;}
._1c{width:46.950667pt;}
._1b{width:54.452000pt;}
._1d{width:59.587200pt;}
.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;}
.y1b{bottom:1.000000pt;}
.y3{bottom:3.000000pt;}
.yaa{bottom:3.013333pt;}
.y43{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yc7{bottom:4.026667pt;}
.yf3{bottom:4.040000pt;}
.yfe{bottom:5.026667pt;}
.yde{bottom:5.040000pt;}
.y97{bottom:6.000000pt;}
.yd7{bottom:6.013333pt;}
.ye1{bottom:6.040000pt;}
.yf1{bottom:7.000000pt;}
.ye{bottom:10.040000pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.yc3{bottom:13.000000pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.y42{bottom:18.040000pt;}
.yc5{bottom:19.000000pt;}
.y48{bottom:19.026667pt;}
.yb6{bottom:19.040000pt;}
.y96{bottom:21.000000pt;}
.y18{bottom:25.000000pt;}
.y46{bottom:26.026667pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y41{bottom:34.040000pt;}
.y47{bottom:36.040000pt;}
.y94{bottom:37.026667pt;}
.y45{bottom:39.040000pt;}
.y17{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y40{bottom:49.080000pt;}
.y16{bottom:54.040000pt;}
.y1{bottom:55.033333pt;}
.y3f{bottom:64.080000pt;}
.y9{bottom:65.053333pt;}
.y15{bottom:66.040000pt;}
.y3e{bottom:80.106667pt;}
.y14{bottom:81.066667pt;}
.y8{bottom:83.053333pt;}
.y102{bottom:92.066667pt;}
.y3d{bottom:95.106667pt;}
.y13{bottom:97.066667pt;}
.y7{bottom:98.093333pt;}
.y56{bottom:101.066667pt;}
.yce{bottom:106.100000pt;}
.y101{bottom:108.100000pt;}
.y3c{bottom:110.106667pt;}
.y92{bottom:112.100000pt;}
.y12{bottom:114.106667pt;}
.y55{bottom:116.100000pt;}
.y2c{bottom:117.146667pt;}
.ycd{bottom:118.100000pt;}
.y3b{bottom:126.146667pt;}
.y91{bottom:127.100000pt;}
.y54{bottom:131.100000pt;}
.y2b{bottom:132.146667pt;}
.ycc{bottom:134.106667pt;}
.y11{bottom:137.106667pt;}
.y3a{bottom:141.146667pt;}
.y90{bottom:143.133333pt;}
.y53{bottom:147.133333pt;}
.y2a{bottom:148.146667pt;}
.ycb{bottom:150.133333pt;}
.y39{bottom:156.173333pt;}
.y8f{bottom:158.133333pt;}
.y10{bottom:159.133333pt;}
.y100{bottom:161.133333pt;}
.y52{bottom:162.133333pt;}
.y29{bottom:163.173333pt;}
.yca{bottom:166.133333pt;}
.y38{bottom:172.173333pt;}
.y8e{bottom:173.133333pt;}
.y51{bottom:177.133333pt;}
.y28{bottom:178.173333pt;}
.yc9{bottom:182.173333pt;}
.y37{bottom:187.173333pt;}
.y8d{bottom:189.173333pt;}
.y50{bottom:193.173333pt;}
.y27{bottom:194.213333pt;}
.yff{bottom:196.173333pt;}
.yc8{bottom:198.173333pt;}
.y36{bottom:202.213333pt;}
.y8c{bottom:204.173333pt;}
.y4f{bottom:208.173333pt;}
.y26{bottom:209.213333pt;}
.yfd{bottom:212.173333pt;}
.yc6{bottom:214.173333pt;}
.y35{bottom:218.213333pt;}
.y8b{bottom:219.200000pt;}
.y4e{bottom:223.200000pt;}
.y25{bottom:225.240000pt;}
.yc4{bottom:230.200000pt;}
.y34{bottom:233.240000pt;}
.y8a{bottom:235.200000pt;}
.y4d{bottom:239.200000pt;}
.y24{bottom:240.240000pt;}
.yfc{bottom:246.200000pt;}
.y33{bottom:248.240000pt;}
.y89{bottom:250.200000pt;}
.y4c{bottom:254.226667pt;}
.y23{bottom:256.240000pt;}
.yc2{bottom:262.226667pt;}
.y32{bottom:264.266667pt;}
.yfb{bottom:265.226667pt;}
.y88{bottom:265.240000pt;}
.y4b{bottom:269.226667pt;}
.y22{bottom:271.280000pt;}
.y31{bottom:279.266667pt;}
.y87{bottom:281.226667pt;}
.y4a{bottom:285.226667pt;}
.y21{bottom:287.266667pt;}
.yc1{bottom:291.266667pt;}
.y30{bottom:294.266667pt;}
.y86{bottom:296.266667pt;}
.yfa{bottom:299.266667pt;}
.y49{bottom:300.266667pt;}
.y20{bottom:302.306667pt;}
.yc0{bottom:306.266667pt;}
.y2f{bottom:310.306667pt;}
.y85{bottom:311.266667pt;}
.y44{bottom:313.266667pt;}
.yf9{bottom:315.266667pt;}
.ybf{bottom:319.266667pt;}
.y2e{bottom:325.306667pt;}
.y1f{bottom:326.306667pt;}
.y84{bottom:327.293333pt;}
.yf8{bottom:334.293333pt;}
.ybe{bottom:335.293333pt;}
.y2d{bottom:340.333333pt;}
.y83{bottom:342.293333pt;}
.y1e{bottom:342.333333pt;}
.yf7{bottom:350.293333pt;}
.ybd{bottom:351.293333pt;}
.y82{bottom:357.293333pt;}
.y1d{bottom:362.293333pt;}
.ybc{bottom:367.333333pt;}
.yf6{bottom:368.333333pt;}
.y81{bottom:373.333333pt;}
.ybb{bottom:383.333333pt;}
.yf5{bottom:384.333333pt;}
.y80{bottom:388.333333pt;}
.yba{bottom:399.333333pt;}
.yf4{bottom:403.360000pt;}
.y7f{bottom:403.373333pt;}
.yb9{bottom:415.360000pt;}
.y7e{bottom:419.360000pt;}
.yb8{bottom:431.360000pt;}
.y7d{bottom:434.360000pt;}
.yf2{bottom:437.360000pt;}
.yb7{bottom:447.400000pt;}
.y7c{bottom:449.400000pt;}
.yf0{bottom:453.400000pt;}
.yb5{bottom:463.400000pt;}
.y7b{bottom:465.400000pt;}
.yef{bottom:476.440000pt;}
.y7a{bottom:480.440000pt;}
.yee{bottom:491.440000pt;}
.y79{bottom:495.440000pt;}
.yb4{bottom:498.440000pt;}
.yed{bottom:506.440000pt;}
.y78{bottom:511.426667pt;}
.yb3{bottom:513.466667pt;}
.yec{bottom:522.466667pt;}
.y77{bottom:526.466667pt;}
.yb2{bottom:528.466667pt;}
.yeb{bottom:537.466667pt;}
.y76{bottom:541.466667pt;}
.yb1{bottom:544.466667pt;}
.yea{bottom:552.506667pt;}
.y75{bottom:557.506667pt;}
.yb0{bottom:559.506667pt;}
.ye9{bottom:568.506667pt;}
.y74{bottom:572.506667pt;}
.yaf{bottom:574.506667pt;}
.ye8{bottom:583.506667pt;}
.y73{bottom:587.533333pt;}
.yae{bottom:590.533333pt;}
.ye7{bottom:598.533333pt;}
.y72{bottom:603.533333pt;}
.yad{bottom:605.533333pt;}
.ye6{bottom:611.533333pt;}
.y71{bottom:618.533333pt;}
.yac{bottom:620.533333pt;}
.ye5{bottom:629.560000pt;}
.y70{bottom:633.573333pt;}
.yab{bottom:635.560000pt;}
.ya9{bottom:648.560000pt;}
.y6f{bottom:649.560000pt;}
.y6e{bottom:664.600000pt;}
.y6d{bottom:679.600000pt;}
.ya8{bottom:680.600000pt;}
.ye4{bottom:683.600000pt;}
.y6c{bottom:695.600000pt;}
.ye3{bottom:699.626667pt;}
.y6b{bottom:710.626667pt;}
.y1a{bottom:714.626667pt;}
.ya7{bottom:715.626667pt;}
.ye2{bottom:717.626667pt;}
.y6a{bottom:725.626667pt;}
.ya6{bottom:730.626667pt;}
.ye0{bottom:733.626667pt;}
.yf{bottom:741.666667pt;}
.ya5{bottom:745.666667pt;}
.ydf{bottom:752.666667pt;}
.y69{bottom:756.666667pt;}
.ya4{bottom:761.666667pt;}
.ydd{bottom:768.666667pt;}
.y68{bottom:771.666667pt;}
.ya3{bottom:776.706667pt;}
.ydc{bottom:786.706667pt;}
.y67{bottom:787.706667pt;}
.ya2{bottom:791.706667pt;}
.ydb{bottom:802.693333pt;}
.y66{bottom:802.706667pt;}
.ya1{bottom:804.706667pt;}
.y65{bottom:817.733333pt;}
.yda{bottom:821.733333pt;}
.y64{bottom:833.733333pt;}
.ya0{bottom:835.733333pt;}
.yd9{bottom:837.733333pt;}
.y63{bottom:848.773333pt;}
.y9f{bottom:851.773333pt;}
.yd8{bottom:855.773333pt;}
.y62{bottom:863.773333pt;}
.y9e{bottom:867.773333pt;}
.yd6{bottom:871.760000pt;}
.y61{bottom:879.773333pt;}
.y9d{bottom:883.800000pt;}
.yd5{bottom:890.800000pt;}
.y60{bottom:894.800000pt;}
.y9c{bottom:899.800000pt;}
.yd4{bottom:906.800000pt;}
.y5f{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.y9b{bottom:915.800000pt;}
.yd3{bottom:924.840000pt;}
.y5e{bottom:925.840000pt;}
.y9a{bottom:931.840000pt;}
.y6{bottom:936.840000pt;}
.y5d{bottom:940.840000pt;}
.y99{bottom:947.840000pt;}
.y5c{bottom:955.840000pt;}
.yd2{bottom:959.866667pt;}
.y98{bottom:963.866667pt;}
.y5b{bottom:971.866667pt;}
.yd1{bottom:975.866667pt;}
.y93{bottom:979.866667pt;}
.y5a{bottom:986.866667pt;}
.yd0{bottom:994.893333pt;}
.y95{bottom:995.893333pt;}
.y59{bottom:1001.893333pt;}
.ycf{bottom:1010.893333pt;}
.y58{bottom:1017.893333pt;}
.y57{bottom:1032.933333pt;}
.h29{height:14.986667pt;}
.h23{height:15.000000pt;}
.h24{height:15.033333pt;}
.h28{height:15.986667pt;}
.h1f{height:16.000000pt;}
.h20{height:16.020000pt;}
.h1e{height:16.033333pt;}
.h2a{height:17.033333pt;}
.h26{height:18.000000pt;}
.h27{height:18.033333pt;}
.h2b{height:19.000000pt;}
.hb{height:23.033333pt;}
.h25{height:25.000000pt;}
.h11{height:26.625000pt;}
.h12{height:27.033333pt;}
.h2{height:29.033333pt;}
.h21{height:31.020000pt;}
.h22{height:31.033333pt;}
.h8{height:33.000000pt;}
.h1b{height:35.406250pt;}
.h19{height:36.308594pt;}
.h18{height:36.689453pt;}
.h17{height:36.791016pt;}
.h2c{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h1d{height:41.136719pt;}
.h1c{height:41.296719pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h9{height:48.000000pt;}
.h1a{height:49.033333pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:172.133333pt;}
.h14{height:352.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w4{width:126.166667pt;}
.wa{width:128.166667pt;}
.w9{width:129.166667pt;}
.wb{width:130.166667pt;}
.wf{width:158.200000pt;}
.w11{width:160.200000pt;}
.wc{width:161.200000pt;}
.w16{width:161.240000pt;}
.wd{width:162.200000pt;}
.we{width:162.240000pt;}
.w15{width:163.240000pt;}
.w7{width:186.240000pt;}
.w14{width:322.400000pt;}
.w12{width:323.400000pt;}
.w13{width:324.400000pt;}
.w10{width:328.400000pt;}
.w8{width:464.600000pt;}
.w5{width:524.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x14{left:18.026667pt;}
.x10{left:64.060000pt;}
.x11{left:68.060000pt;}
.x1{left:72.100000pt;}
.x16{left:73.100000pt;}
.xf{left:74.100000pt;}
.x5{left:87.100000pt;}
.x2c{left:96.133322pt;}
.xd{left:106.140000pt;}
.xe{left:113.140000pt;}
.x2d{left:120.166655pt;}
.x23{left:167.199988pt;}
.x12{left:190.233333pt;}
.x15{left:191.239988pt;}
.x24{left:192.226655pt;}
.x6{left:198.266667pt;}
.x17{left:203.266667pt;}
.x27{left:204.266655pt;}
.x29{left:210.266655pt;}
.x25{left:232.306667pt;}
.x20{left:235.306667pt;}
.x28{left:236.306667pt;}
.x9{left:253.293333pt;}
.x13{left:258.333333pt;}
.x1f{left:285.359988pt;}
.x7{left:302.373333pt;}
.x8{left:319.400000pt;}
.xc{left:324.406667pt;}
.x1c{left:331.440000pt;}
.x19{left:332.440000pt;}
.xb{left:378.466667pt;}
.x21{left:397.506667pt;}
.xa{left:398.506667pt;}
.x1d{left:460.600000pt;}
.x1a{left:462.600000pt;}
.x2a{left:558.693333pt;}
.x22{left:559.693333pt;}
.x2b{left:560.693333pt;}
.x26{left:561.733333pt;}
.x1e{left:591.773333pt;}
.x1b{left:592.773333pt;}
.x3{left:657.840000pt;}
}




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