
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b517d8afeed0c7dbebebe0e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_a3ff7d97a22b916085d3c464.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937500;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_678cacdc5c9ce949722cefb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_1ea63df4b2ae884ee82e8460.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.777000;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_f820ae80ed0f89fd5d755851.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70c9b9c3e3ca489f3c164e8d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_d05fbd862f047f0db5e81ac6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_b26265be741406fde803179e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.777344;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_0a0b3ccd6a875faae13e7c04.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bf89d397bccb632e8848780c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_23e586ed77b28a6dcf32804b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f2109c3bcbaf90527a2aa8c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_19ca5f2c9d17bb2b6dfe51cf.woff2')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_58985701b4c755d552b4c977.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_ca9e1cfba2616062997f3b4d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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_bbbe19880cfed03c17c63a76.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;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_f5cc02699132354c6cfbcb57.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_ae15309998f2636709ad5fe1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.105600px;}
.lsb{letter-spacing:0.129600px;}
.ls5{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.149760px;}
.lse{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.161280px;}
.ls0{letter-spacing:0.161400px;}
.ls1f{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.269400px;}
.ls1e{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.720000px;}
.lsa{letter-spacing:3.600000px;}
.ls15{letter-spacing:12.240000px;}
.ls2{letter-spacing:18.149760px;}
.ls19{letter-spacing:19.440000px;}
.ls18{letter-spacing:25.920000px;}
.ls14{letter-spacing:33.960000px;}
.ls12{letter-spacing:33.984000px;}
.ls1a{letter-spacing:44.760000px;}
.ls16{letter-spacing:44.784000px;}
.ls10{letter-spacing:49.985280px;}
.ls13{letter-spacing:55.386720px;}
.lsc{letter-spacing:72.269280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(131,60,11),0 0.015em rgb(131,60,11),0.015em 0 rgb(131,60,11),0 -0.015em  rgb(131,60,11);}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(131,60,11);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-27.417720px;}
.wsd{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.238800px;}
.wsc{word-spacing:-12.329400px;}
.wsa{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-6.170160px;}
._c{margin-left:-2.098560px;}
._0{margin-left:-1.059840px;}
._1{width:1.090560px;}
._2{width:2.365440px;}
._3{width:3.464640px;}
._10{width:4.998720px;}
._9{width:6.120000px;}
._7{width:7.272000px;}
._8{width:8.569440px;}
._e{width:9.792000px;}
._f{width:11.520000px;}
._16{width:12.816000px;}
._1f{width:13.875840px;}
._15{width:14.976000px;}
._17{width:16.272000px;}
._d{width:19.368000px;}
._22{width:20.422560px;}
._4{width:21.528000px;}
._a{width:22.584000px;}
._b{width:23.881440px;}
._18{width:25.198560px;}
._11{width:26.640000px;}
._13{width:27.835680px;}
._12{width:28.848000px;}
._19{width:30.548640px;}
._6{width:32.055360px;}
._5{width:33.099840px;}
._1b{width:34.200000px;}
._1c{width:35.665440px;}
._23{width:37.070400px;}
._1e{width:38.520000px;}
._21{width:39.651840px;}
._1d{width:41.040000px;}
._20{width:42.624000px;}
._1a{width:46.728000px;}
._29{width:55.584000px;}
._28{width:56.664000px;}
._27{width:57.682560px;}
._26{width:158.451840px;}
._24{width:215.712000px;}
._25{width:218.989440px;}
.fc9{color:rgb(31,31,30);}
.fc7{color:rgb(112,48,160);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(131,60,11);}
.fc3{color:rgb(0,112,192);}
.fc8{color:rgb(83,129,53);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:74.880000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.695000px;}
.y2{bottom:10.080000px;}
.y6{bottom:28.815000px;}
.y5{bottom:56.385000px;}
.y9{bottom:57.960000px;}
.y4{bottom:74.385000px;}
.yd2{bottom:112.860000px;}
.yea{bottom:113.220000px;}
.y43{bottom:115.020000px;}
.y120{bottom:120.960000px;}
.ye2{bottom:123.120000px;}
.y10d{bottom:142.056000px;}
.yd1{bottom:144.216000px;}
.y42{bottom:146.196000px;}
.y6e{bottom:149.076000px;}
.yaa{bottom:150.330000px;}
.ye1{bottom:154.290000px;}
.y8a{bottom:155.190000px;}
.y134{bottom:158.250000px;}
.y11f{bottom:162.390000px;}
.yb9{bottom:165.270000px;}
.y5d{bottom:168.150000px;}
.y25{bottom:168.870000px;}
.yfd{bottom:169.230000px;}
.y10c{bottom:173.010000px;}
.yd0{bottom:175.350000px;}
.y41{bottom:177.150000px;}
.y6d{bottom:180.210000px;}
.ya9{bottom:181.290000px;}
.ye0{bottom:185.250000px;}
.y89{bottom:186.150000px;}
.y9b{bottom:195.870000px;}
.yb8{bottom:196.230000px;}
.y5c{bottom:199.290000px;}
.yfc{bottom:200.190000px;}
.y133{bottom:201.090000px;}
.y11e{bottom:203.790000px;}
.y10b{bottom:204.150000px;}
.ycf{bottom:206.310000px;}
.y40{bottom:208.290000px;}
.y6c{bottom:211.170000px;}
.y24{bottom:211.890000px;}
.ya8{bottom:212.430000px;}
.ydf{bottom:216.390000px;}
.y88{bottom:217.290000px;}
.y9a{bottom:227.370000px;}
.y5b{bottom:230.250000px;}
.yfb{bottom:231.330000px;}
.yce{bottom:237.270000px;}
.y3f{bottom:239.250000px;}
.y6b{bottom:242.310000px;}
.y132{bottom:242.490000px;}
.y23{bottom:243.030000px;}
.ya7{bottom:243.390000px;}
.y11d{bottom:245.190000px;}
.yde{bottom:247.350000px;}
.y87{bottom:248.250000px;}
.y10a{bottom:256.170000px;}
.y99{bottom:258.330000px;}
.y5a{bottom:261.390000px;}
.yfa{bottom:262.290000px;}
.ycd{bottom:268.050000px;}
.ye9{bottom:268.410000px;}
.y3e{bottom:270.390000px;}
.y6a{bottom:273.270000px;}
.y22{bottom:273.990000px;}
.ya6{bottom:274.530000px;}
.ydd{bottom:278.490000px;}
.y86{bottom:279.030000px;}
.y131{bottom:283.890000px;}
.y11c{bottom:286.590000px;}
.y109{bottom:287.130000px;}
.y98{bottom:289.470000px;}
.y59{bottom:292.350000px;}
.yf9{bottom:293.430000px;}
.ycc{bottom:299.370000px;}
.y3d{bottom:301.350000px;}
.y69{bottom:304.410000px;}
.y21{bottom:305.130000px;}
.ydc{bottom:309.450000px;}
.y85{bottom:310.350000px;}
.y108{bottom:318.270000px;}
.yb7{bottom:320.070000px;}
.y97{bottom:320.430000px;}
.y58{bottom:323.490000px;}
.yf8{bottom:324.390000px;}
.y130{bottom:325.290000px;}
.y11b{bottom:327.990000px;}
.ycb{bottom:330.510000px;}
.y68{bottom:335.370000px;}
.y20{bottom:336.090000px;}
.ya5{bottom:336.630000px;}
.ydb{bottom:340.590000px;}
.y84{bottom:341.490000px;}
.y3c{bottom:344.370000px;}
.y107{bottom:349.230000px;}
.y96{bottom:351.570000px;}
.y57{bottom:354.450000px;}
.yca{bottom:361.470000px;}
.y67{bottom:366.330000px;}
.y12f{bottom:366.690000px;}
.y1f{bottom:367.230000px;}
.ya4{bottom:367.590000px;}
.y11a{bottom:369.390000px;}
.yda{bottom:371.550000px;}
.y83{bottom:372.450000px;}
.y3b{bottom:375.510000px;}
.yf7{bottom:376.410000px;}
.y106{bottom:380.370000px;}
.y95{bottom:382.530000px;}
.y56{bottom:385.590000px;}
.yc9{bottom:392.655000px;}
.y1e{bottom:398.235000px;}
.ya3{bottom:398.775000px;}
.yd9{bottom:402.735000px;}
.y82{bottom:403.635000px;}
.y3a{bottom:406.515000px;}
.yf6{bottom:407.595000px;}
.y12e{bottom:408.135000px;}
.y119{bottom:410.835000px;}
.y105{bottom:411.375000px;}
.y94{bottom:413.715000px;}
.y55{bottom:416.595000px;}
.y66{bottom:420.735000px;}
.yc8{bottom:423.255000px;}
.ye8{bottom:423.615000px;}
.y1d{bottom:429.375000px;}
.ya2{bottom:429.735000px;}
.yd8{bottom:433.695000px;}
.y81{bottom:434.595000px;}
.y104{bottom:442.515000px;}
.y93{bottom:444.315000px;}
.y54{bottom:447.735000px;}
.y12d{bottom:449.535000px;}
.y39{bottom:451.875000px;}
.y118{bottom:452.055000px;}
.yc7{bottom:454.755000px;}
.yf5{bottom:459.615000px;}
.y1c{bottom:460.335000px;}
.ya1{bottom:460.875000px;}
.yd7{bottom:464.835000px;}
.y80{bottom:465.375000px;}
.y65{bottom:466.815000px;}
.y103{bottom:473.475000px;}
.yb6{bottom:475.815000px;}
.yc6{bottom:485.715000px;}
.y38{bottom:489.315000px;}
.yf4{bottom:490.575000px;}
.y53{bottom:490.755000px;}
.y12c{bottom:490.935000px;}
.y1b{bottom:491.475000px;}
.ya0{bottom:491.835000px;}
.y117{bottom:493.455000px;}
.yd6{bottom:495.795000px;}
.y7f{bottom:496.695000px;}
.y92{bottom:499.035000px;}
.y102{bottom:504.615000px;}
.yb5{bottom:506.775000px;}
.y37{bottom:511.455000px;}
.y64{bottom:512.715000px;}
.yc5{bottom:516.855000px;}
.y52{bottom:521.715000px;}
.y1a{bottom:522.435000px;}
.y9f{bottom:522.975000px;}
.yd5{bottom:526.935000px;}
.y7e{bottom:527.835000px;}
.y12b{bottom:532.335000px;}
.y36{bottom:533.775000px;}
.y116{bottom:534.855000px;}
.y101{bottom:535.575000px;}
.yb4{bottom:537.915000px;}
.yf3{bottom:542.775000px;}
.y63{bottom:543.855000px;}
.yc4{bottom:547.815000px;}
.y51{bottom:552.855000px;}
.y19{bottom:553.575000px;}
.y91{bottom:553.935000px;}
.y35{bottom:556.095000px;}
.y7d{bottom:558.795000px;}
.y100{bottom:566.715000px;}
.yb3{bottom:568.515000px;}
.yf2{bottom:573.735000px;}
.y62{bottom:574.815000px;}
.y115{bottom:576.255000px;}
.yc3{bottom:578.595000px;}
.ye7{bottom:578.955000px;}
.y50{bottom:583.815000px;}
.y18{bottom:584.535000px;}
.y9e{bottom:584.715000px;}
.y90{bottom:585.075000px;}
.y7c{bottom:589.935000px;}
.y34{bottom:590.655000px;}
.yff{bottom:597.675000px;}
.yb2{bottom:599.835000px;}
.yf1{bottom:604.875000px;}
.y61{bottom:605.955000px;}
.yc2{bottom:609.915000px;}
.y33{bottom:612.795000px;}
.y4f{bottom:614.955000px;}
.y17{bottom:615.495000px;}
.y8f{bottom:616.035000px;}
.y114{bottom:617.655000px;}
.y12a{bottom:618.915000px;}
.y7b{bottom:620.895000px;}
.yb1{bottom:630.975000px;}
.y32{bottom:635.115000px;}
.yf0{bottom:635.835000px;}
.y60{bottom:636.915000px;}
.yc1{bottom:641.085000px;}
.y4e{bottom:645.945000px;}
.y16{bottom:646.665000px;}
.y8e{bottom:647.205000px;}
.y7a{bottom:652.065000px;}
.yfe{bottom:653.505000px;}
.y31{bottom:657.465000px;}
.y113{bottom:659.085000px;}
.yb0{bottom:661.965000px;}
.yc0{bottom:672.045000px;}
.y15{bottom:677.625000px;}
.y8d{bottom:678.165000px;}
.y5f{bottom:679.965000px;}
.y79{bottom:683.025000px;}
.yef{bottom:687.885000px;}
.y4d{bottom:691.305000px;}
.y30{bottom:692.025000px;}
.yaf{bottom:692.745000px;}
.yd4{bottom:693.105000px;}
.ybf{bottom:703.185000px;}
.y136{bottom:705.525000px;}
.y14{bottom:708.765000px;}
.y8c{bottom:708.945000px;}
.y9d{bottom:709.305000px;}
.y2f{bottom:714.165000px;}
.y112{bottom:716.325000px;}
.yee{bottom:719.025000px;}
.y129{bottom:719.745000px;}
.yae{bottom:724.065000px;}
.y5e{bottom:725.325000px;}
.ybe{bottom:733.785000px;}
.ye6{bottom:734.145000px;}
.y2e{bottom:736.485000px;}
.y13{bottom:739.725000px;}
.y4c{bottom:740.265000px;}
.y78{bottom:744.765000px;}
.yed{bottom:749.985000px;}
.y111{bottom:750.345000px;}
.yad{bottom:755.205000px;}
.y135{bottom:760.965000px;}
.y128{bottom:761.145000px;}
.ye5{bottom:765.285000px;}
.y12{bottom:770.865000px;}
.y4b{bottom:771.405000px;}
.y77{bottom:776.265000px;}
.y2d{bottom:778.605000px;}
.y110{bottom:781.305000px;}
.yac{bottom:785.805000px;}
.ybd{bottom:786.165000px;}
.y11{bottom:801.825000px;}
.y4a{bottom:802.365000px;}
.y127{bottom:802.545000px;}
.yec{bottom:804.345000px;}
.y2c{bottom:806.865000px;}
.y76{bottom:807.225000px;}
.y10f{bottom:812.445000px;}
.ye4{bottom:816.945000px;}
.ybc{bottom:817.305000px;}
.y9c{bottom:832.965000px;}
.y49{bottom:833.325000px;}
.y75{bottom:838.365000px;}
.yeb{bottom:840.345000px;}
.yab{bottom:840.525000px;}
.y10e{bottom:843.405000px;}
.y126{bottom:843.945000px;}
.y10{bottom:844.665000px;}
.y2b{bottom:847.545000px;}
.ybb{bottom:848.265000px;}
.y48{bottom:864.465000px;}
.y74{bottom:869.325000px;}
.ye3{bottom:871.665000px;}
.y125{bottom:885.345000px;}
.y2a{bottom:886.065000px;}
.yf{bottom:887.685000px;}
.y47{bottom:895.470000px;}
.y73{bottom:900.510000px;}
.yba{bottom:902.670000px;}
.ye{bottom:911.850000px;}
.y46{bottom:926.610000px;}
.y124{bottom:926.790000px;}
.y29{bottom:927.330000px;}
.y72{bottom:931.470000px;}
.yd{bottom:935.610000px;}
.y8b{bottom:957.210000px;}
.y45{bottom:957.570000px;}
.yc{bottom:959.370000px;}
.y71{bottom:962.430000px;}
.y123{bottom:968.190000px;}
.y28{bottom:973.770000px;}
.yd3{bottom:988.350000px;}
.y44{bottom:988.710000px;}
.y70{bottom:993.210000px;}
.yb{bottom:999.510000px;}
.y122{bottom:1009.590000px;}
.y27{bottom:1019.670000px;}
.ya{bottom:1039.290000px;}
.y6f{bottom:1047.930000px;}
.y26{bottom:1050.810000px;}
.y121{bottom:1050.990000px;}
.y8{bottom:1071.870000px;}
.y3{bottom:1087.335000px;}
.y1{bottom:1087.350000px;}
.h6{height:49.500000px;}
.hd{height:50.273438px;}
.h5{height:52.817344px;}
.h7{height:56.684160px;}
.h9{height:65.010937px;}
.h3{height:65.884219px;}
.hb{height:70.628906px;}
.h8{height:70.664062px;}
.hc{height:72.562500px;}
.hf{height:74.004654px;}
.h10{height:74.953125px;}
.h13{height:76.317188px;}
.h12{height:80.208984px;}
.h11{height:80.464922px;}
.he{height:84.898125px;}
.ha{height:121.179375px;}
.h2{height:121.522500px;}
.h4{height:121.545000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:171.345000px;}
.w2{width:171.390000px;}
.w3{width:491.475000px;}
.w5{width:491.670000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:99.936000px;}
.x2{left:104.934000px;}
.x11{left:108.036000px;}
.x1c{left:128.376000px;}
.x4{left:132.660000px;}
.x16{left:135.036000px;}
.x1{left:137.736000px;}
.x8{left:145.836000px;}
.xa{left:150.510000px;}
.x1e{left:162.030000px;}
.x1d{left:166.170000px;}
.x17{left:172.830000px;}
.x1a{left:189.030000px;}
.x7{left:198.210000px;}
.xe{left:199.830000px;}
.x22{left:208.110000px;}
.x21{left:212.610000px;}
.x1b{left:216.030000px;}
.x20{left:220.530000px;}
.x18{left:226.830000px;}
.x1f{left:230.610000px;}
.x5{left:242.670000px;}
.x19{left:253.830000px;}
.x10{left:271.305000px;}
.x14{left:275.250000px;}
.x13{left:286.770000px;}
.x6{left:294.690000px;}
.x3{left:309.135000px;}
.x12{left:313.995000px;}
.xb{left:345.495000px;}
.x9{left:356.655000px;}
.xd{left:431.895000px;}
.x15{left:459.795000px;}
.xc{left:465.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.093867pt;}
.lsb{letter-spacing:0.115200pt;}
.ls5{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133120pt;}
.lse{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.143360pt;}
.ls0{letter-spacing:0.143467pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.239467pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.640000pt;}
.lsa{letter-spacing:3.200000pt;}
.ls15{letter-spacing:10.880000pt;}
.ls2{letter-spacing:16.133120pt;}
.ls19{letter-spacing:17.280000pt;}
.ls18{letter-spacing:23.040000pt;}
.ls14{letter-spacing:30.186667pt;}
.ls12{letter-spacing:30.208000pt;}
.ls1a{letter-spacing:39.786667pt;}
.ls16{letter-spacing:39.808000pt;}
.ls10{letter-spacing:44.431360pt;}
.ls13{letter-spacing:49.232640pt;}
.lsc{letter-spacing:64.239360pt;}
.ws0{word-spacing:-24.371307pt;}
.wsd{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws6{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsc{word-spacing:-10.959467pt;}
.wsa{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-5.484587pt;}
._c{margin-left:-1.865387pt;}
._0{margin-left:-0.942080pt;}
._1{width:0.969387pt;}
._2{width:2.102613pt;}
._3{width:3.079680pt;}
._10{width:4.443307pt;}
._9{width:5.440000pt;}
._7{width:6.464000pt;}
._8{width:7.617280pt;}
._e{width:8.704000pt;}
._f{width:10.240000pt;}
._16{width:11.392000pt;}
._1f{width:12.334080pt;}
._15{width:13.312000pt;}
._17{width:14.464000pt;}
._d{width:17.216000pt;}
._22{width:18.153387pt;}
._4{width:19.136000pt;}
._a{width:20.074667pt;}
._b{width:21.227947pt;}
._18{width:22.398720pt;}
._11{width:23.680000pt;}
._13{width:24.742827pt;}
._12{width:25.642667pt;}
._19{width:27.154347pt;}
._6{width:28.493653pt;}
._5{width:29.422080pt;}
._1b{width:30.400000pt;}
._1c{width:31.702613pt;}
._23{width:32.951467pt;}
._1e{width:34.240000pt;}
._21{width:35.246080pt;}
._1d{width:36.480000pt;}
._20{width:37.888000pt;}
._1a{width:41.536000pt;}
._29{width:49.408000pt;}
._28{width:50.368000pt;}
._27{width:51.273387pt;}
._26{width:140.846080pt;}
._24{width:191.744000pt;}
._25{width:194.657280pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.560000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.173333pt;}
.y2{bottom:8.960000pt;}
.y6{bottom:25.613333pt;}
.y5{bottom:50.120000pt;}
.y9{bottom:51.520000pt;}
.y4{bottom:66.120000pt;}
.yd2{bottom:100.320000pt;}
.yea{bottom:100.640000pt;}
.y43{bottom:102.240000pt;}
.y120{bottom:107.520000pt;}
.ye2{bottom:109.440000pt;}
.y10d{bottom:126.272000pt;}
.yd1{bottom:128.192000pt;}
.y42{bottom:129.952000pt;}
.y6e{bottom:132.512000pt;}
.yaa{bottom:133.626667pt;}
.ye1{bottom:137.146667pt;}
.y8a{bottom:137.946667pt;}
.y134{bottom:140.666667pt;}
.y11f{bottom:144.346667pt;}
.yb9{bottom:146.906667pt;}
.y5d{bottom:149.466667pt;}
.y25{bottom:150.106667pt;}
.yfd{bottom:150.426667pt;}
.y10c{bottom:153.786667pt;}
.yd0{bottom:155.866667pt;}
.y41{bottom:157.466667pt;}
.y6d{bottom:160.186667pt;}
.ya9{bottom:161.146667pt;}
.ye0{bottom:164.666667pt;}
.y89{bottom:165.466667pt;}
.y9b{bottom:174.106667pt;}
.yb8{bottom:174.426667pt;}
.y5c{bottom:177.146667pt;}
.yfc{bottom:177.946667pt;}
.y133{bottom:178.746667pt;}
.y11e{bottom:181.146667pt;}
.y10b{bottom:181.466667pt;}
.ycf{bottom:183.386667pt;}
.y40{bottom:185.146667pt;}
.y6c{bottom:187.706667pt;}
.y24{bottom:188.346667pt;}
.ya8{bottom:188.826667pt;}
.ydf{bottom:192.346667pt;}
.y88{bottom:193.146667pt;}
.y9a{bottom:202.106667pt;}
.y5b{bottom:204.666667pt;}
.yfb{bottom:205.626667pt;}
.yce{bottom:210.906667pt;}
.y3f{bottom:212.666667pt;}
.y6b{bottom:215.386667pt;}
.y132{bottom:215.546667pt;}
.y23{bottom:216.026667pt;}
.ya7{bottom:216.346667pt;}
.y11d{bottom:217.946667pt;}
.yde{bottom:219.866667pt;}
.y87{bottom:220.666667pt;}
.y10a{bottom:227.706667pt;}
.y99{bottom:229.626667pt;}
.y5a{bottom:232.346667pt;}
.yfa{bottom:233.146667pt;}
.ycd{bottom:238.266667pt;}
.ye9{bottom:238.586667pt;}
.y3e{bottom:240.346667pt;}
.y6a{bottom:242.906667pt;}
.y22{bottom:243.546667pt;}
.ya6{bottom:244.026667pt;}
.ydd{bottom:247.546667pt;}
.y86{bottom:248.026667pt;}
.y131{bottom:252.346667pt;}
.y11c{bottom:254.746667pt;}
.y109{bottom:255.226667pt;}
.y98{bottom:257.306667pt;}
.y59{bottom:259.866667pt;}
.yf9{bottom:260.826667pt;}
.ycc{bottom:266.106667pt;}
.y3d{bottom:267.866667pt;}
.y69{bottom:270.586667pt;}
.y21{bottom:271.226667pt;}
.ydc{bottom:275.066667pt;}
.y85{bottom:275.866667pt;}
.y108{bottom:282.906667pt;}
.yb7{bottom:284.506667pt;}
.y97{bottom:284.826667pt;}
.y58{bottom:287.546667pt;}
.yf8{bottom:288.346667pt;}
.y130{bottom:289.146667pt;}
.y11b{bottom:291.546667pt;}
.ycb{bottom:293.786667pt;}
.y68{bottom:298.106667pt;}
.y20{bottom:298.746667pt;}
.ya5{bottom:299.226667pt;}
.ydb{bottom:302.746667pt;}
.y84{bottom:303.546667pt;}
.y3c{bottom:306.106667pt;}
.y107{bottom:310.426667pt;}
.y96{bottom:312.506667pt;}
.y57{bottom:315.066667pt;}
.yca{bottom:321.306667pt;}
.y67{bottom:325.626667pt;}
.y12f{bottom:325.946667pt;}
.y1f{bottom:326.426667pt;}
.ya4{bottom:326.746667pt;}
.y11a{bottom:328.346667pt;}
.yda{bottom:330.266667pt;}
.y83{bottom:331.066667pt;}
.y3b{bottom:333.786667pt;}
.yf7{bottom:334.586667pt;}
.y106{bottom:338.106667pt;}
.y95{bottom:340.026667pt;}
.y56{bottom:342.746667pt;}
.yc9{bottom:349.026667pt;}
.y1e{bottom:353.986667pt;}
.ya3{bottom:354.466667pt;}
.yd9{bottom:357.986667pt;}
.y82{bottom:358.786667pt;}
.y3a{bottom:361.346667pt;}
.yf6{bottom:362.306667pt;}
.y12e{bottom:362.786667pt;}
.y119{bottom:365.186667pt;}
.y105{bottom:365.666667pt;}
.y94{bottom:367.746667pt;}
.y55{bottom:370.306667pt;}
.y66{bottom:373.986667pt;}
.yc8{bottom:376.226667pt;}
.ye8{bottom:376.546667pt;}
.y1d{bottom:381.666667pt;}
.ya2{bottom:381.986667pt;}
.yd8{bottom:385.506667pt;}
.y81{bottom:386.306667pt;}
.y104{bottom:393.346667pt;}
.y93{bottom:394.946667pt;}
.y54{bottom:397.986667pt;}
.y12d{bottom:399.586667pt;}
.y39{bottom:401.666667pt;}
.y118{bottom:401.826667pt;}
.yc7{bottom:404.226667pt;}
.yf5{bottom:408.546667pt;}
.y1c{bottom:409.186667pt;}
.ya1{bottom:409.666667pt;}
.yd7{bottom:413.186667pt;}
.y80{bottom:413.666667pt;}
.y65{bottom:414.946667pt;}
.y103{bottom:420.866667pt;}
.yb6{bottom:422.946667pt;}
.yc6{bottom:431.746667pt;}
.y38{bottom:434.946667pt;}
.yf4{bottom:436.066667pt;}
.y53{bottom:436.226667pt;}
.y12c{bottom:436.386667pt;}
.y1b{bottom:436.866667pt;}
.ya0{bottom:437.186667pt;}
.y117{bottom:438.626667pt;}
.yd6{bottom:440.706667pt;}
.y7f{bottom:441.506667pt;}
.y92{bottom:443.586667pt;}
.y102{bottom:448.546667pt;}
.yb5{bottom:450.466667pt;}
.y37{bottom:454.626667pt;}
.y64{bottom:455.746667pt;}
.yc5{bottom:459.426667pt;}
.y52{bottom:463.746667pt;}
.y1a{bottom:464.386667pt;}
.y9f{bottom:464.866667pt;}
.yd5{bottom:468.386667pt;}
.y7e{bottom:469.186667pt;}
.y12b{bottom:473.186667pt;}
.y36{bottom:474.466667pt;}
.y116{bottom:475.426667pt;}
.y101{bottom:476.066667pt;}
.yb4{bottom:478.146667pt;}
.yf3{bottom:482.466667pt;}
.y63{bottom:483.426667pt;}
.yc4{bottom:486.946667pt;}
.y51{bottom:491.426667pt;}
.y19{bottom:492.066667pt;}
.y91{bottom:492.386667pt;}
.y35{bottom:494.306667pt;}
.y7d{bottom:496.706667pt;}
.y100{bottom:503.746667pt;}
.yb3{bottom:505.346667pt;}
.yf2{bottom:509.986667pt;}
.y62{bottom:510.946667pt;}
.y115{bottom:512.226667pt;}
.yc3{bottom:514.306667pt;}
.ye7{bottom:514.626667pt;}
.y50{bottom:518.946667pt;}
.y18{bottom:519.586667pt;}
.y9e{bottom:519.746667pt;}
.y90{bottom:520.066667pt;}
.y7c{bottom:524.386667pt;}
.y34{bottom:525.026667pt;}
.yff{bottom:531.266667pt;}
.yb2{bottom:533.186667pt;}
.yf1{bottom:537.666667pt;}
.y61{bottom:538.626667pt;}
.yc2{bottom:542.146667pt;}
.y33{bottom:544.706667pt;}
.y4f{bottom:546.626667pt;}
.y17{bottom:547.106667pt;}
.y8f{bottom:547.586667pt;}
.y114{bottom:549.026667pt;}
.y12a{bottom:550.146667pt;}
.y7b{bottom:551.906667pt;}
.yb1{bottom:560.866667pt;}
.y32{bottom:564.546667pt;}
.yf0{bottom:565.186667pt;}
.y60{bottom:566.146667pt;}
.yc1{bottom:569.853333pt;}
.y4e{bottom:574.173333pt;}
.y16{bottom:574.813333pt;}
.y8e{bottom:575.293333pt;}
.y7a{bottom:579.613333pt;}
.yfe{bottom:580.893333pt;}
.y31{bottom:584.413333pt;}
.y113{bottom:585.853333pt;}
.yb0{bottom:588.413333pt;}
.yc0{bottom:597.373333pt;}
.y15{bottom:602.333333pt;}
.y8d{bottom:602.813333pt;}
.y5f{bottom:604.413333pt;}
.y79{bottom:607.133333pt;}
.yef{bottom:611.453333pt;}
.y4d{bottom:614.493333pt;}
.y30{bottom:615.133333pt;}
.yaf{bottom:615.773333pt;}
.yd4{bottom:616.093333pt;}
.ybf{bottom:625.053333pt;}
.y136{bottom:627.133333pt;}
.y14{bottom:630.013333pt;}
.y8c{bottom:630.173333pt;}
.y9d{bottom:630.493333pt;}
.y2f{bottom:634.813333pt;}
.y112{bottom:636.733333pt;}
.yee{bottom:639.133333pt;}
.y129{bottom:639.773333pt;}
.yae{bottom:643.613333pt;}
.y5e{bottom:644.733333pt;}
.ybe{bottom:652.253333pt;}
.ye6{bottom:652.573333pt;}
.y2e{bottom:654.653333pt;}
.y13{bottom:657.533333pt;}
.y4c{bottom:658.013333pt;}
.y78{bottom:662.013333pt;}
.yed{bottom:666.653333pt;}
.y111{bottom:666.973333pt;}
.yad{bottom:671.293333pt;}
.y135{bottom:676.413333pt;}
.y128{bottom:676.573333pt;}
.ye5{bottom:680.253333pt;}
.y12{bottom:685.213333pt;}
.y4b{bottom:685.693333pt;}
.y77{bottom:690.013333pt;}
.y2d{bottom:692.093333pt;}
.y110{bottom:694.493333pt;}
.yac{bottom:698.493333pt;}
.ybd{bottom:698.813333pt;}
.y11{bottom:712.733333pt;}
.y4a{bottom:713.213333pt;}
.y127{bottom:713.373333pt;}
.yec{bottom:714.973333pt;}
.y2c{bottom:717.213333pt;}
.y76{bottom:717.533333pt;}
.y10f{bottom:722.173333pt;}
.ye4{bottom:726.173333pt;}
.ybc{bottom:726.493333pt;}
.y9c{bottom:740.413333pt;}
.y49{bottom:740.733333pt;}
.y75{bottom:745.213333pt;}
.yeb{bottom:746.973333pt;}
.yab{bottom:747.133333pt;}
.y10e{bottom:749.693333pt;}
.y126{bottom:750.173333pt;}
.y10{bottom:750.813333pt;}
.y2b{bottom:753.373333pt;}
.ybb{bottom:754.013333pt;}
.y48{bottom:768.413333pt;}
.y74{bottom:772.733333pt;}
.ye3{bottom:774.813333pt;}
.y125{bottom:786.973333pt;}
.y2a{bottom:787.613333pt;}
.yf{bottom:789.053333pt;}
.y47{bottom:795.973333pt;}
.y73{bottom:800.453333pt;}
.yba{bottom:802.373333pt;}
.ye{bottom:810.533333pt;}
.y46{bottom:823.653333pt;}
.y124{bottom:823.813333pt;}
.y29{bottom:824.293333pt;}
.y72{bottom:827.973333pt;}
.yd{bottom:831.653333pt;}
.y8b{bottom:850.853333pt;}
.y45{bottom:851.173333pt;}
.yc{bottom:852.773333pt;}
.y71{bottom:855.493333pt;}
.y123{bottom:860.613333pt;}
.y28{bottom:865.573333pt;}
.yd3{bottom:878.533333pt;}
.y44{bottom:878.853333pt;}
.y70{bottom:882.853333pt;}
.yb{bottom:888.453333pt;}
.y122{bottom:897.413333pt;}
.y27{bottom:906.373333pt;}
.ya{bottom:923.813333pt;}
.y6f{bottom:931.493333pt;}
.y26{bottom:934.053333pt;}
.y121{bottom:934.213333pt;}
.y8{bottom:952.773333pt;}
.y3{bottom:966.520000pt;}
.y1{bottom:966.533333pt;}
.h6{height:44.000000pt;}
.hd{height:44.687500pt;}
.h5{height:46.948750pt;}
.h7{height:50.385920pt;}
.h9{height:57.787500pt;}
.h3{height:58.563750pt;}
.hb{height:62.781250pt;}
.h8{height:62.812500pt;}
.hc{height:64.500000pt;}
.hf{height:65.781915pt;}
.h10{height:66.625000pt;}
.h13{height:67.837500pt;}
.h12{height:71.296875pt;}
.h11{height:71.524375pt;}
.he{height:75.465000pt;}
.ha{height:107.715000pt;}
.h2{height:108.020000pt;}
.h4{height:108.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:152.306667pt;}
.w2{width:152.346667pt;}
.w3{width:436.866667pt;}
.w5{width:437.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:88.832000pt;}
.x2{left:93.274667pt;}
.x11{left:96.032000pt;}
.x1c{left:114.112000pt;}
.x4{left:117.920000pt;}
.x16{left:120.032000pt;}
.x1{left:122.432000pt;}
.x8{left:129.632000pt;}
.xa{left:133.786667pt;}
.x1e{left:144.026667pt;}
.x1d{left:147.706667pt;}
.x17{left:153.626667pt;}
.x1a{left:168.026667pt;}
.x7{left:176.186667pt;}
.xe{left:177.626667pt;}
.x22{left:184.986667pt;}
.x21{left:188.986667pt;}
.x1b{left:192.026667pt;}
.x20{left:196.026667pt;}
.x18{left:201.626667pt;}
.x1f{left:204.986667pt;}
.x5{left:215.706667pt;}
.x19{left:225.626667pt;}
.x10{left:241.160000pt;}
.x14{left:244.666667pt;}
.x13{left:254.906667pt;}
.x6{left:261.946667pt;}
.x3{left:274.786667pt;}
.x12{left:279.106667pt;}
.xb{left:307.106667pt;}
.x9{left:317.026667pt;}
.xd{left:383.906667pt;}
.x15{left:408.706667pt;}
.xc{left:413.666667pt;}
}




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