
    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_ed19094558f597bf932052c6.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_6b2074c4f71e32b70067591e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_53b1e1352051f1db2ae679d8.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_440e97e26fa2b2b5215de86e.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_dc0bd8282f76e3e5898b402c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d7b3b5904423443a703640c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fbe6e3ceacc1fd59abd99ada.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_12041272c5e47a14250c4b1b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_40c9a3858ecfaefba9be3878.woff')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_9964c6f0e22bddd42b73d806.woff')format("woff");}.ffd{font-family:ffd;line-height:1.091309;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_633c061bc297df70c613bb92.woff')format("woff");}.ffe{font-family:ffe;line-height:1.030273;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_aaccd3816c695351baf075a5.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_530f94e53e899820633fa17b.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_67b748e07d817612232923b2.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_55bb99ad6446db92f6265ba3.woff')format("woff");}.ff12{font-family:ff12;line-height:1.030273;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_89f7fc5d3e7adcaa872a5a49.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_14db95e1ef396fafb5bf830a.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_b2a2e6b29c63d7d625accf1a.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_dd6ce5a37182fca95345ed83.woff')format("woff");}.ff18{font-family:ff18;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls20{letter-spacing:-2.250000px;}
.ls14{letter-spacing:-1.740000px;}
.ls12{letter-spacing:-1.482000px;}
.lsd{letter-spacing:-1.224000px;}
.ls13{letter-spacing:-1.128000px;}
.lsf{letter-spacing:-1.074000px;}
.ls1a{letter-spacing:-1.026000px;}
.lsb{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.090000px;}
.lsc{letter-spacing:0.690000px;}
.ls16{letter-spacing:0.994500px;}
.ls6{letter-spacing:1.210500px;}
.ls1e{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.596000px;}
.ls17{letter-spacing:1.857000px;}
.ls2{letter-spacing:2.034000px;}
.ls19{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.190000px;}
.ls18{letter-spacing:2.220000px;}
.ls4{letter-spacing:2.250000px;}
.ls1c{letter-spacing:2.310000px;}
.ls1d{letter-spacing:2.370000px;}
.ls1b{letter-spacing:2.430000px;}
.ls0{letter-spacing:5.796000px;}
.ls7{letter-spacing:6.124500px;}
.ls3{letter-spacing:15.252000px;}
.ls1f{letter-spacing:15.387000px;}
.ls15{letter-spacing:46.887000px;}
.ls11{letter-spacing:64.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;}
}
.ws9{word-spacing:-16.875000px;}
.wse{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws1{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.354000px;}
.ws8{word-spacing:-14.625000px;}
.wsd{word-spacing:-13.599000px;}
.wsc{word-spacing:-13.143000px;}
.ws10{word-spacing:-12.375000px;}
.wsa{word-spacing:-11.875500px;}
.ws0{word-spacing:-11.826000px;}
.ws7{word-spacing:-8.208000px;}
.ws6{word-spacing:-8.136000px;}
.ws4{word-spacing:-7.308000px;}
.ws5{word-spacing:-6.084000px;}
.wsb{word-spacing:0.000000px;}
._8{margin-left:-10.641300px;}
._9{margin-left:-8.561700px;}
._a{margin-left:-7.004700px;}
._1{margin-left:-5.670000px;}
._3{margin-left:-3.816000px;}
._2{margin-left:-1.890000px;}
._0{width:1.944000px;}
._4{width:3.174000px;}
._6{width:5.046000px;}
._5{width:6.102000px;}
._b{width:7.120500px;}
._d{width:8.511000px;}
._14{width:9.694500px;}
._7{width:10.818000px;}
._f{width:11.947500px;}
._e{width:12.996000px;}
._12{width:16.407000px;}
._10{width:17.586000px;}
._c{width:20.904000px;}
._13{width:22.126500px;}
._11{width:25.921500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(10,29,48);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(10,47,65);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs2{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.ybb{bottom:3.390000px;}
.ydf{bottom:3.405000px;}
.y19{bottom:4.500000px;}
.y43{bottom:4.545000px;}
.y46{bottom:10.140000px;}
.ye{bottom:11.295000px;}
.yc{bottom:13.500000px;}
.y1b{bottom:14.670000px;}
.y4{bottom:15.750000px;}
.y2{bottom:20.287500px;}
.y42{bottom:21.420000px;}
.y47{bottom:22.500000px;}
.y45{bottom:24.750000px;}
.y18{bottom:27.045000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y41{bottom:38.295000px;}
.y17{bottom:43.920000px;}
.ya{bottom:46.155000px;}
.y40{bottom:56.325000px;}
.y1{bottom:59.662500px;}
.y16{bottom:60.795000px;}
.y9{bottom:73.185000px;}
.y3f{bottom:73.200000px;}
.y15{bottom:76.575000px;}
.y14{bottom:86.700000px;}
.y3e{bottom:90.120000px;}
.y8{bottom:93.435000px;}
.y13{bottom:101.325000px;}
.ycc{bottom:104.700000px;}
.y3d{bottom:108.120000px;}
.y7{bottom:110.355000px;}
.y56{bottom:113.700000px;}
.y11d{bottom:115.950000px;}
.yfd{bottom:119.362500px;}
.y12{bottom:120.495000px;}
.ycb{bottom:122.737500px;}
.y3c{bottom:124.995000px;}
.y55{bottom:130.612500px;}
.y11c{bottom:132.862500px;}
.yfc{bottom:136.237500px;}
.yca{bottom:139.612500px;}
.y3b{bottom:141.915000px;}
.y11{bottom:146.400000px;}
.y54{bottom:148.612500px;}
.y11b{bottom:149.737500px;}
.y91{bottom:150.870000px;}
.y2b{bottom:150.915000px;}
.yfb{bottom:154.245000px;}
.yc9{bottom:156.480000px;}
.y3a{bottom:159.900000px;}
.y53{bottom:165.525000px;}
.y2a{bottom:166.650000px;}
.y11a{bottom:167.775000px;}
.y90{bottom:170.025000px;}
.y10{bottom:171.150000px;}
.yc8{bottom:174.525000px;}
.y39{bottom:176.820000px;}
.y52{bottom:182.400000px;}
.y119{bottom:184.650000px;}
.y29{bottom:184.695000px;}
.y8f{bottom:186.900000px;}
.yfa{bottom:188.025000px;}
.yc7{bottom:191.400000px;}
.y38{bottom:193.695000px;}
.y51{bottom:200.400000px;}
.y28{bottom:201.570000px;}
.y8e{bottom:203.820000px;}
.yf9{bottom:206.070000px;}
.yc6{bottom:208.320000px;}
.y37{bottom:211.695000px;}
.y50{bottom:217.320000px;}
.y27{bottom:218.490000px;}
.y118{bottom:219.570000px;}
.y8d{bottom:222.945000px;}
.yc5{bottom:226.320000px;}
.y36{bottom:228.615000px;}
.y4f{bottom:234.195000px;}
.y117{bottom:236.445000px;}
.y26{bottom:236.490000px;}
.y8c{bottom:239.820000px;}
.yc4{bottom:244.350000px;}
.y35{bottom:245.490000px;}
.y4e{bottom:252.225000px;}
.y116{bottom:253.350000px;}
.y25{bottom:253.365000px;}
.y8b{bottom:257.850000px;}
.y34{bottom:263.520000px;}
.yc3{bottom:267.975000px;}
.y4d{bottom:269.100000px;}
.y115{bottom:271.350000px;}
.y24{bottom:271.395000px;}
.yf8{bottom:274.725000px;}
.y8a{bottom:275.850000px;}
.y33{bottom:280.395000px;}
.y4c{bottom:286.005000px;}
.y23{bottom:288.270000px;}
.yf7{bottom:291.645000px;}
.yc2{bottom:293.880000px;}
.y89{bottom:295.020000px;}
.y32{bottom:297.315000px;}
.y4b{bottom:304.005000px;}
.y114{bottom:305.145000px;}
.y22{bottom:306.300000px;}
.yf6{bottom:309.630000px;}
.yc1{bottom:310.755000px;}
.y88{bottom:311.895000px;}
.y31{bottom:315.300000px;}
.y4a{bottom:320.880000px;}
.y113{bottom:323.130000px;}
.y21{bottom:323.175000px;}
.yf5{bottom:326.550000px;}
.yc0{bottom:327.675000px;}
.y87{bottom:328.800000px;}
.y30{bottom:332.175000px;}
.y49{bottom:337.800000px;}
.y112{bottom:340.050000px;}
.y20{bottom:341.220000px;}
.yf4{bottom:343.425000px;}
.ybf{bottom:345.675000px;}
.y86{bottom:346.800000px;}
.y2f{bottom:349.095000px;}
.y48{bottom:355.800000px;}
.y111{bottom:356.925000px;}
.y1f{bottom:359.220000px;}
.yf3{bottom:361.425000px;}
.y85{bottom:363.675000px;}
.y2e{bottom:367.095000px;}
.y44{bottom:369.330000px;}
.y110{bottom:374.955000px;}
.yf2{bottom:378.330000px;}
.y84{bottom:380.580000px;}
.y2d{bottom:384.000000px;}
.y1e{bottom:385.125000px;}
.ybe{bottom:387.330000px;}
.y10f{bottom:391.830000px;}
.yf1{bottom:395.205000px;}
.y83{bottom:398.580000px;}
.y2c{bottom:400.875000px;}
.y1d{bottom:403.125000px;}
.y1c{bottom:405.330000px;}
.y10e{bottom:408.705000px;}
.ybd{bottom:409.875000px;}
.yf0{bottom:413.250000px;}
.y82{bottom:415.500000px;}
.y10d{bottom:426.750000px;}
.yef{bottom:430.125000px;}
.y81{bottom:432.375000px;}
.ybc{bottom:433.500000px;}
.y10c{bottom:443.625000px;}
.yee{bottom:447.000000px;}
.y80{bottom:451.530000px;}
.yba{bottom:457.155000px;}
.y10b{bottom:460.545000px;}
.yed{bottom:465.030000px;}
.y7f{bottom:469.545000px;}
.y10a{bottom:478.530000px;}
.yec{bottom:483.030000px;}
.yb9{bottom:483.045000px;}
.y7e{bottom:487.545000px;}
.y109{bottom:495.450000px;}
.yb8{bottom:499.950000px;}
.y7d{bottom:506.700000px;}
.y108{bottom:512.325000px;}
.yb7{bottom:516.825000px;}
.y7c{bottom:524.700000px;}
.yeb{bottom:529.200000px;}
.y107{bottom:530.325000px;}
.yb6{bottom:534.855000px;}
.y7b{bottom:541.605000px;}
.y106{bottom:547.245000px;}
.yb5{bottom:551.730000px;}
.yea{bottom:555.105000px;}
.y7a{bottom:559.620000px;}
.y105{bottom:564.120000px;}
.yb4{bottom:568.605000px;}
.ye9{bottom:573.120000px;}
.y79{bottom:577.650000px;}
.y104{bottom:582.150000px;}
.yb3{bottom:586.650000px;}
.ye8{bottom:590.025000px;}
.y78{bottom:595.650000px;}
.y103{bottom:599.025000px;}
.yb2{bottom:603.525000px;}
.ye7{bottom:606.900000px;}
.y77{bottom:613.650000px;}
.y102{bottom:615.900000px;}
.yb1{bottom:621.570000px;}
.ye6{bottom:624.945000px;}
.y76{bottom:631.695000px;}
.y101{bottom:633.945000px;}
.yb0{bottom:639.570000px;}
.ye5{bottom:642.945000px;}
.y75{bottom:648.570000px;}
.y100{bottom:650.820000px;}
.yaf{bottom:658.695000px;}
.y74{bottom:665.475000px;}
.ye4{bottom:666.600000px;}
.yff{bottom:667.725000px;}
.yae{bottom:675.600000px;}
.y73{bottom:684.600000px;}
.yfe{bottom:685.725000px;}
.ye3{bottom:689.100000px;}
.yad{bottom:692.475000px;}
.y72{bottom:702.645000px;}
.yac{bottom:710.505000px;}
.ye2{bottom:712.755000px;}
.y71{bottom:719.520000px;}
.yab{bottom:727.380000px;}
.ye1{bottom:736.380000px;}
.y70{bottom:737.505000px;}
.yaa{bottom:744.300000px;}
.y6f{bottom:754.425000px;}
.ye0{bottom:758.925000px;}
.ya9{bottom:762.300000px;}
.y6e{bottom:771.300000px;}
.ya8{bottom:779.175000px;}
.yde{bottom:782.550000px;}
.y6d{bottom:789.330000px;}
.ya7{bottom:796.080000px;}
.y6c{bottom:806.205000px;}
.ydd{bottom:808.455000px;}
.ya6{bottom:814.080000px;}
.y1a{bottom:819.705000px;}
.y6b{bottom:823.080000px;}
.ydc{bottom:825.330000px;}
.ya5{bottom:831.000000px;}
.y6a{bottom:841.125000px;}
.ydb{bottom:843.375000px;}
.ya4{bottom:847.875000px;}
.yf{bottom:849.000000px;}
.y69{bottom:858.000000px;}
.yda{bottom:860.250000px;}
.ya3{bottom:865.875000px;}
.y68{bottom:874.920000px;}
.yd9{bottom:877.170000px;}
.ya2{bottom:882.795000px;}
.y67{bottom:892.920000px;}
.yd8{bottom:895.170000px;}
.ya1{bottom:900.795000px;}
.y66{bottom:909.795000px;}
.yd7{bottom:913.200000px;}
.ya0{bottom:919.950000px;}
.y65{bottom:926.700000px;}
.y9f{bottom:936.825000px;}
.y64{bottom:944.700000px;}
.y9e{bottom:953.745000px;}
.yd6{bottom:959.370000px;}
.y63{bottom:961.620000px;}
.y9d{bottom:972.870000px;}
.y62{bottom:978.495000px;}
.yd5{bottom:985.245000px;}
.y9c{bottom:989.745000px;}
.y61{bottom:996.525000px;}
.yd4{bottom:1003.275000px;}
.y9b{bottom:1007.775000px;}
.y60{bottom:1013.400000px;}
.yd3{bottom:1020.150000px;}
.y9a{bottom:1025.775000px;}
.y5f{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.yd2{bottom:1037.070000px;}
.y99{bottom:1044.945000px;}
.y5e{bottom:1048.320000px;}
.yd1{bottom:1055.070000px;}
.y6{bottom:1060.695000px;}
.y98{bottom:1061.820000px;}
.y5d{bottom:1065.195000px;}
.yd0{bottom:1073.070000px;}
.y97{bottom:1078.725000px;}
.y5c{bottom:1082.100000px;}
.ycf{bottom:1096.725000px;}
.y96{bottom:1097.850000px;}
.y5b{bottom:1100.100000px;}
.y95{bottom:1114.725000px;}
.y5a{bottom:1116.975000px;}
.yce{bottom:1119.255000px;}
.y94{bottom:1132.755000px;}
.y59{bottom:1133.880000px;}
.ycd{bottom:1142.880000px;}
.y93{bottom:1150.755000px;}
.y58{bottom:1151.880000px;}
.y92{bottom:1167.675000px;}
.y57{bottom:1168.800000px;}
.h27{height:16.860000px;}
.h22{height:16.875000px;}
.h24{height:16.912500px;}
.h25{height:17.985000px;}
.h23{height:18.000000px;}
.h26{height:18.037500px;}
.hd{height:25.912500px;}
.h16{height:29.287500px;}
.h15{height:29.953125px;}
.h2{height:32.662500px;}
.h14{height:35.806641px;}
.h20{height:36.000000px;}
.h9{height:37.125000px;}
.h1f{height:40.847168px;}
.h1e{height:41.275635px;}
.h1d{height:41.838135px;}
.h21{height:42.589600px;}
.h10{height:43.075195px;}
.h4{height:43.453125px;}
.hb{height:43.875000px;}
.h1c{height:48.216797px;}
.h1a{height:49.234131px;}
.h1b{height:49.445068px;}
.he{height:50.625000px;}
.h13{height:50.787598px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h8{height:57.052002px;}
.h12{height:58.185791px;}
.h17{height:58.601074px;}
.h6{height:60.855469px;}
.h11{height:64.237500px;}
.h18{height:69.114990px;}
.hc{height:71.613281px;}
.h5{height:73.722656px;}
.h7{height:121.612500px;}
.hf{height:185.775000px;}
.h19{height:414.375000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:73.237500px;}
.w17{width:75.487500px;}
.w13{width:85.612500px;}
.wc{width:100.275000px;}
.w4{width:152.055000px;}
.w10{width:162.180000px;}
.w18{width:188.100000px;}
.w1c{width:191.520000px;}
.we{width:192.645000px;}
.w9{width:193.725000px;}
.w15{width:198.270000px;}
.wf{width:202.755000px;}
.wa{width:205.020000px;}
.w19{width:207.255000px;}
.w16{width:209.505000px;}
.wb{width:216.255000px;}
.w1a{width:218.505000px;}
.w7{width:224.145000px;}
.w11{width:226.380000px;}
.w14{width:230.925000px;}
.w12{width:238.845000px;}
.wd{width:246.675000px;}
.w1b{width:280.470000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.125000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x13{left:12.405000px;}
.x14{left:14.655000px;}
.x10{left:56.325000px;}
.xf{left:57.450000px;}
.x1{left:81.112500px;}
.x18{left:84.487500px;}
.xe{left:87.862500px;}
.x5{left:97.987500px;}
.x15{left:108.149987px;}
.xd{left:123.907500px;}
.x16{left:135.187487px;}
.x11{left:214.012500px;}
.x6{left:233.175000px;}
.x23{left:250.095000px;}
.x9{left:273.705000px;}
.x2a{left:275.970000px;}
.x1a{left:281.625000px;}
.x12{left:305.250000px;}
.x26{left:307.499987px;}
.x17{left:309.779987px;}
.x22{left:318.794987px;}
.x27{left:319.920000px;}
.x7{left:328.920000px;}
.x1d{left:330.029987px;}
.xc{left:331.162500px;}
.x1e{left:334.545000px;}
.x8{left:348.075000px;}
.x2c{left:352.574987px;}
.xb{left:364.957500px;}
.x2d{left:368.370000px;}
.xa{left:437.055000px;}
.x21{left:447.194987px;}
.x24{left:480.975000px;}
.x2b{left:486.645000px;}
.x1b{left:490.020000px;}
.x28{left:521.550000px;}
.x1f{left:530.550000px;}
.x2e{left:618.405000px;}
.x1c{left:709.650000px;}
.x25{left:724.320000px;}
.x29{left:734.445000px;}
.x20{left:736.695000px;}
.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;}
.ls20{letter-spacing:-2.000000pt;}
.ls14{letter-spacing:-1.546667pt;}
.ls12{letter-spacing:-1.317333pt;}
.lsd{letter-spacing:-1.088000pt;}
.ls13{letter-spacing:-1.002667pt;}
.lsf{letter-spacing:-0.954667pt;}
.ls1a{letter-spacing:-0.912000pt;}
.lsb{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.080000pt;}
.lsc{letter-spacing:0.613333pt;}
.ls16{letter-spacing:0.884000pt;}
.ls6{letter-spacing:1.076000pt;}
.ls1e{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.418667pt;}
.ls17{letter-spacing:1.650667pt;}
.ls2{letter-spacing:1.808000pt;}
.ls19{letter-spacing:1.924000pt;}
.ls5{letter-spacing:1.946667pt;}
.ls18{letter-spacing:1.973333pt;}
.ls4{letter-spacing:2.000000pt;}
.ls1c{letter-spacing:2.053333pt;}
.ls1d{letter-spacing:2.106667pt;}
.ls1b{letter-spacing:2.160000pt;}
.ls0{letter-spacing:5.152000pt;}
.ls7{letter-spacing:5.444000pt;}
.ls3{letter-spacing:13.557333pt;}
.ls1f{letter-spacing:13.677333pt;}
.ls15{letter-spacing:41.677333pt;}
.ls11{letter-spacing:57.677333pt;}
.ws9{word-spacing:-15.000000pt;}
.wse{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws1{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws8{word-spacing:-13.000000pt;}
.wsd{word-spacing:-12.088000pt;}
.wsc{word-spacing:-11.682667pt;}
.ws10{word-spacing:-11.000000pt;}
.wsa{word-spacing:-10.556000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws7{word-spacing:-7.296000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws4{word-spacing:-6.496000pt;}
.ws5{word-spacing:-5.408000pt;}
.wsb{word-spacing:0.000000pt;}
._8{margin-left:-9.458933pt;}
._9{margin-left:-7.610400pt;}
._a{margin-left:-6.226400pt;}
._1{margin-left:-5.040000pt;}
._3{margin-left:-3.392000pt;}
._2{margin-left:-1.680000pt;}
._0{width:1.728000pt;}
._4{width:2.821333pt;}
._6{width:4.485333pt;}
._5{width:5.424000pt;}
._b{width:6.329333pt;}
._d{width:7.565333pt;}
._14{width:8.617333pt;}
._7{width:9.616000pt;}
._f{width:10.620000pt;}
._e{width:11.552000pt;}
._12{width:14.584000pt;}
._10{width:15.632000pt;}
._c{width:18.581333pt;}
._13{width:19.668000pt;}
._11{width:23.041333pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs2{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.ybb{bottom:3.013333pt;}
.ydf{bottom:3.026667pt;}
.y19{bottom:4.000000pt;}
.y43{bottom:4.040000pt;}
.y46{bottom:9.013333pt;}
.ye{bottom:10.040000pt;}
.yc{bottom:12.000000pt;}
.y1b{bottom:13.040000pt;}
.y4{bottom:14.000000pt;}
.y2{bottom:18.033333pt;}
.y42{bottom:19.040000pt;}
.y47{bottom:20.000000pt;}
.y45{bottom:22.000000pt;}
.y18{bottom:24.040000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y41{bottom:34.040000pt;}
.y17{bottom:39.040000pt;}
.ya{bottom:41.026667pt;}
.y40{bottom:50.066667pt;}
.y1{bottom:53.033333pt;}
.y16{bottom:54.040000pt;}
.y9{bottom:65.053333pt;}
.y3f{bottom:65.066667pt;}
.y15{bottom:68.066667pt;}
.y14{bottom:77.066667pt;}
.y3e{bottom:80.106667pt;}
.y8{bottom:83.053333pt;}
.y13{bottom:90.066667pt;}
.ycc{bottom:93.066667pt;}
.y3d{bottom:96.106667pt;}
.y7{bottom:98.093333pt;}
.y56{bottom:101.066667pt;}
.y11d{bottom:103.066667pt;}
.yfd{bottom:106.100000pt;}
.y12{bottom:107.106667pt;}
.ycb{bottom:109.100000pt;}
.y3c{bottom:111.106667pt;}
.y55{bottom:116.100000pt;}
.y11c{bottom:118.100000pt;}
.yfc{bottom:121.100000pt;}
.yca{bottom:124.100000pt;}
.y3b{bottom:126.146667pt;}
.y11{bottom:130.133333pt;}
.y54{bottom:132.100000pt;}
.y11b{bottom:133.100000pt;}
.y91{bottom:134.106667pt;}
.y2b{bottom:134.146667pt;}
.yfb{bottom:137.106667pt;}
.yc9{bottom:139.093333pt;}
.y3a{bottom:142.133333pt;}
.y53{bottom:147.133333pt;}
.y2a{bottom:148.133333pt;}
.y11a{bottom:149.133333pt;}
.y90{bottom:151.133333pt;}
.y10{bottom:152.133333pt;}
.yc8{bottom:155.133333pt;}
.y39{bottom:157.173333pt;}
.y52{bottom:162.133333pt;}
.y119{bottom:164.133333pt;}
.y29{bottom:164.173333pt;}
.y8f{bottom:166.133333pt;}
.yfa{bottom:167.133333pt;}
.yc7{bottom:170.133333pt;}
.y38{bottom:172.173333pt;}
.y51{bottom:178.133333pt;}
.y28{bottom:179.173333pt;}
.y8e{bottom:181.173333pt;}
.yf9{bottom:183.173333pt;}
.yc6{bottom:185.173333pt;}
.y37{bottom:188.173333pt;}
.y50{bottom:193.173333pt;}
.y27{bottom:194.213333pt;}
.y118{bottom:195.173333pt;}
.y8d{bottom:198.173333pt;}
.yc5{bottom:201.173333pt;}
.y36{bottom:203.213333pt;}
.y4f{bottom:208.173333pt;}
.y117{bottom:210.173333pt;}
.y26{bottom:210.213333pt;}
.y8c{bottom:213.173333pt;}
.yc4{bottom:217.200000pt;}
.y35{bottom:218.213333pt;}
.y4e{bottom:224.200000pt;}
.y116{bottom:225.200000pt;}
.y25{bottom:225.213333pt;}
.y8b{bottom:229.200000pt;}
.y34{bottom:234.240000pt;}
.yc3{bottom:238.200000pt;}
.y4d{bottom:239.200000pt;}
.y115{bottom:241.200000pt;}
.y24{bottom:241.240000pt;}
.yf8{bottom:244.200000pt;}
.y8a{bottom:245.200000pt;}
.y33{bottom:249.240000pt;}
.y4c{bottom:254.226667pt;}
.y23{bottom:256.240000pt;}
.yf7{bottom:259.240000pt;}
.yc2{bottom:261.226667pt;}
.y89{bottom:262.240000pt;}
.y32{bottom:264.280000pt;}
.y4b{bottom:270.226667pt;}
.y114{bottom:271.240000pt;}
.y22{bottom:272.266667pt;}
.yf6{bottom:275.226667pt;}
.yc1{bottom:276.226667pt;}
.y88{bottom:277.240000pt;}
.y31{bottom:280.266667pt;}
.y4a{bottom:285.226667pt;}
.y113{bottom:287.226667pt;}
.y21{bottom:287.266667pt;}
.yf5{bottom:290.266667pt;}
.yc0{bottom:291.266667pt;}
.y87{bottom:292.266667pt;}
.y30{bottom:295.266667pt;}
.y49{bottom:300.266667pt;}
.y112{bottom:302.266667pt;}
.y20{bottom:303.306667pt;}
.yf4{bottom:305.266667pt;}
.ybf{bottom:307.266667pt;}
.y86{bottom:308.266667pt;}
.y2f{bottom:310.306667pt;}
.y48{bottom:316.266667pt;}
.y111{bottom:317.266667pt;}
.y1f{bottom:319.306667pt;}
.yf3{bottom:321.266667pt;}
.y85{bottom:323.266667pt;}
.y2e{bottom:326.306667pt;}
.y44{bottom:328.293333pt;}
.y110{bottom:333.293333pt;}
.yf2{bottom:336.293333pt;}
.y84{bottom:338.293333pt;}
.y2d{bottom:341.333333pt;}
.y1e{bottom:342.333333pt;}
.ybe{bottom:344.293333pt;}
.y10f{bottom:348.293333pt;}
.yf1{bottom:351.293333pt;}
.y83{bottom:354.293333pt;}
.y2c{bottom:356.333333pt;}
.y1d{bottom:358.333333pt;}
.y1c{bottom:360.293333pt;}
.y10e{bottom:363.293333pt;}
.ybd{bottom:364.333333pt;}
.yf0{bottom:367.333333pt;}
.y82{bottom:369.333333pt;}
.y10d{bottom:379.333333pt;}
.yef{bottom:382.333333pt;}
.y81{bottom:384.333333pt;}
.ybc{bottom:385.333333pt;}
.y10c{bottom:394.333333pt;}
.yee{bottom:397.333333pt;}
.y80{bottom:401.360000pt;}
.yba{bottom:406.360000pt;}
.y10b{bottom:409.373333pt;}
.yed{bottom:413.360000pt;}
.y7f{bottom:417.373333pt;}
.y10a{bottom:425.360000pt;}
.yec{bottom:429.360000pt;}
.yb9{bottom:429.373333pt;}
.y7e{bottom:433.373333pt;}
.y109{bottom:440.400000pt;}
.yb8{bottom:444.400000pt;}
.y7d{bottom:450.400000pt;}
.y108{bottom:455.400000pt;}
.yb7{bottom:459.400000pt;}
.y7c{bottom:466.400000pt;}
.yeb{bottom:470.400000pt;}
.y107{bottom:471.400000pt;}
.yb6{bottom:475.426667pt;}
.y7b{bottom:481.426667pt;}
.y106{bottom:486.440000pt;}
.yb5{bottom:490.426667pt;}
.yea{bottom:493.426667pt;}
.y7a{bottom:497.440000pt;}
.y105{bottom:501.440000pt;}
.yb4{bottom:505.426667pt;}
.ye9{bottom:509.440000pt;}
.y79{bottom:513.466667pt;}
.y104{bottom:517.466667pt;}
.yb3{bottom:521.466667pt;}
.ye8{bottom:524.466667pt;}
.y78{bottom:529.466667pt;}
.y103{bottom:532.466667pt;}
.yb2{bottom:536.466667pt;}
.ye7{bottom:539.466667pt;}
.y77{bottom:545.466667pt;}
.y102{bottom:547.466667pt;}
.yb1{bottom:552.506667pt;}
.ye6{bottom:555.506667pt;}
.y76{bottom:561.506667pt;}
.y101{bottom:563.506667pt;}
.yb0{bottom:568.506667pt;}
.ye5{bottom:571.506667pt;}
.y75{bottom:576.506667pt;}
.y100{bottom:578.506667pt;}
.yaf{bottom:585.506667pt;}
.y74{bottom:591.533333pt;}
.ye4{bottom:592.533333pt;}
.yff{bottom:593.533333pt;}
.yae{bottom:600.533333pt;}
.y73{bottom:608.533333pt;}
.yfe{bottom:609.533333pt;}
.ye3{bottom:612.533333pt;}
.yad{bottom:615.533333pt;}
.y72{bottom:624.573333pt;}
.yac{bottom:631.560000pt;}
.ye2{bottom:633.560000pt;}
.y71{bottom:639.573333pt;}
.yab{bottom:646.560000pt;}
.ye1{bottom:654.560000pt;}
.y70{bottom:655.560000pt;}
.yaa{bottom:661.600000pt;}
.y6f{bottom:670.600000pt;}
.ye0{bottom:674.600000pt;}
.ya9{bottom:677.600000pt;}
.y6e{bottom:685.600000pt;}
.ya8{bottom:692.600000pt;}
.yde{bottom:695.600000pt;}
.y6d{bottom:701.626667pt;}
.ya7{bottom:707.626667pt;}
.y6c{bottom:716.626667pt;}
.ydd{bottom:718.626667pt;}
.ya6{bottom:723.626667pt;}
.y1a{bottom:728.626667pt;}
.y6b{bottom:731.626667pt;}
.ydc{bottom:733.626667pt;}
.ya5{bottom:738.666667pt;}
.y6a{bottom:747.666667pt;}
.ydb{bottom:749.666667pt;}
.ya4{bottom:753.666667pt;}
.yf{bottom:754.666667pt;}
.y69{bottom:762.666667pt;}
.yda{bottom:764.666667pt;}
.ya3{bottom:769.666667pt;}
.y68{bottom:777.706667pt;}
.yd9{bottom:779.706667pt;}
.ya2{bottom:784.706667pt;}
.y67{bottom:793.706667pt;}
.yd8{bottom:795.706667pt;}
.ya1{bottom:800.706667pt;}
.y66{bottom:808.706667pt;}
.yd7{bottom:811.733333pt;}
.ya0{bottom:817.733333pt;}
.y65{bottom:823.733333pt;}
.y9f{bottom:832.733333pt;}
.y64{bottom:839.733333pt;}
.y9e{bottom:847.773333pt;}
.yd6{bottom:852.773333pt;}
.y63{bottom:854.773333pt;}
.y9d{bottom:864.773333pt;}
.y62{bottom:869.773333pt;}
.yd5{bottom:875.773333pt;}
.y9c{bottom:879.773333pt;}
.y61{bottom:885.800000pt;}
.yd4{bottom:891.800000pt;}
.y9b{bottom:895.800000pt;}
.y60{bottom:900.800000pt;}
.yd3{bottom:906.800000pt;}
.y9a{bottom:911.800000pt;}
.y5f{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.yd2{bottom:921.840000pt;}
.y99{bottom:928.840000pt;}
.y5e{bottom:931.840000pt;}
.yd1{bottom:937.840000pt;}
.y6{bottom:942.840000pt;}
.y98{bottom:943.840000pt;}
.y5d{bottom:946.840000pt;}
.yd0{bottom:953.840000pt;}
.y97{bottom:958.866667pt;}
.y5c{bottom:961.866667pt;}
.ycf{bottom:974.866667pt;}
.y96{bottom:975.866667pt;}
.y5b{bottom:977.866667pt;}
.y95{bottom:990.866667pt;}
.y5a{bottom:992.866667pt;}
.yce{bottom:994.893333pt;}
.y94{bottom:1006.893333pt;}
.y59{bottom:1007.893333pt;}
.ycd{bottom:1015.893333pt;}
.y93{bottom:1022.893333pt;}
.y58{bottom:1023.893333pt;}
.y92{bottom:1037.933333pt;}
.y57{bottom:1038.933333pt;}
.h27{height:14.986667pt;}
.h22{height:15.000000pt;}
.h24{height:15.033333pt;}
.h25{height:15.986667pt;}
.h23{height:16.000000pt;}
.h26{height:16.033333pt;}
.hd{height:23.033333pt;}
.h16{height:26.033333pt;}
.h15{height:26.625000pt;}
.h2{height:29.033333pt;}
.h14{height:31.828125pt;}
.h20{height:32.000000pt;}
.h9{height:33.000000pt;}
.h1f{height:36.308594pt;}
.h1e{height:36.689453pt;}
.h1d{height:37.189453pt;}
.h21{height:37.857422pt;}
.h10{height:38.289062pt;}
.h4{height:38.625000pt;}
.hb{height:39.000000pt;}
.h1c{height:42.859375pt;}
.h1a{height:43.763672pt;}
.h1b{height:43.951172pt;}
.he{height:45.000000pt;}
.h13{height:45.144531pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h8{height:50.712891pt;}
.h12{height:51.720703pt;}
.h17{height:52.089844pt;}
.h6{height:54.093750pt;}
.h11{height:57.100000pt;}
.h18{height:61.435547pt;}
.hc{height:63.656250pt;}
.h5{height:65.531250pt;}
.h7{height:108.100000pt;}
.hf{height:165.133333pt;}
.h19{height:368.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:65.100000pt;}
.w17{width:67.100000pt;}
.w13{width:76.100000pt;}
.wc{width:89.133333pt;}
.w4{width:135.160000pt;}
.w10{width:144.160000pt;}
.w18{width:167.200000pt;}
.w1c{width:170.240000pt;}
.we{width:171.240000pt;}
.w9{width:172.200000pt;}
.w15{width:176.240000pt;}
.wf{width:180.226667pt;}
.wa{width:182.240000pt;}
.w19{width:184.226667pt;}
.w16{width:186.226667pt;}
.wb{width:192.226667pt;}
.w1a{width:194.226667pt;}
.w7{width:199.240000pt;}
.w11{width:201.226667pt;}
.w14{width:205.266667pt;}
.w12{width:212.306667pt;}
.wd{width:219.266667pt;}
.w1b{width:249.306667pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:1.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x13{left:11.026667pt;}
.x14{left:13.026667pt;}
.x10{left:50.066667pt;}
.xf{left:51.066667pt;}
.x1{left:72.100000pt;}
.x18{left:75.100000pt;}
.xe{left:78.100000pt;}
.x5{left:87.100000pt;}
.x15{left:96.133322pt;}
.xd{left:110.140000pt;}
.x16{left:120.166655pt;}
.x11{left:190.233333pt;}
.x6{left:207.266667pt;}
.x23{left:222.306667pt;}
.x9{left:243.293333pt;}
.x2a{left:245.306667pt;}
.x1a{left:250.333333pt;}
.x12{left:271.333333pt;}
.x26{left:273.333322pt;}
.x17{left:275.359988pt;}
.x22{left:283.373322pt;}
.x27{left:284.373333pt;}
.x7{left:292.373333pt;}
.x1d{left:293.359988pt;}
.xc{left:294.366667pt;}
.x1e{left:297.373333pt;}
.x8{left:309.400000pt;}
.x2c{left:313.399988pt;}
.xb{left:324.406667pt;}
.x2d{left:327.440000pt;}
.xa{left:388.493333pt;}
.x21{left:397.506655pt;}
.x24{left:427.533333pt;}
.x2b{left:432.573333pt;}
.x1b{left:435.573333pt;}
.x28{left:463.600000pt;}
.x1f{left:471.600000pt;}
.x2e{left:549.693333pt;}
.x1c{left:630.800000pt;}
.x25{left:643.840000pt;}
.x29{left:652.840000pt;}
.x20{left:654.840000pt;}
.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; }
  