
    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_81ece3fc465f39e11bcd8b84.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_66230b8498ba82f95b8948c6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_e08176deb3ec16ad4032dcb9.woff')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_3b55547672182c80a59ae0c2.woff')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_2e32d0e7550b8708a38c3d58.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cd79efb98e42f0e276f68e08.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7ec6aa9efead607289f5fbc3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.877441;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_168c2286ad75aa6d74cc9178.woff')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_c3085e9ba18d3b8ad129a459.woff')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fdb5e6978446943fa60ed7b1.woff')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_97d46baad1dda24675a5dcdf.woff')format("woff");}.ffc{font-family:ffc;line-height:1.201172;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_d096ec690bba0b53e260a364.woff')format("woff");}.ffd{font-family:ffd;line-height:1.201172;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_e7017c5c64e7e063ed4cec6c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4ce66463f9c11249dc86c0db.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_173edf5583c797b97ab32f31.woff')format("woff");}.ff10{font-family:ff10;line-height:0.766602;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_35c4843ae269d1b285f56bf7.woff')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_fd187aacf1dd931e87202742.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ec7200b8b2a11e7736698e7a.woff')format("woff");}.ff13{font-family:ff13;line-height:1.055664;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_8c6de1edfbc66a5fda24474e.woff')format("woff");}.ff14{font-family:ff14;line-height:1.055664;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_3d641cbca7688d9236a0386a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.606000px;}
.ls1b{letter-spacing:-0.547200px;}
.ls10{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.291000px;}
.lse{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.231600px;}
.ls17{letter-spacing:-0.224400px;}
.ls9{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.102000px;}
.ls5{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.041760px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.031680px;}
.ls7{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.233400px;}
.ls22{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.666000px;}
.ls1e{letter-spacing:0.678240px;}
.ls12{letter-spacing:0.792000px;}
.ls0{letter-spacing:0.848880px;}
.ls11{letter-spacing:1.512000px;}
.ls19{letter-spacing:12.641760px;}
.lsb{letter-spacing:54.864000px;}
.lsc{letter-spacing:59.345280px;}
.ls23{letter-spacing:2872.224000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.wsb{word-spacing:-66.240000px;}
.ws18{word-spacing:-21.641760px;}
.ws8{word-spacing:-19.439280px;}
.ws16{word-spacing:-16.632000px;}
.ws10{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.200000px;}
.wsf{word-spacing:-16.128000px;}
.ws11{word-spacing:-15.624000px;}
.ws12{word-spacing:-15.408000px;}
.ws7{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.760000px;}
.ws4{word-spacing:-14.616000px;}
.ws5{word-spacing:-14.544000px;}
.wsd{word-spacing:-14.472000px;}
.wsc{word-spacing:-14.328000px;}
.ws15{word-spacing:-14.112720px;}
.wse{word-spacing:-13.619520px;}
.ws0{word-spacing:-13.446720px;}
.ws3{word-spacing:-13.354320px;}
.ws14{word-spacing:-12.636720px;}
.ws2{word-spacing:-12.131280px;}
.ws1{word-spacing:-11.899680px;}
.ws6{word-spacing:0.000000px;}
.ws17{word-spacing:151.703280px;}
._2d{margin-left:-297.386160px;}
._2e{margin-left:-295.749840px;}
._1d{margin-left:-9.800640px;}
._20{margin-left:-8.618400px;}
._1a{margin-left:-6.696000px;}
._8{margin-left:-5.314080px;}
._10{margin-left:-4.248000px;}
._2{margin-left:-3.121920px;}
._b{margin-left:-2.073600px;}
._0{margin-left:-1.054080px;}
._1{width:1.317600px;}
._6{width:2.824320px;}
._7{width:4.440000px;}
._4{width:5.544480px;}
._3{width:6.615360px;}
._5{width:7.756800px;}
._e{width:9.091200px;}
._f{width:10.296000px;}
._c{width:11.327040px;}
._d{width:12.350160px;}
._14{width:13.421520px;}
._24{width:14.508000px;}
._15{width:16.128000px;}
._18{width:17.424000px;}
._1e{width:19.414080px;}
._13{width:20.736000px;}
._12{width:21.816000px;}
._11{width:23.040000px;}
._16{width:24.091200px;}
._17{width:25.416000px;}
._19{width:26.928000px;}
._9{width:29.808000px;}
._a{width:30.981120px;}
._2c{width:32.418720px;}
._27{width:35.395200px;}
._26{width:36.980880px;}
._1b{width:38.520000px;}
._1c{width:39.756000px;}
._2a{width:45.832320px;}
._25{width:49.891680px;}
._1f{width:60.888000px;}
._22{width:66.201120px;}
._2b{width:68.071200px;}
._28{width:69.216480px;}
._21{width:71.228160px;}
._29{width:97.747200px;}
._23{width:101.468160px;}
.fc9{color:rgb(64,42,50);}
.fc7{color:rgb(255,176,46);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc6{color:rgb(70,120,134);}
.fc3{color:rgb(32,62,81);}
.fc1{color:rgb(14,40,65);}
.fc8{color:rgb(255,255,255);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs9{font-size:216.000000px;}
.y94{bottom:-17.280000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:13.680000px;}
.y93{bottom:15.120000px;}
.y14d{bottom:33.840000px;}
.y92{bottom:35.280000px;}
.y14c{bottom:54.045000px;}
.y2{bottom:57.600000px;}
.y14b{bottom:74.205000px;}
.y1{bottom:77.760000px;}
.y14a{bottom:94.365000px;}
.y149{bottom:114.525000px;}
.y148{bottom:134.685000px;}
.y16{bottom:136.260000px;}
.yaa{bottom:138.060000px;}
.yed{bottom:145.980000px;}
.y49{bottom:146.340000px;}
.y19f{bottom:148.320000px;}
.y1bb{bottom:150.840000px;}
.y10d{bottom:153.180000px;}
.y147{bottom:154.665000px;}
.y6e{bottom:155.340000px;}
.y17d{bottom:159.480000px;}
.y15{bottom:161.640000px;}
.ya9{bottom:163.440000px;}
.yc7{bottom:164.700000px;}
.y25{bottom:166.140000px;}
.y19e{bottom:173.520000px;}
.y146{bottom:174.825000px;}
.y91{bottom:175.860000px;}
.y48{bottom:177.300000px;}
.y143{bottom:179.640000px;}
.y122{bottom:181.440000px;}
.y17c{bottom:182.700000px;}
.ydf{bottom:182.880000px;}
.y14{bottom:187.020000px;}
.y1ba{bottom:188.280000px;}
.ya8{bottom:189.000000px;}
.y6d{bottom:189.360000px;}
.yc6{bottom:189.900000px;}
.y24{bottom:190.080000px;}
.y10c{bottom:190.620000px;}
.yec{bottom:190.800000px;}
.y145{bottom:194.985000px;}
.y19d{bottom:198.720000px;}
.y90{bottom:201.450000px;}
.y142{bottom:205.050000px;}
.y17b{bottom:205.770000px;}
.y121{bottom:207.030000px;}
.y47{bottom:208.290000px;}
.y13{bottom:212.610000px;}
.y23{bottom:214.050000px;}
.ya7{bottom:214.410000px;}
.y144{bottom:215.145000px;}
.yc5{bottom:215.310000px;}
.y10b{bottom:216.030000px;}
.yde{bottom:220.350000px;}
.yeb{bottom:222.690000px;}
.y6c{bottom:223.410000px;}
.y19c{bottom:224.130000px;}
.y1b9{bottom:225.750000px;}
.y17a{bottom:228.990000px;}
.y141{bottom:230.610000px;}
.y120{bottom:232.410000px;}
.y12{bottom:237.990000px;}
.y8f{bottom:238.890000px;}
.y46{bottom:239.250000px;}
.ya6{bottom:239.970000px;}
.y10a{bottom:241.590000px;}
.y19b{bottom:249.330000px;}
.y179{bottom:252.210000px;}
.yc4{bottom:252.750000px;}
.y140{bottom:255.990000px;}
.y168{bottom:256.350000px;}
.y6b{bottom:257.250000px;}
.ydd{bottom:257.790000px;}
.y22{bottom:260.490000px;}
.y45{bottom:261.030000px;}
.y1b8{bottom:263.190000px;}
.y11{bottom:263.550000px;}
.y8e{bottom:264.270000px;}
.ya5{bottom:265.350000px;}
.y109{bottom:266.970000px;}
.y19a{bottom:274.530000px;}
.y178{bottom:275.250000px;}
.yc3{bottom:278.130000px;}
.y13f{bottom:281.550000px;}
.y167{bottom:281.730000px;}
.y11f{bottom:283.350000px;}
.y21{bottom:284.430000px;}
.y44{bottom:284.970000px;}
.y10{bottom:288.930000px;}
.y8d{bottom:289.650000px;}
.ya4{bottom:290.730000px;}
.ydc{bottom:295.230000px;}
.y177{bottom:298.470000px;}
.y6a{bottom:299.370000px;}
.y199{bottom:299.910000px;}
.y1b7{bottom:300.630000px;}
.y108{bottom:304.410000px;}
.y166{bottom:306.930000px;}
.y20{bottom:308.370000px;}
.y11e{bottom:308.730000px;}
.y43{bottom:308.910000px;}
.y8c{bottom:315.210000px;}
.ya3{bottom:316.290000px;}
.ydb{bottom:316.830000px;}
.yc2{bottom:321.510000px;}
.y176{bottom:321.690000px;}
.y69{bottom:322.590000px;}
.yf{bottom:323.310000px;}
.y13e{bottom:324.930000px;}
.y107{bottom:329.970000px;}
.y165{bottom:332.130000px;}
.yda{bottom:336.990000px;}
.y1b6{bottom:338.070000px;}
.y8b{bottom:340.590000px;}
.ya2{bottom:341.670000px;}
.y198{bottom:343.110000px;}
.y68{bottom:344.550000px;}
.yc1{bottom:347.070000px;}
.y1f{bottom:348.690000px;}
.ye{bottom:348.870000px;}
.y13d{bottom:350.310000px;}
.y11d{bottom:352.290000px;}
.y42{bottom:355.350000px;}
.yd9{bottom:357.150000px;}
.y164{bottom:357.510000px;}
.y175{bottom:363.270000px;}
.ya1{bottom:367.230000px;}
.y67{bottom:367.770000px;}
.y197{bottom:368.490000px;}
.yc0{bottom:372.450000px;}
.yd{bottom:374.250000px;}
.y1b5{bottom:375.510000px;}
.y13c{bottom:375.870000px;}
.yd8{bottom:377.310000px;}
.y11c{bottom:377.670000px;}
.y8a{bottom:378.030000px;}
.y41{bottom:379.290000px;}
.y163{bottom:382.710000px;}
.y66{bottom:390.810000px;}
.y1e{bottom:391.710000px;}
.ya0{bottom:392.610000px;}
.y106{bottom:392.790000px;}
.y196{bottom:393.690000px;}
.yd7{bottom:397.290000px;}
.yc{bottom:399.810000px;}
.y13b{bottom:401.250000px;}
.y11b{bottom:403.050000px;}
.y40{bottom:403.230000px;}
.y89{bottom:403.590000px;}
.y162{bottom:408.090000px;}
.y1b4{bottom:412.950000px;}
.y65{bottom:414.030000px;}
.ybf{bottom:416.010000px;}
.y9f{bottom:417.450000px;}
.y105{bottom:418.170000px;}
.y195{bottom:418.890000px;}
.yb{bottom:425.190000px;}
.y13a{bottom:426.810000px;}
.y11a{bottom:428.610000px;}
.y88{bottom:428.970000px;}
.y1d{bottom:431.670000px;}
.y161{bottom:433.290000px;}
.y64{bottom:437.250000px;}
.y9e{bottom:437.610000px;}
.ybe{bottom:441.435000px;}
.y104{bottom:443.775000px;}
.y3f{bottom:449.715000px;}
.y1b3{bottom:450.435000px;}
.ya{bottom:450.615000px;}
.y139{bottom:452.235000px;}
.y119{bottom:454.035000px;}
.y87{bottom:454.395000px;}
.y1c{bottom:457.095000px;}
.y9d{bottom:457.815000px;}
.y160{bottom:458.535000px;}
.y63{bottom:460.515000px;}
.y194{bottom:462.315000px;}
.ybd{bottom:466.815000px;}
.y103{bottom:469.155000px;}
.y3e{bottom:473.655000px;}
.y138{bottom:477.615000px;}
.y9c{bottom:477.795000px;}
.y118{bottom:479.595000px;}
.y15f{bottom:483.915000px;}
.y9{bottom:487.335000px;}
.y193{bottom:487.515000px;}
.y1b2{bottom:487.875000px;}
.y1b{bottom:491.655000px;}
.y86{bottom:491.835000px;}
.yd6{bottom:493.815000px;}
.y102{bottom:494.715000px;}
.y62{bottom:495.615000px;}
.y3d{bottom:497.595000px;}
.y9b{bottom:497.955000px;}
.y137{bottom:503.175000px;}
.ybc{bottom:504.255000px;}
.y117{bottom:504.975000px;}
.y8{bottom:507.495000px;}
.y15e{bottom:509.115000px;}
.y192{bottom:512.895000px;}
.y85{bottom:517.395000px;}
.yd5{bottom:519.015000px;}
.y101{bottom:520.095000px;}
.y3c{bottom:521.535000px;}
.y7{bottom:527.655000px;}
.y1a{bottom:528.195000px;}
.y136{bottom:528.555000px;}
.y9a{bottom:529.095000px;}
.y61{bottom:529.455000px;}
.ybb{bottom:529.815000px;}
.y1b1{bottom:533.415000px;}
.y15d{bottom:534.495000px;}
.y191{bottom:538.095000px;}
.y84{bottom:542.775000px;}
.yd4{bottom:544.395000px;}
.y3b{bottom:545.475000px;}
.y19{bottom:548.355000px;}
.y60{bottom:552.675000px;}
.y135{bottom:554.115000px;}
.yba{bottom:555.195000px;}
.y6{bottom:558.075000px;}
.y1b0{bottom:558.795000px;}
.y190{bottom:563.295000px;}
.y83{bottom:568.335000px;}
.y18{bottom:568.515000px;}
.y3a{bottom:569.415000px;}
.yd3{bottom:569.595000px;}
.y116{bottom:573.915000px;}
.y5f{bottom:575.895000px;}
.y15c{bottom:577.695000px;}
.y134{bottom:579.495000px;}
.y100{bottom:582.915000px;}
.y1af{bottom:583.995000px;}
.y18f{bottom:588.675000px;}
.yb9{bottom:592.635000px;}
.y17{bottom:592.815000px;}
.y39{bottom:593.355000px;}
.y82{bottom:593.715000px;}
.yd2{bottom:594.975000px;}
.y5e{bottom:599.115000px;}
.y115{bottom:599.295000px;}
.y15b{bottom:602.895000px;}
.y133{bottom:604.875000px;}
.yff{bottom:608.475000px;}
.y1ae{bottom:609.195000px;}
.y18e{bottom:613.875000px;}
.y38{bottom:617.295000px;}
.yb8{bottom:618.195000px;}
.y81{bottom:619.095000px;}
.yd1{bottom:620.175000px;}
.y5d{bottom:622.335000px;}
.y114{bottom:624.855000px;}
.y15a{bottom:628.275000px;}
.yfe{bottom:633.855000px;}
.y1ad{bottom:634.575000px;}
.y18d{bottom:639.075000px;}
.yb7{bottom:643.575000px;}
.y80{bottom:644.655000px;}
.y5c{bottom:645.375000px;}
.y132{bottom:648.435000px;}
.y113{bottom:650.235000px;}
.y159{bottom:653.475000px;}
.yd0{bottom:657.615000px;}
.yfd{bottom:659.415000px;}
.y1ac{bottom:659.775000px;}
.y37{bottom:663.735000px;}
.y18c{bottom:664.455000px;}
.y5b{bottom:668.595000px;}
.yb6{bottom:669.135000px;}
.y7f{bottom:670.035000px;}
.y131{bottom:673.815000px;}
.y112{bottom:675.615000px;}
.y158{bottom:678.705000px;}
.ycf{bottom:683.025000px;}
.yfc{bottom:684.825000px;}
.y36{bottom:687.705000px;}
.y18b{bottom:689.685000px;}
.y5a{bottom:691.845000px;}
.yb5{bottom:694.545000px;}
.y7e{bottom:695.625000px;}
.y130{bottom:700.665000px;}
.y111{bottom:701.025000px;}
.y1ab{bottom:703.185000px;}
.y157{bottom:704.085000px;}
.yce{bottom:708.585000px;}
.yfb{bottom:710.205000px;}
.y35{bottom:711.645000px;}
.y59{bottom:714.885000px;}
.y18a{bottom:715.065000px;}
.y7d{bottom:721.005000px;}
.yea{bottom:724.785000px;}
.y156{bottom:729.285000px;}
.y12f{bottom:730.365000px;}
.yb4{bottom:731.985000px;}
.ycd{bottom:733.245000px;}
.y34{bottom:735.585000px;}
.yfa{bottom:735.765000px;}
.y58{bottom:738.105000px;}
.y189{bottom:740.265000px;}
.y110{bottom:740.985000px;}
.y174{bottom:745.305000px;}
.y7c{bottom:746.385000px;}
.ycc{bottom:753.405000px;}
.y155{bottom:754.665000px;}
.yb3{bottom:757.365000px;}
.y12e{bottom:758.625000px;}
.y33{bottom:759.525000px;}
.ye9{bottom:760.065000px;}
.y10f{bottom:761.145000px;}
.y188{bottom:765.465000px;}
.y1aa{bottom:771.585000px;}
.y7b{bottom:771.945000px;}
.yf9{bottom:773.205000px;}
.y57{bottom:773.385000px;}
.ycb{bottom:773.565000px;}
.y10e{bottom:779.685000px;}
.y154{bottom:779.865000px;}
.yb2{bottom:782.925000px;}
.y32{bottom:783.465000px;}
.y12d{bottom:784.185000px;}
.y173{bottom:785.985000px;}
.ye8{bottom:795.345000px;}
.y1a9{bottom:796.965000px;}
.y7a{bottom:797.325000px;}
.yf8{bottom:798.585000px;}
.yca{bottom:804.525000px;}
.y56{bottom:807.225000px;}
.y31{bottom:807.405000px;}
.yb1{bottom:808.305000px;}
.y187{bottom:808.845000px;}
.y12c{bottom:809.565000px;}
.y1a8{bottom:822.165000px;}
.yf7{bottom:824.145000px;}
.y153{bottom:825.765000px;}
.ye7{bottom:827.565000px;}
.y172{bottom:829.365000px;}
.y55{bottom:830.445000px;}
.yb0{bottom:833.865000px;}
.y186{bottom:834.045000px;}
.y79{bottom:834.765000px;}
.y12b{bottom:835.125000px;}
.y1a7{bottom:847.365000px;}
.ye6{bottom:847.725000px;}
.yf6{bottom:849.525000px;}
.y54{bottom:853.665000px;}
.y30{bottom:853.845000px;}
.yaf{bottom:859.245000px;}
.y78{bottom:860.325000px;}
.y12a{bottom:860.505000px;}
.ye5{bottom:867.885000px;}
.y171{bottom:872.565000px;}
.yf5{bottom:875.085000px;}
.y53{bottom:876.705000px;}
.y152{bottom:877.425000px;}
.y2f{bottom:877.785000px;}
.y185{bottom:884.625000px;}
.y77{bottom:885.705000px;}
.ye4{bottom:887.865000px;}
.y1a6{bottom:890.745000px;}
.y52{bottom:898.665000px;}
.yf4{bottom:900.465000px;}
.y2e{bottom:901.725000px;}
.yae{bottom:902.625000px;}
.y129{bottom:903.885000px;}
.ye3{bottom:908.025000px;}
.y76{bottom:911.265000px;}
.y170{bottom:915.990000px;}
.y51{bottom:921.930000px;}
.y2d{bottom:925.710000px;}
.yf3{bottom:925.890000px;}
.y151{bottom:926.610000px;}
.y184{bottom:927.870000px;}
.yad{bottom:928.230000px;}
.y128{bottom:929.490000px;}
.yc9{bottom:935.070000px;}
.y75{bottom:936.690000px;}
.y1a5{bottom:941.370000px;}
.y50{bottom:945.150000px;}
.ye2{bottom:948.390000px;}
.y2c{bottom:949.650000px;}
.y183{bottom:953.250000px;}
.yac{bottom:953.610000px;}
.y127{bottom:954.870000px;}
.y16f{bottom:955.410000px;}
.yc8{bottom:960.990000px;}
.y74{bottom:962.070000px;}
.yf2{bottom:963.330000px;}
.y1a4{bottom:966.570000px;}
.y4f{bottom:968.370000px;}
.ye1{bottom:968.550000px;}
.y150{bottom:969.810000px;}
.y2b{bottom:973.590000px;}
.y16e{bottom:975.570000px;}
.y182{bottom:978.450000px;}
.y99{bottom:979.170000px;}
.y73{bottom:987.630000px;}
.yf1{bottom:988.890000px;}
.y1a3{bottom:991.770000px;}
.y16d{bottom:995.730000px;}
.y2a{bottom:997.530000px;}
.y126{bottom:998.430000px;}
.y4e{bottom:1003.470000px;}
.y181{bottom:1003.650000px;}
.y98{bottom:1004.550000px;}
.y16c{bottom:1015.890000px;}
.y1a2{bottom:1017.150000px;}
.y29{bottom:1021.470000px;}
.y125{bottom:1023.810000px;}
.y72{bottom:1025.070000px;}
.y14f{bottom:1025.970000px;}
.y5{bottom:1028.310000px;}
.yf0{bottom:1029.030000px;}
.y97{bottom:1029.930000px;}
.y4d{bottom:1034.430000px;}
.y16b{bottom:1036.050000px;}
.ye0{bottom:1041.990000px;}
.y1a1{bottom:1042.350000px;}
.y28{bottom:1045.410000px;}
.y124{bottom:1049.190000px;}
.y71{bottom:1050.450000px;}
.y180{bottom:1054.230000px;}
.y96{bottom:1055.490000px;}
.y16a{bottom:1056.210000px;}
.y4{bottom:1062.690000px;}
.y4c{bottom:1065.390000px;}
.yab{bottom:1067.370000px;}
.y1a0{bottom:1067.550000px;}
.yef{bottom:1074.930000px;}
.y169{bottom:1076.370000px;}
.y70{bottom:1078.530000px;}
.y17f{bottom:1079.610000px;}
.y4b{bottom:1087.350000px;}
.y27{bottom:1091.850000px;}
.y123{bottom:1092.750000px;}
.y95{bottom:1092.930000px;}
.y3{bottom:1104.270000px;}
.y6f{bottom:1112.370000px;}
.y26{bottom:1115.790000px;}
.yee{bottom:1118.130000px;}
.y4a{bottom:1118.310000px;}
.y17e{bottom:1120.650000px;}
.h10{height:46.669922px;}
.h19{height:46.696289px;}
.h18{height:50.585625px;}
.hf{height:50.760000px;}
.h5{height:57.248437px;}
.h2{height:57.604219px;}
.h9{height:62.261719px;}
.h8{height:62.296875px;}
.ha{height:62.402344px;}
.h4{height:62.613281px;}
.hc{height:68.084282px;}
.h11{height:71.613281px;}
.h13{height:73.129219px;}
.h16{height:73.722656px;}
.hb{height:74.004654px;}
.h6{height:82.995117px;}
.h7{height:83.275664px;}
.h14{height:83.787539px;}
.h12{height:90.825820px;}
.he{height:95.245664px;}
.hd{height:98.051133px;}
.h3{height:114.196289px;}
.h17{height:182.566406px;}
.h15{height:230.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:181.110000px;}
.w3{width:383.835000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.995987px;}
.xb{left:96.516000px;}
.x7{left:111.995987px;}
.x8{left:138.995987px;}
.xd{left:148.175987px;}
.x10{left:166.169987px;}
.x6{left:182.729987px;}
.x15{left:185.069987px;}
.xe{left:187.949987px;}
.x14{left:216.209987px;}
.xf{left:246.809987px;}
.x3{left:257.114987px;}
.x1c{left:271.335000px;}
.x13{left:397.514987px;}
.x19{left:437.684987px;}
.x1{left:442.004987px;}
.x11{left:457.124987px;}
.x1b{left:464.864987px;}
.xa{left:494.924987px;}
.x9{left:499.424987px;}
.x17{left:506.624987px;}
.x16{left:593.564987px;}
.x1d{left:644.189987px;}
.x18{left:657.329987px;}
.x12{left:691.889987px;}
.xc{left:780.659987px;}
.x4{left:789.659987px;}
.x5{left:807.299987px;}
.x1a{left:817.559987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.538667pt;}
.ls1b{letter-spacing:-0.486400pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.258667pt;}
.lse{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.205867pt;}
.ls17{letter-spacing:-0.199467pt;}
.ls9{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.090667pt;}
.ls5{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.037120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.028160pt;}
.ls7{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.207467pt;}
.ls22{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls1e{letter-spacing:0.602880pt;}
.ls12{letter-spacing:0.704000pt;}
.ls0{letter-spacing:0.754560pt;}
.ls11{letter-spacing:1.344000pt;}
.ls19{letter-spacing:11.237120pt;}
.lsb{letter-spacing:48.768000pt;}
.lsc{letter-spacing:52.751360pt;}
.ls23{letter-spacing:2553.088000pt;}
.wsa{word-spacing:-64.000000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws18{word-spacing:-19.237120pt;}
.ws8{word-spacing:-17.279360pt;}
.ws16{word-spacing:-14.784000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.400000pt;}
.wsf{word-spacing:-14.336000pt;}
.ws11{word-spacing:-13.888000pt;}
.ws12{word-spacing:-13.696000pt;}
.ws7{word-spacing:-13.184000pt;}
.ws9{word-spacing:-13.120000pt;}
.ws4{word-spacing:-12.992000pt;}
.ws5{word-spacing:-12.928000pt;}
.wsd{word-spacing:-12.864000pt;}
.wsc{word-spacing:-12.736000pt;}
.ws15{word-spacing:-12.544640pt;}
.wse{word-spacing:-12.106240pt;}
.ws0{word-spacing:-11.952640pt;}
.ws3{word-spacing:-11.870507pt;}
.ws14{word-spacing:-11.232640pt;}
.ws2{word-spacing:-10.783360pt;}
.ws1{word-spacing:-10.577493pt;}
.ws6{word-spacing:0.000000pt;}
.ws17{word-spacing:134.847360pt;}
._2d{margin-left:-264.343253pt;}
._2e{margin-left:-262.888747pt;}
._1d{margin-left:-8.711680pt;}
._20{margin-left:-7.660800pt;}
._1a{margin-left:-5.952000pt;}
._8{margin-left:-4.723627pt;}
._10{margin-left:-3.776000pt;}
._2{margin-left:-2.775040pt;}
._b{margin-left:-1.843200pt;}
._0{margin-left:-0.936960pt;}
._1{width:1.171200pt;}
._6{width:2.510507pt;}
._7{width:3.946667pt;}
._4{width:4.928427pt;}
._3{width:5.880320pt;}
._5{width:6.894933pt;}
._e{width:8.081067pt;}
._f{width:9.152000pt;}
._c{width:10.068480pt;}
._d{width:10.977920pt;}
._14{width:11.930240pt;}
._24{width:12.896000pt;}
._15{width:14.336000pt;}
._18{width:15.488000pt;}
._1e{width:17.256960pt;}
._13{width:18.432000pt;}
._12{width:19.392000pt;}
._11{width:20.480000pt;}
._16{width:21.414400pt;}
._17{width:22.592000pt;}
._19{width:23.936000pt;}
._9{width:26.496000pt;}
._a{width:27.538773pt;}
._2c{width:28.816640pt;}
._27{width:31.462400pt;}
._26{width:32.871893pt;}
._1b{width:34.240000pt;}
._1c{width:35.338667pt;}
._2a{width:40.739840pt;}
._25{width:44.348160pt;}
._1f{width:54.122667pt;}
._22{width:58.845440pt;}
._2b{width:60.507733pt;}
._28{width:61.525760pt;}
._21{width:63.313920pt;}
._29{width:86.886400pt;}
._23{width:90.193920pt;}
.fsa{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs9{font-size:192.000000pt;}
.y94{bottom:-15.360000pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:12.160000pt;}
.y93{bottom:13.440000pt;}
.y14d{bottom:30.080000pt;}
.y92{bottom:31.360000pt;}
.y14c{bottom:48.040000pt;}
.y2{bottom:51.200000pt;}
.y14b{bottom:65.960000pt;}
.y1{bottom:69.120000pt;}
.y14a{bottom:83.880000pt;}
.y149{bottom:101.800000pt;}
.y148{bottom:119.720000pt;}
.y16{bottom:121.120000pt;}
.yaa{bottom:122.720000pt;}
.yed{bottom:129.760000pt;}
.y49{bottom:130.080000pt;}
.y19f{bottom:131.840000pt;}
.y1bb{bottom:134.080000pt;}
.y10d{bottom:136.160000pt;}
.y147{bottom:137.480000pt;}
.y6e{bottom:138.080000pt;}
.y17d{bottom:141.760000pt;}
.y15{bottom:143.680000pt;}
.ya9{bottom:145.280000pt;}
.yc7{bottom:146.400000pt;}
.y25{bottom:147.680000pt;}
.y19e{bottom:154.240000pt;}
.y146{bottom:155.400000pt;}
.y91{bottom:156.320000pt;}
.y48{bottom:157.600000pt;}
.y143{bottom:159.680000pt;}
.y122{bottom:161.280000pt;}
.y17c{bottom:162.400000pt;}
.ydf{bottom:162.560000pt;}
.y14{bottom:166.240000pt;}
.y1ba{bottom:167.360000pt;}
.ya8{bottom:168.000000pt;}
.y6d{bottom:168.320000pt;}
.yc6{bottom:168.800000pt;}
.y24{bottom:168.960000pt;}
.y10c{bottom:169.440000pt;}
.yec{bottom:169.600000pt;}
.y145{bottom:173.320000pt;}
.y19d{bottom:176.640000pt;}
.y90{bottom:179.066667pt;}
.y142{bottom:182.266667pt;}
.y17b{bottom:182.906667pt;}
.y121{bottom:184.026667pt;}
.y47{bottom:185.146667pt;}
.y13{bottom:188.986667pt;}
.y23{bottom:190.266667pt;}
.ya7{bottom:190.586667pt;}
.y144{bottom:191.240000pt;}
.yc5{bottom:191.386667pt;}
.y10b{bottom:192.026667pt;}
.yde{bottom:195.866667pt;}
.yeb{bottom:197.946667pt;}
.y6c{bottom:198.586667pt;}
.y19c{bottom:199.226667pt;}
.y1b9{bottom:200.666667pt;}
.y17a{bottom:203.546667pt;}
.y141{bottom:204.986667pt;}
.y120{bottom:206.586667pt;}
.y12{bottom:211.546667pt;}
.y8f{bottom:212.346667pt;}
.y46{bottom:212.666667pt;}
.ya6{bottom:213.306667pt;}
.y10a{bottom:214.746667pt;}
.y19b{bottom:221.626667pt;}
.y179{bottom:224.186667pt;}
.yc4{bottom:224.666667pt;}
.y140{bottom:227.546667pt;}
.y168{bottom:227.866667pt;}
.y6b{bottom:228.666667pt;}
.ydd{bottom:229.146667pt;}
.y22{bottom:231.546667pt;}
.y45{bottom:232.026667pt;}
.y1b8{bottom:233.946667pt;}
.y11{bottom:234.266667pt;}
.y8e{bottom:234.906667pt;}
.ya5{bottom:235.866667pt;}
.y109{bottom:237.306667pt;}
.y19a{bottom:244.026667pt;}
.y178{bottom:244.666667pt;}
.yc3{bottom:247.226667pt;}
.y13f{bottom:250.266667pt;}
.y167{bottom:250.426667pt;}
.y11f{bottom:251.866667pt;}
.y21{bottom:252.826667pt;}
.y44{bottom:253.306667pt;}
.y10{bottom:256.826667pt;}
.y8d{bottom:257.466667pt;}
.ya4{bottom:258.426667pt;}
.ydc{bottom:262.426667pt;}
.y177{bottom:265.306667pt;}
.y6a{bottom:266.106667pt;}
.y199{bottom:266.586667pt;}
.y1b7{bottom:267.226667pt;}
.y108{bottom:270.586667pt;}
.y166{bottom:272.826667pt;}
.y20{bottom:274.106667pt;}
.y11e{bottom:274.426667pt;}
.y43{bottom:274.586667pt;}
.y8c{bottom:280.186667pt;}
.ya3{bottom:281.146667pt;}
.ydb{bottom:281.626667pt;}
.yc2{bottom:285.786667pt;}
.y176{bottom:285.946667pt;}
.y69{bottom:286.746667pt;}
.yf{bottom:287.386667pt;}
.y13e{bottom:288.826667pt;}
.y107{bottom:293.306667pt;}
.y165{bottom:295.226667pt;}
.yda{bottom:299.546667pt;}
.y1b6{bottom:300.506667pt;}
.y8b{bottom:302.746667pt;}
.ya2{bottom:303.706667pt;}
.y198{bottom:304.986667pt;}
.y68{bottom:306.266667pt;}
.yc1{bottom:308.506667pt;}
.y1f{bottom:309.946667pt;}
.ye{bottom:310.106667pt;}
.y13d{bottom:311.386667pt;}
.y11d{bottom:313.146667pt;}
.y42{bottom:315.866667pt;}
.yd9{bottom:317.466667pt;}
.y164{bottom:317.786667pt;}
.y175{bottom:322.906667pt;}
.ya1{bottom:326.426667pt;}
.y67{bottom:326.906667pt;}
.y197{bottom:327.546667pt;}
.yc0{bottom:331.066667pt;}
.yd{bottom:332.666667pt;}
.y1b5{bottom:333.786667pt;}
.y13c{bottom:334.106667pt;}
.yd8{bottom:335.386667pt;}
.y11c{bottom:335.706667pt;}
.y8a{bottom:336.026667pt;}
.y41{bottom:337.146667pt;}
.y163{bottom:340.186667pt;}
.y66{bottom:347.386667pt;}
.y1e{bottom:348.186667pt;}
.ya0{bottom:348.986667pt;}
.y106{bottom:349.146667pt;}
.y196{bottom:349.946667pt;}
.yd7{bottom:353.146667pt;}
.yc{bottom:355.386667pt;}
.y13b{bottom:356.666667pt;}
.y11b{bottom:358.266667pt;}
.y40{bottom:358.426667pt;}
.y89{bottom:358.746667pt;}
.y162{bottom:362.746667pt;}
.y1b4{bottom:367.066667pt;}
.y65{bottom:368.026667pt;}
.ybf{bottom:369.786667pt;}
.y9f{bottom:371.066667pt;}
.y105{bottom:371.706667pt;}
.y195{bottom:372.346667pt;}
.yb{bottom:377.946667pt;}
.y13a{bottom:379.386667pt;}
.y11a{bottom:380.986667pt;}
.y88{bottom:381.306667pt;}
.y1d{bottom:383.706667pt;}
.y161{bottom:385.146667pt;}
.y64{bottom:388.666667pt;}
.y9e{bottom:388.986667pt;}
.ybe{bottom:392.386667pt;}
.y104{bottom:394.466667pt;}
.y3f{bottom:399.746667pt;}
.y1b3{bottom:400.386667pt;}
.ya{bottom:400.546667pt;}
.y139{bottom:401.986667pt;}
.y119{bottom:403.586667pt;}
.y87{bottom:403.906667pt;}
.y1c{bottom:406.306667pt;}
.y9d{bottom:406.946667pt;}
.y160{bottom:407.586667pt;}
.y63{bottom:409.346667pt;}
.y194{bottom:410.946667pt;}
.ybd{bottom:414.946667pt;}
.y103{bottom:417.026667pt;}
.y3e{bottom:421.026667pt;}
.y138{bottom:424.546667pt;}
.y9c{bottom:424.706667pt;}
.y118{bottom:426.306667pt;}
.y15f{bottom:430.146667pt;}
.y9{bottom:433.186667pt;}
.y193{bottom:433.346667pt;}
.y1b2{bottom:433.666667pt;}
.y1b{bottom:437.026667pt;}
.y86{bottom:437.186667pt;}
.yd6{bottom:438.946667pt;}
.y102{bottom:439.746667pt;}
.y62{bottom:440.546667pt;}
.y3d{bottom:442.306667pt;}
.y9b{bottom:442.626667pt;}
.y137{bottom:447.266667pt;}
.ybc{bottom:448.226667pt;}
.y117{bottom:448.866667pt;}
.y8{bottom:451.106667pt;}
.y15e{bottom:452.546667pt;}
.y192{bottom:455.906667pt;}
.y85{bottom:459.906667pt;}
.yd5{bottom:461.346667pt;}
.y101{bottom:462.306667pt;}
.y3c{bottom:463.586667pt;}
.y7{bottom:469.026667pt;}
.y1a{bottom:469.506667pt;}
.y136{bottom:469.826667pt;}
.y9a{bottom:470.306667pt;}
.y61{bottom:470.626667pt;}
.ybb{bottom:470.946667pt;}
.y1b1{bottom:474.146667pt;}
.y15d{bottom:475.106667pt;}
.y191{bottom:478.306667pt;}
.y84{bottom:482.466667pt;}
.yd4{bottom:483.906667pt;}
.y3b{bottom:484.866667pt;}
.y19{bottom:487.426667pt;}
.y60{bottom:491.266667pt;}
.y135{bottom:492.546667pt;}
.yba{bottom:493.506667pt;}
.y6{bottom:496.066667pt;}
.y1b0{bottom:496.706667pt;}
.y190{bottom:500.706667pt;}
.y83{bottom:505.186667pt;}
.y18{bottom:505.346667pt;}
.y3a{bottom:506.146667pt;}
.yd3{bottom:506.306667pt;}
.y116{bottom:510.146667pt;}
.y5f{bottom:511.906667pt;}
.y15c{bottom:513.506667pt;}
.y134{bottom:515.106667pt;}
.y100{bottom:518.146667pt;}
.y1af{bottom:519.106667pt;}
.y18f{bottom:523.266667pt;}
.yb9{bottom:526.786667pt;}
.y17{bottom:526.946667pt;}
.y39{bottom:527.426667pt;}
.y82{bottom:527.746667pt;}
.yd2{bottom:528.866667pt;}
.y5e{bottom:532.546667pt;}
.y115{bottom:532.706667pt;}
.y15b{bottom:535.906667pt;}
.y133{bottom:537.666667pt;}
.yff{bottom:540.866667pt;}
.y1ae{bottom:541.506667pt;}
.y18e{bottom:545.666667pt;}
.y38{bottom:548.706667pt;}
.yb8{bottom:549.506667pt;}
.y81{bottom:550.306667pt;}
.yd1{bottom:551.266667pt;}
.y5d{bottom:553.186667pt;}
.y114{bottom:555.426667pt;}
.y15a{bottom:558.466667pt;}
.yfe{bottom:563.426667pt;}
.y1ad{bottom:564.066667pt;}
.y18d{bottom:568.066667pt;}
.yb7{bottom:572.066667pt;}
.y80{bottom:573.026667pt;}
.y5c{bottom:573.666667pt;}
.y132{bottom:576.386667pt;}
.y113{bottom:577.986667pt;}
.y159{bottom:580.866667pt;}
.yd0{bottom:584.546667pt;}
.yfd{bottom:586.146667pt;}
.y1ac{bottom:586.466667pt;}
.y37{bottom:589.986667pt;}
.y18c{bottom:590.626667pt;}
.y5b{bottom:594.306667pt;}
.yb6{bottom:594.786667pt;}
.y7f{bottom:595.586667pt;}
.y131{bottom:598.946667pt;}
.y112{bottom:600.546667pt;}
.y158{bottom:603.293333pt;}
.ycf{bottom:607.133333pt;}
.yfc{bottom:608.733333pt;}
.y36{bottom:611.293333pt;}
.y18b{bottom:613.053333pt;}
.y5a{bottom:614.973333pt;}
.yb5{bottom:617.373333pt;}
.y7e{bottom:618.333333pt;}
.y130{bottom:622.813333pt;}
.y111{bottom:623.133333pt;}
.y1ab{bottom:625.053333pt;}
.y157{bottom:625.853333pt;}
.yce{bottom:629.853333pt;}
.yfb{bottom:631.293333pt;}
.y35{bottom:632.573333pt;}
.y59{bottom:635.453333pt;}
.y18a{bottom:635.613333pt;}
.y7d{bottom:640.893333pt;}
.yea{bottom:644.253333pt;}
.y156{bottom:648.253333pt;}
.y12f{bottom:649.213333pt;}
.yb4{bottom:650.653333pt;}
.ycd{bottom:651.773333pt;}
.y34{bottom:653.853333pt;}
.yfa{bottom:654.013333pt;}
.y58{bottom:656.093333pt;}
.y189{bottom:658.013333pt;}
.y110{bottom:658.653333pt;}
.y174{bottom:662.493333pt;}
.y7c{bottom:663.453333pt;}
.ycc{bottom:669.693333pt;}
.y155{bottom:670.813333pt;}
.yb3{bottom:673.213333pt;}
.y12e{bottom:674.333333pt;}
.y33{bottom:675.133333pt;}
.ye9{bottom:675.613333pt;}
.y10f{bottom:676.573333pt;}
.y188{bottom:680.413333pt;}
.y1aa{bottom:685.853333pt;}
.y7b{bottom:686.173333pt;}
.yf9{bottom:687.293333pt;}
.y57{bottom:687.453333pt;}
.ycb{bottom:687.613333pt;}
.y10e{bottom:693.053333pt;}
.y154{bottom:693.213333pt;}
.yb2{bottom:695.933333pt;}
.y32{bottom:696.413333pt;}
.y12d{bottom:697.053333pt;}
.y173{bottom:698.653333pt;}
.ye8{bottom:706.973333pt;}
.y1a9{bottom:708.413333pt;}
.y7a{bottom:708.733333pt;}
.yf8{bottom:709.853333pt;}
.yca{bottom:715.133333pt;}
.y56{bottom:717.533333pt;}
.y31{bottom:717.693333pt;}
.yb1{bottom:718.493333pt;}
.y187{bottom:718.973333pt;}
.y12c{bottom:719.613333pt;}
.y1a8{bottom:730.813333pt;}
.yf7{bottom:732.573333pt;}
.y153{bottom:734.013333pt;}
.ye7{bottom:735.613333pt;}
.y172{bottom:737.213333pt;}
.y55{bottom:738.173333pt;}
.yb0{bottom:741.213333pt;}
.y186{bottom:741.373333pt;}
.y79{bottom:742.013333pt;}
.y12b{bottom:742.333333pt;}
.y1a7{bottom:753.213333pt;}
.ye6{bottom:753.533333pt;}
.yf6{bottom:755.133333pt;}
.y54{bottom:758.813333pt;}
.y30{bottom:758.973333pt;}
.yaf{bottom:763.773333pt;}
.y78{bottom:764.733333pt;}
.y12a{bottom:764.893333pt;}
.ye5{bottom:771.453333pt;}
.y171{bottom:775.613333pt;}
.yf5{bottom:777.853333pt;}
.y53{bottom:779.293333pt;}
.y152{bottom:779.933333pt;}
.y2f{bottom:780.253333pt;}
.y185{bottom:786.333333pt;}
.y77{bottom:787.293333pt;}
.ye4{bottom:789.213333pt;}
.y1a6{bottom:791.773333pt;}
.y52{bottom:798.813333pt;}
.yf4{bottom:800.413333pt;}
.y2e{bottom:801.533333pt;}
.yae{bottom:802.333333pt;}
.y129{bottom:803.453333pt;}
.ye3{bottom:807.133333pt;}
.y76{bottom:810.013333pt;}
.y170{bottom:814.213333pt;}
.y51{bottom:819.493333pt;}
.y2d{bottom:822.853333pt;}
.yf3{bottom:823.013333pt;}
.y151{bottom:823.653333pt;}
.y184{bottom:824.773333pt;}
.yad{bottom:825.093333pt;}
.y128{bottom:826.213333pt;}
.yc9{bottom:831.173333pt;}
.y75{bottom:832.613333pt;}
.y1a5{bottom:836.773333pt;}
.y50{bottom:840.133333pt;}
.ye2{bottom:843.013333pt;}
.y2c{bottom:844.133333pt;}
.y183{bottom:847.333333pt;}
.yac{bottom:847.653333pt;}
.y127{bottom:848.773333pt;}
.y16f{bottom:849.253333pt;}
.yc8{bottom:854.213333pt;}
.y74{bottom:855.173333pt;}
.yf2{bottom:856.293333pt;}
.y1a4{bottom:859.173333pt;}
.y4f{bottom:860.773333pt;}
.ye1{bottom:860.933333pt;}
.y150{bottom:862.053333pt;}
.y2b{bottom:865.413333pt;}
.y16e{bottom:867.173333pt;}
.y182{bottom:869.733333pt;}
.y99{bottom:870.373333pt;}
.y73{bottom:877.893333pt;}
.yf1{bottom:879.013333pt;}
.y1a3{bottom:881.573333pt;}
.y16d{bottom:885.093333pt;}
.y2a{bottom:886.693333pt;}
.y126{bottom:887.493333pt;}
.y4e{bottom:891.973333pt;}
.y181{bottom:892.133333pt;}
.y98{bottom:892.933333pt;}
.y16c{bottom:903.013333pt;}
.y1a2{bottom:904.133333pt;}
.y29{bottom:907.973333pt;}
.y125{bottom:910.053333pt;}
.y72{bottom:911.173333pt;}
.y14f{bottom:911.973333pt;}
.y5{bottom:914.053333pt;}
.yf0{bottom:914.693333pt;}
.y97{bottom:915.493333pt;}
.y4d{bottom:919.493333pt;}
.y16b{bottom:920.933333pt;}
.ye0{bottom:926.213333pt;}
.y1a1{bottom:926.533333pt;}
.y28{bottom:929.253333pt;}
.y124{bottom:932.613333pt;}
.y71{bottom:933.733333pt;}
.y180{bottom:937.093333pt;}
.y96{bottom:938.213333pt;}
.y16a{bottom:938.853333pt;}
.y4{bottom:944.613333pt;}
.y4c{bottom:947.013333pt;}
.yab{bottom:948.773333pt;}
.y1a0{bottom:948.933333pt;}
.yef{bottom:955.493333pt;}
.y169{bottom:956.773333pt;}
.y70{bottom:958.693333pt;}
.y17f{bottom:959.653333pt;}
.y4b{bottom:966.533333pt;}
.y27{bottom:970.533333pt;}
.y123{bottom:971.333333pt;}
.y95{bottom:971.493333pt;}
.y3{bottom:981.573333pt;}
.y6f{bottom:988.773333pt;}
.y26{bottom:991.813333pt;}
.yee{bottom:993.893333pt;}
.y4a{bottom:994.053333pt;}
.y17e{bottom:996.133333pt;}
.h10{height:41.484375pt;}
.h19{height:41.507812pt;}
.h18{height:44.965000pt;}
.hf{height:45.120000pt;}
.h5{height:50.887500pt;}
.h2{height:51.203750pt;}
.h9{height:55.343750pt;}
.h8{height:55.375000pt;}
.ha{height:55.468750pt;}
.h4{height:55.656250pt;}
.hc{height:60.519362pt;}
.h11{height:63.656250pt;}
.h13{height:65.003750pt;}
.h16{height:65.531250pt;}
.hb{height:65.781915pt;}
.h6{height:73.773438pt;}
.h7{height:74.022813pt;}
.h14{height:74.477812pt;}
.h12{height:80.734062pt;}
.he{height:84.662813pt;}
.hd{height:87.156562pt;}
.h3{height:101.507812pt;}
.h17{height:162.281250pt;}
.h15{height:204.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:160.986667pt;}
.w3{width:341.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.551988pt;}
.xb{left:85.792000pt;}
.x7{left:99.551988pt;}
.x8{left:123.551988pt;}
.xd{left:131.711988pt;}
.x10{left:147.706655pt;}
.x6{left:162.426655pt;}
.x15{left:164.506655pt;}
.xe{left:167.066655pt;}
.x14{left:192.186655pt;}
.xf{left:219.386655pt;}
.x3{left:228.546655pt;}
.x1c{left:241.186667pt;}
.x13{left:353.346655pt;}
.x19{left:389.053322pt;}
.x1{left:392.893322pt;}
.x11{left:406.333322pt;}
.x1b{left:413.213322pt;}
.xa{left:439.933322pt;}
.x9{left:443.933322pt;}
.x17{left:450.333322pt;}
.x16{left:527.613322pt;}
.x1d{left:572.613322pt;}
.x18{left:584.293322pt;}
.x12{left:615.013322pt;}
.xc{left:693.919988pt;}
.x4{left:701.919988pt;}
.x5{left:717.599988pt;}
.x1a{left:726.719988pt;}
}




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