
    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_6d5802ab958c2e543ed969dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d8faf8da0de57155b4fb7ba5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_16afc5231e2491b112b8270f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9d76cef4133154b3f3a67c8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.802734;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_d81817f15814ecb0206d29c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_faf992ccdd157c3d724dd70b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_b42b6f332d8fbb8108440488.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.780762;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_3ab1c0fb32d6cb8a74fa9773.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783203;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_73782c61dfbd523c8ece8e94.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.770996;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_63630ec533a97e1d92fb38f4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cdf626c30b774dd21f33c322.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008301;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_55ac8da597cb00b459b83a61.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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_5f7ec0754e68fb82102ba9b6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ce928747cba64a869f0a1090.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_36a3455d1deabfb9164d1004.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_fdce58b227acbb36b1a15747.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_61a64dbc2cef934e5b20c55d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.758789;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_0fbd561a577f6f73185bdb8d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b433f6394d402fbaed7d0e59.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_95e06ec94168db1cc11fcee8.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258200,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286775,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.318975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318975,0.000000,0.000000,0.250000,0,0);}
.m9{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;}
.ls14{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.556200px;}
.ls17{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.278400px;}
.ls12{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.190200px;}
.lsf{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.123600px;}
.ls6{letter-spacing:-0.029520px;}
.ls8{letter-spacing:-0.012180px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.211200px;}
.ls13{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.840000px;}
.ls16{letter-spacing:9.360000px;}
.ls11{letter-spacing:10.944000px;}
.ls10{letter-spacing:31.104000px;}
.ls18{letter-spacing:33.984000px;}
.ls0{letter-spacing:147.600000px;}
.lsd{letter-spacing:153.540000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-72.000000px;}
.ws12{word-spacing:-48.600000px;}
.ws1{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.503280px;}
.ws6{word-spacing:-18.342600px;}
.wsf{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.640000px;}
.wse{word-spacing:-17.064000px;}
.ws3{word-spacing:-15.179040px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-11.503800px;}
.ws7{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
._0{margin-left:-1.380240px;}
._1{width:1.056000px;}
._3{width:2.597727px;}
._15{width:4.072832px;}
._2{width:5.160721px;}
._18{width:6.230639px;}
._8{width:7.230960px;}
._d{width:8.804400px;}
._e{width:10.092960px;}
._a{width:11.300640px;}
._7{width:13.226640px;}
._14{width:14.942880px;}
._6{width:16.070400px;}
._9{width:17.256720px;}
._13{width:19.033200px;}
._c{width:20.079360px;}
._b{width:21.114960px;}
._11{width:22.261920px;}
._10{width:23.366160px;}
._12{width:24.401760px;}
._17{width:25.992000px;}
._1b{width:27.288000px;}
._4{width:29.139840px;}
._16{width:30.296640px;}
._f{width:31.692480px;}
._19{width:33.048000px;}
._1c{width:44.784000px;}
._1d{width:46.200000px;}
._1a{width:49.608000px;}
._5{width:109.918320px;}
.fc3{color:transparent;}
.fc2{color:rgb(34,42,53);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:5.760000px;}
.fs7{font-size:12.240000px;}
.fs9{font-size:18.000000px;}
.fs5{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:2.520000px;}
.y19{bottom:2.700000px;}
.y2{bottom:3.600000px;}
.y51{bottom:3.960000px;}
.y1a{bottom:7.200000px;}
.y1b{bottom:7.560000px;}
.y3f{bottom:8.100000px;}
.yc2{bottom:10.260000px;}
.yc6{bottom:10.440000px;}
.y1c{bottom:12.060000px;}
.y4e{bottom:16.200000px;}
.y8{bottom:21.960000px;}
.y9{bottom:22.320000px;}
.y3e{bottom:25.380000px;}
.y4d{bottom:30.780000px;}
.y3d{bottom:46.980000px;}
.y4c{bottom:55.440000px;}
.y3c{bottom:64.260000px;}
.y7{bottom:79.956000px;}
.y3b{bottom:81.540000px;}
.y3a{bottom:98.640000px;}
.y6{bottom:98.856000px;}
.y5{bottom:114.156000px;}
.y39{bottom:115.920000px;}
.y4a{bottom:120.816000px;}
.y80{bottom:126.576000px;}
.y13c{bottom:128.376000px;}
.y122{bottom:131.976000px;}
.y38{bottom:133.200000px;}
.yd8{bottom:135.576000px;}
.y101{bottom:136.476000px;}
.y49{bottom:141.516000px;}
.ya5{bottom:144.576000px;}
.y7f{bottom:147.276000px;}
.y13b{bottom:149.076000px;}
.y37{bottom:150.480000px;}
.ybb{bottom:152.670000px;}
.yd7{bottom:156.270000px;}
.y100{bottom:157.170000px;}
.y48{bottom:162.210000px;}
.ya4{bottom:165.270000px;}
.y36{bottom:167.760000px;}
.y7e{bottom:167.970000px;}
.yba{bottom:173.370000px;}
.yd6{bottom:176.970000px;}
.yff{bottom:177.870000px;}
.y13a{bottom:178.770000px;}
.y47{bottom:182.910000px;}
.y35{bottom:185.040000px;}
.ya3{bottom:185.970000px;}
.yb9{bottom:194.070000px;}
.y7d{bottom:197.670000px;}
.yfe{bottom:198.570000px;}
.y34{bottom:202.140000px;}
.y46{bottom:203.610000px;}
.ya2{bottom:206.670000px;}
.y139{bottom:208.470000px;}
.yb8{bottom:214.770000px;}
.y7c{bottom:218.370000px;}
.yfd{bottom:219.270000px;}
.y33{bottom:219.420000px;}
.y121{bottom:223.770000px;}
.y45{bottom:224.310000px;}
.ya1{bottom:227.370000px;}
.y32{bottom:236.700000px;}
.y138{bottom:238.170000px;}
.y7b{bottom:239.070000px;}
.yfc{bottom:239.970000px;}
.yb7{bottom:244.470000px;}
.y44{bottom:245.010000px;}
.yd5{bottom:245.730000px;}
.ya0{bottom:248.070000px;}
.y31{bottom:253.980000px;}
.y137{bottom:258.870000px;}
.y7a{bottom:259.770000px;}
.yfb{bottom:260.670000px;}
.y120{bottom:265.170000px;}
.y43{bottom:265.710000px;}
.yd4{bottom:267.150000px;}
.y9f{bottom:268.770000px;}
.y30{bottom:271.290000px;}
.yb6{bottom:274.170000px;}
.y79{bottom:280.470000px;}
.y11f{bottom:285.870000px;}
.y2f{bottom:288.390000px;}
.yd3{bottom:288.570000px;}
.y9e{bottom:289.470000px;}
.yfa{bottom:290.370000px;}
.yb5{bottom:294.870000px;}
.y42{bottom:295.410000px;}
.y78{bottom:301.170000px;}
.y2e{bottom:305.670000px;}
.y11e{bottom:306.570000px;}
.yf9{bottom:307.830000px;}
.y136{bottom:309.270000px;}
.yd2{bottom:309.990000px;}
.y9d{bottom:310.170000px;}
.y77{bottom:321.870000px;}
.y2d{bottom:322.950000px;}
.yb4{bottom:324.570000px;}
.yf8{bottom:329.250000px;}
.y9c{bottom:330.870000px;}
.y41{bottom:332.310000px;}
.y11d{bottom:336.270000px;}
.y40{bottom:337.170000px;}
.y135{bottom:338.835000px;}
.y1d{bottom:339.195000px;}
.y2c{bottom:340.230000px;}
.y76{bottom:342.615000px;}
.yd1{bottom:344.415000px;}
.yf7{bottom:350.715000px;}
.yb3{bottom:354.315000px;}
.y11c{bottom:357.015000px;}
.y2b{bottom:357.510000px;}
.y134{bottom:359.535000px;}
.y9b{bottom:360.615000px;}
.yf6{bottom:372.135000px;}
.y75{bottom:372.315000px;}
.yd0{bottom:374.115000px;}
.y2a{bottom:374.790000px;}
.yb2{bottom:375.015000px;}
.y11b{bottom:377.535000px;}
.y9a{bottom:381.315000px;}
.y133{bottom:389.235000px;}
.y29{bottom:391.890000px;}
.y74{bottom:393.015000px;}
.yf5{bottom:393.555000px;}
.ycf{bottom:394.815000px;}
.y11a{bottom:398.235000px;}
.y99{bottom:402.015000px;}
.yb1{bottom:404.535000px;}
.y22{bottom:407.730000px;}
.y28{bottom:409.170000px;}
.y132{bottom:409.935000px;}
.y73{bottom:413.535000px;}
.yf4{bottom:414.975000px;}
.yce{bottom:415.515000px;}
.y119{bottom:418.935000px;}
.y98{bottom:422.535000px;}
.yb0{bottom:425.235000px;}
.y27{bottom:426.450000px;}
.y21{bottom:427.350000px;}
.y72{bottom:434.235000px;}
.y131{bottom:439.635000px;}
.y97{bottom:443.235000px;}
.y26{bottom:443.730000px;}
.y20{bottom:444.630000px;}
.ycd{bottom:445.215000px;}
.y118{bottom:448.635000px;}
.yf3{bottom:449.535000px;}
.y71{bottom:454.935000px;}
.y130{bottom:460.335000px;}
.y25{bottom:461.010000px;}
.y1f{bottom:461.910000px;}
.ycc{bottom:462.675000px;}
.y96{bottom:463.935000px;}
.y23{bottom:475.590000px;}
.y70{bottom:475.635000px;}
.y24{bottom:478.290000px;}
.y117{bottom:478.335000px;}
.y1e{bottom:478.650000px;}
.yf2{bottom:479.235000px;}
.ycb{bottom:484.275000px;}
.y95{bottom:484.635000px;}
.y12f{bottom:490.035000px;}
.y116{bottom:499.035000px;}
.yf1{bottom:499.935000px;}
.y6f{bottom:505.335000px;}
.yca{bottom:505.695000px;}
.y12e{bottom:510.735000px;}
.y115{bottom:519.735000px;}
.yf0{bottom:520.635000px;}
.y6e{bottom:526.035000px;}
.yc9{bottom:527.115000px;}
.y12d{bottom:540.435000px;}
.y6d{bottom:546.735000px;}
.yc8{bottom:548.535000px;}
.y114{bottom:549.435000px;}
.yef{bottom:550.335000px;}
.y94{bottom:555.735000px;}
.y6c{bottom:567.435000px;}
.yc7{bottom:569.955000px;}
.y113{bottom:570.135000px;}
.yee{bottom:571.035000px;}
.y93{bottom:576.435000px;}
.y6b{bottom:588.135000px;}
.yed{bottom:588.495000px;}
.y112{bottom:590.835000px;}
.yc5{bottom:591.375000px;}
.y92{bottom:597.135000px;}
.y12c{bottom:599.835000px;}
.yaf{bottom:606.165000px;}
.y6a{bottom:608.865000px;}
.yec{bottom:609.945000px;}
.y111{bottom:611.565000px;}
.yc4{bottom:613.005000px;}
.y91{bottom:617.865000px;}
.y12b{bottom:620.565000px;}
.yae{bottom:626.865000px;}
.y69{bottom:629.565000px;}
.yeb{bottom:631.365000px;}
.yc3{bottom:634.425000px;}
.y90{bottom:638.565000px;}
.y110{bottom:641.265000px;}
.yad{bottom:647.565000px;}
.y68{bottom:650.265000px;}
.yea{bottom:652.785000px;}
.yc1{bottom:655.845000px;}
.y8f{bottom:659.265000px;}
.y10f{bottom:661.965000px;}
.yac{bottom:668.265000px;}
.y67{bottom:670.965000px;}
.yc0{bottom:677.265000px;}
.y8e{bottom:679.965000px;}
.y10e{bottom:682.665000px;}
.ye9{bottom:687.165000px;}
.yab{bottom:688.965000px;}
.ybf{bottom:698.685000px;}
.y66{bottom:700.665000px;}
.y10d{bottom:703.365000px;}
.yaa{bottom:709.665000px;}
.ye8{bottom:716.865000px;}
.y8d{bottom:721.365000px;}
.y12a{bottom:724.065000px;}
.y65{bottom:730.365000px;}
.ybe{bottom:733.065000px;}
.ye7{bottom:737.565000px;}
.y129{bottom:744.765000px;}
.y64{bottom:751.065000px;}
.y10c{bottom:753.765000px;}
.ye6{bottom:758.265000px;}
.ybd{bottom:762.765000px;}
.y128{bottom:765.465000px;}
.y63{bottom:771.765000px;}
.y10b{bottom:774.465000px;}
.ye5{bottom:778.965000px;}
.ya9{bottom:780.765000px;}
.ybc{bottom:783.465000px;}
.y127{bottom:786.165000px;}
.y62{bottom:792.465000px;}
.y10a{bottom:795.165000px;}
.ye4{bottom:799.665000px;}
.ya8{bottom:801.465000px;}
.y126{bottom:806.865000px;}
.y61{bottom:813.165000px;}
.ye3{bottom:820.365000px;}
.y147{bottom:821.265000px;}
.ya7{bottom:822.165000px;}
.y109{bottom:824.865000px;}
.y18{bottom:832.245000px;}
.y60{bottom:833.865000px;}
.y125{bottom:836.565000px;}
.ye2{bottom:841.065000px;}
.y146{bottom:841.965000px;}
.ya6{bottom:842.865000px;}
.y108{bottom:845.565000px;}
.y8c{bottom:854.565000px;}
.y17{bottom:856.005000px;}
.ye1{bottom:861.765000px;}
.y5f{bottom:863.565000px;}
.y107{bottom:866.265000px;}
.y145{bottom:871.710000px;}
.y8b{bottom:875.310000px;}
.y16{bottom:878.550000px;}
.ye0{bottom:882.510000px;}
.y5e{bottom:884.310000px;}
.y106{bottom:887.010000px;}
.y144{bottom:892.410000px;}
.y8a{bottom:896.010000px;}
.y15{bottom:897.270000px;}
.ydf{bottom:903.210000px;}
.y5d{bottom:905.010000px;}
.y124{bottom:907.710000px;}
.y89{bottom:916.710000px;}
.y14{bottom:918.870000px;}
.y143{bottom:922.110000px;}
.y5c{bottom:925.710000px;}
.yde{bottom:932.910000px;}
.y105{bottom:937.410000px;}
.y13{bottom:939.570000px;}
.y142{bottom:942.810000px;}
.y5b{bottom:946.410000px;}
.ydd{bottom:950.370000px;}
.y104{bottom:958.110000px;}
.y12{bottom:964.230000px;}
.y88{bottom:967.110000px;}
.ydc{bottom:971.970000px;}
.y141{bottom:972.510000px;}
.y5a{bottom:976.110000px;}
.y103{bottom:978.810000px;}
.y87{bottom:987.810000px;}
.y11{bottom:991.950000px;}
.ydb{bottom:993.390000px;}
.y59{bottom:996.810000px;}
.y102{bottom:999.510000px;}
.y140{bottom:1002.210000px;}
.y86{bottom:1008.510000px;}
.yda{bottom:1014.810000px;}
.y58{bottom:1017.510000px;}
.y10{bottom:1018.590000px;}
.y123{bottom:1020.210000px;}
.y85{bottom:1029.210000px;}
.y13f{bottom:1031.910000px;}
.yd9{bottom:1036.230000px;}
.y57{bottom:1038.210000px;}
.yc{bottom:1038.570000px;}
.y4b{bottom:1042.530000px;}
.y84{bottom:1049.910000px;}
.y13e{bottom:1052.610000px;}
.y56{bottom:1058.910000px;}
.y83{bottom:1070.610000px;}
.yb{bottom:1073.310000px;}
.y55{bottom:1079.610000px;}
.y13d{bottom:1082.310000px;}
.y82{bottom:1091.310000px;}
.y54{bottom:1100.310000px;}
.y81{bottom:1112.010000px;}
.y53{bottom:1121.010000px;}
.yf{bottom:1127.670000px;}
.y52{bottom:1141.740000px;}
.ye{bottom:1150.920000px;}
.ya{bottom:1157.760000px;}
.yd{bottom:1169.640000px;}
.y50{bottom:1170.720000px;}
.y1{bottom:1187.820000px;}
.y4{bottom:1192.860000px;}
.y3{bottom:1208.160000px;}
.h1c{height:4.359375px;}
.h16{height:9.251719px;}
.h1d{height:13.605469px;}
.h27{height:20.700000px;}
.h28{height:20.736000px;}
.h23{height:21.060000px;}
.h11{height:21.420000px;}
.h2{height:21.780000px;}
.h10{height:22.886719px;}
.h1a{height:35.072930px;}
.h1e{height:35.314453px;}
.h21{height:35.357344px;}
.h1b{height:36.180000px;}
.h12{height:36.462656px;}
.h6{height:37.440000px;}
.h19{height:41.726953px;}
.h14{height:45.170156px;}
.h4{height:45.228516px;}
.h9{height:47.271094px;}
.h5{height:50.132812px;}
.h25{height:50.273438px;}
.h22{height:50.312812px;}
.hc{height:50.364141px;}
.h8{height:52.396875px;}
.hf{height:54.421875px;}
.h13{height:55.511719px;}
.h17{height:58.651172px;}
.hb{height:60.226875px;}
.h24{height:60.679688px;}
.h18{height:65.010937px;}
.h29{height:70.628906px;}
.h3{height:70.664062px;}
.hd{height:70.995234px;}
.h20{height:71.324297px;}
.he{height:72.562500px;}
.h26{height:74.004654px;}
.h1f{height:75.420000px;}
.ha{height:84.898125px;}
.h7{height:89.545632px;}
.h15{height:492.150000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w15{width:46.980000px;}
.w13{width:57.240000px;}
.w18{width:61.560000px;}
.w6{width:73.800000px;}
.w2{width:84.995973px;}
.wc{width:97.380000px;}
.we{width:97.416000px;}
.w11{width:97.560000px;}
.w17{width:132.336000px;}
.wf{width:134.820000px;}
.w12{width:134.856000px;}
.wa{width:135.036000px;}
.wb{width:141.336000px;}
.w10{width:227.055000px;}
.w14{width:236.595000px;}
.w5{width:241.995000px;}
.w9{width:326.010000px;}
.w16{width:337.755000px;}
.w7{width:415.365000px;}
.wd{width:437.295000px;}
.w8{width:460.005000px;}
.w4{width:599.010000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:4.499973px;}
.x13{left:8.100000px;}
.x4{left:10.836000px;}
.x48{left:11.880000px;}
.x43{left:14.220000px;}
.xe{left:15.876000px;}
.x11{left:18.900000px;}
.x4d{left:20.520000px;}
.x45{left:21.960000px;}
.x33{left:23.940000px;}
.x4f{left:25.740000px;}
.x2c{left:29.160000px;}
.x30{left:30.960000px;}
.x31{left:32.040000px;}
.x23{left:34.020000px;}
.x25{left:35.100000px;}
.x32{left:37.620000px;}
.x2f{left:39.780000px;}
.x28{left:41.040000px;}
.x2b{left:44.100000px;}
.x2d{left:48.060000px;}
.x40{left:50.805000px;}
.x29{left:52.020000px;}
.x2e{left:56.520000px;}
.x1e{left:63.570000px;}
.x52{left:66.240000px;}
.x2a{left:67.545000px;}
.x14{left:73.470000px;}
.xd{left:74.519987px;}
.x2{left:77.939987px;}
.x3{left:79.380000px;}
.x19{left:82.619987px;}
.xc{left:85.175987px;}
.xa{left:87.695987px;}
.x1f{left:90.216000px;}
.x9{left:95.795987px;}
.x16{left:97.410000px;}
.x5{left:99.575987px;}
.x49{left:102.450000px;}
.x20{left:104.975987px;}
.x50{left:106.245000px;}
.x1b{left:109.830000px;}
.x51{left:112.905000px;}
.x3c{left:115.595987px;}
.x36{left:118.116000px;}
.x3b{left:130.134000px;}
.x4a{left:132.525000px;}
.x1c{left:149.790000px;}
.x41{left:158.249987px;}
.x3a{left:162.579000px;}
.xf{left:170.670000px;}
.x37{left:185.079000px;}
.x22{left:198.030000px;}
.x34{left:199.109987px;}
.x42{left:211.530000px;}
.x3d{left:223.230000px;}
.x1d{left:229.935000px;}
.x35{left:244.829987px;}
.xb{left:274.214987px;}
.x21{left:301.754987px;}
.x10{left:319.035000px;}
.x17{left:332.895000px;}
.x24{left:333.975000px;}
.x44{left:353.775000px;}
.x12{left:392.835000px;}
.x15{left:404.745000px;}
.x1a{left:405.975000px;}
.x18{left:407.985000px;}
.x46{left:411.735000px;}
.x6{left:436.034987px;}
.x3e{left:451.005000px;}
.x26{left:476.205000px;}
.x4b{left:501.765000px;}
.x8{left:532.904987px;}
.x3f{left:549.285000px;}
.x38{left:556.125000px;}
.x27{left:574.305000px;}
.x4c{left:635.010000px;}
.x47{left:649.050000px;}
.x39{left:654.450000px;}
.x4e{left:682.710000px;}
.x7{left:761.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.494400pt;}
.ls17{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.247467pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.169067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.109867pt;}
.ls6{letter-spacing:-0.026240pt;}
.ls8{letter-spacing:-0.010827pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.187733pt;}
.ls13{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.746667pt;}
.ls16{letter-spacing:8.320000pt;}
.ls11{letter-spacing:9.728000pt;}
.ls10{letter-spacing:27.648000pt;}
.ls18{letter-spacing:30.208000pt;}
.ls0{letter-spacing:131.200000pt;}
.lsd{letter-spacing:136.480000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws12{word-spacing:-43.200000pt;}
.ws1{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.447360pt;}
.ws6{word-spacing:-16.304533pt;}
.wsf{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.680000pt;}
.wse{word-spacing:-15.168000pt;}
.ws3{word-spacing:-13.492480pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-10.225600pt;}
.ws7{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
._0{margin-left:-1.226880pt;}
._1{width:0.938667pt;}
._3{width:2.309091pt;}
._15{width:3.620295pt;}
._2{width:4.587307pt;}
._18{width:5.538346pt;}
._8{width:6.427520pt;}
._d{width:7.826133pt;}
._e{width:8.971520pt;}
._a{width:10.045013pt;}
._7{width:11.757013pt;}
._14{width:13.282560pt;}
._6{width:14.284800pt;}
._9{width:15.339307pt;}
._13{width:16.918400pt;}
._c{width:17.848320pt;}
._b{width:18.768853pt;}
._11{width:19.788373pt;}
._10{width:20.769920pt;}
._12{width:21.690453pt;}
._17{width:23.104000pt;}
._1b{width:24.256000pt;}
._4{width:25.902080pt;}
._16{width:26.930347pt;}
._f{width:28.171093pt;}
._19{width:29.376000pt;}
._1c{width:39.808000pt;}
._1d{width:41.066667pt;}
._1a{width:44.096000pt;}
._5{width:97.705173pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:10.880000pt;}
.fs9{font-size:16.000000pt;}
.fs5{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:2.240000pt;}
.y19{bottom:2.400000pt;}
.y2{bottom:3.200000pt;}
.y51{bottom:3.520000pt;}
.y1a{bottom:6.400000pt;}
.y1b{bottom:6.720000pt;}
.y3f{bottom:7.200000pt;}
.yc2{bottom:9.120000pt;}
.yc6{bottom:9.280000pt;}
.y1c{bottom:10.720000pt;}
.y4e{bottom:14.400000pt;}
.y8{bottom:19.520000pt;}
.y9{bottom:19.840000pt;}
.y3e{bottom:22.560000pt;}
.y4d{bottom:27.360000pt;}
.y3d{bottom:41.760000pt;}
.y4c{bottom:49.280000pt;}
.y3c{bottom:57.120000pt;}
.y7{bottom:71.072000pt;}
.y3b{bottom:72.480000pt;}
.y3a{bottom:87.680000pt;}
.y6{bottom:87.872000pt;}
.y5{bottom:101.472000pt;}
.y39{bottom:103.040000pt;}
.y4a{bottom:107.392000pt;}
.y80{bottom:112.512000pt;}
.y13c{bottom:114.112000pt;}
.y122{bottom:117.312000pt;}
.y38{bottom:118.400000pt;}
.yd8{bottom:120.512000pt;}
.y101{bottom:121.312000pt;}
.y49{bottom:125.792000pt;}
.ya5{bottom:128.512000pt;}
.y7f{bottom:130.912000pt;}
.y13b{bottom:132.512000pt;}
.y37{bottom:133.760000pt;}
.ybb{bottom:135.706667pt;}
.yd7{bottom:138.906667pt;}
.y100{bottom:139.706667pt;}
.y48{bottom:144.186667pt;}
.ya4{bottom:146.906667pt;}
.y36{bottom:149.120000pt;}
.y7e{bottom:149.306667pt;}
.yba{bottom:154.106667pt;}
.yd6{bottom:157.306667pt;}
.yff{bottom:158.106667pt;}
.y13a{bottom:158.906667pt;}
.y47{bottom:162.586667pt;}
.y35{bottom:164.480000pt;}
.ya3{bottom:165.306667pt;}
.yb9{bottom:172.506667pt;}
.y7d{bottom:175.706667pt;}
.yfe{bottom:176.506667pt;}
.y34{bottom:179.680000pt;}
.y46{bottom:180.986667pt;}
.ya2{bottom:183.706667pt;}
.y139{bottom:185.306667pt;}
.yb8{bottom:190.906667pt;}
.y7c{bottom:194.106667pt;}
.yfd{bottom:194.906667pt;}
.y33{bottom:195.040000pt;}
.y121{bottom:198.906667pt;}
.y45{bottom:199.386667pt;}
.ya1{bottom:202.106667pt;}
.y32{bottom:210.400000pt;}
.y138{bottom:211.706667pt;}
.y7b{bottom:212.506667pt;}
.yfc{bottom:213.306667pt;}
.yb7{bottom:217.306667pt;}
.y44{bottom:217.786667pt;}
.yd5{bottom:218.426667pt;}
.ya0{bottom:220.506667pt;}
.y31{bottom:225.760000pt;}
.y137{bottom:230.106667pt;}
.y7a{bottom:230.906667pt;}
.yfb{bottom:231.706667pt;}
.y120{bottom:235.706667pt;}
.y43{bottom:236.186667pt;}
.yd4{bottom:237.466667pt;}
.y9f{bottom:238.906667pt;}
.y30{bottom:241.146667pt;}
.yb6{bottom:243.706667pt;}
.y79{bottom:249.306667pt;}
.y11f{bottom:254.106667pt;}
.y2f{bottom:256.346667pt;}
.yd3{bottom:256.506667pt;}
.y9e{bottom:257.306667pt;}
.yfa{bottom:258.106667pt;}
.yb5{bottom:262.106667pt;}
.y42{bottom:262.586667pt;}
.y78{bottom:267.706667pt;}
.y2e{bottom:271.706667pt;}
.y11e{bottom:272.506667pt;}
.yf9{bottom:273.626667pt;}
.y136{bottom:274.906667pt;}
.yd2{bottom:275.546667pt;}
.y9d{bottom:275.706667pt;}
.y77{bottom:286.106667pt;}
.y2d{bottom:287.066667pt;}
.yb4{bottom:288.506667pt;}
.yf8{bottom:292.666667pt;}
.y9c{bottom:294.106667pt;}
.y41{bottom:295.386667pt;}
.y11d{bottom:298.906667pt;}
.y40{bottom:299.706667pt;}
.y135{bottom:301.186667pt;}
.y1d{bottom:301.506667pt;}
.y2c{bottom:302.426667pt;}
.y76{bottom:304.546667pt;}
.yd1{bottom:306.146667pt;}
.yf7{bottom:311.746667pt;}
.yb3{bottom:314.946667pt;}
.y11c{bottom:317.346667pt;}
.y2b{bottom:317.786667pt;}
.y134{bottom:319.586667pt;}
.y9b{bottom:320.546667pt;}
.yf6{bottom:330.786667pt;}
.y75{bottom:330.946667pt;}
.yd0{bottom:332.546667pt;}
.y2a{bottom:333.146667pt;}
.yb2{bottom:333.346667pt;}
.y11b{bottom:335.586667pt;}
.y9a{bottom:338.946667pt;}
.y133{bottom:345.986667pt;}
.y29{bottom:348.346667pt;}
.y74{bottom:349.346667pt;}
.yf5{bottom:349.826667pt;}
.ycf{bottom:350.946667pt;}
.y11a{bottom:353.986667pt;}
.y99{bottom:357.346667pt;}
.yb1{bottom:359.586667pt;}
.y22{bottom:362.426667pt;}
.y28{bottom:363.706667pt;}
.y132{bottom:364.386667pt;}
.y73{bottom:367.586667pt;}
.yf4{bottom:368.866667pt;}
.yce{bottom:369.346667pt;}
.y119{bottom:372.386667pt;}
.y98{bottom:375.586667pt;}
.yb0{bottom:377.986667pt;}
.y27{bottom:379.066667pt;}
.y21{bottom:379.866667pt;}
.y72{bottom:385.986667pt;}
.y131{bottom:390.786667pt;}
.y97{bottom:393.986667pt;}
.y26{bottom:394.426667pt;}
.y20{bottom:395.226667pt;}
.ycd{bottom:395.746667pt;}
.y118{bottom:398.786667pt;}
.yf3{bottom:399.586667pt;}
.y71{bottom:404.386667pt;}
.y130{bottom:409.186667pt;}
.y25{bottom:409.786667pt;}
.y1f{bottom:410.586667pt;}
.ycc{bottom:411.266667pt;}
.y96{bottom:412.386667pt;}
.y23{bottom:422.746667pt;}
.y70{bottom:422.786667pt;}
.y24{bottom:425.146667pt;}
.y117{bottom:425.186667pt;}
.y1e{bottom:425.466667pt;}
.yf2{bottom:425.986667pt;}
.ycb{bottom:430.466667pt;}
.y95{bottom:430.786667pt;}
.y12f{bottom:435.586667pt;}
.y116{bottom:443.586667pt;}
.yf1{bottom:444.386667pt;}
.y6f{bottom:449.186667pt;}
.yca{bottom:449.506667pt;}
.y12e{bottom:453.986667pt;}
.y115{bottom:461.986667pt;}
.yf0{bottom:462.786667pt;}
.y6e{bottom:467.586667pt;}
.yc9{bottom:468.546667pt;}
.y12d{bottom:480.386667pt;}
.y6d{bottom:485.986667pt;}
.yc8{bottom:487.586667pt;}
.y114{bottom:488.386667pt;}
.yef{bottom:489.186667pt;}
.y94{bottom:493.986667pt;}
.y6c{bottom:504.386667pt;}
.yc7{bottom:506.626667pt;}
.y113{bottom:506.786667pt;}
.yee{bottom:507.586667pt;}
.y93{bottom:512.386667pt;}
.y6b{bottom:522.786667pt;}
.yed{bottom:523.106667pt;}
.y112{bottom:525.186667pt;}
.yc5{bottom:525.666667pt;}
.y92{bottom:530.786667pt;}
.y12c{bottom:533.186667pt;}
.yaf{bottom:538.813333pt;}
.y6a{bottom:541.213333pt;}
.yec{bottom:542.173333pt;}
.y111{bottom:543.613333pt;}
.yc4{bottom:544.893333pt;}
.y91{bottom:549.213333pt;}
.y12b{bottom:551.613333pt;}
.yae{bottom:557.213333pt;}
.y69{bottom:559.613333pt;}
.yeb{bottom:561.213333pt;}
.yc3{bottom:563.933333pt;}
.y90{bottom:567.613333pt;}
.y110{bottom:570.013333pt;}
.yad{bottom:575.613333pt;}
.y68{bottom:578.013333pt;}
.yea{bottom:580.253333pt;}
.yc1{bottom:582.973333pt;}
.y8f{bottom:586.013333pt;}
.y10f{bottom:588.413333pt;}
.yac{bottom:594.013333pt;}
.y67{bottom:596.413333pt;}
.yc0{bottom:602.013333pt;}
.y8e{bottom:604.413333pt;}
.y10e{bottom:606.813333pt;}
.ye9{bottom:610.813333pt;}
.yab{bottom:612.413333pt;}
.ybf{bottom:621.053333pt;}
.y66{bottom:622.813333pt;}
.y10d{bottom:625.213333pt;}
.yaa{bottom:630.813333pt;}
.ye8{bottom:637.213333pt;}
.y8d{bottom:641.213333pt;}
.y12a{bottom:643.613333pt;}
.y65{bottom:649.213333pt;}
.ybe{bottom:651.613333pt;}
.ye7{bottom:655.613333pt;}
.y129{bottom:662.013333pt;}
.y64{bottom:667.613333pt;}
.y10c{bottom:670.013333pt;}
.ye6{bottom:674.013333pt;}
.ybd{bottom:678.013333pt;}
.y128{bottom:680.413333pt;}
.y63{bottom:686.013333pt;}
.y10b{bottom:688.413333pt;}
.ye5{bottom:692.413333pt;}
.ya9{bottom:694.013333pt;}
.ybc{bottom:696.413333pt;}
.y127{bottom:698.813333pt;}
.y62{bottom:704.413333pt;}
.y10a{bottom:706.813333pt;}
.ye4{bottom:710.813333pt;}
.ya8{bottom:712.413333pt;}
.y126{bottom:717.213333pt;}
.y61{bottom:722.813333pt;}
.ye3{bottom:729.213333pt;}
.y147{bottom:730.013333pt;}
.ya7{bottom:730.813333pt;}
.y109{bottom:733.213333pt;}
.y18{bottom:739.773333pt;}
.y60{bottom:741.213333pt;}
.y125{bottom:743.613333pt;}
.ye2{bottom:747.613333pt;}
.y146{bottom:748.413333pt;}
.ya6{bottom:749.213333pt;}
.y108{bottom:751.613333pt;}
.y8c{bottom:759.613333pt;}
.y17{bottom:760.893333pt;}
.ye1{bottom:766.013333pt;}
.y5f{bottom:767.613333pt;}
.y107{bottom:770.013333pt;}
.y145{bottom:774.853333pt;}
.y8b{bottom:778.053333pt;}
.y16{bottom:780.933333pt;}
.ye0{bottom:784.453333pt;}
.y5e{bottom:786.053333pt;}
.y106{bottom:788.453333pt;}
.y144{bottom:793.253333pt;}
.y8a{bottom:796.453333pt;}
.y15{bottom:797.573333pt;}
.ydf{bottom:802.853333pt;}
.y5d{bottom:804.453333pt;}
.y124{bottom:806.853333pt;}
.y89{bottom:814.853333pt;}
.y14{bottom:816.773333pt;}
.y143{bottom:819.653333pt;}
.y5c{bottom:822.853333pt;}
.yde{bottom:829.253333pt;}
.y105{bottom:833.253333pt;}
.y13{bottom:835.173333pt;}
.y142{bottom:838.053333pt;}
.y5b{bottom:841.253333pt;}
.ydd{bottom:844.773333pt;}
.y104{bottom:851.653333pt;}
.y12{bottom:857.093333pt;}
.y88{bottom:859.653333pt;}
.ydc{bottom:863.973333pt;}
.y141{bottom:864.453333pt;}
.y5a{bottom:867.653333pt;}
.y103{bottom:870.053333pt;}
.y87{bottom:878.053333pt;}
.y11{bottom:881.733333pt;}
.ydb{bottom:883.013333pt;}
.y59{bottom:886.053333pt;}
.y102{bottom:888.453333pt;}
.y140{bottom:890.853333pt;}
.y86{bottom:896.453333pt;}
.yda{bottom:902.053333pt;}
.y58{bottom:904.453333pt;}
.y10{bottom:905.413333pt;}
.y123{bottom:906.853333pt;}
.y85{bottom:914.853333pt;}
.y13f{bottom:917.253333pt;}
.yd9{bottom:921.093333pt;}
.y57{bottom:922.853333pt;}
.yc{bottom:923.173333pt;}
.y4b{bottom:926.693333pt;}
.y84{bottom:933.253333pt;}
.y13e{bottom:935.653333pt;}
.y56{bottom:941.253333pt;}
.y83{bottom:951.653333pt;}
.yb{bottom:954.053333pt;}
.y55{bottom:959.653333pt;}
.y13d{bottom:962.053333pt;}
.y82{bottom:970.053333pt;}
.y54{bottom:978.053333pt;}
.y81{bottom:988.453333pt;}
.y53{bottom:996.453333pt;}
.yf{bottom:1002.373333pt;}
.y52{bottom:1014.880000pt;}
.ye{bottom:1023.040000pt;}
.ya{bottom:1029.120000pt;}
.yd{bottom:1039.680000pt;}
.y50{bottom:1040.640000pt;}
.y1{bottom:1055.840000pt;}
.y4{bottom:1060.320000pt;}
.y3{bottom:1073.920000pt;}
.h1c{height:3.875000pt;}
.h16{height:8.223750pt;}
.h1d{height:12.093750pt;}
.h27{height:18.400000pt;}
.h28{height:18.432000pt;}
.h23{height:18.720000pt;}
.h11{height:19.040000pt;}
.h2{height:19.360000pt;}
.h10{height:20.343750pt;}
.h1a{height:31.175937pt;}
.h1e{height:31.390625pt;}
.h21{height:31.428750pt;}
.h1b{height:32.160000pt;}
.h12{height:32.411250pt;}
.h6{height:33.280000pt;}
.h19{height:37.090625pt;}
.h14{height:40.151250pt;}
.h4{height:40.203125pt;}
.h9{height:42.018750pt;}
.h5{height:44.562500pt;}
.h25{height:44.687500pt;}
.h22{height:44.722500pt;}
.hc{height:44.768125pt;}
.h8{height:46.575000pt;}
.hf{height:48.375000pt;}
.h13{height:49.343750pt;}
.h17{height:52.134375pt;}
.hb{height:53.535000pt;}
.h24{height:53.937500pt;}
.h18{height:57.787500pt;}
.h29{height:62.781250pt;}
.h3{height:62.812500pt;}
.hd{height:63.106875pt;}
.h20{height:63.399375pt;}
.he{height:64.500000pt;}
.h26{height:65.781915pt;}
.h1f{height:67.040000pt;}
.ha{height:75.465000pt;}
.h7{height:79.596117pt;}
.h15{height:437.466667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w15{width:41.760000pt;}
.w13{width:50.880000pt;}
.w18{width:54.720000pt;}
.w6{width:65.600000pt;}
.w2{width:75.551976pt;}
.wc{width:86.560000pt;}
.we{width:86.592000pt;}
.w11{width:86.720000pt;}
.w17{width:117.632000pt;}
.wf{width:119.840000pt;}
.w12{width:119.872000pt;}
.wa{width:120.032000pt;}
.wb{width:125.632000pt;}
.w10{width:201.826667pt;}
.w14{width:210.306667pt;}
.w5{width:215.106667pt;}
.w9{width:289.786667pt;}
.w16{width:300.226667pt;}
.w7{width:369.213333pt;}
.wd{width:388.706667pt;}
.w8{width:408.893333pt;}
.w4{width:532.453333pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:3.999976pt;}
.x13{left:7.200000pt;}
.x4{left:9.632000pt;}
.x48{left:10.560000pt;}
.x43{left:12.640000pt;}
.xe{left:14.112000pt;}
.x11{left:16.800000pt;}
.x4d{left:18.240000pt;}
.x45{left:19.520000pt;}
.x33{left:21.280000pt;}
.x4f{left:22.880000pt;}
.x2c{left:25.920000pt;}
.x30{left:27.520000pt;}
.x31{left:28.480000pt;}
.x23{left:30.240000pt;}
.x25{left:31.200000pt;}
.x32{left:33.440000pt;}
.x2f{left:35.360000pt;}
.x28{left:36.480000pt;}
.x2b{left:39.200000pt;}
.x2d{left:42.720000pt;}
.x40{left:45.160000pt;}
.x29{left:46.240000pt;}
.x2e{left:50.240000pt;}
.x1e{left:56.506667pt;}
.x52{left:58.880000pt;}
.x2a{left:60.040000pt;}
.x14{left:65.306667pt;}
.xd{left:66.239988pt;}
.x2{left:69.279988pt;}
.x3{left:70.560000pt;}
.x19{left:73.439988pt;}
.xc{left:75.711988pt;}
.xa{left:77.951988pt;}
.x1f{left:80.192000pt;}
.x9{left:85.151988pt;}
.x16{left:86.586667pt;}
.x5{left:88.511988pt;}
.x49{left:91.066667pt;}
.x20{left:93.311988pt;}
.x50{left:94.440000pt;}
.x1b{left:97.626667pt;}
.x51{left:100.360000pt;}
.x3c{left:102.751988pt;}
.x36{left:104.992000pt;}
.x3b{left:115.674667pt;}
.x4a{left:117.800000pt;}
.x1c{left:133.146667pt;}
.x41{left:140.666655pt;}
.x3a{left:144.514667pt;}
.xf{left:151.706667pt;}
.x37{left:164.514667pt;}
.x22{left:176.026667pt;}
.x34{left:176.986655pt;}
.x42{left:188.026667pt;}
.x3d{left:198.426667pt;}
.x1d{left:204.386667pt;}
.x35{left:217.626655pt;}
.xb{left:243.746655pt;}
.x21{left:268.226655pt;}
.x10{left:283.586667pt;}
.x17{left:295.906667pt;}
.x24{left:296.866667pt;}
.x44{left:314.466667pt;}
.x12{left:349.186667pt;}
.x15{left:359.773333pt;}
.x1a{left:360.866667pt;}
.x18{left:362.653333pt;}
.x46{left:365.986667pt;}
.x6{left:387.586655pt;}
.x3e{left:400.893333pt;}
.x26{left:423.293333pt;}
.x4b{left:446.013333pt;}
.x8{left:473.693321pt;}
.x3f{left:488.253333pt;}
.x38{left:494.333333pt;}
.x27{left:510.493333pt;}
.x4c{left:564.453333pt;}
.x47{left:576.933333pt;}
.x39{left:581.733333pt;}
.x4e{left:606.853333pt;}
.x7{left:677.093322pt;}
}




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