
    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_17050a445b94fb0f6a5b2434.woff')format("woff");}.ff1{font-family:ff1;line-height:0.953000;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_64c3c4e48ec676856e3a5e04.woff')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_cbe66934740b19ee9c28aa01.woff')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_968e67f78a63180e56e860ed.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104000;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_774c3017b9910b3e8a9c8553.woff')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_e88a8eed90dac412e6a7632b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.150000;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_a00e5ee847a7ae421022eee0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.912598;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_1e0a35bd7f1f649398a829cc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_be6b7de1d6326168a3528330.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908691;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_dc2c83a5233476509cefabf8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.919434;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_6d042f7e2a855fe895c14b5e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.104000;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_642347355bcf3648067fb287.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919922;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_5ac3be59a8e60ac26bd88a5d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.706543;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_2f35136b164a1781aa50162e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.909180;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_004ef13b569b2c7172f0800b.woff')format("woff");}.fff{font-family:fff;line-height:0.919434;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);}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:31.800000px;}
.ls7{letter-spacing:-2.916000px;}
.ls3{letter-spacing:-1.320000px;}
.ls5{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.378000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001800px;}
.lsf{letter-spacing:0.264000px;}
.lsc{letter-spacing:0.660000px;}
.lse{letter-spacing:1.254000px;}
.ls9{letter-spacing:1.320000px;}
.lsd{letter-spacing:1.518000px;}
.lsa{letter-spacing:1.716000px;}
.lsb{letter-spacing:2.178000px;}
.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;}
}
.ws30{word-spacing:-66.000000px;}
.ws2f{word-spacing:-64.680000px;}
.ws32{word-spacing:-56.826000px;}
.ws27{word-spacing:-56.562000px;}
.ws2d{word-spacing:-56.364000px;}
.ws26{word-spacing:-56.166000px;}
.ws2b{word-spacing:-54.714000px;}
.ws35{word-spacing:-54.000000px;}
.ws37{word-spacing:-52.920000px;}
.ws2c{word-spacing:-52.734000px;}
.ws31{word-spacing:-50.292000px;}
.ws1{word-spacing:-48.000000px;}
.ws38{word-spacing:-46.364400px;}
.ws3d{word-spacing:-44.010000px;}
.ws39{word-spacing:-43.637400px;}
.ws3b{word-spacing:-43.470000px;}
.ws41{word-spacing:-33.420600px;}
.ws40{word-spacing:-29.106000px;}
.ws0{word-spacing:-24.542400px;}
.ws2e{word-spacing:-23.430000px;}
.ws45{word-spacing:-16.698000px;}
.ws44{word-spacing:-16.236000px;}
.ws47{word-spacing:-16.038000px;}
.ws42{word-spacing:-15.840000px;}
.ws48{word-spacing:-15.774000px;}
.ws46{word-spacing:-15.180000px;}
.ws43{word-spacing:-14.784000px;}
.ws3f{word-spacing:-13.200000px;}
.ws3c{word-spacing:-11.502000px;}
.ws3a{word-spacing:-8.964000px;}
.ws36{word-spacing:-6.890400px;}
.ws1a{word-spacing:-1.872000px;}
.ws1f{word-spacing:-1.392000px;}
.ws1e{word-spacing:-0.624000px;}
.ws21{word-spacing:-0.192000px;}
.ws2{word-spacing:0.000000px;}
.ws13{word-spacing:0.480000px;}
.ws3e{word-spacing:0.600000px;}
.ws25{word-spacing:0.660000px;}
.ws23{word-spacing:1.188000px;}
.ws33{word-spacing:1.320000px;}
.wse{word-spacing:2.112000px;}
.ws1c{word-spacing:2.496000px;}
.ws1d{word-spacing:3.168000px;}
.ws10{word-spacing:3.504000px;}
.ws3{word-spacing:3.648000px;}
.ws18{word-spacing:3.744000px;}
.ws12{word-spacing:4.032000px;}
.ws24{word-spacing:4.488000px;}
.ws17{word-spacing:4.704000px;}
.wsf{word-spacing:4.944000px;}
.ws5{word-spacing:5.136000px;}
.ws15{word-spacing:5.376000px;}
.ws16{word-spacing:6.336000px;}
.ws1b{word-spacing:7.392000px;}
.ws6{word-spacing:7.536000px;}
.ws7{word-spacing:7.632000px;}
.ws22{word-spacing:8.928000px;}
.ws20{word-spacing:9.168000px;}
.ws2a{word-spacing:9.768000px;}
.ws8{word-spacing:10.752000px;}
.wsd{word-spacing:11.040000px;}
.ws28{word-spacing:11.088000px;}
.ws9{word-spacing:11.328000px;}
.ws4{word-spacing:11.424000px;}
.wsa{word-spacing:11.904000px;}
.ws19{word-spacing:12.432000px;}
.ws11{word-spacing:13.536000px;}
.wsb{word-spacing:13.680000px;}
.wsc{word-spacing:17.136000px;}
.ws34{word-spacing:18.084000px;}
.ws14{word-spacing:25.296000px;}
.ws29{word-spacing:40.722000px;}
._27{margin-left:-14.526600px;}
._23{margin-left:-7.518600px;}
._20{margin-left:-6.361800px;}
._1e{margin-left:-4.515000px;}
._7{margin-left:-3.336000px;}
._0{margin-left:-1.732800px;}
._10{width:1.314600px;}
._a{width:2.395800px;}
._d{width:3.788400px;}
._f{width:4.851840px;}
._9{width:6.758400px;}
._6{width:7.913400px;}
._4{width:9.490800px;}
._1{width:10.731600px;}
._3{width:12.005400px;}
._2{width:13.186800px;}
._17{width:15.727800px;}
._5{width:16.810200px;}
._12{width:17.826600px;}
._1c{width:18.876000px;}
._11{width:20.011200px;}
._8{width:21.331200px;}
._e{width:23.205600px;}
._b{width:24.327600px;}
._14{width:25.766400px;}
._15{width:26.941200px;}
._1a{width:28.564800px;}
._18{width:29.799000px;}
._1b{width:30.841800px;}
._1d{width:32.452200px;}
._26{width:34.221000px;}
._19{width:35.356200px;}
._c{width:36.438600px;}
._13{width:37.686000px;}
._22{width:39.769200px;}
._21{width:41.178600px;}
._16{width:42.787800px;}
._1f{width:46.906200px;}
._24{width:48.813600px;}
._25{width:54.060600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.840000px;}
.fs6{font-size:31.320000px;}
.fs4{font-size:34.800000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:79.023450px;}
.y106{bottom:127.883400px;}
.y44{bottom:132.908550px;}
.y175{bottom:135.349200px;}
.y107{bottom:137.541300px;}
.yd6{bottom:140.633400px;}
.y77{bottom:144.891300px;}
.y1a5{bottom:145.751250px;}
.y43{bottom:147.308550px;}
.y105{bottom:147.833400px;}
.y174{bottom:155.449200px;}
.ya7{bottom:157.641300px;}
.yd5{bottom:160.733400px;}
.y76{bottom:164.841300px;}
.y1a4{bottom:165.701250px;}
.y42{bottom:165.960600px;}
.y104{bottom:167.783400px;}
.y14a{bottom:168.689850px;}
.y173{bottom:175.549200px;}
.ya6{bottom:177.741300px;}
.y41{bottom:180.360600px;}
.yd4{bottom:180.833400px;}
.y75{bottom:184.791300px;}
.y1a3{bottom:185.651250px;}
.y149{bottom:186.689850px;}
.y103{bottom:187.733400px;}
.y172{bottom:195.649200px;}
.ya5{bottom:197.841300px;}
.y40{bottom:198.720600px;}
.yd3{bottom:200.933400px;}
.y148{bottom:204.689850px;}
.y74{bottom:204.741300px;}
.y1a2{bottom:205.601250px;}
.y102{bottom:207.683400px;}
.y143{bottom:211.870050px;}
.y171{bottom:215.749200px;}
.ya4{bottom:217.941300px;}
.yd2{bottom:221.033400px;}
.y14c{bottom:222.689850px;}
.y73{bottom:224.691300px;}
.y1a1{bottom:225.551250px;}
.y101{bottom:227.633400px;}
.y147{bottom:231.193800px;}
.y170{bottom:235.849200px;}
.ya3{bottom:238.041300px;}
.y142{bottom:238.374000px;}
.y14b{bottom:240.689850px;}
.yd1{bottom:241.133400px;}
.y72{bottom:244.641300px;}
.y1a0{bottom:245.501250px;}
.y100{bottom:247.583400px;}
.y146{bottom:249.193800px;}
.y3f{bottom:252.508650px;}
.y31{bottom:252.757950px;}
.y16f{bottom:255.949200px;}
.ya2{bottom:258.141300px;}
.yd0{bottom:261.233400px;}
.y71{bottom:264.591300px;}
.y19f{bottom:265.451250px;}
.y145{bottom:267.193800px;}
.yff{bottom:267.533400px;}
.y3e{bottom:272.458650px;}
.y30{bottom:272.557950px;}
.y16e{bottom:276.049200px;}
.ya1{bottom:278.241300px;}
.ycf{bottom:281.333400px;}
.y70{bottom:284.541300px;}
.y144{bottom:285.193800px;}
.y19e{bottom:285.401250px;}
.yfe{bottom:287.483400px;}
.y2f{bottom:292.357950px;}
.y3d{bottom:292.408650px;}
.y16d{bottom:296.149200px;}
.ya0{bottom:298.341300px;}
.yce{bottom:301.433400px;}
.y6f{bottom:304.491300px;}
.y19d{bottom:305.351250px;}
.yfd{bottom:307.433400px;}
.y2e{bottom:312.157950px;}
.y141{bottom:312.264750px;}
.y3c{bottom:312.358800px;}
.y16c{bottom:316.249200px;}
.y9f{bottom:318.441300px;}
.ycd{bottom:321.533400px;}
.y6e{bottom:324.441300px;}
.y19c{bottom:325.301250px;}
.yfc{bottom:327.383400px;}
.y140{bottom:330.264750px;}
.y2d{bottom:331.957950px;}
.y3b{bottom:332.308650px;}
.y16b{bottom:336.349200px;}
.y9e{bottom:338.541300px;}
.ycc{bottom:341.633400px;}
.y6d{bottom:344.391300px;}
.y19b{bottom:345.251250px;}
.yfb{bottom:347.333400px;}
.y13f{bottom:348.264750px;}
.y2c{bottom:351.757950px;}
.y3a{bottom:352.258650px;}
.y16a{bottom:356.449200px;}
.y9d{bottom:358.641300px;}
.ycb{bottom:361.733400px;}
.y139{bottom:362.814900px;}
.y6c{bottom:364.341300px;}
.y19a{bottom:365.201250px;}
.y13e{bottom:366.264600px;}
.yfa{bottom:367.283400px;}
.y2b{bottom:371.557950px;}
.y39{bottom:372.208650px;}
.y169{bottom:376.549200px;}
.y9c{bottom:378.741300px;}
.yca{bottom:381.833400px;}
.y6b{bottom:384.291300px;}
.y199{bottom:385.151250px;}
.yf9{bottom:387.233400px;}
.y138{bottom:389.318850px;}
.y2a{bottom:391.357950px;}
.y38{bottom:392.158650px;}
.y13d{bottom:392.768550px;}
.y168{bottom:396.649200px;}
.y9b{bottom:398.841300px;}
.yc9{bottom:401.933400px;}
.y6a{bottom:404.241300px;}
.y198{bottom:405.101250px;}
.yf8{bottom:407.183400px;}
.y13c{bottom:410.768550px;}
.y29{bottom:411.157950px;}
.y37{bottom:412.108650px;}
.y167{bottom:416.749200px;}
.y9a{bottom:418.941300px;}
.yc8{bottom:422.033400px;}
.y69{bottom:424.191300px;}
.y197{bottom:425.051250px;}
.yf7{bottom:427.133400px;}
.y13b{bottom:428.768550px;}
.y28{bottom:430.957950px;}
.y36{bottom:432.058800px;}
.y166{bottom:436.849200px;}
.y99{bottom:439.041300px;}
.yc7{bottom:442.133400px;}
.y68{bottom:444.141300px;}
.y196{bottom:445.001250px;}
.y13a{bottom:446.768550px;}
.yf6{bottom:447.083400px;}
.y27{bottom:450.757950px;}
.y35{bottom:452.008650px;}
.y165{bottom:456.949200px;}
.y98{bottom:459.141300px;}
.yc6{bottom:462.233400px;}
.y67{bottom:464.091300px;}
.y195{bottom:464.951250px;}
.yf5{bottom:467.033400px;}
.y26{bottom:470.557950px;}
.y34{bottom:471.958800px;}
.y137{bottom:473.839500px;}
.y97{bottom:479.241300px;}
.yc5{bottom:482.333400px;}
.y66{bottom:484.041300px;}
.y164{bottom:485.553150px;}
.yf4{bottom:486.983400px;}
.y25{bottom:490.357950px;}
.y136{bottom:491.839500px;}
.y33{bottom:491.908650px;}
.y194{bottom:493.405200px;}
.y96{bottom:499.341300px;}
.yc4{bottom:502.433400px;}
.y65{bottom:503.991300px;}
.yf3{bottom:506.933400px;}
.y135{bottom:509.839500px;}
.y24{bottom:514.409850px;}
.y12d{bottom:515.389650px;}
.y32{bottom:516.110700px;}
.y95{bottom:519.441300px;}
.yc3{bottom:522.533400px;}
.y64{bottom:523.941300px;}
.yf2{bottom:526.883400px;}
.y134{bottom:527.839500px;}
.y163{bottom:530.005050px;}
.y193{bottom:533.305200px;}
.y94{bottom:539.541300px;}
.y12c{bottom:541.893750px;}
.yc2{bottom:542.633400px;}
.y63{bottom:543.891300px;}
.y131{bottom:545.839500px;}
.yf1{bottom:546.833400px;}
.y162{bottom:550.105050px;}
.y192{bottom:553.255200px;}
.y133{bottom:554.343450px;}
.y93{bottom:559.641300px;}
.y12b{bottom:559.893750px;}
.yc1{bottom:562.733400px;}
.y130{bottom:563.839500px;}
.y62{bottom:563.841300px;}
.yf0{bottom:566.783400px;}
.y161{bottom:570.205050px;}
.y132{bottom:572.343450px;}
.y191{bottom:573.205200px;}
.y92{bottom:579.741300px;}
.yc0{bottom:582.833400px;}
.y61{bottom:583.791300px;}
.y1d{bottom:583.925400px;}
.yef{bottom:586.733400px;}
.y160{bottom:590.305050px;}
.y12f{bottom:590.343450px;}
.y190{bottom:593.155200px;}
.y1c{bottom:598.925400px;}
.y91{bottom:599.841300px;}
.ybf{bottom:602.933400px;}
.y60{bottom:603.741300px;}
.yee{bottom:606.683400px;}
.y12e{bottom:608.343450px;}
.y15f{bottom:610.405050px;}
.y18f{bottom:613.105200px;}
.y23{bottom:613.925400px;}
.y90{bottom:619.941300px;}
.y1b{bottom:622.429350px;}
.ybe{bottom:623.033400px;}
.y5f{bottom:623.691300px;}
.yed{bottom:626.633400px;}
.y15e{bottom:630.505050px;}
.y18e{bottom:633.055200px;}
.y12a{bottom:635.130750px;}
.y1a{bottom:637.429350px;}
.y8f{bottom:640.041300px;}
.y126{bottom:640.822800px;}
.y1b5{bottom:642.532350px;}
.ybd{bottom:643.133400px;}
.y5e{bottom:643.641300px;}
.yec{bottom:646.583400px;}
.y15d{bottom:650.605050px;}
.y19{bottom:652.429350px;}
.y18d{bottom:653.005200px;}
.y129{bottom:653.130750px;}
.y8e{bottom:660.141300px;}
.y1b4{bottom:662.332500px;}
.ybc{bottom:663.233400px;}
.y5d{bottom:663.591300px;}
.yeb{bottom:666.533400px;}
.y125{bottom:667.326750px;}
.y18{bottom:667.429350px;}
.y15c{bottom:670.705050px;}
.y18c{bottom:672.955200px;}
.y128{bottom:679.634700px;}
.y8d{bottom:680.241300px;}
.y1b3{bottom:682.132350px;}
.y17{bottom:682.429350px;}
.ybb{bottom:683.333400px;}
.y5c{bottom:683.541300px;}
.y124{bottom:685.326750px;}
.yea{bottom:686.483400px;}
.y15b{bottom:690.805050px;}
.y18b{bottom:692.905200px;}
.y16{bottom:697.429350px;}
.y127{bottom:697.634700px;}
.y8c{bottom:700.341300px;}
.y1b2{bottom:701.932500px;}
.yba{bottom:703.433400px;}
.y5b{bottom:703.491300px;}
.ye9{bottom:706.433400px;}
.y15a{bottom:710.905050px;}
.y15{bottom:712.429350px;}
.y18a{bottom:712.855200px;}
.y8b{bottom:720.441300px;}
.y1b1{bottom:721.732500px;}
.y5a{bottom:723.441300px;}
.yb9{bottom:723.533400px;}
.y123{bottom:724.422150px;}
.ye8{bottom:726.383400px;}
.y14{bottom:727.429350px;}
.y159{bottom:731.005050px;}
.y189{bottom:732.805200px;}
.y11f{bottom:739.114050px;}
.y8a{bottom:740.541300px;}
.y1b0{bottom:741.532350px;}
.y1b9{bottom:741.532500px;}
.y122{bottom:742.422150px;}
.y13{bottom:742.429350px;}
.y59{bottom:743.391300px;}
.yb8{bottom:743.633400px;}
.ye7{bottom:746.333400px;}
.y158{bottom:751.105050px;}
.y188{bottom:752.755200px;}
.y12{bottom:757.429350px;}
.y89{bottom:760.641300px;}
.y1af{bottom:761.332500px;}
.y58{bottom:763.341300px;}
.yb7{bottom:763.733400px;}
.y11e{bottom:765.618000px;}
.ye6{bottom:766.283400px;}
.y121{bottom:768.926100px;}
.y157{bottom:771.205050px;}
.y11{bottom:772.429350px;}
.y187{bottom:772.705200px;}
.y88{bottom:780.741300px;}
.y1ae{bottom:781.132350px;}
.y1b8{bottom:781.132500px;}
.y57{bottom:783.291300px;}
.yb6{bottom:783.833400px;}
.ye5{bottom:786.233400px;}
.y120{bottom:786.926100px;}
.y10{bottom:787.429350px;}
.y156{bottom:791.305050px;}
.y186{bottom:792.655200px;}
.y87{bottom:800.841300px;}
.y1ad{bottom:800.932500px;}
.yf{bottom:802.429350px;}
.y56{bottom:803.241300px;}
.yb5{bottom:803.933400px;}
.ye4{bottom:806.183400px;}
.y155{bottom:811.405200px;}
.y185{bottom:812.605200px;}
.y11c{bottom:814.710000px;}
.ye{bottom:817.429350px;}
.y117{bottom:819.903750px;}
.y1ac{bottom:820.732500px;}
.y86{bottom:820.941300px;}
.y55{bottom:823.191300px;}
.yb4{bottom:824.033400px;}
.ye3{bottom:826.133400px;}
.y154{bottom:831.505200px;}
.yd{bottom:832.429350px;}
.y184{bottom:832.555200px;}
.y11b{bottom:832.710000px;}
.y116{bottom:837.903750px;}
.y1ab{bottom:840.532500px;}
.y85{bottom:841.041300px;}
.y54{bottom:843.141300px;}
.yb3{bottom:844.133400px;}
.ye2{bottom:846.083400px;}
.yc{bottom:847.429350px;}
.y11a{bottom:850.710000px;}
.y153{bottom:851.605200px;}
.y183{bottom:852.505200px;}
.y11d{bottom:859.213950px;}
.y1aa{bottom:860.332350px;}
.y1b7{bottom:860.332500px;}
.y84{bottom:861.141300px;}
.yb{bottom:862.429350px;}
.y53{bottom:863.091300px;}
.y115{bottom:864.407700px;}
.y152{bottom:871.705200px;}
.y182{bottom:872.455200px;}
.yb2{bottom:872.737350px;}
.ye1{bottom:874.537350px;}
.y119{bottom:877.213950px;}
.y1a9{bottom:880.132350px;}
.y1b6{bottom:880.132500px;}
.y83{bottom:881.241300px;}
.y114{bottom:882.407700px;}
.y52{bottom:883.041300px;}
.y151{bottom:891.805200px;}
.y181{bottom:892.405200px;}
.y118{bottom:895.213950px;}
.y1a8{bottom:899.932500px;}
.y82{bottom:901.341300px;}
.y51{bottom:902.991450px;}
.y150{bottom:911.905200px;}
.y180{bottom:912.355200px;}
.yb1{bottom:912.937350px;}
.ye0{bottom:914.437350px;}
.y113{bottom:917.274150px;}
.y81{bottom:921.441300px;}
.y50{bottom:922.941450px;}
.ya{bottom:926.165100px;}
.y22{bottom:926.165250px;}
.y14f{bottom:932.005200px;}
.y1a6{bottom:932.198250px;}
.y17f{bottom:932.305200px;}
.yb0{bottom:933.037350px;}
.ydf{bottom:934.387350px;}
.y112{bottom:935.274150px;}
.y80{bottom:941.541300px;}
.y4f{bottom:942.891300px;}
.y14e{bottom:952.105200px;}
.y17e{bottom:952.255200px;}
.yaf{bottom:953.137350px;}
.yde{bottom:954.337350px;}
.y10d{bottom:956.581650px;}
.y1a7{bottom:957.314400px;}
.y7f{bottom:961.641300px;}
.y111{bottom:961.777950px;}
.y4e{bottom:962.841300px;}
.y14d{bottom:972.205200px;}
.yae{bottom:973.237350px;}
.ydd{bottom:974.287350px;}
.y110{bottom:979.777950px;}
.y7e{bottom:981.741450px;}
.y4d{bottom:982.791450px;}
.y10c{bottom:983.085600px;}
.y9{bottom:983.765100px;}
.yad{bottom:993.337350px;}
.ydc{bottom:994.237350px;}
.y7d{bottom:1001.841300px;}
.y4c{bottom:1002.741450px;}
.y8{bottom:1003.565100px;}
.y21{bottom:1003.565250px;}
.y10f{bottom:1006.281900px;}
.yac{bottom:1013.437350px;}
.ydb{bottom:1014.187350px;}
.y17d{bottom:1020.289650px;}
.y7c{bottom:1021.941450px;}
.y4b{bottom:1022.691450px;}
.y7{bottom:1023.365100px;}
.y20{bottom:1023.365250px;}
.y10e{bottom:1024.281900px;}
.yab{bottom:1033.537350px;}
.yda{bottom:1034.137350px;}
.y17c{bottom:1038.289650px;}
.y7b{bottom:1042.041450px;}
.y4a{bottom:1042.641300px;}
.y6{bottom:1043.165100px;}
.y1f{bottom:1043.165250px;}
.y10b{bottom:1048.534950px;}
.yaa{bottom:1053.637350px;}
.y177{bottom:1053.973800px;}
.yd9{bottom:1054.087500px;}
.y17b{bottom:1056.289650px;}
.y7a{bottom:1062.141300px;}
.y49{bottom:1062.591300px;}
.y5{bottom:1062.965100px;}
.y1e{bottom:1062.965400px;}
.ya9{bottom:1073.737500px;}
.yd8{bottom:1074.037500px;}
.y17a{bottom:1074.289650px;}
.y10a{bottom:1075.038900px;}
.y176{bottom:1080.477750px;}
.y79{bottom:1082.241450px;}
.y48{bottom:1082.541450px;}
.ya8{bottom:1093.837500px;}
.yd7{bottom:1093.987500px;}
.y179{bottom:1100.793600px;}
.y78{bottom:1102.341300px;}
.y47{bottom:1102.491450px;}
.y109{bottom:1104.108150px;}
.y178{bottom:1118.793600px;}
.y4{bottom:1120.755750px;}
.y46{bottom:1122.441450px;}
.y108{bottom:1123.608150px;}
.y2{bottom:1167.058200px;}
.y45{bottom:1174.874550px;}
.y1{bottom:1181.458200px;}
.hb{height:25.878750px;}
.hd{height:33.656250px;}
.h3{height:35.520000px;}
.h18{height:37.705078px;}
.h13{height:37.757812px;}
.h15{height:37.863281px;}
.h17{height:39.688945px;}
.h2{height:39.960000px;}
.he{height:40.416000px;}
.hc{height:41.718750px;}
.h16{height:41.923828px;}
.h12{height:41.953125px;}
.h14{height:42.070312px;}
.h4{height:42.480000px;}
.h8{height:42.576000px;}
.h10{height:46.116211px;}
.h9{height:46.148438px;}
.hf{height:46.277344px;}
.h5{height:50.520000px;}
.h11{height:52.148438px;}
.ha{height:57.363281px;}
.h6{height:59.004000px;}
.h7{height:62.911200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x16{left:109.651200px;}
.x13{left:114.803100px;}
.x9{left:119.242650px;}
.x25{left:123.103050px;}
.x23{left:129.984150px;}
.x1e{left:131.572800px;}
.x26{left:133.448550px;}
.x21{left:136.158450px;}
.x5{left:138.313650px;}
.x1{left:139.812900px;}
.x18{left:142.783200px;}
.x6{left:144.922050px;}
.x22{left:147.713250px;}
.x11{left:148.818900px;}
.x19{left:155.520750px;}
.x4{left:156.521400px;}
.x24{left:161.778600px;}
.x27{left:163.349550px;}
.x28{left:165.625950px;}
.x7{left:195.056400px;}
.x8{left:200.969100px;}
.x17{left:214.585350px;}
.x1f{left:303.828300px;}
.x14{left:323.616900px;}
.x1a{left:346.132200px;}
.x1b{left:366.703650px;}
.x29{left:437.296950px;}
.x2{left:438.826950px;}
.x15{left:440.906700px;}
.x12{left:457.086600px;}
.xf{left:470.029950px;}
.xc{left:476.635500px;}
.x2a{left:482.598450px;}
.xb{left:491.700000px;}
.xa{left:500.560200px;}
.xe{left:551.756550px;}
.x10{left:567.662700px;}
.x20{left:576.141750px;}
.xd{left:585.319650px;}
.x1c{left:617.784150px;}
.x1d{left:626.226450px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:28.266667pt;}
.ls7{letter-spacing:-2.592000pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001600pt;}
.lsf{letter-spacing:0.234667pt;}
.lsc{letter-spacing:0.586667pt;}
.lse{letter-spacing:1.114667pt;}
.ls9{letter-spacing:1.173333pt;}
.lsd{letter-spacing:1.349333pt;}
.lsa{letter-spacing:1.525333pt;}
.lsb{letter-spacing:1.936000pt;}
.ws30{word-spacing:-58.666667pt;}
.ws2f{word-spacing:-57.493333pt;}
.ws32{word-spacing:-50.512000pt;}
.ws27{word-spacing:-50.277333pt;}
.ws2d{word-spacing:-50.101333pt;}
.ws26{word-spacing:-49.925333pt;}
.ws2b{word-spacing:-48.634667pt;}
.ws35{word-spacing:-48.000000pt;}
.ws37{word-spacing:-47.040000pt;}
.ws2c{word-spacing:-46.874667pt;}
.ws31{word-spacing:-44.704000pt;}
.ws1{word-spacing:-42.666667pt;}
.ws38{word-spacing:-41.212800pt;}
.ws3d{word-spacing:-39.120000pt;}
.ws39{word-spacing:-38.788800pt;}
.ws3b{word-spacing:-38.640000pt;}
.ws41{word-spacing:-29.707200pt;}
.ws40{word-spacing:-25.872000pt;}
.ws0{word-spacing:-21.815467pt;}
.ws2e{word-spacing:-20.826667pt;}
.ws45{word-spacing:-14.842667pt;}
.ws44{word-spacing:-14.432000pt;}
.ws47{word-spacing:-14.256000pt;}
.ws42{word-spacing:-14.080000pt;}
.ws48{word-spacing:-14.021333pt;}
.ws46{word-spacing:-13.493333pt;}
.ws43{word-spacing:-13.141333pt;}
.ws3f{word-spacing:-11.733333pt;}
.ws3c{word-spacing:-10.224000pt;}
.ws3a{word-spacing:-7.968000pt;}
.ws36{word-spacing:-6.124800pt;}
.ws1a{word-spacing:-1.664000pt;}
.ws1f{word-spacing:-1.237333pt;}
.ws1e{word-spacing:-0.554667pt;}
.ws21{word-spacing:-0.170667pt;}
.ws2{word-spacing:0.000000pt;}
.ws13{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.533333pt;}
.ws25{word-spacing:0.586667pt;}
.ws23{word-spacing:1.056000pt;}
.ws33{word-spacing:1.173333pt;}
.wse{word-spacing:1.877333pt;}
.ws1c{word-spacing:2.218667pt;}
.ws1d{word-spacing:2.816000pt;}
.ws10{word-spacing:3.114667pt;}
.ws3{word-spacing:3.242667pt;}
.ws18{word-spacing:3.328000pt;}
.ws12{word-spacing:3.584000pt;}
.ws24{word-spacing:3.989333pt;}
.ws17{word-spacing:4.181333pt;}
.wsf{word-spacing:4.394667pt;}
.ws5{word-spacing:4.565333pt;}
.ws15{word-spacing:4.778667pt;}
.ws16{word-spacing:5.632000pt;}
.ws1b{word-spacing:6.570667pt;}
.ws6{word-spacing:6.698667pt;}
.ws7{word-spacing:6.784000pt;}
.ws22{word-spacing:7.936000pt;}
.ws20{word-spacing:8.149333pt;}
.ws2a{word-spacing:8.682667pt;}
.ws8{word-spacing:9.557333pt;}
.wsd{word-spacing:9.813333pt;}
.ws28{word-spacing:9.856000pt;}
.ws9{word-spacing:10.069333pt;}
.ws4{word-spacing:10.154667pt;}
.wsa{word-spacing:10.581333pt;}
.ws19{word-spacing:11.050667pt;}
.ws11{word-spacing:12.032000pt;}
.wsb{word-spacing:12.160000pt;}
.wsc{word-spacing:15.232000pt;}
.ws34{word-spacing:16.074667pt;}
.ws14{word-spacing:22.485333pt;}
.ws29{word-spacing:36.197333pt;}
._27{margin-left:-12.912533pt;}
._23{margin-left:-6.683200pt;}
._20{margin-left:-5.654933pt;}
._1e{margin-left:-4.013333pt;}
._7{margin-left:-2.965333pt;}
._0{margin-left:-1.540267pt;}
._10{width:1.168533pt;}
._a{width:2.129600pt;}
._d{width:3.367467pt;}
._f{width:4.312747pt;}
._9{width:6.007467pt;}
._6{width:7.034133pt;}
._4{width:8.436267pt;}
._1{width:9.539200pt;}
._3{width:10.671467pt;}
._2{width:11.721600pt;}
._17{width:13.980267pt;}
._5{width:14.942400pt;}
._12{width:15.845867pt;}
._1c{width:16.778667pt;}
._11{width:17.787733pt;}
._8{width:18.961067pt;}
._e{width:20.627200pt;}
._b{width:21.624533pt;}
._14{width:22.903467pt;}
._15{width:23.947733pt;}
._1a{width:25.390933pt;}
._18{width:26.488000pt;}
._1b{width:27.414933pt;}
._1d{width:28.846400pt;}
._26{width:30.418667pt;}
._19{width:31.427733pt;}
._c{width:32.389867pt;}
._13{width:33.498667pt;}
._22{width:35.350400pt;}
._21{width:36.603200pt;}
._16{width:38.033600pt;}
._1f{width:41.694400pt;}
._24{width:43.389867pt;}
._25{width:48.053867pt;}
.fs5{font-size:24.746667pt;}
.fs6{font-size:27.840000pt;}
.fs4{font-size:30.933333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:70.243067pt;}
.y106{bottom:113.674133pt;}
.y44{bottom:118.140933pt;}
.y175{bottom:120.310400pt;}
.y107{bottom:122.258933pt;}
.yd6{bottom:125.007467pt;}
.y77{bottom:128.792267pt;}
.y1a5{bottom:129.556667pt;}
.y43{bottom:130.940933pt;}
.y105{bottom:131.407467pt;}
.y174{bottom:138.177067pt;}
.ya7{bottom:140.125600pt;}
.yd5{bottom:142.874133pt;}
.y76{bottom:146.525600pt;}
.y1a4{bottom:147.290000pt;}
.y42{bottom:147.520533pt;}
.y104{bottom:149.140800pt;}
.y14a{bottom:149.946533pt;}
.y173{bottom:156.043733pt;}
.ya6{bottom:157.992267pt;}
.y41{bottom:160.320533pt;}
.yd4{bottom:160.740800pt;}
.y75{bottom:164.258933pt;}
.y1a3{bottom:165.023333pt;}
.y149{bottom:165.946533pt;}
.y103{bottom:166.874133pt;}
.y172{bottom:173.910400pt;}
.ya5{bottom:175.858933pt;}
.y40{bottom:176.640533pt;}
.yd3{bottom:178.607467pt;}
.y148{bottom:181.946533pt;}
.y74{bottom:181.992267pt;}
.y1a2{bottom:182.756667pt;}
.y102{bottom:184.607467pt;}
.y143{bottom:188.328933pt;}
.y171{bottom:191.777067pt;}
.ya4{bottom:193.725600pt;}
.yd2{bottom:196.474133pt;}
.y14c{bottom:197.946533pt;}
.y73{bottom:199.725600pt;}
.y1a1{bottom:200.490000pt;}
.y101{bottom:202.340800pt;}
.y147{bottom:205.505600pt;}
.y170{bottom:209.643733pt;}
.ya3{bottom:211.592267pt;}
.y142{bottom:211.888000pt;}
.y14b{bottom:213.946533pt;}
.yd1{bottom:214.340800pt;}
.y72{bottom:217.458933pt;}
.y1a0{bottom:218.223333pt;}
.y100{bottom:220.074133pt;}
.y146{bottom:221.505600pt;}
.y3f{bottom:224.452133pt;}
.y31{bottom:224.673733pt;}
.y16f{bottom:227.510400pt;}
.ya2{bottom:229.458933pt;}
.yd0{bottom:232.207467pt;}
.y71{bottom:235.192267pt;}
.y19f{bottom:235.956667pt;}
.y145{bottom:237.505600pt;}
.yff{bottom:237.807467pt;}
.y3e{bottom:242.185467pt;}
.y30{bottom:242.273733pt;}
.y16e{bottom:245.377067pt;}
.ya1{bottom:247.325600pt;}
.ycf{bottom:250.074133pt;}
.y70{bottom:252.925600pt;}
.y144{bottom:253.505600pt;}
.y19e{bottom:253.690000pt;}
.yfe{bottom:255.540800pt;}
.y2f{bottom:259.873733pt;}
.y3d{bottom:259.918800pt;}
.y16d{bottom:263.243733pt;}
.ya0{bottom:265.192267pt;}
.yce{bottom:267.940800pt;}
.y6f{bottom:270.658933pt;}
.y19d{bottom:271.423333pt;}
.yfd{bottom:273.274133pt;}
.y2e{bottom:277.473733pt;}
.y141{bottom:277.568667pt;}
.y3c{bottom:277.652267pt;}
.y16c{bottom:281.110400pt;}
.y9f{bottom:283.058933pt;}
.ycd{bottom:285.807467pt;}
.y6e{bottom:288.392267pt;}
.y19c{bottom:289.156667pt;}
.yfc{bottom:291.007467pt;}
.y140{bottom:293.568667pt;}
.y2d{bottom:295.073733pt;}
.y3b{bottom:295.385467pt;}
.y16b{bottom:298.977067pt;}
.y9e{bottom:300.925600pt;}
.ycc{bottom:303.674133pt;}
.y6d{bottom:306.125600pt;}
.y19b{bottom:306.890000pt;}
.yfb{bottom:308.740800pt;}
.y13f{bottom:309.568667pt;}
.y2c{bottom:312.673733pt;}
.y3a{bottom:313.118800pt;}
.y16a{bottom:316.843733pt;}
.y9d{bottom:318.792267pt;}
.ycb{bottom:321.540800pt;}
.y139{bottom:322.502133pt;}
.y6c{bottom:323.858933pt;}
.y19a{bottom:324.623333pt;}
.y13e{bottom:325.568533pt;}
.yfa{bottom:326.474133pt;}
.y2b{bottom:330.273733pt;}
.y39{bottom:330.852133pt;}
.y169{bottom:334.710400pt;}
.y9c{bottom:336.658933pt;}
.yca{bottom:339.407467pt;}
.y6b{bottom:341.592267pt;}
.y199{bottom:342.356667pt;}
.yf9{bottom:344.207467pt;}
.y138{bottom:346.061200pt;}
.y2a{bottom:347.873733pt;}
.y38{bottom:348.585467pt;}
.y13d{bottom:349.127600pt;}
.y168{bottom:352.577067pt;}
.y9b{bottom:354.525600pt;}
.yc9{bottom:357.274133pt;}
.y6a{bottom:359.325600pt;}
.y198{bottom:360.090000pt;}
.yf8{bottom:361.940800pt;}
.y13c{bottom:365.127600pt;}
.y29{bottom:365.473733pt;}
.y37{bottom:366.318800pt;}
.y167{bottom:370.443733pt;}
.y9a{bottom:372.392267pt;}
.yc8{bottom:375.140800pt;}
.y69{bottom:377.058933pt;}
.y197{bottom:377.823333pt;}
.yf7{bottom:379.674133pt;}
.y13b{bottom:381.127600pt;}
.y28{bottom:383.073733pt;}
.y36{bottom:384.052267pt;}
.y166{bottom:388.310400pt;}
.y99{bottom:390.258933pt;}
.yc7{bottom:393.007467pt;}
.y68{bottom:394.792267pt;}
.y196{bottom:395.556667pt;}
.y13a{bottom:397.127600pt;}
.yf6{bottom:397.407467pt;}
.y27{bottom:400.673733pt;}
.y35{bottom:401.785467pt;}
.y165{bottom:406.177067pt;}
.y98{bottom:408.125600pt;}
.yc6{bottom:410.874133pt;}
.y67{bottom:412.525600pt;}
.y195{bottom:413.290000pt;}
.yf5{bottom:415.140800pt;}
.y26{bottom:418.273733pt;}
.y34{bottom:419.518933pt;}
.y137{bottom:421.190667pt;}
.y97{bottom:425.992267pt;}
.yc5{bottom:428.740800pt;}
.y66{bottom:430.258933pt;}
.y164{bottom:431.602800pt;}
.yf4{bottom:432.874133pt;}
.y25{bottom:435.873733pt;}
.y136{bottom:437.190667pt;}
.y33{bottom:437.252133pt;}
.y194{bottom:438.582400pt;}
.y96{bottom:443.858933pt;}
.yc4{bottom:446.607467pt;}
.y65{bottom:447.992267pt;}
.yf3{bottom:450.607467pt;}
.y135{bottom:453.190667pt;}
.y24{bottom:457.253200pt;}
.y12d{bottom:458.124133pt;}
.y32{bottom:458.765067pt;}
.y95{bottom:461.725600pt;}
.yc3{bottom:464.474133pt;}
.y64{bottom:465.725600pt;}
.yf2{bottom:468.340800pt;}
.y134{bottom:469.190667pt;}
.y163{bottom:471.115600pt;}
.y193{bottom:474.049067pt;}
.y94{bottom:479.592267pt;}
.y12c{bottom:481.683333pt;}
.yc2{bottom:482.340800pt;}
.y63{bottom:483.458933pt;}
.y131{bottom:485.190667pt;}
.yf1{bottom:486.074133pt;}
.y162{bottom:488.982267pt;}
.y192{bottom:491.782400pt;}
.y133{bottom:492.749733pt;}
.y93{bottom:497.458933pt;}
.y12b{bottom:497.683333pt;}
.yc1{bottom:500.207467pt;}
.y130{bottom:501.190667pt;}
.y62{bottom:501.192267pt;}
.yf0{bottom:503.807467pt;}
.y161{bottom:506.848933pt;}
.y132{bottom:508.749733pt;}
.y191{bottom:509.515733pt;}
.y92{bottom:515.325600pt;}
.yc0{bottom:518.074133pt;}
.y61{bottom:518.925600pt;}
.y1d{bottom:519.044800pt;}
.yef{bottom:521.540800pt;}
.y160{bottom:524.715600pt;}
.y12f{bottom:524.749733pt;}
.y190{bottom:527.249067pt;}
.y1c{bottom:532.378133pt;}
.y91{bottom:533.192267pt;}
.ybf{bottom:535.940800pt;}
.y60{bottom:536.658933pt;}
.yee{bottom:539.274133pt;}
.y12e{bottom:540.749733pt;}
.y15f{bottom:542.582267pt;}
.y18f{bottom:544.982400pt;}
.y23{bottom:545.711467pt;}
.y90{bottom:551.058933pt;}
.y1b{bottom:553.270533pt;}
.ybe{bottom:553.807467pt;}
.y5f{bottom:554.392267pt;}
.yed{bottom:557.007467pt;}
.y15e{bottom:560.448933pt;}
.y18e{bottom:562.715733pt;}
.y12a{bottom:564.560667pt;}
.y1a{bottom:566.603867pt;}
.y8f{bottom:568.925600pt;}
.y126{bottom:569.620267pt;}
.y1b5{bottom:571.139867pt;}
.ybd{bottom:571.674133pt;}
.y5e{bottom:572.125600pt;}
.yec{bottom:574.740800pt;}
.y15d{bottom:578.315600pt;}
.y19{bottom:579.937200pt;}
.y18d{bottom:580.449067pt;}
.y129{bottom:580.560667pt;}
.y8e{bottom:586.792267pt;}
.y1b4{bottom:588.740000pt;}
.ybc{bottom:589.540800pt;}
.y5d{bottom:589.858933pt;}
.yeb{bottom:592.474133pt;}
.y125{bottom:593.179333pt;}
.y18{bottom:593.270533pt;}
.y15c{bottom:596.182267pt;}
.y18c{bottom:598.182400pt;}
.y128{bottom:604.119733pt;}
.y8d{bottom:604.658933pt;}
.y1b3{bottom:606.339867pt;}
.y17{bottom:606.603867pt;}
.ybb{bottom:607.407467pt;}
.y5c{bottom:607.592267pt;}
.y124{bottom:609.179333pt;}
.yea{bottom:610.207467pt;}
.y15b{bottom:614.048933pt;}
.y18b{bottom:615.915733pt;}
.y16{bottom:619.937200pt;}
.y127{bottom:620.119733pt;}
.y8c{bottom:622.525600pt;}
.y1b2{bottom:623.940000pt;}
.yba{bottom:625.274133pt;}
.y5b{bottom:625.325600pt;}
.ye9{bottom:627.940800pt;}
.y15a{bottom:631.915600pt;}
.y15{bottom:633.270533pt;}
.y18a{bottom:633.649067pt;}
.y8b{bottom:640.392267pt;}
.y1b1{bottom:641.540000pt;}
.y5a{bottom:643.058933pt;}
.yb9{bottom:643.140800pt;}
.y123{bottom:643.930800pt;}
.ye8{bottom:645.674133pt;}
.y14{bottom:646.603867pt;}
.y159{bottom:649.782267pt;}
.y189{bottom:651.382400pt;}
.y11f{bottom:656.990267pt;}
.y8a{bottom:658.258933pt;}
.y1b0{bottom:659.139867pt;}
.y1b9{bottom:659.140000pt;}
.y122{bottom:659.930800pt;}
.y13{bottom:659.937200pt;}
.y59{bottom:660.792267pt;}
.yb8{bottom:661.007467pt;}
.ye7{bottom:663.407467pt;}
.y158{bottom:667.648933pt;}
.y188{bottom:669.115733pt;}
.y12{bottom:673.270533pt;}
.y89{bottom:676.125600pt;}
.y1af{bottom:676.740000pt;}
.y58{bottom:678.525600pt;}
.yb7{bottom:678.874133pt;}
.y11e{bottom:680.549333pt;}
.ye6{bottom:681.140800pt;}
.y121{bottom:683.489867pt;}
.y157{bottom:685.515600pt;}
.y11{bottom:686.603867pt;}
.y187{bottom:686.849067pt;}
.y88{bottom:693.992267pt;}
.y1ae{bottom:694.339867pt;}
.y1b8{bottom:694.340000pt;}
.y57{bottom:696.258933pt;}
.yb6{bottom:696.740800pt;}
.ye5{bottom:698.874133pt;}
.y120{bottom:699.489867pt;}
.y10{bottom:699.937200pt;}
.y156{bottom:703.382267pt;}
.y186{bottom:704.582400pt;}
.y87{bottom:711.858933pt;}
.y1ad{bottom:711.940000pt;}
.yf{bottom:713.270533pt;}
.y56{bottom:713.992267pt;}
.yb5{bottom:714.607467pt;}
.ye4{bottom:716.607467pt;}
.y155{bottom:721.249067pt;}
.y185{bottom:722.315733pt;}
.y11c{bottom:724.186667pt;}
.ye{bottom:726.603867pt;}
.y117{bottom:728.803333pt;}
.y1ac{bottom:729.540000pt;}
.y86{bottom:729.725600pt;}
.y55{bottom:731.725600pt;}
.yb4{bottom:732.474133pt;}
.ye3{bottom:734.340800pt;}
.y154{bottom:739.115733pt;}
.yd{bottom:739.937200pt;}
.y184{bottom:740.049067pt;}
.y11b{bottom:740.186667pt;}
.y116{bottom:744.803333pt;}
.y1ab{bottom:747.140000pt;}
.y85{bottom:747.592267pt;}
.y54{bottom:749.458933pt;}
.yb3{bottom:750.340800pt;}
.ye2{bottom:752.074133pt;}
.yc{bottom:753.270533pt;}
.y11a{bottom:756.186667pt;}
.y153{bottom:756.982400pt;}
.y183{bottom:757.782400pt;}
.y11d{bottom:763.745733pt;}
.y1aa{bottom:764.739867pt;}
.y1b7{bottom:764.740000pt;}
.y84{bottom:765.458933pt;}
.yb{bottom:766.603867pt;}
.y53{bottom:767.192267pt;}
.y115{bottom:768.362400pt;}
.y152{bottom:774.849067pt;}
.y182{bottom:775.515733pt;}
.yb2{bottom:775.766533pt;}
.ye1{bottom:777.366533pt;}
.y119{bottom:779.745733pt;}
.y1a9{bottom:782.339867pt;}
.y1b6{bottom:782.340000pt;}
.y83{bottom:783.325600pt;}
.y114{bottom:784.362400pt;}
.y52{bottom:784.925600pt;}
.y151{bottom:792.715733pt;}
.y181{bottom:793.249067pt;}
.y118{bottom:795.745733pt;}
.y1a8{bottom:799.940000pt;}
.y82{bottom:801.192267pt;}
.y51{bottom:802.659067pt;}
.y150{bottom:810.582400pt;}
.y180{bottom:810.982400pt;}
.yb1{bottom:811.499867pt;}
.ye0{bottom:812.833200pt;}
.y113{bottom:815.354800pt;}
.y81{bottom:819.058933pt;}
.y50{bottom:820.392400pt;}
.ya{bottom:823.257867pt;}
.y22{bottom:823.258000pt;}
.y14f{bottom:828.449067pt;}
.y1a6{bottom:828.620667pt;}
.y17f{bottom:828.715733pt;}
.yb0{bottom:829.366533pt;}
.ydf{bottom:830.566533pt;}
.y112{bottom:831.354800pt;}
.y80{bottom:836.925600pt;}
.y4f{bottom:838.125600pt;}
.y14e{bottom:846.315733pt;}
.y17e{bottom:846.449067pt;}
.yaf{bottom:847.233200pt;}
.yde{bottom:848.299867pt;}
.y10d{bottom:850.294800pt;}
.y1a7{bottom:850.946133pt;}
.y7f{bottom:854.792267pt;}
.y111{bottom:854.913733pt;}
.y4e{bottom:855.858933pt;}
.y14d{bottom:864.182400pt;}
.yae{bottom:865.099867pt;}
.ydd{bottom:866.033200pt;}
.y110{bottom:870.913733pt;}
.y7e{bottom:872.659067pt;}
.y4d{bottom:873.592400pt;}
.y10c{bottom:873.853867pt;}
.y9{bottom:874.457867pt;}
.yad{bottom:882.966533pt;}
.ydc{bottom:883.766533pt;}
.y7d{bottom:890.525600pt;}
.y4c{bottom:891.325733pt;}
.y8{bottom:892.057867pt;}
.y21{bottom:892.058000pt;}
.y10f{bottom:894.472800pt;}
.yac{bottom:900.833200pt;}
.ydb{bottom:901.499867pt;}
.y17d{bottom:906.924133pt;}
.y7c{bottom:908.392400pt;}
.y4b{bottom:909.059067pt;}
.y7{bottom:909.657867pt;}
.y20{bottom:909.658000pt;}
.y10e{bottom:910.472800pt;}
.yab{bottom:918.699867pt;}
.yda{bottom:919.233200pt;}
.y17c{bottom:922.924133pt;}
.y7b{bottom:926.259067pt;}
.y4a{bottom:926.792267pt;}
.y6{bottom:927.257867pt;}
.y1f{bottom:927.258000pt;}
.y10b{bottom:932.031067pt;}
.yaa{bottom:936.566533pt;}
.y177{bottom:936.865600pt;}
.yd9{bottom:936.966667pt;}
.y17b{bottom:938.924133pt;}
.y7a{bottom:944.125600pt;}
.y49{bottom:944.525600pt;}
.y5{bottom:944.857867pt;}
.y1e{bottom:944.858133pt;}
.ya9{bottom:954.433333pt;}
.yd8{bottom:954.700000pt;}
.y17a{bottom:954.924133pt;}
.y10a{bottom:955.590133pt;}
.y176{bottom:960.424667pt;}
.y79{bottom:961.992400pt;}
.y48{bottom:962.259067pt;}
.ya8{bottom:972.300000pt;}
.yd7{bottom:972.433333pt;}
.y179{bottom:978.483200pt;}
.y78{bottom:979.858933pt;}
.y47{bottom:979.992400pt;}
.y109{bottom:981.429467pt;}
.y178{bottom:994.483200pt;}
.y4{bottom:996.227333pt;}
.y46{bottom:997.725733pt;}
.y108{bottom:998.762800pt;}
.y2{bottom:1037.385067pt;}
.y45{bottom:1044.332933pt;}
.y1{bottom:1050.185067pt;}
.hb{height:23.003333pt;}
.hd{height:29.916667pt;}
.h3{height:31.573333pt;}
.h18{height:33.515625pt;}
.h13{height:33.562500pt;}
.h15{height:33.656250pt;}
.h17{height:35.279063pt;}
.h2{height:35.520000pt;}
.he{height:35.925333pt;}
.hc{height:37.083333pt;}
.h16{height:37.265625pt;}
.h12{height:37.291667pt;}
.h14{height:37.395833pt;}
.h4{height:37.760000pt;}
.h8{height:37.845333pt;}
.h10{height:40.992188pt;}
.h9{height:41.020833pt;}
.hf{height:41.135417pt;}
.h5{height:44.906667pt;}
.h11{height:46.354167pt;}
.ha{height:50.989583pt;}
.h6{height:52.448000pt;}
.h7{height:55.921067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x16{left:97.467733pt;}
.x13{left:102.047200pt;}
.x9{left:105.993467pt;}
.x25{left:109.424933pt;}
.x23{left:115.541467pt;}
.x1e{left:116.953600pt;}
.x26{left:118.620933pt;}
.x21{left:121.029733pt;}
.x5{left:122.945467pt;}
.x1{left:124.278133pt;}
.x18{left:126.918400pt;}
.x6{left:128.819600pt;}
.x22{left:131.300667pt;}
.x11{left:132.283467pt;}
.x19{left:138.240667pt;}
.x4{left:139.130133pt;}
.x24{left:143.803200pt;}
.x27{left:145.199600pt;}
.x28{left:147.223067pt;}
.x7{left:173.383467pt;}
.x8{left:178.639200pt;}
.x17{left:190.742533pt;}
.x1f{left:270.069600pt;}
.x14{left:287.659467pt;}
.x1a{left:307.673067pt;}
.x1b{left:325.958800pt;}
.x29{left:388.708400pt;}
.x2{left:390.068400pt;}
.x15{left:391.917067pt;}
.x12{left:406.299200pt;}
.xf{left:417.804400pt;}
.xc{left:423.676000pt;}
.x2a{left:428.976400pt;}
.xb{left:437.066667pt;}
.xa{left:444.942400pt;}
.xe{left:490.450267pt;}
.x10{left:504.589067pt;}
.x20{left:512.126000pt;}
.xd{left:520.284133pt;}
.x1c{left:549.141467pt;}
.x1d{left:556.645733pt;}
}




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