
    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_6eab8625282b149eee76dfdb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f28f3edce16ceef048ef0746.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_0d521a428fd9303e0e428f90.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_49f57d27a77c9274dd688f83.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_c176b79007255f832067757b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_212993161e2781394ef65d4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967285;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_80933b51930978fffe601d0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0e0a8951d4dfabd36010a4ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_27f7be7b8e45c7c8649f2ad3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_abe1b44a3c76a20d543fc758.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.675781;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_d3fd657ebf6893e3451b285e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_b428327e52d72ebf0110adef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7b4298ca9bda660d52d1c5ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_285885852d049748762cd13e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_1b90f7f3b858791ee78b241e.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_cfd077bd40cab95dbd9302d2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f3d39e8066a805bb68b318b1.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8af3d3319efa9b12e78edd75.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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_b221bd5de67553a6fdf512b8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.819824;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_c0a1d0d9725298d3eabdf7d2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_09a35102f1a7c42b8c6f737d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1b{letter-spacing:-0.525312px;}
.ls17{letter-spacing:-0.470592px;}
.ls8{letter-spacing:-0.454176px;}
.ls15{letter-spacing:-0.447552px;}
.ls1a{letter-spacing:-0.432288px;}
.ls1e{letter-spacing:-0.421344px;}
.ls19{letter-spacing:-0.361152px;}
.ls12{letter-spacing:-0.338688px;}
.ls13{letter-spacing:-0.320544px;}
.ls11{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.241200px;}
.ls14{letter-spacing:-0.223776px;}
.ls1d{letter-spacing:-0.213408px;}
.ls9{letter-spacing:-0.186048px;}
.ls1c{letter-spacing:-0.169632px;}
.ls5{letter-spacing:-0.158976px;}
.ls7{letter-spacing:-0.125856px;}
.lsa{letter-spacing:-0.115776px;}
.ls10{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.165600px;}
.lsd{letter-spacing:0.215136px;}
.ls1{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.240480px;}
.lse{letter-spacing:0.286848px;}
.ls20{letter-spacing:0.289872px;}
.ls21{letter-spacing:0.308880px;}
.lsc{letter-spacing:0.346608px;}
.ls1f{letter-spacing:0.351648px;}
.lsf{letter-spacing:0.358560px;}
.ls2{letter-spacing:73.440000px;}
.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;}
}
.ws6{word-spacing:-27.370080px;}
.ws5{word-spacing:-27.298368px;}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws0{word-spacing:-18.288864px;}
.ws12{word-spacing:-18.014400px;}
.wsa{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.985600px;}
.ws11{word-spacing:-16.257600px;}
.ws7{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.878080px;}
.ws9{word-spacing:-14.672448px;}
.wsc{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsd{word-spacing:-13.866048px;}
.wsf{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wse{word-spacing:-13.701888px;}
.ws10{word-spacing:-12.645072px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-8.922240px;}
._13{margin-left:-6.336000px;}
._5{margin-left:-5.335200px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._d{width:2.584800px;}
._19{width:3.880800px;}
._a{width:5.313600px;}
._1f{width:6.328800px;}
._9{width:7.372800px;}
._16{width:9.100800px;}
._f{width:10.281600px;}
._c{width:12.139200px;}
._10{width:13.939200px;}
._12{width:15.082704px;}
._e{width:16.941600px;}
._1a{width:19.044000px;}
._1b{width:20.988000px;}
._1c{width:22.406400px;}
._15{width:23.882400px;}
._20{width:24.926832px;}
._14{width:26.251200px;}
._11{width:27.648000px;}
._1d{width:34.905600px;}
._b{width:36.669600px;}
._17{width:40.302864px;}
._18{width:46.252800px;}
._6{width:73.183968px;}
._8{width:77.764176px;}
._1e{width:194.399424px;}
._7{width:208.135296px;}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:4.560000px;}
.y6f{bottom:4.680000px;}
.y57{bottom:4.920000px;}
.y72{bottom:5.280000px;}
.y3c{bottom:5.460000px;}
.y12{bottom:5.640000px;}
.y9{bottom:11.400000px;}
.y4c{bottom:12.300000px;}
.yd{bottom:14.640000px;}
.y11{bottom:25.440000px;}
.y71{bottom:26.160000px;}
.y19{bottom:27.060000px;}
.y4e{bottom:27.960000px;}
.y4b{bottom:29.580000px;}
.y8{bottom:33.720000px;}
.y6e{bottom:35.640000px;}
.y3b{bottom:43.980000px;}
.yf{bottom:45.600000px;}
.y10{bottom:46.320000px;}
.y4a{bottom:46.500000px;}
.y18{bottom:47.940000px;}
.yc{bottom:51.000000px;}
.y4{bottom:57.240000px;}
.y6d{bottom:57.960000px;}
.y49{bottom:63.780000px;}
.y3a{bottom:64.860000px;}
.y55{bottom:66.960000px;}
.y17{bottom:68.820000px;}
.y56{bottom:75.000000px;}
.y3{bottom:76.320000px;}
.y6c{bottom:80.640000px;}
.y48{bottom:81.060000px;}
.y54{bottom:84.600000px;}
.y39{bottom:85.740000px;}
.yb{bottom:87.720000px;}
.y16{bottom:89.700000px;}
.y6b{bottom:102.960000px;}
.y38{bottom:106.260000px;}
.y15{bottom:110.580000px;}
.yff{bottom:114.120000px;}
.y50{bottom:115.560000px;}
.ya3{bottom:119.160000px;}
.ya{bottom:124.440000px;}
.y6a{bottom:125.280000px;}
.y82{bottom:125.640000px;}
.y37{bottom:127.140000px;}
.y4d{bottom:129.000000px;}
.y14{bottom:131.820000px;}
.y135{bottom:134.280000px;}
.y11a{bottom:134.640000px;}
.yc0{bottom:141.120000px;}
.yfe{bottom:145.080000px;}
.ye4{bottom:146.520000px;}
.y69{bottom:147.600000px;}
.y36{bottom:147.660000px;}
.y7{bottom:147.840000px;}
.ya2{bottom:150.120000px;}
.y81{bottom:156.600000px;}
.y35{bottom:168.540000px;}
.y1a{bottom:169.500000px;}
.y68{bottom:169.920000px;}
.ybf{bottom:172.080000px;}
.yfd{bottom:176.040000px;}
.ye3{bottom:177.840000px;}
.ya1{bottom:181.080000px;}
.y119{bottom:183.600000px;}
.y80{bottom:187.920000px;}
.y34{bottom:189.060000px;}
.y67{bottom:192.240000px;}
.y134{bottom:196.920000px;}
.ybe{bottom:203.040000px;}
.yfc{bottom:207.360000px;}
.ye2{bottom:208.800000px;}
.y33{bottom:209.940000px;}
.ya0{bottom:212.040000px;}
.y66{bottom:214.560000px;}
.y133{bottom:219.240000px;}
.y7f{bottom:227.880000px;}
.y32{bottom:230.460000px;}
.ybd{bottom:234.360000px;}
.y65{bottom:236.880000px;}
.yfb{bottom:238.320000px;}
.ye1{bottom:239.760000px;}
.y132{bottom:241.920000px;}
.y9f{bottom:243.360000px;}
.y118{bottom:245.880000px;}
.y31{bottom:251.340000px;}
.y7e{bottom:258.840000px;}
.y64{bottom:259.200000px;}
.y3d{bottom:264.000000px;}
.ybc{bottom:265.320000px;}
.yfa{bottom:269.280000px;}
.ye0{bottom:270.720000px;}
.y30{bottom:271.860000px;}
.y9e{bottom:274.320000px;}
.y117{bottom:276.840000px;}
.y63{bottom:281.520000px;}
.y131{bottom:282.240000px;}
.y7d{bottom:289.800000px;}
.yd3{bottom:290.880000px;}
.y2f{bottom:292.740000px;}
.ybb{bottom:296.280000px;}
.yf9{bottom:300.240000px;}
.ydf{bottom:302.040000px;}
.y62{bottom:303.840000px;}
.y130{bottom:304.560000px;}
.y9d{bottom:305.280000px;}
.y2e{bottom:313.260000px;}
.y7c{bottom:321.120000px;}
.y14f{bottom:324.720000px;}
.y116{bottom:325.800000px;}
.y61{bottom:326.160000px;}
.yba{bottom:327.240000px;}
.yd2{bottom:331.200000px;}
.yf8{bottom:331.560000px;}
.yde{bottom:333.000000px;}
.y2d{bottom:333.780000px;}
.y47{bottom:340.080000px;}
.y12f{bottom:344.880000px;}
.y9c{bottom:345.240000px;}
.y60{bottom:348.480000px;}
.y7b{bottom:352.080000px;}
.y2c{bottom:354.660000px;}
.y14e{bottom:356.040000px;}
.y115{bottom:356.760000px;}
.y46{bottom:357.360000px;}
.yb9{bottom:358.560000px;}
.yd1{bottom:362.160000px;}
.yf7{bottom:362.520000px;}
.ydd{bottom:363.960000px;}
.y12e{bottom:367.200000px;}
.y5f{bottom:370.800000px;}
.y45{bottom:374.640000px;}
.y2b{bottom:375.180000px;}
.y9b{bottom:376.560000px;}
.y7a{bottom:383.040000px;}
.y14d{bottom:387.360000px;}
.y114{bottom:388.080000px;}
.yb8{bottom:389.520000px;}
.y44{bottom:391.920000px;}
.y5e{bottom:393.120000px;}
.y108{bottom:393.480000px;}
.ydc{bottom:394.920000px;}
.y2a{bottom:396.060000px;}
.y9a{bottom:407.520000px;}
.y43{bottom:409.200000px;}
.yf6{bottom:411.480000px;}
.y79{bottom:414.000000px;}
.y5d{bottom:415.440000px;}
.y29{bottom:416.580000px;}
.y14c{bottom:418.680000px;}
.y113{bottom:419.040000px;}
.yd0{bottom:424.080000px;}
.y107{bottom:424.440000px;}
.ydb{bottom:426.240000px;}
.y42{bottom:426.480000px;}
.yb7{bottom:429.480000px;}
.y12d{bottom:429.840000px;}
.y28{bottom:437.460000px;}
.y5c{bottom:437.760000px;}
.y99{bottom:438.480000px;}
.yf5{bottom:442.440000px;}
.y41{bottom:443.400000px;}
.y78{bottom:445.320000px;}
.y14b{bottom:450.000000px;}
.y12c{bottom:452.160000px;}
.ycf{bottom:455.400000px;}
.y106{bottom:455.760000px;}
.yda{bottom:457.200000px;}
.y27{bottom:457.980000px;}
.y5b{bottom:460.080000px;}
.yb6{bottom:460.440000px;}
.y40{bottom:460.680000px;}
.y112{bottom:468.000000px;}
.y98{bottom:469.440000px;}
.yf4{bottom:473.760000px;}
.y77{bottom:476.280000px;}
.y3f{bottom:477.960000px;}
.y26{bottom:478.860000px;}
.y14a{bottom:481.320000px;}
.y5a{bottom:482.400000px;}
.y59{bottom:482.760000px;}
.yce{bottom:486.360000px;}
.y105{bottom:486.720000px;}
.yb5{bottom:491.760000px;}
.y12b{bottom:492.480000px;}
.y3e{bottom:495.240000px;}
.yd9{bottom:497.160000px;}
.y111{bottom:498.960000px;}
.y25{bottom:499.380000px;}
.y97{bottom:500.760000px;}
.yf3{bottom:504.720000px;}
.y76{bottom:507.240000px;}
.y149{bottom:512.640000px;}
.y12a{bottom:514.800000px;}
.ycd{bottom:517.320000px;}
.y104{bottom:517.680000px;}
.y24{bottom:520.260000px;}
.yb4{bottom:522.720000px;}
.yd8{bottom:528.480000px;}
.y110{bottom:530.280000px;}
.y96{bottom:531.720000px;}
.yf2{bottom:535.680000px;}
.y129{bottom:537.120000px;}
.y75{bottom:538.200000px;}
.y23{bottom:540.780000px;}
.y148{bottom:543.960000px;}
.ycc{bottom:548.280000px;}
.yb3{bottom:553.680000px;}
.y74{bottom:559.440000px;}
.yd7{bottom:559.800000px;}
.y10f{bottom:561.240000px;}
.y22{bottom:561.660000px;}
.y95{bottom:562.680000px;}
.yf1{bottom:566.640000px;}
.y147{bottom:575.640000px;}
.y128{bottom:577.440000px;}
.ycb{bottom:579.600000px;}
.yb2{bottom:584.640000px;}
.y73{bottom:590.400000px;}
.y10e{bottom:592.200000px;}
.y94{bottom:593.640000px;}
.yf0{bottom:597.600000px;}
.yd6{bottom:599.760000px;}
.y21{bottom:600.180000px;}
.y70{bottom:606.000000px;}
.y146{bottom:606.960000px;}
.yca{bottom:610.560000px;}
.yb1{bottom:615.600000px;}
.y20{bottom:621.060000px;}
.y93{bottom:624.600000px;}
.yef{bottom:628.920000px;}
.yd5{bottom:632.520000px;}
.y145{bottom:638.280000px;}
.y127{bottom:640.080000px;}
.y10d{bottom:641.160000px;}
.yc9{bottom:641.520000px;}
.y1f{bottom:641.580000px;}
.yb0{bottom:646.920000px;}
.y58{bottom:648.000000px;}
.y92{bottom:655.920000px;}
.yee{bottom:659.880000px;}
.y126{bottom:662.400000px;}
.y1e{bottom:664.980000px;}
.yd4{bottom:668.880000px;}
.y144{bottom:669.600000px;}
.yc8{bottom:672.480000px;}
.yaf{bottom:677.880000px;}
.y125{bottom:684.720000px;}
.y91{bottom:686.880000px;}
.y1d{bottom:688.380000px;}
.yed{bottom:690.840000px;}
.y143{bottom:700.920000px;}
.y10c{bottom:703.440000px;}
.yc7{bottom:703.800000px;}
.yae{bottom:708.840000px;}
.y1c{bottom:711.060000px;}
.yec{bottom:721.800000px;}
.y124{bottom:725.040000px;}
.y90{bottom:726.840000px;}
.y142{bottom:732.240000px;}
.y1b{bottom:733.380000px;}
.y10b{bottom:734.400000px;}
.yc6{bottom:743.760000px;}
.y123{bottom:747.360000px;}
.yad{bottom:748.800000px;}
.y103{bottom:753.120000px;}
.y8f{bottom:757.800000px;}
.y141{bottom:763.560000px;}
.yeb{bottom:771.120000px;}
.y13{bottom:772.500000px;}
.y10a{bottom:774.360000px;}
.yc5{bottom:774.720000px;}
.yac{bottom:780.120000px;}
.y122{bottom:787.680000px;}
.y8e{bottom:789.120000px;}
.y140{bottom:794.880000px;}
.yea{bottom:802.080000px;}
.y109{bottom:804.960000px;}
.yc4{bottom:805.680000px;}
.y121{bottom:810.000000px;}
.yab{bottom:811.080000px;}
.y8d{bottom:820.080000px;}
.ye9{bottom:833.040000px;}
.y13f{bottom:835.200000px;}
.yc3{bottom:837.000000px;}
.yaa{bottom:842.040000px;}
.y8c{bottom:851.040000px;}
.y13e{bottom:857.520000px;}
.y120{bottom:859.320000px;}
.ye8{bottom:864.000000px;}
.yc2{bottom:869.760000px;}
.ya9{bottom:873.000000px;}
.y8b{bottom:882.000000px;}
.y11f{bottom:890.280000px;}
.ye7{bottom:895.320000px;}
.y13d{bottom:897.840000px;}
.yc1{bottom:902.520000px;}
.ya8{bottom:904.320000px;}
.y8a{bottom:913.320000px;}
.y13c{bottom:920.160000px;}
.ye{bottom:921.000000px;}
.y11e{bottom:921.240000px;}
.ye6{bottom:926.280000px;}
.ya7{bottom:935.280000px;}
.y13b{bottom:942.480000px;}
.y89{bottom:944.280000px;}
.ye5{bottom:957.240000px;}
.ya6{bottom:966.240000px;}
.y11d{bottom:970.200000px;}
.y88{bottom:975.240000px;}
.y13a{bottom:982.800000px;}
.y6{bottom:984.000000px;}
.y102{bottom:988.200000px;}
.ya5{bottom:997.200000px;}
.y11c{bottom:1001.520000px;}
.y139{bottom:1005.120000px;}
.y87{bottom:1006.200000px;}
.y101{bottom:1019.520000px;}
.ya4{bottom:1028.520000px;}
.y86{bottom:1037.520000px;}
.y138{bottom:1045.440000px;}
.y100{bottom:1050.480000px;}
.y137{bottom:1067.760000px;}
.y85{bottom:1068.480000px;}
.y11b{bottom:1081.440000px;}
.y84{bottom:1099.440000px;}
.y136{bottom:1108.080000px;}
.y83{bottom:1130.400000px;}
.y53{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y52{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y51{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h17{height:22.500000px;}
.h16{height:36.405703px;}
.h1d{height:40.310156px;}
.h4{height:41.574375px;}
.h15{height:41.868281px;}
.h12{height:41.993438px;}
.h14{height:42.000000px;}
.h1b{height:43.500000px;}
.ha{height:44.149219px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.h10{height:48.761719px;}
.h9{height:49.992188px;}
.hf{height:50.027344px;}
.h19{height:54.000000px;}
.he{height:56.593125px;}
.hc{height:62.472656px;}
.h8{height:63.000000px;}
.h1a{height:63.175781px;}
.h1c{height:63.949219px;}
.h6{height:72.360000px;}
.h13{height:96.000000px;}
.h7{height:98.568984px;}
.hb{height:150.000000px;}
.h5{height:165.000000px;}
.h18{height:499.500000px;}
.h11{height:510.000000px;}
.hd{height:753.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:28.500000px;}
.w5{width:120.000000px;}
.w2{width:249.000000px;}
.w3{width:552.000000px;}
.w6{width:666.000000px;}
.w7{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:8.228388px;}
.xa{left:9.480108px;}
.x10{left:21.688464px;}
.x13{left:23.630844px;}
.x11{left:38.422128px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x8{left:58.450548px;}
.xc{left:68.556504px;}
.x12{left:74.896680px;}
.xf{left:77.433096px;}
.xe{left:86.072772px;}
.xd{left:89.254416px;}
.x17{left:107.174916px;}
.x4{left:124.379904px;}
.x16{left:174.000000px;}
.x14{left:175.758960px;}
.x9{left:180.860160px;}
.x5{left:233.819832px;}
.x7{left:289.500000px;}
.x2{left:685.130400px;}
.x18{left:691.560000px;}
.x15{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1b{letter-spacing:-0.466944pt;}
.ls17{letter-spacing:-0.418304pt;}
.ls8{letter-spacing:-0.403712pt;}
.ls15{letter-spacing:-0.397824pt;}
.ls1a{letter-spacing:-0.384256pt;}
.ls1e{letter-spacing:-0.374528pt;}
.ls19{letter-spacing:-0.321024pt;}
.ls12{letter-spacing:-0.301056pt;}
.ls13{letter-spacing:-0.284928pt;}
.ls11{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.214400pt;}
.ls14{letter-spacing:-0.198912pt;}
.ls1d{letter-spacing:-0.189696pt;}
.ls9{letter-spacing:-0.165376pt;}
.ls1c{letter-spacing:-0.150784pt;}
.ls5{letter-spacing:-0.141312pt;}
.ls7{letter-spacing:-0.111872pt;}
.lsa{letter-spacing:-0.102912pt;}
.ls10{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.147200pt;}
.lsd{letter-spacing:0.191232pt;}
.ls1{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213760pt;}
.lse{letter-spacing:0.254976pt;}
.ls20{letter-spacing:0.257664pt;}
.ls21{letter-spacing:0.274560pt;}
.lsc{letter-spacing:0.308096pt;}
.ls1f{letter-spacing:0.312576pt;}
.lsf{letter-spacing:0.318720pt;}
.ls2{letter-spacing:65.280000pt;}
.ws6{word-spacing:-24.328960pt;}
.ws5{word-spacing:-24.265216pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws0{word-spacing:-16.256768pt;}
.ws12{word-spacing:-16.012800pt;}
.wsa{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.987200pt;}
.ws11{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.224960pt;}
.ws9{word-spacing:-13.042176pt;}
.wsc{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsd{word-spacing:-12.325376pt;}
.wsf{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wse{word-spacing:-12.179456pt;}
.ws10{word-spacing:-11.240064pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-7.930880pt;}
._13{margin-left:-5.632000pt;}
._5{margin-left:-4.742400pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._d{width:2.297600pt;}
._19{width:3.449600pt;}
._a{width:4.723200pt;}
._1f{width:5.625600pt;}
._9{width:6.553600pt;}
._16{width:8.089600pt;}
._f{width:9.139200pt;}
._c{width:10.790400pt;}
._10{width:12.390400pt;}
._12{width:13.406848pt;}
._e{width:15.059200pt;}
._1a{width:16.928000pt;}
._1b{width:18.656000pt;}
._1c{width:19.916800pt;}
._15{width:21.228800pt;}
._20{width:22.157184pt;}
._14{width:23.334400pt;}
._11{width:24.576000pt;}
._1d{width:31.027200pt;}
._b{width:32.595200pt;}
._17{width:35.824768pt;}
._18{width:41.113600pt;}
._6{width:65.052416pt;}
._8{width:69.123712pt;}
._1e{width:172.799488pt;}
._7{width:185.009152pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:4.053333pt;}
.y6f{bottom:4.160000pt;}
.y57{bottom:4.373333pt;}
.y72{bottom:4.693333pt;}
.y3c{bottom:4.853333pt;}
.y12{bottom:5.013333pt;}
.y9{bottom:10.133333pt;}
.y4c{bottom:10.933333pt;}
.yd{bottom:13.013333pt;}
.y11{bottom:22.613333pt;}
.y71{bottom:23.253333pt;}
.y19{bottom:24.053333pt;}
.y4e{bottom:24.853333pt;}
.y4b{bottom:26.293333pt;}
.y8{bottom:29.973333pt;}
.y6e{bottom:31.680000pt;}
.y3b{bottom:39.093333pt;}
.yf{bottom:40.533333pt;}
.y10{bottom:41.173333pt;}
.y4a{bottom:41.333333pt;}
.y18{bottom:42.613333pt;}
.yc{bottom:45.333333pt;}
.y4{bottom:50.880000pt;}
.y6d{bottom:51.520000pt;}
.y49{bottom:56.693333pt;}
.y3a{bottom:57.653333pt;}
.y55{bottom:59.520000pt;}
.y17{bottom:61.173333pt;}
.y56{bottom:66.666667pt;}
.y3{bottom:67.840000pt;}
.y6c{bottom:71.680000pt;}
.y48{bottom:72.053333pt;}
.y54{bottom:75.200000pt;}
.y39{bottom:76.213333pt;}
.yb{bottom:77.973333pt;}
.y16{bottom:79.733333pt;}
.y6b{bottom:91.520000pt;}
.y38{bottom:94.453333pt;}
.y15{bottom:98.293333pt;}
.yff{bottom:101.440000pt;}
.y50{bottom:102.720000pt;}
.ya3{bottom:105.920000pt;}
.ya{bottom:110.613333pt;}
.y6a{bottom:111.360000pt;}
.y82{bottom:111.680000pt;}
.y37{bottom:113.013333pt;}
.y4d{bottom:114.666667pt;}
.y14{bottom:117.173333pt;}
.y135{bottom:119.360000pt;}
.y11a{bottom:119.680000pt;}
.yc0{bottom:125.440000pt;}
.yfe{bottom:128.960000pt;}
.ye4{bottom:130.240000pt;}
.y69{bottom:131.200000pt;}
.y36{bottom:131.253333pt;}
.y7{bottom:131.413333pt;}
.ya2{bottom:133.440000pt;}
.y81{bottom:139.200000pt;}
.y35{bottom:149.813333pt;}
.y1a{bottom:150.666667pt;}
.y68{bottom:151.040000pt;}
.ybf{bottom:152.960000pt;}
.yfd{bottom:156.480000pt;}
.ye3{bottom:158.080000pt;}
.ya1{bottom:160.960000pt;}
.y119{bottom:163.200000pt;}
.y80{bottom:167.040000pt;}
.y34{bottom:168.053333pt;}
.y67{bottom:170.880000pt;}
.y134{bottom:175.040000pt;}
.ybe{bottom:180.480000pt;}
.yfc{bottom:184.320000pt;}
.ye2{bottom:185.600000pt;}
.y33{bottom:186.613333pt;}
.ya0{bottom:188.480000pt;}
.y66{bottom:190.720000pt;}
.y133{bottom:194.880000pt;}
.y7f{bottom:202.560000pt;}
.y32{bottom:204.853333pt;}
.ybd{bottom:208.320000pt;}
.y65{bottom:210.560000pt;}
.yfb{bottom:211.840000pt;}
.ye1{bottom:213.120000pt;}
.y132{bottom:215.040000pt;}
.y9f{bottom:216.320000pt;}
.y118{bottom:218.560000pt;}
.y31{bottom:223.413333pt;}
.y7e{bottom:230.080000pt;}
.y64{bottom:230.400000pt;}
.y3d{bottom:234.666667pt;}
.ybc{bottom:235.840000pt;}
.yfa{bottom:239.360000pt;}
.ye0{bottom:240.640000pt;}
.y30{bottom:241.653333pt;}
.y9e{bottom:243.840000pt;}
.y117{bottom:246.080000pt;}
.y63{bottom:250.240000pt;}
.y131{bottom:250.880000pt;}
.y7d{bottom:257.600000pt;}
.yd3{bottom:258.560000pt;}
.y2f{bottom:260.213333pt;}
.ybb{bottom:263.360000pt;}
.yf9{bottom:266.880000pt;}
.ydf{bottom:268.480000pt;}
.y62{bottom:270.080000pt;}
.y130{bottom:270.720000pt;}
.y9d{bottom:271.360000pt;}
.y2e{bottom:278.453333pt;}
.y7c{bottom:285.440000pt;}
.y14f{bottom:288.640000pt;}
.y116{bottom:289.600000pt;}
.y61{bottom:289.920000pt;}
.yba{bottom:290.880000pt;}
.yd2{bottom:294.400000pt;}
.yf8{bottom:294.720000pt;}
.yde{bottom:296.000000pt;}
.y2d{bottom:296.693333pt;}
.y47{bottom:302.293333pt;}
.y12f{bottom:306.560000pt;}
.y9c{bottom:306.880000pt;}
.y60{bottom:309.760000pt;}
.y7b{bottom:312.960000pt;}
.y2c{bottom:315.253333pt;}
.y14e{bottom:316.480000pt;}
.y115{bottom:317.120000pt;}
.y46{bottom:317.653333pt;}
.yb9{bottom:318.720000pt;}
.yd1{bottom:321.920000pt;}
.yf7{bottom:322.240000pt;}
.ydd{bottom:323.520000pt;}
.y12e{bottom:326.400000pt;}
.y5f{bottom:329.600000pt;}
.y45{bottom:333.013333pt;}
.y2b{bottom:333.493333pt;}
.y9b{bottom:334.720000pt;}
.y7a{bottom:340.480000pt;}
.y14d{bottom:344.320000pt;}
.y114{bottom:344.960000pt;}
.yb8{bottom:346.240000pt;}
.y44{bottom:348.373333pt;}
.y5e{bottom:349.440000pt;}
.y108{bottom:349.760000pt;}
.ydc{bottom:351.040000pt;}
.y2a{bottom:352.053333pt;}
.y9a{bottom:362.240000pt;}
.y43{bottom:363.733333pt;}
.yf6{bottom:365.760000pt;}
.y79{bottom:368.000000pt;}
.y5d{bottom:369.280000pt;}
.y29{bottom:370.293333pt;}
.y14c{bottom:372.160000pt;}
.y113{bottom:372.480000pt;}
.yd0{bottom:376.960000pt;}
.y107{bottom:377.280000pt;}
.ydb{bottom:378.880000pt;}
.y42{bottom:379.093333pt;}
.yb7{bottom:381.760000pt;}
.y12d{bottom:382.080000pt;}
.y28{bottom:388.853333pt;}
.y5c{bottom:389.120000pt;}
.y99{bottom:389.760000pt;}
.yf5{bottom:393.280000pt;}
.y41{bottom:394.133333pt;}
.y78{bottom:395.840000pt;}
.y14b{bottom:400.000000pt;}
.y12c{bottom:401.920000pt;}
.ycf{bottom:404.800000pt;}
.y106{bottom:405.120000pt;}
.yda{bottom:406.400000pt;}
.y27{bottom:407.093333pt;}
.y5b{bottom:408.960000pt;}
.yb6{bottom:409.280000pt;}
.y40{bottom:409.493333pt;}
.y112{bottom:416.000000pt;}
.y98{bottom:417.280000pt;}
.yf4{bottom:421.120000pt;}
.y77{bottom:423.360000pt;}
.y3f{bottom:424.853333pt;}
.y26{bottom:425.653333pt;}
.y14a{bottom:427.840000pt;}
.y5a{bottom:428.800000pt;}
.y59{bottom:429.120000pt;}
.yce{bottom:432.320000pt;}
.y105{bottom:432.640000pt;}
.yb5{bottom:437.120000pt;}
.y12b{bottom:437.760000pt;}
.y3e{bottom:440.213333pt;}
.yd9{bottom:441.920000pt;}
.y111{bottom:443.520000pt;}
.y25{bottom:443.893333pt;}
.y97{bottom:445.120000pt;}
.yf3{bottom:448.640000pt;}
.y76{bottom:450.880000pt;}
.y149{bottom:455.680000pt;}
.y12a{bottom:457.600000pt;}
.ycd{bottom:459.840000pt;}
.y104{bottom:460.160000pt;}
.y24{bottom:462.453333pt;}
.yb4{bottom:464.640000pt;}
.yd8{bottom:469.760000pt;}
.y110{bottom:471.360000pt;}
.y96{bottom:472.640000pt;}
.yf2{bottom:476.160000pt;}
.y129{bottom:477.440000pt;}
.y75{bottom:478.400000pt;}
.y23{bottom:480.693333pt;}
.y148{bottom:483.520000pt;}
.ycc{bottom:487.360000pt;}
.yb3{bottom:492.160000pt;}
.y74{bottom:497.280000pt;}
.yd7{bottom:497.600000pt;}
.y10f{bottom:498.880000pt;}
.y22{bottom:499.253333pt;}
.y95{bottom:500.160000pt;}
.yf1{bottom:503.680000pt;}
.y147{bottom:511.680000pt;}
.y128{bottom:513.280000pt;}
.ycb{bottom:515.200000pt;}
.yb2{bottom:519.680000pt;}
.y73{bottom:524.800000pt;}
.y10e{bottom:526.400000pt;}
.y94{bottom:527.680000pt;}
.yf0{bottom:531.200000pt;}
.yd6{bottom:533.120000pt;}
.y21{bottom:533.493333pt;}
.y70{bottom:538.666667pt;}
.y146{bottom:539.520000pt;}
.yca{bottom:542.720000pt;}
.yb1{bottom:547.200000pt;}
.y20{bottom:552.053333pt;}
.y93{bottom:555.200000pt;}
.yef{bottom:559.040000pt;}
.yd5{bottom:562.240000pt;}
.y145{bottom:567.360000pt;}
.y127{bottom:568.960000pt;}
.y10d{bottom:569.920000pt;}
.yc9{bottom:570.240000pt;}
.y1f{bottom:570.293333pt;}
.yb0{bottom:575.040000pt;}
.y58{bottom:576.000000pt;}
.y92{bottom:583.040000pt;}
.yee{bottom:586.560000pt;}
.y126{bottom:588.800000pt;}
.y1e{bottom:591.093333pt;}
.yd4{bottom:594.560000pt;}
.y144{bottom:595.200000pt;}
.yc8{bottom:597.760000pt;}
.yaf{bottom:602.560000pt;}
.y125{bottom:608.640000pt;}
.y91{bottom:610.560000pt;}
.y1d{bottom:611.893333pt;}
.yed{bottom:614.080000pt;}
.y143{bottom:623.040000pt;}
.y10c{bottom:625.280000pt;}
.yc7{bottom:625.600000pt;}
.yae{bottom:630.080000pt;}
.y1c{bottom:632.053333pt;}
.yec{bottom:641.600000pt;}
.y124{bottom:644.480000pt;}
.y90{bottom:646.080000pt;}
.y142{bottom:650.880000pt;}
.y1b{bottom:651.893333pt;}
.y10b{bottom:652.800000pt;}
.yc6{bottom:661.120000pt;}
.y123{bottom:664.320000pt;}
.yad{bottom:665.600000pt;}
.y103{bottom:669.440000pt;}
.y8f{bottom:673.600000pt;}
.y141{bottom:678.720000pt;}
.yeb{bottom:685.440000pt;}
.y13{bottom:686.666667pt;}
.y10a{bottom:688.320000pt;}
.yc5{bottom:688.640000pt;}
.yac{bottom:693.440000pt;}
.y122{bottom:700.160000pt;}
.y8e{bottom:701.440000pt;}
.y140{bottom:706.560000pt;}
.yea{bottom:712.960000pt;}
.y109{bottom:715.520000pt;}
.yc4{bottom:716.160000pt;}
.y121{bottom:720.000000pt;}
.yab{bottom:720.960000pt;}
.y8d{bottom:728.960000pt;}
.ye9{bottom:740.480000pt;}
.y13f{bottom:742.400000pt;}
.yc3{bottom:744.000000pt;}
.yaa{bottom:748.480000pt;}
.y8c{bottom:756.480000pt;}
.y13e{bottom:762.240000pt;}
.y120{bottom:763.840000pt;}
.ye8{bottom:768.000000pt;}
.yc2{bottom:773.120000pt;}
.ya9{bottom:776.000000pt;}
.y8b{bottom:784.000000pt;}
.y11f{bottom:791.360000pt;}
.ye7{bottom:795.840000pt;}
.y13d{bottom:798.080000pt;}
.yc1{bottom:802.240000pt;}
.ya8{bottom:803.840000pt;}
.y8a{bottom:811.840000pt;}
.y13c{bottom:817.920000pt;}
.ye{bottom:818.666667pt;}
.y11e{bottom:818.880000pt;}
.ye6{bottom:823.360000pt;}
.ya7{bottom:831.360000pt;}
.y13b{bottom:837.760000pt;}
.y89{bottom:839.360000pt;}
.ye5{bottom:850.880000pt;}
.ya6{bottom:858.880000pt;}
.y11d{bottom:862.400000pt;}
.y88{bottom:866.880000pt;}
.y13a{bottom:873.600000pt;}
.y6{bottom:874.666667pt;}
.y102{bottom:878.400000pt;}
.ya5{bottom:886.400000pt;}
.y11c{bottom:890.240000pt;}
.y139{bottom:893.440000pt;}
.y87{bottom:894.400000pt;}
.y101{bottom:906.240000pt;}
.ya4{bottom:914.240000pt;}
.y86{bottom:922.240000pt;}
.y138{bottom:929.280000pt;}
.y100{bottom:933.760000pt;}
.y137{bottom:949.120000pt;}
.y85{bottom:949.760000pt;}
.y11b{bottom:961.280000pt;}
.y84{bottom:977.280000pt;}
.y136{bottom:984.960000pt;}
.y83{bottom:1004.800000pt;}
.y53{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y52{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y51{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h17{height:20.000000pt;}
.h16{height:32.360625pt;}
.h1d{height:35.831250pt;}
.h4{height:36.955000pt;}
.h15{height:37.216250pt;}
.h12{height:37.327500pt;}
.h14{height:37.333333pt;}
.h1b{height:38.666667pt;}
.ha{height:39.243750pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.h10{height:43.343750pt;}
.h9{height:44.437500pt;}
.hf{height:44.468750pt;}
.h19{height:48.000000pt;}
.he{height:50.305000pt;}
.hc{height:55.531250pt;}
.h8{height:56.000000pt;}
.h1a{height:56.156250pt;}
.h1c{height:56.843750pt;}
.h6{height:64.320000pt;}
.h13{height:85.333333pt;}
.h7{height:87.616875pt;}
.hb{height:133.333333pt;}
.h5{height:146.666667pt;}
.h18{height:444.000000pt;}
.h11{height:453.333333pt;}
.hd{height:669.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:25.333333pt;}
.w5{width:106.666667pt;}
.w2{width:221.333333pt;}
.w3{width:490.666667pt;}
.w6{width:592.000000pt;}
.w7{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:7.314123pt;}
.xa{left:8.426763pt;}
.x10{left:19.278635pt;}
.x13{left:21.005195pt;}
.x11{left:34.153003pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x8{left:51.956043pt;}
.xc{left:60.939115pt;}
.x12{left:66.574827pt;}
.xf{left:68.829419pt;}
.xe{left:76.509131pt;}
.xd{left:79.337259pt;}
.x17{left:95.266592pt;}
.x4{left:110.559915pt;}
.x16{left:154.666667pt;}
.x14{left:156.230187pt;}
.x9{left:160.764587pt;}
.x5{left:207.839851pt;}
.x7{left:257.333333pt;}
.x2{left:609.004800pt;}
.x18{left:614.720000pt;}
.x15{left:721.333333pt;}
}




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