
    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_3b137eee3e460cea5b40b44f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ee9526e7c783aa59b838f9b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_009d5fef36afe30a6233d07e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_8cb161b5bb71eccebd2b4595.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_972d3957ce749e2c8e22ae53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;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_5fe24763f4ef58687b4a9046.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.863770;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_19d727b5ba9ade1ee5150684.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.211914;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_13c914d2759ed2678d679cee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_a9f1dd72a18c50cce0239747.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_4c495f3e1cd6d5366121209f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.025879;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_cbf46c87ef90de03c99cc8c5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884277;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_56719f2c440c21a21c63ab3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.211914;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_580620740354a4823d83f36c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e335f32dcc86846a15b1257a.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-1.074000px;}
.ls25{letter-spacing:-0.930000px;}
.ls10{letter-spacing:-0.738000px;}
.ls32{letter-spacing:-0.553200px;}
.lsd{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.368400px;}
.ls22{letter-spacing:-0.351600px;}
.ls2f{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.244800px;}
.ls31{letter-spacing:-0.227400px;}
.ls4{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.204600px;}
.ls2a{letter-spacing:-0.175200px;}
.ls30{letter-spacing:-0.169800px;}
.ls1b{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.150000px;}
.ls3{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.103800px;}
.ls2e{letter-spacing:-0.080400px;}
.ls12{letter-spacing:-0.036000px;}
.ls6{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.121200px;}
.lsc{letter-spacing:0.144000px;}
.lse{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.152400px;}
.ls15{letter-spacing:0.152640px;}
.ls18{letter-spacing:0.166800px;}
.ls29{letter-spacing:0.167040px;}
.ls1a{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.310800px;}
.ls1c{letter-spacing:0.311040px;}
.ls5{letter-spacing:0.314400px;}
.ls1f{letter-spacing:0.334800px;}
.lsb{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.368400px;}
.ls1{letter-spacing:0.835200px;}
.ls0{letter-spacing:1.015200px;}
.ls13{letter-spacing:1.140480px;}
.ls11{letter-spacing:1.884000px;}
.ls16{letter-spacing:4.032000px;}
.ls27{letter-spacing:4.043520px;}
.ls21{letter-spacing:16.283520px;}
.ls26{letter-spacing:17.003520px;}
.ls14{letter-spacing:19.163520px;}
.ls2b{letter-spacing:24.900000px;}
.lsf{letter-spacing:28.980000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-73.872000px;}
.ws1{word-spacing:-73.728000px;}
.ws2{word-spacing:-73.656000px;}
.ws11{word-spacing:-38.016000px;}
.ws3{word-spacing:-33.064320px;}
.ws20{word-spacing:-23.437680px;}
.ws16{word-spacing:-23.316480px;}
.ws21{word-spacing:-23.236080px;}
.ws1c{word-spacing:-23.212680px;}
.ws17{word-spacing:-23.166480px;}
.ws23{word-spacing:-23.146680px;}
.ws1e{word-spacing:-23.111880px;}
.ws24{word-spacing:-23.089080px;}
.ws22{word-spacing:-23.071680px;}
.ws1d{word-spacing:-22.948080px;}
.ws14{word-spacing:-22.578480px;}
.ws1b{word-spacing:-21.370320px;}
.ws18{word-spacing:-21.244920px;}
.ws19{word-spacing:-21.187920px;}
.ws13{word-spacing:-21.035520px;}
.ws1f{word-spacing:-20.860320px;}
.ws4{word-spacing:-20.437920px;}
.ws5{word-spacing:-20.428560px;}
.ws15{word-spacing:-19.008000px;}
.ws7{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.498080px;}
.wsb{word-spacing:-16.488000px;}
.ws9{word-spacing:-16.416000px;}
.ws8{word-spacing:-15.984000px;}
.wsa{word-spacing:-15.768000px;}
.ws1a{word-spacing:-13.685760px;}
.wse{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.648000px;}
.wsd{word-spacing:-0.504000px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
._1{margin-left:-1.788480px;}
._0{width:1.560000px;}
._14{width:2.592000px;}
._2{width:4.371840px;}
._f{width:6.226560px;}
._e{width:8.015040px;}
._d{width:9.604800px;}
._c{width:10.664640px;}
._11{width:11.856960px;}
._12{width:13.248000px;}
._4{width:14.499840px;}
._3{width:15.897600px;}
._1f{width:16.899120px;}
._9{width:18.149760px;}
._8{width:19.275840px;}
._7{width:20.335680px;}
._6{width:21.395520px;}
._20{width:22.493040px;}
._21{width:23.535360px;}
._5{width:24.906240px;}
._b{width:26.322240px;}
._a{width:27.622080px;}
._13{width:28.662240px;}
._1e{width:29.916000px;}
._17{width:31.957440px;}
._18{width:33.524160px;}
._25{width:34.908480px;}
._10{width:36.189120px;}
._1b{width:37.845120px;}
._26{width:39.015360px;}
._16{width:40.978560px;}
._15{width:41.996160px;}
._1a{width:45.013440px;}
._19{width:46.066560px;}
._24{width:48.740880px;}
._23{width:49.780080px;}
._22{width:50.855760px;}
._1c{width:54.614400px;}
._1d{width:55.761840px;}
._2c{width:80.812800px;}
._2b{width:81.872640px;}
._2a{width:176.198400px;}
._27{width:186.730560px;}
._28{width:199.960320px;}
._29{width:201.223680px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(79,129,189);}
.fc1{color:rgb(204,0,102);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:216.000000px;}
.fs1{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.500000px;}
.y3d{bottom:5.580000px;}
.y40{bottom:5.760000px;}
.y3f{bottom:24.120000px;}
.y3e{bottom:41.760000px;}
.y2{bottom:57.420000px;}
.y43{bottom:57.636000px;}
.y42{bottom:77.796000px;}
.y6b{bottom:108.936000px;}
.ydd{bottom:110.196000px;}
.y112{bottom:113.436000px;}
.yf8{bottom:121.176000px;}
.y2e{bottom:123.300000px;}
.y6a{bottom:125.316000px;}
.y111{bottom:127.296000px;}
.y8d{bottom:129.816000px;}
.y132{bottom:132.156000px;}
.yb0{bottom:133.596000px;}
.yd1{bottom:137.556000px;}
.ydc{bottom:140.436000px;}
.y69{bottom:141.696000px;}
.y110{bottom:148.536000px;}
.yf7{bottom:151.230000px;}
.y68{bottom:158.070000px;}
.yaf{bottom:160.950000px;}
.y131{bottom:162.210000px;}
.y67{bottom:162.570000px;}
.y2d{bottom:162.900000px;}
.yd0{bottom:167.610000px;}
.y102{bottom:170.490000px;}
.ydb{bottom:171.570000px;}
.y66{bottom:174.450000px;}
.y10f{bottom:178.590000px;}
.yf6{bottom:181.290000px;}
.y2c{bottom:183.090000px;}
.yae{bottom:188.310000px;}
.y8c{bottom:190.830000px;}
.y65{bottom:191.910000px;}
.y130{bottom:192.270000px;}
.y64{bottom:197.130000px;}
.ycf{bottom:197.850000px;}
.y101{bottom:200.550000px;}
.yda{bottom:201.990000px;}
.y2b{bottom:203.070000px;}
.y8b{bottom:207.390000px;}
.y10e{bottom:208.650000px;}
.y63{bottom:210.090000px;}
.yf5{bottom:211.530000px;}
.yad{bottom:215.670000px;}
.y12f{bottom:222.330000px;}
.y2a{bottom:223.050000px;}
.y8a{bottom:223.770000px;}
.yce{bottom:227.910000px;}
.y89{bottom:228.270000px;}
.yd9{bottom:229.350000px;}
.y100{bottom:230.610000px;}
.y62{bottom:233.310000px;}
.y10d{bottom:238.710000px;}
.yf4{bottom:240.150000px;}
.y88{bottom:242.130000px;}
.yac{bottom:243.030000px;}
.y29{bottom:243.210000px;}
.y12e{bottom:252.390000px;}
.yd8{bottom:256.710000px;}
.ycd{bottom:257.970000px;}
.yff{bottom:260.670000px;}
.y28{bottom:263.190000px;}
.y61{bottom:263.370000px;}
.yf3{bottom:267.510000px;}
.y10c{bottom:268.950000px;}
.yab{bottom:270.390000px;}
.y87{bottom:273.135000px;}
.y12d{bottom:282.675000px;}
.y27{bottom:283.350000px;}
.yd7{bottom:284.115000px;}
.ycc{bottom:288.075000px;}
.yfe{bottom:290.775000px;}
.y60{bottom:293.475000px;}
.yf2{bottom:294.915000px;}
.yaa{bottom:297.615000px;}
.y10b{bottom:299.055000px;}
.y86{bottom:300.495000px;}
.y26{bottom:303.330000px;}
.yd6{bottom:311.295000px;}
.y12c{bottom:312.735000px;}
.ycb{bottom:318.135000px;}
.yfd{bottom:320.835000px;}
.yf1{bottom:322.275000px;}
.y25{bottom:323.490000px;}
.y5f{bottom:323.535000px;}
.ya9{bottom:327.495000px;}
.y85{bottom:327.855000px;}
.y10a{bottom:330.195000px;}
.yd5{bottom:338.655000px;}
.y12b{bottom:342.795000px;}
.y24{bottom:345.450000px;}
.yca{bottom:348.195000px;}
.yf0{bottom:349.635000px;}
.yfc{bottom:350.895000px;}
.y5e{bottom:353.775000px;}
.y84{bottom:355.215000px;}
.ya8{bottom:359.175000px;}
.y109{bottom:360.615000px;}
.yd4{bottom:366.015000px;}
.y23{bottom:367.410000px;}
.y12a{bottom:371.595000px;}
.yef{bottom:376.995000px;}
.yc9{bottom:378.255000px;}
.yfb{bottom:380.955000px;}
.y83{bottom:382.395000px;}
.y5c{bottom:383.835000px;}
.y108{bottom:387.975000px;}
.y22{bottom:389.190000px;}
.y5d{bottom:389.775000px;}
.ya7{bottom:390.315000px;}
.yd3{bottom:393.375000px;}
.y129{bottom:398.955000px;}
.yee{bottom:405.615000px;}
.yc8{bottom:408.315000px;}
.y82{bottom:409.755000px;}
.y21{bottom:410.835000px;}
.yfa{bottom:411.195000px;}
.y5b{bottom:413.895000px;}
.y107{bottom:415.335000px;}
.ya6{bottom:420.735000px;}
.y128{bottom:426.315000px;}
.y20{bottom:431.175000px;}
.yed{bottom:435.675000px;}
.yc7{bottom:438.375000px;}
.y81{bottom:439.635000px;}
.yf9{bottom:441.255000px;}
.y106{bottom:442.695000px;}
.y5a{bottom:443.955000px;}
.ya5{bottom:448.095000px;}
.y1f{bottom:453.135000px;}
.y127{bottom:453.495000px;}
.yec{bottom:465.735000px;}
.yc6{bottom:468.615000px;}
.y105{bottom:470.055000px;}
.y80{bottom:471.315000px;}
.y59{bottom:474.015000px;}
.y1e{bottom:474.915000px;}
.ya4{bottom:475.455000px;}
.y126{bottom:480.855000px;}
.yeb{bottom:495.795000px;}
.y1d{bottom:496.875000px;}
.yc5{bottom:498.675000px;}
.y104{bottom:499.755000px;}
.y7f{bottom:501.375000px;}
.ya3{bottom:502.815000px;}
.y58{bottom:504.075000px;}
.y125{bottom:510.735000px;}
.y1c{bottom:518.655000px;}
.yea{bottom:526.035000px;}
.yc4{bottom:528.735000px;}
.ya2{bottom:530.175000px;}
.y7e{bottom:531.435000px;}
.y57{bottom:534.135000px;}
.y1b{bottom:540.615000px;}
.y124{bottom:542.415000px;}
.ye9{bottom:556.125000px;}
.ya1{bottom:557.565000px;}
.yc3{bottom:558.825000px;}
.yd2{bottom:559.905000px;}
.y7d{bottom:561.525000px;}
.y1a{bottom:562.395000px;}
.y56{bottom:564.225000px;}
.y123{bottom:572.505000px;}
.y19{bottom:584.355000px;}
.ya0{bottom:584.925000px;}
.yc2{bottom:588.885000px;}
.y7c{bottom:591.585000px;}
.y55{bottom:594.285000px;}
.y103{bottom:597.525000px;}
.y122{bottom:602.565000px;}
.y18{bottom:606.135000px;}
.y9f{bottom:612.285000px;}
.yc1{bottom:618.945000px;}
.y7a{bottom:621.645000px;}
.y54{bottom:624.345000px;}
.y7b{bottom:627.585000px;}
.y17{bottom:628.095000px;}
.y121{bottom:632.625000px;}
.y9e{bottom:639.465000px;}
.yc0{bottom:649.005000px;}
.y16{bottom:649.875000px;}
.y79{bottom:651.705000px;}
.y53{bottom:654.585000px;}
.y120{bottom:662.685000px;}
.ye8{bottom:666.825000px;}
.y9d{bottom:669.345000px;}
.y15{bottom:671.865000px;}
.ybf{bottom:679.065000px;}
.y78{bottom:681.945000px;}
.y52{bottom:684.645000px;}
.y11f{bottom:692.745000px;}
.y14{bottom:693.645000px;}
.ye7{bottom:694.185000px;}
.y9c{bottom:701.025000px;}
.y3b{bottom:703.440000px;}
.ybe{bottom:709.125000px;}
.y77{bottom:712.005000px;}
.y51{bottom:714.705000px;}
.y13{bottom:715.605000px;}
.y11e{bottom:722.805000px;}
.ye6{bottom:724.065000px;}
.y9b{bottom:731.085000px;}
.y12{bottom:737.385000px;}
.ybd{bottom:739.365000px;}
.y76{bottom:742.065000px;}
.y3a{bottom:743.760000px;}
.y50{bottom:744.765000px;}
.y11d{bottom:753.045000px;}
.ye5{bottom:754.485000px;}
.y11{bottom:760.605000px;}
.y9a{bottom:761.145000px;}
.ybc{bottom:769.425000px;}
.y75{bottom:772.125000px;}
.y4f{bottom:774.825000px;}
.ye4{bottom:783.105000px;}
.y39{bottom:783.900000px;}
.y99{bottom:791.205000px;}
.y10{bottom:796.065000px;}
.ybb{bottom:799.485000px;}
.y74{bottom:802.185000px;}
.y4e{bottom:804.885000px;}
.ye3{bottom:811.905000px;}
.y11c{bottom:813.165000px;}
.y98{bottom:821.265000px;}
.y38{bottom:824.220000px;}
.yba{bottom:829.545000px;}
.y73{bottom:832.245000px;}
.y4d{bottom:834.945000px;}
.ye2{bottom:839.130000px;}
.y11b{bottom:843.270000px;}
.y97{bottom:851.370000px;}
.yb9{bottom:859.650000px;}
.y71{bottom:862.350000px;}
.y37{bottom:864.540000px;}
.y4c{bottom:865.050000px;}
.yf{bottom:865.365000px;}
.ye1{bottom:866.490000px;}
.y72{bottom:868.290000px;}
.y11a{bottom:873.330000px;}
.y96{bottom:881.610000px;}
.yb8{bottom:889.710000px;}
.y70{bottom:892.410000px;}
.ye0{bottom:893.850000px;}
.y4b{bottom:896.370000px;}
.y119{bottom:903.390000px;}
.y36{bottom:904.680000px;}
.y95{bottom:911.670000px;}
.yb7{bottom:919.770000px;}
.ydf{bottom:921.210000px;}
.y6f{bottom:922.470000px;}
.y35{bottom:926.640000px;}
.y4a{bottom:926.790000px;}
.y118{bottom:933.450000px;}
.y94{bottom:940.470000px;}
.ye{bottom:941.730000px;}
.y34{bottom:948.780000px;}
.yb6{bottom:949.830000px;}
.yde{bottom:950.910000px;}
.y6e{bottom:952.530000px;}
.y49{bottom:953.970000px;}
.y117{bottom:962.250000px;}
.yd{bottom:963.510000px;}
.y93{bottom:967.650000px;}
.yb5{bottom:979.890000px;}
.y48{bottom:981.330000px;}
.y6d{bottom:982.770000px;}
.yc{bottom:985.470000px;}
.y33{bottom:988.403040px;}
.y116{bottom:989.610000px;}
.y92{bottom:995.010000px;}
.yb{bottom:1007.250000px;}
.yb4{bottom:1010.130000px;}
.y47{bottom:1011.210000px;}
.y6c{bottom:1012.830000px;}
.y115{bottom:1016.970000px;}
.y91{bottom:1022.370000px;}
.y32{bottom:1026.557280px;}
.ya{bottom:1029.210000px;}
.yb3{bottom:1040.190000px;}
.y45{bottom:1042.890000px;}
.y114{bottom:1044.330000px;}
.y46{bottom:1048.110000px;}
.y90{bottom:1049.730000px;}
.y9{bottom:1050.990000px;}
.y31{bottom:1064.711520px;}
.yb2{bottom:1070.250000px;}
.y133{bottom:1071.330000px;}
.y113{bottom:1071.690000px;}
.y8{bottom:1072.950000px;}
.y8f{bottom:1077.090000px;}
.y7{bottom:1094.910000px;}
.yb1{bottom:1101.390000px;}
.y30{bottom:1102.865760px;}
.y44{bottom:1103.010000px;}
.y8e{bottom:1104.450000px;}
.y6{bottom:1116.690000px;}
.y41{bottom:1124.100000px;}
.y5{bottom:1138.650000px;}
.y2f{bottom:1141.020000px;}
.y3c{bottom:1148.400000px;}
.y3{bottom:1189.080000px;}
.y1{bottom:1193.580000px;}
.h3{height:20.700000px;}
.h17{height:31.817813px;}
.h1d{height:36.017578px;}
.h1b{height:38.158594px;}
.h1a{height:41.780391px;}
.hc{height:45.345937px;}
.hb{height:45.695391px;}
.h12{height:48.905156px;}
.he{height:49.289062px;}
.hd{height:49.359375px;}
.h13{height:50.229844px;}
.h11{height:50.364141px;}
.h9{height:50.650312px;}
.h1e{height:54.026367px;}
.h14{height:54.208125px;}
.h4{height:54.703125px;}
.h8{height:55.054688px;}
.hf{height:55.980000px;}
.h1c{height:58.651172px;}
.ha{height:58.921875px;}
.h19{height:59.789180px;}
.h15{height:66.272344px;}
.h18{height:72.035156px;}
.h7{height:73.222734px;}
.h2{height:74.004654px;}
.h10{height:108.052734px;}
.h6{height:165.164062px;}
.h5{height:218.812500px;}
.h16{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.085000px;}
.w4{width:80.482500px;}
.w3{width:571.200000px;}
.w5{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:6.870000px;}
.xa{left:119.025000px;}
.x1{left:127.656000px;}
.x17{left:132.516000px;}
.x4{left:180.930000px;}
.x1c{left:191.370000px;}
.x19{left:233.107500px;}
.x1a{left:239.790000px;}
.x1b{left:244.650000px;}
.x9{left:304.815000px;}
.x8{left:308.595000px;}
.x18{left:315.075000px;}
.x5{left:330.555000px;}
.x7{left:347.475000px;}
.x6{left:384.015000px;}
.xb{left:396.600000px;}
.x1d{left:431.512500px;}
.x1e{left:438.195000px;}
.x3{left:446.505000px;}
.xf{left:473.115000px;}
.x15{left:549.082500px;}
.x16{left:555.765000px;}
.x13{left:578.985000px;}
.x14{left:587.085000px;}
.x12{left:610.845000px;}
.xc{left:693.660000px;}
.x10{left:702.307500px;}
.x11{left:709.170000px;}
.xe{left:740.490000px;}
.x2{left:757.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-0.954667pt;}
.ls25{letter-spacing:-0.826667pt;}
.ls10{letter-spacing:-0.656000pt;}
.ls32{letter-spacing:-0.491733pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.327467pt;}
.ls22{letter-spacing:-0.312533pt;}
.ls2f{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.217600pt;}
.ls31{letter-spacing:-0.202133pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.181867pt;}
.ls2a{letter-spacing:-0.155733pt;}
.ls30{letter-spacing:-0.150933pt;}
.ls1b{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.133333pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.092267pt;}
.ls2e{letter-spacing:-0.071467pt;}
.ls12{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.107733pt;}
.lsc{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.135467pt;}
.ls15{letter-spacing:0.135680pt;}
.ls18{letter-spacing:0.148267pt;}
.ls29{letter-spacing:0.148480pt;}
.ls1a{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.276267pt;}
.ls1c{letter-spacing:0.276480pt;}
.ls5{letter-spacing:0.279467pt;}
.ls1f{letter-spacing:0.297600pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.327467pt;}
.ls1{letter-spacing:0.742400pt;}
.ls0{letter-spacing:0.902400pt;}
.ls13{letter-spacing:1.013760pt;}
.ls11{letter-spacing:1.674667pt;}
.ls16{letter-spacing:3.584000pt;}
.ls27{letter-spacing:3.594240pt;}
.ls21{letter-spacing:14.474240pt;}
.ls26{letter-spacing:15.114240pt;}
.ls14{letter-spacing:17.034240pt;}
.ls2b{letter-spacing:22.133333pt;}
.lsf{letter-spacing:25.760000pt;}
.ws0{word-spacing:-65.664000pt;}
.ws1{word-spacing:-65.536000pt;}
.ws2{word-spacing:-65.472000pt;}
.ws11{word-spacing:-33.792000pt;}
.ws3{word-spacing:-29.390507pt;}
.ws20{word-spacing:-20.833493pt;}
.ws16{word-spacing:-20.725760pt;}
.ws21{word-spacing:-20.654293pt;}
.ws1c{word-spacing:-20.633493pt;}
.ws17{word-spacing:-20.592427pt;}
.ws23{word-spacing:-20.574827pt;}
.ws1e{word-spacing:-20.543893pt;}
.ws24{word-spacing:-20.523627pt;}
.ws22{word-spacing:-20.508160pt;}
.ws1d{word-spacing:-20.398293pt;}
.ws14{word-spacing:-20.069760pt;}
.ws1b{word-spacing:-18.995840pt;}
.ws18{word-spacing:-18.884373pt;}
.ws19{word-spacing:-18.833707pt;}
.ws13{word-spacing:-18.698240pt;}
.ws1f{word-spacing:-18.542507pt;}
.ws4{word-spacing:-18.167040pt;}
.ws5{word-spacing:-18.158720pt;}
.ws15{word-spacing:-16.896000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.664960pt;}
.wsb{word-spacing:-14.656000pt;}
.ws9{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.208000pt;}
.wsa{word-spacing:-14.016000pt;}
.ws1a{word-spacing:-12.165120pt;}
.wse{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.576000pt;}
.wsd{word-spacing:-0.448000pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
._1{margin-left:-1.589760pt;}
._0{width:1.386667pt;}
._14{width:2.304000pt;}
._2{width:3.886080pt;}
._f{width:5.534720pt;}
._e{width:7.124480pt;}
._d{width:8.537600pt;}
._c{width:9.479680pt;}
._11{width:10.539520pt;}
._12{width:11.776000pt;}
._4{width:12.888747pt;}
._3{width:14.131200pt;}
._1f{width:15.021440pt;}
._9{width:16.133120pt;}
._8{width:17.134080pt;}
._7{width:18.076160pt;}
._6{width:19.018240pt;}
._20{width:19.993813pt;}
._21{width:20.920320pt;}
._5{width:22.138880pt;}
._b{width:23.397547pt;}
._a{width:24.552960pt;}
._13{width:25.477547pt;}
._1e{width:26.592000pt;}
._17{width:28.406613pt;}
._18{width:29.799253pt;}
._25{width:31.029760pt;}
._10{width:32.168107pt;}
._1b{width:33.640107pt;}
._26{width:34.680320pt;}
._16{width:36.425387pt;}
._15{width:37.329920pt;}
._1a{width:40.011947pt;}
._19{width:40.948053pt;}
._24{width:43.325227pt;}
._23{width:44.248960pt;}
._22{width:45.205120pt;}
._1c{width:48.546133pt;}
._1d{width:49.566080pt;}
._2c{width:71.833600pt;}
._2b{width:72.775680pt;}
._2a{width:156.620800pt;}
._27{width:165.982720pt;}
._28{width:177.742507pt;}
._29{width:178.865493pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:192.000000pt;}
.fs1{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.000000pt;}
.y3d{bottom:4.960000pt;}
.y40{bottom:5.120000pt;}
.y3f{bottom:21.440000pt;}
.y3e{bottom:37.120000pt;}
.y2{bottom:51.040000pt;}
.y43{bottom:51.232000pt;}
.y42{bottom:69.152000pt;}
.y6b{bottom:96.832000pt;}
.ydd{bottom:97.952000pt;}
.y112{bottom:100.832000pt;}
.yf8{bottom:107.712000pt;}
.y2e{bottom:109.600000pt;}
.y6a{bottom:111.392000pt;}
.y111{bottom:113.152000pt;}
.y8d{bottom:115.392000pt;}
.y132{bottom:117.472000pt;}
.yb0{bottom:118.752000pt;}
.yd1{bottom:122.272000pt;}
.ydc{bottom:124.832000pt;}
.y69{bottom:125.952000pt;}
.y110{bottom:132.032000pt;}
.yf7{bottom:134.426667pt;}
.y68{bottom:140.506667pt;}
.yaf{bottom:143.066667pt;}
.y131{bottom:144.186667pt;}
.y67{bottom:144.506667pt;}
.y2d{bottom:144.800000pt;}
.yd0{bottom:148.986667pt;}
.y102{bottom:151.546667pt;}
.ydb{bottom:152.506667pt;}
.y66{bottom:155.066667pt;}
.y10f{bottom:158.746667pt;}
.yf6{bottom:161.146667pt;}
.y2c{bottom:162.746667pt;}
.yae{bottom:167.386667pt;}
.y8c{bottom:169.626667pt;}
.y65{bottom:170.586667pt;}
.y130{bottom:170.906667pt;}
.y64{bottom:175.226667pt;}
.ycf{bottom:175.866667pt;}
.y101{bottom:178.266667pt;}
.yda{bottom:179.546667pt;}
.y2b{bottom:180.506667pt;}
.y8b{bottom:184.346667pt;}
.y10e{bottom:185.466667pt;}
.y63{bottom:186.746667pt;}
.yf5{bottom:188.026667pt;}
.yad{bottom:191.706667pt;}
.y12f{bottom:197.626667pt;}
.y2a{bottom:198.266667pt;}
.y8a{bottom:198.906667pt;}
.yce{bottom:202.586667pt;}
.y89{bottom:202.906667pt;}
.yd9{bottom:203.866667pt;}
.y100{bottom:204.986667pt;}
.y62{bottom:207.386667pt;}
.y10d{bottom:212.186667pt;}
.yf4{bottom:213.466667pt;}
.y88{bottom:215.226667pt;}
.yac{bottom:216.026667pt;}
.y29{bottom:216.186667pt;}
.y12e{bottom:224.346667pt;}
.yd8{bottom:228.186667pt;}
.ycd{bottom:229.306667pt;}
.yff{bottom:231.706667pt;}
.y28{bottom:233.946667pt;}
.y61{bottom:234.106667pt;}
.yf3{bottom:237.786667pt;}
.y10c{bottom:239.066667pt;}
.yab{bottom:240.346667pt;}
.y87{bottom:242.786667pt;}
.y12d{bottom:251.266667pt;}
.y27{bottom:251.866667pt;}
.yd7{bottom:252.546667pt;}
.ycc{bottom:256.066667pt;}
.yfe{bottom:258.466667pt;}
.y60{bottom:260.866667pt;}
.yf2{bottom:262.146667pt;}
.yaa{bottom:264.546667pt;}
.y10b{bottom:265.826667pt;}
.y86{bottom:267.106667pt;}
.y26{bottom:269.626667pt;}
.yd6{bottom:276.706667pt;}
.y12c{bottom:277.986667pt;}
.ycb{bottom:282.786667pt;}
.yfd{bottom:285.186667pt;}
.yf1{bottom:286.466667pt;}
.y25{bottom:287.546667pt;}
.y5f{bottom:287.586667pt;}
.ya9{bottom:291.106667pt;}
.y85{bottom:291.426667pt;}
.y10a{bottom:293.506667pt;}
.yd5{bottom:301.026667pt;}
.y12b{bottom:304.706667pt;}
.y24{bottom:307.066667pt;}
.yca{bottom:309.506667pt;}
.yf0{bottom:310.786667pt;}
.yfc{bottom:311.906667pt;}
.y5e{bottom:314.466667pt;}
.y84{bottom:315.746667pt;}
.ya8{bottom:319.266667pt;}
.y109{bottom:320.546667pt;}
.yd4{bottom:325.346667pt;}
.y23{bottom:326.586667pt;}
.y12a{bottom:330.306667pt;}
.yef{bottom:335.106667pt;}
.yc9{bottom:336.226667pt;}
.yfb{bottom:338.626667pt;}
.y83{bottom:339.906667pt;}
.y5c{bottom:341.186667pt;}
.y108{bottom:344.866667pt;}
.y22{bottom:345.946667pt;}
.y5d{bottom:346.466667pt;}
.ya7{bottom:346.946667pt;}
.yd3{bottom:349.666667pt;}
.y129{bottom:354.626667pt;}
.yee{bottom:360.546667pt;}
.yc8{bottom:362.946667pt;}
.y82{bottom:364.226667pt;}
.y21{bottom:365.186667pt;}
.yfa{bottom:365.506667pt;}
.y5b{bottom:367.906667pt;}
.y107{bottom:369.186667pt;}
.ya6{bottom:373.986667pt;}
.y128{bottom:378.946667pt;}
.y20{bottom:383.266667pt;}
.yed{bottom:387.266667pt;}
.yc7{bottom:389.666667pt;}
.y81{bottom:390.786667pt;}
.yf9{bottom:392.226667pt;}
.y106{bottom:393.506667pt;}
.y5a{bottom:394.626667pt;}
.ya5{bottom:398.306667pt;}
.y1f{bottom:402.786667pt;}
.y127{bottom:403.106667pt;}
.yec{bottom:413.986667pt;}
.yc6{bottom:416.546667pt;}
.y105{bottom:417.826667pt;}
.y80{bottom:418.946667pt;}
.y59{bottom:421.346667pt;}
.y1e{bottom:422.146667pt;}
.ya4{bottom:422.626667pt;}
.y126{bottom:427.426667pt;}
.yeb{bottom:440.706667pt;}
.y1d{bottom:441.666667pt;}
.yc5{bottom:443.266667pt;}
.y104{bottom:444.226667pt;}
.y7f{bottom:445.666667pt;}
.ya3{bottom:446.946667pt;}
.y58{bottom:448.066667pt;}
.y125{bottom:453.986667pt;}
.y1c{bottom:461.026667pt;}
.yea{bottom:467.586667pt;}
.yc4{bottom:469.986667pt;}
.ya2{bottom:471.266667pt;}
.y7e{bottom:472.386667pt;}
.y57{bottom:474.786667pt;}
.y1b{bottom:480.546667pt;}
.y124{bottom:482.146667pt;}
.ye9{bottom:494.333333pt;}
.ya1{bottom:495.613333pt;}
.yc3{bottom:496.733333pt;}
.yd2{bottom:497.693333pt;}
.y7d{bottom:499.133333pt;}
.y1a{bottom:499.906667pt;}
.y56{bottom:501.533333pt;}
.y123{bottom:508.893333pt;}
.y19{bottom:519.426667pt;}
.ya0{bottom:519.933333pt;}
.yc2{bottom:523.453333pt;}
.y7c{bottom:525.853333pt;}
.y55{bottom:528.253333pt;}
.y103{bottom:531.133333pt;}
.y122{bottom:535.613333pt;}
.y18{bottom:538.786667pt;}
.y9f{bottom:544.253333pt;}
.yc1{bottom:550.173333pt;}
.y7a{bottom:552.573333pt;}
.y54{bottom:554.973333pt;}
.y7b{bottom:557.853333pt;}
.y17{bottom:558.306667pt;}
.y121{bottom:562.333333pt;}
.y9e{bottom:568.413333pt;}
.yc0{bottom:576.893333pt;}
.y16{bottom:577.666667pt;}
.y79{bottom:579.293333pt;}
.y53{bottom:581.853333pt;}
.y120{bottom:589.053333pt;}
.ye8{bottom:592.733333pt;}
.y9d{bottom:594.973333pt;}
.y15{bottom:597.213333pt;}
.ybf{bottom:603.613333pt;}
.y78{bottom:606.173333pt;}
.y52{bottom:608.573333pt;}
.y11f{bottom:615.773333pt;}
.y14{bottom:616.573333pt;}
.ye7{bottom:617.053333pt;}
.y9c{bottom:623.133333pt;}
.y3b{bottom:625.280000pt;}
.ybe{bottom:630.333333pt;}
.y77{bottom:632.893333pt;}
.y51{bottom:635.293333pt;}
.y13{bottom:636.093333pt;}
.y11e{bottom:642.493333pt;}
.ye6{bottom:643.613333pt;}
.y9b{bottom:649.853333pt;}
.y12{bottom:655.453333pt;}
.ybd{bottom:657.213333pt;}
.y76{bottom:659.613333pt;}
.y3a{bottom:661.120000pt;}
.y50{bottom:662.013333pt;}
.y11d{bottom:669.373333pt;}
.ye5{bottom:670.653333pt;}
.y11{bottom:676.093333pt;}
.y9a{bottom:676.573333pt;}
.ybc{bottom:683.933333pt;}
.y75{bottom:686.333333pt;}
.y4f{bottom:688.733333pt;}
.ye4{bottom:696.093333pt;}
.y39{bottom:696.800000pt;}
.y99{bottom:703.293333pt;}
.y10{bottom:707.613333pt;}
.ybb{bottom:710.653333pt;}
.y74{bottom:713.053333pt;}
.y4e{bottom:715.453333pt;}
.ye3{bottom:721.693333pt;}
.y11c{bottom:722.813333pt;}
.y98{bottom:730.013333pt;}
.y38{bottom:732.640000pt;}
.yba{bottom:737.373333pt;}
.y73{bottom:739.773333pt;}
.y4d{bottom:742.173333pt;}
.ye2{bottom:745.893333pt;}
.y11b{bottom:749.573333pt;}
.y97{bottom:756.773333pt;}
.yb9{bottom:764.133333pt;}
.y71{bottom:766.533333pt;}
.y37{bottom:768.480000pt;}
.y4c{bottom:768.933333pt;}
.yf{bottom:769.213333pt;}
.ye1{bottom:770.213333pt;}
.y72{bottom:771.813333pt;}
.y11a{bottom:776.293333pt;}
.y96{bottom:783.653333pt;}
.yb8{bottom:790.853333pt;}
.y70{bottom:793.253333pt;}
.ye0{bottom:794.533333pt;}
.y4b{bottom:796.773333pt;}
.y119{bottom:803.013333pt;}
.y36{bottom:804.160000pt;}
.y95{bottom:810.373333pt;}
.yb7{bottom:817.573333pt;}
.ydf{bottom:818.853333pt;}
.y6f{bottom:819.973333pt;}
.y35{bottom:823.680000pt;}
.y4a{bottom:823.813333pt;}
.y118{bottom:829.733333pt;}
.y94{bottom:835.973333pt;}
.ye{bottom:837.093333pt;}
.y34{bottom:843.360000pt;}
.yb6{bottom:844.293333pt;}
.yde{bottom:845.253333pt;}
.y6e{bottom:846.693333pt;}
.y49{bottom:847.973333pt;}
.y117{bottom:855.333333pt;}
.yd{bottom:856.453333pt;}
.y93{bottom:860.133333pt;}
.yb5{bottom:871.013333pt;}
.y48{bottom:872.293333pt;}
.y6d{bottom:873.573333pt;}
.yc{bottom:875.973333pt;}
.y33{bottom:878.580480pt;}
.y116{bottom:879.653333pt;}
.y92{bottom:884.453333pt;}
.yb{bottom:895.333333pt;}
.yb4{bottom:897.893333pt;}
.y47{bottom:898.853333pt;}
.y6c{bottom:900.293333pt;}
.y115{bottom:903.973333pt;}
.y91{bottom:908.773333pt;}
.y32{bottom:912.495360pt;}
.ya{bottom:914.853333pt;}
.yb3{bottom:924.613333pt;}
.y45{bottom:927.013333pt;}
.y114{bottom:928.293333pt;}
.y46{bottom:931.653333pt;}
.y90{bottom:933.093333pt;}
.y9{bottom:934.213333pt;}
.y31{bottom:946.410240pt;}
.yb2{bottom:951.333333pt;}
.y133{bottom:952.293333pt;}
.y113{bottom:952.613333pt;}
.y8{bottom:953.733333pt;}
.y8f{bottom:957.413333pt;}
.y7{bottom:973.253333pt;}
.yb1{bottom:979.013333pt;}
.y30{bottom:980.325120pt;}
.y44{bottom:980.453333pt;}
.y8e{bottom:981.733333pt;}
.y6{bottom:992.613333pt;}
.y41{bottom:999.200000pt;}
.y5{bottom:1012.133333pt;}
.y2f{bottom:1014.240000pt;}
.y3c{bottom:1020.800000pt;}
.y3{bottom:1056.960000pt;}
.y1{bottom:1060.960000pt;}
.h3{height:18.400000pt;}
.h17{height:28.282500pt;}
.h1d{height:32.015625pt;}
.h1b{height:33.918750pt;}
.h1a{height:37.138125pt;}
.hc{height:40.307500pt;}
.hb{height:40.618125pt;}
.h12{height:43.471250pt;}
.he{height:43.812500pt;}
.hd{height:43.875000pt;}
.h13{height:44.648750pt;}
.h11{height:44.768125pt;}
.h9{height:45.022500pt;}
.h1e{height:48.023438pt;}
.h14{height:48.185000pt;}
.h4{height:48.625000pt;}
.h8{height:48.937500pt;}
.hf{height:49.760000pt;}
.h1c{height:52.134375pt;}
.ha{height:52.375000pt;}
.h19{height:53.145938pt;}
.h15{height:58.908750pt;}
.h18{height:64.031250pt;}
.h7{height:65.086875pt;}
.h2{height:65.781915pt;}
.h10{height:96.046875pt;}
.h6{height:146.812500pt;}
.h5{height:194.500000pt;}
.h16{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.186667pt;}
.w4{width:71.540000pt;}
.w3{width:507.733333pt;}
.w5{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.106667pt;}
.xa{left:105.800000pt;}
.x1{left:113.472000pt;}
.x17{left:117.792000pt;}
.x4{left:160.826667pt;}
.x1c{left:170.106667pt;}
.x19{left:207.206667pt;}
.x1a{left:213.146667pt;}
.x1b{left:217.466667pt;}
.x9{left:270.946667pt;}
.x8{left:274.306667pt;}
.x18{left:280.066667pt;}
.x5{left:293.826667pt;}
.x7{left:308.866667pt;}
.x6{left:341.346667pt;}
.xb{left:352.533333pt;}
.x1d{left:383.566667pt;}
.x1e{left:389.506667pt;}
.x3{left:396.893333pt;}
.xf{left:420.546667pt;}
.x15{left:488.073333pt;}
.x16{left:494.013333pt;}
.x13{left:514.653333pt;}
.x14{left:521.853333pt;}
.x12{left:542.973333pt;}
.xc{left:616.586667pt;}
.x10{left:624.273333pt;}
.x11{left:630.373333pt;}
.xe{left:658.213333pt;}
.x2{left:673.253333pt;}
}




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