
    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_fd2aa2049731ab091829a47a.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_0c1e1c93dadeffb614d4a014.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_7d14c4246023bd113b82a4ce.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_704ff715c72ada6983ddf6fb.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_a2772f3bf366726eda85b346.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_b8a6772c808f00f46a19e447.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_0248939c6b5dfe4af02327f0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_9667fef1cad76b0c8ed343ee.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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;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_2a22a9e29577ec85757ae818.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e8535d131f8a65213047ef3d.woff')format("woff");}.fff{font-family:fff;line-height:1.061035;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_b2ddb77861d48ea40dbfeadb.woff')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_b4b11f737b32ad81ee9addf4.woff')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_332030cf0aba99d05d4b403c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.372070;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:27.360000px;}
.ls16{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.642000px;}
.ls19{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.061920px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls15{letter-spacing:0.080400px;}
.lsb{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lse{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.296640px;}
.lsa{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.354000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.457800px;}
.ls11{letter-spacing:0.472320px;}
.ls3{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.699840px;}
.ls10{letter-spacing:5.040000px;}
.ls1d{letter-spacing:6.785280px;}
.lsd{letter-spacing:11.520000px;}
.ls18{letter-spacing:37.025280px;}
.ls1c{letter-spacing:39.905280px;}
.ls17{letter-spacing:59.345280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsc{word-spacing:-17.017800px;}
.ws6{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws7{word-spacing:0.000000px;}
._36{margin-left:-2.193360px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.739360px;}
._3{width:3.821760px;}
._b{width:5.010240px;}
._11{width:6.058800px;}
._7{width:7.438080px;}
._5{width:8.447760px;}
._6{width:9.551280px;}
._12{width:10.873200px;}
._4{width:11.923200px;}
._14{width:13.844160px;}
._19{width:15.367680px;}
._29{width:18.348480px;}
._8{width:20.070720px;}
._d{width:21.416880px;}
._15{width:23.051520px;}
._2b{width:24.840000px;}
._2a{width:25.868880px;}
._28{width:26.893440px;}
._23{width:28.152000px;}
._1f{width:30.108240px;}
._25{width:31.397760px;}
._26{width:32.554800px;}
._2d{width:33.848640px;}
._2e{width:35.724960px;}
._13{width:36.895680px;}
._27{width:38.040960px;}
._1e{width:39.315600px;}
._c{width:40.406400px;}
._10{width:42.062400px;}
._31{width:43.188480px;}
._9{width:44.248320px;}
._a{width:45.542160px;}
._24{width:46.964160px;}
._e{width:48.870000px;}
._f{width:49.924080px;}
._1d{width:51.009120px;}
._1c{width:52.130880px;}
._32{width:53.919360px;}
._2f{width:56.157840px;}
._1b{width:57.169440px;}
._16{width:58.856400px;}
._1a{width:60.106320px;}
._43{width:61.404480px;}
._3c{width:63.590400px;}
._3a{width:65.908800px;}
._3b{width:67.049760px;}
._33{width:68.293440px;}
._49{width:69.388560px;}
._41{width:70.580880px;}
._42{width:71.967600px;}
._47{width:73.954320px;}
._38{width:75.556800px;}
._34{width:77.337360px;}
._35{width:78.361920px;}
._44{width:79.492320px;}
._3e{width:81.806400px;}
._30{width:83.131200px;}
._3d{width:84.330960px;}
._2c{width:88.698960px;}
._39{width:90.270000px;}
._37{width:94.134480px;}
._17{width:95.849280px;}
._18{width:97.143120px;}
._4b{width:100.088640px;}
._4a{width:105.917760px;}
._45{width:108.302400px;}
._46{width:110.164560px;}
._3f{width:121.122000px;}
._48{width:129.631680px;}
._22{width:152.893440px;}
._40{width:179.066880px;}
._20{width:189.617520px;}
._21{width:197.647200px;}
._4c{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs7{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y16{bottom:4.185000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y15{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y14{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y13{bottom:71.685000px;}
.y3d{bottom:75.240000px;}
.y12{bottom:95.265000px;}
.ya9{bottom:112.500000px;}
.y86{bottom:120.780000px;}
.y121{bottom:121.320000px;}
.y61{bottom:129.060000px;}
.y39{bottom:130.320000px;}
.yec{bottom:130.500000px;}
.y144{bottom:134.100000px;}
.ya8{bottom:137.160000px;}
.y85{bottom:145.440000px;}
.y120{bottom:145.980000px;}
.yc3{bottom:149.940000px;}
.y60{bottom:153.720000px;}
.y38{bottom:154.980000px;}
.yeb{bottom:155.160000px;}
.y143{bottom:158.760000px;}
.ya7{bottom:161.820000px;}
.y84{bottom:169.740000px;}
.y11f{bottom:170.640000px;}
.yc2{bottom:174.780000px;}
.y5f{bottom:178.380000px;}
.y37{bottom:179.640000px;}
.yea{bottom:179.820000px;}
.y142{bottom:183.420000px;}
.ya6{bottom:186.480000px;}
.y83{bottom:194.400000px;}
.y11e{bottom:195.300000px;}
.yc1{bottom:196.020000px;}
.y5e{bottom:203.040000px;}
.y36{bottom:204.300000px;}
.ye9{bottom:204.480000px;}
.y141{bottom:208.110000px;}
.ya5{bottom:211.170000px;}
.y82{bottom:215.670000px;}
.y11d{bottom:219.990000px;}
.y5d{bottom:227.730000px;}
.y35{bottom:228.990000px;}
.ye8{bottom:229.170000px;}
.y140{bottom:232.770000px;}
.ya4{bottom:235.830000px;}
.y11c{bottom:244.650000px;}
.y5c{bottom:252.390000px;}
.y109{bottom:252.570000px;}
.y34{bottom:253.650000px;}
.ye7{bottom:254.010000px;}
.y81{bottom:256.710000px;}
.y13f{bottom:257.430000px;}
.ya3{bottom:260.490000px;}
.y11b{bottom:269.310000px;}
.y5b{bottom:277.050000px;}
.y105{bottom:277.410000px;}
.y33{bottom:278.310000px;}
.ye6{bottom:278.670000px;}
.y80{bottom:281.370000px;}
.y13e{bottom:282.090000px;}
.ya2{bottom:285.150000px;}
.y11a{bottom:293.970000px;}
.y5a{bottom:301.710000px;}
.y104{bottom:302.070000px;}
.y32{bottom:302.970000px;}
.ye5{bottom:303.330000px;}
.y7f{bottom:306.030000px;}
.y13d{bottom:306.750000px;}
.ya1{bottom:309.810000px;}
.y119{bottom:318.270000px;}
.y59{bottom:326.370000px;}
.y103{bottom:326.730000px;}
.y31{bottom:327.630000px;}
.ye4{bottom:327.990000px;}
.y7e{bottom:330.690000px;}
.y13c{bottom:331.410000px;}
.ya0{bottom:334.470000px;}
.y118{bottom:343.290000px;}
.y58{bottom:351.030000px;}
.y102{bottom:351.390000px;}
.y30{bottom:352.290000px;}
.ye3{bottom:352.650000px;}
.y7d{bottom:355.350000px;}
.y13b{bottom:356.070000px;}
.y9f{bottom:359.130000px;}
.y117{bottom:367.950000px;}
.y57{bottom:375.870000px;}
.y101{bottom:376.230000px;}
.y2f{bottom:376.950000px;}
.ye2{bottom:377.310000px;}
.y7c{bottom:380.010000px;}
.y13a{bottom:380.730000px;}
.y9e{bottom:383.790000px;}
.y116{bottom:392.610000px;}
.y56{bottom:400.530000px;}
.y2e{bottom:401.610000px;}
.ye1{bottom:401.970000px;}
.y7b{bottom:404.670000px;}
.y139{bottom:405.390000px;}
.y9d{bottom:408.450000px;}
.y115{bottom:417.270000px;}
.y55{bottom:425.190000px;}
.y2d{bottom:426.270000px;}
.ye0{bottom:426.630000px;}
.y7a{bottom:429.330000px;}
.y138{bottom:430.050000px;}
.y9c{bottom:433.110000px;}
.yc0{bottom:433.290000px;}
.y114{bottom:441.975000px;}
.y54{bottom:449.895000px;}
.y2c{bottom:450.975000px;}
.y100{bottom:451.335000px;}
.y79{bottom:454.035000px;}
.y137{bottom:454.755000px;}
.y9b{bottom:457.815000px;}
.ybf{bottom:459.075000px;}
.y113{bottom:466.635000px;}
.y53{bottom:474.555000px;}
.y2b{bottom:475.635000px;}
.ydf{bottom:475.995000px;}
.y78{bottom:478.875000px;}
.y136{bottom:479.595000px;}
.y9a{bottom:482.475000px;}
.ybe{bottom:483.735000px;}
.y112{bottom:491.475000px;}
.y52{bottom:499.215000px;}
.y2a{bottom:500.475000px;}
.yde{bottom:500.655000px;}
.y77{bottom:504.075000px;}
.y135{bottom:504.255000px;}
.y99{bottom:507.135000px;}
.ybd{bottom:508.395000px;}
.y111{bottom:516.135000px;}
.y51{bottom:523.875000px;}
.y29{bottom:525.135000px;}
.ydd{bottom:525.315000px;}
.y134{bottom:528.915000px;}
.y76{bottom:529.095000px;}
.y98{bottom:531.795000px;}
.ybc{bottom:533.055000px;}
.y110{bottom:540.795000px;}
.y50{bottom:548.535000px;}
.y28{bottom:549.795000px;}
.ydc{bottom:549.975000px;}
.yff{bottom:551.055000px;}
.y133{bottom:553.575000px;}
.y75{bottom:553.755000px;}
.y97{bottom:556.455000px;}
.ybb{bottom:557.715000px;}
.y10f{bottom:565.455000px;}
.y4f{bottom:573.195000px;}
.y27{bottom:574.455000px;}
.ydb{bottom:574.635000px;}
.yfe{bottom:575.715000px;}
.y132{bottom:578.235000px;}
.y74{bottom:578.415000px;}
.y96{bottom:581.115000px;}
.yba{bottom:582.375000px;}
.y10e{bottom:589.755000px;}
.y4e{bottom:597.855000px;}
.y26{bottom:599.115000px;}
.yda{bottom:599.295000px;}
.yfd{bottom:600.555000px;}
.y131{bottom:602.895000px;}
.y73{bottom:603.075000px;}
.y95{bottom:605.775000px;}
.yb9{bottom:607.035000px;}
.y10d{bottom:614.415000px;}
.y4d{bottom:622.515000px;}
.y25{bottom:623.415000px;}
.y3a{bottom:623.775000px;}
.yd9{bottom:623.955000px;}
.yfc{bottom:625.215000px;}
.y130{bottom:627.555000px;}
.y72{bottom:627.735000px;}
.y94{bottom:630.435000px;}
.yb8{bottom:631.695000px;}
.y10c{bottom:635.475000px;}
.y108{bottom:637.275000px;}
.y4c{bottom:647.175000px;}
.y24{bottom:648.435000px;}
.yd8{bottom:648.615000px;}
.yfb{bottom:649.875000px;}
.y12f{bottom:652.215000px;}
.y71{bottom:652.395000px;}
.y93{bottom:655.275000px;}
.yb7{bottom:656.355000px;}
.y107{bottom:662.295000px;}
.y4b{bottom:671.835000px;}
.y23{bottom:672.015000px;}
.yd7{bottom:673.275000px;}
.yfa{bottom:674.535000px;}
.y12e{bottom:676.905000px;}
.y70{bottom:677.625000px;}
.y92{bottom:679.965000px;}
.yb6{bottom:681.045000px;}
.y106{bottom:683.025000px;}
.y147{bottom:695.805000px;}
.y22{bottom:696.165000px;}
.y4a{bottom:696.525000px;}
.yd6{bottom:697.965000px;}
.yf9{bottom:700.305000px;}
.y12d{bottom:701.565000px;}
.y6f{bottom:702.645000px;}
.y91{bottom:704.625000px;}
.yb5{bottom:705.705000px;}
.y21{bottom:718.125000px;}
.y49{bottom:721.185000px;}
.yd5{bottom:722.625000px;}
.yf8{bottom:724.965000px;}
.y12c{bottom:726.225000px;}
.y6e{bottom:727.305000px;}
.y90{bottom:729.285000px;}
.yb4{bottom:730.365000px;}
.y20{bottom:742.425000px;}
.y48{bottom:745.845000px;}
.yd4{bottom:747.285000px;}
.yf7{bottom:749.625000px;}
.y12b{bottom:750.525000px;}
.y146{bottom:750.885000px;}
.yb3{bottom:751.245000px;}
.y6d{bottom:751.965000px;}
.y8f{bottom:753.585000px;}
.y1f{bottom:764.205000px;}
.y47{bottom:770.505000px;}
.yd3{bottom:771.945000px;}
.yf6{bottom:774.285000px;}
.y12a{bottom:775.545000px;}
.y6c{bottom:776.625000px;}
.y8e{bottom:778.245000px;}
.y1e{bottom:786.165000px;}
.y10b{bottom:789.045000px;}
.y46{bottom:795.165000px;}
.yd2{bottom:796.605000px;}
.yf5{bottom:798.945000px;}
.yb2{bottom:799.485000px;}
.y129{bottom:800.205000px;}
.y6b{bottom:801.285000px;}
.y8d{bottom:804.345000px;}
.y1d{bottom:807.945000px;}
.y10a{bottom:809.745000px;}
.y45{bottom:819.825000px;}
.yd1{bottom:821.265000px;}
.yf4{bottom:823.605000px;}
.yb1{bottom:824.145000px;}
.y128{bottom:824.865000px;}
.y6a{bottom:825.945000px;}
.y8c{bottom:829.005000px;}
.y1c{bottom:829.725000px;}
.y44{bottom:844.485000px;}
.yb0{bottom:844.845000px;}
.yd0{bottom:845.925000px;}
.yf3{bottom:848.265000px;}
.y127{bottom:849.525000px;}
.y8b{bottom:849.885000px;}
.y69{bottom:850.605000px;}
.y1b{bottom:851.505000px;}
.y43{bottom:869.145000px;}
.ycf{bottom:870.585000px;}
.y1a{bottom:872.925000px;}
.y126{bottom:874.185000px;}
.y68{bottom:875.265000px;}
.y19{bottom:892.365000px;}
.y42{bottom:893.445000px;}
.yce{bottom:895.245000px;}
.yf2{bottom:897.585000px;}
.y125{bottom:898.845000px;}
.y67{bottom:899.925000px;}
.y17{bottom:901.005000px;}
.y11{bottom:908.205000px;}
.y41{bottom:918.510000px;}
.ycd{bottom:919.950000px;}
.yf1{bottom:922.290000px;}
.y124{bottom:923.190000px;}
.y145{bottom:923.550000px;}
.y66{bottom:924.630000px;}
.y40{bottom:939.210000px;}
.ycc{bottom:944.790000px;}
.yaf{bottom:945.330000px;}
.yf0{bottom:947.130000px;}
.y123{bottom:948.210000px;}
.y65{bottom:949.290000px;}
.yae{bottom:969.990000px;}
.ycb{bottom:970.530000px;}
.yef{bottom:971.790000px;}
.y122{bottom:972.870000px;}
.y64{bottom:973.590000px;}
.yad{bottom:994.650000px;}
.yca{bottom:995.190000px;}
.yee{bottom:997.530000px;}
.y63{bottom:998.610000px;}
.y62{bottom:1019.490000px;}
.yc9{bottom:1019.850000px;}
.yed{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.yc8{bottom:1044.510000px;}
.yac{bottom:1044.690000px;}
.y8a{bottom:1046.850000px;}
.yc7{bottom:1069.350000px;}
.yab{bottom:1070.430000px;}
.y89{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yaa{bottom:1095.090000px;}
.y88{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yc6{bottom:1119.750000px;}
.y87{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.yc5{bottom:1144.410000px;}
.y3f{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.yc4{bottom:1169.100000px;}
.y3e{bottom:1170.180000px;}
.y3c{bottom:1187.280000px;}
.y3b{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.h18{height:36.861328px;}
.he{height:41.025000px;}
.h1c{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h20{height:59.614102px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1a{height:65.010937px;}
.h1e{height:65.499609px;}
.h1b{height:66.757500px;}
.h1f{height:68.084282px;}
.h14{height:70.628906px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:120.982500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x16{left:42.463500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x13{left:75.763500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x20{left:113.076000px;}
.x21{left:140.076000px;}
.x1a{left:162.030000px;}
.x4{left:168.885000px;}
.x17{left:198.748500px;}
.x6{left:209.010000px;}
.x18{left:214.048500px;}
.x14{left:261.208500px;}
.x15{left:263.368500px;}
.x12{left:335.578500px;}
.x28{left:347.475000px;}
.x1d{left:434.775000px;}
.xa{left:445.620000px;}
.x1b{left:473.505000px;}
.x26{left:478.545000px;}
.x22{left:484.125000px;}
.x2a{left:497.085000px;}
.x23{left:505.545000px;}
.x1c{left:527.505000px;}
.x1f{left:689.550000px;}
.x25{left:717.990000px;}
.x7{left:722.490000px;}
.x24{left:739.410000px;}
.x1{left:748.950000px;}
.x2b{left:788.550000px;}
.x27{left:790.710000px;}
.x1e{left:813.960000px;}
.x29{left:821.340000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.570667pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.055040pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls15{letter-spacing:0.071467pt;}
.lsb{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.263680pt;}
.lsa{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.314667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.406933pt;}
.ls11{letter-spacing:0.419840pt;}
.ls3{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.622080pt;}
.ls10{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:6.031360pt;}
.lsd{letter-spacing:10.240000pt;}
.ls18{letter-spacing:32.911360pt;}
.ls1c{letter-spacing:35.471360pt;}
.ls17{letter-spacing:52.751360pt;}
.ws9{word-spacing:-58.880000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsc{word-spacing:-15.126933pt;}
.ws6{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws7{word-spacing:0.000000pt;}
._36{margin-left:-1.949653pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.434987pt;}
._3{width:3.397120pt;}
._b{width:4.453547pt;}
._11{width:5.385600pt;}
._7{width:6.611627pt;}
._5{width:7.509120pt;}
._6{width:8.490027pt;}
._12{width:9.665067pt;}
._4{width:10.598400pt;}
._14{width:12.305920pt;}
._19{width:13.660160pt;}
._29{width:16.309760pt;}
._8{width:17.840640pt;}
._d{width:19.037227pt;}
._15{width:20.490240pt;}
._2b{width:22.080000pt;}
._2a{width:22.994560pt;}
._28{width:23.905280pt;}
._23{width:25.024000pt;}
._1f{width:26.762880pt;}
._25{width:27.909120pt;}
._26{width:28.937600pt;}
._2d{width:30.087680pt;}
._2e{width:31.755520pt;}
._13{width:32.796160pt;}
._27{width:33.814187pt;}
._1e{width:34.947200pt;}
._c{width:35.916800pt;}
._10{width:37.388800pt;}
._31{width:38.389760pt;}
._9{width:39.331840pt;}
._a{width:40.481920pt;}
._24{width:41.745920pt;}
._e{width:43.440000pt;}
._f{width:44.376960pt;}
._1d{width:45.341440pt;}
._1c{width:46.338560pt;}
._32{width:47.928320pt;}
._2f{width:49.918080pt;}
._1b{width:50.817280pt;}
._16{width:52.316800pt;}
._1a{width:53.427840pt;}
._43{width:54.581760pt;}
._3c{width:56.524800pt;}
._3a{width:58.585600pt;}
._3b{width:59.599787pt;}
._33{width:60.705280pt;}
._49{width:61.678720pt;}
._41{width:62.738560pt;}
._42{width:63.971200pt;}
._47{width:65.737173pt;}
._38{width:67.161600pt;}
._34{width:68.744320pt;}
._35{width:69.655040pt;}
._44{width:70.659840pt;}
._3e{width:72.716800pt;}
._30{width:73.894400pt;}
._3d{width:74.960853pt;}
._2c{width:78.843520pt;}
._39{width:80.240000pt;}
._37{width:83.675093pt;}
._17{width:85.199360pt;}
._18{width:86.349440pt;}
._4b{width:88.967680pt;}
._4a{width:94.149120pt;}
._45{width:96.268800pt;}
._46{width:97.924053pt;}
._3f{width:107.664000pt;}
._48{width:115.228160pt;}
._22{width:135.905280pt;}
._40{width:159.170560pt;}
._20{width:168.548907pt;}
._21{width:175.686400pt;}
._4c{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs7{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y16{bottom:3.720000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y15{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y14{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:63.720000pt;}
.y3d{bottom:66.880000pt;}
.y12{bottom:84.680000pt;}
.ya9{bottom:100.000000pt;}
.y86{bottom:107.360000pt;}
.y121{bottom:107.840000pt;}
.y61{bottom:114.720000pt;}
.y39{bottom:115.840000pt;}
.yec{bottom:116.000000pt;}
.y144{bottom:119.200000pt;}
.ya8{bottom:121.920000pt;}
.y85{bottom:129.280000pt;}
.y120{bottom:129.760000pt;}
.yc3{bottom:133.280000pt;}
.y60{bottom:136.640000pt;}
.y38{bottom:137.760000pt;}
.yeb{bottom:137.920000pt;}
.y143{bottom:141.120000pt;}
.ya7{bottom:143.840000pt;}
.y84{bottom:150.880000pt;}
.y11f{bottom:151.680000pt;}
.yc2{bottom:155.360000pt;}
.y5f{bottom:158.560000pt;}
.y37{bottom:159.680000pt;}
.yea{bottom:159.840000pt;}
.y142{bottom:163.040000pt;}
.ya6{bottom:165.760000pt;}
.y83{bottom:172.800000pt;}
.y11e{bottom:173.600000pt;}
.yc1{bottom:174.240000pt;}
.y5e{bottom:180.480000pt;}
.y36{bottom:181.600000pt;}
.ye9{bottom:181.760000pt;}
.y141{bottom:184.986667pt;}
.ya5{bottom:187.706667pt;}
.y82{bottom:191.706667pt;}
.y11d{bottom:195.546667pt;}
.y5d{bottom:202.426667pt;}
.y35{bottom:203.546667pt;}
.ye8{bottom:203.706667pt;}
.y140{bottom:206.906667pt;}
.ya4{bottom:209.626667pt;}
.y11c{bottom:217.466667pt;}
.y5c{bottom:224.346667pt;}
.y109{bottom:224.506667pt;}
.y34{bottom:225.466667pt;}
.ye7{bottom:225.786667pt;}
.y81{bottom:228.186667pt;}
.y13f{bottom:228.826667pt;}
.ya3{bottom:231.546667pt;}
.y11b{bottom:239.386667pt;}
.y5b{bottom:246.266667pt;}
.y105{bottom:246.586667pt;}
.y33{bottom:247.386667pt;}
.ye6{bottom:247.706667pt;}
.y80{bottom:250.106667pt;}
.y13e{bottom:250.746667pt;}
.ya2{bottom:253.466667pt;}
.y11a{bottom:261.306667pt;}
.y5a{bottom:268.186667pt;}
.y104{bottom:268.506667pt;}
.y32{bottom:269.306667pt;}
.ye5{bottom:269.626667pt;}
.y7f{bottom:272.026667pt;}
.y13d{bottom:272.666667pt;}
.ya1{bottom:275.386667pt;}
.y119{bottom:282.906667pt;}
.y59{bottom:290.106667pt;}
.y103{bottom:290.426667pt;}
.y31{bottom:291.226667pt;}
.ye4{bottom:291.546667pt;}
.y7e{bottom:293.946667pt;}
.y13c{bottom:294.586667pt;}
.ya0{bottom:297.306667pt;}
.y118{bottom:305.146667pt;}
.y58{bottom:312.026667pt;}
.y102{bottom:312.346667pt;}
.y30{bottom:313.146667pt;}
.ye3{bottom:313.466667pt;}
.y7d{bottom:315.866667pt;}
.y13b{bottom:316.506667pt;}
.y9f{bottom:319.226667pt;}
.y117{bottom:327.066667pt;}
.y57{bottom:334.106667pt;}
.y101{bottom:334.426667pt;}
.y2f{bottom:335.066667pt;}
.ye2{bottom:335.386667pt;}
.y7c{bottom:337.786667pt;}
.y13a{bottom:338.426667pt;}
.y9e{bottom:341.146667pt;}
.y116{bottom:348.986667pt;}
.y56{bottom:356.026667pt;}
.y2e{bottom:356.986667pt;}
.ye1{bottom:357.306667pt;}
.y7b{bottom:359.706667pt;}
.y139{bottom:360.346667pt;}
.y9d{bottom:363.066667pt;}
.y115{bottom:370.906667pt;}
.y55{bottom:377.946667pt;}
.y2d{bottom:378.906667pt;}
.ye0{bottom:379.226667pt;}
.y7a{bottom:381.626667pt;}
.y138{bottom:382.266667pt;}
.y9c{bottom:384.986667pt;}
.yc0{bottom:385.146667pt;}
.y114{bottom:392.866667pt;}
.y54{bottom:399.906667pt;}
.y2c{bottom:400.866667pt;}
.y100{bottom:401.186667pt;}
.y79{bottom:403.586667pt;}
.y137{bottom:404.226667pt;}
.y9b{bottom:406.946667pt;}
.ybf{bottom:408.066667pt;}
.y113{bottom:414.786667pt;}
.y53{bottom:421.826667pt;}
.y2b{bottom:422.786667pt;}
.ydf{bottom:423.106667pt;}
.y78{bottom:425.666667pt;}
.y136{bottom:426.306667pt;}
.y9a{bottom:428.866667pt;}
.ybe{bottom:429.986667pt;}
.y112{bottom:436.866667pt;}
.y52{bottom:443.746667pt;}
.y2a{bottom:444.866667pt;}
.yde{bottom:445.026667pt;}
.y77{bottom:448.066667pt;}
.y135{bottom:448.226667pt;}
.y99{bottom:450.786667pt;}
.ybd{bottom:451.906667pt;}
.y111{bottom:458.786667pt;}
.y51{bottom:465.666667pt;}
.y29{bottom:466.786667pt;}
.ydd{bottom:466.946667pt;}
.y134{bottom:470.146667pt;}
.y76{bottom:470.306667pt;}
.y98{bottom:472.706667pt;}
.ybc{bottom:473.826667pt;}
.y110{bottom:480.706667pt;}
.y50{bottom:487.586667pt;}
.y28{bottom:488.706667pt;}
.ydc{bottom:488.866667pt;}
.yff{bottom:489.826667pt;}
.y133{bottom:492.066667pt;}
.y75{bottom:492.226667pt;}
.y97{bottom:494.626667pt;}
.ybb{bottom:495.746667pt;}
.y10f{bottom:502.626667pt;}
.y4f{bottom:509.506667pt;}
.y27{bottom:510.626667pt;}
.ydb{bottom:510.786667pt;}
.yfe{bottom:511.746667pt;}
.y132{bottom:513.986667pt;}
.y74{bottom:514.146667pt;}
.y96{bottom:516.546667pt;}
.yba{bottom:517.666667pt;}
.y10e{bottom:524.226667pt;}
.y4e{bottom:531.426667pt;}
.y26{bottom:532.546667pt;}
.yda{bottom:532.706667pt;}
.yfd{bottom:533.826667pt;}
.y131{bottom:535.906667pt;}
.y73{bottom:536.066667pt;}
.y95{bottom:538.466667pt;}
.yb9{bottom:539.586667pt;}
.y10d{bottom:546.146667pt;}
.y4d{bottom:553.346667pt;}
.y25{bottom:554.146667pt;}
.y3a{bottom:554.466667pt;}
.yd9{bottom:554.626667pt;}
.yfc{bottom:555.746667pt;}
.y130{bottom:557.826667pt;}
.y72{bottom:557.986667pt;}
.y94{bottom:560.386667pt;}
.yb8{bottom:561.506667pt;}
.y10c{bottom:564.866667pt;}
.y108{bottom:566.466667pt;}
.y4c{bottom:575.266667pt;}
.y24{bottom:576.386667pt;}
.yd8{bottom:576.546667pt;}
.yfb{bottom:577.666667pt;}
.y12f{bottom:579.746667pt;}
.y71{bottom:579.906667pt;}
.y93{bottom:582.466667pt;}
.yb7{bottom:583.426667pt;}
.y107{bottom:588.706667pt;}
.y4b{bottom:597.186667pt;}
.y23{bottom:597.346667pt;}
.yd7{bottom:598.466667pt;}
.yfa{bottom:599.586667pt;}
.y12e{bottom:601.693333pt;}
.y70{bottom:602.333333pt;}
.y92{bottom:604.413333pt;}
.yb6{bottom:605.373333pt;}
.y106{bottom:607.133333pt;}
.y147{bottom:618.493333pt;}
.y22{bottom:618.813333pt;}
.y4a{bottom:619.133333pt;}
.yd6{bottom:620.413333pt;}
.yf9{bottom:622.493333pt;}
.y12d{bottom:623.613333pt;}
.y6f{bottom:624.573333pt;}
.y91{bottom:626.333333pt;}
.yb5{bottom:627.293333pt;}
.y21{bottom:638.333333pt;}
.y49{bottom:641.053333pt;}
.yd5{bottom:642.333333pt;}
.yf8{bottom:644.413333pt;}
.y12c{bottom:645.533333pt;}
.y6e{bottom:646.493333pt;}
.y90{bottom:648.253333pt;}
.yb4{bottom:649.213333pt;}
.y20{bottom:659.933333pt;}
.y48{bottom:662.973333pt;}
.yd4{bottom:664.253333pt;}
.yf7{bottom:666.333333pt;}
.y12b{bottom:667.133333pt;}
.y146{bottom:667.453333pt;}
.yb3{bottom:667.773333pt;}
.y6d{bottom:668.413333pt;}
.y8f{bottom:669.853333pt;}
.y1f{bottom:679.293333pt;}
.y47{bottom:684.893333pt;}
.yd3{bottom:686.173333pt;}
.yf6{bottom:688.253333pt;}
.y12a{bottom:689.373333pt;}
.y6c{bottom:690.333333pt;}
.y8e{bottom:691.773333pt;}
.y1e{bottom:698.813333pt;}
.y10b{bottom:701.373333pt;}
.y46{bottom:706.813333pt;}
.yd2{bottom:708.093333pt;}
.yf5{bottom:710.173333pt;}
.yb2{bottom:710.653333pt;}
.y129{bottom:711.293333pt;}
.y6b{bottom:712.253333pt;}
.y8d{bottom:714.973333pt;}
.y1d{bottom:718.173333pt;}
.y10a{bottom:719.773333pt;}
.y45{bottom:728.733333pt;}
.yd1{bottom:730.013333pt;}
.yf4{bottom:732.093333pt;}
.yb1{bottom:732.573333pt;}
.y128{bottom:733.213333pt;}
.y6a{bottom:734.173333pt;}
.y8c{bottom:736.893333pt;}
.y1c{bottom:737.533333pt;}
.y44{bottom:750.653333pt;}
.yb0{bottom:750.973333pt;}
.yd0{bottom:751.933333pt;}
.yf3{bottom:754.013333pt;}
.y127{bottom:755.133333pt;}
.y8b{bottom:755.453333pt;}
.y69{bottom:756.093333pt;}
.y1b{bottom:756.893333pt;}
.y43{bottom:772.573333pt;}
.ycf{bottom:773.853333pt;}
.y1a{bottom:775.933333pt;}
.y126{bottom:777.053333pt;}
.y68{bottom:778.013333pt;}
.y19{bottom:793.213333pt;}
.y42{bottom:794.173333pt;}
.yce{bottom:795.773333pt;}
.yf2{bottom:797.853333pt;}
.y125{bottom:798.973333pt;}
.y67{bottom:799.933333pt;}
.y17{bottom:800.893333pt;}
.y11{bottom:807.293333pt;}
.y41{bottom:816.453333pt;}
.ycd{bottom:817.733333pt;}
.yf1{bottom:819.813333pt;}
.y124{bottom:820.613333pt;}
.y145{bottom:820.933333pt;}
.y66{bottom:821.893333pt;}
.y40{bottom:834.853333pt;}
.ycc{bottom:839.813333pt;}
.yaf{bottom:840.293333pt;}
.yf0{bottom:841.893333pt;}
.y123{bottom:842.853333pt;}
.y65{bottom:843.813333pt;}
.yae{bottom:862.213333pt;}
.ycb{bottom:862.693333pt;}
.yef{bottom:863.813333pt;}
.y122{bottom:864.773333pt;}
.y64{bottom:865.413333pt;}
.yad{bottom:884.133333pt;}
.yca{bottom:884.613333pt;}
.yee{bottom:886.693333pt;}
.y63{bottom:887.653333pt;}
.y62{bottom:906.213333pt;}
.yc9{bottom:906.533333pt;}
.yed{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.yc8{bottom:928.453333pt;}
.yac{bottom:928.613333pt;}
.y8a{bottom:930.533333pt;}
.yc7{bottom:950.533333pt;}
.yab{bottom:951.493333pt;}
.y89{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yaa{bottom:973.413333pt;}
.y88{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yc6{bottom:995.333333pt;}
.y87{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.yc5{bottom:1017.253333pt;}
.y3f{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.yc4{bottom:1039.200000pt;}
.y3e{bottom:1040.160000pt;}
.y3c{bottom:1055.360000pt;}
.y3b{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h18{height:32.765625pt;}
.he{height:36.466667pt;}
.h1c{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h20{height:52.990313pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h1e{height:58.221875pt;}
.h1b{height:59.340000pt;}
.h1f{height:60.519362pt;}
.h14{height:62.781250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:107.540000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x16{left:37.745333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x13{left:67.345333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x20{left:100.512000pt;}
.x21{left:124.512000pt;}
.x1a{left:144.026667pt;}
.x4{left:150.120000pt;}
.x17{left:176.665333pt;}
.x6{left:185.786667pt;}
.x18{left:190.265333pt;}
.x14{left:232.185333pt;}
.x15{left:234.105333pt;}
.x12{left:298.292000pt;}
.x28{left:308.866667pt;}
.x1d{left:386.466667pt;}
.xa{left:396.106667pt;}
.x1b{left:420.893333pt;}
.x26{left:425.373333pt;}
.x22{left:430.333333pt;}
.x2a{left:441.853333pt;}
.x23{left:449.373333pt;}
.x1c{left:468.893333pt;}
.x1f{left:612.933333pt;}
.x25{left:638.213333pt;}
.x7{left:642.213333pt;}
.x24{left:657.253333pt;}
.x1{left:665.733333pt;}
.x2b{left:700.933333pt;}
.x27{left:702.853333pt;}
.x1e{left:723.520000pt;}
.x29{left:730.080000pt;}
}




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