
    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_bb0662f4345cfed68d9abc3a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_048936699e7e4171aff4b14d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52b8d935a9487c011869e1a6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_a662118d2c7252742874263d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_08ce76cc98a7c587a7a47015.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_adc3492461d3ced7fe48fef1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ca9876843d371b1f90fed9ef.woff')format("woff");}.ffb{font-family:ffb;line-height:0.999512;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_e9b9784280159e86a2c68678.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_831c6e81af1171bd903ad0ad.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;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_784f0a2c5f7ae3e285c0a5f9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.196289;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_f53ab72b578c1399b06de13b.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_429171584ecd38994968e2eb.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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_26072a85655436e8930e7ed7.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_111b6ed96d2d0b4f11094443.woff')format("woff");}.ff13{font-family:ff13;line-height:0.774902;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_cddfbdbe3831d4f89af26b50.woff')format("woff");}.ff14{font-family:ff14;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.lsc{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.229800px;}
.ls7{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.114000px;}
.lsa{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.lsd{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls15{letter-spacing:6.785280px;}
.ls14{letter-spacing:39.905280px;}
.lse{letter-spacing:59.345280px;}
.lsf{letter-spacing:71.280000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-66.240000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws10{word-spacing:-18.808440px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsd{word-spacing:-16.974600px;}
.wsa{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wse{word-spacing:-13.505760px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:345.423120px;}
._40{margin-left:-5.091120px;}
._2{margin-left:-2.178000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._c{width:2.326320px;}
._d{width:4.173120px;}
._b{width:5.898960px;}
._5{width:7.614000px;}
._3{width:8.876160px;}
._4{width:10.259280px;}
._34{width:11.658240px;}
._9{width:13.659360px;}
._a{width:15.150000px;}
._8{width:17.818560px;}
._6{width:19.540800px;}
._7{width:20.799360px;}
._2f{width:21.894480px;}
._18{width:22.919040px;}
._2e{width:24.111360px;}
._1b{width:25.405200px;}
._2a{width:27.365040px;}
._12{width:28.756080px;}
._13{width:30.263760px;}
._16{width:31.678560px;}
._17{width:32.706720px;}
._29{width:34.570080px;}
._21{width:35.835840px;}
._39{width:36.930960px;}
._f{width:38.052720px;}
._e{width:39.183120px;}
._1a{width:41.060880px;}
._14{width:42.459840px;}
._15{width:44.076960px;}
._31{width:45.506880px;}
._32{width:47.162880px;}
._33{width:48.429360px;}
._3c{width:50.466960px;}
._3d{width:52.194240px;}
._2c{width:53.323200px;}
._2d{width:54.772560px;}
._42{width:55.988640px;}
._27{width:57.231360px;}
._28{width:58.296720px;}
._1e{width:59.814720px;}
._1f{width:61.065360px;}
._26{width:62.094960px;}
._20{width:64.517760px;}
._10{width:67.630080px;}
._11{width:69.154560px;}
._36{width:71.498400px;}
._37{width:74.718720px;}
._45{width:75.778560px;}
._25{width:77.898240px;}
._1d{width:79.421760px;}
._1c{width:80.516880px;}
._19{width:85.052160px;}
._46{width:86.310720px;}
._47{width:87.378480px;}
._3e{width:92.471040px;}
._3b{width:93.897360px;}
._41{width:95.120640px;}
._3a{width:97.770240px;}
._38{width:101.845440px;}
._3f{width:108.501120px;}
._4b{width:111.349440px;}
._2b{width:124.398720px;}
._35{width:128.673360px;}
._30{width:133.871040px;}
._44{width:138.612720px;}
._43{width:140.198400px;}
._24{width:152.893440px;}
._48{width:175.337280px;}
._49{width:176.455440px;}
._22{width:189.617520px;}
._23{width:197.647200px;}
._4a{width:236.145600px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:5.760000px;}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs8{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y99{bottom:9.360000px;}
.y9b{bottom:9.720000px;}
.y9d{bottom:9.765000px;}
.yf6{bottom:13.575000px;}
.y15{bottom:26.460000px;}
.yed{bottom:33.090000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.yee{bottom:61.920000px;}
.y13{bottom:70.380000px;}
.y43{bottom:75.240000px;}
.yef{bottom:90.750000px;}
.yf0{bottom:119.550000px;}
.ybd{bottom:120.960000px;}
.ye9{bottom:125.820000px;}
.y93{bottom:126.720000px;}
.y120{bottom:129.420000px;}
.y3a{bottom:136.440000px;}
.ybc{bottom:145.620000px;}
.yf1{bottom:148.395000px;}
.ye8{bottom:150.480000px;}
.ycf{bottom:150.840000px;}
.y92{bottom:151.560000px;}
.y11f{bottom:154.080000px;}
.y6d{bottom:158.760000px;}
.y39{bottom:161.100000px;}
.ybb{bottom:170.280000px;}
.yeb{bottom:174.780000px;}
.ye7{bottom:175.140000px;}
.y91{bottom:176.220000px;}
.yf2{bottom:177.225000px;}
.y11e{bottom:178.740000px;}
.y6c{bottom:183.420000px;}
.y38{bottom:185.760000px;}
.yce{bottom:190.440000px;}
.yba{bottom:194.940000px;}
.yea{bottom:199.440000px;}
.ye6{bottom:199.800000px;}
.y90{bottom:200.880000px;}
.y11d{bottom:203.400000px;}
.yf3{bottom:206.070000px;}
.y6b{bottom:208.110000px;}
.y37{bottom:210.450000px;}
.yb9{bottom:219.810000px;}
.ye5{bottom:220.530000px;}
.yec{bottom:220.680000px;}
.y8f{bottom:225.570000px;}
.y11c{bottom:227.730000px;}
.ycd{bottom:230.070000px;}
.y6a{bottom:232.770000px;}
.yf4{bottom:234.900000px;}
.y36{bottom:235.110000px;}
.yb8{bottom:245.550000px;}
.y8e{bottom:251.310000px;}
.y11b{bottom:252.390000px;}
.y69{bottom:257.430000px;}
.y35{bottom:259.770000px;}
.yf5{bottom:263.730000px;}
.ycc{bottom:269.850000px;}
.yb7{bottom:270.210000px;}
.y8d{bottom:275.970000px;}
.y11a{bottom:277.410000px;}
.y68{bottom:281.730000px;}
.y124{bottom:282.090000px;}
.y34{bottom:284.430000px;}
.yf7{bottom:292.530000px;}
.yb6{bottom:294.870000px;}
.y8c{bottom:300.630000px;}
.y119{bottom:302.070000px;}
.y67{bottom:306.390000px;}
.y123{bottom:306.750000px;}
.y33{bottom:309.090000px;}
.yb5{bottom:319.530000px;}
.y8b{bottom:325.290000px;}
.y118{bottom:326.730000px;}
.y66{bottom:331.410000px;}
.y40{bottom:333.390000px;}
.y32{bottom:333.750000px;}
.yb4{bottom:344.190000px;}
.y8a{bottom:349.770000px;}
.y117{bottom:351.390000px;}
.y65{bottom:356.070000px;}
.y3f{bottom:358.050000px;}
.y31{bottom:358.410000px;}
.ycb{bottom:368.850000px;}
.yb3{bottom:369.030000px;}
.y89{bottom:375.870000px;}
.y116{bottom:376.050000px;}
.y64{bottom:380.730000px;}
.y3e{bottom:382.710000px;}
.y30{bottom:383.070000px;}
.yca{bottom:393.510000px;}
.yb2{bottom:394.770000px;}
.y88{bottom:400.530000px;}
.y115{bottom:400.710000px;}
.y63{bottom:405.390000px;}
.y3d{bottom:407.370000px;}
.y2f{bottom:407.730000px;}
.yc9{bottom:417.810000px;}
.yb1{bottom:419.430000px;}
.y87{bottom:425.190000px;}
.y114{bottom:425.370000px;}
.y62{bottom:430.050000px;}
.y3c{bottom:432.030000px;}
.y2e{bottom:432.390000px;}
.yc8{bottom:442.515000px;}
.yb0{bottom:444.135000px;}
.y86{bottom:449.895000px;}
.y113{bottom:450.075000px;}
.y61{bottom:454.755000px;}
.y2d{bottom:457.095000px;}
.yc7{bottom:467.175000px;}
.yaf{bottom:468.795000px;}
.y112{bottom:474.735000px;}
.y85{bottom:474.915000px;}
.y60{bottom:479.595000px;}
.y2c{bottom:481.755000px;}
.yc6{bottom:492.195000px;}
.yae{bottom:494.535000px;}
.y111{bottom:499.395000px;}
.y84{bottom:500.655000px;}
.y5f{bottom:504.255000px;}
.y2b{bottom:506.415000px;}
.yc5{bottom:516.855000px;}
.yad{bottom:519.195000px;}
.y110{bottom:524.055000px;}
.y83{bottom:525.315000px;}
.y5e{bottom:528.915000px;}
.y2a{bottom:530.715000px;}
.y3b{bottom:531.075000px;}
.yc4{bottom:541.515000px;}
.yac{bottom:543.855000px;}
.y10f{bottom:548.715000px;}
.y82{bottom:549.615000px;}
.y5d{bottom:553.575000px;}
.ye4{bottom:554.115000px;}
.y29{bottom:555.375000px;}
.yc3{bottom:566.175000px;}
.yab{bottom:568.515000px;}
.y10e{bottom:573.375000px;}
.y81{bottom:574.275000px;}
.y5c{bottom:578.235000px;}
.ye3{bottom:578.775000px;}
.y28{bottom:579.495000px;}
.yc2{bottom:590.835000px;}
.yaa{bottom:592.815000px;}
.y10d{bottom:598.035000px;}
.y80{bottom:599.295000px;}
.y27{bottom:601.275000px;}
.y5b{bottom:602.535000px;}
.y122{bottom:602.895000px;}
.ye2{bottom:603.435000px;}
.yc1{bottom:615.675000px;}
.ya9{bottom:617.835000px;}
.y10c{bottom:622.695000px;}
.y26{bottom:623.235000px;}
.y7f{bottom:623.955000px;}
.ye1{bottom:625.935000px;}
.y5a{bottom:627.555000px;}
.yc0{bottom:641.415000px;}
.ya8{bottom:642.495000px;}
.y10b{bottom:647.355000px;}
.y25{bottom:647.535000px;}
.y7e{bottom:648.615000px;}
.y59{bottom:652.215000px;}
.ye0{bottom:664.095000px;}
.ybf{bottom:666.075000px;}
.ya7{bottom:667.155000px;}
.y24{bottom:669.315000px;}
.y10a{bottom:672.015000px;}
.y7d{bottom:673.275000px;}
.y58{bottom:676.905000px;}
.ybe{bottom:690.765000px;}
.y23{bottom:691.305000px;}
.ya6{bottom:691.845000px;}
.y109{bottom:696.345000px;}
.y7c{bottom:697.965000px;}
.y57{bottom:701.565000px;}
.ydf{bottom:702.285000px;}
.y22{bottom:713.085000px;}
.ya5{bottom:716.685000px;}
.y108{bottom:721.005000px;}
.y7b{bottom:722.625000px;}
.y56{bottom:726.225000px;}
.y21{bottom:734.865000px;}
.yde{bottom:740.445000px;}
.ya4{bottom:741.345000px;}
.y107{bottom:746.205000px;}
.y7a{bottom:747.465000px;}
.y55{bottom:750.885000px;}
.y20{bottom:756.645000px;}
.ya3{bottom:765.645000px;}
.y106{bottom:770.865000px;}
.y79{bottom:773.205000px;}
.y54{bottom:775.545000px;}
.y1f{bottom:778.425000px;}
.ydd{bottom:778.605000px;}
.ya2{bottom:790.305000px;}
.y105{bottom:795.525000px;}
.y78{bottom:797.865000px;}
.y53{bottom:800.205000px;}
.y1e{bottom:800.385000px;}
.ya1{bottom:815.325000px;}
.y104{bottom:820.185000px;}
.ydb{bottom:820.545000px;}
.y1d{bottom:822.165000px;}
.y77{bottom:822.525000px;}
.y52{bottom:824.865000px;}
.ya0{bottom:839.985000px;}
.y1c{bottom:843.945000px;}
.y103{bottom:844.845000px;}
.yda{bottom:845.205000px;}
.y76{bottom:847.185000px;}
.y51{bottom:849.525000px;}
.y9f{bottom:855.825000px;}
.y9e{bottom:864.645000px;}
.y1b{bottom:865.725000px;}
.y102{bottom:869.505000px;}
.yd9{bottom:869.865000px;}
.y75{bottom:871.845000px;}
.y50{bottom:874.185000px;}
.y1a{bottom:887.325000px;}
.yd8{bottom:894.525000px;}
.y101{bottom:895.245000px;}
.y74{bottom:897.585000px;}
.y4f{bottom:898.485000px;}
.y121{bottom:898.845000px;}
.y9c{bottom:902.805000px;}
.y19{bottom:906.585000px;}
.y17{bottom:915.270000px;}
.ydc{bottom:918.870000px;}
.yd7{bottom:919.230000px;}
.y100{bottom:919.950000px;}
.y73{bottom:922.290000px;}
.y12{bottom:922.470000px;}
.y4e{bottom:923.550000px;}
.y16{bottom:926.396347px;}
.y9a{bottom:941.010000px;}
.yd6{bottom:943.890000px;}
.yff{bottom:944.610000px;}
.y72{bottom:947.130000px;}
.y4d{bottom:948.210000px;}
.yd5{bottom:966.390000px;}
.yfe{bottom:969.450000px;}
.y71{bottom:971.790000px;}
.y4c{bottom:972.870000px;}
.y98{bottom:979.170000px;}
.yfd{bottom:995.190000px;}
.y70{bottom:996.450000px;}
.y4b{bottom:997.530000px;}
.yd4{bottom:1004.550000px;}
.y10{bottom:1018.590000px;}
.yfc{bottom:1019.850000px;}
.y6f{bottom:1021.110000px;}
.y4a{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.yd3{bottom:1042.710000px;}
.yfb{bottom:1044.510000px;}
.y97{bottom:1045.770000px;}
.y49{bottom:1046.850000px;}
.yfa{bottom:1069.350000px;}
.y96{bottom:1070.430000px;}
.y48{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.yd2{bottom:1080.870000px;}
.y9{bottom:1081.950000px;}
.y95{bottom:1095.090000px;}
.y47{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yd1{bottom:1119.030000px;}
.y94{bottom:1119.750000px;}
.y6e{bottom:1120.470000px;}
.y46{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.yf9{bottom:1144.410000px;}
.y45{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.yf8{bottom:1169.100000px;}
.yd0{bottom:1169.820000px;}
.y44{bottom:1170.180000px;}
.y42{bottom:1187.280000px;}
.y41{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h25{height:5.653125px;}
.h10{height:6.465000px;}
.h17{height:7.185000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h22{height:24.645000px;}
.h24{height:24.660000px;}
.h23{height:24.682500px;}
.h26{height:24.690000px;}
.h7{height:28.290000px;}
.h1f{height:30.480469px;}
.h19{height:36.861328px;}
.h1c{height:46.251562px;}
.h1e{height:46.736719px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h28{height:61.189805px;}
.h29{height:61.337250px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h1a{height:64.978594px;}
.h1d{height:65.010937px;}
.h20{height:65.499609px;}
.h1b{height:66.757500px;}
.h21{height:68.084282px;}
.h6{height:71.324297px;}
.h16{height:72.562500px;}
.h14{height:74.736211px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h2a{height:86.255508px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h27{height:323.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:58.140000px;}
.wa{width:91.965000px;}
.w9{width:92.196000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wb{width:109.641000px;}
.we{width:123.105000px;}
.wd{width:124.596000px;}
.wf{width:165.795000px;}
.wc{width:166.695000px;}
.w11{width:173.550000px;}
.w8{width:225.015000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w12{width:540.000000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x3a{left:9.900000px;}
.x5{left:10.965000px;}
.x13{left:15.469500px;}
.x29{left:18.345000px;}
.x10{left:20.685000px;}
.x28{left:22.500000px;}
.x23{left:29.520000px;}
.x2a{left:30.990000px;}
.xb{left:34.185000px;}
.x26{left:38.190000px;}
.x2b{left:39.630000px;}
.x34{left:41.925000px;}
.x27{left:44.445000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x30{left:55.965000px;}
.x2{left:60.841500px;}
.x37{left:76.350000px;}
.x3c{left:80.130000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x21{left:86.790000px;}
.x3b{left:87.915000px;}
.xd{left:95.925000px;}
.x1a{left:105.696000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1f{left:135.036000px;}
.x2f{left:152.685000px;}
.x15{left:159.328500px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x39{left:176.400000px;}
.x20{left:183.465000px;}
.x14{left:191.908500px;}
.x16{left:196.588500px;}
.x6{left:209.010000px;}
.x2e{left:263.730000px;}
.x31{left:321.735000px;}
.x17{left:324.965515px;}
.x35{left:329.115000px;}
.x12{left:335.578500px;}
.x2c{left:373.755000px;}
.x36{left:389.595000px;}
.x22{left:410.655000px;}
.xa{left:445.620000px;}
.x32{left:448.500000px;}
.x1d{left:471.165000px;}
.x1b{left:473.505000px;}
.x1e{left:500.505000px;}
.x24{left:505.020000px;}
.x1c{left:527.505000px;}
.x33{left:573.960000px;}
.x25{left:599.340000px;}
.x2d{left:629.250000px;}
.x38{left:716.550000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls7{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.101333pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.lsd{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls15{letter-spacing:6.031360pt;}
.ls14{letter-spacing:35.471360pt;}
.lse{letter-spacing:52.751360pt;}
.lsf{letter-spacing:63.360000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws10{word-spacing:-16.718613pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsd{word-spacing:-15.088533pt;}
.wsa{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wse{word-spacing:-12.005120pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:307.042773pt;}
._40{margin-left:-4.525440pt;}
._2{margin-left:-1.936000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._c{width:2.067840pt;}
._d{width:3.709440pt;}
._b{width:5.243520pt;}
._5{width:6.768000pt;}
._3{width:7.889920pt;}
._4{width:9.119360pt;}
._34{width:10.362880pt;}
._9{width:12.141653pt;}
._a{width:13.466667pt;}
._8{width:15.838720pt;}
._6{width:17.369600pt;}
._7{width:18.488320pt;}
._2f{width:19.461760pt;}
._18{width:20.372480pt;}
._2e{width:21.432320pt;}
._1b{width:22.582400pt;}
._2a{width:24.324480pt;}
._12{width:25.560960pt;}
._13{width:26.901120pt;}
._16{width:28.158720pt;}
._17{width:29.072640pt;}
._29{width:30.728960pt;}
._21{width:31.854080pt;}
._39{width:32.827520pt;}
._f{width:33.824640pt;}
._e{width:34.829440pt;}
._1a{width:36.498560pt;}
._14{width:37.742080pt;}
._15{width:39.179520pt;}
._31{width:40.450560pt;}
._32{width:41.922560pt;}
._33{width:43.048320pt;}
._3c{width:44.859520pt;}
._3d{width:46.394880pt;}
._2c{width:47.398400pt;}
._2d{width:48.686720pt;}
._42{width:49.767680pt;}
._27{width:50.872320pt;}
._28{width:51.819307pt;}
._1e{width:53.168640pt;}
._1f{width:54.280320pt;}
._26{width:55.195520pt;}
._20{width:57.349120pt;}
._10{width:60.115627pt;}
._11{width:61.470720pt;}
._36{width:63.554133pt;}
._37{width:66.416640pt;}
._45{width:67.358720pt;}
._25{width:69.242880pt;}
._1d{width:70.597120pt;}
._1c{width:71.570560pt;}
._19{width:75.601920pt;}
._46{width:76.720640pt;}
._47{width:77.669760pt;}
._3e{width:82.196480pt;}
._3b{width:83.464320pt;}
._41{width:84.551680pt;}
._3a{width:86.906880pt;}
._38{width:90.529280pt;}
._3f{width:96.445440pt;}
._4b{width:98.977280pt;}
._2b{width:110.576640pt;}
._35{width:114.376320pt;}
._30{width:118.996480pt;}
._44{width:123.211307pt;}
._43{width:124.620800pt;}
._24{width:135.905280pt;}
._48{width:155.855360pt;}
._49{width:156.849280pt;}
._22{width:168.548907pt;}
._23{width:175.686400pt;}
._4a{width:209.907200pt;}
.fsd{font-size:5.120000pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs8{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y99{bottom:8.320000pt;}
.y9b{bottom:8.640000pt;}
.y9d{bottom:8.680000pt;}
.yf6{bottom:12.066667pt;}
.y15{bottom:23.520000pt;}
.yed{bottom:29.413333pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.yee{bottom:55.040000pt;}
.y13{bottom:62.560000pt;}
.y43{bottom:66.880000pt;}
.yef{bottom:80.666667pt;}
.yf0{bottom:106.266667pt;}
.ybd{bottom:107.520000pt;}
.ye9{bottom:111.840000pt;}
.y93{bottom:112.640000pt;}
.y120{bottom:115.040000pt;}
.y3a{bottom:121.280000pt;}
.ybc{bottom:129.440000pt;}
.yf1{bottom:131.906667pt;}
.ye8{bottom:133.760000pt;}
.ycf{bottom:134.080000pt;}
.y92{bottom:134.720000pt;}
.y11f{bottom:136.960000pt;}
.y6d{bottom:141.120000pt;}
.y39{bottom:143.200000pt;}
.ybb{bottom:151.360000pt;}
.yeb{bottom:155.360000pt;}
.ye7{bottom:155.680000pt;}
.y91{bottom:156.640000pt;}
.yf2{bottom:157.533333pt;}
.y11e{bottom:158.880000pt;}
.y6c{bottom:163.040000pt;}
.y38{bottom:165.120000pt;}
.yce{bottom:169.280000pt;}
.yba{bottom:173.280000pt;}
.yea{bottom:177.280000pt;}
.ye6{bottom:177.600000pt;}
.y90{bottom:178.560000pt;}
.y11d{bottom:180.800000pt;}
.yf3{bottom:183.173333pt;}
.y6b{bottom:184.986667pt;}
.y37{bottom:187.066667pt;}
.yb9{bottom:195.386667pt;}
.ye5{bottom:196.026667pt;}
.yec{bottom:196.160000pt;}
.y8f{bottom:200.506667pt;}
.y11c{bottom:202.426667pt;}
.ycd{bottom:204.506667pt;}
.y6a{bottom:206.906667pt;}
.yf4{bottom:208.800000pt;}
.y36{bottom:208.986667pt;}
.yb8{bottom:218.266667pt;}
.y8e{bottom:223.386667pt;}
.y11b{bottom:224.346667pt;}
.y69{bottom:228.826667pt;}
.y35{bottom:230.906667pt;}
.yf5{bottom:234.426667pt;}
.ycc{bottom:239.866667pt;}
.yb7{bottom:240.186667pt;}
.y8d{bottom:245.306667pt;}
.y11a{bottom:246.586667pt;}
.y68{bottom:250.426667pt;}
.y124{bottom:250.746667pt;}
.y34{bottom:252.826667pt;}
.yf7{bottom:260.026667pt;}
.yb6{bottom:262.106667pt;}
.y8c{bottom:267.226667pt;}
.y119{bottom:268.506667pt;}
.y67{bottom:272.346667pt;}
.y123{bottom:272.666667pt;}
.y33{bottom:274.746667pt;}
.yb5{bottom:284.026667pt;}
.y8b{bottom:289.146667pt;}
.y118{bottom:290.426667pt;}
.y66{bottom:294.586667pt;}
.y40{bottom:296.346667pt;}
.y32{bottom:296.666667pt;}
.yb4{bottom:305.946667pt;}
.y8a{bottom:310.906667pt;}
.y117{bottom:312.346667pt;}
.y65{bottom:316.506667pt;}
.y3f{bottom:318.266667pt;}
.y31{bottom:318.586667pt;}
.ycb{bottom:327.866667pt;}
.yb3{bottom:328.026667pt;}
.y89{bottom:334.106667pt;}
.y116{bottom:334.266667pt;}
.y64{bottom:338.426667pt;}
.y3e{bottom:340.186667pt;}
.y30{bottom:340.506667pt;}
.yca{bottom:349.786667pt;}
.yb2{bottom:350.906667pt;}
.y88{bottom:356.026667pt;}
.y115{bottom:356.186667pt;}
.y63{bottom:360.346667pt;}
.y3d{bottom:362.106667pt;}
.y2f{bottom:362.426667pt;}
.yc9{bottom:371.386667pt;}
.yb1{bottom:372.826667pt;}
.y87{bottom:377.946667pt;}
.y114{bottom:378.106667pt;}
.y62{bottom:382.266667pt;}
.y3c{bottom:384.026667pt;}
.y2e{bottom:384.346667pt;}
.yc8{bottom:393.346667pt;}
.yb0{bottom:394.786667pt;}
.y86{bottom:399.906667pt;}
.y113{bottom:400.066667pt;}
.y61{bottom:404.226667pt;}
.y2d{bottom:406.306667pt;}
.yc7{bottom:415.266667pt;}
.yaf{bottom:416.706667pt;}
.y112{bottom:421.986667pt;}
.y85{bottom:422.146667pt;}
.y60{bottom:426.306667pt;}
.y2c{bottom:428.226667pt;}
.yc6{bottom:437.506667pt;}
.yae{bottom:439.586667pt;}
.y111{bottom:443.906667pt;}
.y84{bottom:445.026667pt;}
.y5f{bottom:448.226667pt;}
.y2b{bottom:450.146667pt;}
.yc5{bottom:459.426667pt;}
.yad{bottom:461.506667pt;}
.y110{bottom:465.826667pt;}
.y83{bottom:466.946667pt;}
.y5e{bottom:470.146667pt;}
.y2a{bottom:471.746667pt;}
.y3b{bottom:472.066667pt;}
.yc4{bottom:481.346667pt;}
.yac{bottom:483.426667pt;}
.y10f{bottom:487.746667pt;}
.y82{bottom:488.546667pt;}
.y5d{bottom:492.066667pt;}
.ye4{bottom:492.546667pt;}
.y29{bottom:493.666667pt;}
.yc3{bottom:503.266667pt;}
.yab{bottom:505.346667pt;}
.y10e{bottom:509.666667pt;}
.y81{bottom:510.466667pt;}
.y5c{bottom:513.986667pt;}
.ye3{bottom:514.466667pt;}
.y28{bottom:515.106667pt;}
.yc2{bottom:525.186667pt;}
.yaa{bottom:526.946667pt;}
.y10d{bottom:531.586667pt;}
.y80{bottom:532.706667pt;}
.y27{bottom:534.466667pt;}
.y5b{bottom:535.586667pt;}
.y122{bottom:535.906667pt;}
.ye2{bottom:536.386667pt;}
.yc1{bottom:547.266667pt;}
.ya9{bottom:549.186667pt;}
.y10c{bottom:553.506667pt;}
.y26{bottom:553.986667pt;}
.y7f{bottom:554.626667pt;}
.ye1{bottom:556.386667pt;}
.y5a{bottom:557.826667pt;}
.yc0{bottom:570.146667pt;}
.ya8{bottom:571.106667pt;}
.y10b{bottom:575.426667pt;}
.y25{bottom:575.586667pt;}
.y7e{bottom:576.546667pt;}
.y59{bottom:579.746667pt;}
.ye0{bottom:590.306667pt;}
.ybf{bottom:592.066667pt;}
.ya7{bottom:593.026667pt;}
.y24{bottom:594.946667pt;}
.y10a{bottom:597.346667pt;}
.y7d{bottom:598.466667pt;}
.y58{bottom:601.693333pt;}
.ybe{bottom:614.013333pt;}
.y23{bottom:614.493333pt;}
.ya6{bottom:614.973333pt;}
.y109{bottom:618.973333pt;}
.y7c{bottom:620.413333pt;}
.y57{bottom:623.613333pt;}
.ydf{bottom:624.253333pt;}
.y22{bottom:633.853333pt;}
.ya5{bottom:637.053333pt;}
.y108{bottom:640.893333pt;}
.y7b{bottom:642.333333pt;}
.y56{bottom:645.533333pt;}
.y21{bottom:653.213333pt;}
.yde{bottom:658.173333pt;}
.ya4{bottom:658.973333pt;}
.y107{bottom:663.293333pt;}
.y7a{bottom:664.413333pt;}
.y55{bottom:667.453333pt;}
.y20{bottom:672.573333pt;}
.ya3{bottom:680.573333pt;}
.y106{bottom:685.213333pt;}
.y79{bottom:687.293333pt;}
.y54{bottom:689.373333pt;}
.y1f{bottom:691.933333pt;}
.ydd{bottom:692.093333pt;}
.ya2{bottom:702.493333pt;}
.y105{bottom:707.133333pt;}
.y78{bottom:709.213333pt;}
.y53{bottom:711.293333pt;}
.y1e{bottom:711.453333pt;}
.ya1{bottom:724.733333pt;}
.y104{bottom:729.053333pt;}
.ydb{bottom:729.373333pt;}
.y1d{bottom:730.813333pt;}
.y77{bottom:731.133333pt;}
.y52{bottom:733.213333pt;}
.ya0{bottom:746.653333pt;}
.y1c{bottom:750.173333pt;}
.y103{bottom:750.973333pt;}
.yda{bottom:751.293333pt;}
.y76{bottom:753.053333pt;}
.y51{bottom:755.133333pt;}
.y9f{bottom:760.733333pt;}
.y9e{bottom:768.573333pt;}
.y1b{bottom:769.533333pt;}
.y102{bottom:772.893333pt;}
.yd9{bottom:773.213333pt;}
.y75{bottom:774.973333pt;}
.y50{bottom:777.053333pt;}
.y1a{bottom:788.733333pt;}
.yd8{bottom:795.133333pt;}
.y101{bottom:795.773333pt;}
.y74{bottom:797.853333pt;}
.y4f{bottom:798.653333pt;}
.y121{bottom:798.973333pt;}
.y9c{bottom:802.493333pt;}
.y19{bottom:805.853333pt;}
.y17{bottom:813.573333pt;}
.ydc{bottom:816.773333pt;}
.yd7{bottom:817.093333pt;}
.y100{bottom:817.733333pt;}
.y73{bottom:819.813333pt;}
.y12{bottom:819.973333pt;}
.y4e{bottom:820.933333pt;}
.y16{bottom:823.463420pt;}
.y9a{bottom:836.453333pt;}
.yd6{bottom:839.013333pt;}
.yff{bottom:839.653333pt;}
.y72{bottom:841.893333pt;}
.y4d{bottom:842.853333pt;}
.yd5{bottom:859.013333pt;}
.yfe{bottom:861.733333pt;}
.y71{bottom:863.813333pt;}
.y4c{bottom:864.773333pt;}
.y98{bottom:870.373333pt;}
.yfd{bottom:884.613333pt;}
.y70{bottom:885.733333pt;}
.y4b{bottom:886.693333pt;}
.yd4{bottom:892.933333pt;}
.y10{bottom:905.413333pt;}
.yfc{bottom:906.533333pt;}
.y6f{bottom:907.653333pt;}
.y4a{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.yd3{bottom:926.853333pt;}
.yfb{bottom:928.453333pt;}
.y97{bottom:929.573333pt;}
.y49{bottom:930.533333pt;}
.yfa{bottom:950.533333pt;}
.y96{bottom:951.493333pt;}
.y48{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.yd2{bottom:960.773333pt;}
.y9{bottom:961.733333pt;}
.y95{bottom:973.413333pt;}
.y47{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yd1{bottom:994.693333pt;}
.y94{bottom:995.333333pt;}
.y6e{bottom:995.973333pt;}
.y46{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.yf9{bottom:1017.253333pt;}
.y45{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.yf8{bottom:1039.200000pt;}
.yd0{bottom:1039.840000pt;}
.y44{bottom:1040.160000pt;}
.y42{bottom:1055.360000pt;}
.y41{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h25{height:5.025000pt;}
.h10{height:5.746667pt;}
.h17{height:6.386667pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h22{height:21.906667pt;}
.h24{height:21.920000pt;}
.h23{height:21.940000pt;}
.h26{height:21.946667pt;}
.h7{height:25.146667pt;}
.h1f{height:27.093750pt;}
.h19{height:32.765625pt;}
.h1c{height:41.112500pt;}
.h1e{height:41.543750pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h28{height:54.390938pt;}
.h29{height:54.522000pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h1a{height:57.758750pt;}
.h1d{height:57.787500pt;}
.h20{height:58.221875pt;}
.h1b{height:59.340000pt;}
.h21{height:60.519362pt;}
.h6{height:63.399375pt;}
.h16{height:64.500000pt;}
.h14{height:66.432187pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h2a{height:76.671562pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h27{height:287.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:51.680000pt;}
.wa{width:81.746667pt;}
.w9{width:81.952000pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wb{width:97.458667pt;}
.we{width:109.426667pt;}
.wd{width:110.752000pt;}
.wf{width:147.373333pt;}
.wc{width:148.173333pt;}
.w11{width:154.266667pt;}
.w8{width:200.013333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w12{width:480.000000pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x3a{left:8.800000pt;}
.x5{left:9.746667pt;}
.x13{left:13.750667pt;}
.x29{left:16.306667pt;}
.x10{left:18.386667pt;}
.x28{left:20.000000pt;}
.x23{left:26.240000pt;}
.x2a{left:27.546667pt;}
.xb{left:30.386667pt;}
.x26{left:33.946667pt;}
.x2b{left:35.226667pt;}
.x34{left:37.266667pt;}
.x27{left:39.506667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x30{left:49.746667pt;}
.x2{left:54.081333pt;}
.x37{left:67.866667pt;}
.x3c{left:71.226667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x21{left:77.146667pt;}
.x3b{left:78.146667pt;}
.xd{left:85.266667pt;}
.x1a{left:93.952000pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1f{left:120.032000pt;}
.x2f{left:135.720000pt;}
.x15{left:141.625333pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x39{left:156.800000pt;}
.x20{left:163.080000pt;}
.x14{left:170.585333pt;}
.x16{left:174.745333pt;}
.x6{left:185.786667pt;}
.x2e{left:234.426667pt;}
.x31{left:285.986667pt;}
.x17{left:288.858236pt;}
.x35{left:292.546667pt;}
.x12{left:298.292000pt;}
.x2c{left:332.226667pt;}
.x36{left:346.306667pt;}
.x22{left:365.026667pt;}
.xa{left:396.106667pt;}
.x32{left:398.666667pt;}
.x1d{left:418.813333pt;}
.x1b{left:420.893333pt;}
.x1e{left:444.893333pt;}
.x24{left:448.906667pt;}
.x1c{left:468.893333pt;}
.x33{left:510.186667pt;}
.x25{left:532.746667pt;}
.x2d{left:559.333333pt;}
.x38{left:636.933333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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