
    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_7d80d6ce28d9b6e699216512.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_a2e114e6c19f014146708f2c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b4917034d961b0d646a20417.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_bbe4382d7d568090759d6a15.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_3240e89b1708789f2cef2e96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_3e9ac817ec3739f2aa593ca2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_75ff9c6ee9a8c48677f819e9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_28c1d4652e29eb8059b70d7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_10a41aaddbe0f92a00399a90.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_765c6c4e749d10877b7a46b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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_79949c366c2198cc81898fc7.woff2')format("woff");}.fff{font-family:fff;line-height:0.950684;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_94c00a3a5767f3ed46f0ffa7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4daea165760e0bf4337608d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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_18d9eb90523b5392ed17d305.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973145;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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.558000px;}
.ls8{letter-spacing:-0.331200px;}
.ls13{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.306000px;}
.ls11{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.234000px;}
.lsc{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.091200px;}
.ls6{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.ls10{letter-spacing:0.054000px;}
.lsf{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.198000px;}
.ls12{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.234000px;}
.ls14{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.322800px;}
.ls17{letter-spacing:0.342000px;}
.ls5{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.540000px;}
.ls1c{letter-spacing:8.586000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws8{word-spacing:-18.954000px;}
.ws7{word-spacing:-18.468000px;}
.ws2{word-spacing:-18.360000px;}
.ws6{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws4{word-spacing:-16.824960px;}
.ws5{word-spacing:-15.262800px;}
.ws1a{word-spacing:-14.058000px;}
.ws1e{word-spacing:-13.986000px;}
.ws18{word-spacing:-13.914000px;}
.ws1f{word-spacing:-13.896000px;}
.ws1d{word-spacing:-13.806000px;}
.wsd{word-spacing:-13.716000px;}
.wsc{word-spacing:-13.554000px;}
.ws19{word-spacing:-13.482000px;}
.ws1b{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.356000px;}
.ws15{word-spacing:-13.302000px;}
.ws12{word-spacing:-13.266000px;}
.ws10{word-spacing:-13.230000px;}
.ws1c{word-spacing:-13.158000px;}
.wse{word-spacing:-13.104000px;}
.ws13{word-spacing:-13.068000px;}
.wsb{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.978000px;}
.wsa{word-spacing:-12.834000px;}
.ws14{word-spacing:-12.744000px;}
.wsf{word-spacing:-12.726000px;}
.ws11{word-spacing:-12.690000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._3{width:1.053360px;}
._4{width:2.502960px;}
._18{width:3.504240px;}
._d{width:5.238000px;}
._e{width:6.534000px;}
._b{width:8.424000px;}
._5{width:9.612000px;}
._6{width:11.095920px;}
._7{width:14.066640px;}
._1d{width:15.083280px;}
._2{width:16.087680px;}
._1{width:17.428320px;}
._8{width:19.211040px;}
._22{width:20.790000px;}
._1c{width:22.518000px;}
._19{width:23.544000px;}
._28{width:24.678000px;}
._16{width:25.758000px;}
._17{width:26.810640px;}
._9{width:28.728000px;}
._a{width:29.806800px;}
._f{width:31.321200px;}
._1a{width:32.965440px;}
._1f{width:34.560000px;}
._c{width:35.694000px;}
._1b{width:36.720000px;}
._10{width:37.962000px;}
._11{width:39.366000px;}
._23{width:40.554000px;}
._2b{width:41.580000px;}
._12{width:42.660000px;}
._13{width:43.902000px;}
._20{width:45.738000px;}
._21{width:46.947600px;}
._24{width:48.870000px;}
._32{width:50.490000px;}
._14{width:53.082000px;}
._15{width:54.566640px;}
._29{width:56.046960px;}
._1e{width:64.260000px;}
._2d{width:65.394000px;}
._25{width:70.146000px;}
._34{width:78.501600px;}
._33{width:79.812000px;}
._2a{width:84.564000px;}
._2e{width:91.602000px;}
._2f{width:93.024000px;}
._30{width:94.296000px;}
._31{width:95.838000px;}
._2c{width:112.050000px;}
._27{width:119.592000px;}
._26{width:652.446000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3e{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1e{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y24{bottom:3.600000px;}
.y1a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y22{bottom:4.860000px;}
.y8a{bottom:6.120000px;}
.y88{bottom:6.300000px;}
.yd0{bottom:7.920000px;}
.yd4{bottom:7.950000px;}
.yef{bottom:8.460000px;}
.y3d{bottom:9.000000px;}
.ye5{bottom:9.180000px;}
.yf4{bottom:10.440000px;}
.yb2{bottom:10.785000px;}
.y36{bottom:10.965000px;}
.yba{bottom:10.966500px;}
.y1c{bottom:10.980000px;}
.yae{bottom:11.010000px;}
.ybd{bottom:12.600000px;}
.yc0{bottom:12.780000px;}
.y20{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y18{bottom:15.300000px;}
.y38{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y3c{bottom:30.240000px;}
.y35{bottom:33.825000px;}
.yac{bottom:35.130000px;}
.y13{bottom:45.765000px;}
.y3b{bottom:51.660000px;}
.y34{bottom:56.865000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3a{bottom:75.810000px;}
.y33{bottom:79.905000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y32{bottom:102.990000px;}
.y111{bottom:114.660000px;}
.y14a{bottom:115.740000px;}
.y134{bottom:116.460000px;}
.y12b{bottom:119.160000px;}
.ybb{bottom:120.420000px;}
.ye0{bottom:121.680000px;}
.y86{bottom:123.660000px;}
.y31{bottom:126.030000px;}
.y6c{bottom:130.320000px;}
.y135{bottom:137.520000px;}
.y110{bottom:137.700000px;}
.y149{bottom:138.600000px;}
.y133{bottom:139.500000px;}
.y12a{bottom:142.236000px;}
.yb9{bottom:144.583500px;}
.ydf{bottom:144.756000px;}
.y85{bottom:146.736000px;}
.y30{bottom:149.070000px;}
.y6b{bottom:153.210000px;}
.y10f{bottom:160.590000px;}
.y148{bottom:161.670000px;}
.y132{bottom:162.570000px;}
.y129{bottom:165.090000px;}
.yde{bottom:167.790000px;}
.yb8{bottom:168.705000px;}
.y84{bottom:169.770000px;}
.y2f{bottom:171.930000px;}
.y6a{bottom:176.250000px;}
.y10e{bottom:183.630000px;}
.y147{bottom:184.710000px;}
.y131{bottom:185.610000px;}
.y128{bottom:188.130000px;}
.ydd{bottom:190.830000px;}
.y83{bottom:192.630000px;}
.yb7{bottom:192.825000px;}
.y2e{bottom:194.970000px;}
.y69{bottom:199.290000px;}
.y10d{bottom:206.670000px;}
.y146{bottom:207.750000px;}
.y130{bottom:208.470000px;}
.y127{bottom:211.170000px;}
.ydc{bottom:213.870000px;}
.y82{bottom:215.670000px;}
.yb6{bottom:216.945000px;}
.y2d{bottom:218.010000px;}
.y68{bottom:222.330000px;}
.y10c{bottom:229.710000px;}
.y145{bottom:230.790000px;}
.y12f{bottom:231.510000px;}
.y126{bottom:234.210000px;}
.ydb{bottom:236.910000px;}
.y81{bottom:238.710000px;}
.y2c{bottom:241.050000px;}
.yb5{bottom:241.065000px;}
.y67{bottom:245.370000px;}
.y10b{bottom:252.750000px;}
.y144{bottom:253.830000px;}
.y12e{bottom:254.550000px;}
.y125{bottom:257.250000px;}
.yda{bottom:259.770000px;}
.y80{bottom:261.750000px;}
.y2b{bottom:264.090000px;}
.yb4{bottom:265.365000px;}
.y66{bottom:268.410000px;}
.y10a{bottom:275.610000px;}
.y143{bottom:276.690000px;}
.y12d{bottom:277.590000px;}
.y37{bottom:277.605000px;}
.y124{bottom:280.290000px;}
.yd9{bottom:282.810000px;}
.y7f{bottom:284.790000px;}
.y2a{bottom:287.130000px;}
.yb3{bottom:289.485000px;}
.y65{bottom:291.270000px;}
.y109{bottom:298.650000px;}
.y142{bottom:299.730000px;}
.y12c{bottom:300.630000px;}
.y123{bottom:303.150000px;}
.y26{bottom:303.525000px;}
.yd8{bottom:305.850000px;}
.y7e{bottom:307.830000px;}
.y29{bottom:309.990000px;}
.yb1{bottom:313.605000px;}
.y64{bottom:314.310000px;}
.y108{bottom:321.690000px;}
.y141{bottom:322.770000px;}
.y122{bottom:326.190000px;}
.yd7{bottom:328.890000px;}
.y7d{bottom:330.690000px;}
.y28{bottom:333.030000px;}
.y63{bottom:337.350000px;}
.yb0{bottom:337.725000px;}
.y107{bottom:344.730000px;}
.y140{bottom:345.810000px;}
.y121{bottom:349.230000px;}
.yd6{bottom:351.930000px;}
.y7c{bottom:353.730000px;}
.y27{bottom:356.100000px;}
.y62{bottom:360.390000px;}
.yaf{bottom:361.845000px;}
.y106{bottom:367.770000px;}
.y13f{bottom:368.850000px;}
.y120{bottom:372.270000px;}
.yd5{bottom:374.970000px;}
.y7b{bottom:376.770000px;}
.y61{bottom:383.430000px;}
.yab{bottom:385.965000px;}
.yd3{bottom:389.205000px;}
.y105{bottom:390.810000px;}
.y13e{bottom:391.935000px;}
.y11f{bottom:395.355000px;}
.y7a{bottom:399.855000px;}
.y60{bottom:406.515000px;}
.yad{bottom:410.115000px;}
.yd2{bottom:410.295000px;}
.y104{bottom:413.715000px;}
.y13d{bottom:414.795000px;}
.y11e{bottom:418.395000px;}
.y79{bottom:422.895000px;}
.y5f{bottom:429.375000px;}
.yd1{bottom:431.355000px;}
.y103{bottom:436.755000px;}
.y13c{bottom:437.835000px;}
.y11d{bottom:441.255000px;}
.y78{bottom:445.755000px;}
.yaa{bottom:446.295000px;}
.y5e{bottom:452.415000px;}
.y102{bottom:459.795000px;}
.y13b{bottom:460.875000px;}
.y11c{bottom:464.295000px;}
.y77{bottom:468.795000px;}
.ya9{bottom:469.335000px;}
.ycf{bottom:473.475000px;}
.y5d{bottom:475.455000px;}
.y101{bottom:482.835000px;}
.y13a{bottom:483.915000px;}
.y11b{bottom:487.335000px;}
.y76{bottom:491.835000px;}
.ya8{bottom:492.375000px;}
.y5c{bottom:498.495000px;}
.y100{bottom:505.875000px;}
.yce{bottom:506.595000px;}
.y139{bottom:506.955000px;}
.y11a{bottom:510.375000px;}
.y75{bottom:514.875000px;}
.ya7{bottom:515.415000px;}
.y5b{bottom:521.535000px;}
.yff{bottom:528.915000px;}
.ycd{bottom:529.635000px;}
.y138{bottom:529.995000px;}
.y119{bottom:533.415000px;}
.y74{bottom:537.915000px;}
.ya6{bottom:538.275000px;}
.y5a{bottom:544.575000px;}
.yfe{bottom:551.775000px;}
.ycc{bottom:552.675000px;}
.y137{bottom:552.855000px;}
.y118{bottom:556.275000px;}
.y73{bottom:560.955000px;}
.ya5{bottom:561.315000px;}
.y59{bottom:567.435000px;}
.yfd{bottom:574.815000px;}
.ycb{bottom:575.715000px;}
.y117{bottom:579.315000px;}
.y72{bottom:583.815000px;}
.ya4{bottom:584.355000px;}
.y58{bottom:590.475000px;}
.yfc{bottom:597.855000px;}
.yca{bottom:598.755000px;}
.y136{bottom:598.935000px;}
.y116{bottom:602.355000px;}
.y71{bottom:606.855000px;}
.ya3{bottom:607.395000px;}
.y57{bottom:613.515000px;}
.yfb{bottom:620.895000px;}
.ya2{bottom:621.615000px;}
.y115{bottom:625.395000px;}
.y70{bottom:629.895000px;}
.y56{bottom:636.555000px;}
.ya1{bottom:641.265000px;}
.yfa{bottom:643.965000px;}
.yc9{bottom:644.685000px;}
.y114{bottom:648.465000px;}
.y6f{bottom:652.965000px;}
.yf9{bottom:658.185000px;}
.y55{bottom:659.625000px;}
.ya0{bottom:660.705000px;}
.yc8{bottom:667.725000px;}
.y113{bottom:671.505000px;}
.y25{bottom:671.685000px;}
.y6e{bottom:676.005000px;}
.yf8{bottom:679.245000px;}
.y9f{bottom:680.325000px;}
.y54{bottom:682.485000px;}
.y23{bottom:686.985000px;}
.yc7{bottom:690.765000px;}
.y6d{bottom:695.805000px;}
.y9e{bottom:699.765000px;}
.yf7{bottom:701.565000px;}
.y53{bottom:705.525000px;}
.y21{bottom:705.705000px;}
.yc6{bottom:713.805000px;}
.y112{bottom:717.405000px;}
.y9d{bottom:719.385000px;}
.yf6{bottom:722.625000px;}
.y1f{bottom:725.685000px;}
.y52{bottom:728.565000px;}
.yc5{bottom:736.845000px;}
.y9c{bottom:738.825000px;}
.yf5{bottom:743.685000px;}
.y51{bottom:751.605000px;}
.y1d{bottom:755.745000px;}
.y9b{bottom:758.445000px;}
.yc4{bottom:759.705000px;}
.yf3{bottom:766.005000px;}
.y1b{bottom:769.065000px;}
.y50{bottom:774.645000px;}
.y9a{bottom:777.885000px;}
.yc3{bottom:782.745000px;}
.yf2{bottom:789.585000px;}
.y19{bottom:792.105000px;}
.y99{bottom:797.505000px;}
.y4f{bottom:797.685000px;}
.yc2{bottom:805.785000px;}
.y17{bottom:809.025000px;}
.yf1{bottom:811.185000px;}
.y98{bottom:817.125000px;}
.yc1{bottom:820.005000px;}
.y4e{bottom:820.545000px;}
.yf0{bottom:832.245000px;}
.y97{bottom:836.565000px;}
.y15{bottom:839.805000px;}
.y4d{bottom:843.585000px;}
.ybf{bottom:845.925000px;}
.yee{bottom:853.845000px;}
.y12{bottom:854.385000px;}
.y96{bottom:856.185000px;}
.y4c{bottom:866.625000px;}
.ybe{bottom:871.845000px;}
.yed{bottom:875.445000px;}
.y95{bottom:875.625000px;}
.y4b{bottom:889.710000px;}
.y94{bottom:895.290000px;}
.yec{bottom:896.550000px;}
.ybc{bottom:897.810000px;}
.y4a{bottom:912.750000px;}
.y93{bottom:914.730000px;}
.y10{bottom:915.450000px;}
.yeb{bottom:917.610000px;}
.yd{bottom:929.130000px;}
.y92{bottom:934.350000px;}
.y49{bottom:935.790000px;}
.yea{bottom:939.930000px;}
.y91{bottom:953.790000px;}
.y48{bottom:958.650000px;}
.ye9{bottom:960.990000px;}
.y90{bottom:973.410000px;}
.y47{bottom:981.690000px;}
.ye8{bottom:982.050000px;}
.y8f{bottom:992.850000px;}
.ye7{bottom:1003.110000px;}
.y46{bottom:1004.730000px;}
.y8e{bottom:1012.470000px;}
.yc{bottom:1013.370000px;}
.ye6{bottom:1024.170000px;}
.y45{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8d{bottom:1031.910000px;}
.ye4{bottom:1045.230000px;}
.y8{bottom:1046.850000px;}
.y44{bottom:1050.810000px;}
.y8c{bottom:1051.530000px;}
.y39{bottom:1065.210000px;}
.ye3{bottom:1067.550000px;}
.y8b{bottom:1070.970000px;}
.y43{bottom:1073.850000px;}
.ye2{bottom:1088.610000px;}
.y89{bottom:1090.590000px;}
.y42{bottom:1096.710000px;}
.ye1{bottom:1109.670000px;}
.y87{bottom:1111.110000px;}
.y41{bottom:1119.750000px;}
.y40{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3f{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1a{height:13.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h21{height:15.300000px;}
.h16{height:16.920000px;}
.h2b{height:18.345000px;}
.h2d{height:18.360000px;}
.h2c{height:18.382500px;}
.h2a{height:18.525000px;}
.h2e{height:18.540000px;}
.h2f{height:18.570000px;}
.h1f{height:18.720000px;}
.h39{height:19.965000px;}
.h1e{height:19.980000px;}
.h3a{height:20.001000px;}
.h3c{height:20.002500px;}
.h3d{height:20.520000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h3b{height:21.225000px;}
.h3f{height:21.240000px;}
.h3e{height:22.500000px;}
.h33{height:22.845000px;}
.h31{height:23.025000px;}
.h34{height:23.032500px;}
.h18{height:23.040000px;}
.h32{height:23.061000px;}
.h35{height:23.076000px;}
.h36{height:24.645000px;}
.h37{height:24.682500px;}
.h38{height:24.840000px;}
.h24{height:25.905000px;}
.h25{height:29.145586px;}
.h1c{height:30.060000px;}
.h15{height:30.780000px;}
.h10{height:32.670352px;}
.h1b{height:33.588984px;}
.h14{height:36.886641px;}
.h17{height:40.472227px;}
.h22{height:40.842773px;}
.h19{height:40.869141px;}
.h28{height:41.291016px;}
.h30{height:47.181000px;}
.h12{height:48.761719px;}
.h20{height:50.100469px;}
.h1d{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h27{height:55.054688px;}
.h29{height:55.209375px;}
.h6{height:57.051211px;}
.h11{height:61.042500px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h26{height:93.810000px;}
.h8{height:108.030000px;}
.h23{height:368.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.w1f{width:81.021000px;}
.w16{width:87.105000px;}
.w15{width:94.521000px;}
.w13{width:97.416000px;}
.w1e{width:101.325000px;}
.w14{width:107.985000px;}
.w20{width:114.645000px;}
.w5{width:124.005000px;}
.w1c{width:136.245000px;}
.w18{width:163.245000px;}
.w19{width:175.515000px;}
.w12{width:181.635000px;}
.w11{width:205.410000px;}
.w1a{width:207.919500px;}
.we{width:209.175000px;}
.wc{width:216.019500px;}
.wd{width:249.870000px;}
.w10{width:288.019500px;}
.w1b{width:330.915000px;}
.wa{width:332.115000px;}
.w17{width:336.304500px;}
.w9{width:356.464500px;}
.w1d{width:378.064500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.wf{width:675.090000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x10{left:16.740000px;}
.x2{left:21.049500px;}
.x55{left:22.845000px;}
.x58{left:24.105000px;}
.x3f{left:25.549500px;}
.x3e{left:27.889500px;}
.x50{left:29.730000px;}
.x16{left:30.769500px;}
.x3b{left:33.840000px;}
.x31{left:35.989500px;}
.x2f{left:37.969500px;}
.x7{left:39.780000px;}
.x52{left:41.400000px;}
.x3a{left:42.465000px;}
.x30{left:45.523500px;}
.x23{left:46.603500px;}
.x2e{left:49.123500px;}
.x42{left:50.205000px;}
.x56{left:53.280000px;}
.x28{left:54.883500px;}
.x2c{left:55.963500px;}
.x44{left:65.010000px;}
.x1b{left:66.223500px;}
.x1e{left:67.483500px;}
.x22{left:68.923500px;}
.x45{left:71.445000px;}
.x26{left:72.703500px;}
.xd{left:73.785000px;}
.x47{left:75.090000px;}
.x2b{left:76.843500px;}
.x40{left:79.183500px;}
.x36{left:81.930000px;}
.x33{left:83.323500px;}
.x32{left:87.150000px;}
.x4c{left:89.083500px;}
.x21{left:90.570000px;}
.x1d{left:91.830000px;}
.x61{left:93.223500px;}
.x27{left:94.710000px;}
.x2a{left:96.510000px;}
.x1a{left:98.850000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x3d{left:102.763500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x60{left:109.783500px;}
.x25{left:114.300000px;}
.x1f{left:116.130000px;}
.x1c{left:118.110000px;}
.x3c{left:119.323500px;}
.x18{left:120.810000px;}
.x5f{left:122.923500px;}
.x39{left:126.343500px;}
.x57{left:129.403500px;}
.x62{left:131.563500px;}
.x4a{left:133.950000px;}
.x54{left:134.983500px;}
.x59{left:137.683500px;}
.x5d{left:140.203500px;}
.x5b{left:141.823500px;}
.x5e{left:145.243500px;}
.x63{left:150.463500px;}
.x48{left:152.623500px;}
.x4d{left:155.010000px;}
.x3{left:157.005000px;}
.x46{left:159.328500px;}
.x5a{left:162.388500px;}
.xa{left:176.805000px;}
.x29{left:221.968500px;}
.x13{left:230.430000px;}
.x24{left:259.948500px;}
.x12{left:263.910000px;}
.x2d{left:268.228500px;}
.x5c{left:275.788500px;}
.x53{left:287.668500px;}
.x20{left:306.928500px;}
.x49{left:315.975000px;}
.x17{left:324.075000px;}
.xf{left:325.875000px;}
.x34{left:396.075000px;}
.x41{left:444.360000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x4e{left:486.120000px;}
.x37{left:493.500000px;}
.x19{left:573.960000px;}
.x4f{left:587.460000px;}
.x35{left:601.500000px;}
.x43{left:607.620000px;}
.x4b{left:646.890000px;}
.x6{left:661.650000px;}
.x51{left:668.490000px;}
.xe{left:680.323500px;}
.x38{left:696.030000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.496000pt;}
.ls8{letter-spacing:-0.294400pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.272000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.208000pt;}
.lsc{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.081067pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.ls10{letter-spacing:0.048000pt;}
.lsf{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.176000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.208000pt;}
.ls14{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.286933pt;}
.ls17{letter-spacing:0.304000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:7.632000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws8{word-spacing:-16.848000pt;}
.ws7{word-spacing:-16.416000pt;}
.ws2{word-spacing:-16.320000pt;}
.ws6{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws4{word-spacing:-14.955520pt;}
.ws5{word-spacing:-13.566933pt;}
.ws1a{word-spacing:-12.496000pt;}
.ws1e{word-spacing:-12.432000pt;}
.ws18{word-spacing:-12.368000pt;}
.ws1f{word-spacing:-12.352000pt;}
.ws1d{word-spacing:-12.272000pt;}
.wsd{word-spacing:-12.192000pt;}
.wsc{word-spacing:-12.048000pt;}
.ws19{word-spacing:-11.984000pt;}
.ws1b{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.872000pt;}
.ws15{word-spacing:-11.824000pt;}
.ws12{word-spacing:-11.792000pt;}
.ws10{word-spacing:-11.760000pt;}
.ws1c{word-spacing:-11.696000pt;}
.wse{word-spacing:-11.648000pt;}
.ws13{word-spacing:-11.616000pt;}
.wsb{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.536000pt;}
.wsa{word-spacing:-11.408000pt;}
.ws14{word-spacing:-11.328000pt;}
.wsf{word-spacing:-11.312000pt;}
.ws11{word-spacing:-11.280000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._3{width:0.936320pt;}
._4{width:2.224853pt;}
._18{width:3.114880pt;}
._d{width:4.656000pt;}
._e{width:5.808000pt;}
._b{width:7.488000pt;}
._5{width:8.544000pt;}
._6{width:9.863040pt;}
._7{width:12.503680pt;}
._1d{width:13.407360pt;}
._2{width:14.300160pt;}
._1{width:15.491840pt;}
._8{width:17.076480pt;}
._22{width:18.480000pt;}
._1c{width:20.016000pt;}
._19{width:20.928000pt;}
._28{width:21.936000pt;}
._16{width:22.896000pt;}
._17{width:23.831680pt;}
._9{width:25.536000pt;}
._a{width:26.494933pt;}
._f{width:27.841067pt;}
._1a{width:29.302613pt;}
._1f{width:30.720000pt;}
._c{width:31.728000pt;}
._1b{width:32.640000pt;}
._10{width:33.744000pt;}
._11{width:34.992000pt;}
._23{width:36.048000pt;}
._2b{width:36.960000pt;}
._12{width:37.920000pt;}
._13{width:39.024000pt;}
._20{width:40.656000pt;}
._21{width:41.731200pt;}
._24{width:43.440000pt;}
._32{width:44.880000pt;}
._14{width:47.184000pt;}
._15{width:48.503680pt;}
._29{width:49.819520pt;}
._1e{width:57.120000pt;}
._2d{width:58.128000pt;}
._25{width:62.352000pt;}
._34{width:69.779200pt;}
._33{width:70.944000pt;}
._2a{width:75.168000pt;}
._2e{width:81.424000pt;}
._2f{width:82.688000pt;}
._30{width:83.818667pt;}
._31{width:85.189333pt;}
._2c{width:99.600000pt;}
._27{width:106.304000pt;}
._26{width:579.952000pt;}
.fs3{font-size:10.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3e{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1e{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y24{bottom:3.200000pt;}
.y1a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y22{bottom:4.320000pt;}
.y8a{bottom:5.440000pt;}
.y88{bottom:5.600000pt;}
.yd0{bottom:7.040000pt;}
.yd4{bottom:7.066667pt;}
.yef{bottom:7.520000pt;}
.y3d{bottom:8.000000pt;}
.ye5{bottom:8.160000pt;}
.yf4{bottom:9.280000pt;}
.yb2{bottom:9.586667pt;}
.y36{bottom:9.746667pt;}
.yba{bottom:9.748000pt;}
.y1c{bottom:9.760000pt;}
.yae{bottom:9.786667pt;}
.ybd{bottom:11.200000pt;}
.yc0{bottom:11.360000pt;}
.y20{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y18{bottom:13.600000pt;}
.y38{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y3c{bottom:26.880000pt;}
.y35{bottom:30.066667pt;}
.yac{bottom:31.226667pt;}
.y13{bottom:40.680000pt;}
.y3b{bottom:45.920000pt;}
.y34{bottom:50.546667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3a{bottom:67.386667pt;}
.y33{bottom:71.026667pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y32{bottom:91.546667pt;}
.y111{bottom:101.920000pt;}
.y14a{bottom:102.880000pt;}
.y134{bottom:103.520000pt;}
.y12b{bottom:105.920000pt;}
.ybb{bottom:107.040000pt;}
.ye0{bottom:108.160000pt;}
.y86{bottom:109.920000pt;}
.y31{bottom:112.026667pt;}
.y6c{bottom:115.840000pt;}
.y135{bottom:122.240000pt;}
.y110{bottom:122.400000pt;}
.y149{bottom:123.200000pt;}
.y133{bottom:124.000000pt;}
.y12a{bottom:126.432000pt;}
.yb9{bottom:128.518667pt;}
.ydf{bottom:128.672000pt;}
.y85{bottom:130.432000pt;}
.y30{bottom:132.506667pt;}
.y6b{bottom:136.186667pt;}
.y10f{bottom:142.746667pt;}
.y148{bottom:143.706667pt;}
.y132{bottom:144.506667pt;}
.y129{bottom:146.746667pt;}
.yde{bottom:149.146667pt;}
.yb8{bottom:149.960000pt;}
.y84{bottom:150.906667pt;}
.y2f{bottom:152.826667pt;}
.y6a{bottom:156.666667pt;}
.y10e{bottom:163.226667pt;}
.y147{bottom:164.186667pt;}
.y131{bottom:164.986667pt;}
.y128{bottom:167.226667pt;}
.ydd{bottom:169.626667pt;}
.y83{bottom:171.226667pt;}
.yb7{bottom:171.400000pt;}
.y2e{bottom:173.306667pt;}
.y69{bottom:177.146667pt;}
.y10d{bottom:183.706667pt;}
.y146{bottom:184.666667pt;}
.y130{bottom:185.306667pt;}
.y127{bottom:187.706667pt;}
.ydc{bottom:190.106667pt;}
.y82{bottom:191.706667pt;}
.yb6{bottom:192.840000pt;}
.y2d{bottom:193.786667pt;}
.y68{bottom:197.626667pt;}
.y10c{bottom:204.186667pt;}
.y145{bottom:205.146667pt;}
.y12f{bottom:205.786667pt;}
.y126{bottom:208.186667pt;}
.ydb{bottom:210.586667pt;}
.y81{bottom:212.186667pt;}
.y2c{bottom:214.266667pt;}
.yb5{bottom:214.280000pt;}
.y67{bottom:218.106667pt;}
.y10b{bottom:224.666667pt;}
.y144{bottom:225.626667pt;}
.y12e{bottom:226.266667pt;}
.y125{bottom:228.666667pt;}
.yda{bottom:230.906667pt;}
.y80{bottom:232.666667pt;}
.y2b{bottom:234.746667pt;}
.yb4{bottom:235.880000pt;}
.y66{bottom:238.586667pt;}
.y10a{bottom:244.986667pt;}
.y143{bottom:245.946667pt;}
.y12d{bottom:246.746667pt;}
.y37{bottom:246.760000pt;}
.y124{bottom:249.146667pt;}
.yd9{bottom:251.386667pt;}
.y7f{bottom:253.146667pt;}
.y2a{bottom:255.226667pt;}
.yb3{bottom:257.320000pt;}
.y65{bottom:258.906667pt;}
.y109{bottom:265.466667pt;}
.y142{bottom:266.426667pt;}
.y12c{bottom:267.226667pt;}
.y123{bottom:269.466667pt;}
.y26{bottom:269.800000pt;}
.yd8{bottom:271.866667pt;}
.y7e{bottom:273.626667pt;}
.y29{bottom:275.546667pt;}
.yb1{bottom:278.760000pt;}
.y64{bottom:279.386667pt;}
.y108{bottom:285.946667pt;}
.y141{bottom:286.906667pt;}
.y122{bottom:289.946667pt;}
.yd7{bottom:292.346667pt;}
.y7d{bottom:293.946667pt;}
.y28{bottom:296.026667pt;}
.y63{bottom:299.866667pt;}
.yb0{bottom:300.200000pt;}
.y107{bottom:306.426667pt;}
.y140{bottom:307.386667pt;}
.y121{bottom:310.426667pt;}
.yd6{bottom:312.826667pt;}
.y7c{bottom:314.426667pt;}
.y27{bottom:316.533333pt;}
.y62{bottom:320.346667pt;}
.yaf{bottom:321.640000pt;}
.y106{bottom:326.906667pt;}
.y13f{bottom:327.866667pt;}
.y120{bottom:330.906667pt;}
.yd5{bottom:333.306667pt;}
.y7b{bottom:334.906667pt;}
.y61{bottom:340.826667pt;}
.yab{bottom:343.080000pt;}
.yd3{bottom:345.960000pt;}
.y105{bottom:347.386667pt;}
.y13e{bottom:348.386667pt;}
.y11f{bottom:351.426667pt;}
.y7a{bottom:355.426667pt;}
.y60{bottom:361.346667pt;}
.yad{bottom:364.546667pt;}
.yd2{bottom:364.706667pt;}
.y104{bottom:367.746667pt;}
.y13d{bottom:368.706667pt;}
.y11e{bottom:371.906667pt;}
.y79{bottom:375.906667pt;}
.y5f{bottom:381.666667pt;}
.yd1{bottom:383.426667pt;}
.y103{bottom:388.226667pt;}
.y13c{bottom:389.186667pt;}
.y11d{bottom:392.226667pt;}
.y78{bottom:396.226667pt;}
.yaa{bottom:396.706667pt;}
.y5e{bottom:402.146667pt;}
.y102{bottom:408.706667pt;}
.y13b{bottom:409.666667pt;}
.y11c{bottom:412.706667pt;}
.y77{bottom:416.706667pt;}
.ya9{bottom:417.186667pt;}
.ycf{bottom:420.866667pt;}
.y5d{bottom:422.626667pt;}
.y101{bottom:429.186667pt;}
.y13a{bottom:430.146667pt;}
.y11b{bottom:433.186667pt;}
.y76{bottom:437.186667pt;}
.ya8{bottom:437.666667pt;}
.y5c{bottom:443.106667pt;}
.y100{bottom:449.666667pt;}
.yce{bottom:450.306667pt;}
.y139{bottom:450.626667pt;}
.y11a{bottom:453.666667pt;}
.y75{bottom:457.666667pt;}
.ya7{bottom:458.146667pt;}
.y5b{bottom:463.586667pt;}
.yff{bottom:470.146667pt;}
.ycd{bottom:470.786667pt;}
.y138{bottom:471.106667pt;}
.y119{bottom:474.146667pt;}
.y74{bottom:478.146667pt;}
.ya6{bottom:478.466667pt;}
.y5a{bottom:484.066667pt;}
.yfe{bottom:490.466667pt;}
.ycc{bottom:491.266667pt;}
.y137{bottom:491.426667pt;}
.y118{bottom:494.466667pt;}
.y73{bottom:498.626667pt;}
.ya5{bottom:498.946667pt;}
.y59{bottom:504.386667pt;}
.yfd{bottom:510.946667pt;}
.ycb{bottom:511.746667pt;}
.y117{bottom:514.946667pt;}
.y72{bottom:518.946667pt;}
.ya4{bottom:519.426667pt;}
.y58{bottom:524.866667pt;}
.yfc{bottom:531.426667pt;}
.yca{bottom:532.226667pt;}
.y136{bottom:532.386667pt;}
.y116{bottom:535.426667pt;}
.y71{bottom:539.426667pt;}
.ya3{bottom:539.906667pt;}
.y57{bottom:545.346667pt;}
.yfb{bottom:551.906667pt;}
.ya2{bottom:552.546667pt;}
.y115{bottom:555.906667pt;}
.y70{bottom:559.906667pt;}
.y56{bottom:565.826667pt;}
.ya1{bottom:570.013333pt;}
.yfa{bottom:572.413333pt;}
.yc9{bottom:573.053333pt;}
.y114{bottom:576.413333pt;}
.y6f{bottom:580.413333pt;}
.yf9{bottom:585.053333pt;}
.y55{bottom:586.333333pt;}
.ya0{bottom:587.293333pt;}
.yc8{bottom:593.533333pt;}
.y113{bottom:596.893333pt;}
.y25{bottom:597.053333pt;}
.y6e{bottom:600.893333pt;}
.yf8{bottom:603.773333pt;}
.y9f{bottom:604.733333pt;}
.y54{bottom:606.653333pt;}
.y23{bottom:610.653333pt;}
.yc7{bottom:614.013333pt;}
.y6d{bottom:618.493333pt;}
.y9e{bottom:622.013333pt;}
.yf7{bottom:623.613333pt;}
.y53{bottom:627.133333pt;}
.y21{bottom:627.293333pt;}
.yc6{bottom:634.493333pt;}
.y112{bottom:637.693333pt;}
.y9d{bottom:639.453333pt;}
.yf6{bottom:642.333333pt;}
.y1f{bottom:645.053333pt;}
.y52{bottom:647.613333pt;}
.yc5{bottom:654.973333pt;}
.y9c{bottom:656.733333pt;}
.yf5{bottom:661.053333pt;}
.y51{bottom:668.093333pt;}
.y1d{bottom:671.773333pt;}
.y9b{bottom:674.173333pt;}
.yc4{bottom:675.293333pt;}
.yf3{bottom:680.893333pt;}
.y1b{bottom:683.613333pt;}
.y50{bottom:688.573333pt;}
.y9a{bottom:691.453333pt;}
.yc3{bottom:695.773333pt;}
.yf2{bottom:701.853333pt;}
.y19{bottom:704.093333pt;}
.y99{bottom:708.893333pt;}
.y4f{bottom:709.053333pt;}
.yc2{bottom:716.253333pt;}
.y17{bottom:719.133333pt;}
.yf1{bottom:721.053333pt;}
.y98{bottom:726.333333pt;}
.yc1{bottom:728.893333pt;}
.y4e{bottom:729.373333pt;}
.yf0{bottom:739.773333pt;}
.y97{bottom:743.613333pt;}
.y15{bottom:746.493333pt;}
.y4d{bottom:749.853333pt;}
.ybf{bottom:751.933333pt;}
.yee{bottom:758.973333pt;}
.y12{bottom:759.453333pt;}
.y96{bottom:761.053333pt;}
.y4c{bottom:770.333333pt;}
.ybe{bottom:774.973333pt;}
.yed{bottom:778.173333pt;}
.y95{bottom:778.333333pt;}
.y4b{bottom:790.853333pt;}
.y94{bottom:795.813333pt;}
.yec{bottom:796.933333pt;}
.ybc{bottom:798.053333pt;}
.y4a{bottom:811.333333pt;}
.y93{bottom:813.093333pt;}
.y10{bottom:813.733333pt;}
.yeb{bottom:815.653333pt;}
.yd{bottom:825.893333pt;}
.y92{bottom:830.533333pt;}
.y49{bottom:831.813333pt;}
.yea{bottom:835.493333pt;}
.y91{bottom:847.813333pt;}
.y48{bottom:852.133333pt;}
.ye9{bottom:854.213333pt;}
.y90{bottom:865.253333pt;}
.y47{bottom:872.613333pt;}
.ye8{bottom:872.933333pt;}
.y8f{bottom:882.533333pt;}
.ye7{bottom:891.653333pt;}
.y46{bottom:893.093333pt;}
.y8e{bottom:899.973333pt;}
.yc{bottom:900.773333pt;}
.ye6{bottom:910.373333pt;}
.y45{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8d{bottom:917.253333pt;}
.ye4{bottom:929.093333pt;}
.y8{bottom:930.533333pt;}
.y44{bottom:934.053333pt;}
.y8c{bottom:934.693333pt;}
.y39{bottom:946.853333pt;}
.ye3{bottom:948.933333pt;}
.y8b{bottom:951.973333pt;}
.y43{bottom:954.533333pt;}
.ye2{bottom:967.653333pt;}
.y89{bottom:969.413333pt;}
.y42{bottom:974.853333pt;}
.ye1{bottom:986.373333pt;}
.y87{bottom:987.653333pt;}
.y41{bottom:995.333333pt;}
.y40{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3f{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1a{height:11.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h21{height:13.600000pt;}
.h16{height:15.040000pt;}
.h2b{height:16.306667pt;}
.h2d{height:16.320000pt;}
.h2c{height:16.340000pt;}
.h2a{height:16.466667pt;}
.h2e{height:16.480000pt;}
.h2f{height:16.506667pt;}
.h1f{height:16.640000pt;}
.h39{height:17.746667pt;}
.h1e{height:17.760000pt;}
.h3a{height:17.778667pt;}
.h3c{height:17.780000pt;}
.h3d{height:18.240000pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h3b{height:18.866667pt;}
.h3f{height:18.880000pt;}
.h3e{height:20.000000pt;}
.h33{height:20.306667pt;}
.h31{height:20.466667pt;}
.h34{height:20.473333pt;}
.h18{height:20.480000pt;}
.h32{height:20.498667pt;}
.h35{height:20.512000pt;}
.h36{height:21.906667pt;}
.h37{height:21.940000pt;}
.h38{height:22.080000pt;}
.h24{height:23.026667pt;}
.h25{height:25.907187pt;}
.h1c{height:26.720000pt;}
.h15{height:27.360000pt;}
.h10{height:29.040312pt;}
.h1b{height:29.856875pt;}
.h14{height:32.788125pt;}
.h17{height:35.975313pt;}
.h22{height:36.304688pt;}
.h19{height:36.328125pt;}
.h28{height:36.703125pt;}
.h30{height:41.938667pt;}
.h12{height:43.343750pt;}
.h20{height:44.533750pt;}
.h1d{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h27{height:48.937500pt;}
.h29{height:49.075000pt;}
.h6{height:50.712187pt;}
.h11{height:54.260000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h26{height:83.386667pt;}
.h8{height:96.026667pt;}
.h23{height:327.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.w1f{width:72.018667pt;}
.w16{width:77.426667pt;}
.w15{width:84.018667pt;}
.w13{width:86.592000pt;}
.w1e{width:90.066667pt;}
.w14{width:95.986667pt;}
.w20{width:101.906667pt;}
.w5{width:110.226667pt;}
.w1c{width:121.106667pt;}
.w18{width:145.106667pt;}
.w19{width:156.013333pt;}
.w12{width:161.453333pt;}
.w11{width:182.586667pt;}
.w1a{width:184.817333pt;}
.we{width:185.933333pt;}
.wc{width:192.017333pt;}
.wd{width:222.106667pt;}
.w10{width:256.017333pt;}
.w1b{width:294.146667pt;}
.wa{width:295.213333pt;}
.w17{width:298.937333pt;}
.w9{width:316.857333pt;}
.w1d{width:336.057333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.wf{width:600.080000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x10{left:14.880000pt;}
.x2{left:18.710667pt;}
.x55{left:20.306667pt;}
.x58{left:21.426667pt;}
.x3f{left:22.710667pt;}
.x3e{left:24.790667pt;}
.x50{left:26.426667pt;}
.x16{left:27.350667pt;}
.x3b{left:30.080000pt;}
.x31{left:31.990667pt;}
.x2f{left:33.750667pt;}
.x7{left:35.360000pt;}
.x52{left:36.800000pt;}
.x3a{left:37.746667pt;}
.x30{left:40.465333pt;}
.x23{left:41.425333pt;}
.x2e{left:43.665333pt;}
.x42{left:44.626667pt;}
.x56{left:47.360000pt;}
.x28{left:48.785333pt;}
.x2c{left:49.745333pt;}
.x44{left:57.786667pt;}
.x1b{left:58.865333pt;}
.x1e{left:59.985333pt;}
.x22{left:61.265333pt;}
.x45{left:63.506667pt;}
.x26{left:64.625333pt;}
.xd{left:65.586667pt;}
.x47{left:66.746667pt;}
.x2b{left:68.305333pt;}
.x40{left:70.385333pt;}
.x36{left:72.826667pt;}
.x33{left:74.065333pt;}
.x32{left:77.466667pt;}
.x4c{left:79.185333pt;}
.x21{left:80.506667pt;}
.x1d{left:81.626667pt;}
.x61{left:82.865333pt;}
.x27{left:84.186667pt;}
.x2a{left:85.786667pt;}
.x1a{left:87.866667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x3d{left:91.345333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x60{left:97.585333pt;}
.x25{left:101.600000pt;}
.x1f{left:103.226667pt;}
.x1c{left:104.986667pt;}
.x3c{left:106.065333pt;}
.x18{left:107.386667pt;}
.x5f{left:109.265333pt;}
.x39{left:112.305333pt;}
.x57{left:115.025333pt;}
.x62{left:116.945333pt;}
.x4a{left:119.066667pt;}
.x54{left:119.985333pt;}
.x59{left:122.385333pt;}
.x5d{left:124.625333pt;}
.x5b{left:126.065333pt;}
.x5e{left:129.105333pt;}
.x63{left:133.745333pt;}
.x48{left:135.665333pt;}
.x4d{left:137.786667pt;}
.x3{left:139.560000pt;}
.x46{left:141.625333pt;}
.x5a{left:144.345333pt;}
.xa{left:157.160000pt;}
.x29{left:197.305333pt;}
.x13{left:204.826667pt;}
.x24{left:231.065333pt;}
.x12{left:234.586667pt;}
.x2d{left:238.425333pt;}
.x5c{left:245.145333pt;}
.x53{left:255.705333pt;}
.x20{left:272.825333pt;}
.x49{left:280.866667pt;}
.x17{left:288.066667pt;}
.xf{left:289.666667pt;}
.x34{left:352.066667pt;}
.x41{left:394.986667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x4e{left:432.106667pt;}
.x37{left:438.666667pt;}
.x19{left:510.186667pt;}
.x4f{left:522.186667pt;}
.x35{left:534.666667pt;}
.x43{left:540.106667pt;}
.x4b{left:575.013333pt;}
.x6{left:588.133333pt;}
.x51{left:594.213333pt;}
.xe{left:604.732000pt;}
.x38{left:618.693333pt;}
}




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