
    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_35c7e9ac7af80aef3768aec6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d636213a3fee51b176fd705.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_230f96ef21c063da8c9c3a0f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_7287c7ba91fb4c57d9f3e7ff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895508;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_a899fecaa7877a2f0cd04f09.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e52d3e7cc3d0a49dccd4fdbc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ed192f3d105b0a0b11e0725b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_35c7e9ac7af80aef3768aec6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8d636213a3fee51b176fd705.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8a8942b06bb9acae70bb0e55.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_52a51266d1e70d45d5db6a70.woff')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_8d636213a3fee51b176fd705.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bb31c6d1cee426d971593286.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b2f34ba6cd38f3b70916629a.woff')format("woff");}.fff{font-family:fff;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;}
.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);}
.v5{vertical-align:-20.579400px;}
.v2{vertical-align:-15.984000px;}
.v3{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.579400px;}
.v1{vertical-align:27.972000px;}
.ls4{letter-spacing:-2.520000px;}
.ls16{letter-spacing:-1.333088px;}
.lsb{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.035408px;}
.lsc{letter-spacing:-0.618000px;}
.ls3{letter-spacing:-0.420000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000300px;}
.lsf{letter-spacing:0.156000px;}
.ls0{letter-spacing:0.165000px;}
.ls9{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.247650px;}
.ls8{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.600000px;}
.ls13{letter-spacing:1.189200px;}
.ls11{letter-spacing:1.285800px;}
.ls1{letter-spacing:1.755000px;}
.ls15{letter-spacing:1.918200px;}
.lsa{letter-spacing:1.980000px;}
.ls14{letter-spacing:2.770800px;}
.ls6{letter-spacing:2.772000px;}
.ls12{letter-spacing:2.774400px;}
.ls10{letter-spacing:2.973000px;}
.ls1a{letter-spacing:5.885400px;}
.ls19{letter-spacing:8.209800px;}
.ls1b{letter-spacing:11.227800px;}
.lsd{letter-spacing:17.644200px;}
.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;}
}
.ws0{word-spacing:-16.665000px;}
.ws15{word-spacing:-16.500000px;}
.ws20{word-spacing:-15.450000px;}
.ws32{word-spacing:-15.000000px;}
.ws26{word-spacing:-12.000000px;}
.ws25{word-spacing:-9.007350px;}
.ws2b{word-spacing:-7.674262px;}
.ws21{word-spacing:-6.859800px;}
.ws17{word-spacing:-6.365400px;}
.ws3b{word-spacing:-5.500200px;}
.ws4c{word-spacing:-5.253000px;}
.ws49{word-spacing:-4.820400px;}
.ws3f{word-spacing:-3.769800px;}
.ws2a{word-spacing:-3.399000px;}
.ws42{word-spacing:-2.595600px;}
.ws22{word-spacing:-2.533800px;}
.ws4a{word-spacing:-2.163000px;}
.ws5{word-spacing:-2.160000px;}
.ws1c{word-spacing:-2.039400px;}
.wsd{word-spacing:-1.860000px;}
.ws18{word-spacing:-1.545000px;}
.ws52{word-spacing:-1.112400px;}
.wsb{word-spacing:-1.080000px;}
.ws47{word-spacing:-1.050600px;}
.ws9{word-spacing:-0.900000px;}
.wsa{word-spacing:-0.600000px;}
.ws3{word-spacing:-0.252000px;}
.wsc{word-spacing:-0.240000px;}
.ws1{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws35{word-spacing:0.432600px;}
.ws27{word-spacing:0.494400px;}
.ws24{word-spacing:0.618000px;}
.ws40{word-spacing:0.741600px;}
.ws2d{word-spacing:1.035408px;}
.ws33{word-spacing:1.545000px;}
.wsf{word-spacing:1.620000px;}
.ws16{word-spacing:1.792200px;}
.ws3a{word-spacing:1.854000px;}
.ws19{word-spacing:2.286600px;}
.ws7{word-spacing:2.460000px;}
.ws38{word-spacing:2.533800px;}
.ws4b{word-spacing:2.781000px;}
.ws3c{word-spacing:2.842800px;}
.ws43{word-spacing:3.522600px;}
.ws54{word-spacing:3.708000px;}
.ws10{word-spacing:3.780000px;}
.ws51{word-spacing:4.017000px;}
.ws6{word-spacing:4.020000px;}
.ws46{word-spacing:4.078800px;}
.ws50{word-spacing:4.140600px;}
.ws34{word-spacing:4.511400px;}
.ws56{word-spacing:4.573200px;}
.ws1a{word-spacing:5.005800px;}
.ws1d{word-spacing:5.376600px;}
.ws1b{word-spacing:5.438400px;}
.ws4d{word-spacing:5.685600px;}
.ws1e{word-spacing:5.994600px;}
.ws2c{word-spacing:6.674400px;}
.ws3d{word-spacing:6.859800px;}
.ws13{word-spacing:7.008000px;}
.ws1f{word-spacing:7.168800px;}
.wse{word-spacing:7.380000px;}
.ws53{word-spacing:7.539600px;}
.ws3e{word-spacing:7.601400px;}
.ws11{word-spacing:7.740000px;}
.ws23{word-spacing:8.404800px;}
.ws4f{word-spacing:8.775600px;}
.ws37{word-spacing:9.270000px;}
.ws45{word-spacing:9.764400px;}
.ws8{word-spacing:11.100000px;}
.ws36{word-spacing:11.247600px;}
.ws48{word-spacing:11.433000px;}
.ws55{word-spacing:12.360000px;}
.ws44{word-spacing:12.483600px;}
.ws39{word-spacing:13.348800px;}
.ws4{word-spacing:15.540000px;}
.ws4e{word-spacing:17.427600px;}
.ws29{word-spacing:17.664000px;}
.ws41{word-spacing:20.950200px;}
.ws28{word-spacing:21.197400px;}
.ws12{word-spacing:36.029400px;}
.ws31{word-spacing:196.800000px;}
.ws30{word-spacing:271.752000px;}
.ws2e{word-spacing:343.680000px;}
.ws2f{word-spacing:379.347000px;}
.ws14{word-spacing:523.102800px;}
._17{margin-left:-15.716700px;}
._2a{margin-left:-7.983660px;}
._12{margin-left:-6.890700px;}
._10{margin-left:-5.154120px;}
._5{margin-left:-4.134420px;}
._4{margin-left:-2.640000px;}
._0{margin-left:-1.549800px;}
._1{width:1.058400px;}
._7{width:2.665800px;}
._2{width:4.194000px;}
._6{width:5.496240px;}
._8{width:6.594420px;}
._3{width:7.626000px;}
._9{width:8.763240px;}
._c{width:9.807660px;}
._11{width:11.043660px;}
._a{width:12.162240px;}
._b{width:13.219020px;}
._d{width:14.306700px;}
._13{width:16.494420px;}
._19{width:17.526480px;}
._f{width:19.207440px;}
._e{width:20.999640px;}
._16{width:22.501320px;}
._18{width:24.176220px;}
._29{width:26.642040px;}
._15{width:28.928580px;}
._2b{width:36.647400px;}
._14{width:46.200000px;}
._27{width:65.931000px;}
._28{width:80.525400px;}
._20{width:102.246000px;}
._24{width:118.824000px;}
._23{width:177.009000px;}
._22{width:213.270000px;}
._1a{width:249.234000px;}
._26{width:258.252000px;}
._1b{width:267.869700px;}
._1d{width:310.059000px;}
._1c{width:318.192000px;}
._21{width:376.377000px;}
._1f{width:382.371000px;}
._25{width:409.425000px;}
._1e{width:448.359000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fsa{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y22{bottom:76.500000px;}
.y11e{bottom:77.812800px;}
.yfa{bottom:79.496100px;}
.ycb{bottom:80.496000px;}
.y48{bottom:83.668650px;}
.yd2{bottom:90.000000px;}
.y9a{bottom:92.636100px;}
.y71{bottom:92.713800px;}
.yab{bottom:92.996100px;}
.y21{bottom:93.996000px;}
.y11d{bottom:96.352800px;}
.yf9{bottom:98.036100px;}
.y47{bottom:102.208650px;}
.yd9{bottom:103.500000px;}
.ydd{bottom:107.496000px;}
.y99{bottom:111.176100px;}
.y70{bottom:111.253950px;}
.yaa{bottom:111.536100px;}
.yca{bottom:112.076100px;}
.y11c{bottom:114.892800px;}
.yf8{bottom:116.576100px;}
.ydc{bottom:117.000000px;}
.y46{bottom:120.748650px;}
.yd8{bottom:120.996000px;}
.y98{bottom:129.716100px;}
.y6f{bottom:129.793800px;}
.ya9{bottom:130.076100px;}
.yd7{bottom:130.500000px;}
.yc9{bottom:130.616100px;}
.y20{bottom:131.753550px;}
.y11b{bottom:133.432800px;}
.yfc{bottom:134.496000px;}
.yf7{bottom:135.116100px;}
.y45{bottom:139.288650px;}
.yd6{bottom:144.000000px;}
.ydb{bottom:147.996000px;}
.y97{bottom:148.256100px;}
.y6e{bottom:148.333950px;}
.ya8{bottom:148.616100px;}
.yd1{bottom:148.796100px;}
.yc8{bottom:149.156100px;}
.y1f{bottom:150.293550px;}
.y11a{bottom:151.972800px;}
.ye7{bottom:153.656100px;}
.yda{bottom:157.500000px;}
.y44{bottom:157.828650px;}
.yd5{bottom:161.496000px;}
.y96{bottom:166.796100px;}
.y6d{bottom:166.873800px;}
.ya7{bottom:167.156100px;}
.yd0{bottom:167.336100px;}
.yc7{bottom:167.696100px;}
.ye6{bottom:169.856100px;}
.y119{bottom:170.512800px;}
.yd4{bottom:171.000000px;}
.yf6{bottom:172.196100px;}
.yfb{bottom:174.996000px;}
.y43{bottom:176.368650px;}
.y95{bottom:185.336100px;}
.y6c{bottom:185.413950px;}
.ya6{bottom:185.696100px;}
.ycf{bottom:185.876100px;}
.ye5{bottom:186.056100px;}
.y1e{bottom:186.833550px;}
.yd3{bottom:188.496000px;}
.y118{bottom:189.052800px;}
.yf5{bottom:190.736100px;}
.y42{bottom:194.908650px;}
.ye4{bottom:202.256100px;}
.y94{bottom:203.876100px;}
.y6b{bottom:203.953800px;}
.ya5{bottom:204.236100px;}
.yce{bottom:204.416100px;}
.y1d{bottom:204.833550px;}
.y117{bottom:207.592800px;}
.yf4{bottom:209.276100px;}
.y41{bottom:213.448650px;}
.ye3{bottom:218.456100px;}
.y93{bottom:222.416100px;}
.y6a{bottom:222.493950px;}
.ya4{bottom:222.776100px;}
.y1c{bottom:222.833550px;}
.ycd{bottom:222.956100px;}
.y116{bottom:226.132800px;}
.yf3{bottom:227.816100px;}
.y40{bottom:231.988650px;}
.ye2{bottom:234.656100px;}
.y1b{bottom:240.833550px;}
.y92{bottom:240.956100px;}
.y69{bottom:241.033800px;}
.ya3{bottom:241.316100px;}
.ycc{bottom:241.496100px;}
.y115{bottom:244.672800px;}
.yf2{bottom:246.356100px;}
.y3f{bottom:250.528650px;}
.ye1{bottom:250.856100px;}
.y1a{bottom:258.833550px;}
.y91{bottom:259.496100px;}
.y68{bottom:259.573950px;}
.ya2{bottom:259.856100px;}
.yc6{bottom:260.036100px;}
.y114{bottom:263.212950px;}
.ye0{bottom:267.056100px;}
.y3e{bottom:269.068650px;}
.y19{bottom:276.833550px;}
.y90{bottom:278.036100px;}
.y67{bottom:278.113800px;}
.ya1{bottom:278.396100px;}
.yc5{bottom:278.576100px;}
.y113{bottom:281.752800px;}
.yf1{bottom:282.896100px;}
.ydf{bottom:283.256100px;}
.y3d{bottom:287.608650px;}
.y18{bottom:294.833550px;}
.y8f{bottom:296.576100px;}
.y66{bottom:296.653950px;}
.ya0{bottom:296.936100px;}
.yc4{bottom:297.116100px;}
.yf0{bottom:299.096100px;}
.yde{bottom:299.456100px;}
.y112{bottom:300.292950px;}
.y3c{bottom:306.148650px;}
.y17{bottom:312.833550px;}
.y8e{bottom:315.116100px;}
.y65{bottom:315.193800px;}
.yef{bottom:315.296100px;}
.y9f{bottom:315.476100px;}
.yc3{bottom:315.656100px;}
.y111{bottom:318.832800px;}
.y3b{bottom:324.688650px;}
.y16{bottom:330.833550px;}
.yee{bottom:331.496100px;}
.y8d{bottom:333.656100px;}
.y64{bottom:333.733950px;}
.y9e{bottom:334.016100px;}
.yc2{bottom:334.196100px;}
.y3a{bottom:343.228650px;}
.yed{bottom:347.696100px;}
.y15{bottom:348.833550px;}
.y8c{bottom:352.196100px;}
.y63{bottom:352.273800px;}
.y9d{bottom:352.556100px;}
.yc1{bottom:352.736100px;}
.y110{bottom:355.912800px;}
.y39{bottom:361.768650px;}
.yec{bottom:363.896100px;}
.y14{bottom:366.833550px;}
.y8b{bottom:370.736100px;}
.y62{bottom:370.813800px;}
.y9c{bottom:371.096100px;}
.yc0{bottom:371.276100px;}
.yeb{bottom:380.096100px;}
.y38{bottom:380.308650px;}
.y13{bottom:384.833550px;}
.y8a{bottom:389.276100px;}
.y61{bottom:389.353800px;}
.y130{bottom:389.636100px;}
.ybf{bottom:389.816100px;}
.y10f{bottom:392.452950px;}
.yea{bottom:396.296100px;}
.y37{bottom:398.848650px;}
.y12{bottom:402.833550px;}
.y9b{bottom:407.636100px;}
.y89{bottom:407.816100px;}
.y60{bottom:407.893800px;}
.y12f{bottom:408.176100px;}
.ybe{bottom:408.356100px;}
.y10e{bottom:410.992800px;}
.ye9{bottom:412.496100px;}
.y11{bottom:420.833550px;}
.y88{bottom:426.356100px;}
.y5f{bottom:426.433800px;}
.y12e{bottom:426.716100px;}
.ybd{bottom:426.896100px;}
.ye8{bottom:428.696100px;}
.y10d{bottom:429.532800px;}
.y36{bottom:435.928650px;}
.y10{bottom:438.833550px;}
.y87{bottom:444.896100px;}
.y5e{bottom:444.973800px;}
.y12d{bottom:445.256100px;}
.ybc{bottom:445.436100px;}
.y10c{bottom:448.072800px;}
.yf{bottom:456.833550px;}
.y86{bottom:463.436100px;}
.y5d{bottom:463.513800px;}
.y12c{bottom:463.796100px;}
.ybb{bottom:463.976100px;}
.ye{bottom:474.833550px;}
.y85{bottom:481.976100px;}
.y5c{bottom:482.053950px;}
.y12b{bottom:482.336100px;}
.yba{bottom:482.516100px;}
.y10b{bottom:484.612950px;}
.y35{bottom:491.728650px;}
.yd{bottom:492.833550px;}
.y84{bottom:500.516100px;}
.y5b{bottom:500.593800px;}
.y12a{bottom:500.876100px;}
.yb9{bottom:501.056100px;}
.y10a{bottom:503.362800px;}
.yc{bottom:518.333550px;}
.y83{bottom:519.056100px;}
.y5a{bottom:519.133800px;}
.y129{bottom:519.416100px;}
.y109{bottom:519.562800px;}
.yb8{bottom:519.596100px;}
.y34{bottom:528.808650px;}
.y82{bottom:537.596100px;}
.y59{bottom:537.673800px;}
.y128{bottom:537.956100px;}
.yb7{bottom:538.136100px;}
.y108{bottom:540.923100px;}
.y33{bottom:547.348650px;}
.y81{bottom:556.136100px;}
.y58{bottom:556.213950px;}
.y127{bottom:556.496100px;}
.yb6{bottom:556.676100px;}
.y107{bottom:562.283550px;}
.y32{bottom:565.888650px;}
.y80{bottom:574.676100px;}
.y57{bottom:574.753950px;}
.y126{bottom:575.036100px;}
.yb5{bottom:575.216100px;}
.yb{bottom:577.133550px;}
.y106{bottom:578.483550px;}
.y31{bottom:584.428650px;}
.y7f{bottom:593.216100px;}
.y56{bottom:593.293800px;}
.y125{bottom:593.576100px;}
.yb4{bottom:593.756100px;}
.y131{bottom:594.296100px;}
.ya{bottom:598.733550px;}
.y105{bottom:599.843850px;}
.y30{bottom:602.968650px;}
.y7e{bottom:611.756100px;}
.y55{bottom:611.833800px;}
.y124{bottom:612.116100px;}
.yb3{bottom:612.296100px;}
.y104{bottom:616.043850px;}
.y2f{bottom:621.508650px;}
.y7d{bottom:630.296100px;}
.y54{bottom:630.373800px;}
.y123{bottom:630.656100px;}
.yb2{bottom:630.836100px;}
.y9{bottom:634.433550px;}
.y103{bottom:637.404300px;}
.y2e{bottom:640.048650px;}
.y7c{bottom:648.836100px;}
.y53{bottom:648.913950px;}
.y122{bottom:649.196100px;}
.yb1{bottom:649.376100px;}
.y2d{bottom:658.588650px;}
.y102{bottom:658.764600px;}
.y8{bottom:659.985450px;}
.y7b{bottom:667.376100px;}
.y52{bottom:667.453800px;}
.y121{bottom:667.736100px;}
.yb0{bottom:667.916100px;}
.y2c{bottom:677.128650px;}
.y101{bottom:680.124900px;}
.y7a{bottom:685.916100px;}
.y51{bottom:685.993950px;}
.y120{bottom:686.276100px;}
.yaf{bottom:686.456100px;}
.y7{bottom:686.685450px;}
.y2b{bottom:695.668650px;}
.y100{bottom:696.324900px;}
.y79{bottom:704.456100px;}
.y50{bottom:704.533800px;}
.yae{bottom:704.996100px;}
.y2a{bottom:714.208650px;}
.yff{bottom:717.685200px;}
.y11f{bottom:722.816100px;}
.y78{bottom:722.996100px;}
.y4f{bottom:723.073950px;}
.yad{bottom:723.536100px;}
.y6{bottom:729.885450px;}
.y29{bottom:732.748650px;}
.yfe{bottom:739.045650px;}
.y77{bottom:741.536100px;}
.y4e{bottom:741.613800px;}
.yac{bottom:742.076100px;}
.y28{bottom:751.288650px;}
.y5{bottom:756.885450px;}
.y76{bottom:760.076100px;}
.y4d{bottom:760.153800px;}
.yfd{bottom:761.155950px;}
.y27{bottom:769.828650px;}
.y75{bottom:778.616100px;}
.y4c{bottom:778.693950px;}
.y26{bottom:788.368650px;}
.y74{bottom:797.156100px;}
.y4b{bottom:797.233950px;}
.y25{bottom:806.908650px;}
.y4{bottom:810.885450px;}
.y73{bottom:815.696100px;}
.y24{bottom:832.948650px;}
.y4a{bottom:833.773950px;}
.y72{bottom:834.236100px;}
.y3{bottom:837.885450px;}
.y49{bottom:905.470500px;}
.y23{bottom:906.525150px;}
.hd{height:26.133187px;}
.h2{height:36.852539px;}
.h7{height:37.098633px;}
.ha{height:41.132812px;}
.h9{height:41.220703px;}
.h13{height:41.660156px;}
.he{height:42.117188px;}
.h14{height:42.306445px;}
.h10{height:42.366797px;}
.hc{height:42.457324px;}
.hb{height:42.608203px;}
.h11{height:45.181641px;}
.h6{height:45.342773px;}
.h8{height:45.503906px;}
.hf{height:47.381836px;}
.h15{height:52.646484px;}
.h12{height:54.225879px;}
.h5{height:57.585938px;}
.h4{height:61.616338px;}
.h3{height:74.197266px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.xa{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xb{left:83.413050px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x3{left:106.662900px;}
.xd{left:108.163050px;}
.x9{left:139.569750px;}
.xc{left:363.165300px;}
.x8{left:541.222350px;}
@media print{
.v5{vertical-align:-18.292800pt;}
.v2{vertical-align:-14.208000pt;}
.v3{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.292800pt;}
.v1{vertical-align:24.864000pt;}
.ls4{letter-spacing:-2.240000pt;}
.ls16{letter-spacing:-1.184967pt;}
.lsb{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.920363pt;}
.lsc{letter-spacing:-0.549333pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000267pt;}
.lsf{letter-spacing:0.138667pt;}
.ls0{letter-spacing:0.146667pt;}
.ls9{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.220133pt;}
.ls8{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls13{letter-spacing:1.057067pt;}
.ls11{letter-spacing:1.142933pt;}
.ls1{letter-spacing:1.560000pt;}
.ls15{letter-spacing:1.705067pt;}
.lsa{letter-spacing:1.760000pt;}
.ls14{letter-spacing:2.462933pt;}
.ls6{letter-spacing:2.464000pt;}
.ls12{letter-spacing:2.466133pt;}
.ls10{letter-spacing:2.642667pt;}
.ls1a{letter-spacing:5.231467pt;}
.ls19{letter-spacing:7.297600pt;}
.ls1b{letter-spacing:9.980267pt;}
.lsd{letter-spacing:15.683733pt;}
.ws0{word-spacing:-14.813333pt;}
.ws15{word-spacing:-14.666667pt;}
.ws20{word-spacing:-13.733333pt;}
.ws32{word-spacing:-13.333333pt;}
.ws26{word-spacing:-10.666667pt;}
.ws25{word-spacing:-8.006533pt;}
.ws2b{word-spacing:-6.821566pt;}
.ws21{word-spacing:-6.097600pt;}
.ws17{word-spacing:-5.658133pt;}
.ws3b{word-spacing:-4.889067pt;}
.ws4c{word-spacing:-4.669333pt;}
.ws49{word-spacing:-4.284800pt;}
.ws3f{word-spacing:-3.350933pt;}
.ws2a{word-spacing:-3.021333pt;}
.ws42{word-spacing:-2.307200pt;}
.ws22{word-spacing:-2.252267pt;}
.ws4a{word-spacing:-1.922667pt;}
.ws5{word-spacing:-1.920000pt;}
.ws1c{word-spacing:-1.812800pt;}
.wsd{word-spacing:-1.653333pt;}
.ws18{word-spacing:-1.373333pt;}
.ws52{word-spacing:-0.988800pt;}
.wsb{word-spacing:-0.960000pt;}
.ws47{word-spacing:-0.933867pt;}
.ws9{word-spacing:-0.800000pt;}
.wsa{word-spacing:-0.533333pt;}
.ws3{word-spacing:-0.224000pt;}
.wsc{word-spacing:-0.213333pt;}
.ws1{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws35{word-spacing:0.384533pt;}
.ws27{word-spacing:0.439467pt;}
.ws24{word-spacing:0.549333pt;}
.ws40{word-spacing:0.659200pt;}
.ws2d{word-spacing:0.920363pt;}
.ws33{word-spacing:1.373333pt;}
.wsf{word-spacing:1.440000pt;}
.ws16{word-spacing:1.593067pt;}
.ws3a{word-spacing:1.648000pt;}
.ws19{word-spacing:2.032533pt;}
.ws7{word-spacing:2.186667pt;}
.ws38{word-spacing:2.252267pt;}
.ws4b{word-spacing:2.472000pt;}
.ws3c{word-spacing:2.526933pt;}
.ws43{word-spacing:3.131200pt;}
.ws54{word-spacing:3.296000pt;}
.ws10{word-spacing:3.360000pt;}
.ws51{word-spacing:3.570667pt;}
.ws6{word-spacing:3.573333pt;}
.ws46{word-spacing:3.625600pt;}
.ws50{word-spacing:3.680533pt;}
.ws34{word-spacing:4.010133pt;}
.ws56{word-spacing:4.065067pt;}
.ws1a{word-spacing:4.449600pt;}
.ws1d{word-spacing:4.779200pt;}
.ws1b{word-spacing:4.834133pt;}
.ws4d{word-spacing:5.053867pt;}
.ws1e{word-spacing:5.328533pt;}
.ws2c{word-spacing:5.932800pt;}
.ws3d{word-spacing:6.097600pt;}
.ws13{word-spacing:6.229333pt;}
.ws1f{word-spacing:6.372267pt;}
.wse{word-spacing:6.560000pt;}
.ws53{word-spacing:6.701867pt;}
.ws3e{word-spacing:6.756800pt;}
.ws11{word-spacing:6.880000pt;}
.ws23{word-spacing:7.470933pt;}
.ws4f{word-spacing:7.800533pt;}
.ws37{word-spacing:8.240000pt;}
.ws45{word-spacing:8.679467pt;}
.ws8{word-spacing:9.866667pt;}
.ws36{word-spacing:9.997867pt;}
.ws48{word-spacing:10.162667pt;}
.ws55{word-spacing:10.986667pt;}
.ws44{word-spacing:11.096533pt;}
.ws39{word-spacing:11.865600pt;}
.ws4{word-spacing:13.813333pt;}
.ws4e{word-spacing:15.491200pt;}
.ws29{word-spacing:15.701333pt;}
.ws41{word-spacing:18.622400pt;}
.ws28{word-spacing:18.842133pt;}
.ws12{word-spacing:32.026133pt;}
.ws31{word-spacing:174.933333pt;}
.ws30{word-spacing:241.557333pt;}
.ws2e{word-spacing:305.493333pt;}
.ws2f{word-spacing:337.197333pt;}
.ws14{word-spacing:464.980267pt;}
._17{margin-left:-13.970400pt;}
._2a{margin-left:-7.096587pt;}
._12{margin-left:-6.125067pt;}
._10{margin-left:-4.581440pt;}
._5{margin-left:-3.675040pt;}
._4{margin-left:-2.346667pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.940800pt;}
._7{width:2.369600pt;}
._2{width:3.728000pt;}
._6{width:4.885547pt;}
._8{width:5.861707pt;}
._3{width:6.778667pt;}
._9{width:7.789547pt;}
._c{width:8.717920pt;}
._11{width:9.816587pt;}
._a{width:10.810880pt;}
._b{width:11.750240pt;}
._d{width:12.717067pt;}
._13{width:14.661707pt;}
._19{width:15.579093pt;}
._f{width:17.073280pt;}
._e{width:18.666347pt;}
._16{width:20.001173pt;}
._18{width:21.489973pt;}
._29{width:23.681813pt;}
._15{width:25.714293pt;}
._2b{width:32.575467pt;}
._14{width:41.066667pt;}
._27{width:58.605333pt;}
._28{width:71.578133pt;}
._20{width:90.885333pt;}
._24{width:105.621333pt;}
._23{width:157.341333pt;}
._22{width:189.573333pt;}
._1a{width:221.541333pt;}
._26{width:229.557333pt;}
._1b{width:238.106400pt;}
._1d{width:275.608000pt;}
._1c{width:282.837333pt;}
._21{width:334.557333pt;}
._1f{width:339.885333pt;}
._25{width:363.933333pt;}
._1e{width:398.541333pt;}
.fs8{font-size:24.874667pt;}
.fsa{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y22{bottom:68.000000pt;}
.y11e{bottom:69.166933pt;}
.yfa{bottom:70.663200pt;}
.ycb{bottom:71.552000pt;}
.y48{bottom:74.372133pt;}
.yd2{bottom:80.000000pt;}
.y9a{bottom:82.343200pt;}
.y71{bottom:82.412267pt;}
.yab{bottom:82.663200pt;}
.y21{bottom:83.552000pt;}
.y11d{bottom:85.646933pt;}
.yf9{bottom:87.143200pt;}
.y47{bottom:90.852133pt;}
.yd9{bottom:92.000000pt;}
.ydd{bottom:95.552000pt;}
.y99{bottom:98.823200pt;}
.y70{bottom:98.892400pt;}
.yaa{bottom:99.143200pt;}
.yca{bottom:99.623200pt;}
.y11c{bottom:102.126933pt;}
.yf8{bottom:103.623200pt;}
.ydc{bottom:104.000000pt;}
.y46{bottom:107.332133pt;}
.yd8{bottom:107.552000pt;}
.y98{bottom:115.303200pt;}
.y6f{bottom:115.372267pt;}
.ya9{bottom:115.623200pt;}
.yd7{bottom:116.000000pt;}
.yc9{bottom:116.103200pt;}
.y20{bottom:117.114267pt;}
.y11b{bottom:118.606933pt;}
.yfc{bottom:119.552000pt;}
.yf7{bottom:120.103200pt;}
.y45{bottom:123.812133pt;}
.yd6{bottom:128.000000pt;}
.ydb{bottom:131.552000pt;}
.y97{bottom:131.783200pt;}
.y6e{bottom:131.852400pt;}
.ya8{bottom:132.103200pt;}
.yd1{bottom:132.263200pt;}
.yc8{bottom:132.583200pt;}
.y1f{bottom:133.594267pt;}
.y11a{bottom:135.086933pt;}
.ye7{bottom:136.583200pt;}
.yda{bottom:140.000000pt;}
.y44{bottom:140.292133pt;}
.yd5{bottom:143.552000pt;}
.y96{bottom:148.263200pt;}
.y6d{bottom:148.332267pt;}
.ya7{bottom:148.583200pt;}
.yd0{bottom:148.743200pt;}
.yc7{bottom:149.063200pt;}
.ye6{bottom:150.983200pt;}
.y119{bottom:151.566933pt;}
.yd4{bottom:152.000000pt;}
.yf6{bottom:153.063200pt;}
.yfb{bottom:155.552000pt;}
.y43{bottom:156.772133pt;}
.y95{bottom:164.743200pt;}
.y6c{bottom:164.812400pt;}
.ya6{bottom:165.063200pt;}
.ycf{bottom:165.223200pt;}
.ye5{bottom:165.383200pt;}
.y1e{bottom:166.074267pt;}
.yd3{bottom:167.552000pt;}
.y118{bottom:168.046933pt;}
.yf5{bottom:169.543200pt;}
.y42{bottom:173.252133pt;}
.ye4{bottom:179.783200pt;}
.y94{bottom:181.223200pt;}
.y6b{bottom:181.292267pt;}
.ya5{bottom:181.543200pt;}
.yce{bottom:181.703200pt;}
.y1d{bottom:182.074267pt;}
.y117{bottom:184.526933pt;}
.yf4{bottom:186.023200pt;}
.y41{bottom:189.732133pt;}
.ye3{bottom:194.183200pt;}
.y93{bottom:197.703200pt;}
.y6a{bottom:197.772400pt;}
.ya4{bottom:198.023200pt;}
.y1c{bottom:198.074267pt;}
.ycd{bottom:198.183200pt;}
.y116{bottom:201.006933pt;}
.yf3{bottom:202.503200pt;}
.y40{bottom:206.212133pt;}
.ye2{bottom:208.583200pt;}
.y1b{bottom:214.074267pt;}
.y92{bottom:214.183200pt;}
.y69{bottom:214.252267pt;}
.ya3{bottom:214.503200pt;}
.ycc{bottom:214.663200pt;}
.y115{bottom:217.486933pt;}
.yf2{bottom:218.983200pt;}
.y3f{bottom:222.692133pt;}
.ye1{bottom:222.983200pt;}
.y1a{bottom:230.074267pt;}
.y91{bottom:230.663200pt;}
.y68{bottom:230.732400pt;}
.ya2{bottom:230.983200pt;}
.yc6{bottom:231.143200pt;}
.y114{bottom:233.967067pt;}
.ye0{bottom:237.383200pt;}
.y3e{bottom:239.172133pt;}
.y19{bottom:246.074267pt;}
.y90{bottom:247.143200pt;}
.y67{bottom:247.212267pt;}
.ya1{bottom:247.463200pt;}
.yc5{bottom:247.623200pt;}
.y113{bottom:250.446933pt;}
.yf1{bottom:251.463200pt;}
.ydf{bottom:251.783200pt;}
.y3d{bottom:255.652133pt;}
.y18{bottom:262.074267pt;}
.y8f{bottom:263.623200pt;}
.y66{bottom:263.692400pt;}
.ya0{bottom:263.943200pt;}
.yc4{bottom:264.103200pt;}
.yf0{bottom:265.863200pt;}
.yde{bottom:266.183200pt;}
.y112{bottom:266.927067pt;}
.y3c{bottom:272.132133pt;}
.y17{bottom:278.074267pt;}
.y8e{bottom:280.103200pt;}
.y65{bottom:280.172267pt;}
.yef{bottom:280.263200pt;}
.y9f{bottom:280.423200pt;}
.yc3{bottom:280.583200pt;}
.y111{bottom:283.406933pt;}
.y3b{bottom:288.612133pt;}
.y16{bottom:294.074267pt;}
.yee{bottom:294.663200pt;}
.y8d{bottom:296.583200pt;}
.y64{bottom:296.652400pt;}
.y9e{bottom:296.903200pt;}
.yc2{bottom:297.063200pt;}
.y3a{bottom:305.092133pt;}
.yed{bottom:309.063200pt;}
.y15{bottom:310.074267pt;}
.y8c{bottom:313.063200pt;}
.y63{bottom:313.132267pt;}
.y9d{bottom:313.383200pt;}
.yc1{bottom:313.543200pt;}
.y110{bottom:316.366933pt;}
.y39{bottom:321.572133pt;}
.yec{bottom:323.463200pt;}
.y14{bottom:326.074267pt;}
.y8b{bottom:329.543200pt;}
.y62{bottom:329.612267pt;}
.y9c{bottom:329.863200pt;}
.yc0{bottom:330.023200pt;}
.yeb{bottom:337.863200pt;}
.y38{bottom:338.052133pt;}
.y13{bottom:342.074267pt;}
.y8a{bottom:346.023200pt;}
.y61{bottom:346.092267pt;}
.y130{bottom:346.343200pt;}
.ybf{bottom:346.503200pt;}
.y10f{bottom:348.847067pt;}
.yea{bottom:352.263200pt;}
.y37{bottom:354.532133pt;}
.y12{bottom:358.074267pt;}
.y9b{bottom:362.343200pt;}
.y89{bottom:362.503200pt;}
.y60{bottom:362.572267pt;}
.y12f{bottom:362.823200pt;}
.ybe{bottom:362.983200pt;}
.y10e{bottom:365.326933pt;}
.ye9{bottom:366.663200pt;}
.y11{bottom:374.074267pt;}
.y88{bottom:378.983200pt;}
.y5f{bottom:379.052267pt;}
.y12e{bottom:379.303200pt;}
.ybd{bottom:379.463200pt;}
.ye8{bottom:381.063200pt;}
.y10d{bottom:381.806933pt;}
.y36{bottom:387.492133pt;}
.y10{bottom:390.074267pt;}
.y87{bottom:395.463200pt;}
.y5e{bottom:395.532267pt;}
.y12d{bottom:395.783200pt;}
.ybc{bottom:395.943200pt;}
.y10c{bottom:398.286933pt;}
.yf{bottom:406.074267pt;}
.y86{bottom:411.943200pt;}
.y5d{bottom:412.012267pt;}
.y12c{bottom:412.263200pt;}
.ybb{bottom:412.423200pt;}
.ye{bottom:422.074267pt;}
.y85{bottom:428.423200pt;}
.y5c{bottom:428.492400pt;}
.y12b{bottom:428.743200pt;}
.yba{bottom:428.903200pt;}
.y10b{bottom:430.767067pt;}
.y35{bottom:437.092133pt;}
.yd{bottom:438.074267pt;}
.y84{bottom:444.903200pt;}
.y5b{bottom:444.972267pt;}
.y12a{bottom:445.223200pt;}
.yb9{bottom:445.383200pt;}
.y10a{bottom:447.433600pt;}
.yc{bottom:460.740933pt;}
.y83{bottom:461.383200pt;}
.y5a{bottom:461.452267pt;}
.y129{bottom:461.703200pt;}
.y109{bottom:461.833600pt;}
.yb8{bottom:461.863200pt;}
.y34{bottom:470.052133pt;}
.y82{bottom:477.863200pt;}
.y59{bottom:477.932267pt;}
.y128{bottom:478.183200pt;}
.yb7{bottom:478.343200pt;}
.y108{bottom:480.820533pt;}
.y33{bottom:486.532133pt;}
.y81{bottom:494.343200pt;}
.y58{bottom:494.412400pt;}
.y127{bottom:494.663200pt;}
.yb6{bottom:494.823200pt;}
.y107{bottom:499.807600pt;}
.y32{bottom:503.012133pt;}
.y80{bottom:510.823200pt;}
.y57{bottom:510.892400pt;}
.y126{bottom:511.143200pt;}
.yb5{bottom:511.303200pt;}
.yb{bottom:513.007600pt;}
.y106{bottom:514.207600pt;}
.y31{bottom:519.492133pt;}
.y7f{bottom:527.303200pt;}
.y56{bottom:527.372267pt;}
.y125{bottom:527.623200pt;}
.yb4{bottom:527.783200pt;}
.y131{bottom:528.263200pt;}
.ya{bottom:532.207600pt;}
.y105{bottom:533.194533pt;}
.y30{bottom:535.972133pt;}
.y7e{bottom:543.783200pt;}
.y55{bottom:543.852267pt;}
.y124{bottom:544.103200pt;}
.yb3{bottom:544.263200pt;}
.y104{bottom:547.594533pt;}
.y2f{bottom:552.452133pt;}
.y7d{bottom:560.263200pt;}
.y54{bottom:560.332267pt;}
.y123{bottom:560.583200pt;}
.yb2{bottom:560.743200pt;}
.y9{bottom:563.940933pt;}
.y103{bottom:566.581600pt;}
.y2e{bottom:568.932133pt;}
.y7c{bottom:576.743200pt;}
.y53{bottom:576.812400pt;}
.y122{bottom:577.063200pt;}
.yb1{bottom:577.223200pt;}
.y2d{bottom:585.412133pt;}
.y102{bottom:585.568533pt;}
.y8{bottom:586.653733pt;}
.y7b{bottom:593.223200pt;}
.y52{bottom:593.292267pt;}
.y121{bottom:593.543200pt;}
.yb0{bottom:593.703200pt;}
.y2c{bottom:601.892133pt;}
.y101{bottom:604.555467pt;}
.y7a{bottom:609.703200pt;}
.y51{bottom:609.772400pt;}
.y120{bottom:610.023200pt;}
.yaf{bottom:610.183200pt;}
.y7{bottom:610.387067pt;}
.y2b{bottom:618.372133pt;}
.y100{bottom:618.955467pt;}
.y79{bottom:626.183200pt;}
.y50{bottom:626.252267pt;}
.yae{bottom:626.663200pt;}
.y2a{bottom:634.852133pt;}
.yff{bottom:637.942400pt;}
.y11f{bottom:642.503200pt;}
.y78{bottom:642.663200pt;}
.y4f{bottom:642.732400pt;}
.yad{bottom:643.143200pt;}
.y6{bottom:648.787067pt;}
.y29{bottom:651.332133pt;}
.yfe{bottom:656.929467pt;}
.y77{bottom:659.143200pt;}
.y4e{bottom:659.212267pt;}
.yac{bottom:659.623200pt;}
.y28{bottom:667.812133pt;}
.y5{bottom:672.787067pt;}
.y76{bottom:675.623200pt;}
.y4d{bottom:675.692267pt;}
.yfd{bottom:676.583067pt;}
.y27{bottom:684.292133pt;}
.y75{bottom:692.103200pt;}
.y4c{bottom:692.172400pt;}
.y26{bottom:700.772133pt;}
.y74{bottom:708.583200pt;}
.y4b{bottom:708.652400pt;}
.y25{bottom:717.252133pt;}
.y4{bottom:720.787067pt;}
.y73{bottom:725.063200pt;}
.y24{bottom:740.398800pt;}
.y4a{bottom:741.132400pt;}
.y72{bottom:741.543200pt;}
.y3{bottom:744.787067pt;}
.y49{bottom:804.862667pt;}
.y23{bottom:805.800133pt;}
.hd{height:23.229500pt;}
.h2{height:32.757812pt;}
.h7{height:32.976562pt;}
.ha{height:36.562500pt;}
.h9{height:36.640625pt;}
.h13{height:37.031250pt;}
.he{height:37.437500pt;}
.h14{height:37.605729pt;}
.h10{height:37.659375pt;}
.hc{height:37.739844pt;}
.hb{height:37.873958pt;}
.h11{height:40.161458pt;}
.h6{height:40.304688pt;}
.h8{height:40.447917pt;}
.hf{height:42.117188pt;}
.h15{height:46.796875pt;}
.h12{height:48.200781pt;}
.h5{height:51.187500pt;}
.h4{height:54.770078pt;}
.h3{height:65.953125pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.xa{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xb{left:74.144933pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x3{left:94.811467pt;}
.xd{left:96.144933pt;}
.x9{left:124.062000pt;}
.xc{left:322.813600pt;}
.x8{left:481.086533pt;}
}




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