
    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_a7667dbe75225e7ddf8e5cce.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4775f65bbc4aace5bdec7103.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f7428d31194c82da338b3a0d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a5aa41d80868d670be2f25b5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_35c5539635b3281911f46350.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f9199b13e12b801416fac203.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32aa5922f90bd52d900d502e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e656feb77d981c88072db13.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ddd25924b9c86676c981ae2b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_344e5c367c809f4d254f3eef.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_15092e7d7c53b28a4f8f2a2e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_13c406f5633b31515da7e8aa.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_76310264e6e8c62477a42261.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7792ffdbc928f21fef2b9504.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_830f8ce108acea5b868474b7.woff')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_822c3837c0ad8e16352a0256.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_87707ab479205d1c0eaa8010.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5328aa2716e4b87883954845.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_59fa97eba0775ae123e9ce12.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1dbdd938d0eca4829f2dcdbc.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_48c886caeed69ae8e405f200.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_a12d33efcf511f04772e9198.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_f98d2c075718a9ccdf4c6518.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_6e0f56d691b07d7f106ec19b.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1e7470da70b49df95e003aa7.woff')format("woff");}.ff19{font-family:ff19;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263375,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-70.218000px;}
.v9{vertical-align:-4.500000px;}
.v8{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.500000px;}
.v2{vertical-align:3.000000px;}
.v3{vertical-align:4.500000px;}
.va{vertical-align:5.700000px;}
.vb{vertical-align:22.800000px;}
.v4{vertical-align:39.000000px;}
.v6{vertical-align:69.000000px;}
.v5{vertical-align:72.000000px;}
.vc{vertical-align:141.300000px;}
.lsa{letter-spacing:-15.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:18.000000px;}
.ls7{letter-spacing:470.472000px;}
.ls5{letter-spacing:473.232000px;}
.ls6{letter-spacing:473.412000px;}
.ls1{letter-spacing:474.612000px;}
.ls3{letter-spacing:474.672000px;}
.ls2{letter-spacing:474.972000px;}
.ls8{letter-spacing:477.672000px;}
.ls4{letter-spacing:479.112000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-36.660000px;}
.ws6{word-spacing:-34.827000px;}
.wsf{word-spacing:-18.981000px;}
.ws0{word-spacing:-17.514000px;}
.ws3{word-spacing:-15.846000px;}
.ws7{word-spacing:-0.051000px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:7.272000px;}
.ws5{word-spacing:153.807000px;}
.wsb{word-spacing:290.937000px;}
.wsc{word-spacing:394.179000px;}
.ws4{word-spacing:433.863000px;}
.wsa{word-spacing:568.773000px;}
.ws9{word-spacing:677.682000px;}
.ws8{word-spacing:928.737000px;}
.ws1{word-spacing:1468.161000px;}
._1a{margin-left:-17.406000px;}
._28{margin-left:-16.380000px;}
._25{margin-left:-14.391000px;}
._19{margin-left:-10.962000px;}
._21{margin-left:-9.477000px;}
._15{margin-left:-8.172000px;}
._12{margin-left:-7.065000px;}
._c{margin-left:-5.418000px;}
._3{margin-left:-4.320000px;}
._1{margin-left:-2.448000px;}
._0{margin-left:-1.224000px;}
._b{width:1.296000px;}
._8{width:2.880000px;}
._10{width:4.050000px;}
._9{width:5.076000px;}
._7{width:6.516000px;}
._6{width:7.596000px;}
._2{width:8.784000px;}
._e{width:10.026000px;}
._5{width:11.088000px;}
._a{width:12.240000px;}
._4{width:14.256000px;}
._d{width:16.245000px;}
._18{width:18.765000px;}
._f{width:23.556000px;}
._17{width:24.822000px;}
._13{width:25.848000px;}
._11{width:26.865000px;}
._14{width:28.152000px;}
._16{width:29.178000px;}
._34{width:30.348000px;}
._31{width:31.407000px;}
._33{width:32.760000px;}
._2c{width:52.839000px;}
._2d{width:71.595000px;}
._27{width:72.684000px;}
._30{width:78.417000px;}
._26{width:84.771000px;}
._24{width:85.782000px;}
._2f{width:113.274000px;}
._22{width:138.393000px;}
._23{width:140.391000px;}
._20{width:148.491000px;}
._1e{width:184.908000px;}
._1c{width:212.028000px;}
._2b{width:315.198000px;}
._1f{width:316.605000px;}
._1d{width:329.625000px;}
._2a{width:350.730000px;}
._29{width:370.494000px;}
._1b{width:484.014000px;}
._32{width:492.786000px;}
._2e{width:546.276000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:24.000000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs6{font-size:51.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:32.775000px;}
.y4d{bottom:35.700000px;}
.y78{bottom:40.725000px;}
.y15b{bottom:45.000000px;}
.y110{bottom:49.275000px;}
.yd4{bottom:49.350000px;}
.ya9{bottom:50.025000px;}
.y4c{bottom:62.700000px;}
.y77{bottom:65.176500px;}
.y23{bottom:65.479500px;}
.yf7{bottom:66.600000px;}
.y102{bottom:68.025000px;}
.ya8{bottom:71.256000px;}
.y15a{bottom:74.850000px;}
.yd3{bottom:77.026500px;}
.y4b{bottom:79.575000px;}
.y76{bottom:82.125000px;}
.y22{bottom:82.428000px;}
.y159{bottom:84.225000px;}
.ya7{bottom:88.204500px;}
.yf6{bottom:92.550000px;}
.y11b{bottom:93.300000px;}
.y158{bottom:94.275000px;}
.yd2{bottom:94.350000px;}
.y21{bottom:99.376500px;}
.ya6{bottom:104.704500px;}
.y4a{bottom:105.528000px;}
.y75{bottom:108.375000px;}
.y11a{bottom:109.800000px;}
.yd1{bottom:110.550000px;}
.yf5{bottom:114.150000px;}
.y157{bottom:115.200000px;}
.y20{bottom:115.951500px;}
.ya5{bottom:121.654500px;}
.y49{bottom:122.403000px;}
.y156{bottom:124.875000px;}
.y74{bottom:125.325000px;}
.y119{bottom:126.750000px;}
.y10f{bottom:132.075000px;}
.y1f{bottom:132.525000px;}
.y10d{bottom:132.825000px;}
.yf4{bottom:134.250000px;}
.ya4{bottom:138.603000px;}
.y48{bottom:138.976500px;}
.y73{bottom:141.900000px;}
.yd0{bottom:144.375000px;}
.y1e{bottom:149.400000px;}
.y155{bottom:153.375150px;}
.ya3{bottom:155.478000px;}
.y47{bottom:155.926500px;}
.yf3{bottom:156.975000px;}
.y118{bottom:160.575000px;}
.ycf{bottom:162.375000px;}
.y154{bottom:163.050000px;}
.y72{bottom:167.401500px;}
.ya2{bottom:172.051500px;}
.y153{bottom:172.425000px;}
.y46{bottom:172.500000px;}
.y1d{bottom:174.976500px;}
.yce{bottom:179.325000px;}
.y71{bottom:184.350000px;}
.ya1{bottom:188.625000px;}
.y152{bottom:191.475000px;}
.y1c{bottom:192.226500px;}
.yf2{bottom:194.400000px;}
.ycd{bottom:195.153000px;}
.y10c{bottom:196.200000px;}
.y45{bottom:198.750000px;}
.y151{bottom:201.225000px;}
.ya0{bottom:205.500000px;}
.y1b{bottom:209.175000px;}
.y70{bottom:210.600000px;}
.ycc{bottom:211.653000px;}
.y9f{bottom:222.075000px;}
.y44{bottom:225.375000px;}
.y6f{bottom:227.925000px;}
.ycb{bottom:228.601500px;}
.y150{bottom:229.650000px;}
.y1a{bottom:235.125000px;}
.y10e{bottom:237.900000px;}
.y9e{bottom:239.025000px;}
.y14f{bottom:239.400000px;}
.y6e{bottom:244.500000px;}
.yca{bottom:245.550000px;}
.y14e{bottom:249.075000px;}
.y43{bottom:251.326500px;}
.y19{bottom:252.000000px;}
.y9d{bottom:257.026500px;}
.y10b{bottom:259.500000px;}
.y6d{bottom:261.000000px;}
.yc9{bottom:262.125000px;}
.y14d{bottom:267.825000px;}
.y42{bottom:268.201500px;}
.y18{bottom:268.575000px;}
.y9c{bottom:273.226500px;}
.y10a{bottom:276.450000px;}
.y14c{bottom:277.200000px;}
.y6c{bottom:277.950000px;}
.yc8{bottom:278.625000px;}
.yf1{bottom:284.400000px;}
.y41{bottom:284.775000px;}
.y17{bottom:285.525000px;}
.y9b{bottom:288.675000px;}
.yc7{bottom:295.200000px;}
.y14b{bottom:296.625000px;}
.yf0{bottom:301.350000px;}
.y6b{bottom:303.901500px;}
.y9a{bottom:304.500000px;}
.y40{bottom:311.100000px;}
.y16{bottom:311.400000px;}
.y14a{bottom:315.375000px;}
.yef{bottom:318.225000px;}
.y6a{bottom:320.401500px;}
.yc6{bottom:321.153000px;}
.y101{bottom:321.825000px;}
.y149{bottom:325.050000px;}
.y3f{bottom:327.975000px;}
.y15{bottom:328.350000px;}
.y99{bottom:330.450000px;}
.yee{bottom:334.800000px;}
.y109{bottom:336.900000px;}
.y69{bottom:337.351500px;}
.yc5{bottom:338.403000px;}
.y117{bottom:343.125000px;}
.y148{bottom:344.175000px;}
.y14{bottom:345.225000px;}
.y98{bottom:347.400000px;}
.yed{bottom:351.750000px;}
.y147{bottom:353.475000px;}
.y3e{bottom:353.925000px;}
.y68{bottom:354.301500px;}
.yc4{bottom:355.353000px;}
.y108{bottom:355.650000px;}
.y97{bottom:363.900000px;}
.y100{bottom:363.975000px;}
.y3d{bottom:370.800000px;}
.y67{bottom:370.801500px;}
.y13{bottom:371.175000px;}
.yc3{bottom:371.926500px;}
.y146{bottom:372.975000px;}
.yec{bottom:377.250000px;}
.y96{bottom:380.850000px;}
.y66{bottom:387.750000px;}
.y12{bottom:388.425000px;}
.yc2{bottom:388.801500px;}
.y145{bottom:391.650300px;}
.y3c{bottom:396.750000px;}
.y144{bottom:401.400300px;}
.y95{bottom:402.828000px;}
.y65{bottom:404.325000px;}
.yc1{bottom:405.375000px;}
.yff{bottom:406.425000px;}
.y143{bottom:410.775300px;}
.y107{bottom:414.300000px;}
.y11{bottom:414.750000px;}
.y94{bottom:419.703000px;}
.y142{bottom:420.450300px;}
.y64{bottom:421.200000px;}
.yc0{bottom:421.950000px;}
.y3b{bottom:422.700000px;}
.yeb{bottom:424.051500px;}
.y116{bottom:427.726500px;}
.y141{bottom:429.825300px;}
.y10{bottom:431.325000px;}
.y93{bottom:436.651500px;}
.y140{bottom:439.575300px;}
.y3a{bottom:439.950000px;}
.yea{bottom:440.626500px;}
.y63{bottom:447.151500px;}
.ybf{bottom:447.828000px;}
.yf{bottom:448.200000px;}
.y13f{bottom:448.875150px;}
.y92{bottom:452.850000px;}
.ye9{bottom:457.575000px;}
.y13e{bottom:458.625150px;}
.yfe{bottom:461.925000px;}
.y62{bottom:464.101500px;}
.ybe{bottom:464.776500px;}
.y39{bottom:465.900000px;}
.y13d{bottom:468.000150px;}
.y91{bottom:470.100000px;}
.ye{bottom:473.776500px;}
.y13c{bottom:477.675000px;}
.y61{bottom:480.976500px;}
.ybd{bottom:481.725000px;}
.y38{bottom:483.150000px;}
.yd{bottom:490.725000px;}
.y90{bottom:492.829500px;}
.y115{bottom:492.900000px;}
.ye8{bottom:493.203000px;}
.y13b{bottom:496.800000px;}
.y60{bottom:497.925000px;}
.yfd{bottom:505.125000px;}
.y13a{bottom:506.475000px;}
.yc{bottom:507.600000px;}
.y37{bottom:509.100000px;}
.y8f{bottom:509.403000px;}
.ye7{bottom:509.776500px;}
.ybc{bottom:524.175000px;}
.yb{bottom:524.925000px;}
.y139{bottom:525.600000px;}
.y8e{bottom:526.278000px;}
.ye6{bottom:526.350000px;}
.y5f{bottom:529.200000px;}
.y138{bottom:534.975000px;}
.y36{bottom:535.350000px;}
.ye5{bottom:543.225000px;}
.y8d{bottom:543.226500px;}
.ybb{bottom:550.428000px;}
.y137{bottom:554.025000px;}
.yfc{bottom:554.775000px;}
.ya{bottom:556.950000px;}
.y106{bottom:557.250000px;}
.y8c{bottom:559.801500px;}
.y35{bottom:560.926500px;}
.y136{bottom:563.775000px;}
.yba{bottom:567.828000px;}
.y135{bottom:573.075000px;}
.y105{bottom:574.875000px;}
.y5e{bottom:576.376500px;}
.y8b{bottom:576.676500px;}
.ye4{bottom:576.751500px;}
.y34{bottom:578.551500px;}
.yb9{bottom:584.328000px;}
.y9{bottom:590.776500px;}
.y134{bottom:592.200000px;}
.y8a{bottom:593.250000px;}
.y5d{bottom:593.325000px;}
.ye3{bottom:593.626500px;}
.y33{bottom:595.126500px;}
.yb8{bottom:600.828000px;}
.y133{bottom:601.575000px;}
.y8{bottom:607.725000px;}
.y89{bottom:610.200000px;}
.y132{bottom:611.250000px;}
.y32{bottom:612.001500px;}
.yb7{bottom:617.776500px;}
.y5c{bottom:619.575000px;}
.y7{bottom:624.225000px;}
.ye2{bottom:627.150000px;}
.y31{bottom:628.575000px;}
.y131{bottom:630.000000px;}
.yb6{bottom:634.350000px;}
.y88{bottom:634.651500px;}
.y5b{bottom:636.600000px;}
.y130{bottom:640.050000px;}
.y6{bottom:640.800000px;}
.ye1{bottom:643.650000px;}
.yb5{bottom:650.925000px;}
.y87{bottom:651.225000px;}
.y5a{bottom:653.100000px;}
.y30{bottom:654.525000px;}
.yfb{bottom:657.375000px;}
.y12f{bottom:658.800000px;}
.y86{bottom:667.800000px;}
.y12e{bottom:668.175000px;}
.y59{bottom:669.600000px;}
.ye0{bottom:669.975000px;}
.y2f{bottom:671.400000px;}
.y85{bottom:684.675000px;}
.y12d{bottom:687.600000px;}
.yb4{bottom:693.750000px;}
.y58{bottom:695.551500px;}
.ydf{bottom:695.850000px;}
.y12c{bottom:696.975000px;}
.y2e{bottom:698.775000px;}
.y84{bottom:702.003000px;}
.y12b{bottom:706.650000px;}
.yb3{bottom:710.625000px;}
.y57{bottom:712.501500px;}
.yde{bottom:713.175000px;}
.y83{bottom:718.878000px;}
.y12a{bottom:725.775000px;}
.y114{bottom:726.900000px;}
.y56{bottom:729.376500px;}
.y2d{bottom:733.728000px;}
.y129{bottom:735.075000px;}
.y82{bottom:735.526500px;}
.ydd{bottom:739.425000px;}
.y128{bottom:744.825000px;}
.y55{bottom:746.325000px;}
.yb2{bottom:746.625000px;}
.y104{bottom:750.225000px;}
.y2c{bottom:750.603000px;}
.y81{bottom:752.401500px;}
.yb0{bottom:761.400000px;}
.yb1{bottom:762.525000px;}
.y127{bottom:764.250150px;}
.y2b{bottom:767.551500px;}
.y80{bottom:769.276500px;}
.y54{bottom:770.401500px;}
.y126{bottom:773.250000px;}
.y5{bottom:773.626500px;}
.y165{bottom:777.975000px;}
.ydc{bottom:780.825000px;}
.y125{bottom:783.375000px;}
.y2a{bottom:784.126500px;}
.y7f{bottom:785.850000px;}
.y53{bottom:786.975000px;}
.y4{bottom:792.751500px;}
.y113{bottom:794.550000px;}
.y164{bottom:797.025000px;}
.y29{bottom:800.700000px;}
.y124{bottom:802.050000px;}
.yaf{bottom:804.601500px;}
.y7e{bottom:805.650000px;}
.y163{bottom:806.400000px;}
.ydb{bottom:807.153000px;}
.y3{bottom:811.425000px;}
.y123{bottom:811.800000px;}
.yae{bottom:812.175000px;}
.y52{bottom:813.300000px;}
.yda{bottom:824.028000px;}
.y162{bottom:825.525000px;}
.y28{bottom:826.578000px;}
.y122{bottom:830.850000px;}
.y7d{bottom:831.903000px;}
.yfa{bottom:831.975000px;}
.y161{bottom:834.825000px;}
.y112{bottom:836.325000px;}
.y51{bottom:839.178000px;}
.y121{bottom:840.225000px;}
.yd9{bottom:840.601500px;}
.yad{bottom:843.525000px;}
.y27{bottom:843.526500px;}
.y7c{bottom:848.851500px;}
.y120{bottom:850.275000px;}
.y160{bottom:854.325000px;}
.y50{bottom:856.126500px;}
.yd8{bottom:857.550000px;}
.y26{bottom:860.401500px;}
.y15f{bottom:863.625000px;}
.yac{bottom:864.000000px;}
.y7b{bottom:865.800000px;}
.y11f{bottom:869.025000px;}
.y4f{bottom:872.700000px;}
.yd7{bottom:874.050000px;}
.yf9{bottom:874.425000px;}
.y25{bottom:876.975000px;}
.y11e{bottom:878.775000px;}
.y7a{bottom:882.300000px;}
.y15e{bottom:882.750150px;}
.y2{bottom:884.550000px;}
.y15d{bottom:892.425000px;}
.yab{bottom:893.550000px;}
.y24{bottom:893.925000px;}
.y4e{bottom:899.700000px;}
.y15c{bottom:902.175000px;}
.y1{bottom:904.350000px;}
.y103{bottom:906.825000px;}
.yd6{bottom:907.950000px;}
.y79{bottom:908.625000px;}
.y11d{bottom:909.000000px;}
.yaa{bottom:910.425000px;}
.yd5{bottom:924.450000px;}
.yf8{bottom:925.575000px;}
.y111{bottom:926.325000px;}
.h22{height:35.332031px;}
.h3{height:37.546875px;}
.h21{height:40.675781px;}
.h1c{height:50.053711px;}
.h1b{height:52.419963px;}
.h8{height:59.449219px;}
.h5{height:62.578125px;}
.h18{height:63.492188px;}
.h4{height:65.707031px;}
.h17{height:66.907031px;}
.h16{height:68.707031px;}
.h15{height:69.907031px;}
.he{height:71.407031px;}
.hf{height:72.907031px;}
.h2{height:75.093750px;}
.h1d{height:94.507031px;}
.h10{height:104.707031px;}
.h12{height:134.707031px;}
.h11{height:137.707031px;}
.h1e{height:200.749219px;}
.h20{height:942.750000px;}
.h1f{height:942.825000px;}
.h23{height:945.375000px;}
.h24{height:945.750000px;}
.h1a{height:949.500000px;}
.h19{height:949.650000px;}
.h6{height:952.950000px;}
.h7{height:953.250000px;}
.hc{height:963.375000px;}
.hd{height:963.750000px;}
.hb{height:967.500000px;}
.ha{height:967.650000px;}
.h1{height:979.500000px;}
.h0{height:979.575000px;}
.h9{height:981.750000px;}
.h14{height:982.500000px;}
.h13{height:982.800000px;}
.w2{width:576.750000px;}
.we{width:590.775000px;}
.wf{width:591.000000px;}
.w5{width:594.750000px;}
.wa{width:602.625000px;}
.wb{width:603.000000px;}
.w10{width:603.750000px;}
.w11{width:607.350000px;}
.w9{width:607.500000px;}
.w8{width:607.650000px;}
.wc{width:614.175000px;}
.wd{width:614.250000px;}
.w3{width:616.350000px;}
.w4{width:616.500000px;}
.w0{width:623.850000px;}
.w1{width:624.000000px;}
.w7{width:630.750000px;}
.w6{width:631.050000px;}
.x0{left:0.000000px;}
.x50{left:10.800000px;}
.x55{left:11.865000px;}
.x3c{left:28.425000px;}
.x7{left:37.050000px;}
.x9{left:38.550000px;}
.x2b{left:45.750000px;}
.x2d{left:52.948500px;}
.x8{left:54.000000px;}
.x12{left:55.800000px;}
.x3e{left:57.600000px;}
.x14{left:58.651500px;}
.x2e{left:61.198500px;}
.x1c{left:62.625000px;}
.x1a{left:64.050000px;}
.x37{left:65.550000px;}
.x1e{left:67.650000px;}
.x1f{left:69.150000px;}
.x6{left:70.573500px;}
.xa{left:71.625000px;}
.xb{left:72.750000px;}
.xe{left:73.800000px;}
.x19{left:77.400000px;}
.x2a{left:79.198500px;}
.x31{left:80.250000px;}
.x3b{left:82.800000px;}
.x18{left:85.650000px;}
.x16{left:86.775000px;}
.x13{left:91.425000px;}
.x15{left:92.850000px;}
.x1d{left:93.975000px;}
.xc{left:95.775000px;}
.xf{left:96.825000px;}
.x2c{left:98.250000px;}
.x3a{left:99.750000px;}
.x35{left:100.800000px;}
.x1b{left:102.225000px;}
.x29{left:104.398500px;}
.x21{left:106.200000px;}
.x22{left:109.050000px;}
.xd{left:112.350000px;}
.x17{left:116.248500px;}
.x11{left:120.600000px;}
.x57{left:121.648500px;}
.x39{left:123.148500px;}
.x38{left:124.198500px;}
.x36{left:125.623500px;}
.x34{left:127.426500px;}
.x28{left:131.776500px;}
.x25{left:132.823500px;}
.x23{left:133.950000px;}
.x4f{left:136.800000px;}
.x10{left:138.225000px;}
.x33{left:144.750000px;}
.x27{left:148.350000px;}
.x26{left:150.450000px;}
.x24{left:151.575000px;}
.x51{left:154.800000px;}
.x49{left:161.625000px;}
.x40{left:164.175000px;}
.x41{left:165.975000px;}
.x52{left:191.550000px;}
.x4a{left:204.450000px;}
.x2f{left:231.825000px;}
.x3{left:237.975000px;}
.x3d{left:255.600000px;}
.x42{left:270.375000px;}
.x43{left:271.785000px;}
.x1{left:293.400000px;}
.x4{left:296.235000px;}
.x5{left:324.735000px;}
.x56{left:356.775000px;}
.x44{left:376.575000px;}
.x45{left:378.000000px;}
.x53{left:384.150000px;}
.x4c{left:396.000000px;}
.x4b{left:397.425000px;}
.x30{left:402.150000px;}
.x2{left:405.000000px;}
.x54{left:434.835000px;}
.x46{left:482.775000px;}
.x47{left:484.200000px;}
.x4e{left:501.825000px;}
.x4d{left:504.375000px;}
.x58{left:515.175000px;}
.x3f{left:522.750000px;}
.x20{left:532.425000px;}
.x32{left:540.375000px;}
.x48{left:589.710000px;}
@media print{
.v1{vertical-align:-62.416000pt;}
.v9{vertical-align:-4.000000pt;}
.v8{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.333333pt;}
.v2{vertical-align:2.666667pt;}
.v3{vertical-align:4.000000pt;}
.va{vertical-align:5.066667pt;}
.vb{vertical-align:20.266667pt;}
.v4{vertical-align:34.666667pt;}
.v6{vertical-align:61.333333pt;}
.v5{vertical-align:64.000000pt;}
.vc{vertical-align:125.600000pt;}
.lsa{letter-spacing:-13.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:16.000000pt;}
.ls7{letter-spacing:418.197333pt;}
.ls5{letter-spacing:420.650667pt;}
.ls6{letter-spacing:420.810667pt;}
.ls1{letter-spacing:421.877333pt;}
.ls3{letter-spacing:421.930667pt;}
.ls2{letter-spacing:422.197333pt;}
.ls8{letter-spacing:424.597333pt;}
.ls4{letter-spacing:425.877333pt;}
.wse{word-spacing:-32.586667pt;}
.ws6{word-spacing:-30.957333pt;}
.wsf{word-spacing:-16.872000pt;}
.ws0{word-spacing:-15.568000pt;}
.ws3{word-spacing:-14.085333pt;}
.ws7{word-spacing:-0.045333pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:6.464000pt;}
.ws5{word-spacing:136.717333pt;}
.wsb{word-spacing:258.610667pt;}
.wsc{word-spacing:350.381333pt;}
.ws4{word-spacing:385.656000pt;}
.wsa{word-spacing:505.576000pt;}
.ws9{word-spacing:602.384000pt;}
.ws8{word-spacing:825.544000pt;}
.ws1{word-spacing:1305.032000pt;}
._1a{margin-left:-15.472000pt;}
._28{margin-left:-14.560000pt;}
._25{margin-left:-12.792000pt;}
._19{margin-left:-9.744000pt;}
._21{margin-left:-8.424000pt;}
._15{margin-left:-7.264000pt;}
._12{margin-left:-6.280000pt;}
._c{margin-left:-4.816000pt;}
._3{margin-left:-3.840000pt;}
._1{margin-left:-2.176000pt;}
._0{margin-left:-1.088000pt;}
._b{width:1.152000pt;}
._8{width:2.560000pt;}
._10{width:3.600000pt;}
._9{width:4.512000pt;}
._7{width:5.792000pt;}
._6{width:6.752000pt;}
._2{width:7.808000pt;}
._e{width:8.912000pt;}
._5{width:9.856000pt;}
._a{width:10.880000pt;}
._4{width:12.672000pt;}
._d{width:14.440000pt;}
._18{width:16.680000pt;}
._f{width:20.938667pt;}
._17{width:22.064000pt;}
._13{width:22.976000pt;}
._11{width:23.880000pt;}
._14{width:25.024000pt;}
._16{width:25.936000pt;}
._34{width:26.976000pt;}
._31{width:27.917333pt;}
._33{width:29.120000pt;}
._2c{width:46.968000pt;}
._2d{width:63.640000pt;}
._27{width:64.608000pt;}
._30{width:69.704000pt;}
._26{width:75.352000pt;}
._24{width:76.250667pt;}
._2f{width:100.688000pt;}
._22{width:123.016000pt;}
._23{width:124.792000pt;}
._20{width:131.992000pt;}
._1e{width:164.362667pt;}
._1c{width:188.469333pt;}
._2b{width:280.176000pt;}
._1f{width:281.426667pt;}
._1d{width:293.000000pt;}
._2a{width:311.760000pt;}
._29{width:329.328000pt;}
._1b{width:430.234667pt;}
._32{width:438.032000pt;}
._2e{width:485.578667pt;}
.fs5{font-size:21.333333pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs6{font-size:45.333333pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:29.133333pt;}
.y4d{bottom:31.733333pt;}
.y78{bottom:36.200000pt;}
.y15b{bottom:40.000000pt;}
.y110{bottom:43.800000pt;}
.yd4{bottom:43.866667pt;}
.ya9{bottom:44.466667pt;}
.y4c{bottom:55.733333pt;}
.y77{bottom:57.934667pt;}
.y23{bottom:58.204000pt;}
.yf7{bottom:59.200000pt;}
.y102{bottom:60.466667pt;}
.ya8{bottom:63.338667pt;}
.y15a{bottom:66.533333pt;}
.yd3{bottom:68.468000pt;}
.y4b{bottom:70.733333pt;}
.y76{bottom:73.000000pt;}
.y22{bottom:73.269333pt;}
.y159{bottom:74.866667pt;}
.ya7{bottom:78.404000pt;}
.yf6{bottom:82.266667pt;}
.y11b{bottom:82.933333pt;}
.y158{bottom:83.800000pt;}
.yd2{bottom:83.866667pt;}
.y21{bottom:88.334667pt;}
.ya6{bottom:93.070667pt;}
.y4a{bottom:93.802667pt;}
.y75{bottom:96.333333pt;}
.y11a{bottom:97.600000pt;}
.yd1{bottom:98.266667pt;}
.yf5{bottom:101.466667pt;}
.y157{bottom:102.400000pt;}
.y20{bottom:103.068000pt;}
.ya5{bottom:108.137333pt;}
.y49{bottom:108.802667pt;}
.y156{bottom:111.000000pt;}
.y74{bottom:111.400000pt;}
.y119{bottom:112.666667pt;}
.y10f{bottom:117.400000pt;}
.y1f{bottom:117.800000pt;}
.y10d{bottom:118.066667pt;}
.yf4{bottom:119.333333pt;}
.ya4{bottom:123.202667pt;}
.y48{bottom:123.534667pt;}
.y73{bottom:126.133333pt;}
.yd0{bottom:128.333333pt;}
.y1e{bottom:132.800000pt;}
.y155{bottom:136.333467pt;}
.ya3{bottom:138.202667pt;}
.y47{bottom:138.601333pt;}
.yf3{bottom:139.533333pt;}
.y118{bottom:142.733333pt;}
.ycf{bottom:144.333333pt;}
.y154{bottom:144.933333pt;}
.y72{bottom:148.801333pt;}
.ya2{bottom:152.934667pt;}
.y153{bottom:153.266667pt;}
.y46{bottom:153.333333pt;}
.y1d{bottom:155.534667pt;}
.yce{bottom:159.400000pt;}
.y71{bottom:163.866667pt;}
.ya1{bottom:167.666667pt;}
.y152{bottom:170.200000pt;}
.y1c{bottom:170.868000pt;}
.yf2{bottom:172.800000pt;}
.ycd{bottom:173.469333pt;}
.y10c{bottom:174.400000pt;}
.y45{bottom:176.666667pt;}
.y151{bottom:178.866667pt;}
.ya0{bottom:182.666667pt;}
.y1b{bottom:185.933333pt;}
.y70{bottom:187.200000pt;}
.ycc{bottom:188.136000pt;}
.y9f{bottom:197.400000pt;}
.y44{bottom:200.333333pt;}
.y6f{bottom:202.600000pt;}
.ycb{bottom:203.201333pt;}
.y150{bottom:204.133333pt;}
.y1a{bottom:209.000000pt;}
.y10e{bottom:211.466667pt;}
.y9e{bottom:212.466667pt;}
.y14f{bottom:212.800000pt;}
.y6e{bottom:217.333333pt;}
.yca{bottom:218.266667pt;}
.y14e{bottom:221.400000pt;}
.y43{bottom:223.401333pt;}
.y19{bottom:224.000000pt;}
.y9d{bottom:228.468000pt;}
.y10b{bottom:230.666667pt;}
.y6d{bottom:232.000000pt;}
.yc9{bottom:233.000000pt;}
.y14d{bottom:238.066667pt;}
.y42{bottom:238.401333pt;}
.y18{bottom:238.733333pt;}
.y9c{bottom:242.868000pt;}
.y10a{bottom:245.733333pt;}
.y14c{bottom:246.400000pt;}
.y6c{bottom:247.066667pt;}
.yc8{bottom:247.666667pt;}
.yf1{bottom:252.800000pt;}
.y41{bottom:253.133333pt;}
.y17{bottom:253.800000pt;}
.y9b{bottom:256.600000pt;}
.yc7{bottom:262.400000pt;}
.y14b{bottom:263.666667pt;}
.yf0{bottom:267.866667pt;}
.y6b{bottom:270.134667pt;}
.y9a{bottom:270.666667pt;}
.y40{bottom:276.533333pt;}
.y16{bottom:276.800000pt;}
.y14a{bottom:280.333333pt;}
.yef{bottom:282.866667pt;}
.y6a{bottom:284.801333pt;}
.yc6{bottom:285.469333pt;}
.y101{bottom:286.066667pt;}
.y149{bottom:288.933333pt;}
.y3f{bottom:291.533333pt;}
.y15{bottom:291.866667pt;}
.y99{bottom:293.733333pt;}
.yee{bottom:297.600000pt;}
.y109{bottom:299.466667pt;}
.y69{bottom:299.868000pt;}
.yc5{bottom:300.802667pt;}
.y117{bottom:305.000000pt;}
.y148{bottom:305.933333pt;}
.y14{bottom:306.866667pt;}
.y98{bottom:308.800000pt;}
.yed{bottom:312.666667pt;}
.y147{bottom:314.200000pt;}
.y3e{bottom:314.600000pt;}
.y68{bottom:314.934667pt;}
.yc4{bottom:315.869333pt;}
.y108{bottom:316.133333pt;}
.y97{bottom:323.466667pt;}
.y100{bottom:323.533333pt;}
.y3d{bottom:329.600000pt;}
.y67{bottom:329.601333pt;}
.y13{bottom:329.933333pt;}
.yc3{bottom:330.601333pt;}
.y146{bottom:331.533333pt;}
.yec{bottom:335.333333pt;}
.y96{bottom:338.533333pt;}
.y66{bottom:344.666667pt;}
.y12{bottom:345.266667pt;}
.yc2{bottom:345.601333pt;}
.y145{bottom:348.133600pt;}
.y3c{bottom:352.666667pt;}
.y144{bottom:356.800267pt;}
.y95{bottom:358.069333pt;}
.y65{bottom:359.400000pt;}
.yc1{bottom:360.333333pt;}
.yff{bottom:361.266667pt;}
.y143{bottom:365.133600pt;}
.y107{bottom:368.266667pt;}
.y11{bottom:368.666667pt;}
.y94{bottom:373.069333pt;}
.y142{bottom:373.733600pt;}
.y64{bottom:374.400000pt;}
.yc0{bottom:375.066667pt;}
.y3b{bottom:375.733333pt;}
.yeb{bottom:376.934667pt;}
.y116{bottom:380.201333pt;}
.y141{bottom:382.066933pt;}
.y10{bottom:383.400000pt;}
.y93{bottom:388.134667pt;}
.y140{bottom:390.733600pt;}
.y3a{bottom:391.066667pt;}
.yea{bottom:391.668000pt;}
.y63{bottom:397.468000pt;}
.ybf{bottom:398.069333pt;}
.yf{bottom:398.400000pt;}
.y13f{bottom:399.000133pt;}
.y92{bottom:402.533333pt;}
.ye9{bottom:406.733333pt;}
.y13e{bottom:407.666800pt;}
.yfe{bottom:410.600000pt;}
.y62{bottom:412.534667pt;}
.ybe{bottom:413.134667pt;}
.y39{bottom:414.133333pt;}
.y13d{bottom:416.000133pt;}
.y91{bottom:417.866667pt;}
.ye{bottom:421.134667pt;}
.y13c{bottom:424.600000pt;}
.y61{bottom:427.534667pt;}
.ybd{bottom:428.200000pt;}
.y38{bottom:429.466667pt;}
.yd{bottom:436.200000pt;}
.y90{bottom:438.070667pt;}
.y115{bottom:438.133333pt;}
.ye8{bottom:438.402667pt;}
.y13b{bottom:441.600000pt;}
.y60{bottom:442.600000pt;}
.yfd{bottom:449.000000pt;}
.y13a{bottom:450.200000pt;}
.yc{bottom:451.200000pt;}
.y37{bottom:452.533333pt;}
.y8f{bottom:452.802667pt;}
.ye7{bottom:453.134667pt;}
.ybc{bottom:465.933333pt;}
.yb{bottom:466.600000pt;}
.y139{bottom:467.200000pt;}
.y8e{bottom:467.802667pt;}
.ye6{bottom:467.866667pt;}
.y5f{bottom:470.400000pt;}
.y138{bottom:475.533333pt;}
.y36{bottom:475.866667pt;}
.ye5{bottom:482.866667pt;}
.y8d{bottom:482.868000pt;}
.ybb{bottom:489.269333pt;}
.y137{bottom:492.466667pt;}
.yfc{bottom:493.133333pt;}
.ya{bottom:495.066667pt;}
.y106{bottom:495.333333pt;}
.y8c{bottom:497.601333pt;}
.y35{bottom:498.601333pt;}
.y136{bottom:501.133333pt;}
.yba{bottom:504.736000pt;}
.y135{bottom:509.400000pt;}
.y105{bottom:511.000000pt;}
.y5e{bottom:512.334667pt;}
.y8b{bottom:512.601333pt;}
.ye4{bottom:512.668000pt;}
.y34{bottom:514.268000pt;}
.yb9{bottom:519.402667pt;}
.y9{bottom:525.134667pt;}
.y134{bottom:526.400000pt;}
.y8a{bottom:527.333333pt;}
.y5d{bottom:527.400000pt;}
.ye3{bottom:527.668000pt;}
.y33{bottom:529.001333pt;}
.yb8{bottom:534.069333pt;}
.y133{bottom:534.733333pt;}
.y8{bottom:540.200000pt;}
.y89{bottom:542.400000pt;}
.y132{bottom:543.333333pt;}
.y32{bottom:544.001333pt;}
.yb7{bottom:549.134667pt;}
.y5c{bottom:550.733333pt;}
.y7{bottom:554.866667pt;}
.ye2{bottom:557.466667pt;}
.y31{bottom:558.733333pt;}
.y131{bottom:560.000000pt;}
.yb6{bottom:563.866667pt;}
.y88{bottom:564.134667pt;}
.y5b{bottom:565.866667pt;}
.y130{bottom:568.933333pt;}
.y6{bottom:569.600000pt;}
.ye1{bottom:572.133333pt;}
.yb5{bottom:578.600000pt;}
.y87{bottom:578.866667pt;}
.y5a{bottom:580.533333pt;}
.y30{bottom:581.800000pt;}
.yfb{bottom:584.333333pt;}
.y12f{bottom:585.600000pt;}
.y86{bottom:593.600000pt;}
.y12e{bottom:593.933333pt;}
.y59{bottom:595.200000pt;}
.ye0{bottom:595.533333pt;}
.y2f{bottom:596.800000pt;}
.y85{bottom:608.600000pt;}
.y12d{bottom:611.200000pt;}
.yb4{bottom:616.666667pt;}
.y58{bottom:618.268000pt;}
.ydf{bottom:618.533333pt;}
.y12c{bottom:619.533333pt;}
.y2e{bottom:621.133333pt;}
.y84{bottom:624.002667pt;}
.y12b{bottom:628.133333pt;}
.yb3{bottom:631.666667pt;}
.y57{bottom:633.334667pt;}
.yde{bottom:633.933333pt;}
.y83{bottom:639.002667pt;}
.y12a{bottom:645.133333pt;}
.y114{bottom:646.133333pt;}
.y56{bottom:648.334667pt;}
.y2d{bottom:652.202667pt;}
.y129{bottom:653.400000pt;}
.y82{bottom:653.801333pt;}
.ydd{bottom:657.266667pt;}
.y128{bottom:662.066667pt;}
.y55{bottom:663.400000pt;}
.yb2{bottom:663.666667pt;}
.y104{bottom:666.866667pt;}
.y2c{bottom:667.202667pt;}
.y81{bottom:668.801333pt;}
.yb0{bottom:676.800000pt;}
.yb1{bottom:677.800000pt;}
.y127{bottom:679.333467pt;}
.y2b{bottom:682.268000pt;}
.y80{bottom:683.801333pt;}
.y54{bottom:684.801333pt;}
.y126{bottom:687.333333pt;}
.y5{bottom:687.668000pt;}
.y165{bottom:691.533333pt;}
.ydc{bottom:694.066667pt;}
.y125{bottom:696.333333pt;}
.y2a{bottom:697.001333pt;}
.y7f{bottom:698.533333pt;}
.y53{bottom:699.533333pt;}
.y4{bottom:704.668000pt;}
.y113{bottom:706.266667pt;}
.y164{bottom:708.466667pt;}
.y29{bottom:711.733333pt;}
.y124{bottom:712.933333pt;}
.yaf{bottom:715.201333pt;}
.y7e{bottom:716.133333pt;}
.y163{bottom:716.800000pt;}
.ydb{bottom:717.469333pt;}
.y3{bottom:721.266667pt;}
.y123{bottom:721.600000pt;}
.yae{bottom:721.933333pt;}
.y52{bottom:722.933333pt;}
.yda{bottom:732.469333pt;}
.y162{bottom:733.800000pt;}
.y28{bottom:734.736000pt;}
.y122{bottom:738.533333pt;}
.y7d{bottom:739.469333pt;}
.yfa{bottom:739.533333pt;}
.y161{bottom:742.066667pt;}
.y112{bottom:743.400000pt;}
.y51{bottom:745.936000pt;}
.y121{bottom:746.866667pt;}
.yd9{bottom:747.201333pt;}
.yad{bottom:749.800000pt;}
.y27{bottom:749.801333pt;}
.y7c{bottom:754.534667pt;}
.y120{bottom:755.800000pt;}
.y160{bottom:759.400000pt;}
.y50{bottom:761.001333pt;}
.yd8{bottom:762.266667pt;}
.y26{bottom:764.801333pt;}
.y15f{bottom:767.666667pt;}
.yac{bottom:768.000000pt;}
.y7b{bottom:769.600000pt;}
.y11f{bottom:772.466667pt;}
.y4f{bottom:775.733333pt;}
.yd7{bottom:776.933333pt;}
.yf9{bottom:777.266667pt;}
.y25{bottom:779.533333pt;}
.y11e{bottom:781.133333pt;}
.y7a{bottom:784.266667pt;}
.y15e{bottom:784.666800pt;}
.y2{bottom:786.266667pt;}
.y15d{bottom:793.266667pt;}
.yab{bottom:794.266667pt;}
.y24{bottom:794.600000pt;}
.y4e{bottom:799.733333pt;}
.y15c{bottom:801.933333pt;}
.y1{bottom:803.866667pt;}
.y103{bottom:806.066667pt;}
.yd6{bottom:807.066667pt;}
.y79{bottom:807.666667pt;}
.y11d{bottom:808.000000pt;}
.yaa{bottom:809.266667pt;}
.yd5{bottom:821.733333pt;}
.yf8{bottom:822.733333pt;}
.y111{bottom:823.400000pt;}
.h22{height:31.406250pt;}
.h3{height:33.375000pt;}
.h21{height:36.156250pt;}
.h1c{height:44.492188pt;}
.h1b{height:46.595523pt;}
.h8{height:52.843750pt;}
.h5{height:55.625000pt;}
.h18{height:56.437500pt;}
.h4{height:58.406250pt;}
.h17{height:59.472917pt;}
.h16{height:61.072917pt;}
.h15{height:62.139583pt;}
.he{height:63.472917pt;}
.hf{height:64.806250pt;}
.h2{height:66.750000pt;}
.h1d{height:84.006250pt;}
.h10{height:93.072917pt;}
.h12{height:119.739583pt;}
.h11{height:122.406250pt;}
.h1e{height:178.443750pt;}
.h20{height:838.000000pt;}
.h1f{height:838.066667pt;}
.h23{height:840.333333pt;}
.h24{height:840.666667pt;}
.h1a{height:844.000000pt;}
.h19{height:844.133333pt;}
.h6{height:847.066667pt;}
.h7{height:847.333333pt;}
.hc{height:856.333333pt;}
.hd{height:856.666667pt;}
.hb{height:860.000000pt;}
.ha{height:860.133333pt;}
.h1{height:870.666667pt;}
.h0{height:870.733333pt;}
.h9{height:872.666667pt;}
.h14{height:873.333333pt;}
.h13{height:873.600000pt;}
.w2{width:512.666667pt;}
.we{width:525.133333pt;}
.wf{width:525.333333pt;}
.w5{width:528.666667pt;}
.wa{width:535.666667pt;}
.wb{width:536.000000pt;}
.w10{width:536.666667pt;}
.w11{width:539.866667pt;}
.w9{width:540.000000pt;}
.w8{width:540.133333pt;}
.wc{width:545.933333pt;}
.wd{width:546.000000pt;}
.w3{width:547.866667pt;}
.w4{width:548.000000pt;}
.w0{width:554.533333pt;}
.w1{width:554.666667pt;}
.w7{width:560.666667pt;}
.w6{width:560.933333pt;}
.x0{left:0.000000pt;}
.x50{left:9.600000pt;}
.x55{left:10.546667pt;}
.x3c{left:25.266667pt;}
.x7{left:32.933333pt;}
.x9{left:34.266667pt;}
.x2b{left:40.666667pt;}
.x2d{left:47.065333pt;}
.x8{left:48.000000pt;}
.x12{left:49.600000pt;}
.x3e{left:51.200000pt;}
.x14{left:52.134667pt;}
.x2e{left:54.398667pt;}
.x1c{left:55.666667pt;}
.x1a{left:56.933333pt;}
.x37{left:58.266667pt;}
.x1e{left:60.133333pt;}
.x1f{left:61.466667pt;}
.x6{left:62.732000pt;}
.xa{left:63.666667pt;}
.xb{left:64.666667pt;}
.xe{left:65.600000pt;}
.x19{left:68.800000pt;}
.x2a{left:70.398667pt;}
.x31{left:71.333333pt;}
.x3b{left:73.600000pt;}
.x18{left:76.133333pt;}
.x16{left:77.133333pt;}
.x13{left:81.266667pt;}
.x15{left:82.533333pt;}
.x1d{left:83.533333pt;}
.xc{left:85.133333pt;}
.xf{left:86.066667pt;}
.x2c{left:87.333333pt;}
.x3a{left:88.666667pt;}
.x35{left:89.600000pt;}
.x1b{left:90.866667pt;}
.x29{left:92.798667pt;}
.x21{left:94.400000pt;}
.x22{left:96.933333pt;}
.xd{left:99.866667pt;}
.x17{left:103.332000pt;}
.x11{left:107.200000pt;}
.x57{left:108.132000pt;}
.x39{left:109.465333pt;}
.x38{left:110.398667pt;}
.x36{left:111.665333pt;}
.x34{left:113.268000pt;}
.x28{left:117.134667pt;}
.x25{left:118.065333pt;}
.x23{left:119.066667pt;}
.x4f{left:121.600000pt;}
.x10{left:122.866667pt;}
.x33{left:128.666667pt;}
.x27{left:131.866667pt;}
.x26{left:133.733333pt;}
.x24{left:134.733333pt;}
.x51{left:137.600000pt;}
.x49{left:143.666667pt;}
.x40{left:145.933333pt;}
.x41{left:147.533333pt;}
.x52{left:170.266667pt;}
.x4a{left:181.733333pt;}
.x2f{left:206.066667pt;}
.x3{left:211.533333pt;}
.x3d{left:227.200000pt;}
.x42{left:240.333333pt;}
.x43{left:241.586667pt;}
.x1{left:260.800000pt;}
.x4{left:263.320000pt;}
.x5{left:288.653333pt;}
.x56{left:317.133333pt;}
.x44{left:334.733333pt;}
.x45{left:336.000000pt;}
.x53{left:341.466667pt;}
.x4c{left:352.000000pt;}
.x4b{left:353.266667pt;}
.x30{left:357.466667pt;}
.x2{left:360.000000pt;}
.x54{left:386.520000pt;}
.x46{left:429.133333pt;}
.x47{left:430.400000pt;}
.x4e{left:446.066667pt;}
.x4d{left:448.333333pt;}
.x58{left:457.933333pt;}
.x3f{left:464.666667pt;}
.x20{left:473.266667pt;}
.x32{left:480.333333pt;}
.x48{left:524.186667pt;}
}




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