
    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_9ff0ff62525cf041df955430.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_aec94d24608c327d4ddd53f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_ede2ac732a2774ff77863442.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_57d743884053bef1301e1fa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130000;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_29c58688118b407ceddd5cd8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_90c4021fbbd884926645f1a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.054000;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_739268ca29d8dd37fb454a03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_bded3522462f22619bed9532.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_9e26ca9b6c296befe280c761.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.995000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.054000;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_4220d2e1d7833ce38aa42f93.woff2')format("woff");}.fff{font-family:fff;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_17940a0e326ff2dc54bc722f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4947eb7373d01d8e9ce5da02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_cc3e0ab77bfc1db12ee76810.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_eae2fab9becff69d23f6ee63.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.994000;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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.439000px;}
.lsa{letter-spacing:-0.675000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.135000px;}
.ls2{letter-spacing:0.306000px;}
.lsf{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.673200px;}
.lsd{letter-spacing:1.162800px;}
.ls5{letter-spacing:1.224000px;}
.lsb{letter-spacing:1.530000px;}
.ls10{letter-spacing:1.713600px;}
.lse{letter-spacing:1.774800px;}
.ls9{letter-spacing:2.509200px;}
.ls8{letter-spacing:3.427200px;}
.ls6{letter-spacing:4.284000px;}
.ls7{letter-spacing:4.651200px;}
.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;}
}
.ws1a{word-spacing:-16.891200px;}
.ws1b{word-spacing:-15.667200px;}
.ws0{word-spacing:-15.129107px;}
.ws1c{word-spacing:-14.749200px;}
.ws3{word-spacing:-14.256000px;}
.ws4{word-spacing:-13.770000px;}
.ws21{word-spacing:-13.402800px;}
.ws20{word-spacing:-12.913200px;}
.ws15{word-spacing:-12.852000px;}
.ws8{word-spacing:-12.546000px;}
.ws6{word-spacing:-12.240000px;}
.ws9{word-spacing:-10.794000px;}
.ws7{word-spacing:-7.135920px;}
.ws11{word-spacing:-1.932000px;}
.ws22{word-spacing:-1.713600px;}
.ws1e{word-spacing:-1.530000px;}
.ws16{word-spacing:-1.346400px;}
.ws23{word-spacing:-1.162800px;}
.ws13{word-spacing:-0.798000px;}
.ws18{word-spacing:-0.612000px;}
.ws5{word-spacing:-0.450000px;}
.wsb{word-spacing:-0.428400px;}
.wsf{word-spacing:-0.306000px;}
.wsa{word-spacing:-0.135000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.672000px;}
.ws1d{word-spacing:0.675000px;}
.ws17{word-spacing:2.386800px;}
.wse{word-spacing:3.733200px;}
.ws12{word-spacing:6.300000px;}
.wsd{word-spacing:13.096800px;}
.wsc{word-spacing:14.932800px;}
.ws24{word-spacing:26.132400px;}
.ws19{word-spacing:81.994706px;}
.ws1f{word-spacing:85.999706px;}
.ws14{word-spacing:87.079706px;}
.ws2{word-spacing:87.979706px;}
._f{margin-left:-6.713640px;}
._a{margin-left:-5.132064px;}
._b{margin-left:-3.612264px;}
._c{margin-left:-2.104872px;}
._9{margin-left:-1.035000px;}
._5{width:1.700664px;}
._8{width:3.673434px;}
._e{width:4.742592px;}
._3{width:6.734629px;}
._6{width:7.959108px;}
._10{width:9.057600px;}
._d{width:10.735200px;}
._2{width:13.809392px;}
._15{width:15.364648px;}
._13{width:16.921080px;}
._11{width:18.085320px;}
._16{width:19.124592px;}
._17{width:20.459160px;}
._1d{width:21.597072px;}
._1a{width:22.731662px;}
._4{width:24.183442px;}
._25{width:25.446960px;}
._1b{width:26.744400px;}
._18{width:27.931680px;}
._1{width:29.183394px;}
._12{width:30.231576px;}
._1e{width:31.458024px;}
._1f{width:32.864400px;}
._22{width:33.867672px;}
._24{width:35.190000px;}
._14{width:37.466640px;}
._29{width:39.223080px;}
._19{width:42.050520px;}
._26{width:44.265960px;}
._1c{width:45.532800px;}
._7{width:46.598194px;}
._23{width:48.017520px;}
._21{width:55.018800px;}
._27{width:56.212200px;}
._2c{width:59.731200px;}
._2a{width:62.136360px;}
._28{width:68.941800px;}
._2b{width:72.014040px;}
._20{width:85.820760px;}
._0{width:846.085199px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.013280px;}
.fsd{font-size:35.679600px;}
.fs3{font-size:38.872320px;}
.fse{font-size:42.000000px;}
.fs6{font-size:42.759552px;}
.fs7{font-size:43.731360px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.590400px;}
.fs1{font-size:53.449440px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:54.421248px;}
.fsb{font-size:61.200000px;}
.fsc{font-size:67.200000px;}
.fs0{font-size:68.026560px;}
.fs9{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307530px;}
.y36{bottom:47.074950px;}
.y1e{bottom:48.137850px;}
.y1c{bottom:51.809514px;}
.y35{bottom:63.578700px;}
.y34{bottom:63.649500px;}
.y1d{bottom:64.889550px;}
.y1b{bottom:65.584892px;}
.y1a{bottom:79.360271px;}
.y19{bottom:93.135649px;}
.y18{bottom:104.906674px;}
.y17{bottom:127.209667px;}
.ya2{bottom:127.758750px;}
.ybf{bottom:127.762650px;}
.yd9{bottom:127.769550px;}
.y122{bottom:127.771050px;}
.y102{bottom:127.772550px;}
.y140{bottom:127.776450px;}
.y7c{bottom:127.791000px;}
.y7b{bottom:144.286500px;}
.y101{bottom:148.748850px;}
.y121{bottom:148.762650px;}
.ya1{bottom:148.765650px;}
.ybe{bottom:148.769550px;}
.y111{bottom:148.776450px;}
.y13f{bottom:148.783350px;}
.y7a{bottom:160.792500px;}
.y100{bottom:169.755750px;}
.y120{bottom:169.769550px;}
.ybd{bottom:169.771050px;}
.ya0{bottom:169.772550px;}
.yee{bottom:169.774050px;}
.y110{bottom:169.783350px;}
.y79{bottom:177.288000px;}
.yff{bottom:190.762650px;}
.y11f{bottom:190.769550px;}
.y13e{bottom:190.771050px;}
.ybc{bottom:190.777950px;}
.y9f{bottom:190.779450px;}
.yed{bottom:190.780950px;}
.y16{bottom:192.004966px;}
.y78{bottom:193.783500px;}
.y15{bottom:202.330426px;}
.yec{bottom:211.741950px;}
.y9e{bottom:211.755750px;}
.ybb{bottom:211.769550px;}
.y11e{bottom:211.776450px;}
.y13d{bottom:211.777950px;}
.y14{bottom:211.805554px;}
.y13{bottom:220.406054px;}
.y12{bottom:229.018703px;}
.yeb{bottom:232.748850px;}
.y10f{bottom:232.755750px;}
.y56{bottom:232.755900px;}
.y9d{bottom:232.762650px;}
.y13c{bottom:232.769550px;}
.y77{bottom:232.769700px;}
.yfe{bottom:232.771050px;}
.y11d{bottom:232.783350px;}
.y11{bottom:237.631351px;}
.y10{bottom:246.231852px;}
.yd8{bottom:253.755750px;}
.y10e{bottom:253.762650px;}
.y55{bottom:253.762800px;}
.y76{bottom:253.764300px;}
.y9c{bottom:253.769550px;}
.yfd{bottom:253.777950px;}
.yf{bottom:254.844500px;}
.ye{bottom:272.555701px;}
.yd7{bottom:274.762650px;}
.yfc{bottom:274.769550px;}
.y54{bottom:274.769700px;}
.y9b{bottom:274.771050px;}
.y75{bottom:274.771200px;}
.yba{bottom:274.772550px;}
.y13b{bottom:274.776450px;}
.y10d{bottom:295.757250px;}
.yd6{bottom:295.769550px;}
.yfb{bottom:295.771050px;}
.y53{bottom:295.772700px;}
.y9a{bottom:295.777950px;}
.y74{bottom:295.778100px;}
.yb9{bottom:295.779450px;}
.y13a{bottom:295.783350px;}
.yb8{bottom:316.755750px;}
.y11c{bottom:316.762650px;}
.y10c{bottom:316.764150px;}
.yd5{bottom:316.765650px;}
.y99{bottom:316.769550px;}
.y73{bottom:316.769700px;}
.yfa{bottom:316.777950px;}
.y52{bottom:316.779600px;}
.y51{bottom:337.755900px;}
.y98{bottom:337.762650px;}
.y72{bottom:337.762800px;}
.yf9{bottom:337.769550px;}
.y10b{bottom:337.771050px;}
.yd4{bottom:337.772550px;}
.yea{bottom:358.748850px;}
.yf8{bottom:358.755750px;}
.y10a{bottom:358.762650px;}
.y50{bottom:358.762800px;}
.y97{bottom:358.769550px;}
.y71{bottom:358.769700px;}
.y139{bottom:358.771050px;}
.y33{bottom:358.776450px;}
.yd3{bottom:358.779450px;}
.yd2{bottom:379.755750px;}
.y70{bottom:379.760400px;}
.y96{bottom:379.762650px;}
.y109{bottom:379.769550px;}
.y4f{bottom:379.769700px;}
.y147{bottom:379.772550px;}
.yb7{bottom:379.776450px;}
.y138{bottom:379.777950px;}
.y32{bottom:379.783350px;}
.y137{bottom:400.750350px;}
.y4e{bottom:400.757400px;}
.yd1{bottom:400.762650px;}
.y108{bottom:400.764150px;}
.y6f{bottom:400.767300px;}
.y95{bottom:400.769550px;}
.y146{bottom:400.779450px;}
.yb6{bottom:400.783350px;}
.yd{bottom:409.204054px;}
.y31{bottom:421.755750px;}
.y136{bottom:421.757250px;}
.y94{bottom:421.764150px;}
.y4d{bottom:421.764300px;}
.ye9{bottom:421.765650px;}
.yb5{bottom:421.769550px;}
.y107{bottom:421.771050px;}
.y6e{bottom:421.774200px;}
.y6d{bottom:442.735200px;}
.y30{bottom:442.762650px;}
.y135{bottom:442.764150px;}
.y93{bottom:442.771050px;}
.y4c{bottom:442.771200px;}
.ye8{bottom:442.772550px;}
.y6c{bottom:463.742100px;}
.y92{bottom:463.762650px;}
.y4b{bottom:463.762800px;}
.y145{bottom:463.764150px;}
.y2f{bottom:463.769550px;}
.y134{bottom:463.771050px;}
.yb4{bottom:463.777950px;}
.ye7{bottom:463.779450px;}
.y6b{bottom:484.749000px;}
.ye6{bottom:484.755750px;}
.yf7{bottom:484.757250px;}
.yd0{bottom:484.762650px;}
.y91{bottom:484.769550px;}
.y4a{bottom:484.769700px;}
.y2e{bottom:484.771050px;}
.y11b{bottom:484.776450px;}
.y133{bottom:484.777950px;}
.y6a{bottom:505.755900px;}
.yb3{bottom:505.762650px;}
.yf6{bottom:505.764150px;}
.ycf{bottom:505.769550px;}
.y90{bottom:505.770150px;}
.y49{bottom:505.776600px;}
.y2d{bottom:505.777950px;}
.y11a{bottom:505.783350px;}
.y119{bottom:526.755750px;}
.y69{bottom:526.762800px;}
.y132{bottom:526.764150px;}
.y48{bottom:526.768650px;}
.y2c{bottom:526.769550px;}
.yce{bottom:526.771050px;}
.y8f{bottom:526.777050px;}
.y8e{bottom:547.707450px;}
.ye5{bottom:547.756350px;}
.y2b{bottom:547.762650px;}
.y68{bottom:547.769700px;}
.yb2{bottom:547.771050px;}
.y47{bottom:547.775550px;}
.ycd{bottom:547.777950px;}
.y8d{bottom:568.714350px;}
.y131{bottom:568.762650px;}
.ye4{bottom:568.763250px;}
.y2a{bottom:568.769550px;}
.y67{bottom:568.771200px;}
.yb1{bottom:568.777950px;}
.y46{bottom:568.782450px;}
.y8c{bottom:589.721250px;}
.y45{bottom:589.728150px;}
.ycc{bottom:589.757250px;}
.yf5{bottom:589.762650px;}
.y130{bottom:589.763250px;}
.y29{bottom:589.764150px;}
.yb0{bottom:589.769550px;}
.ye3{bottom:589.770150px;}
.y144{bottom:589.771050px;}
.y66{bottom:589.778100px;}
.yc{bottom:592.061876px;}
.y8b{bottom:610.728150px;}
.ye2{bottom:610.731150px;}
.y44{bottom:610.735050px;}
.y12f{bottom:610.754850px;}
.yaf{bottom:610.762650px;}
.ycb{bottom:610.764150px;}
.yf4{bottom:610.769550px;}
.y65{bottom:610.769700px;}
.y28{bottom:610.771050px;}
.y143{bottom:610.777950px;}
.yb{bottom:618.616530px;}
.y8a{bottom:631.735050px;}
.y43{bottom:631.741950px;}
.yf3{bottom:631.755750px;}
.y118{bottom:631.758750px;}
.y12e{bottom:631.761750px;}
.y64{bottom:631.764300px;}
.yae{bottom:631.769550px;}
.yca{bottom:631.771050px;}
.y106{bottom:631.776450px;}
.y27{bottom:631.777950px;}
.ya{bottom:632.391908px;}
.ye1{bottom:652.729650px;}
.y89{bottom:652.741950px;}
.y42{bottom:652.748850px;}
.yc9{bottom:652.762650px;}
.y117{bottom:652.765650px;}
.y12d{bottom:652.768650px;}
.y26{bottom:652.769550px;}
.y63{bottom:652.771200px;}
.yad{bottom:652.776450px;}
.y105{bottom:652.783350px;}
.y9{bottom:659.213809px;}
.y8{bottom:672.989188px;}
.ye0{bottom:673.736550px;}
.y88{bottom:673.748850px;}
.y41{bottom:673.755750px;}
.y62{bottom:673.762800px;}
.yc8{bottom:673.769550px;}
.y116{bottom:673.772550px;}
.y12c{bottom:673.775550px;}
.y25{bottom:673.776450px;}
.yac{bottom:673.783350px;}
.y7{bottom:686.764566px;}
.y115{bottom:694.748850px;}
.y12b{bottom:694.751850px;}
.y87{bottom:694.755750px;}
.y40{bottom:694.762650px;}
.yc7{bottom:694.764150px;}
.y61{bottom:694.769700px;}
.y24{bottom:694.783350px;}
.y6{bottom:700.539944px;}
.y114{bottom:715.755750px;}
.y12a{bottom:715.758750px;}
.y86{bottom:715.762650px;}
.y3f{bottom:715.769550px;}
.yc6{bottom:715.771050px;}
.y23{bottom:715.783350px;}
.ydf{bottom:736.741950px;}
.yab{bottom:736.762650px;}
.y3e{bottom:736.764150px;}
.y129{bottom:736.765650px;}
.y85{bottom:736.769550px;}
.y60{bottom:736.776450px;}
.yc5{bottom:736.777950px;}
.yde{bottom:757.748850px;}
.y84{bottom:757.762650px;}
.yaa{bottom:757.769550px;}
.y3d{bottom:757.771050px;}
.y128{bottom:757.772550px;}
.y142{bottom:757.776450px;}
.y5f{bottom:757.783350px;}
.y5{bottom:764.727863px;}
.ydd{bottom:778.755750px;}
.yf2{bottom:778.762650px;}
.ya9{bottom:778.764150px;}
.y113{bottom:778.765650px;}
.y5e{bottom:778.765800px;}
.y83{bottom:778.769550px;}
.yc4{bottom:778.771050px;}
.y3c{bottom:778.777950px;}
.y141{bottom:778.783350px;}
.y4{bottom:785.160126px;}
.y21{bottom:792.331650px;}
.y82{bottom:799.757250px;}
.y127{bottom:799.759350px;}
.ydc{bottom:799.762650px;}
.yf1{bottom:799.769550px;}
.ya8{bottom:799.771050px;}
.y112{bottom:799.772550px;}
.y5d{bottom:799.772700px;}
.yc3{bottom:799.777950px;}
.y3b{bottom:799.784850px;}
.y3{bottom:809.260964px;}
.yf0{bottom:820.748850px;}
.y5c{bottom:820.749000px;}
.y81{bottom:820.764150px;}
.y14d{bottom:820.768350px;}
.yc2{bottom:820.769550px;}
.y104{bottom:820.771050px;}
.ya7{bottom:820.777950px;}
.y20{bottom:825.334650px;}
.y2{bottom:833.373950px;}
.yef{bottom:841.755750px;}
.y5b{bottom:841.755900px;}
.yc1{bottom:841.762650px;}
.ya6{bottom:841.769550px;}
.y80{bottom:841.771050px;}
.y14c{bottom:841.775250px;}
.y103{bottom:841.777950px;}
.y3a{bottom:841.783350px;}
.y1f{bottom:858.337650px;}
.y14b{bottom:862.751550px;}
.ya5{bottom:862.762650px;}
.y5a{bottom:862.762800px;}
.y126{bottom:862.764750px;}
.yc0{bottom:862.769550px;}
.y7f{bottom:862.777950px;}
.y39{bottom:862.783500px;}
.y14a{bottom:883.758450px;}
.ya4{bottom:883.769550px;}
.y59{bottom:883.769700px;}
.y125{bottom:883.771650px;}
.y38{bottom:883.783500px;}
.y7e{bottom:883.784850px;}
.y149{bottom:904.765350px;}
.ya3{bottom:904.776450px;}
.y58{bottom:904.777800px;}
.y124{bottom:904.778550px;}
.ydb{bottom:904.780050px;}
.y37{bottom:904.783500px;}
.y148{bottom:925.772250px;}
.y123{bottom:925.773150px;}
.y7d{bottom:925.783350px;}
.y22{bottom:925.783500px;}
.y57{bottom:925.784700px;}
.yda{bottom:925.786950px;}
.h9{height:25.203840px;}
.h7{height:28.804389px;}
.h8{height:28.921006px;}
.hc{height:32.404938px;}
.h21{height:35.952000px;}
.h6{height:36.005486px;}
.ha{height:36.151258px;}
.h10{height:38.520000px;}
.h5{height:39.606035px;}
.hb{height:40.326145px;}
.hf{height:41.085000px;}
.h13{height:43.207200px;}
.h22{height:47.246400px;}
.h2a{height:47.307600px;}
.h19{height:48.960000px;}
.h12{height:49.734000px;}
.h3{height:50.407681px;}
.h4{height:50.611761px;}
.h14{height:50.918400px;}
.h16{height:50.940000px;}
.h15{height:50.979600px;}
.h18{height:51.285600px;}
.h26{height:51.295200px;}
.h1d{height:51.301200px;}
.h1f{height:51.307200px;}
.h23{height:51.310800px;}
.h24{height:51.313200px;}
.h1e{height:51.313800px;}
.h1b{height:51.345000px;}
.h1a{height:51.346800px;}
.h20{height:51.350400px;}
.h29{height:51.356400px;}
.h1c{height:51.362400px;}
.h25{height:51.366000px;}
.h28{height:51.368400px;}
.h27{height:51.408000px;}
.h17{height:61.353600px;}
.h11{height:105.564000px;}
.hd{height:1020.714000px;}
.he{height:1020.750000px;}
.h2{height:1022.694296px;}
.h1{height:1023.000000px;}
.h0{height:1023.300000px;}
.w1{width:723.000000px;}
.w2{width:723.119100px;}
.w0{width:723.120000px;}
.x0{left:0.000000px;}
.x3{left:37.876217px;}
.x5{left:43.178850px;}
.x1{left:44.763906px;}
.x6{left:83.663850px;}
.x7{left:84.726900px;}
.xc{left:92.940900px;}
.x12{left:96.419850px;}
.xe{left:100.677450px;}
.x2{left:120.516340px;}
.x8{left:273.230850px;}
.x4{left:354.673477px;}
.xf{left:366.806250px;}
.xd{left:375.700200px;}
.x11{left:388.456950px;}
.xb{left:438.916725px;}
.xa{left:587.299950px;}
.x9{left:665.506500px;}
.x10{left:667.204800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.168000pt;}
.lsa{letter-spacing:-0.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.120000pt;}
.ls2{letter-spacing:0.272000pt;}
.lsf{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.598400pt;}
.lsd{letter-spacing:1.033600pt;}
.ls5{letter-spacing:1.088000pt;}
.lsb{letter-spacing:1.360000pt;}
.ls10{letter-spacing:1.523200pt;}
.lse{letter-spacing:1.577600pt;}
.ls9{letter-spacing:2.230400pt;}
.ls8{letter-spacing:3.046400pt;}
.ls6{letter-spacing:3.808000pt;}
.ls7{letter-spacing:4.134400pt;}
.ws1a{word-spacing:-15.014400pt;}
.ws1b{word-spacing:-13.926400pt;}
.ws0{word-spacing:-13.448095pt;}
.ws1c{word-spacing:-13.110400pt;}
.ws3{word-spacing:-12.672000pt;}
.ws4{word-spacing:-12.240000pt;}
.ws21{word-spacing:-11.913600pt;}
.ws20{word-spacing:-11.478400pt;}
.ws15{word-spacing:-11.424000pt;}
.ws8{word-spacing:-11.152000pt;}
.ws6{word-spacing:-10.880000pt;}
.ws9{word-spacing:-9.594667pt;}
.ws7{word-spacing:-6.343040pt;}
.ws11{word-spacing:-1.717333pt;}
.ws22{word-spacing:-1.523200pt;}
.ws1e{word-spacing:-1.360000pt;}
.ws16{word-spacing:-1.196800pt;}
.ws23{word-spacing:-1.033600pt;}
.ws13{word-spacing:-0.709333pt;}
.ws18{word-spacing:-0.544000pt;}
.ws5{word-spacing:-0.400000pt;}
.wsb{word-spacing:-0.380800pt;}
.wsf{word-spacing:-0.272000pt;}
.wsa{word-spacing:-0.120000pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.597333pt;}
.ws1d{word-spacing:0.600000pt;}
.ws17{word-spacing:2.121600pt;}
.wse{word-spacing:3.318400pt;}
.ws12{word-spacing:5.600000pt;}
.wsd{word-spacing:11.641600pt;}
.wsc{word-spacing:13.273600pt;}
.ws24{word-spacing:23.228800pt;}
.ws19{word-spacing:72.884183pt;}
.ws1f{word-spacing:76.444183pt;}
.ws14{word-spacing:77.404183pt;}
.ws2{word-spacing:78.204183pt;}
._f{margin-left:-5.967680pt;}
._a{margin-left:-4.561835pt;}
._b{margin-left:-3.210901pt;}
._c{margin-left:-1.870997pt;}
._9{margin-left:-0.920000pt;}
._5{width:1.511701pt;}
._8{width:3.265275pt;}
._e{width:4.215637pt;}
._3{width:5.986337pt;}
._6{width:7.074762pt;}
._10{width:8.051200pt;}
._d{width:9.542400pt;}
._2{width:12.275015pt;}
._15{width:13.657465pt;}
._13{width:15.040960pt;}
._11{width:16.075840pt;}
._16{width:16.999637pt;}
._17{width:18.185920pt;}
._1d{width:19.197397pt;}
._1a{width:20.205922pt;}
._4{width:21.496393pt;}
._25{width:22.619520pt;}
._1b{width:23.772800pt;}
._18{width:24.828160pt;}
._1{width:25.940795pt;}
._12{width:26.872512pt;}
._1e{width:27.962688pt;}
._1f{width:29.212800pt;}
._22{width:30.104597pt;}
._24{width:31.280000pt;}
._14{width:33.303680pt;}
._29{width:34.864960pt;}
._19{width:37.378240pt;}
._26{width:39.347520pt;}
._1c{width:40.473600pt;}
._7{width:41.420617pt;}
._23{width:42.682240pt;}
._21{width:48.905600pt;}
._27{width:49.966400pt;}
._2c{width:53.094400pt;}
._2a{width:55.232320pt;}
._28{width:61.281600pt;}
._2b{width:64.012480pt;}
._20{width:76.285120pt;}
._0{width:752.075732pt;}
.fs4{font-size:30.234027pt;}
.fsd{font-size:31.715200pt;}
.fs3{font-size:34.553173pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:38.008491pt;}
.fs7{font-size:38.872320pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:43.191467pt;}
.fs1{font-size:47.510613pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:48.374443pt;}
.fsb{font-size:54.400000pt;}
.fsc{font-size:59.733333pt;}
.fs0{font-size:60.468053pt;}
.fs9{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273360pt;}
.y36{bottom:41.844400pt;}
.y1e{bottom:42.789200pt;}
.y1c{bottom:46.052901pt;}
.y35{bottom:56.514400pt;}
.y34{bottom:56.577333pt;}
.y1d{bottom:57.679600pt;}
.y1b{bottom:58.297682pt;}
.y1a{bottom:70.542463pt;}
.y19{bottom:82.787244pt;}
.y18{bottom:93.250377pt;}
.y17{bottom:113.075260pt;}
.ya2{bottom:113.563333pt;}
.ybf{bottom:113.566800pt;}
.yd9{bottom:113.572933pt;}
.y122{bottom:113.574267pt;}
.y102{bottom:113.575600pt;}
.y140{bottom:113.579067pt;}
.y7c{bottom:113.592000pt;}
.y7b{bottom:128.254667pt;}
.y101{bottom:132.221200pt;}
.y121{bottom:132.233467pt;}
.ya1{bottom:132.236133pt;}
.ybe{bottom:132.239600pt;}
.y111{bottom:132.245733pt;}
.y13f{bottom:132.251867pt;}
.y7a{bottom:142.926667pt;}
.y100{bottom:150.894000pt;}
.y120{bottom:150.906267pt;}
.ybd{bottom:150.907600pt;}
.ya0{bottom:150.908933pt;}
.yee{bottom:150.910267pt;}
.y110{bottom:150.918533pt;}
.y79{bottom:157.589333pt;}
.yff{bottom:169.566800pt;}
.y11f{bottom:169.572933pt;}
.y13e{bottom:169.574267pt;}
.ybc{bottom:169.580400pt;}
.y9f{bottom:169.581733pt;}
.yed{bottom:169.583067pt;}
.y16{bottom:170.671081pt;}
.y78{bottom:172.252000pt;}
.y15{bottom:179.849267pt;}
.yec{bottom:188.215067pt;}
.y9e{bottom:188.227333pt;}
.ybb{bottom:188.239600pt;}
.y11e{bottom:188.245733pt;}
.y13d{bottom:188.247067pt;}
.y14{bottom:188.271603pt;}
.y13{bottom:195.916493pt;}
.y12{bottom:203.572180pt;}
.yeb{bottom:206.887867pt;}
.y10f{bottom:206.894000pt;}
.y56{bottom:206.894133pt;}
.y9d{bottom:206.900133pt;}
.y13c{bottom:206.906267pt;}
.y77{bottom:206.906400pt;}
.yfe{bottom:206.907600pt;}
.y11d{bottom:206.918533pt;}
.y11{bottom:211.227868pt;}
.y10{bottom:218.872757pt;}
.yd8{bottom:225.560667pt;}
.y10e{bottom:225.566800pt;}
.y55{bottom:225.566933pt;}
.y76{bottom:225.568267pt;}
.y9c{bottom:225.572933pt;}
.yfd{bottom:225.580400pt;}
.yf{bottom:226.528445pt;}
.ye{bottom:242.271734pt;}
.yd7{bottom:244.233467pt;}
.yfc{bottom:244.239600pt;}
.y54{bottom:244.239733pt;}
.y9b{bottom:244.240933pt;}
.y75{bottom:244.241067pt;}
.yba{bottom:244.242267pt;}
.y13b{bottom:244.245733pt;}
.y10d{bottom:262.895333pt;}
.yd6{bottom:262.906267pt;}
.yfb{bottom:262.907600pt;}
.y53{bottom:262.909067pt;}
.y9a{bottom:262.913733pt;}
.y74{bottom:262.913867pt;}
.yb9{bottom:262.915067pt;}
.y13a{bottom:262.918533pt;}
.yb8{bottom:281.560667pt;}
.y11c{bottom:281.566800pt;}
.y10c{bottom:281.568133pt;}
.yd5{bottom:281.569467pt;}
.y99{bottom:281.572933pt;}
.y73{bottom:281.573067pt;}
.yfa{bottom:281.580400pt;}
.y52{bottom:281.581867pt;}
.y51{bottom:300.227467pt;}
.y98{bottom:300.233467pt;}
.y72{bottom:300.233600pt;}
.yf9{bottom:300.239600pt;}
.y10b{bottom:300.240933pt;}
.yd4{bottom:300.242267pt;}
.yea{bottom:318.887867pt;}
.yf8{bottom:318.894000pt;}
.y10a{bottom:318.900133pt;}
.y50{bottom:318.900267pt;}
.y97{bottom:318.906267pt;}
.y71{bottom:318.906400pt;}
.y139{bottom:318.907600pt;}
.y33{bottom:318.912400pt;}
.yd3{bottom:318.915067pt;}
.yd2{bottom:337.560667pt;}
.y70{bottom:337.564800pt;}
.y96{bottom:337.566800pt;}
.y109{bottom:337.572933pt;}
.y4f{bottom:337.573067pt;}
.y147{bottom:337.575600pt;}
.yb7{bottom:337.579067pt;}
.y138{bottom:337.580400pt;}
.y32{bottom:337.585200pt;}
.y137{bottom:356.222533pt;}
.y4e{bottom:356.228800pt;}
.yd1{bottom:356.233467pt;}
.y108{bottom:356.234800pt;}
.y6f{bottom:356.237600pt;}
.y95{bottom:356.239600pt;}
.y146{bottom:356.248400pt;}
.yb6{bottom:356.251867pt;}
.yd{bottom:363.736937pt;}
.y31{bottom:374.894000pt;}
.y136{bottom:374.895333pt;}
.y94{bottom:374.901467pt;}
.y4d{bottom:374.901600pt;}
.ye9{bottom:374.902800pt;}
.yb5{bottom:374.906267pt;}
.y107{bottom:374.907600pt;}
.y6e{bottom:374.910400pt;}
.y6d{bottom:393.542400pt;}
.y30{bottom:393.566800pt;}
.y135{bottom:393.568133pt;}
.y93{bottom:393.574267pt;}
.y4c{bottom:393.574400pt;}
.ye8{bottom:393.575600pt;}
.y6c{bottom:412.215200pt;}
.y92{bottom:412.233467pt;}
.y4b{bottom:412.233600pt;}
.y145{bottom:412.234800pt;}
.y2f{bottom:412.239600pt;}
.y134{bottom:412.240933pt;}
.yb4{bottom:412.247067pt;}
.ye7{bottom:412.248400pt;}
.y6b{bottom:430.888000pt;}
.ye6{bottom:430.894000pt;}
.yf7{bottom:430.895333pt;}
.yd0{bottom:430.900133pt;}
.y91{bottom:430.906267pt;}
.y4a{bottom:430.906400pt;}
.y2e{bottom:430.907600pt;}
.y11b{bottom:430.912400pt;}
.y133{bottom:430.913733pt;}
.y6a{bottom:449.560800pt;}
.yb3{bottom:449.566800pt;}
.yf6{bottom:449.568133pt;}
.ycf{bottom:449.572933pt;}
.y90{bottom:449.573467pt;}
.y49{bottom:449.579200pt;}
.y2d{bottom:449.580400pt;}
.y11a{bottom:449.585200pt;}
.y119{bottom:468.227333pt;}
.y69{bottom:468.233600pt;}
.y132{bottom:468.234800pt;}
.y48{bottom:468.238800pt;}
.y2c{bottom:468.239600pt;}
.yce{bottom:468.240933pt;}
.y8f{bottom:468.246267pt;}
.y8e{bottom:486.851067pt;}
.ye5{bottom:486.894533pt;}
.y2b{bottom:486.900133pt;}
.y68{bottom:486.906400pt;}
.yb2{bottom:486.907600pt;}
.y47{bottom:486.911600pt;}
.ycd{bottom:486.913733pt;}
.y8d{bottom:505.523867pt;}
.y131{bottom:505.566800pt;}
.ye4{bottom:505.567333pt;}
.y2a{bottom:505.572933pt;}
.y67{bottom:505.574400pt;}
.yb1{bottom:505.580400pt;}
.y46{bottom:505.584400pt;}
.y8c{bottom:524.196667pt;}
.y45{bottom:524.202800pt;}
.ycc{bottom:524.228667pt;}
.yf5{bottom:524.233467pt;}
.y130{bottom:524.234000pt;}
.y29{bottom:524.234800pt;}
.yb0{bottom:524.239600pt;}
.ye3{bottom:524.240133pt;}
.y144{bottom:524.240933pt;}
.y66{bottom:524.247200pt;}
.yc{bottom:526.277223pt;}
.y8b{bottom:542.869467pt;}
.ye2{bottom:542.872133pt;}
.y44{bottom:542.875600pt;}
.y12f{bottom:542.893200pt;}
.yaf{bottom:542.900133pt;}
.ycb{bottom:542.901467pt;}
.yf4{bottom:542.906267pt;}
.y65{bottom:542.906400pt;}
.y28{bottom:542.907600pt;}
.y143{bottom:542.913733pt;}
.yb{bottom:549.881360pt;}
.y8a{bottom:561.542267pt;}
.y43{bottom:561.548400pt;}
.yf3{bottom:561.560667pt;}
.y118{bottom:561.563333pt;}
.y12e{bottom:561.566000pt;}
.y64{bottom:561.568267pt;}
.yae{bottom:561.572933pt;}
.yca{bottom:561.574267pt;}
.y106{bottom:561.579067pt;}
.y27{bottom:561.580400pt;}
.ya{bottom:562.126141pt;}
.ye1{bottom:580.204133pt;}
.y89{bottom:580.215067pt;}
.y42{bottom:580.221200pt;}
.yc9{bottom:580.233467pt;}
.y117{bottom:580.236133pt;}
.y12d{bottom:580.238800pt;}
.y26{bottom:580.239600pt;}
.y63{bottom:580.241067pt;}
.yad{bottom:580.245733pt;}
.y105{bottom:580.251867pt;}
.y9{bottom:585.967830pt;}
.y8{bottom:598.212611pt;}
.ye0{bottom:598.876933pt;}
.y88{bottom:598.887867pt;}
.y41{bottom:598.894000pt;}
.y62{bottom:598.900267pt;}
.yc8{bottom:598.906267pt;}
.y116{bottom:598.908933pt;}
.y12c{bottom:598.911600pt;}
.y25{bottom:598.912400pt;}
.yac{bottom:598.918533pt;}
.y7{bottom:610.457392pt;}
.y115{bottom:617.554533pt;}
.y12b{bottom:617.557200pt;}
.y87{bottom:617.560667pt;}
.y40{bottom:617.566800pt;}
.yc7{bottom:617.568133pt;}
.y61{bottom:617.573067pt;}
.y24{bottom:617.585200pt;}
.y6{bottom:622.702173pt;}
.y114{bottom:636.227333pt;}
.y12a{bottom:636.230000pt;}
.y86{bottom:636.233467pt;}
.y3f{bottom:636.239600pt;}
.yc6{bottom:636.240933pt;}
.y23{bottom:636.251867pt;}
.ydf{bottom:654.881733pt;}
.yab{bottom:654.900133pt;}
.y3e{bottom:654.901467pt;}
.y129{bottom:654.902800pt;}
.y85{bottom:654.906267pt;}
.y60{bottom:654.912400pt;}
.yc5{bottom:654.913733pt;}
.yde{bottom:673.554533pt;}
.y84{bottom:673.566800pt;}
.yaa{bottom:673.572933pt;}
.y3d{bottom:673.574267pt;}
.y128{bottom:673.575600pt;}
.y142{bottom:673.579067pt;}
.y5f{bottom:673.585200pt;}
.y5{bottom:679.758100pt;}
.ydd{bottom:692.227333pt;}
.yf2{bottom:692.233467pt;}
.ya9{bottom:692.234800pt;}
.y113{bottom:692.236133pt;}
.y5e{bottom:692.236267pt;}
.y83{bottom:692.239600pt;}
.yc4{bottom:692.240933pt;}
.y3c{bottom:692.247067pt;}
.y141{bottom:692.251867pt;}
.y4{bottom:697.920112pt;}
.y21{bottom:704.294800pt;}
.y82{bottom:710.895333pt;}
.y127{bottom:710.897200pt;}
.ydc{bottom:710.900133pt;}
.yf1{bottom:710.906267pt;}
.ya8{bottom:710.907600pt;}
.y112{bottom:710.908933pt;}
.y5d{bottom:710.909067pt;}
.yc3{bottom:710.913733pt;}
.y3b{bottom:710.919867pt;}
.y3{bottom:719.343079pt;}
.yf0{bottom:729.554533pt;}
.y5c{bottom:729.554667pt;}
.y81{bottom:729.568133pt;}
.y14d{bottom:729.571867pt;}
.yc2{bottom:729.572933pt;}
.y104{bottom:729.574267pt;}
.ya7{bottom:729.580400pt;}
.y20{bottom:733.630800pt;}
.y2{bottom:740.776845pt;}
.yef{bottom:748.227333pt;}
.y5b{bottom:748.227467pt;}
.yc1{bottom:748.233467pt;}
.ya6{bottom:748.239600pt;}
.y80{bottom:748.240933pt;}
.y14c{bottom:748.244667pt;}
.y103{bottom:748.247067pt;}
.y3a{bottom:748.251867pt;}
.y1f{bottom:762.966800pt;}
.y14b{bottom:766.890267pt;}
.ya5{bottom:766.900133pt;}
.y5a{bottom:766.900267pt;}
.y126{bottom:766.902000pt;}
.yc0{bottom:766.906267pt;}
.y7f{bottom:766.913733pt;}
.y39{bottom:766.918667pt;}
.y14a{bottom:785.563067pt;}
.ya4{bottom:785.572933pt;}
.y59{bottom:785.573067pt;}
.y125{bottom:785.574800pt;}
.y38{bottom:785.585333pt;}
.y7e{bottom:785.586533pt;}
.y149{bottom:804.235867pt;}
.ya3{bottom:804.245733pt;}
.y58{bottom:804.246933pt;}
.y124{bottom:804.247600pt;}
.ydb{bottom:804.248933pt;}
.y37{bottom:804.252000pt;}
.y148{bottom:822.908667pt;}
.y123{bottom:822.909467pt;}
.y7d{bottom:822.918533pt;}
.y22{bottom:822.918667pt;}
.y57{bottom:822.919733pt;}
.yda{bottom:822.921733pt;}
.h9{height:22.403414pt;}
.h7{height:25.603901pt;}
.h8{height:25.707561pt;}
.hc{height:28.804389pt;}
.h21{height:31.957333pt;}
.h6{height:32.004877pt;}
.ha{height:32.134451pt;}
.h10{height:34.240000pt;}
.h5{height:35.205364pt;}
.hb{height:35.845462pt;}
.hf{height:36.520000pt;}
.h13{height:38.406400pt;}
.h22{height:41.996800pt;}
.h2a{height:42.051200pt;}
.h19{height:43.520000pt;}
.h12{height:44.208000pt;}
.h3{height:44.806828pt;}
.h4{height:44.988232pt;}
.h14{height:45.260800pt;}
.h16{height:45.280000pt;}
.h15{height:45.315200pt;}
.h18{height:45.587200pt;}
.h26{height:45.595733pt;}
.h1d{height:45.601067pt;}
.h1f{height:45.606400pt;}
.h23{height:45.609600pt;}
.h24{height:45.611733pt;}
.h1e{height:45.612267pt;}
.h1b{height:45.640000pt;}
.h1a{height:45.641600pt;}
.h20{height:45.644800pt;}
.h29{height:45.650133pt;}
.h1c{height:45.655467pt;}
.h25{height:45.658667pt;}
.h28{height:45.660800pt;}
.h27{height:45.696000pt;}
.h17{height:54.536533pt;}
.h11{height:93.834667pt;}
.hd{height:907.301333pt;}
.he{height:907.333333pt;}
.h2{height:909.061597pt;}
.h1{height:909.333333pt;}
.h0{height:909.600000pt;}
.w1{width:642.666667pt;}
.w2{width:642.772533pt;}
.w0{width:642.773333pt;}
.x0{left:0.000000pt;}
.x3{left:33.667748pt;}
.x5{left:38.381200pt;}
.x1{left:39.790139pt;}
.x6{left:74.367867pt;}
.x7{left:75.312800pt;}
.xc{left:82.614133pt;}
.x12{left:85.706533pt;}
.xe{left:89.491067pt;}
.x2{left:107.125635pt;}
.x8{left:242.871867pt;}
.x4{left:315.265313pt;}
.xf{left:326.050000pt;}
.xd{left:333.955733pt;}
.x11{left:345.295067pt;}
.xb{left:390.148200pt;}
.xa{left:522.044400pt;}
.x9{left:591.561333pt;}
.x10{left:593.070933pt;}
}




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