
    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_bc9c34dbb88b836d6d809809.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.087891;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_67b1849cf848823e2b69713a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_739433e1c9688e0c0fed63d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_0e411350a3bae259fb1b4a9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_2ecd0220b415433a445ceb03.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091797;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_0b76cb2613a79d7280ee4f59.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091797;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_124108c3513ec5b95b3e2103.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_641d51e096be8cd3e82b0424.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ea29770cbe1c76c2366a6bc7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_ac7cfc3d9d055a69751535d4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1544125f1ee6269c6288f98a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_38ca5c00c44545afcaedadf7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4fa1446547a4c73de9ad0425.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5b88274a6079e8a7839f70fe.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.202148;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_451fb51aab2ccf50672ed57f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942383;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_909da136da0e77bc7370a40d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_efc9d1d2e6c47eff8b1c4cac.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940918;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_4eeda84606675ece7574d396.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.087891;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6f7cbfcbe1786c57d4c82843.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.087891;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(0.250642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250642,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);}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:41.760000px;}
.ls1a{letter-spacing:-8.220000px;}
.ls8{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.240263px;}
.ls13{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.050440px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.015568px;}
.ls6{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.191400px;}
.ls17{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls3{letter-spacing:44.760000px;}
.ls11{letter-spacing:54.840000px;}
.ls0{letter-spacing:55.008000px;}
.ls10{letter-spacing:62.760000px;}
.lsf{letter-spacing:62.928000px;}
.ls14{letter-spacing:64.170720px;}
.ls16{letter-spacing:836.945760px;}
.ls1{letter-spacing:844.104000px;}
.lse{letter-spacing:844.140000px;}
.ls15{letter-spacing:849.149760px;}
.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:-72.000000px;}
.wsd{word-spacing:-59.760000px;}
.ws10{word-spacing:-54.000000px;}
.wsa{word-spacing:-23.206320px;}
.wse{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.128000px;}
.ws12{word-spacing:-16.056000px;}
.ws15{word-spacing:-14.904000px;}
.ws18{word-spacing:-14.832000px;}
.ws17{word-spacing:-14.760000px;}
.ws4{word-spacing:-14.688000px;}
.ws1{word-spacing:-14.616000px;}
.ws5{word-spacing:-14.544000px;}
.wsb{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.400000px;}
.ws19{word-spacing:-14.184000px;}
.ws6{word-spacing:-13.752000px;}
.ws3{word-spacing:-13.608000px;}
.ws11{word-spacing:-12.204000px;}
.ws9{word-spacing:-11.630409px;}
.ws8{word-spacing:-11.440585px;}
.ws7{word-spacing:-8.668680px;}
.ws13{word-spacing:-8.136000px;}
.ws16{word-spacing:-6.396000px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-7.944240px;}
._7{margin-left:-6.336000px;}
._3{margin-left:-5.213520px;}
._1{margin-left:-3.246480px;}
._5{margin-left:-2.232000px;}
._0{margin-left:-1.202400px;}
._2{width:1.202400px;}
._4{width:2.941440px;}
._8{width:8.947200px;}
.fc7{color:rgb(14,40,65);}
.fc4{color:rgb(70,120,134);}
.fc6{color:rgb(2,94,141);}
.fc3{color:rgb(33,37,41);}
.fc2{color:transparent;}
.fc8{color:rgb(31,31,31);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,71,97);}
.fs8{font-size:36.000000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:51.685171px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.289587px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.424921px;}
.y49{bottom:4.826025px;}
.y6b{bottom:4.826674px;}
.y67{bottom:4.827322px;}
.y8a{bottom:4.980406px;}
.y6e{bottom:4.981703px;}
.y8d{bottom:5.012839px;}
.y1a6{bottom:5.040000px;}
.y62{bottom:6.381510px;}
.y48{bottom:6.382807px;}
.y6a{bottom:6.383456px;}
.y66{bottom:6.384105px;}
.y4f{bottom:6.408754px;}
.y87{bottom:6.537188px;}
.y6d{bottom:6.538485px;}
.y8c{bottom:6.568324px;}
.y19c{bottom:18.720000px;}
.y45{bottom:19.304100px;}
.y1a5{bottom:27.000000px;}
.y19b{bottom:35.280000px;}
.y1bb{bottom:48.960000px;}
.y1a4{bottom:49.140000px;}
.y19a{bottom:51.660000px;}
.yc4{bottom:65.880000px;}
.y1cc{bottom:70.920000px;}
.y1ba{bottom:71.100000px;}
.y1a3{bottom:71.130000px;}
.y103{bottom:75.780000px;}
.yf4{bottom:76.680000px;}
.y15d{bottom:81.720000px;}
.yc3{bottom:91.080000px;}
.y1de{bottom:92.880000px;}
.y1cb{bottom:93.060000px;}
.y19e{bottom:93.090000px;}
.yf3{bottom:97.380000px;}
.y1b8{bottom:104.070000px;}
.y15c{bottom:106.920000px;}
.y1eb{bottom:107.100000px;}
.y1dd{bottom:115.020000px;}
.y1a2{bottom:115.050000px;}
.yc2{bottom:117.540000px;}
.y102{bottom:119.880000px;}
.y1db{bottom:126.000000px;}
.y1d9{bottom:129.060000px;}
.y15b{bottom:133.380000px;}
.y1a1{bottom:137.010000px;}
.yf2{bottom:141.516000px;}
.yc1{bottom:144.036000px;}
.y1ea{bottom:144.576000px;}
.y1c8{bottom:151.050000px;}
.y1a0{bottom:158.970000px;}
.y15a{bottom:159.870000px;}
.y1d8{bottom:166.530000px;}
.y101{bottom:169.050000px;}
.y1e9{bottom:170.130000px;}
.yc0{bottom:170.490000px;}
.y1b3{bottom:173.010000px;}
.y198{bottom:178.050000px;}
.y19f{bottom:180.930000px;}
.y159{bottom:186.510000px;}
.y1c7{bottom:188.490000px;}
.yf1{bottom:190.650000px;}
.y1d7{bottom:192.090000px;}
.y1e8{bottom:195.510000px;}
.ybf{bottom:196.950000px;}
.y40{bottom:198.570000px;}
.y1b9{bottom:202.890000px;}
.ye6{bottom:203.250000px;}
.y41{bottom:208.650000px;}
.y42{bottom:209.847881px;}
.y1b2{bottom:210.450000px;}
.y90{bottom:210.470542px;}
.y158{bottom:211.710000px;}
.y1c6{bottom:214.050000px;}
.y197{bottom:215.490000px;}
.y69{bottom:217.164706px;}
.y1d6{bottom:217.470000px;}
.y1e7{bottom:220.890000px;}
.ybe{bottom:223.410000px;}
.y3f{bottom:223.770000px;}
.y1ca{bottom:224.850000px;}
.y8f{bottom:229.930969px;}
.y1b1{bottom:236.010000px;}
.y68{bottom:236.623835px;}
.y157{bottom:238.170000px;}
.y1c5{bottom:239.430000px;}
.y196{bottom:241.050000px;}
.y1d5{bottom:242.850000px;}
.ye5{bottom:245.010000px;}
.y1e6{bottom:246.450000px;}
.y1dc{bottom:246.810000px;}
.y8e{bottom:249.390747px;}
.ybd{bottom:249.870000px;}
.y3e{bottom:250.230000px;}
.y65{bottom:256.083613px;}
.y1b0{bottom:261.390000px;}
.y156{bottom:263.370000px;}
.y1c4{bottom:264.810000px;}
.ye4{bottom:265.710000px;}
.y195{bottom:266.430000px;}
.y1d4{bottom:268.410000px;}
.y8b{bottom:268.850525px;}
.y139{bottom:270.390000px;}
.y1e5{bottom:271.830000px;}
.y64{bottom:275.575825px;}
.ybc{bottom:276.330000px;}
.y3d{bottom:276.690000px;}
.ye3{bottom:286.410000px;}
.y1af{bottom:286.950000px;}
.y178{bottom:287.490000px;}
.y89{bottom:288.341439px;}
.y155{bottom:289.830000px;}
.y1c3{bottom:290.370000px;}
.y138{bottom:291.090000px;}
.y194{bottom:291.990000px;}
.y1d3{bottom:293.790000px;}
.y63{bottom:295.035603px;}
.y1e4{bottom:297.390000px;}
.y13b{bottom:297.930000px;}
.ybb{bottom:302.790000px;}
.y3c{bottom:303.150000px;}
.ye2{bottom:307.110000px;}
.y88{bottom:307.801217px;}
.y137{bottom:311.790000px;}
.y1ae{bottom:312.330000px;}
.y177{bottom:312.690000px;}
.y61{bottom:314.495381px;}
.y1c2{bottom:315.750000px;}
.y154{bottom:316.290000px;}
.y193{bottom:317.370000px;}
.y1d2{bottom:319.350000px;}
.y1d{bottom:320.250000px;}
.y105{bottom:320.790000px;}
.y1e3{bottom:322.770000px;}
.y86{bottom:327.260995px;}
.ye1{bottom:327.810000px;}
.yba{bottom:327.990000px;}
.y3b{bottom:329.610000px;}
.y136{bottom:332.490000px;}
.y60{bottom:333.955159px;}
.y1ad{bottom:337.710000px;}
.y176{bottom:339.330000px;}
.y13a{bottom:339.510000px;}
.y124{bottom:340.050000px;}
.y1c1{bottom:341.310000px;}
.y153{bottom:342.750000px;}
.y1d1{bottom:344.730000px;}
.y85{bottom:346.720774px;}
.y1e2{bottom:348.150000px;}
.ye0{bottom:348.510000px;}
.y135{bottom:353.190000px;}
.y5f{bottom:353.414937px;}
.yb9{bottom:354.450000px;}
.y3a{bottom:356.070000px;}
.y1c{bottom:356.790000px;}
.y1ac{bottom:363.270000px;}
.y175{bottom:364.530000px;}
.y84{bottom:366.180552px;}
.y1c0{bottom:366.690000px;}
.y152{bottom:368.130000px;}
.y192{bottom:368.310000px;}
.ydf{bottom:369.210000px;}
.y1d0{bottom:370.110000px;}
.y5e{bottom:372.874715px;}
.y1e1{bottom:373.755000px;}
.y134{bottom:373.935000px;}
.yb8{bottom:379.695000px;}
.y199{bottom:380.415000px;}
.y39{bottom:381.495000px;}
.y1b{bottom:382.035000px;}
.y123{bottom:383.115000px;}
.y83{bottom:385.640330px;}
.y1ab{bottom:388.695000px;}
.yde{bottom:389.955000px;}
.y174{bottom:391.035000px;}
.y1bf{bottom:392.115000px;}
.y5d{bottom:392.334494px;}
.y151{bottom:393.375000px;}
.y107{bottom:393.735000px;}
.y1cf{bottom:395.715000px;}
.y122{bottom:405.075000px;}
.y82{bottom:405.126055px;}
.yb7{bottom:406.335000px;}
.y38{bottom:406.695000px;}
.y1a{bottom:408.495000px;}
.y160{bottom:410.475000px;}
.ydd{bottom:410.655000px;}
.y1e0{bottom:411.195000px;}
.y5c{bottom:411.820218px;}
.y1aa{bottom:414.255000px;}
.y133{bottom:415.515000px;}
.y173{bottom:417.495000px;}
.y1be{bottom:417.675000px;}
.y150{bottom:418.755000px;}
.y191{bottom:419.295000px;}
.y81{bottom:424.585833px;}
.y121{bottom:427.035000px;}
.y5b{bottom:431.279996px;}
.ydc{bottom:431.355000px;}
.yb6{bottom:431.535000px;}
.y37{bottom:431.895000px;}
.y1ce{bottom:433.155000px;}
.y19{bottom:433.875000px;}
.y91{bottom:434.127491px;}
.y132{bottom:436.215000px;}
.y1a9{bottom:439.635000px;}
.y14f{bottom:443.955000px;}
.y80{bottom:444.045611px;}
.y190{bottom:444.675000px;}
.y1df{bottom:448.635000px;}
.y120{bottom:448.995000px;}
.y5a{bottom:450.739775px;}
.y1bd{bottom:455.115000px;}
.y36{bottom:457.275000px;}
.yb5{bottom:457.995000px;}
.y18{bottom:460.335000px;}
.y7f{bottom:463.505389px;}
.y15f{bottom:464.835000px;}
.y14e{bottom:469.155000px;}
.y18f{bottom:470.055000px;}
.y59{bottom:470.199553px;}
.y172{bottom:470.415000px;}
.y1cd{bottom:470.595000px;}
.y11f{bottom:470.955000px;}
.y1da{bottom:471.135000px;}
.ydb{bottom:475.455000px;}
.y131{bottom:475.635000px;}
.y1a8{bottom:477.075000px;}
.y35{bottom:482.475000px;}
.y7e{bottom:482.965167px;}
.yb4{bottom:483.375000px;}
.y17{bottom:486.795000px;}
.y58{bottom:489.659331px;}
.y1bc{bottom:492.555000px;}
.y1c9{bottom:493.095000px;}
.y14d{bottom:494.535000px;}
.ye8{bottom:495.435000px;}
.y171{bottom:495.615000px;}
.y11e{bottom:496.695000px;}
.y7d{bottom:502.424945px;}
.y15e{bottom:508.395000px;}
.yb3{bottom:508.575000px;}
.y34{bottom:508.935000px;}
.y57{bottom:509.119109px;}
.yda{bottom:511.815000px;}
.y16{bottom:513.255000px;}
.y1a7{bottom:514.515000px;}
.y11d{bottom:514.875000px;}
.y1b7{bottom:515.055000px;}
.y14c{bottom:519.735000px;}
.y170{bottom:520.995000px;}
.y7c{bottom:521.884724px;}
.y1b6{bottom:523.515000px;}
.y56{bottom:528.578887px;}
.ye7{bottom:533.055000px;}
.yb2{bottom:533.775000px;}
.y33{bottom:534.135000px;}
.y11c{bottom:536.835000px;}
.y19d{bottom:537.015000px;}
.yd9{bottom:538.275000px;}
.y15{bottom:539.715000px;}
.y7b{bottom:541.383421px;}
.y14b{bottom:544.935000px;}
.y16f{bottom:546.195000px;}
.y18e{bottom:546.555000px;}
.y55{bottom:548.077585px;}
.y1b5{bottom:555.915000px;}
.y11b{bottom:558.795000px;}
.yb1{bottom:559.155000px;}
.y32{bottom:560.595000px;}
.y7a{bottom:560.843199px;}
.yd8{bottom:563.475000px;}
.y14{bottom:564.915000px;}
.y54{bottom:567.537363px;}
.y14a{bottom:571.575000px;}
.y18d{bottom:571.935000px;}
.y16e{bottom:572.655000px;}
.y79{bottom:580.302978px;}
.y11a{bottom:580.755000px;}
.yb0{bottom:584.355000px;}
.y31{bottom:585.975000px;}
.y53{bottom:586.997141px;}
.yfd{bottom:587.775000px;}
.yd7{bottom:589.935000px;}
.y13{bottom:590.115000px;}
.y149{bottom:596.775000px;}
.y100{bottom:596.955000px;}
.y18c{bottom:597.315000px;}
.y16d{bottom:599.115000px;}
.y78{bottom:599.762756px;}
.y52{bottom:606.456920px;}
.yaf{bottom:609.765000px;}
.y30{bottom:611.205000px;}
.y43{bottom:615.868846px;}
.y12{bottom:616.605000px;}
.y77{bottom:619.222534px;}
.y148{bottom:622.005000px;}
.y18b{bottom:622.905000px;}
.y119{bottom:623.805000px;}
.y16c{bottom:624.525000px;}
.yfc{bottom:625.425000px;}
.y51{bottom:625.916698px;}
.ya3{bottom:626.505000px;}
.yae{bottom:634.965000px;}
.y106{bottom:636.585000px;}
.y2f{bottom:637.665000px;}
.y76{bottom:638.682312px;}
.yd6{bottom:641.805000px;}
.y11{bottom:643.065000px;}
.y50{bottom:645.376476px;}
.y118{bottom:645.765000px;}
.yff{bottom:646.125000px;}
.y147{bottom:647.385000px;}
.y18a{bottom:648.285000px;}
.y16b{bottom:649.725000px;}
.ya2{bottom:651.705000px;}
.y75{bottom:658.142090px;}
.yad{bottom:660.165000px;}
.y2e{bottom:663.045000px;}
.y4e{bottom:664.836254px;}
.y117{bottom:667.725000px;}
.yd5{bottom:668.265000px;}
.y10{bottom:669.525000px;}
.y146{bottom:672.585000px;}
.y189{bottom:673.845000px;}
.y16a{bottom:674.925000px;}
.y74{bottom:677.627815px;}
.ya1{bottom:678.345000px;}
.y4d{bottom:684.321979px;}
.yac{bottom:685.545000px;}
.y2d{bottom:688.245000px;}
.y116{bottom:689.685000px;}
.yd4{bottom:694.725000px;}
.yf{bottom:696.165000px;}
.y73{bottom:697.087593px;}
.y145{bottom:699.045000px;}
.y188{bottom:699.225000px;}
.y169{bottom:700.305000px;}
.y4c{bottom:703.781757px;}
.ya0{bottom:704.805000px;}
.yab{bottom:710.745000px;}
.y115{bottom:711.645000px;}
.y2c{bottom:713.445000px;}
.y72{bottom:716.547371px;}
.yd3{bottom:721.185000px;}
.ye{bottom:721.365000px;}
.y4b{bottom:723.241535px;}
.y144{bottom:724.245000px;}
.y187{bottom:724.605000px;}
.y168{bottom:725.505000px;}
.y9f{bottom:731.265000px;}
.y114{bottom:733.605000px;}
.yaa{bottom:735.945000px;}
.y71{bottom:736.007149px;}
.y2b{bottom:738.645000px;}
.y4a{bottom:742.701313px;}
.yd{bottom:746.565000px;}
.yd2{bottom:747.645000px;}
.y143{bottom:749.625000px;}
.y167{bottom:750.705000px;}
.y70{bottom:755.466928px;}
.y113{bottom:755.745000px;}
.y9e{bottom:756.465000px;}
.ya9{bottom:761.325000px;}
.y186{bottom:762.045000px;}
.y47{bottom:762.161091px;}
.y2a{bottom:765.285000px;}
.yc{bottom:773.025000px;}
.y142{bottom:774.825000px;}
.y6f{bottom:774.926706px;}
.y166{bottom:776.085000px;}
.y112{bottom:777.705000px;}
.y44{bottom:781.620869px;}
.y9d{bottom:781.665000px;}
.ya8{bottom:786.525000px;}
.y185{bottom:787.605000px;}
.y29{bottom:790.485000px;}
.y6c{bottom:794.386484px;}
.yd1{bottom:798.225000px;}
.yb{bottom:799.485000px;}
.y111{bottom:799.665000px;}
.y141{bottom:800.205000px;}
.y165{bottom:801.285000px;}
.y9c{bottom:808.125000px;}
.ya7{bottom:811.905000px;}
.y184{bottom:812.985000px;}
.y28{bottom:815.865000px;}
.y110{bottom:821.625000px;}
.yd0{bottom:824.685000px;}
.y140{bottom:825.405000px;}
.ya{bottom:826.125000px;}
.y164{bottom:827.745000px;}
.y130{bottom:832.065000px;}
.y9b{bottom:834.585000px;}
.ya6{bottom:837.105000px;}
.y183{bottom:838.545000px;}
.y27{bottom:841.065000px;}
.y10f{bottom:843.630000px;}
.y13f{bottom:850.650000px;}
.ycf{bottom:851.190000px;}
.y9{bottom:851.370000px;}
.y1b4{bottom:852.630000px;}
.y163{bottom:853.170000px;}
.y9a{bottom:861.270000px;}
.ya5{bottom:862.350000px;}
.y182{bottom:863.970000px;}
.y26{bottom:866.310000px;}
.yfe{bottom:875.130000px;}
.y13e{bottom:875.850000px;}
.y8{bottom:876.570000px;}
.yce{bottom:877.650000px;}
.y162{bottom:878.370000px;}
.y99{bottom:886.470000px;}
.y10e{bottom:886.650000px;}
.ya4{bottom:887.730000px;}
.y181{bottom:889.350000px;}
.y25{bottom:892.770000px;}
.yf0{bottom:896.190000px;}
.y12f{bottom:897.090000px;}
.y13d{bottom:902.310000px;}
.y7{bottom:903.030000px;}
.y161{bottom:903.570000px;}
.ycd{bottom:904.110000px;}
.y10d{bottom:908.610000px;}
.y98{bottom:912.930000px;}
.y180{bottom:914.910000px;}
.yef{bottom:916.890000px;}
.y24{bottom:918.150000px;}
.y12e{bottom:919.050000px;}
.y6{bottom:928.410000px;}
.y13c{bottom:928.770000px;}
.ycc{bottom:930.570000px;}
.yee{bottom:937.590000px;}
.y97{bottom:938.310000px;}
.y17f{bottom:940.290000px;}
.y12d{bottom:941.010000px;}
.y10c{bottom:952.530000px;}
.y5{bottom:953.610000px;}
.y23{bottom:955.410000px;}
.ycb{bottom:957.030000px;}
.yed{bottom:958.290000px;}
.y12c{bottom:963.150000px;}
.y96{bottom:963.510000px;}
.y17e{bottom:965.850000px;}
.y104{bottom:972.330000px;}
.y10b{bottom:974.490000px;}
.y4{bottom:978.990000px;}
.y22{bottom:980.610000px;}
.yca{bottom:983.490000px;}
.y12b{bottom:985.110000px;}
.y95{bottom:988.710000px;}
.y17d{bottom:991.230000px;}
.yfb{bottom:993.030000px;}
.y10a{bottom:996.450000px;}
.yec{bottom:999.690000px;}
.y3{bottom:1004.190000px;}
.y21{bottom:1005.990000px;}
.y12a{bottom:1007.070000px;}
.yc9{bottom:1009.950000px;}
.yfa{bottom:1013.730000px;}
.y109{bottom:1018.410000px;}
.yeb{bottom:1020.390000px;}
.y94{bottom:1026.150000px;}
.y17c{bottom:1028.670000px;}
.y129{bottom:1029.030000px;}
.y20{bottom:1031.190000px;}
.yf9{bottom:1034.430000px;}
.yc8{bottom:1036.410000px;}
.yea{bottom:1041.090000px;}
.y2{bottom:1041.630000px;}
.y128{bottom:1050.990000px;}
.y17b{bottom:1054.230000px;}
.yf8{bottom:1055.130000px;}
.y108{bottom:1061.430000px;}
.ye9{bottom:1061.790000px;}
.yc7{bottom:1062.870000px;}
.y93{bottom:1063.410000px;}
.y1f{bottom:1068.630000px;}
.y127{bottom:1072.950000px;}
.yf7{bottom:1075.830000px;}
.y1{bottom:1078.920000px;}
.y17a{bottom:1079.640000px;}
.yc6{bottom:1089.360000px;}
.y126{bottom:1094.940000px;}
.yf6{bottom:1096.560000px;}
.y92{bottom:1105.740000px;}
.y1e{bottom:1105.920000px;}
.yc5{bottom:1115.820000px;}
.y125{bottom:1116.900000px;}
.y179{bottom:1117.080000px;}
.yf5{bottom:1117.260000px;}
.h9{height:18.837065px;}
.hb{height:18.868201px;}
.h7{height:31.633815px;}
.h15{height:46.669922px;}
.he{height:50.273438px;}
.hd{height:50.800781px;}
.ha{height:51.407565px;}
.h8{height:52.921779px;}
.h13{height:56.493281px;}
.h6{height:56.981879px;}
.h2{height:62.402344px;}
.h3{height:62.507812px;}
.h14{height:64.440000px;}
.hf{height:65.884219px;}
.h12{height:71.613281px;}
.h11{height:73.722656px;}
.hc{height:84.837305px;}
.h1{height:103.918359px;}
.h4{height:103.986563px;}
.h10{height:123.116836px;}
.h16{height:197.850000px;}
.h17{height:219.810000px;}
.h18{height:241.770000px;}
.h19{height:263.730000px;}
.h5{height:924.152119px;}
.h0{height:1188.000000px;}
.w3{width:39.955968px;}
.w6{width:39.987184px;}
.wa{width:53.316000px;}
.w8{width:84.126042px;}
.w4{width:84.157258px;}
.w7{width:84.282120px;}
.w5{width:84.313336px;}
.w9{width:368.535000px;}
.wb{width:684.825000px;}
.w2{width:702.000000px;}
.wc{width:763.665000px;}
.wd{width:770.325000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:5.580000px;}
.x8{left:6.711354px;}
.xb{left:27.188788px;}
.xe{left:30.630308px;}
.xa{left:32.495440px;}
.x1{left:53.999986px;}
.x2{left:80.999986px;}
.x9{left:95.360667px;}
.x3{left:108.035986px;}
.x4{left:135.035986px;}
.x5{left:162.029986px;}
.xc{left:196.993458px;}
.xd{left:237.573738px;}
.xf{left:339.375613px;}
.x10{left:379.981906px;}
.x1c{left:436.574986px;}
.x11{left:481.588684px;}
.x16{left:492.734986px;}
.x12{left:522.364062px;}
.x17{left:540.104986px;}
.x15{left:569.346529px;}
.x13{left:623.970840px;}
.x14{left:664.577133px;}
.x7{left:686.899275px;}
.x19{left:722.309986px;}
.x1b{left:749.309986px;}
.x1a{left:753.809986px;}
.x6{left:756.149986px;}
.x18{left:760.649986px;}
.x1e{left:850.469986px;}
@media print{
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:37.120000pt;}
.ls1a{letter-spacing:-7.306667pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.213567pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.044835pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.013838pt;}
.ls6{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.170133pt;}
.ls17{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls3{letter-spacing:39.786667pt;}
.ls11{letter-spacing:48.746667pt;}
.ls0{letter-spacing:48.896000pt;}
.ls10{letter-spacing:55.786667pt;}
.lsf{letter-spacing:55.936000pt;}
.ls14{letter-spacing:57.040640pt;}
.ls16{letter-spacing:743.951787pt;}
.ls1{letter-spacing:750.314667pt;}
.lse{letter-spacing:750.346667pt;}
.ls15{letter-spacing:754.799787pt;}
.ws0{word-spacing:-64.000000pt;}
.wsd{word-spacing:-53.120000pt;}
.ws10{word-spacing:-48.000000pt;}
.wsa{word-spacing:-20.627840pt;}
.wse{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.336000pt;}
.ws12{word-spacing:-14.272000pt;}
.ws15{word-spacing:-13.248000pt;}
.ws18{word-spacing:-13.184000pt;}
.ws17{word-spacing:-13.120000pt;}
.ws4{word-spacing:-13.056000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws5{word-spacing:-12.928000pt;}
.wsb{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.800000pt;}
.ws19{word-spacing:-12.608000pt;}
.ws6{word-spacing:-12.224000pt;}
.ws3{word-spacing:-12.096000pt;}
.ws11{word-spacing:-10.848000pt;}
.ws9{word-spacing:-10.338141pt;}
.ws8{word-spacing:-10.169409pt;}
.ws7{word-spacing:-7.705493pt;}
.ws13{word-spacing:-7.232000pt;}
.ws16{word-spacing:-5.685333pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-7.061547pt;}
._7{margin-left:-5.632000pt;}
._3{margin-left:-4.634240pt;}
._1{margin-left:-2.885760pt;}
._5{margin-left:-1.984000pt;}
._0{margin-left:-1.068800pt;}
._2{width:1.068800pt;}
._4{width:2.614613pt;}
._8{width:7.953067pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:45.942374pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.924077pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:3.044374pt;}
.y49{bottom:4.289800pt;}
.y6b{bottom:4.290377pt;}
.y67{bottom:4.290953pt;}
.y8a{bottom:4.427027pt;}
.y6e{bottom:4.428181pt;}
.y8d{bottom:4.455857pt;}
.y1a6{bottom:4.480000pt;}
.y62{bottom:5.672453pt;}
.y48{bottom:5.673606pt;}
.y6a{bottom:5.674183pt;}
.y66{bottom:5.674760pt;}
.y4f{bottom:5.696670pt;}
.y87{bottom:5.810834pt;}
.y6d{bottom:5.811987pt;}
.y8c{bottom:5.838510pt;}
.y19c{bottom:16.640000pt;}
.y45{bottom:17.159200pt;}
.y1a5{bottom:24.000000pt;}
.y19b{bottom:31.360000pt;}
.y1bb{bottom:43.520000pt;}
.y1a4{bottom:43.680000pt;}
.y19a{bottom:45.920000pt;}
.yc4{bottom:58.560000pt;}
.y1cc{bottom:63.040000pt;}
.y1ba{bottom:63.200000pt;}
.y1a3{bottom:63.226667pt;}
.y103{bottom:67.360000pt;}
.yf4{bottom:68.160000pt;}
.y15d{bottom:72.640000pt;}
.yc3{bottom:80.960000pt;}
.y1de{bottom:82.560000pt;}
.y1cb{bottom:82.720000pt;}
.y19e{bottom:82.746667pt;}
.yf3{bottom:86.560000pt;}
.y1b8{bottom:92.506667pt;}
.y15c{bottom:95.040000pt;}
.y1eb{bottom:95.200000pt;}
.y1dd{bottom:102.240000pt;}
.y1a2{bottom:102.266667pt;}
.yc2{bottom:104.480000pt;}
.y102{bottom:106.560000pt;}
.y1db{bottom:112.000000pt;}
.y1d9{bottom:114.720000pt;}
.y15b{bottom:118.560000pt;}
.y1a1{bottom:121.786667pt;}
.yf2{bottom:125.792000pt;}
.yc1{bottom:128.032000pt;}
.y1ea{bottom:128.512000pt;}
.y1c8{bottom:134.266667pt;}
.y1a0{bottom:141.306667pt;}
.y15a{bottom:142.106667pt;}
.y1d8{bottom:148.026667pt;}
.y101{bottom:150.266667pt;}
.y1e9{bottom:151.226667pt;}
.yc0{bottom:151.546667pt;}
.y1b3{bottom:153.786667pt;}
.y198{bottom:158.266667pt;}
.y19f{bottom:160.826667pt;}
.y159{bottom:165.786667pt;}
.y1c7{bottom:167.546667pt;}
.yf1{bottom:169.466667pt;}
.y1d7{bottom:170.746667pt;}
.y1e8{bottom:173.786667pt;}
.ybf{bottom:175.066667pt;}
.y40{bottom:176.506667pt;}
.y1b9{bottom:180.346667pt;}
.ye6{bottom:180.666667pt;}
.y41{bottom:185.466667pt;}
.y42{bottom:186.531450pt;}
.y1b2{bottom:187.066667pt;}
.y90{bottom:187.084926pt;}
.y158{bottom:188.186667pt;}
.y1c6{bottom:190.266667pt;}
.y197{bottom:191.546667pt;}
.y69{bottom:193.035294pt;}
.y1d6{bottom:193.306667pt;}
.y1e7{bottom:196.346667pt;}
.ybe{bottom:198.586667pt;}
.y3f{bottom:198.906667pt;}
.y1ca{bottom:199.866667pt;}
.y8f{bottom:204.383083pt;}
.y1b1{bottom:209.786667pt;}
.y68{bottom:210.332298pt;}
.y157{bottom:211.706667pt;}
.y1c5{bottom:212.826667pt;}
.y196{bottom:214.266667pt;}
.y1d5{bottom:215.866667pt;}
.ye5{bottom:217.786667pt;}
.y1e6{bottom:219.066667pt;}
.y1dc{bottom:219.386667pt;}
.y8e{bottom:221.680664pt;}
.ybd{bottom:222.106667pt;}
.y3e{bottom:222.426667pt;}
.y65{bottom:227.629879pt;}
.y1b0{bottom:232.346667pt;}
.y156{bottom:234.106667pt;}
.y1c4{bottom:235.386667pt;}
.ye4{bottom:236.186667pt;}
.y195{bottom:236.826667pt;}
.y1d4{bottom:238.586667pt;}
.y8b{bottom:238.978245pt;}
.y139{bottom:240.346667pt;}
.y1e5{bottom:241.626667pt;}
.y64{bottom:244.956289pt;}
.ybc{bottom:245.626667pt;}
.y3d{bottom:245.946667pt;}
.ye3{bottom:254.586667pt;}
.y1af{bottom:255.066667pt;}
.y178{bottom:255.546667pt;}
.y89{bottom:256.303501pt;}
.y155{bottom:257.626667pt;}
.y1c3{bottom:258.106667pt;}
.y138{bottom:258.746667pt;}
.y194{bottom:259.546667pt;}
.y1d3{bottom:261.146667pt;}
.y63{bottom:262.253869pt;}
.y1e4{bottom:264.346667pt;}
.y13b{bottom:264.826667pt;}
.ybb{bottom:269.146667pt;}
.y3c{bottom:269.466667pt;}
.ye2{bottom:272.986667pt;}
.y88{bottom:273.601082pt;}
.y137{bottom:277.146667pt;}
.y1ae{bottom:277.626667pt;}
.y177{bottom:277.946667pt;}
.y61{bottom:279.551450pt;}
.y1c2{bottom:280.666667pt;}
.y154{bottom:281.146667pt;}
.y193{bottom:282.106667pt;}
.y1d2{bottom:283.866667pt;}
.y1d{bottom:284.666667pt;}
.y105{bottom:285.146667pt;}
.y1e3{bottom:286.906667pt;}
.y86{bottom:290.898663pt;}
.ye1{bottom:291.386667pt;}
.yba{bottom:291.546667pt;}
.y3b{bottom:292.986667pt;}
.y136{bottom:295.546667pt;}
.y60{bottom:296.849030pt;}
.y1ad{bottom:300.186667pt;}
.y176{bottom:301.626667pt;}
.y13a{bottom:301.786667pt;}
.y124{bottom:302.266667pt;}
.y1c1{bottom:303.386667pt;}
.y153{bottom:304.666667pt;}
.y1d1{bottom:306.426667pt;}
.y85{bottom:308.196243pt;}
.y1e2{bottom:309.466667pt;}
.ye0{bottom:309.786667pt;}
.y135{bottom:313.946667pt;}
.y5f{bottom:314.146611pt;}
.yb9{bottom:315.066667pt;}
.y3a{bottom:316.506667pt;}
.y1c{bottom:317.146667pt;}
.y1ac{bottom:322.906667pt;}
.y175{bottom:324.026667pt;}
.y84{bottom:325.493824pt;}
.y1c0{bottom:325.946667pt;}
.y152{bottom:327.226667pt;}
.y192{bottom:327.386667pt;}
.ydf{bottom:328.186667pt;}
.y1d0{bottom:328.986667pt;}
.y5e{bottom:331.444192pt;}
.y1e1{bottom:332.226667pt;}
.y134{bottom:332.386667pt;}
.yb8{bottom:337.506667pt;}
.y199{bottom:338.146667pt;}
.y39{bottom:339.106667pt;}
.y1b{bottom:339.586667pt;}
.y123{bottom:340.546667pt;}
.y83{bottom:342.791404pt;}
.y1ab{bottom:345.506667pt;}
.yde{bottom:346.626667pt;}
.y174{bottom:347.586667pt;}
.y1bf{bottom:348.546667pt;}
.y5d{bottom:348.741772pt;}
.y151{bottom:349.666667pt;}
.y107{bottom:349.986667pt;}
.y1cf{bottom:351.746667pt;}
.y122{bottom:360.066667pt;}
.y82{bottom:360.112048pt;}
.yb7{bottom:361.186667pt;}
.y38{bottom:361.506667pt;}
.y1a{bottom:363.106667pt;}
.y160{bottom:364.866667pt;}
.ydd{bottom:365.026667pt;}
.y1e0{bottom:365.506667pt;}
.y5c{bottom:366.062416pt;}
.y1aa{bottom:368.226667pt;}
.y133{bottom:369.346667pt;}
.y173{bottom:371.106667pt;}
.y1be{bottom:371.266667pt;}
.y150{bottom:372.226667pt;}
.y191{bottom:372.706667pt;}
.y81{bottom:377.409629pt;}
.y121{bottom:379.586667pt;}
.y5b{bottom:383.359997pt;}
.ydc{bottom:383.426667pt;}
.yb6{bottom:383.586667pt;}
.y37{bottom:383.906667pt;}
.y1ce{bottom:385.026667pt;}
.y19{bottom:385.666667pt;}
.y91{bottom:385.891103pt;}
.y132{bottom:387.746667pt;}
.y1a9{bottom:390.786667pt;}
.y14f{bottom:394.626667pt;}
.y80{bottom:394.707210pt;}
.y190{bottom:395.266667pt;}
.y1df{bottom:398.786667pt;}
.y120{bottom:399.106667pt;}
.y5a{bottom:400.657577pt;}
.y1bd{bottom:404.546667pt;}
.y36{bottom:406.466667pt;}
.yb5{bottom:407.106667pt;}
.y18{bottom:409.186667pt;}
.y7f{bottom:412.004790pt;}
.y15f{bottom:413.186667pt;}
.y14e{bottom:417.026667pt;}
.y18f{bottom:417.826667pt;}
.y59{bottom:417.955158pt;}
.y172{bottom:418.146667pt;}
.y1cd{bottom:418.306667pt;}
.y11f{bottom:418.626667pt;}
.y1da{bottom:418.786667pt;}
.ydb{bottom:422.626667pt;}
.y131{bottom:422.786667pt;}
.y1a8{bottom:424.066667pt;}
.y35{bottom:428.866667pt;}
.y7e{bottom:429.302371pt;}
.yb4{bottom:429.666667pt;}
.y17{bottom:432.706667pt;}
.y58{bottom:435.252739pt;}
.y1bc{bottom:437.826667pt;}
.y1c9{bottom:438.306667pt;}
.y14d{bottom:439.586667pt;}
.ye8{bottom:440.386667pt;}
.y171{bottom:440.546667pt;}
.y11e{bottom:441.506667pt;}
.y7d{bottom:446.599951pt;}
.y15e{bottom:451.906667pt;}
.yb3{bottom:452.066667pt;}
.y34{bottom:452.386667pt;}
.y57{bottom:452.550319pt;}
.yda{bottom:454.946667pt;}
.y16{bottom:456.226667pt;}
.y1a7{bottom:457.346667pt;}
.y11d{bottom:457.666667pt;}
.y1b7{bottom:457.826667pt;}
.y14c{bottom:461.986667pt;}
.y170{bottom:463.106667pt;}
.y7c{bottom:463.897532pt;}
.y1b6{bottom:465.346667pt;}
.y56{bottom:469.847900pt;}
.ye7{bottom:473.826667pt;}
.yb2{bottom:474.466667pt;}
.y33{bottom:474.786667pt;}
.y11c{bottom:477.186667pt;}
.y19d{bottom:477.346667pt;}
.yd9{bottom:478.466667pt;}
.y15{bottom:479.746667pt;}
.y7b{bottom:481.229708pt;}
.y14b{bottom:484.386667pt;}
.y16f{bottom:485.506667pt;}
.y18e{bottom:485.826667pt;}
.y55{bottom:487.180076pt;}
.y1b5{bottom:494.146667pt;}
.y11b{bottom:496.706667pt;}
.yb1{bottom:497.026667pt;}
.y32{bottom:498.306667pt;}
.y7a{bottom:498.527288pt;}
.yd8{bottom:500.866667pt;}
.y14{bottom:502.146667pt;}
.y54{bottom:504.477656pt;}
.y14a{bottom:508.066667pt;}
.y18d{bottom:508.386667pt;}
.y16e{bottom:509.026667pt;}
.y79{bottom:515.824869pt;}
.y11a{bottom:516.226667pt;}
.yb0{bottom:519.426667pt;}
.y31{bottom:520.866667pt;}
.y53{bottom:521.775237pt;}
.yfd{bottom:522.466667pt;}
.yd7{bottom:524.386667pt;}
.y13{bottom:524.546667pt;}
.y149{bottom:530.466667pt;}
.y100{bottom:530.626667pt;}
.y18c{bottom:530.946667pt;}
.y16d{bottom:532.546667pt;}
.y78{bottom:533.122450pt;}
.y52{bottom:539.072817pt;}
.yaf{bottom:542.013333pt;}
.y30{bottom:543.293333pt;}
.y43{bottom:547.438974pt;}
.y12{bottom:548.093333pt;}
.y77{bottom:550.420030pt;}
.y148{bottom:552.893333pt;}
.y18b{bottom:553.693333pt;}
.y119{bottom:554.493333pt;}
.y16c{bottom:555.133333pt;}
.yfc{bottom:555.933333pt;}
.y51{bottom:556.370398pt;}
.ya3{bottom:556.893333pt;}
.yae{bottom:564.413333pt;}
.y106{bottom:565.853333pt;}
.y2f{bottom:566.813333pt;}
.y76{bottom:567.717611pt;}
.yd6{bottom:570.493333pt;}
.y11{bottom:571.613333pt;}
.y50{bottom:573.667979pt;}
.y118{bottom:574.013333pt;}
.yff{bottom:574.333333pt;}
.y147{bottom:575.453333pt;}
.y18a{bottom:576.253333pt;}
.y16b{bottom:577.533333pt;}
.ya2{bottom:579.293333pt;}
.y75{bottom:585.015191pt;}
.yad{bottom:586.813333pt;}
.y2e{bottom:589.373333pt;}
.y4e{bottom:590.965559pt;}
.y117{bottom:593.533333pt;}
.yd5{bottom:594.013333pt;}
.y10{bottom:595.133333pt;}
.y146{bottom:597.853333pt;}
.y189{bottom:598.973333pt;}
.y16a{bottom:599.933333pt;}
.y74{bottom:602.335835pt;}
.ya1{bottom:602.973333pt;}
.y4d{bottom:608.286203pt;}
.yac{bottom:609.373333pt;}
.y2d{bottom:611.773333pt;}
.y116{bottom:613.053333pt;}
.yd4{bottom:617.533333pt;}
.yf{bottom:618.813333pt;}
.y73{bottom:619.633416pt;}
.y145{bottom:621.373333pt;}
.y188{bottom:621.533333pt;}
.y169{bottom:622.493333pt;}
.y4c{bottom:625.583784pt;}
.ya0{bottom:626.493333pt;}
.yab{bottom:631.773333pt;}
.y115{bottom:632.573333pt;}
.y2c{bottom:634.173333pt;}
.y72{bottom:636.930997pt;}
.yd3{bottom:641.053333pt;}
.ye{bottom:641.213333pt;}
.y4b{bottom:642.881364pt;}
.y144{bottom:643.773333pt;}
.y187{bottom:644.093333pt;}
.y168{bottom:644.893333pt;}
.y9f{bottom:650.013333pt;}
.y114{bottom:652.093333pt;}
.yaa{bottom:654.173333pt;}
.y71{bottom:654.228577pt;}
.y2b{bottom:656.573333pt;}
.y4a{bottom:660.178945pt;}
.yd{bottom:663.613333pt;}
.yd2{bottom:664.573333pt;}
.y143{bottom:666.333333pt;}
.y167{bottom:667.293333pt;}
.y70{bottom:671.526158pt;}
.y113{bottom:671.773333pt;}
.y9e{bottom:672.413333pt;}
.ya9{bottom:676.733333pt;}
.y186{bottom:677.373333pt;}
.y47{bottom:677.476526pt;}
.y2a{bottom:680.253333pt;}
.yc{bottom:687.133333pt;}
.y142{bottom:688.733333pt;}
.y6f{bottom:688.823738pt;}
.y166{bottom:689.853333pt;}
.y112{bottom:691.293333pt;}
.y44{bottom:694.774106pt;}
.y9d{bottom:694.813333pt;}
.ya8{bottom:699.133333pt;}
.y185{bottom:700.093333pt;}
.y29{bottom:702.653333pt;}
.y6c{bottom:706.121319pt;}
.yd1{bottom:709.533333pt;}
.yb{bottom:710.653333pt;}
.y111{bottom:710.813333pt;}
.y141{bottom:711.293333pt;}
.y165{bottom:712.253333pt;}
.y9c{bottom:718.333333pt;}
.ya7{bottom:721.693333pt;}
.y184{bottom:722.653333pt;}
.y28{bottom:725.213333pt;}
.y110{bottom:730.333333pt;}
.yd0{bottom:733.053333pt;}
.y140{bottom:733.693333pt;}
.ya{bottom:734.333333pt;}
.y164{bottom:735.773333pt;}
.y130{bottom:739.613333pt;}
.y9b{bottom:741.853333pt;}
.ya6{bottom:744.093333pt;}
.y183{bottom:745.373333pt;}
.y27{bottom:747.613333pt;}
.y10f{bottom:749.893333pt;}
.y13f{bottom:756.133333pt;}
.ycf{bottom:756.613333pt;}
.y9{bottom:756.773333pt;}
.y1b4{bottom:757.893333pt;}
.y163{bottom:758.373333pt;}
.y9a{bottom:765.573333pt;}
.ya5{bottom:766.533333pt;}
.y182{bottom:767.973333pt;}
.y26{bottom:770.053333pt;}
.yfe{bottom:777.893333pt;}
.y13e{bottom:778.533333pt;}
.y8{bottom:779.173333pt;}
.yce{bottom:780.133333pt;}
.y162{bottom:780.773333pt;}
.y99{bottom:787.973333pt;}
.y10e{bottom:788.133333pt;}
.ya4{bottom:789.093333pt;}
.y181{bottom:790.533333pt;}
.y25{bottom:793.573333pt;}
.yf0{bottom:796.613333pt;}
.y12f{bottom:797.413333pt;}
.y13d{bottom:802.053333pt;}
.y7{bottom:802.693333pt;}
.y161{bottom:803.173333pt;}
.ycd{bottom:803.653333pt;}
.y10d{bottom:807.653333pt;}
.y98{bottom:811.493333pt;}
.y180{bottom:813.253333pt;}
.yef{bottom:815.013333pt;}
.y24{bottom:816.133333pt;}
.y12e{bottom:816.933333pt;}
.y6{bottom:825.253333pt;}
.y13c{bottom:825.573333pt;}
.ycc{bottom:827.173333pt;}
.yee{bottom:833.413333pt;}
.y97{bottom:834.053333pt;}
.y17f{bottom:835.813333pt;}
.y12d{bottom:836.453333pt;}
.y10c{bottom:846.693333pt;}
.y5{bottom:847.653333pt;}
.y23{bottom:849.253333pt;}
.ycb{bottom:850.693333pt;}
.yed{bottom:851.813333pt;}
.y12c{bottom:856.133333pt;}
.y96{bottom:856.453333pt;}
.y17e{bottom:858.533333pt;}
.y104{bottom:864.293333pt;}
.y10b{bottom:866.213333pt;}
.y4{bottom:870.213333pt;}
.y22{bottom:871.653333pt;}
.yca{bottom:874.213333pt;}
.y12b{bottom:875.653333pt;}
.y95{bottom:878.853333pt;}
.y17d{bottom:881.093333pt;}
.yfb{bottom:882.693333pt;}
.y10a{bottom:885.733333pt;}
.yec{bottom:888.613333pt;}
.y3{bottom:892.613333pt;}
.y21{bottom:894.213333pt;}
.y12a{bottom:895.173333pt;}
.yc9{bottom:897.733333pt;}
.yfa{bottom:901.093333pt;}
.y109{bottom:905.253333pt;}
.yeb{bottom:907.013333pt;}
.y94{bottom:912.133333pt;}
.y17c{bottom:914.373333pt;}
.y129{bottom:914.693333pt;}
.y20{bottom:916.613333pt;}
.yf9{bottom:919.493333pt;}
.yc8{bottom:921.253333pt;}
.yea{bottom:925.413333pt;}
.y2{bottom:925.893333pt;}
.y128{bottom:934.213333pt;}
.y17b{bottom:937.093333pt;}
.yf8{bottom:937.893333pt;}
.y108{bottom:943.493333pt;}
.ye9{bottom:943.813333pt;}
.yc7{bottom:944.773333pt;}
.y93{bottom:945.253333pt;}
.y1f{bottom:949.893333pt;}
.y127{bottom:953.733333pt;}
.yf7{bottom:956.293333pt;}
.y1{bottom:959.040000pt;}
.y17a{bottom:959.680000pt;}
.yc6{bottom:968.320000pt;}
.y126{bottom:973.280000pt;}
.yf6{bottom:974.720000pt;}
.y92{bottom:982.880000pt;}
.y1e{bottom:983.040000pt;}
.yc5{bottom:991.840000pt;}
.y125{bottom:992.800000pt;}
.y179{bottom:992.960000pt;}
.yf5{bottom:993.120000pt;}
.h9{height:16.744058pt;}
.hb{height:16.771734pt;}
.h7{height:28.118947pt;}
.h15{height:41.484375pt;}
.he{height:44.687500pt;}
.hd{height:45.156250pt;}
.ha{height:45.695613pt;}
.h8{height:47.041581pt;}
.h13{height:50.216250pt;}
.h6{height:50.650559pt;}
.h2{height:55.468750pt;}
.h3{height:55.562500pt;}
.h14{height:57.280000pt;}
.hf{height:58.563750pt;}
.h12{height:63.656250pt;}
.h11{height:65.531250pt;}
.hc{height:75.410937pt;}
.h1{height:92.371875pt;}
.h4{height:92.432500pt;}
.h10{height:109.437187pt;}
.h16{height:175.866667pt;}
.h17{height:195.386667pt;}
.h18{height:214.906667pt;}
.h19{height:234.426667pt;}
.h5{height:821.468550pt;}
.h0{height:1056.000000pt;}
.w3{width:35.516416pt;}
.w6{width:35.544163pt;}
.wa{width:47.392000pt;}
.w8{width:74.778704pt;}
.w4{width:74.806451pt;}
.w7{width:74.917440pt;}
.w5{width:74.945187pt;}
.w9{width:327.586667pt;}
.wb{width:608.733333pt;}
.w2{width:624.000000pt;}
.wc{width:678.813333pt;}
.wd{width:684.733333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:4.960000pt;}
.x8{left:5.965648pt;}
.xb{left:24.167811pt;}
.xe{left:27.226940pt;}
.xa{left:28.884835pt;}
.x1{left:47.999988pt;}
.x2{left:71.999988pt;}
.x9{left:84.765037pt;}
.x3{left:96.031988pt;}
.x4{left:120.031988pt;}
.x5{left:144.026655pt;}
.xc{left:175.105296pt;}
.xd{left:211.176656pt;}
.xf{left:301.667212pt;}
.x10{left:337.761694pt;}
.x1c{left:388.066655pt;}
.x11{left:428.078830pt;}
.x16{left:437.986655pt;}
.x12{left:464.323610pt;}
.x17{left:480.093321pt;}
.x15{left:506.085803pt;}
.x13{left:554.640746pt;}
.x14{left:590.735229pt;}
.x7{left:610.577133pt;}
.x19{left:642.053321pt;}
.x1b{left:666.053321pt;}
.x1a{left:670.053321pt;}
.x6{left:672.133321pt;}
.x18{left:676.133321pt;}
.x1e{left:755.973321pt;}
}




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