
    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_1f2ff6c6eebdd6c9612493bc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2c50c8204dfbf8d5b93fdcd0.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_81772dc38ad532eb477f736e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_a64679ddc8ca72318adeab80.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_384c092548c5d3ad1a0ba5f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_2b01444e537b145c8b992b9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e147adaac11c9329e51c3dee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_2ef2d8f5fbd81dae35ca155b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_868604ca7ce2a2a1888f413a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_65adc8d098d9407e4f423c92.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_66d97b9eb88d6c4baa286bbf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854492;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_1231fef7c2663d4db4471e90.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;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_8827096fc280686b4f80307b.woff2')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_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;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_5a833db170b308ce1cf39f51.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.040039;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.478200px;}
.ls14{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls20{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.224400px;}
.ls6{letter-spacing:0.241800px;}
.lsa{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.328320px;}
.lsb{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.460200px;}
.ls8{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.828000px;}
.ls18{letter-spacing:0.900000px;}
.ls16{letter-spacing:5.940000px;}
.ls1e{letter-spacing:13.140000px;}
.ls22{letter-spacing:14.580000px;}
.ls1d{letter-spacing:15.300000px;}
.ls21{letter-spacing:16.740000px;}
.ls1a{letter-spacing:17.460000px;}
.ls15{letter-spacing:21.546720px;}
.ls19{letter-spacing:21.780000px;}
.ls23{letter-spacing:31.140000px;}
.ls1b{letter-spacing:34.740000px;}
.ls1c{letter-spacing:36.180000px;}
.lsc{letter-spacing:44.586720px;}
.ls3{letter-spacing:46.236000px;}
.ls12{letter-spacing:345.036000px;}
.ls11{letter-spacing:448.716000px;}
.ls13{letter-spacing:496.236000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.wse{word-spacing:-15.400200px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.147200px;}
.ws9{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.854600px;}
.ws2{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.134600px;}
.wsa{word-spacing:0.000000px;}
._57{margin-left:-12.984000px;}
._48{margin-left:-9.153360px;}
._4d{margin-left:-6.054480px;}
._42{margin-left:-4.353120px;}
._a{margin-left:-3.124800px;}
._2{margin-left:-1.656000px;}
._0{width:1.434240px;}
._6{width:2.868480px;}
._1a{width:3.944160px;}
._18{width:5.019840px;}
._13{width:6.095520px;}
._d{width:7.133040px;}
._9{width:8.605440px;}
._15{width:9.779040px;}
._24{width:10.800720px;}
._1c{width:12.510720px;}
._21{width:13.625280px;}
._17{width:15.955920px;}
._1{width:17.143680px;}
._2a{width:18.224400px;}
._2e{width:19.842720px;}
._3{width:21.035520px;}
._1e{width:23.007600px;}
._f{width:24.167520px;}
._10{width:25.229520px;}
._11{width:26.652960px;}
._b{width:27.967680px;}
._16{width:29.282400px;}
._19{width:30.317760px;}
._8{width:31.971600px;}
._7{width:33.346080px;}
._5{width:34.865280px;}
._4{width:36.428400px;}
._c{width:37.655280px;}
._29{width:38.694240px;}
._27{width:39.979440px;}
._1b{width:41.575680px;}
._12{width:42.668640px;}
._22{width:43.923600px;}
._14{width:45.289920px;}
._36{width:46.485360px;}
._e{width:47.568960px;}
._2b{width:49.182480px;}
._33{width:50.616720px;}
._2d{width:52.110720px;}
._28{width:53.843760px;}
._2f{width:54.866160px;}
._20{width:56.353680px;}
._1f{width:57.709200px;}
._2c{width:59.102640px;}
._32{width:60.596640px;}
._31{width:62.090640px;}
._30{width:63.345600px;}
._3f{width:65.240640px;}
._1d{width:66.990960px;}
._4e{width:68.245920px;}
._3c{width:69.321600px;}
._3b{width:70.696080px;}
._34{width:72.112800px;}
._51{width:74.065680px;}
._52{width:75.415680px;}
._26{width:76.970880px;}
._25{width:78.089040px;}
._3a{width:79.182000px;}
._45{width:81.614880px;}
._4a{width:82.648080px;}
._37{width:84.244320px;}
._35{width:85.277520px;}
._55{width:86.590800px;}
._3e{width:87.847200px;}
._4f{width:94.081680px;}
._39{width:96.392880px;}
._54{width:103.881600px;}
._53{width:105.356880px;}
._56{width:107.589360px;}
._49{width:109.753680px;}
._40{width:112.169520px;}
._38{width:120.245040px;}
._46{width:132.895920px;}
._43{width:137.015040px;}
._44{width:149.113920px;}
._50{width:150.581520px;}
._41{width:153.702720px;}
._23{width:154.718640px;}
._3d{width:157.168800px;}
._47{width:180.428160px;}
._4b{width:192.860640px;}
._4c{width:195.897600px;}
._58{width:201.060000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:44.018465px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.y59{bottom:-12.960000px;}
.y0{bottom:0.000000px;}
.y58{bottom:1.260000px;}
.y3c{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y3e{bottom:4.680000px;}
.y56{bottom:5.400000px;}
.y3b{bottom:20.700000px;}
.y55{bottom:31.860000px;}
.y3a{bottom:38.340000px;}
.y39{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y54{bottom:64.440000px;}
.y38{bottom:73.440000px;}
.y2{bottom:80.100000px;}
.y37{bottom:91.080000px;}
.y36{bottom:108.720000px;}
.yee{bottom:112.140000px;}
.y57{bottom:113.220000px;}
.ybb{bottom:118.800000px;}
.y95{bottom:123.300000px;}
.y35{bottom:126.360000px;}
.yed{bottom:129.420000px;}
.yba{bottom:136.080000px;}
.y51{bottom:136.620000px;}
.y94{bottom:140.580000px;}
.y34{bottom:143.820000px;}
.yec{bottom:146.700000px;}
.yb9{bottom:153.360000px;}
.y50{bottom:153.900000px;}
.y93{bottom:157.860000px;}
.y33{bottom:161.460000px;}
.yeb{bottom:163.800000px;}
.yb8{bottom:170.640000px;}
.y4f{bottom:171.180000px;}
.ya1{bottom:174.780000px;}
.y92{bottom:175.140000px;}
.y32{bottom:179.100000px;}
.yea{bottom:181.080000px;}
.y23{bottom:187.380000px;}
.yb7{bottom:187.920000px;}
.y4e{bottom:188.280000px;}
.ya0{bottom:192.060000px;}
.y91{bottom:192.420000px;}
.y31{bottom:196.560000px;}
.ye9{bottom:198.360000px;}
.yb6{bottom:205.200000px;}
.y22{bottom:205.560000px;}
.y9b{bottom:209.340000px;}
.y90{bottom:209.700000px;}
.y30{bottom:214.230000px;}
.ye8{bottom:215.670000px;}
.yb5{bottom:222.330000px;}
.y4d{bottom:222.870000px;}
.y21{bottom:223.770000px;}
.y9a{bottom:226.470000px;}
.y8f{bottom:226.830000px;}
.y2f{bottom:231.870000px;}
.ye7{bottom:232.950000px;}
.y20{bottom:239.250000px;}
.yb4{bottom:239.610000px;}
.y4c{bottom:240.150000px;}
.y8e{bottom:244.110000px;}
.y2e{bottom:249.330000px;}
.ye6{bottom:250.230000px;}
.y1f{bottom:253.290000px;}
.y4b{bottom:257.430000px;}
.y8d{bottom:261.390000px;}
.y2d{bottom:266.970000px;}
.ye5{bottom:267.330000px;}
.y1e{bottom:267.510000px;}
.yb3{bottom:271.290000px;}
.y4a{bottom:274.710000px;}
.yf6{bottom:278.310000px;}
.y8c{bottom:278.670000px;}
.y1d{bottom:281.550000px;}
.y2c{bottom:284.610000px;}
.yb2{bottom:289.290000px;}
.y49{bottom:291.810000px;}
.y1c{bottom:295.590000px;}
.y8b{bottom:295.950000px;}
.ye4{bottom:301.890000px;}
.y2b{bottom:302.250000px;}
.yb1{bottom:307.290000px;}
.y48{bottom:309.090000px;}
.y1b{bottom:309.270000px;}
.y8a{bottom:313.230000px;}
.ye3{bottom:319.170000px;}
.y2a{bottom:319.710000px;}
.y1a{bottom:323.130000px;}
.yb0{bottom:325.290000px;}
.y47{bottom:326.370000px;}
.y89{bottom:330.330000px;}
.yf0{bottom:336.090000px;}
.ye2{bottom:336.450000px;}
.y19{bottom:336.990000px;}
.y29{bottom:337.350000px;}
.yaf{bottom:343.290000px;}
.y46{bottom:343.650000px;}
.y9f{bottom:347.250000px;}
.y88{bottom:347.610000px;}
.y18{bottom:351.030000px;}
.yef{bottom:353.370000px;}
.ye1{bottom:353.730000px;}
.y28{bottom:354.990000px;}
.y45{bottom:360.930000px;}
.yf5{bottom:364.530000px;}
.y87{bottom:364.890000px;}
.y17{bottom:365.070000px;}
.ye0{bottom:370.830000px;}
.y27{bottom:372.450000px;}
.y44{bottom:378.030000px;}
.y16{bottom:379.110000px;}
.yae{bottom:381.810000px;}
.y86{bottom:382.170000px;}
.ydf{bottom:388.110000px;}
.y26{bottom:390.090000px;}
.y15{bottom:393.690000px;}
.y43{bottom:395.310000px;}
.yad{bottom:399.090000px;}
.y85{bottom:399.450000px;}
.y25{bottom:407.730000px;}
.y14{bottom:411.690000px;}
.y42{bottom:412.590000px;}
.y84{bottom:416.730000px;}
.yde{bottom:419.790000px;}
.y24{bottom:428.430000px;}
.y13{bottom:428.970000px;}
.y41{bottom:429.510000px;}
.y52{bottom:429.870000px;}
.y83{bottom:433.830000px;}
.ydd{bottom:437.790000px;}
.y40{bottom:446.790000px;}
.yf4{bottom:450.795000px;}
.y82{bottom:451.155000px;}
.ydc{bottom:455.835000px;}
.y3f{bottom:461.235000px;}
.y3d{bottom:463.215000px;}
.y81{bottom:468.435000px;}
.y12{bottom:469.335000px;}
.ydb{bottom:473.835000px;}
.ya9{bottom:485.355000px;}
.y80{bottom:485.715000px;}
.ya8{bottom:502.635000px;}
.y7f{bottom:502.995000px;}
.yda{bottom:512.355000px;}
.ya7{bottom:519.735000px;}
.y7e{bottom:520.095000px;}
.yd9{bottom:529.995000px;}
.yf3{bottom:537.015000px;}
.y7d{bottom:537.375000px;}
.yd8{bottom:547.095000px;}
.y7c{bottom:554.655000px;}
.yd7{bottom:564.375000px;}
.y7b{bottom:571.935000px;}
.yd6{bottom:581.655000px;}
.y99{bottom:588.855000px;}
.y7a{bottom:589.215000px;}
.yd5{bottom:598.935000px;}
.y98{bottom:606.135000px;}
.y79{bottom:606.495000px;}
.yd4{bottom:616.215000px;}
.y78{bottom:623.595000px;}
.yd3{bottom:633.495000px;}
.y77{bottom:640.875000px;}
.yd2{bottom:650.595000px;}
.y76{bottom:658.155000px;}
.yd1{bottom:667.875000px;}
.y75{bottom:675.435000px;}
.yd0{bottom:685.185000px;}
.y74{bottom:692.745000px;}
.ya6{bottom:709.665000px;}
.y73{bottom:710.025000px;}
.ycf{bottom:716.865000px;}
.ya5{bottom:726.765000px;}
.y72{bottom:727.125000px;}
.yce{bottom:734.865000px;}
.y71{bottom:744.405000px;}
.ycd{bottom:752.865000px;}
.y70{bottom:761.685000px;}
.ycc{bottom:770.865000px;}
.y6f{bottom:778.965000px;}
.y6e{bottom:796.245000px;}
.ycb{bottom:809.385000px;}
.y6d{bottom:813.345000px;}
.yc9{bottom:826.845000px;}
.y6c{bottom:830.625000px;}
.yca{bottom:843.765000px;}
.yc8{bottom:844.125000px;}
.y6b{bottom:847.905000px;}
.yc7{bottom:861.405000px;}
.y9e{bottom:864.825000px;}
.y6a{bottom:865.185000px;}
.yc6{bottom:878.685000px;}
.y9d{bottom:882.105000px;}
.y69{bottom:882.465000px;}
.yc5{bottom:895.965000px;}
.y9c{bottom:899.385000px;}
.y68{bottom:899.745000px;}
.yc4{bottom:913.245000px;}
.yac{bottom:916.485000px;}
.y67{bottom:916.845000px;}
.y11{bottom:917.205000px;}
.yc3{bottom:930.390000px;}
.y66{bottom:934.170000px;}
.y10{bottom:939.390000px;}
.yc2{bottom:947.670000px;}
.y65{bottom:951.450000px;}
.ye{bottom:956.670000px;}
.yf{bottom:962.610000px;}
.yc1{bottom:964.950000px;}
.y64{bottom:968.370000px;}
.y97{bottom:968.730000px;}
.yd{bottom:975.750000px;}
.y63{bottom:985.650000px;}
.y96{bottom:986.010000px;}
.yc{bottom:995.190000px;}
.yc0{bottom:996.630000px;}
.yf2{bottom:1002.930000px;}
.y62{bottom:1003.290000px;}
.ybf{bottom:1014.630000px;}
.yb{bottom:1017.510000px;}
.yf1{bottom:1020.030000px;}
.y61{bottom:1020.390000px;}
.ybe{bottom:1032.630000px;}
.ya4{bottom:1037.310000px;}
.y60{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.ybd{bottom:1050.630000px;}
.ya3{bottom:1054.590000px;}
.y5f{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y53{bottom:1070.250000px;}
.ya2{bottom:1071.870000px;}
.y5e{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.ybc{bottom:1089.150000px;}
.y5d{bottom:1089.510000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.yab{bottom:1123.530000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.yaa{bottom:1140.810000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h13{height:5.653125px;}
.h14{height:5.805000px;}
.h15{height:5.920372px;}
.h12{height:6.120000px;}
.h1b{height:12.420000px;}
.h4{height:17.280000px;}
.h1f{height:17.316000px;}
.h1d{height:40.655391px;}
.he{height:40.843828px;}
.h1e{height:43.215117px;}
.h10{height:45.720703px;}
.h9{height:45.823910px;}
.h11{height:45.859856px;}
.h1c{height:47.321367px;}
.h3{height:47.980898px;}
.h1a{height:48.616875px;}
.hd{height:49.583118px;}
.hf{height:50.218594px;}
.hc{height:50.597578px;}
.h5{height:58.651172px;}
.h16{height:60.226875px;}
.h17{height:61.423863px;}
.ha{height:62.211094px;}
.h8{height:66.757500px;}
.h19{height:72.562500px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h18{height:81.180000px;}
.hb{height:442.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:60.300000px;}
.w1b{width:60.660000px;}
.w10{width:96.120000px;}
.wc{width:96.480000px;}
.w15{width:132.480000px;}
.w11{width:132.840000px;}
.wd{width:159.510000px;}
.wa{width:159.870000px;}
.w16{width:168.690000px;}
.w1a{width:169.410000px;}
.w12{width:169.590000px;}
.w18{width:184.170000px;}
.w14{width:184.530000px;}
.w17{width:186.150000px;}
.w13{width:187.050000px;}
.we{width:207.930000px;}
.wf{width:208.110000px;}
.wb{width:208.830000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w1c{width:254.370000px;}
.w19{width:254.910000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x12{left:10.800000px;}
.x27{left:14.580000px;}
.x20{left:17.280000px;}
.xa{left:20.700000px;}
.x1c{left:25.920000px;}
.x2{left:27.000000px;}
.x21{left:29.160000px;}
.x1e{left:34.920000px;}
.x1a{left:37.980000px;}
.x18{left:46.800000px;}
.x3{left:49.860000px;}
.x6{left:53.999987px;}
.x28{left:59.070000px;}
.xe{left:62.994000px;}
.x2f{left:68.574000px;}
.x25{left:69.705000px;}
.x29{left:70.785000px;}
.x1d{left:73.440000px;}
.x2e{left:75.594000px;}
.x26{left:78.705000px;}
.x1f{left:86.760000px;}
.x11{left:90.036000px;}
.x2a{left:95.934000px;}
.x1{left:108.035987px;}
.x16{left:109.656000px;}
.x31{left:121.535987px;}
.x30{left:135.035987px;}
.xd{left:140.616000px;}
.xf{left:157.539000px;}
.x7{left:227.189987px;}
.x22{left:242.490000px;}
.x9{left:267.195000px;}
.x17{left:269.535000px;}
.x15{left:286.094987px;}
.x10{left:312.549000px;}
.x2b{left:365.475000px;}
.x23{left:412.095000px;}
.x5{left:446.504987px;}
.x4{left:453.344987px;}
.xc{left:473.144987px;}
.x19{left:478.365000px;}
.x13{left:500.144987px;}
.xb{left:503.715000px;}
.x14{left:527.144987px;}
.x2c{left:534.885000px;}
.x24{left:599.145000px;}
.x1b{left:687.210000px;}
.x2d{left:721.950000px;}
@media print{
.v2{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.425067pt;}
.ls14{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls20{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.199467pt;}
.ls6{letter-spacing:0.214933pt;}
.lsa{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.291840pt;}
.lsb{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.409067pt;}
.ls8{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls1e{letter-spacing:11.680000pt;}
.ls22{letter-spacing:12.960000pt;}
.ls1d{letter-spacing:13.600000pt;}
.ls21{letter-spacing:14.880000pt;}
.ls1a{letter-spacing:15.520000pt;}
.ls15{letter-spacing:19.152640pt;}
.ls19{letter-spacing:19.360000pt;}
.ls23{letter-spacing:27.680000pt;}
.ls1b{letter-spacing:30.880000pt;}
.ls1c{letter-spacing:32.160000pt;}
.lsc{letter-spacing:39.632640pt;}
.ls3{letter-spacing:41.098667pt;}
.ls12{letter-spacing:306.698667pt;}
.ls11{letter-spacing:398.858667pt;}
.ls13{letter-spacing:441.098667pt;}
.wsc{word-spacing:-53.120000pt;}
.wse{word-spacing:-13.689067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.686400pt;}
.ws9{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.648533pt;}
.ws2{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.008533pt;}
.wsa{word-spacing:0.000000pt;}
._57{margin-left:-11.541333pt;}
._48{margin-left:-8.136320pt;}
._4d{margin-left:-5.381760pt;}
._42{margin-left:-3.869440pt;}
._a{margin-left:-2.777600pt;}
._2{margin-left:-1.472000pt;}
._0{width:1.274880pt;}
._6{width:2.549760pt;}
._1a{width:3.505920pt;}
._18{width:4.462080pt;}
._13{width:5.418240pt;}
._d{width:6.340480pt;}
._9{width:7.649280pt;}
._15{width:8.692480pt;}
._24{width:9.600640pt;}
._1c{width:11.120640pt;}
._21{width:12.111360pt;}
._17{width:14.183040pt;}
._1{width:15.238827pt;}
._2a{width:16.199467pt;}
._2e{width:17.637973pt;}
._3{width:18.698240pt;}
._1e{width:20.451200pt;}
._f{width:21.482240pt;}
._10{width:22.426240pt;}
._11{width:23.691520pt;}
._b{width:24.860160pt;}
._16{width:26.028800pt;}
._19{width:26.949120pt;}
._8{width:28.419200pt;}
._7{width:29.640960pt;}
._5{width:30.991360pt;}
._4{width:32.380800pt;}
._c{width:33.471360pt;}
._29{width:34.394880pt;}
._27{width:35.537280pt;}
._1b{width:36.956160pt;}
._12{width:37.927680pt;}
._22{width:39.043200pt;}
._14{width:40.257707pt;}
._36{width:41.320320pt;}
._e{width:42.283520pt;}
._2b{width:43.717760pt;}
._33{width:44.992640pt;}
._2d{width:46.320640pt;}
._28{width:47.861120pt;}
._2f{width:48.769920pt;}
._20{width:50.092160pt;}
._1f{width:51.297067pt;}
._2c{width:52.535680pt;}
._32{width:53.863680pt;}
._31{width:55.191680pt;}
._30{width:56.307200pt;}
._3f{width:57.991680pt;}
._1d{width:59.547520pt;}
._4e{width:60.663040pt;}
._3c{width:61.619200pt;}
._3b{width:62.840960pt;}
._34{width:64.100267pt;}
._51{width:65.836160pt;}
._52{width:67.036160pt;}
._26{width:68.418560pt;}
._25{width:69.412480pt;}
._3a{width:70.384000pt;}
._45{width:72.546560pt;}
._4a{width:73.464960pt;}
._37{width:74.883840pt;}
._35{width:75.802240pt;}
._55{width:76.969600pt;}
._3e{width:78.086400pt;}
._4f{width:83.628160pt;}
._39{width:85.682560pt;}
._54{width:92.339200pt;}
._53{width:93.650560pt;}
._56{width:95.634987pt;}
._49{width:97.558827pt;}
._40{width:99.706240pt;}
._38{width:106.884480pt;}
._46{width:118.129707pt;}
._43{width:121.791147pt;}
._44{width:132.545707pt;}
._50{width:133.850240pt;}
._41{width:136.624640pt;}
._23{width:137.527680pt;}
._3d{width:139.705600pt;}
._47{width:160.380587pt;}
._4b{width:171.431680pt;}
._4c{width:174.131200pt;}
._58{width:178.720000pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:39.127524pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.y59{bottom:-11.520000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:1.120000pt;}
.y3c{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y3e{bottom:4.160000pt;}
.y56{bottom:4.800000pt;}
.y3b{bottom:18.400000pt;}
.y55{bottom:28.320000pt;}
.y3a{bottom:34.080000pt;}
.y39{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y54{bottom:57.280000pt;}
.y38{bottom:65.280000pt;}
.y2{bottom:71.200000pt;}
.y37{bottom:80.960000pt;}
.y36{bottom:96.640000pt;}
.yee{bottom:99.680000pt;}
.y57{bottom:100.640000pt;}
.ybb{bottom:105.600000pt;}
.y95{bottom:109.600000pt;}
.y35{bottom:112.320000pt;}
.yed{bottom:115.040000pt;}
.yba{bottom:120.960000pt;}
.y51{bottom:121.440000pt;}
.y94{bottom:124.960000pt;}
.y34{bottom:127.840000pt;}
.yec{bottom:130.400000pt;}
.yb9{bottom:136.320000pt;}
.y50{bottom:136.800000pt;}
.y93{bottom:140.320000pt;}
.y33{bottom:143.520000pt;}
.yeb{bottom:145.600000pt;}
.yb8{bottom:151.680000pt;}
.y4f{bottom:152.160000pt;}
.ya1{bottom:155.360000pt;}
.y92{bottom:155.680000pt;}
.y32{bottom:159.200000pt;}
.yea{bottom:160.960000pt;}
.y23{bottom:166.560000pt;}
.yb7{bottom:167.040000pt;}
.y4e{bottom:167.360000pt;}
.ya0{bottom:170.720000pt;}
.y91{bottom:171.040000pt;}
.y31{bottom:174.720000pt;}
.ye9{bottom:176.320000pt;}
.yb6{bottom:182.400000pt;}
.y22{bottom:182.720000pt;}
.y9b{bottom:186.080000pt;}
.y90{bottom:186.400000pt;}
.y30{bottom:190.426667pt;}
.ye8{bottom:191.706667pt;}
.yb5{bottom:197.626667pt;}
.y4d{bottom:198.106667pt;}
.y21{bottom:198.906667pt;}
.y9a{bottom:201.306667pt;}
.y8f{bottom:201.626667pt;}
.y2f{bottom:206.106667pt;}
.ye7{bottom:207.066667pt;}
.y20{bottom:212.666667pt;}
.yb4{bottom:212.986667pt;}
.y4c{bottom:213.466667pt;}
.y8e{bottom:216.986667pt;}
.y2e{bottom:221.626667pt;}
.ye6{bottom:222.426667pt;}
.y1f{bottom:225.146667pt;}
.y4b{bottom:228.826667pt;}
.y8d{bottom:232.346667pt;}
.y2d{bottom:237.306667pt;}
.ye5{bottom:237.626667pt;}
.y1e{bottom:237.786667pt;}
.yb3{bottom:241.146667pt;}
.y4a{bottom:244.186667pt;}
.yf6{bottom:247.386667pt;}
.y8c{bottom:247.706667pt;}
.y1d{bottom:250.266667pt;}
.y2c{bottom:252.986667pt;}
.yb2{bottom:257.146667pt;}
.y49{bottom:259.386667pt;}
.y1c{bottom:262.746667pt;}
.y8b{bottom:263.066667pt;}
.ye4{bottom:268.346667pt;}
.y2b{bottom:268.666667pt;}
.yb1{bottom:273.146667pt;}
.y48{bottom:274.746667pt;}
.y1b{bottom:274.906667pt;}
.y8a{bottom:278.426667pt;}
.ye3{bottom:283.706667pt;}
.y2a{bottom:284.186667pt;}
.y1a{bottom:287.226667pt;}
.yb0{bottom:289.146667pt;}
.y47{bottom:290.106667pt;}
.y89{bottom:293.626667pt;}
.yf0{bottom:298.746667pt;}
.ye2{bottom:299.066667pt;}
.y19{bottom:299.546667pt;}
.y29{bottom:299.866667pt;}
.yaf{bottom:305.146667pt;}
.y46{bottom:305.466667pt;}
.y9f{bottom:308.666667pt;}
.y88{bottom:308.986667pt;}
.y18{bottom:312.026667pt;}
.yef{bottom:314.106667pt;}
.ye1{bottom:314.426667pt;}
.y28{bottom:315.546667pt;}
.y45{bottom:320.826667pt;}
.yf5{bottom:324.026667pt;}
.y87{bottom:324.346667pt;}
.y17{bottom:324.506667pt;}
.ye0{bottom:329.626667pt;}
.y27{bottom:331.066667pt;}
.y44{bottom:336.026667pt;}
.y16{bottom:336.986667pt;}
.yae{bottom:339.386667pt;}
.y86{bottom:339.706667pt;}
.ydf{bottom:344.986667pt;}
.y26{bottom:346.746667pt;}
.y15{bottom:349.946667pt;}
.y43{bottom:351.386667pt;}
.yad{bottom:354.746667pt;}
.y85{bottom:355.066667pt;}
.y25{bottom:362.426667pt;}
.y14{bottom:365.946667pt;}
.y42{bottom:366.746667pt;}
.y84{bottom:370.426667pt;}
.yde{bottom:373.146667pt;}
.y24{bottom:380.826667pt;}
.y13{bottom:381.306667pt;}
.y41{bottom:381.786667pt;}
.y52{bottom:382.106667pt;}
.y83{bottom:385.626667pt;}
.ydd{bottom:389.146667pt;}
.y40{bottom:397.146667pt;}
.yf4{bottom:400.706667pt;}
.y82{bottom:401.026667pt;}
.ydc{bottom:405.186667pt;}
.y3f{bottom:409.986667pt;}
.y3d{bottom:411.746667pt;}
.y81{bottom:416.386667pt;}
.y12{bottom:417.186667pt;}
.ydb{bottom:421.186667pt;}
.ya9{bottom:431.426667pt;}
.y80{bottom:431.746667pt;}
.ya8{bottom:446.786667pt;}
.y7f{bottom:447.106667pt;}
.yda{bottom:455.426667pt;}
.ya7{bottom:461.986667pt;}
.y7e{bottom:462.306667pt;}
.yd9{bottom:471.106667pt;}
.yf3{bottom:477.346667pt;}
.y7d{bottom:477.666667pt;}
.yd8{bottom:486.306667pt;}
.y7c{bottom:493.026667pt;}
.yd7{bottom:501.666667pt;}
.y7b{bottom:508.386667pt;}
.yd6{bottom:517.026667pt;}
.y99{bottom:523.426667pt;}
.y7a{bottom:523.746667pt;}
.yd5{bottom:532.386667pt;}
.y98{bottom:538.786667pt;}
.y79{bottom:539.106667pt;}
.yd4{bottom:547.746667pt;}
.y78{bottom:554.306667pt;}
.yd3{bottom:563.106667pt;}
.y77{bottom:569.666667pt;}
.yd2{bottom:578.306667pt;}
.y76{bottom:585.026667pt;}
.yd1{bottom:593.666667pt;}
.y75{bottom:600.386667pt;}
.yd0{bottom:609.053333pt;}
.y74{bottom:615.773333pt;}
.ya6{bottom:630.813333pt;}
.y73{bottom:631.133333pt;}
.ycf{bottom:637.213333pt;}
.ya5{bottom:646.013333pt;}
.y72{bottom:646.333333pt;}
.yce{bottom:653.213333pt;}
.y71{bottom:661.693333pt;}
.ycd{bottom:669.213333pt;}
.y70{bottom:677.053333pt;}
.ycc{bottom:685.213333pt;}
.y6f{bottom:692.413333pt;}
.y6e{bottom:707.773333pt;}
.ycb{bottom:719.453333pt;}
.y6d{bottom:722.973333pt;}
.yc9{bottom:734.973333pt;}
.y6c{bottom:738.333333pt;}
.yca{bottom:750.013333pt;}
.yc8{bottom:750.333333pt;}
.y6b{bottom:753.693333pt;}
.yc7{bottom:765.693333pt;}
.y9e{bottom:768.733333pt;}
.y6a{bottom:769.053333pt;}
.yc6{bottom:781.053333pt;}
.y9d{bottom:784.093333pt;}
.y69{bottom:784.413333pt;}
.yc5{bottom:796.413333pt;}
.y9c{bottom:799.453333pt;}
.y68{bottom:799.773333pt;}
.yc4{bottom:811.773333pt;}
.yac{bottom:814.653333pt;}
.y67{bottom:814.973333pt;}
.y11{bottom:815.293333pt;}
.yc3{bottom:827.013333pt;}
.y66{bottom:830.373333pt;}
.y10{bottom:835.013333pt;}
.yc2{bottom:842.373333pt;}
.y65{bottom:845.733333pt;}
.ye{bottom:850.373333pt;}
.yf{bottom:855.653333pt;}
.yc1{bottom:857.733333pt;}
.y64{bottom:860.773333pt;}
.y97{bottom:861.093333pt;}
.yd{bottom:867.333333pt;}
.y63{bottom:876.133333pt;}
.y96{bottom:876.453333pt;}
.yc{bottom:884.613333pt;}
.yc0{bottom:885.893333pt;}
.yf2{bottom:891.493333pt;}
.y62{bottom:891.813333pt;}
.ybf{bottom:901.893333pt;}
.yb{bottom:904.453333pt;}
.yf1{bottom:906.693333pt;}
.y61{bottom:907.013333pt;}
.ybe{bottom:917.893333pt;}
.ya4{bottom:922.053333pt;}
.y60{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.ybd{bottom:933.893333pt;}
.ya3{bottom:937.413333pt;}
.y5f{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y53{bottom:951.333333pt;}
.ya2{bottom:952.773333pt;}
.y5e{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.ybc{bottom:968.133333pt;}
.y5d{bottom:968.453333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.yab{bottom:998.693333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.yaa{bottom:1014.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h13{height:5.025000pt;}
.h14{height:5.160000pt;}
.h15{height:5.262553pt;}
.h12{height:5.440000pt;}
.h1b{height:11.040000pt;}
.h4{height:15.360000pt;}
.h1f{height:15.392000pt;}
.h1d{height:36.138125pt;}
.he{height:36.305625pt;}
.h1e{height:38.413438pt;}
.h10{height:40.640625pt;}
.h9{height:40.732364pt;}
.h11{height:40.764316pt;}
.h1c{height:42.063437pt;}
.h3{height:42.649687pt;}
.h1a{height:43.215000pt;}
.hd{height:44.073883pt;}
.hf{height:44.638750pt;}
.hc{height:44.975625pt;}
.h5{height:52.134375pt;}
.h16{height:53.535000pt;}
.h17{height:54.598989pt;}
.ha{height:55.298750pt;}
.h8{height:59.340000pt;}
.h19{height:64.500000pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h18{height:72.160000pt;}
.hb{height:393.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:53.600000pt;}
.w1b{width:53.920000pt;}
.w10{width:85.440000pt;}
.wc{width:85.760000pt;}
.w15{width:117.760000pt;}
.w11{width:118.080000pt;}
.wd{width:141.786667pt;}
.wa{width:142.106667pt;}
.w16{width:149.946667pt;}
.w1a{width:150.586667pt;}
.w12{width:150.746667pt;}
.w18{width:163.706667pt;}
.w14{width:164.026667pt;}
.w17{width:165.466667pt;}
.w13{width:166.266667pt;}
.we{width:184.826667pt;}
.wf{width:184.986667pt;}
.wb{width:185.626667pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w1c{width:226.106667pt;}
.w19{width:226.586667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x12{left:9.600000pt;}
.x27{left:12.960000pt;}
.x20{left:15.360000pt;}
.xa{left:18.400000pt;}
.x1c{left:23.040000pt;}
.x2{left:24.000000pt;}
.x21{left:25.920000pt;}
.x1e{left:31.040000pt;}
.x1a{left:33.760000pt;}
.x18{left:41.600000pt;}
.x3{left:44.320000pt;}
.x6{left:47.999988pt;}
.x28{left:52.506667pt;}
.xe{left:55.994667pt;}
.x2f{left:60.954667pt;}
.x25{left:61.960000pt;}
.x29{left:62.920000pt;}
.x1d{left:65.280000pt;}
.x2e{left:67.194667pt;}
.x26{left:69.960000pt;}
.x1f{left:77.120000pt;}
.x11{left:80.032000pt;}
.x2a{left:85.274667pt;}
.x1{left:96.031988pt;}
.x16{left:97.472000pt;}
.x31{left:108.031988pt;}
.x30{left:120.031988pt;}
.xd{left:124.992000pt;}
.xf{left:140.034667pt;}
.x7{left:201.946655pt;}
.x22{left:215.546667pt;}
.x9{left:237.506667pt;}
.x17{left:239.586667pt;}
.x15{left:254.306655pt;}
.x10{left:277.821333pt;}
.x2b{left:324.866667pt;}
.x23{left:366.306667pt;}
.x5{left:396.893322pt;}
.x4{left:402.973322pt;}
.xc{left:420.573322pt;}
.x19{left:425.213333pt;}
.x13{left:444.573322pt;}
.xb{left:447.746667pt;}
.x14{left:468.573322pt;}
.x2c{left:475.453333pt;}
.x24{left:532.573333pt;}
.x1b{left:610.853333pt;}
.x2d{left:641.733333pt;}
}




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