
    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_10f9a43fe722853b76ba64d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_88d4717247bd7f033f5d827a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_baaf5f8e5536797c2ad4cbc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_ce496e004e7e1793b15aed2a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e7882801ab896980801bc947.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6bf97e50802fd3e7da28bc3f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a89615d342948832c93fe04e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_5ba58b88864c08df367564a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.208008;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_04685fb4ffad09d944a1f3e2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7{vertical-align:-16.740000px;}
.v4{vertical-align:-14.400000px;}
.v6{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.460000px;}
.v8{vertical-align:14.400000px;}
.v5{vertical-align:17.400000px;}
.v3{vertical-align:35.940000px;}
.v2{vertical-align:42.000000px;}
.v9{vertical-align:83.400000px;}
.ls13{letter-spacing:-3.000000px;}
.ls15{letter-spacing:-2.994000px;}
.ls12{letter-spacing:-2.988000px;}
.ls14{letter-spacing:-2.700000px;}
.ls46{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.192000px;}
.ls45{letter-spacing:-0.099000px;}
.ls55{letter-spacing:-0.060000px;}
.ls11{letter-spacing:-0.012000px;}
.lsf{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls4b{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls3c{letter-spacing:0.072000px;}
.ls49{letter-spacing:0.078000px;}
.ls27{letter-spacing:0.084000px;}
.ls24{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.150000px;}
.ls44{letter-spacing:0.168000px;}
.ls2f{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls54{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.600000px;}
.ls43{letter-spacing:1.392000px;}
.ls1c{letter-spacing:1.530000px;}
.ls4{letter-spacing:1.560000px;}
.ls20{letter-spacing:1.710000px;}
.ls40{letter-spacing:1.728000px;}
.ls36{letter-spacing:2.184000px;}
.ls26{letter-spacing:2.376000px;}
.ls3a{letter-spacing:2.400000px;}
.ls30{letter-spacing:2.436000px;}
.ls34{letter-spacing:2.496000px;}
.ls32{letter-spacing:2.556000px;}
.ls37{letter-spacing:2.646000px;}
.ls2e{letter-spacing:2.811000px;}
.ls31{letter-spacing:2.871000px;}
.ls39{letter-spacing:2.931000px;}
.ls5{letter-spacing:3.216000px;}
.ls19{letter-spacing:3.246000px;}
.lsc{letter-spacing:3.276000px;}
.ls33{letter-spacing:3.441000px;}
.ls23{letter-spacing:4.239000px;}
.ls4e{letter-spacing:4.839000px;}
.ls3e{letter-spacing:4.899000px;}
.ls51{letter-spacing:9.000000px;}
.ls29{letter-spacing:10.200000px;}
.lsa{letter-spacing:10.800000px;}
.lsb{letter-spacing:11.400000px;}
.ls48{letter-spacing:11.871000px;}
.ls4a{letter-spacing:12.471000px;}
.ls2d{letter-spacing:15.000000px;}
.ls1a{letter-spacing:15.660000px;}
.ls35{letter-spacing:15.780000px;}
.lsd{letter-spacing:16.320000px;}
.ls4c{letter-spacing:18.471000px;}
.ls38{letter-spacing:19.320000px;}
.ls21{letter-spacing:19.890000px;}
.ls7{letter-spacing:19.920000px;}
.ls8{letter-spacing:20.016000px;}
.ls47{letter-spacing:20.499000px;}
.ls25{letter-spacing:21.099000px;}
.ls4f{letter-spacing:24.039000px;}
.ls3f{letter-spacing:25.299000px;}
.lse{letter-spacing:30.600000px;}
.ls1e{letter-spacing:33.984000px;}
.ls52{letter-spacing:36.000000px;}
.ls3d{letter-spacing:37.740000px;}
.ls1f{letter-spacing:41.460000px;}
.ls2b{letter-spacing:48.060000px;}
.ls42{letter-spacing:50.400000px;}
.ls41{letter-spacing:54.600000px;}
.ls3b{letter-spacing:55.320000px;}
.ls28{letter-spacing:63.720000px;}
.ls9{letter-spacing:63.984000px;}
.ls18{letter-spacing:64.134000px;}
.ls53{letter-spacing:75.150000px;}
.ls50{letter-spacing:79.200000px;}
.ls4d{letter-spacing:98.352000px;}
.ls22{letter-spacing:98.796000px;}
.ls2a{letter-spacing:194.400000px;}
.ls2c{letter-spacing:194.550000px;}
.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;}
}
.ws12{word-spacing:-60.000000px;}
.wsb{word-spacing:-18.600000px;}
.ws16{word-spacing:-18.168000px;}
.wse{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.808000px;}
.wsf{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws24{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws1f{word-spacing:-11.304000px;}
.wsc{word-spacing:-11.220000px;}
.ws18{word-spacing:-11.121000px;}
.ws19{word-spacing:-11.028000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws22{word-spacing:-0.624000px;}
.ws14{word-spacing:-0.180000px;}
.ws15{word-spacing:-0.060000px;}
.ws1b{word-spacing:-0.024000px;}
.ws10{word-spacing:0.000000px;}
.ws20{word-spacing:0.576000px;}
.ws1a{word-spacing:1.200000px;}
.ws17{word-spacing:3.912000px;}
.ws21{word-spacing:4.032000px;}
.ws1d{word-spacing:4.104000px;}
.ws13{word-spacing:4.146000px;}
.ws1c{word-spacing:19.800000px;}
.ws1e{word-spacing:34.368000px;}
.ws23{word-spacing:54.651000px;}
.wsd{word-spacing:74.535000px;}
.ws11{word-spacing:235.851000px;}
._44{margin-left:-9.759000px;}
._35{margin-left:-4.608000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._6{width:2.592000px;}
._7{width:3.816000px;}
._18{width:4.824000px;}
._5{width:6.336000px;}
._4{width:7.770000px;}
._20{width:9.072000px;}
._f{width:10.152000px;}
._10{width:11.262000px;}
._8{width:12.960000px;}
._3b{width:14.112000px;}
._12{width:15.192000px;}
._13{width:16.848000px;}
._43{width:18.144000px;}
._37{width:19.368000px;}
._17{width:20.376000px;}
._9{width:21.384000px;}
._a{width:22.968000px;}
._22{width:24.048000px;}
._b{width:25.524000px;}
._1a{width:26.568000px;}
._1b{width:27.648000px;}
._1e{width:29.160000px;}
._e{width:30.528000px;}
._49{width:31.716000px;}
._32{width:33.288000px;}
._29{width:34.632000px;}
._14{width:36.576000px;}
._42{width:38.160000px;}
._2d{width:39.384000px;}
._25{width:41.040000px;}
._c{width:42.696000px;}
._d{width:43.932000px;}
._21{width:45.144000px;}
._46{width:46.488000px;}
._1c{width:48.576000px;}
._1d{width:49.686000px;}
._47{width:51.264000px;}
._38{width:52.560000px;}
._39{width:53.784000px;}
._30{width:55.320000px;}
._26{width:56.952000px;}
._27{width:58.248000px;}
._24{width:59.616000px;}
._3a{width:61.086000px;}
._11{width:62.568000px;}
._16{width:64.326000px;}
._19{width:65.418000px;}
._1f{width:70.056000px;}
._15{width:74.736000px;}
._31{width:75.960000px;}
._36{width:78.048000px;}
._48{width:81.936000px;}
._34{width:83.952000px;}
._2e{width:84.960000px;}
._2f{width:86.616000px;}
._3c{width:87.852000px;}
._3d{width:88.878000px;}
._28{width:105.120000px;}
._4b{width:106.992000px;}
._41{width:113.160000px;}
._3e{width:116.424000px;}
._40{width:122.976000px;}
._45{width:131.721000px;}
._2c{width:144.000000px;}
._2b{width:145.284000px;}
._3f{width:180.072000px;}
._2a{width:193.719000px;}
._23{width:194.961000px;}
._33{width:359.337000px;}
._4a{width:885.168000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.ye2{bottom:3.300000px;}
.yec{bottom:3.345000px;}
.y1f{bottom:3.900000px;}
.y22{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.ye1{bottom:12.000000px;}
.ye9{bottom:12.045000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.yeb{bottom:20.595000px;}
.y1e{bottom:24.600000px;}
.ye4{bottom:29.250000px;}
.ye8{bottom:29.295000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.ye5{bottom:37.800000px;}
.yea{bottom:37.845000px;}
.y1d{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.700000px;}
.y1a{bottom:107.400000px;}
.yb9{bottom:114.787500px;}
.y105{bottom:118.687500px;}
.y3d{bottom:118.987500px;}
.ydf{bottom:122.887500px;}
.y72{bottom:124.387500px;}
.ya4{bottom:125.287500px;}
.y107{bottom:126.637500px;}
.y19{bottom:128.100000px;}
.y44{bottom:128.437500px;}
.yb8{bottom:138.637500px;}
.y104{bottom:142.537500px;}
.y3c{bottom:142.687500px;}
.yde{bottom:146.737500px;}
.y71{bottom:148.237500px;}
.ya3{bottom:149.137500px;}
.y106{bottom:150.495000px;}
.y43{bottom:152.295000px;}
.yb7{bottom:161.295000px;}
.y103{bottom:166.395000px;}
.y3b{bottom:166.545000px;}
.yb6{bottom:170.295000px;}
.ydd{bottom:170.445000px;}
.y70{bottom:172.080000px;}
.ya2{bottom:172.830000px;}
.y9b{bottom:174.345000px;}
.y42{bottom:176.445000px;}
.y102{bottom:190.245000px;}
.y3a{bottom:190.395000px;}
.ydc{bottom:194.295000px;}
.y6f{bottom:195.795000px;}
.ya1{bottom:196.695000px;}
.y9a{bottom:198.195000px;}
.yb5{bottom:198.630000px;}
.y41{bottom:200.445000px;}
.y101{bottom:213.945000px;}
.y39{bottom:214.095000px;}
.ydb{bottom:218.145000px;}
.y6e{bottom:219.630000px;}
.ya0{bottom:220.695000px;}
.y99{bottom:221.895000px;}
.yb4{bottom:222.345000px;}
.y40{bottom:224.595000px;}
.y100{bottom:237.795000px;}
.y38{bottom:237.945000px;}
.yda{bottom:241.845000px;}
.y6d{bottom:243.495000px;}
.y9f{bottom:244.995000px;}
.y98{bottom:245.745000px;}
.yb3{bottom:246.330000px;}
.y3f{bottom:247.395000px;}
.y3e{bottom:256.380000px;}
.yff{bottom:261.645000px;}
.y37{bottom:261.795000px;}
.yd9{bottom:265.695000px;}
.y6c{bottom:267.195000px;}
.y9e{bottom:268.995000px;}
.y97{bottom:269.595000px;}
.yb2{bottom:270.645000px;}
.yfe{bottom:285.345000px;}
.y36{bottom:285.495000px;}
.yd8{bottom:289.545000px;}
.y6b{bottom:291.045000px;}
.y9d{bottom:292.845000px;}
.y96{bottom:293.295000px;}
.yb1{bottom:294.945000px;}
.yfd{bottom:309.195000px;}
.y35{bottom:309.345000px;}
.yd7{bottom:313.245000px;}
.y6a{bottom:314.895000px;}
.y9c{bottom:316.845000px;}
.y95{bottom:317.130000px;}
.yb0{bottom:319.245000px;}
.yfc{bottom:333.045000px;}
.y34{bottom:333.195000px;}
.yd6{bottom:337.095000px;}
.y69{bottom:338.595000px;}
.y94{bottom:340.995000px;}
.yaf{bottom:343.245000px;}
.yfb{bottom:356.745000px;}
.y33{bottom:356.895000px;}
.yd5{bottom:360.945000px;}
.y68{bottom:362.445000px;}
.y93{bottom:364.695000px;}
.yae{bottom:367.830000px;}
.yfa{bottom:380.625000px;}
.y32{bottom:380.775000px;}
.yd4{bottom:384.825000px;}
.y67{bottom:386.325000px;}
.y92{bottom:388.575000px;}
.yad{bottom:391.425000px;}
.yf9{bottom:404.475000px;}
.y31{bottom:404.625000px;}
.yd3{bottom:408.525000px;}
.y66{bottom:410.025000px;}
.y91{bottom:412.425000px;}
.yac{bottom:415.275000px;}
.yf8{bottom:428.175000px;}
.y30{bottom:428.325000px;}
.yd2{bottom:432.375000px;}
.y65{bottom:433.875000px;}
.y90{bottom:436.125000px;}
.yab{bottom:438.975000px;}
.yf7{bottom:452.025000px;}
.y2f{bottom:452.175000px;}
.yd1{bottom:456.225000px;}
.y64{bottom:457.725000px;}
.y8f{bottom:459.975000px;}
.yaa{bottom:462.825000px;}
.yf6{bottom:475.875000px;}
.y2e{bottom:476.025000px;}
.yd0{bottom:479.925000px;}
.y63{bottom:481.725000px;}
.y8e{bottom:483.825000px;}
.ya9{bottom:486.675000px;}
.yf5{bottom:499.575000px;}
.y2d{bottom:499.875000px;}
.y62{bottom:505.725000px;}
.ya8{bottom:506.775000px;}
.y8d{bottom:507.525000px;}
.ya7{bottom:515.775000px;}
.yf4{bottom:523.425000px;}
.y2c{bottom:523.575000px;}
.y61{bottom:525.825000px;}
.y5f{bottom:530.175000px;}
.y8c{bottom:531.375000px;}
.y60{bottom:537.525000px;}
.ya6{bottom:541.275000px;}
.yf3{bottom:547.275000px;}
.y2b{bottom:547.425000px;}
.ya5{bottom:550.275000px;}
.y5e{bottom:554.325000px;}
.y8b{bottom:555.225000px;}
.yf2{bottom:571.125000px;}
.y2a{bottom:571.275000px;}
.y5d{bottom:578.025000px;}
.y8a{bottom:579.075000px;}
.yf1{bottom:594.825000px;}
.y29{bottom:594.975000px;}
.y5c{bottom:601.875000px;}
.y89{bottom:602.775000px;}
.yf0{bottom:618.675000px;}
.y28{bottom:618.825000px;}
.y5b{bottom:625.725000px;}
.y88{bottom:626.625000px;}
.yef{bottom:642.525000px;}
.y27{bottom:642.675000px;}
.y5a{bottom:649.425000px;}
.y87{bottom:650.475000px;}
.yee{bottom:666.225000px;}
.y26{bottom:666.375000px;}
.y59{bottom:673.275000px;}
.y86{bottom:674.175000px;}
.yed{bottom:683.775000px;}
.y25{bottom:690.225000px;}
.y58{bottom:697.125000px;}
.y85{bottom:698.025000px;}
.y24{bottom:714.075000px;}
.y57{bottom:720.825000px;}
.y84{bottom:721.875000px;}
.ye7{bottom:736.275000px;}
.y56{bottom:744.720000px;}
.y83{bottom:745.620000px;}
.y23{bottom:746.820000px;}
.y21{bottom:763.605000px;}
.y55{bottom:768.570000px;}
.y82{bottom:769.470000px;}
.y20{bottom:784.320000px;}
.ycf{bottom:785.955000px;}
.ye6{bottom:788.820000px;}
.y54{bottom:792.420000px;}
.y81{bottom:793.320000px;}
.y18{bottom:805.020000px;}
.yce{bottom:809.670000px;}
.y53{bottom:816.120000px;}
.y80{bottom:817.020000px;}
.ycd{bottom:833.520000px;}
.y52{bottom:839.955000px;}
.y7f{bottom:840.870000px;}
.ye3{bottom:841.320000px;}
.ycc{bottom:857.520000px;}
.y51{bottom:863.820000px;}
.y7e{bottom:864.720000px;}
.ycb{bottom:881.820000px;}
.y50{bottom:887.520000px;}
.y7d{bottom:888.420000px;}
.ye0{bottom:893.820000px;}
.yc6{bottom:903.720000px;}
.yc8{bottom:905.670000px;}
.yca{bottom:910.320000px;}
.y4f{bottom:911.370000px;}
.y7c{bottom:912.270000px;}
.yc5{bottom:914.670000px;}
.yc9{bottom:922.020000px;}
.yc7{bottom:925.170000px;}
.y4e{bottom:935.220000px;}
.y7b{bottom:936.120000px;}
.yc4{bottom:944.370000px;}
.y17{bottom:953.520000px;}
.y4d{bottom:958.920000px;}
.y7a{bottom:959.970000px;}
.yc3{bottom:968.070000px;}
.y16{bottom:972.720000px;}
.y4c{bottom:982.770000px;}
.y79{bottom:983.670000px;}
.yc2{bottom:991.920000px;}
.y15{bottom:993.420000px;}
.y4b{bottom:1006.620000px;}
.y78{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yc1{bottom:1015.920000px;}
.y4a{bottom:1030.320000px;}
.y77{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yc0{bottom:1039.920000px;}
.y49{bottom:1054.170000px;}
.y76{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.ybd{bottom:1061.670000px;}
.ybf{bottom:1063.620000px;}
.ybc{bottom:1072.620000px;}
.y11{bottom:1076.220000px;}
.y48{bottom:1078.020000px;}
.y75{bottom:1078.920000px;}
.ybe{bottom:1083.120000px;}
.y10{bottom:1096.950000px;}
.y47{bottom:1101.750000px;}
.ybb{bottom:1102.350000px;}
.y74{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y46{bottom:1125.750000px;}
.yba{bottom:1126.050000px;}
.y73{bottom:1126.500000px;}
.y45{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.hf{height:20.700000px;}
.h1c{height:34.500000px;}
.h20{height:42.070312px;}
.h6{height:45.300000px;}
.h15{height:45.372070px;}
.h3{height:48.600000px;}
.he{height:50.484375px;}
.h1e{height:51.750000px;}
.h1f{height:51.787500px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h1d{height:60.468750px;}
.h17{height:61.670545px;}
.h1a{height:64.054688px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h14{height:66.454688px;}
.h19{height:68.324063px;}
.h10{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h13{height:74.004654px;}
.h2{height:82.441406px;}
.h11{height:87.372070px;}
.h16{height:88.064062px;}
.h12{height:106.604062px;}
.h18{height:106.664062px;}
.h1b{height:128.772070px;}
.hd{height:144.900000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:53.550000px;}
.wc{width:69.600000px;}
.w9{width:74.550000px;}
.wa{width:95.100000px;}
.wb{width:96.037500px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1a{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x20{left:69.449987px;}
.x1b{left:95.699987px;}
.x19{left:100.200000px;}
.x18{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x23{left:122.737487px;}
.xa{left:128.130000px;}
.x28{left:129.337487px;}
.x10{left:175.529987px;}
.x21{left:189.479987px;}
.x29{left:232.844987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2a{left:439.724987px;}
.x16{left:444.674987px;}
.x1c{left:457.274987px;}
.x22{left:484.274987px;}
.x1d{left:510.374987px;}
.x2b{left:533.325000px;}
.x1f{left:537.374987px;}
.x11{left:555.074987px;}
.x24{left:565.274987px;}
.x15{left:566.624987px;}
.x17{left:568.124987px;}
.x27{left:587.774987px;}
.x25{left:604.124987px;}
.x1e{left:611.024987px;}
.xc{left:625.425000px;}
.x2c{left:629.175000px;}
.x13{left:635.174987px;}
.x26{left:638.819987px;}
.x12{left:650.669987px;}
.xf{left:713.655000px;}
.x2d{left:725.970000px;}
.x2e{left:796.320000px;}
.x2{left:829.619987px;}
.x14{left:850.619987px;}
@media print{
.v7{vertical-align:-14.880000pt;}
.v4{vertical-align:-12.800000pt;}
.v6{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.186667pt;}
.v8{vertical-align:12.800000pt;}
.v5{vertical-align:15.466667pt;}
.v3{vertical-align:31.946667pt;}
.v2{vertical-align:37.333333pt;}
.v9{vertical-align:74.133333pt;}
.ls13{letter-spacing:-2.666667pt;}
.ls15{letter-spacing:-2.661333pt;}
.ls12{letter-spacing:-2.656000pt;}
.ls14{letter-spacing:-2.400000pt;}
.ls46{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.170667pt;}
.ls45{letter-spacing:-0.088000pt;}
.ls55{letter-spacing:-0.053333pt;}
.ls11{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls4b{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls3c{letter-spacing:0.064000pt;}
.ls49{letter-spacing:0.069333pt;}
.ls27{letter-spacing:0.074667pt;}
.ls24{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.133333pt;}
.ls44{letter-spacing:0.149333pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls54{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls43{letter-spacing:1.237333pt;}
.ls1c{letter-spacing:1.360000pt;}
.ls4{letter-spacing:1.386667pt;}
.ls20{letter-spacing:1.520000pt;}
.ls40{letter-spacing:1.536000pt;}
.ls36{letter-spacing:1.941333pt;}
.ls26{letter-spacing:2.112000pt;}
.ls3a{letter-spacing:2.133333pt;}
.ls30{letter-spacing:2.165333pt;}
.ls34{letter-spacing:2.218667pt;}
.ls32{letter-spacing:2.272000pt;}
.ls37{letter-spacing:2.352000pt;}
.ls2e{letter-spacing:2.498667pt;}
.ls31{letter-spacing:2.552000pt;}
.ls39{letter-spacing:2.605333pt;}
.ls5{letter-spacing:2.858667pt;}
.ls19{letter-spacing:2.885333pt;}
.lsc{letter-spacing:2.912000pt;}
.ls33{letter-spacing:3.058667pt;}
.ls23{letter-spacing:3.768000pt;}
.ls4e{letter-spacing:4.301333pt;}
.ls3e{letter-spacing:4.354667pt;}
.ls51{letter-spacing:8.000000pt;}
.ls29{letter-spacing:9.066667pt;}
.lsa{letter-spacing:9.600000pt;}
.lsb{letter-spacing:10.133333pt;}
.ls48{letter-spacing:10.552000pt;}
.ls4a{letter-spacing:11.085333pt;}
.ls2d{letter-spacing:13.333333pt;}
.ls1a{letter-spacing:13.920000pt;}
.ls35{letter-spacing:14.026667pt;}
.lsd{letter-spacing:14.506667pt;}
.ls4c{letter-spacing:16.418667pt;}
.ls38{letter-spacing:17.173333pt;}
.ls21{letter-spacing:17.680000pt;}
.ls7{letter-spacing:17.706667pt;}
.ls8{letter-spacing:17.792000pt;}
.ls47{letter-spacing:18.221333pt;}
.ls25{letter-spacing:18.754667pt;}
.ls4f{letter-spacing:21.368000pt;}
.ls3f{letter-spacing:22.488000pt;}
.lse{letter-spacing:27.200000pt;}
.ls1e{letter-spacing:30.208000pt;}
.ls52{letter-spacing:32.000000pt;}
.ls3d{letter-spacing:33.546667pt;}
.ls1f{letter-spacing:36.853333pt;}
.ls2b{letter-spacing:42.720000pt;}
.ls42{letter-spacing:44.800000pt;}
.ls41{letter-spacing:48.533333pt;}
.ls3b{letter-spacing:49.173333pt;}
.ls28{letter-spacing:56.640000pt;}
.ls9{letter-spacing:56.874667pt;}
.ls18{letter-spacing:57.008000pt;}
.ls53{letter-spacing:66.800000pt;}
.ls50{letter-spacing:70.400000pt;}
.ls4d{letter-spacing:87.424000pt;}
.ls22{letter-spacing:87.818667pt;}
.ls2a{letter-spacing:172.800000pt;}
.ls2c{letter-spacing:172.933333pt;}
.ws12{word-spacing:-53.333333pt;}
.wsb{word-spacing:-16.533333pt;}
.ws16{word-spacing:-16.149333pt;}
.wse{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.829333pt;}
.wsf{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws24{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws1f{word-spacing:-10.048000pt;}
.wsc{word-spacing:-9.973333pt;}
.ws18{word-spacing:-9.885333pt;}
.ws19{word-spacing:-9.802667pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws22{word-spacing:-0.554667pt;}
.ws14{word-spacing:-0.160000pt;}
.ws15{word-spacing:-0.053333pt;}
.ws1b{word-spacing:-0.021333pt;}
.ws10{word-spacing:0.000000pt;}
.ws20{word-spacing:0.512000pt;}
.ws1a{word-spacing:1.066667pt;}
.ws17{word-spacing:3.477333pt;}
.ws21{word-spacing:3.584000pt;}
.ws1d{word-spacing:3.648000pt;}
.ws13{word-spacing:3.685333pt;}
.ws1c{word-spacing:17.600000pt;}
.ws1e{word-spacing:30.549333pt;}
.ws23{word-spacing:48.578667pt;}
.wsd{word-spacing:66.253333pt;}
.ws11{word-spacing:209.645333pt;}
._44{margin-left:-8.674667pt;}
._35{margin-left:-4.096000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._6{width:2.304000pt;}
._7{width:3.392000pt;}
._18{width:4.288000pt;}
._5{width:5.632000pt;}
._4{width:6.906667pt;}
._20{width:8.064000pt;}
._f{width:9.024000pt;}
._10{width:10.010667pt;}
._8{width:11.520000pt;}
._3b{width:12.544000pt;}
._12{width:13.504000pt;}
._13{width:14.976000pt;}
._43{width:16.128000pt;}
._37{width:17.216000pt;}
._17{width:18.112000pt;}
._9{width:19.008000pt;}
._a{width:20.416000pt;}
._22{width:21.376000pt;}
._b{width:22.688000pt;}
._1a{width:23.616000pt;}
._1b{width:24.576000pt;}
._1e{width:25.920000pt;}
._e{width:27.136000pt;}
._49{width:28.192000pt;}
._32{width:29.589333pt;}
._29{width:30.784000pt;}
._14{width:32.512000pt;}
._42{width:33.920000pt;}
._2d{width:35.008000pt;}
._25{width:36.480000pt;}
._c{width:37.952000pt;}
._d{width:39.050667pt;}
._21{width:40.128000pt;}
._46{width:41.322667pt;}
._1c{width:43.178667pt;}
._1d{width:44.165333pt;}
._47{width:45.568000pt;}
._38{width:46.720000pt;}
._39{width:47.808000pt;}
._30{width:49.173333pt;}
._26{width:50.624000pt;}
._27{width:51.776000pt;}
._24{width:52.992000pt;}
._3a{width:54.298667pt;}
._11{width:55.616000pt;}
._16{width:57.178667pt;}
._19{width:58.149333pt;}
._1f{width:62.272000pt;}
._15{width:66.432000pt;}
._31{width:67.520000pt;}
._36{width:69.376000pt;}
._48{width:72.832000pt;}
._34{width:74.624000pt;}
._2e{width:75.520000pt;}
._2f{width:76.992000pt;}
._3c{width:78.090667pt;}
._3d{width:79.002667pt;}
._28{width:93.440000pt;}
._4b{width:95.104000pt;}
._41{width:100.586667pt;}
._3e{width:103.488000pt;}
._40{width:109.312000pt;}
._45{width:117.085333pt;}
._2c{width:128.000000pt;}
._2b{width:129.141333pt;}
._3f{width:160.064000pt;}
._2a{width:172.194667pt;}
._23{width:173.298667pt;}
._33{width:319.410667pt;}
._4a{width:786.816000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.ye2{bottom:2.933333pt;}
.yec{bottom:2.973333pt;}
.y1f{bottom:3.466667pt;}
.y22{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.ye1{bottom:10.666667pt;}
.ye9{bottom:10.706667pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.yeb{bottom:18.306667pt;}
.y1e{bottom:21.866667pt;}
.ye4{bottom:26.000000pt;}
.ye8{bottom:26.040000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.ye5{bottom:33.600000pt;}
.yea{bottom:33.640000pt;}
.y1d{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.066667pt;}
.y1a{bottom:95.466667pt;}
.yb9{bottom:102.033333pt;}
.y105{bottom:105.500000pt;}
.y3d{bottom:105.766667pt;}
.ydf{bottom:109.233333pt;}
.y72{bottom:110.566667pt;}
.ya4{bottom:111.366667pt;}
.y107{bottom:112.566667pt;}
.y19{bottom:113.866667pt;}
.y44{bottom:114.166667pt;}
.yb8{bottom:123.233333pt;}
.y104{bottom:126.700000pt;}
.y3c{bottom:126.833333pt;}
.yde{bottom:130.433333pt;}
.y71{bottom:131.766667pt;}
.ya3{bottom:132.566667pt;}
.y106{bottom:133.773333pt;}
.y43{bottom:135.373333pt;}
.yb7{bottom:143.373333pt;}
.y103{bottom:147.906667pt;}
.y3b{bottom:148.040000pt;}
.yb6{bottom:151.373333pt;}
.ydd{bottom:151.506667pt;}
.y70{bottom:152.960000pt;}
.ya2{bottom:153.626667pt;}
.y9b{bottom:154.973333pt;}
.y42{bottom:156.840000pt;}
.y102{bottom:169.106667pt;}
.y3a{bottom:169.240000pt;}
.ydc{bottom:172.706667pt;}
.y6f{bottom:174.040000pt;}
.ya1{bottom:174.840000pt;}
.y9a{bottom:176.173333pt;}
.yb5{bottom:176.560000pt;}
.y41{bottom:178.173333pt;}
.y101{bottom:190.173333pt;}
.y39{bottom:190.306667pt;}
.ydb{bottom:193.906667pt;}
.y6e{bottom:195.226667pt;}
.ya0{bottom:196.173333pt;}
.y99{bottom:197.240000pt;}
.yb4{bottom:197.640000pt;}
.y40{bottom:199.640000pt;}
.y100{bottom:211.373333pt;}
.y38{bottom:211.506667pt;}
.yda{bottom:214.973333pt;}
.y6d{bottom:216.440000pt;}
.y9f{bottom:217.773333pt;}
.y98{bottom:218.440000pt;}
.yb3{bottom:218.960000pt;}
.y3f{bottom:219.906667pt;}
.y3e{bottom:227.893333pt;}
.yff{bottom:232.573333pt;}
.y37{bottom:232.706667pt;}
.yd9{bottom:236.173333pt;}
.y6c{bottom:237.506667pt;}
.y9e{bottom:239.106667pt;}
.y97{bottom:239.640000pt;}
.yb2{bottom:240.573333pt;}
.yfe{bottom:253.640000pt;}
.y36{bottom:253.773333pt;}
.yd8{bottom:257.373333pt;}
.y6b{bottom:258.706667pt;}
.y9d{bottom:260.306667pt;}
.y96{bottom:260.706667pt;}
.yb1{bottom:262.173333pt;}
.yfd{bottom:274.840000pt;}
.y35{bottom:274.973333pt;}
.yd7{bottom:278.440000pt;}
.y6a{bottom:279.906667pt;}
.y9c{bottom:281.640000pt;}
.y95{bottom:281.893333pt;}
.yb0{bottom:283.773333pt;}
.yfc{bottom:296.040000pt;}
.y34{bottom:296.173333pt;}
.yd6{bottom:299.640000pt;}
.y69{bottom:300.973333pt;}
.y94{bottom:303.106667pt;}
.yaf{bottom:305.106667pt;}
.yfb{bottom:317.106667pt;}
.y33{bottom:317.240000pt;}
.yd5{bottom:320.840000pt;}
.y68{bottom:322.173333pt;}
.y93{bottom:324.173333pt;}
.yae{bottom:326.960000pt;}
.yfa{bottom:338.333333pt;}
.y32{bottom:338.466667pt;}
.yd4{bottom:342.066667pt;}
.y67{bottom:343.400000pt;}
.y92{bottom:345.400000pt;}
.yad{bottom:347.933333pt;}
.yf9{bottom:359.533333pt;}
.y31{bottom:359.666667pt;}
.yd3{bottom:363.133333pt;}
.y66{bottom:364.466667pt;}
.y91{bottom:366.600000pt;}
.yac{bottom:369.133333pt;}
.yf8{bottom:380.600000pt;}
.y30{bottom:380.733333pt;}
.yd2{bottom:384.333333pt;}
.y65{bottom:385.666667pt;}
.y90{bottom:387.666667pt;}
.yab{bottom:390.200000pt;}
.yf7{bottom:401.800000pt;}
.y2f{bottom:401.933333pt;}
.yd1{bottom:405.533333pt;}
.y64{bottom:406.866667pt;}
.y8f{bottom:408.866667pt;}
.yaa{bottom:411.400000pt;}
.yf6{bottom:423.000000pt;}
.y2e{bottom:423.133333pt;}
.yd0{bottom:426.600000pt;}
.y63{bottom:428.200000pt;}
.y8e{bottom:430.066667pt;}
.ya9{bottom:432.600000pt;}
.yf5{bottom:444.066667pt;}
.y2d{bottom:444.333333pt;}
.y62{bottom:449.533333pt;}
.ya8{bottom:450.466667pt;}
.y8d{bottom:451.133333pt;}
.ya7{bottom:458.466667pt;}
.yf4{bottom:465.266667pt;}
.y2c{bottom:465.400000pt;}
.y61{bottom:467.400000pt;}
.y5f{bottom:471.266667pt;}
.y8c{bottom:472.333333pt;}
.y60{bottom:477.800000pt;}
.ya6{bottom:481.133333pt;}
.yf3{bottom:486.466667pt;}
.y2b{bottom:486.600000pt;}
.ya5{bottom:489.133333pt;}
.y5e{bottom:492.733333pt;}
.y8b{bottom:493.533333pt;}
.yf2{bottom:507.666667pt;}
.y2a{bottom:507.800000pt;}
.y5d{bottom:513.800000pt;}
.y8a{bottom:514.733333pt;}
.yf1{bottom:528.733333pt;}
.y29{bottom:528.866667pt;}
.y5c{bottom:535.000000pt;}
.y89{bottom:535.800000pt;}
.yf0{bottom:549.933333pt;}
.y28{bottom:550.066667pt;}
.y5b{bottom:556.200000pt;}
.y88{bottom:557.000000pt;}
.yef{bottom:571.133333pt;}
.y27{bottom:571.266667pt;}
.y5a{bottom:577.266667pt;}
.y87{bottom:578.200000pt;}
.yee{bottom:592.200000pt;}
.y26{bottom:592.333333pt;}
.y59{bottom:598.466667pt;}
.y86{bottom:599.266667pt;}
.yed{bottom:607.800000pt;}
.y25{bottom:613.533333pt;}
.y58{bottom:619.666667pt;}
.y85{bottom:620.466667pt;}
.y24{bottom:634.733333pt;}
.y57{bottom:640.733333pt;}
.y84{bottom:641.666667pt;}
.ye7{bottom:654.466667pt;}
.y56{bottom:661.973333pt;}
.y83{bottom:662.773333pt;}
.y23{bottom:663.840000pt;}
.y21{bottom:678.760000pt;}
.y55{bottom:683.173333pt;}
.y82{bottom:683.973333pt;}
.y20{bottom:697.173333pt;}
.ycf{bottom:698.626667pt;}
.ye6{bottom:701.173333pt;}
.y54{bottom:704.373333pt;}
.y81{bottom:705.173333pt;}
.y18{bottom:715.573333pt;}
.yce{bottom:719.706667pt;}
.y53{bottom:725.440000pt;}
.y80{bottom:726.240000pt;}
.ycd{bottom:740.906667pt;}
.y52{bottom:746.626667pt;}
.y7f{bottom:747.440000pt;}
.ye3{bottom:747.840000pt;}
.ycc{bottom:762.240000pt;}
.y51{bottom:767.840000pt;}
.y7e{bottom:768.640000pt;}
.ycb{bottom:783.840000pt;}
.y50{bottom:788.906667pt;}
.y7d{bottom:789.706667pt;}
.ye0{bottom:794.506667pt;}
.yc6{bottom:803.306667pt;}
.yc8{bottom:805.040000pt;}
.yca{bottom:809.173333pt;}
.y4f{bottom:810.106667pt;}
.y7c{bottom:810.906667pt;}
.yc5{bottom:813.040000pt;}
.yc9{bottom:819.573333pt;}
.yc7{bottom:822.373333pt;}
.y4e{bottom:831.306667pt;}
.y7b{bottom:832.106667pt;}
.yc4{bottom:839.440000pt;}
.y17{bottom:847.573333pt;}
.y4d{bottom:852.373333pt;}
.y7a{bottom:853.306667pt;}
.yc3{bottom:860.506667pt;}
.y16{bottom:864.640000pt;}
.y4c{bottom:873.573333pt;}
.y79{bottom:874.373333pt;}
.yc2{bottom:881.706667pt;}
.y15{bottom:883.040000pt;}
.y4b{bottom:894.773333pt;}
.y78{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yc1{bottom:903.040000pt;}
.y4a{bottom:915.840000pt;}
.y77{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yc0{bottom:924.373333pt;}
.y49{bottom:937.040000pt;}
.y76{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.ybd{bottom:943.706667pt;}
.ybf{bottom:945.440000pt;}
.ybc{bottom:953.440000pt;}
.y11{bottom:956.640000pt;}
.y48{bottom:958.240000pt;}
.y75{bottom:959.040000pt;}
.ybe{bottom:962.773333pt;}
.y10{bottom:975.066667pt;}
.y47{bottom:979.333333pt;}
.ybb{bottom:979.866667pt;}
.y74{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y46{bottom:1000.666667pt;}
.yba{bottom:1000.933333pt;}
.y73{bottom:1001.333333pt;}
.y45{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.hf{height:18.400000pt;}
.h1c{height:30.666667pt;}
.h20{height:37.395833pt;}
.h6{height:40.266667pt;}
.h15{height:40.330729pt;}
.h3{height:43.200000pt;}
.he{height:44.875000pt;}
.h1e{height:46.000000pt;}
.h1f{height:46.033333pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h1d{height:53.750000pt;}
.h17{height:54.818262pt;}
.h1a{height:56.937500pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h14{height:59.070833pt;}
.h19{height:60.732500pt;}
.h10{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h13{height:65.781915pt;}
.h2{height:73.281250pt;}
.h11{height:77.664062pt;}
.h16{height:78.279167pt;}
.h12{height:94.759167pt;}
.h18{height:94.812500pt;}
.h1b{height:114.464062pt;}
.hd{height:128.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:47.600000pt;}
.wc{width:61.866667pt;}
.w9{width:66.266667pt;}
.wa{width:84.533333pt;}
.wb{width:85.366667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1a{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x20{left:61.733322pt;}
.x1b{left:85.066655pt;}
.x19{left:89.066667pt;}
.x18{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x23{left:109.099988pt;}
.xa{left:113.893333pt;}
.x28{left:114.966655pt;}
.x10{left:156.026655pt;}
.x21{left:168.426655pt;}
.x29{left:206.973322pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2a{left:390.866655pt;}
.x16{left:395.266655pt;}
.x1c{left:406.466655pt;}
.x22{left:430.466655pt;}
.x1d{left:453.666655pt;}
.x2b{left:474.066667pt;}
.x1f{left:477.666655pt;}
.x11{left:493.399988pt;}
.x24{left:502.466655pt;}
.x15{left:503.666655pt;}
.x17{left:504.999988pt;}
.x27{left:522.466655pt;}
.x25{left:536.999988pt;}
.x1e{left:543.133322pt;}
.xc{left:555.933333pt;}
.x2c{left:559.266667pt;}
.x13{left:564.599988pt;}
.x26{left:567.839988pt;}
.x12{left:578.373322pt;}
.xf{left:634.360000pt;}
.x2d{left:645.306667pt;}
.x2e{left:707.840000pt;}
.x2{left:737.439988pt;}
.x14{left:756.106655pt;}
}




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