
    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_275f79990aa3415135437343.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_176b4d90bb55f2aba8babb0e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_83471514c2ed3134b5412a35.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_02e8fc2ccc99c628c24d5fd1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c0701c43ece4bcea1d82c8c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f7a5cc1bdba69a90769da80b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_853d8ed03d3312fa925a5503.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_6288f7864f7076ba1f43ce4c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d96428250b4ae76d39017f1b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_75ff28ef25171ea8865c98db.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2a3c1c0d43db124ca0590bfe.woff2')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_0c8d7f037f66094092460b0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.065430;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_6707027f66d9f47326305dbc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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_daaa854b3ec2a2cd16f3438a.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_df7ef828cb3a28d70c75bce7.woff2')format("woff");}.ff13{font-family:ff13;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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a205a59ed1d812e6413eff48.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_5dde0e847dde1ca281ec4367.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v1{vertical-align:-67.800000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.478200px;}
.ls13{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.206400px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.022320px;}
.ls16{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.224400px;}
.ls8{letter-spacing:0.241800px;}
.ls18{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.328320px;}
.ls6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.513360px;}
.lsb{letter-spacing:0.513600px;}
.ls1b{letter-spacing:0.666000px;}
.ls1a{letter-spacing:0.900000px;}
.ls4{letter-spacing:2.340000px;}
.ls14{letter-spacing:14.346720px;}
.lsf{letter-spacing:21.060000px;}
.ls15{letter-spacing:21.546720px;}
.ls10{letter-spacing:286.716000px;}
.lse{letter-spacing:486.876000px;}
.lsc{letter-spacing:494.796000px;}
.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;}
}
.wsf{word-spacing:-15.606000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.147200px;}
.ws8{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.854600px;}
.ws4{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.134600px;}
.ws9{word-spacing:0.000000px;}
._48{margin-left:-14.208960px;}
._49{margin-left:-9.153360px;}
._18{margin-left:-3.930240px;}
._16{margin-left:-2.404320px;}
._3{margin-left:-1.391040px;}
._0{width:1.434240px;}
._1c{width:2.456400px;}
._4{width:3.459840px;}
._e{width:4.679040px;}
._11{width:5.684880px;}
._1a{width:7.394400px;}
._1{width:8.553600px;}
._2{width:9.953280px;}
._9{width:11.115360px;}
._a{width:12.124800px;}
._1b{width:13.147200px;}
._10{width:14.342400px;}
._d{width:16.493760px;}
._14{width:17.705520px;}
._12{width:18.884160px;}
._13{width:20.139120px;}
._f{width:21.214800px;}
._15{width:22.230720px;}
._5{width:23.366160px;}
._6{width:24.553920px;}
._8{width:26.010480px;}
._7{width:27.011520px;}
._c{width:28.146960px;}
._24{width:29.671440px;}
._22{width:30.939120px;}
._19{width:32.047920px;}
._17{width:33.107040px;}
._2a{width:34.345440px;}
._b{width:35.736480px;}
._31{width:36.931680px;}
._29{width:38.023920px;}
._1d{width:39.381840px;}
._23{width:40.517280px;}
._21{width:42.190560px;}
._35{width:43.445520px;}
._36{width:44.580960px;}
._2d{width:46.732320px;}
._2e{width:47.764800px;}
._30{width:49.282800px;}
._3a{width:50.315760px;}
._26{width:51.991200px;}
._1e{width:53.544960px;}
._20{width:54.740160px;}
._1f{width:55.935360px;}
._2c{width:57.489120px;}
._28{width:59.238720px;}
._25{width:60.536880px;}
._2b{width:61.716960px;}
._4c{width:63.855840px;}
._4f{width:65.556720px;}
._3c{width:66.572640px;}
._27{width:67.963440px;}
._3b{width:69.646320px;}
._41{width:70.815600px;}
._46{width:71.891280px;}
._3f{width:73.146240px;}
._32{width:74.477520px;}
._47{width:75.727440px;}
._33{width:77.688000px;}
._43{width:79.899120px;}
._42{width:81.393120px;}
._44{width:82.707840px;}
._45{width:83.723760px;}
._39{width:85.099680px;}
._3e{width:88.982640px;}
._4e{width:91.079040px;}
._4d{width:92.209680px;}
._38{width:93.285360px;}
._40{width:94.480560px;}
._4b{width:96.213600px;}
._2f{width:108.763200px;}
._4a{width:110.942400px;}
._37{width:144.815040px;}
._34{width:151.611120px;}
._3d{width:159.921120px;}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:81.965417px;}
.y59{bottom:-7.380000px;}
.y0{bottom:0.000000px;}
.y44{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y46{bottom:4.500000px;}
.y56{bottom:5.400000px;}
.y58{bottom:6.840000px;}
.yd6{bottom:8.640000px;}
.yd4{bottom:8.685000px;}
.y43{bottom:20.880000px;}
.y55{bottom:31.860000px;}
.y42{bottom:38.340000px;}
.y41{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y54{bottom:64.440000px;}
.y40{bottom:73.620000px;}
.y2{bottom:80.100000px;}
.y3f{bottom:91.260000px;}
.y3e{bottom:108.720000px;}
.yf6{bottom:113.580000px;}
.y57{bottom:113.940000px;}
.yd1{bottom:119.700000px;}
.y95{bottom:123.300000px;}
.y3d{bottom:126.405000px;}
.yf5{bottom:130.860000px;}
.yd0{bottom:136.800000px;}
.y94{bottom:140.580000px;}
.y3c{bottom:144.045000px;}
.yf4{bottom:148.140000px;}
.y51{bottom:151.200000px;}
.ycf{bottom:154.080000px;}
.y93{bottom:157.860000px;}
.y3b{bottom:161.505000px;}
.yf3{bottom:165.420000px;}
.y50{bottom:168.480000px;}
.yce{bottom:171.360000px;}
.yaa{bottom:174.780000px;}
.y92{bottom:175.140000px;}
.y3a{bottom:179.145000px;}
.yf2{bottom:182.700000px;}
.y4f{bottom:185.580000px;}
.ycd{bottom:188.640000px;}
.ya9{bottom:192.060000px;}
.y91{bottom:192.420000px;}
.y39{bottom:196.785000px;}
.yf1{bottom:199.800000px;}
.y4e{bottom:202.860000px;}
.ycc{bottom:205.920000px;}
.y90{bottom:209.700000px;}
.y38{bottom:214.245000px;}
.yf0{bottom:217.110000px;}
.y4d{bottom:220.170000px;}
.ycb{bottom:223.230000px;}
.yf8{bottom:226.470000px;}
.y8f{bottom:226.830000px;}
.y37{bottom:231.885000px;}
.y4c{bottom:237.450000px;}
.yca{bottom:240.330000px;}
.y8e{bottom:244.110000px;}
.yef{bottom:248.790000px;}
.y36{bottom:249.525000px;}
.y4b{bottom:254.730000px;}
.yc9{bottom:257.610000px;}
.y8d{bottom:261.390000px;}
.yee{bottom:266.790000px;}
.y35{bottom:267.165000px;}
.y4a{bottom:271.830000px;}
.y24{bottom:274.185000px;}
.yc8{bottom:274.890000px;}
.y9d{bottom:278.310000px;}
.y8c{bottom:278.670000px;}
.y34{bottom:284.625000px;}
.yed{bottom:284.790000px;}
.y49{bottom:288.750000px;}
.y52{bottom:289.110000px;}
.yc7{bottom:292.170000px;}
.y23{bottom:292.365000px;}
.y9c{bottom:295.590000px;}
.y8b{bottom:295.950000px;}
.y33{bottom:302.265000px;}
.yec{bottom:302.790000px;}
.y48{bottom:306.030000px;}
.yc6{bottom:309.450000px;}
.y22{bottom:310.545000px;}
.y9b{bottom:312.870000px;}
.y8a{bottom:313.230000px;}
.y32{bottom:319.905000px;}
.y47{bottom:320.430000px;}
.yeb{bottom:320.790000px;}
.y45{bottom:322.590000px;}
.yc5{bottom:326.730000px;}
.y11{bottom:328.530000px;}
.y21{bottom:328.725000px;}
.yad{bottom:329.970000px;}
.y89{bottom:330.330000px;}
.y31{bottom:337.365000px;}
.yea{bottom:338.790000px;}
.yc4{bottom:343.830000px;}
.y20{bottom:346.905000px;}
.ya3{bottom:347.250000px;}
.y88{bottom:347.610000px;}
.y30{bottom:355.035000px;}
.ye9{bottom:356.790000px;}
.yc3{bottom:361.110000px;}
.y1f{bottom:362.595000px;}
.ya2{bottom:364.530000px;}
.y87{bottom:364.890000px;}
.y2f{bottom:372.675000px;}
.y1e{bottom:376.635000px;}
.yc2{bottom:378.390000px;}
.ya1{bottom:381.810000px;}
.y86{bottom:382.170000px;}
.y2e{bottom:390.135000px;}
.y1d{bottom:390.675000px;}
.ye8{bottom:395.310000px;}
.yc1{bottom:395.670000px;}
.yf7{bottom:399.090000px;}
.y85{bottom:399.450000px;}
.y1c{bottom:404.715000px;}
.y2d{bottom:407.775000px;}
.yc0{bottom:412.950000px;}
.y84{bottom:416.730000px;}
.y1b{bottom:418.755000px;}
.y2c{bottom:425.415000px;}
.ybf{bottom:430.230000px;}
.y1a{bottom:432.615000px;}
.y83{bottom:433.830000px;}
.y2b{bottom:442.875000px;}
.y19{bottom:446.295000px;}
.ybe{bottom:447.330000px;}
.y82{bottom:451.155000px;}
.y18{bottom:460.155000px;}
.y2a{bottom:460.515000px;}
.ybd{bottom:464.655000px;}
.y81{bottom:468.435000px;}
.y17{bottom:474.195000px;}
.y29{bottom:478.155000px;}
.ybc{bottom:481.935000px;}
.ya8{bottom:485.355000px;}
.y80{bottom:485.715000px;}
.y16{bottom:488.415000px;}
.y28{bottom:495.795000px;}
.ybb{bottom:499.215000px;}
.y15{bottom:502.455000px;}
.ya7{bottom:502.635000px;}
.y7f{bottom:502.995000px;}
.y27{bottom:513.255000px;}
.yba{bottom:516.495000px;}
.y14{bottom:517.035000px;}
.ya6{bottom:519.735000px;}
.y7e{bottom:520.095000px;}
.y26{bottom:530.895000px;}
.yb9{bottom:533.595000px;}
.y13{bottom:534.855000px;}
.y98{bottom:537.015000px;}
.y7d{bottom:537.375000px;}
.yb8{bottom:550.875000px;}
.y25{bottom:551.595000px;}
.y12{bottom:552.135000px;}
.y7c{bottom:554.655000px;}
.yb7{bottom:568.155000px;}
.y7b{bottom:571.935000px;}
.ye7{bottom:585.435000px;}
.y7a{bottom:589.215000px;}
.yb6{bottom:599.835000px;}
.ye6{bottom:602.715000px;}
.yac{bottom:606.135000px;}
.y79{bottom:606.495000px;}
.yb5{bottom:617.835000px;}
.ye5{bottom:619.995000px;}
.y78{bottom:623.595000px;}
.yb4{bottom:635.835000px;}
.ye4{bottom:637.095000px;}
.y77{bottom:640.875000px;}
.yb3{bottom:653.835000px;}
.ye3{bottom:654.375000px;}
.y76{bottom:658.155000px;}
.ye2{bottom:671.655000px;}
.y75{bottom:675.435000px;}
.ye1{bottom:688.965000px;}
.yb2{bottom:692.385000px;}
.y74{bottom:692.745000px;}
.ye0{bottom:706.245000px;}
.y73{bottom:710.025000px;}
.ydf{bottom:723.525000px;}
.y72{bottom:727.125000px;}
.yde{bottom:740.625000px;}
.y97{bottom:744.045000px;}
.y71{bottom:744.405000px;}
.ydd{bottom:757.905000px;}
.y9a{bottom:761.325000px;}
.y70{bottom:761.685000px;}
.ydc{bottom:775.185000px;}
.y99{bottom:778.605000px;}
.y6f{bottom:778.965000px;}
.ydb{bottom:792.465000px;}
.y6e{bottom:796.245000px;}
.yda{bottom:809.745000px;}
.y6d{bottom:813.345000px;}
.yd9{bottom:826.845000px;}
.y6c{bottom:830.625000px;}
.yd8{bottom:844.125000px;}
.ya5{bottom:847.545000px;}
.y6b{bottom:847.905000px;}
.ya4{bottom:864.825000px;}
.y6a{bottom:865.185000px;}
.yd7{bottom:875.805000px;}
.yab{bottom:882.105000px;}
.y69{bottom:882.465000px;}
.yd5{bottom:893.805000px;}
.ya0{bottom:899.385000px;}
.y10{bottom:899.565000px;}
.y68{bottom:899.745000px;}
.yd3{bottom:911.805000px;}
.y9f{bottom:916.485000px;}
.y67{bottom:916.845000px;}
.yf{bottom:924.270000px;}
.yd2{bottom:929.850000px;}
.y9e{bottom:933.810000px;}
.y66{bottom:934.170000px;}
.ye{bottom:944.610000px;}
.yb1{bottom:951.090000px;}
.y65{bottom:951.450000px;}
.yd{bottom:967.470000px;}
.y96{bottom:968.370000px;}
.y64{bottom:968.730000px;}
.yb0{bottom:985.650000px;}
.y63{bottom:986.010000px;}
.yc{bottom:993.210000px;}
.yaf{bottom:1002.930000px;}
.y62{bottom:1003.290000px;}
.yb{bottom:1018.950000px;}
.yfa{bottom:1020.030000px;}
.y61{bottom:1020.390000px;}
.yf9{bottom:1037.310000px;}
.y60{bottom:1037.670000px;}
.ya{bottom:1041.270000px;}
.y5f{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y53{bottom:1070.250000px;}
.y5e{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.y5d{bottom:1089.510000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.yae{bottom:1140.810000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h13{height:5.653125px;}
.h14{height:5.805000px;}
.h15{height:5.920372px;}
.h12{height:5.940000px;}
.h4{height:17.280000px;}
.h20{height:17.316000px;}
.h1b{height:18.000000px;}
.h1d{height:40.655391px;}
.he{height:40.843828px;}
.h1f{height:42.164648px;}
.h1e{height:43.215117px;}
.h10{height:45.720703px;}
.h11{height:45.859856px;}
.h1c{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.hd{height:49.583118px;}
.hf{height:50.218594px;}
.hc{height:50.597578px;}
.h21{height:58.621992px;}
.h5{height:58.651172px;}
.h22{height:59.614102px;}
.h16{height:60.226875px;}
.h17{height:61.423863px;}
.ha{height:62.211094px;}
.h9{height:66.757500px;}
.h19{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h18{height:81.180000px;}
.h8{height:85.327280px;}
.hb{height:565.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:40.320000px;}
.w17{width:40.680000px;}
.w10{width:49.680000px;}
.wb{width:50.400000px;}
.w19{width:56.700000px;}
.w21{width:57.240000px;}
.w16{width:57.420000px;}
.w15{width:57.600000px;}
.w1d{width:57.960000px;}
.w12{width:75.420000px;}
.wd{width:76.140000px;}
.w13{width:78.120000px;}
.we{width:78.480000px;}
.w22{width:90.360000px;}
.w1e{width:90.720000px;}
.w20{width:112.716000px;}
.w1c{width:113.436000px;}
.w11{width:131.616000px;}
.wc{width:132.516000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.wf{width:327.675000px;}
.wa{width:328.035000px;}
.w1f{width:408.495000px;}
.w1b{width:408.855000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w18{width:517.965000px;}
.w14{width:518.325000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x18{left:10.800000px;}
.x30{left:11.880000px;}
.x34{left:15.480000px;}
.x28{left:16.740000px;}
.x9{left:20.700000px;}
.x20{left:24.660000px;}
.x21{left:25.740000px;}
.x2{left:27.000000px;}
.x2a{left:28.260000px;}
.x3{left:31.140000px;}
.x37{left:38.340000px;}
.x33{left:43.200000px;}
.x1f{left:52.740000px;}
.x5{left:53.999987px;}
.x14{left:62.994000px;}
.xe{left:72.720000px;}
.xf{left:76.860000px;}
.x22{left:86.034000px;}
.x17{left:89.496000px;}
.x1{left:108.035987px;}
.x23{left:109.656000px;}
.x2d{left:111.096000px;}
.x35{left:112.494000px;}
.x19{left:113.796000px;}
.x3b{left:135.035987px;}
.x1a{left:137.874000px;}
.x13{left:140.616000px;}
.x2e{left:149.079000px;}
.x36{left:155.739000px;}
.x15{left:157.539000px;}
.x2b{left:159.879000px;}
.x39{left:167.979000px;}
.x2c{left:173.919000px;}
.x29{left:195.519000px;}
.x38{left:196.959000px;}
.x10{left:208.110000px;}
.x11{left:212.250000px;}
.x24{left:233.139000px;}
.xa{left:248.790000px;}
.xb{left:252.750000px;}
.x8{left:267.195000px;}
.x16{left:312.549000px;}
.xc{left:390.135000px;}
.xd{left:395.895000px;}
.x6{left:412.094987px;}
.x1b{left:441.825000px;}
.x4{left:454.964987px;}
.x12{left:473.144987px;}
.x1c{left:492.225000px;}
.x3a{left:500.144987px;}
.x2f{left:519.945000px;}
.x1d{left:624.750000px;}
.x25{left:627.990000px;}
.x31{left:633.390000px;}
.x26{left:685.590000px;}
.x32{left:691.350000px;}
.x1e{left:700.890000px;}
.x27{left:743.010000px;}
@media print{
.v1{vertical-align:-60.266667pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.425067pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.019840pt;}
.ls16{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.199467pt;}
.ls8{letter-spacing:0.214933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.291840pt;}
.ls6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.456320pt;}
.lsb{letter-spacing:0.456533pt;}
.ls1b{letter-spacing:0.592000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls14{letter-spacing:12.752640pt;}
.lsf{letter-spacing:18.720000pt;}
.ls15{letter-spacing:19.152640pt;}
.ls10{letter-spacing:254.858667pt;}
.lse{letter-spacing:432.778667pt;}
.lsc{letter-spacing:439.818667pt;}
.wsf{word-spacing:-13.872000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.686400pt;}
.ws8{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.648533pt;}
.ws4{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.008533pt;}
.ws9{word-spacing:0.000000pt;}
._48{margin-left:-12.630187pt;}
._49{margin-left:-8.136320pt;}
._18{margin-left:-3.493547pt;}
._16{margin-left:-2.137173pt;}
._3{margin-left:-1.236480pt;}
._0{width:1.274880pt;}
._1c{width:2.183467pt;}
._4{width:3.075413pt;}
._e{width:4.159147pt;}
._11{width:5.053227pt;}
._1a{width:6.572800pt;}
._1{width:7.603200pt;}
._2{width:8.847360pt;}
._9{width:9.880320pt;}
._a{width:10.777600pt;}
._1b{width:11.686400pt;}
._10{width:12.748800pt;}
._d{width:14.661120pt;}
._14{width:15.738240pt;}
._12{width:16.785920pt;}
._13{width:17.901440pt;}
._f{width:18.857600pt;}
._15{width:19.760640pt;}
._5{width:20.769920pt;}
._6{width:21.825707pt;}
._8{width:23.120427pt;}
._7{width:24.010240pt;}
._c{width:25.019520pt;}
._24{width:26.374613pt;}
._22{width:27.501440pt;}
._19{width:28.487040pt;}
._17{width:29.428480pt;}
._2a{width:30.529280pt;}
._b{width:31.765760pt;}
._31{width:32.828160pt;}
._29{width:33.799040pt;}
._1d{width:35.006080pt;}
._23{width:36.015360pt;}
._21{width:37.502720pt;}
._35{width:38.618240pt;}
._36{width:39.627520pt;}
._2d{width:41.539840pt;}
._2e{width:42.457600pt;}
._30{width:43.806933pt;}
._3a{width:44.725120pt;}
._26{width:46.214400pt;}
._1e{width:47.595520pt;}
._20{width:48.657920pt;}
._1f{width:49.720320pt;}
._2c{width:51.101440pt;}
._28{width:52.656640pt;}
._25{width:53.810560pt;}
._2b{width:54.859520pt;}
._4c{width:56.760747pt;}
._4f{width:58.272640pt;}
._3c{width:59.175680pt;}
._27{width:60.411947pt;}
._3b{width:61.907840pt;}
._41{width:62.947200pt;}
._46{width:63.903360pt;}
._3f{width:65.018880pt;}
._32{width:66.202240pt;}
._47{width:67.313280pt;}
._33{width:69.056000pt;}
._43{width:71.021440pt;}
._42{width:72.349440pt;}
._44{width:73.518080pt;}
._45{width:74.421120pt;}
._39{width:75.644160pt;}
._3e{width:79.095680pt;}
._4e{width:80.959147pt;}
._4d{width:81.964160pt;}
._38{width:82.920320pt;}
._40{width:83.982720pt;}
._4b{width:85.523200pt;}
._2f{width:96.678400pt;}
._4a{width:98.615467pt;}
._37{width:128.724480pt;}
._34{width:134.765440pt;}
._3d{width:142.152107pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:72.858149pt;}
.y59{bottom:-6.560000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y46{bottom:4.000000pt;}
.y56{bottom:4.800000pt;}
.y58{bottom:6.080000pt;}
.yd6{bottom:7.680000pt;}
.yd4{bottom:7.720000pt;}
.y43{bottom:18.560000pt;}
.y55{bottom:28.320000pt;}
.y42{bottom:34.080000pt;}
.y41{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y54{bottom:57.280000pt;}
.y40{bottom:65.440000pt;}
.y2{bottom:71.200000pt;}
.y3f{bottom:81.120000pt;}
.y3e{bottom:96.640000pt;}
.yf6{bottom:100.960000pt;}
.y57{bottom:101.280000pt;}
.yd1{bottom:106.400000pt;}
.y95{bottom:109.600000pt;}
.y3d{bottom:112.360000pt;}
.yf5{bottom:116.320000pt;}
.yd0{bottom:121.600000pt;}
.y94{bottom:124.960000pt;}
.y3c{bottom:128.040000pt;}
.yf4{bottom:131.680000pt;}
.y51{bottom:134.400000pt;}
.ycf{bottom:136.960000pt;}
.y93{bottom:140.320000pt;}
.y3b{bottom:143.560000pt;}
.yf3{bottom:147.040000pt;}
.y50{bottom:149.760000pt;}
.yce{bottom:152.320000pt;}
.yaa{bottom:155.360000pt;}
.y92{bottom:155.680000pt;}
.y3a{bottom:159.240000pt;}
.yf2{bottom:162.400000pt;}
.y4f{bottom:164.960000pt;}
.ycd{bottom:167.680000pt;}
.ya9{bottom:170.720000pt;}
.y91{bottom:171.040000pt;}
.y39{bottom:174.920000pt;}
.yf1{bottom:177.600000pt;}
.y4e{bottom:180.320000pt;}
.ycc{bottom:183.040000pt;}
.y90{bottom:186.400000pt;}
.y38{bottom:190.440000pt;}
.yf0{bottom:192.986667pt;}
.y4d{bottom:195.706667pt;}
.ycb{bottom:198.426667pt;}
.yf8{bottom:201.306667pt;}
.y8f{bottom:201.626667pt;}
.y37{bottom:206.120000pt;}
.y4c{bottom:211.066667pt;}
.yca{bottom:213.626667pt;}
.y8e{bottom:216.986667pt;}
.yef{bottom:221.146667pt;}
.y36{bottom:221.800000pt;}
.y4b{bottom:226.426667pt;}
.yc9{bottom:228.986667pt;}
.y8d{bottom:232.346667pt;}
.yee{bottom:237.146667pt;}
.y35{bottom:237.480000pt;}
.y4a{bottom:241.626667pt;}
.y24{bottom:243.720000pt;}
.yc8{bottom:244.346667pt;}
.y9d{bottom:247.386667pt;}
.y8c{bottom:247.706667pt;}
.y34{bottom:253.000000pt;}
.yed{bottom:253.146667pt;}
.y49{bottom:256.666667pt;}
.y52{bottom:256.986667pt;}
.yc7{bottom:259.706667pt;}
.y23{bottom:259.880000pt;}
.y9c{bottom:262.746667pt;}
.y8b{bottom:263.066667pt;}
.y33{bottom:268.680000pt;}
.yec{bottom:269.146667pt;}
.y48{bottom:272.026667pt;}
.yc6{bottom:275.066667pt;}
.y22{bottom:276.040000pt;}
.y9b{bottom:278.106667pt;}
.y8a{bottom:278.426667pt;}
.y32{bottom:284.360000pt;}
.y47{bottom:284.826667pt;}
.yeb{bottom:285.146667pt;}
.y45{bottom:286.746667pt;}
.yc5{bottom:290.426667pt;}
.y11{bottom:292.026667pt;}
.y21{bottom:292.200000pt;}
.yad{bottom:293.306667pt;}
.y89{bottom:293.626667pt;}
.y31{bottom:299.880000pt;}
.yea{bottom:301.146667pt;}
.yc4{bottom:305.626667pt;}
.y20{bottom:308.360000pt;}
.ya3{bottom:308.666667pt;}
.y88{bottom:308.986667pt;}
.y30{bottom:315.586667pt;}
.ye9{bottom:317.146667pt;}
.yc3{bottom:320.986667pt;}
.y1f{bottom:322.306667pt;}
.ya2{bottom:324.026667pt;}
.y87{bottom:324.346667pt;}
.y2f{bottom:331.266667pt;}
.y1e{bottom:334.786667pt;}
.yc2{bottom:336.346667pt;}
.ya1{bottom:339.386667pt;}
.y86{bottom:339.706667pt;}
.y2e{bottom:346.786667pt;}
.y1d{bottom:347.266667pt;}
.ye8{bottom:351.386667pt;}
.yc1{bottom:351.706667pt;}
.yf7{bottom:354.746667pt;}
.y85{bottom:355.066667pt;}
.y1c{bottom:359.746667pt;}
.y2d{bottom:362.466667pt;}
.yc0{bottom:367.066667pt;}
.y84{bottom:370.426667pt;}
.y1b{bottom:372.226667pt;}
.y2c{bottom:378.146667pt;}
.ybf{bottom:382.426667pt;}
.y1a{bottom:384.546667pt;}
.y83{bottom:385.626667pt;}
.y2b{bottom:393.666667pt;}
.y19{bottom:396.706667pt;}
.ybe{bottom:397.626667pt;}
.y82{bottom:401.026667pt;}
.y18{bottom:409.026667pt;}
.y2a{bottom:409.346667pt;}
.ybd{bottom:413.026667pt;}
.y81{bottom:416.386667pt;}
.y17{bottom:421.506667pt;}
.y29{bottom:425.026667pt;}
.ybc{bottom:428.386667pt;}
.ya8{bottom:431.426667pt;}
.y80{bottom:431.746667pt;}
.y16{bottom:434.146667pt;}
.y28{bottom:440.706667pt;}
.ybb{bottom:443.746667pt;}
.y15{bottom:446.626667pt;}
.ya7{bottom:446.786667pt;}
.y7f{bottom:447.106667pt;}
.y27{bottom:456.226667pt;}
.yba{bottom:459.106667pt;}
.y14{bottom:459.586667pt;}
.ya6{bottom:461.986667pt;}
.y7e{bottom:462.306667pt;}
.y26{bottom:471.906667pt;}
.yb9{bottom:474.306667pt;}
.y13{bottom:475.426667pt;}
.y98{bottom:477.346667pt;}
.y7d{bottom:477.666667pt;}
.yb8{bottom:489.666667pt;}
.y25{bottom:490.306667pt;}
.y12{bottom:490.786667pt;}
.y7c{bottom:493.026667pt;}
.yb7{bottom:505.026667pt;}
.y7b{bottom:508.386667pt;}
.ye7{bottom:520.386667pt;}
.y7a{bottom:523.746667pt;}
.yb6{bottom:533.186667pt;}
.ye6{bottom:535.746667pt;}
.yac{bottom:538.786667pt;}
.y79{bottom:539.106667pt;}
.yb5{bottom:549.186667pt;}
.ye5{bottom:551.106667pt;}
.y78{bottom:554.306667pt;}
.yb4{bottom:565.186667pt;}
.ye4{bottom:566.306667pt;}
.y77{bottom:569.666667pt;}
.yb3{bottom:581.186667pt;}
.ye3{bottom:581.666667pt;}
.y76{bottom:585.026667pt;}
.ye2{bottom:597.026667pt;}
.y75{bottom:600.386667pt;}
.ye1{bottom:612.413333pt;}
.yb2{bottom:615.453333pt;}
.y74{bottom:615.773333pt;}
.ye0{bottom:627.773333pt;}
.y73{bottom:631.133333pt;}
.ydf{bottom:643.133333pt;}
.y72{bottom:646.333333pt;}
.yde{bottom:658.333333pt;}
.y97{bottom:661.373333pt;}
.y71{bottom:661.693333pt;}
.ydd{bottom:673.693333pt;}
.y9a{bottom:676.733333pt;}
.y70{bottom:677.053333pt;}
.ydc{bottom:689.053333pt;}
.y99{bottom:692.093333pt;}
.y6f{bottom:692.413333pt;}
.ydb{bottom:704.413333pt;}
.y6e{bottom:707.773333pt;}
.yda{bottom:719.773333pt;}
.y6d{bottom:722.973333pt;}
.yd9{bottom:734.973333pt;}
.y6c{bottom:738.333333pt;}
.yd8{bottom:750.333333pt;}
.ya5{bottom:753.373333pt;}
.y6b{bottom:753.693333pt;}
.ya4{bottom:768.733333pt;}
.y6a{bottom:769.053333pt;}
.yd7{bottom:778.493333pt;}
.yab{bottom:784.093333pt;}
.y69{bottom:784.413333pt;}
.yd5{bottom:794.493333pt;}
.ya0{bottom:799.453333pt;}
.y10{bottom:799.613333pt;}
.y68{bottom:799.773333pt;}
.yd3{bottom:810.493333pt;}
.y9f{bottom:814.653333pt;}
.y67{bottom:814.973333pt;}
.yf{bottom:821.573333pt;}
.yd2{bottom:826.533333pt;}
.y9e{bottom:830.053333pt;}
.y66{bottom:830.373333pt;}
.ye{bottom:839.653333pt;}
.yb1{bottom:845.413333pt;}
.y65{bottom:845.733333pt;}
.yd{bottom:859.973333pt;}
.y96{bottom:860.773333pt;}
.y64{bottom:861.093333pt;}
.yb0{bottom:876.133333pt;}
.y63{bottom:876.453333pt;}
.yc{bottom:882.853333pt;}
.yaf{bottom:891.493333pt;}
.y62{bottom:891.813333pt;}
.yb{bottom:905.733333pt;}
.yfa{bottom:906.693333pt;}
.y61{bottom:907.013333pt;}
.yf9{bottom:922.053333pt;}
.y60{bottom:922.373333pt;}
.ya{bottom:925.573333pt;}
.y5f{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y53{bottom:951.333333pt;}
.y5e{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.y5d{bottom:968.453333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.yae{bottom:1014.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h13{height:5.025000pt;}
.h14{height:5.160000pt;}
.h15{height:5.262553pt;}
.h12{height:5.280000pt;}
.h4{height:15.360000pt;}
.h20{height:15.392000pt;}
.h1b{height:16.000000pt;}
.h1d{height:36.138125pt;}
.he{height:36.305625pt;}
.h1f{height:37.479688pt;}
.h1e{height:38.413438pt;}
.h10{height:40.640625pt;}
.h11{height:40.764316pt;}
.h1c{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.hd{height:44.073883pt;}
.hf{height:44.638750pt;}
.hc{height:44.975625pt;}
.h21{height:52.108438pt;}
.h5{height:52.134375pt;}
.h22{height:52.990313pt;}
.h16{height:53.535000pt;}
.h17{height:54.598989pt;}
.ha{height:55.298750pt;}
.h9{height:59.340000pt;}
.h19{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h18{height:72.160000pt;}
.h8{height:75.846471pt;}
.hb{height:502.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:35.840000pt;}
.w17{width:36.160000pt;}
.w10{width:44.160000pt;}
.wb{width:44.800000pt;}
.w19{width:50.400000pt;}
.w21{width:50.880000pt;}
.w16{width:51.040000pt;}
.w15{width:51.200000pt;}
.w1d{width:51.520000pt;}
.w12{width:67.040000pt;}
.wd{width:67.680000pt;}
.w13{width:69.440000pt;}
.we{width:69.760000pt;}
.w22{width:80.320000pt;}
.w1e{width:80.640000pt;}
.w20{width:100.192000pt;}
.w1c{width:100.832000pt;}
.w11{width:116.992000pt;}
.wc{width:117.792000pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.wf{width:291.266667pt;}
.wa{width:291.586667pt;}
.w1f{width:363.106667pt;}
.w1b{width:363.426667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w18{width:460.413333pt;}
.w14{width:460.733333pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x18{left:9.600000pt;}
.x30{left:10.560000pt;}
.x34{left:13.760000pt;}
.x28{left:14.880000pt;}
.x9{left:18.400000pt;}
.x20{left:21.920000pt;}
.x21{left:22.880000pt;}
.x2{left:24.000000pt;}
.x2a{left:25.120000pt;}
.x3{left:27.680000pt;}
.x37{left:34.080000pt;}
.x33{left:38.400000pt;}
.x1f{left:46.880000pt;}
.x5{left:47.999988pt;}
.x14{left:55.994667pt;}
.xe{left:64.640000pt;}
.xf{left:68.320000pt;}
.x22{left:76.474667pt;}
.x17{left:79.552000pt;}
.x1{left:96.031988pt;}
.x23{left:97.472000pt;}
.x2d{left:98.752000pt;}
.x35{left:99.994667pt;}
.x19{left:101.152000pt;}
.x3b{left:120.031988pt;}
.x1a{left:122.554667pt;}
.x13{left:124.992000pt;}
.x2e{left:132.514667pt;}
.x36{left:138.434667pt;}
.x15{left:140.034667pt;}
.x2b{left:142.114667pt;}
.x39{left:149.314667pt;}
.x2c{left:154.594667pt;}
.x29{left:173.794667pt;}
.x38{left:175.074667pt;}
.x10{left:184.986667pt;}
.x11{left:188.666667pt;}
.x24{left:207.234667pt;}
.xa{left:221.146667pt;}
.xb{left:224.666667pt;}
.x8{left:237.506667pt;}
.x16{left:277.821333pt;}
.xc{left:346.786667pt;}
.xd{left:351.906667pt;}
.x6{left:366.306655pt;}
.x1b{left:392.733333pt;}
.x4{left:404.413322pt;}
.x12{left:420.573322pt;}
.x1c{left:437.533333pt;}
.x3a{left:444.573322pt;}
.x2f{left:462.173333pt;}
.x1d{left:555.333333pt;}
.x25{left:558.213333pt;}
.x31{left:563.013333pt;}
.x26{left:609.413333pt;}
.x32{left:614.533333pt;}
.x1e{left:623.013333pt;}
.x27{left:660.453333pt;}
}




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