
    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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0ee8e19521ba49a99b092383.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_17f0df3603e6d56998fdda51.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a51f39b6d6c88627c7f44ef5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ff696b9f887025acc7c3366.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_68e2d5a3cd46a96558577674.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-39.240000px;}
.v2{vertical-align:-15.117000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.200520px;}
.ls1e{letter-spacing:-0.685368px;}
.ls16{letter-spacing:-0.144288px;}
.ls26{letter-spacing:-0.078156px;}
.ls35{letter-spacing:-0.072144px;}
.ls30{letter-spacing:-0.066132px;}
.ls2b{letter-spacing:-0.060120px;}
.ls23{letter-spacing:-0.054108px;}
.ls1f{letter-spacing:-0.048096px;}
.ls13{letter-spacing:-0.042084px;}
.ls28{letter-spacing:-0.036072px;}
.ls1d{letter-spacing:-0.030060px;}
.ls20{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.018036px;}
.ls22{letter-spacing:-0.012024px;}
.ls24{letter-spacing:-0.006012px;}
.ls34{letter-spacing:-0.003888px;}
.ls11{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.012024px;}
.ls32{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.018036px;}
.ls31{letter-spacing:0.021600px;}
.lse{letter-spacing:0.024048px;}
.ls2d{letter-spacing:0.027000px;}
.lsb{letter-spacing:0.030060px;}
.ls9{letter-spacing:0.036072px;}
.ls8{letter-spacing:0.042084px;}
.lsf{letter-spacing:0.048096px;}
.ls2f{letter-spacing:0.048600px;}
.ls12{letter-spacing:0.050328px;}
.ls2c{letter-spacing:0.054000px;}
.ls6{letter-spacing:0.054108px;}
.ls17{letter-spacing:0.060120px;}
.ls10{letter-spacing:0.066132px;}
.ls4{letter-spacing:0.072144px;}
.ls1{letter-spacing:0.078156px;}
.lsa{letter-spacing:0.084168px;}
.ls5{letter-spacing:0.090180px;}
.ls0{letter-spacing:0.092268px;}
.ls18{letter-spacing:0.096192px;}
.ls3{letter-spacing:0.102204px;}
.ls7{letter-spacing:0.108216px;}
.lsd{letter-spacing:0.114228px;}
.ls2{letter-spacing:0.120240px;}
.ls29{letter-spacing:0.126252px;}
.ls2a{letter-spacing:0.132264px;}
.ls2e{letter-spacing:0.138276px;}
.ls33{letter-spacing:0.144288px;}
.ls27{letter-spacing:0.150300px;}
.ls25{letter-spacing:0.156312px;}
.ls1b{letter-spacing:0.177000px;}
.ls1a{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.180360px;}
.ls1c{letter-spacing:0.197280px;}
.ls36{letter-spacing:0.492984px;}
.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;}
}
.ws3f{word-spacing:-15.210360px;}
.ws5d{word-spacing:-15.090120px;}
.ws5b{word-spacing:-15.078096px;}
.ws5c{word-spacing:-15.072084px;}
.ws28{word-spacing:-15.066072px;}
.ws5e{word-spacing:-15.054048px;}
.ws4c{word-spacing:-15.042024px;}
.ws5a{word-spacing:-15.036012px;}
.ws61{word-spacing:-15.017976px;}
.ws0{word-spacing:-14.885712px;}
.ws1{word-spacing:-1.530000px;}
.ws46{word-spacing:-0.619236px;}
.ws58{word-spacing:-0.396792px;}
.ws3b{word-spacing:-0.372744px;}
.ws4b{word-spacing:-0.366732px;}
.ws3a{word-spacing:-0.360720px;}
.ws48{word-spacing:-0.348696px;}
.ws42{word-spacing:-0.342684px;}
.ws4a{word-spacing:-0.336672px;}
.ws49{word-spacing:-0.330660px;}
.ws34{word-spacing:-0.324648px;}
.ws47{word-spacing:-0.318636px;}
.ws45{word-spacing:-0.312624px;}
.ws44{word-spacing:-0.300600px;}
.ws35{word-spacing:-0.294588px;}
.ws33{word-spacing:-0.282564px;}
.ws59{word-spacing:-0.270540px;}
.ws57{word-spacing:-0.216432px;}
.ws3{word-spacing:-0.184536px;}
.ws3e{word-spacing:-0.066132px;}
.ws60{word-spacing:-0.060120px;}
.ws5f{word-spacing:-0.054108px;}
.ws54{word-spacing:-0.048096px;}
.ws4f{word-spacing:-0.042084px;}
.ws40{word-spacing:-0.036072px;}
.ws6{word-spacing:-0.030060px;}
.ws20{word-spacing:-0.024048px;}
.ws36{word-spacing:-0.018036px;}
.ws31{word-spacing:-0.012024px;}
.ws2b{word-spacing:-0.006012px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.006012px;}
.ws4{word-spacing:0.012024px;}
.ws26{word-spacing:0.018036px;}
.ws27{word-spacing:0.024048px;}
.ws29{word-spacing:0.030060px;}
.ws2a{word-spacing:0.036072px;}
.ws23{word-spacing:0.042084px;}
.ws24{word-spacing:0.048096px;}
.ws14{word-spacing:0.054108px;}
.ws25{word-spacing:0.060120px;}
.ws2d{word-spacing:0.066132px;}
.ws8{word-spacing:0.072144px;}
.ws2c{word-spacing:0.078156px;}
.ws30{word-spacing:0.084168px;}
.ws2f{word-spacing:0.090180px;}
.ws3d{word-spacing:0.096192px;}
.ws39{word-spacing:0.102204px;}
.ws38{word-spacing:0.108216px;}
.ws37{word-spacing:0.114228px;}
.ws2e{word-spacing:0.120240px;}
.ws51{word-spacing:0.124200px;}
.ws43{word-spacing:0.126252px;}
.ws55{word-spacing:0.129600px;}
.ws7{word-spacing:0.132264px;}
.ws32{word-spacing:0.138276px;}
.ws3c{word-spacing:0.144288px;}
.ws4d{word-spacing:0.150300px;}
.ws53{word-spacing:0.151200px;}
.ws50{word-spacing:0.156312px;}
.ws52{word-spacing:0.156600px;}
.ws56{word-spacing:0.162000px;}
.ws41{word-spacing:0.168336px;}
.wsc{word-spacing:2.519028px;}
.ws11{word-spacing:3.961908px;}
.ws10{word-spacing:4.304592px;}
.ws1f{word-spacing:4.376736px;}
.ws1e{word-spacing:4.406796px;}
.ws22{word-spacing:5.026032px;}
.wsb{word-spacing:5.056092px;}
.ws21{word-spacing:5.464908px;}
.wsa{word-spacing:5.747472px;}
.ws18{word-spacing:5.777532px;}
.ws1a{word-spacing:6.535044px;}
.ws9{word-spacing:6.853680px;}
.ws17{word-spacing:6.883740px;}
.ws19{word-spacing:6.901776px;}
.ws16{word-spacing:7.208388px;}
.ws1d{word-spacing:8.290548px;}
.ws1c{word-spacing:9.348660px;}
.wsf{word-spacing:9.402768px;}
.wsd{word-spacing:9.733428px;}
.wse{word-spacing:9.757476px;}
.ws12{word-spacing:11.567088px;}
.ws13{word-spacing:11.585124px;}
.ws15{word-spacing:15.829596px;}
.ws1b{word-spacing:21.979872px;}
.ws4e{word-spacing:452.511216px;}
._8{margin-left:-452.852472px;}
._4{margin-left:-10.449000px;}
._0{margin-left:-1.509840px;}
._1{width:1.082160px;}
._3{width:2.705400px;}
._5{width:17.374680px;}
._2{width:43.642056px;}
._7{width:65.218176px;}
._c{width:73.043400px;}
._9{width:97.775424px;}
._6{width:111.202980px;}
._a{width:114.114420px;}
._13{width:123.685183px;}
._11{width:134.622583px;}
._d{width:146.258527px;}
._e{width:150.416189px;}
._f{width:165.195389px;}
._12{width:167.601617px;}
._b{width:173.253816px;}
._14{width:349.667400px;}
._10{width:555.958200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs3{font-size:6.120000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:43.749600px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y27{bottom:65.460150px;}
.yb8{bottom:118.547130px;}
.y97{bottom:118.553880px;}
.y4d{bottom:118.558650px;}
.y72{bottom:118.559850px;}
.y250{bottom:121.165050px;}
.y1a6{bottom:122.238630px;}
.y13c{bottom:127.193880px;}
.y1d8{bottom:128.794710px;}
.yd2{bottom:129.170700px;}
.y26{bottom:130.786980px;}
.y127{bottom:134.641830px;}
.yf2{bottom:134.915310px;}
.y15f{bottom:135.365010px;}
.yb7{bottom:144.383700px;}
.y96{bottom:145.110450px;}
.y1a5{bottom:148.075200px;}
.y94{bottom:148.889700px;}
.y217{bottom:150.376140px;}
.y95{bottom:151.140450px;}
.y13b{bottom:153.030450px;}
.y4c{bottom:153.377130px;}
.y71{bottom:154.110450px;}
.y1d7{bottom:154.631280px;}
.yd1{bottom:155.097450px;}
.y24f{bottom:155.989530px;}
.y25{bottom:156.713730px;}
.y6f{bottom:157.889700px;}
.y1c1{bottom:159.388680px;}
.y70{bottom:160.140450px;}
.y126{bottom:160.478400px;}
.yf1{bottom:160.751880px;}
.y15e{bottom:161.201580px;}
.yb6{bottom:171.030450px;}
.yb4{bottom:174.809850px;}
.y216{bottom:176.302890px;}
.yb5{bottom:177.060450px;}
.y4b{bottom:179.303880px;}
.y1d6{bottom:180.558030px;}
.y24e{bottom:181.826100px;}
.y24{bottom:182.550300px;}
.y1a4{bottom:182.953770px;}
.y73{bottom:183.795870px;}
.y103{bottom:183.810000px;}
.y93{bottom:183.810450px;}
.y1c0{bottom:185.315430px;}
.y125{bottom:186.405150px;}
.yf0{bottom:186.678630px;}
.y15d{bottom:187.128330px;}
.y13a{bottom:187.680600px;}
.yd0{bottom:189.921900px;}
.y6e{bottom:192.798150px;}
.y1f3{bottom:202.103850px;}
.y215{bottom:202.139460px;}
.y4a{bottom:205.860450px;}
.y1d5{bottom:206.394600px;}
.y1a3{bottom:208.790340px;}
.yb3{bottom:209.633250px;}
.y48{bottom:209.639700px;}
.y1bf{bottom:211.152000px;}
.y49{bottom:211.890450px;}
.yef{bottom:212.515200px;}
.y15c{bottom:212.964900px;}
.ycf{bottom:215.848650px;}
.y24d{bottom:216.734730px;}
.y23{bottom:217.279350px;}
.y124{bottom:221.175450px;}
.y139{bottom:223.673100px;}
.y1f2{bottom:228.030600px;}
.y214{bottom:228.066210px;}
.y102{bottom:231.330450px;}
.y1a2{bottom:234.626910px;}
.y1be{bottom:237.078750px;}
.yb2{bottom:240.665730px;}
.y1d4{bottom:241.134900px;}
.y24c{bottom:242.571300px;}
.y47{bottom:244.560450px;}
.y28{bottom:244.562160px;}
.y123{bottom:247.102200px;}
.yee{bottom:247.255650px;}
.y15b{bottom:247.855440px;}
.y6d{bottom:248.309880px;}
.yce{bottom:251.752350px;}
.y22{bottom:253.369350px;}
.y1f1{bottom:253.867170px;}
.y213{bottom:253.902780px;}
.y138{bottom:259.763100px;}
.y1a1{bottom:260.553660px;}
.y101{bottom:262.920450px;}
.yb1{bottom:266.592480px;}
.y92{bottom:267.312150px;}
.y24b{bottom:268.498050px;}
.y1bd{bottom:271.909200px;}
.y122{bottom:272.938770px;}
.y15a{bottom:273.692010px;}
.y6c{bottom:274.236630px;}
.y1d3{bottom:277.225050px;}
.ycd{bottom:277.679100px;}
.y1f0{bottom:279.793920px;}
.y212{bottom:279.829530px;}
.yed{bottom:283.315560px;}
.y1a0{bottom:286.390230px;}
.y21{bottom:288.193800px;}
.yb0{bottom:292.429050px;}
.y91{bottom:293.238900px;}
.y137{bottom:294.631260px;}
.y121{bottom:298.775340px;}
.y159{bottom:299.618760px;}
.y6b{bottom:300.073200px;}
.y24a{bottom:303.322650px;}
.y1ef{bottom:305.630490px;}
.y211{bottom:305.666100px;}
.y1bc{bottom:307.779810px;}
.yec{bottom:309.242310px;}
.y1d2{bottom:312.105030px;}
.y19f{bottom:312.316980px;}
.ycc{bottom:313.582800px;}
.y20{bottom:314.120550px;}
.yaf{bottom:318.355800px;}
.y136{bottom:320.467830px;}
.y46{bottom:321.330000px;}
.y120{bottom:324.702090px;}
.y158{bottom:325.455330px;}
.y6a{bottom:325.999950px;}
.y90{bottom:328.051380px;}
.y249{bottom:329.249400px;}
.y1ee{bottom:331.467060px;}
.y1bb{bottom:333.706560px;}
.yeb{bottom:335.078880px;}
.y1d1{bottom:337.941600px;}
.y19e{bottom:338.153550px;}
.ycb{bottom:339.509550px;}
.y1f{bottom:339.951150px;}
.y210{bottom:340.480140px;}
.y135{bottom:346.394580px;}
.y11f{bottom:350.538660px;}
.y157{bottom:351.382080px;}
.yae{bottom:353.162310px;}
.y8f{bottom:353.978130px;}
.y45{bottom:356.110320px;}
.y1ed{bottom:357.393810px;}
.y1ba{bottom:359.543130px;}
.y69{bottom:360.788520px;}
.yea{bottom:361.005630px;}
.y1d0{bottom:363.778170px;}
.y248{bottom:364.073850px;}
.y19d{bottom:364.080300px;}
.y1e{bottom:365.837400px;}
.y20f{bottom:366.406890px;}
.y134{bottom:372.231150px;}
.yca{bottom:374.340000px;}
.y11e{bottom:376.465410px;}
.y156{bottom:377.218650px;}
.yad{bottom:379.089060px;}
.y8e{bottom:379.814700px;}
.y1ec{bottom:383.230380px;}
.y1b9{bottom:385.469880px;}
.y44{bottom:386.531040px;}
.y68{bottom:386.625090px;}
.ye9{bottom:386.842200px;}
.y1cf{bottom:389.704920px;}
.y247{bottom:390.000000px;}
.y1d{bottom:391.673970px;}
.y20e{bottom:392.243460px;}
.y133{bottom:398.157900px;}
.y19c{bottom:398.730450px;}
.y11d{bottom:402.301980px;}
.yac{bottom:404.925630px;}
.y8d{bottom:405.741450px;}
.yc9{bottom:409.080450px;}
.y1eb{bottom:409.157130px;}
.y1b8{bottom:411.306450px;}
.y155{bottom:412.139400px;}
.y43{bottom:412.367610px;}
.y67{bottom:412.551840px;}
.ye8{bottom:412.768950px;}
.y1ce{bottom:415.541490px;}
.y1c{bottom:417.600720px;}
.y20d{bottom:418.155180px;}
.y132{bottom:423.994470px;}
.y246{bottom:424.829700px;}
.y11c{bottom:428.228730px;}
.yab{bottom:430.852380px;}
.y19b{bottom:434.332020px;}
.y1ea{bottom:434.993700px;}
.y1b7{bottom:437.233200px;}
.y42{bottom:438.294360px;}
.y66{bottom:438.388410px;}
.y8c{bottom:440.391600px;}
.yc8{bottom:440.670450px;}
.y1cd{bottom:441.468240px;}
.y1b{bottom:443.437290px;}
.y20c{bottom:443.991750px;}
.y154{bottom:446.969850px;}
.ye7{bottom:447.593430px;}
.y185{bottom:448.948650px;}
.y131{bottom:449.921220px;}
.y11b{bottom:454.065300px;}
.yaa{bottom:456.688950px;}
.y245{bottom:459.747600px;}
.y19a{bottom:460.424100px;}
.y1b6{bottom:463.069770px;}
.y41{bottom:464.130930px;}
.y65{bottom:464.315160px;}
.y1cc{bottom:467.304810px;}
.y1a{bottom:469.364040px;}
.y1e9{bottom:469.914450px;}
.y20b{bottom:469.918500px;}
.ye6{bottom:473.430000px;}
.y130{bottom:475.757790px;}
.y8b{bottom:476.531130px;}
.y11a{bottom:479.992050px;}
.y153{bottom:482.969700px;}
.y184{bottom:483.864840px;}
.y199{bottom:486.260670px;}
.y1b5{bottom:488.996520px;}
.y40{bottom:490.057680px;}
.y64{bottom:490.151730px;}
.ya9{bottom:491.519400px;}
.y1cb{bottom:493.231560px;}
.y244{bottom:494.572200px;}
.y19{bottom:495.200610px;}
.y12f{bottom:501.684540px;}
.y8a{bottom:502.367700px;}
.y20a{bottom:504.738540px;}
.y1e8{bottom:505.809150px;}
.ye5{bottom:508.343280px;}
.y183{bottom:509.701410px;}
.y100{bottom:511.404000px;}
.y198{bottom:512.187420px;}
.y119{bottom:514.809060px;}
.y22d{bottom:514.822680px;}
.y1b4{bottom:514.833090px;}
.y3f{bottom:515.894250px;}
.y63{bottom:516.078480px;}
.y152{bottom:517.800300px;}
.y1ca{bottom:519.068130px;}
.y243{bottom:520.498950px;}
.y18{bottom:521.127360px;}
.ya8{bottom:527.513280px;}
.y12e{bottom:527.521110px;}
.y89{bottom:528.279420px;}
.y209{bottom:530.650260px;}
.y1e7{bottom:531.720870px;}
.ye4{bottom:534.179850px;}
.y182{bottom:535.613130px;}
.y197{bottom:538.023990px;}
.y118{bottom:540.720780px;}
.y22c{bottom:540.734400px;}
.y1b3{bottom:540.744810px;}
.y3e{bottom:541.821000px;}
.y62{bottom:541.915050px;}
.y1c9{bottom:544.979850px;}
.yff{bottom:546.270600px;}
.y17{bottom:546.963930px;}
.y151{bottom:552.450450px;}
.ya7{bottom:553.349850px;}
.y12d{bottom:553.432830px;}
.y88{bottom:554.115990px;}
.y242{bottom:555.336930px;}
.y208{bottom:556.486830px;}
.y1e6{bottom:557.557440px;}
.y181{bottom:561.449700px;}
.y196{bottom:563.950740px;}
.y117{bottom:566.557350px;}
.y22b{bottom:566.570970px;}
.y1b2{bottom:566.581380px;}
.ye3{bottom:570.167580px;}
.yfe{bottom:572.107170px;}
.y16{bottom:572.875650px;}
.y25f{bottom:574.409700px;}
.y3d{bottom:576.615390px;}
.y61{bottom:576.813120px;}
.y12c{bottom:579.269400px;}
.y1c8{bottom:579.810450px;}
.y87{bottom:580.042740px;}
.y241{bottom:581.248650px;}
.y207{bottom:582.413580px;}
.y1e5{bottom:583.469160px;}
.y14e{bottom:588.352680px;}
.ya6{bottom:589.349700px;}
.y195{bottom:589.787310px;}
.y116{bottom:592.469070px;}
.y22a{bottom:592.482690px;}
.y1b1{bottom:592.493100px;}
.ye2{bottom:596.004150px;}
.y180{bottom:596.370450px;}
.yfd{bottom:598.033920px;}
.y15{bottom:598.706100px;}
.y3c{bottom:602.542140px;}
.y60{bottom:602.649690px;}
.y86{bottom:605.879310px;}
.y206{bottom:608.250150px;}
.y1e4{bottom:609.305730px;}
.y25e{bottom:609.330000px;}
.y14d{bottom:614.189250px;}
.y12b{bottom:614.190000px;}
.y194{bottom:615.699030px;}
.y1c7{bottom:615.810300px;}
.y240{bottom:616.086630px;}
.y115{bottom:618.305640px;}
.y229{bottom:618.319260px;}
.ye1{bottom:621.930900px;}
.yfc{bottom:623.870490px;}
.y14{bottom:624.592230px;}
.ya5{bottom:625.266930px;}
.y1b0{bottom:627.299610px;}
.y3b{bottom:628.378710px;}
.y5f{bottom:628.561410px;}
.y17f{bottom:630.205950px;}
.y85{bottom:631.806060px;}
.y170{bottom:633.714750px;}
.y1e3{bottom:635.232480px;}
.y193{bottom:641.535600px;}
.y23f{bottom:641.998350px;}
.y205{bottom:642.983400px;}
.y25d{bottom:644.160450px;}
.y114{bottom:644.217360px;}
.y228{bottom:644.230980px;}
.y12a{bottom:648.840300px;}
.y150{bottom:649.102380px;}
.y14c{bottom:649.103880px;}
.yfb{bottom:649.797240px;}
.y13{bottom:650.428800px;}
.y1c6{bottom:650.460450px;}
.ya4{bottom:651.178650px;}
.y1af{bottom:653.226360px;}
.y17e{bottom:653.425950px;}
.y3a{bottom:654.305460px;}
.y5e{bottom:654.397980px;}
.y84{bottom:657.642630px;}
.ye0{bottom:657.848130px;}
.y1e2{bottom:661.069050px;}
.y192{bottom:667.462350px;}
.y16f{bottom:668.545200px;}
.y113{bottom:670.053930px;}
.y227{bottom:670.067550px;}
.y25c{bottom:670.077300px;}
.y14f{bottom:674.938950px;}
.y14b{bottom:674.940450px;}
.yfa{bottom:675.633810px;}
.y12{bottom:676.355550px;}
.y17d{bottom:676.740450px;}
.y23e{bottom:676.836480px;}
.y204{bottom:679.058430px;}
.y1ae{bottom:679.062930px;}
.y39{bottom:680.142030px;}
.y5d{bottom:680.324730px;}
.y129{bottom:680.520450px;}
.y83{bottom:683.569380px;}
.ydf{bottom:683.759850px;}
.y1e1{bottom:686.995800px;}
.ya3{bottom:687.088350px;}
.yc7{bottom:689.125500px;}
.y1c5{bottom:693.660450px;}
.y112{bottom:695.980680px;}
.y226{bottom:695.994300px;}
.yf9{bottom:701.560560px;}
.y11{bottom:702.192120px;}
.y191{bottom:702.292950px;}
.y23d{bottom:702.748200px;}
.y16e{bottom:703.467510px;}
.y25b{bottom:704.895780px;}
.y203{bottom:704.985180px;}
.y1ad{bottom:704.989680px;}
.y38{bottom:706.068780px;}
.y5c{bottom:706.161300px;}
.y82{bottom:709.405950px;}
.y17c{bottom:710.039550px;}
.y14a{bottom:710.571630px;}
.y147{bottom:710.579250px;}
.yc6{bottom:715.052250px;}
.yde{bottom:719.671110px;}
.y111{bottom:721.817250px;}
.y1e0{bottom:721.826250px;}
.ya2{bottom:723.088200px;}
.yf8{bottom:727.397130px;}
.y10{bottom:728.103840px;}
.y16d{bottom:729.304080px;}
.y202{bottom:730.821750px;}
.y25a{bottom:730.822530px;}
.y1ac{bottom:730.826250px;}
.y225{bottom:730.827870px;}
.y1c4{bottom:730.920450px;}
.y37{bottom:731.905350px;}
.y5b{bottom:732.088050px;}
.y149{bottom:736.408200px;}
.y190{bottom:737.195460px;}
.y23c{bottom:737.572650px;}
.yc5{bottom:740.888820px;}
.y81{bottom:744.146400px;}
.y17b{bottom:744.961710px;}
.y146{bottom:745.403700px;}
.ydd{bottom:745.582830px;}
.y110{bottom:747.744000px;}
.y1c3{bottom:751.620450px;}
.yf7{bottom:753.323880px;}
.yf{bottom:753.940410px;}
.y16c{bottom:755.215800px;}
.y259{bottom:756.659100px;}
.y201{bottom:756.733470px;}
.y224{bottom:756.739590px;}
.y1df{bottom:757.826100px;}
.ya1{bottom:758.997900px;}
.y18f{bottom:763.032030px;}
.y23b{bottom:763.499400px;}
.y1ab{bottom:765.747000px;}
.y5a{bottom:766.738200px;}
.y36{bottom:766.800570px;}
.yc4{bottom:766.815570px;}
.y17a{bottom:770.798280px;}
.y148{bottom:771.328950px;}
.y145{bottom:771.330450px;}
.ydc{bottom:771.419400px;}
.y80{bottom:779.151240px;}
.yf6{bottom:779.158170px;}
.ye{bottom:779.867160px;}
.y10f{bottom:782.527980px;}
.y200{bottom:782.570040px;}
.y223{bottom:782.576160px;}
.y1c2{bottom:783.656700px;}
.y18e{bottom:788.958780px;}
.y16b{bottom:790.046250px;}
.y258{bottom:791.497230px;}
.y35{bottom:792.637140px;}
.yc3{bottom:792.652140px;}
.y1de{bottom:792.653700px;}
.ya0{bottom:794.973690px;}
.y179{bottom:796.710000px;}
.y23a{bottom:798.330000px;}
.y1aa{bottom:801.625020px;}
.y59{bottom:802.897410px;}
.y7f{bottom:804.987810px;}
.yd{bottom:805.703730px;}
.y144{bottom:806.963130px;}
.ydb{bottom:807.405690px;}
.y10e{bottom:808.439700px;}
.y1ff{bottom:808.481760px;}
.y222{bottom:808.487880px;}
.yf5{bottom:809.488710px;}
.y18d{bottom:814.795350px;}
.y257{bottom:817.408950px;}
.y34{bottom:818.473710px;}
.yc2{bottom:818.488710px;}
.y1dd{bottom:818.490270px;}
.y9f{bottom:820.810260px;}
.y16a{bottom:824.938500px;}
.y1a9{bottom:827.461590px;}
.y58{bottom:828.733980px;}
.y7e{bottom:830.899530px;}
.yc{bottom:831.540300px;}
.y178{bottom:831.540600px;}
.y143{bottom:832.799700px;}
.y239{bottom:833.160450px;}
.yda{bottom:833.242260px;}
.y10d{bottom:834.276270px;}
.y1fe{bottom:834.318330px;}
.y221{bottom:834.324450px;}
.yf4{bottom:835.400430px;}
.y142{bottom:841.793700px;}
.y33{bottom:844.385430px;}
.yc1{bottom:844.400430px;}
.y1dc{bottom:844.401990px;}
.y9e{bottom:846.646830px;}
.y18c{bottom:849.716100px;}
.y169{bottom:850.775070px;}
.y256{bottom:852.240960px;}
.y1a8{bottom:853.373310px;}
.y57{bottom:854.660730px;}
.y7d{bottom:856.736100px;}
.yb{bottom:857.459550px;}
.y238{bottom:859.076700px;}
.yd9{bottom:859.169010px;}
.y10c{bottom:860.112840px;}
.y1fd{bottom:860.154900px;}
.yf3{bottom:861.237000px;}
.y177{bottom:865.371450px;}
.y141{bottom:867.720450px;}
.y220{bottom:869.106870px;}
.y32{bottom:870.222000px;}
.yc0{bottom:870.237000px;}
.y1db{bottom:870.238560px;}
.y9d{bottom:872.573580px;}
.y168{bottom:876.701820px;}
.y255{bottom:878.152680px;}
.y1a7{bottom:879.209880px;}
.y56{bottom:880.497300px;}
.ya{bottom:883.290150px;}
.y18b{bottom:884.540700px;}
.yd8{bottom:885.005580px;}
.y10b{bottom:886.039590px;}
.y176{bottom:888.685950px;}
.y7c{bottom:891.646290px;}
.y237{bottom:893.907150px;}
.y1fc{bottom:895.033470px;}
.y21f{bottom:895.033620px;}
.y31{bottom:896.133720px;}
.y1da{bottom:896.150280px;}
.y9c{bottom:898.410150px;}
.y167{bottom:902.538390px;}
.y140{bottom:903.267000px;}
.y254{bottom:903.989250px;}
.ybf{bottom:905.121600px;}
.y55{bottom:906.333870px;}
.y9{bottom:909.209400px;}
.y18a{bottom:910.467450px;}
.yd7{bottom:910.842150px;}
.y10a{bottom:911.876160px;}
.y175{bottom:912.000450px;}
.y7b{bottom:917.482860px;}
.y1fb{bottom:920.870040px;}
.y21e{bottom:920.870190px;}
.y30{bottom:921.970290px;}
.y1d9{bottom:921.986850px;}
.y166{bottom:928.465140px;}
.y236{bottom:928.815930px;}
.ybe{bottom:930.958170px;}
.y54{bottom:932.245590px;}
.y9b{bottom:933.148650px;}
.yd6{bottom:936.753870px;}
.y109{bottom:937.802910px;}
.y253{bottom:938.903880px;}
.y13f{bottom:938.907600px;}
.y7a{bottom:943.409610px;}
.y8{bottom:944.039850px;}
.y174{bottom:945.294150px;}
.y189{bottom:945.297900px;}
.y1fa{bottom:946.796790px;}
.y21d{bottom:946.796940px;}
.y2f{bottom:947.897040px;}
.y165{bottom:954.301710px;}
.y235{bottom:954.652500px;}
.ybd{bottom:956.884920px;}
.y53{bottom:958.082160px;}
.yd5{bottom:962.590440px;}
.y108{bottom:963.639480px;}
.y252{bottom:964.730550px;}
.y9a{bottom:969.240210px;}
.y79{bottom:969.246180px;}
.y7{bottom:969.960600px;}
.y1f9{bottom:972.633360px;}
.y21c{bottom:972.633510px;}
.y2e{bottom:973.733610px;}
.y13e{bottom:973.739610px;}
.y173{bottom:980.132130px;}
.y188{bottom:980.135880px;}
.y164{bottom:980.138280px;}
.y234{bottom:980.579250px;}
.ybc{bottom:982.721490px;}
.y52{bottom:983.993880px;}
.yd4{bottom:988.502160px;}
.y107{bottom:989.566230px;}
.y251{bottom:990.657300px;}
.y99{bottom:995.151930px;}
.y78{bottom:995.157900px;}
.y6{bottom:995.791200px;}
.y1f8{bottom:998.560110px;}
.y21b{bottom:998.560260px;}
.y2d{bottom:999.645330px;}
.y13d{bottom:999.651330px;}
.y172{bottom:1006.043850px;}
.y187{bottom:1006.047600px;}
.y163{bottom:1006.050000px;}
.ybb{bottom:1008.633210px;}
.y51{bottom:1009.829730px;}
.yd3{bottom:1014.338730px;}
.y106{bottom:1015.402800px;}
.y233{bottom:1015.403700px;}
.y98{bottom:1020.988500px;}
.y5{bottom:1021.710450px;}
.y1f7{bottom:1024.396680px;}
.y21a{bottom:1024.396830px;}
.y2c{bottom:1025.481900px;}
.y128{bottom:1025.487900px;}
.y77{bottom:1029.970380px;}
.yba{bottom:1034.469780px;}
.y50{bottom:1040.250450px;}
.y171{bottom:1040.874450px;}
.y186{bottom:1040.878200px;}
.y162{bottom:1040.880450px;}
.y230{bottom:1041.323580px;}
.y105{bottom:1041.329550px;}
.y232{bottom:1042.050450px;}
.y231{bottom:1048.080450px;}
.y1f6{bottom:1050.323430px;}
.y219{bottom:1050.323580px;}
.y2b{bottom:1051.408650px;}
.y76{bottom:1055.897130px;}
.yb9{bottom:1060.396530px;}
.y4{bottom:1061.032350px;}
.y22f{bottom:1067.160150px;}
.y4f{bottom:1074.900600px;}
.y104{bottom:1075.979700px;}
.y1f5{bottom:1076.160000px;}
.y218{bottom:1076.160150px;}
.y161{bottom:1076.513250px;}
.y75{bottom:1081.733700px;}
.y2a{bottom:1086.233100px;}
.y3{bottom:1097.310450px;}
.y22e{bottom:1101.900450px;}
.y160{bottom:1102.440000px;}
.y74{bottom:1107.659850px;}
.y4e{bottom:1110.900450px;}
.y1f4{bottom:1111.080750px;}
.y29{bottom:1112.159850px;}
.y2{bottom:1137.990450px;}
.y1{bottom:1175.070450px;}
.h6{height:38.158594px;}
.h13{height:44.091394px;}
.h12{height:52.998047px;}
.h7{height:56.124492px;}
.h9{height:58.975137px;}
.h2{height:59.004492px;}
.h10{height:59.006292px;}
.h17{height:59.006892px;}
.h16{height:59.007492px;}
.h15{height:59.015892px;}
.h18{height:59.026092px;}
.he{height:59.033292px;}
.h19{height:59.044092px;}
.hb{height:59.053692px;}
.h8{height:60.589687px;}
.hd{height:60.596888px;}
.h14{height:60.617887px;}
.h11{height:60.619088px;}
.h4{height:60.634687px;}
.h1{height:75.093750px;}
.hc{height:77.006892px;}
.ha{height:77.007372px;}
.hf{height:77.013612px;}
.h5{height:77.205012px;}
.h3{height:84.535312px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x5{left:106.290000px;}
.x18{left:126.269550px;}
.x3{left:131.400000px;}
.x11{left:133.285530px;}
.xa{left:138.690150px;}
.xf{left:149.489700px;}
.x1c{left:160.289250px;}
.x2{left:170.100000px;}
.xd{left:178.560000px;}
.x10{left:183.420000px;}
.xe{left:185.850000px;}
.x9{left:191.340300px;}
.x20{left:228.150000px;}
.x7{left:235.620150px;}
.x16{left:255.510750px;}
.x14{left:265.140150px;}
.x21{left:271.260000px;}
.x1f{left:274.590000px;}
.x19{left:292.320000px;}
.x13{left:304.019700px;}
.x1d{left:316.437300px;}
.x1b{left:319.230000px;}
.xc{left:322.290000px;}
.x8{left:333.089700px;}
.x6{left:342.809550px;}
.x4{left:394.028280px;}
.x22{left:396.360000px;}
.x23{left:403.920000px;}
.x17{left:470.790150px;}
.xb{left:474.570300px;}
.x1e{left:529.109550px;}
.x1a{left:559.619550px;}
.x12{left:603.990000px;}
.x15{left:671.490000px;}
.x1{left:786.690000px;}
@media print{
.v4{vertical-align:-34.880000pt;}
.v2{vertical-align:-13.437333pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.178240pt;}
.ls1e{letter-spacing:-0.609216pt;}
.ls16{letter-spacing:-0.128256pt;}
.ls26{letter-spacing:-0.069472pt;}
.ls35{letter-spacing:-0.064128pt;}
.ls30{letter-spacing:-0.058784pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls23{letter-spacing:-0.048096pt;}
.ls1f{letter-spacing:-0.042752pt;}
.ls13{letter-spacing:-0.037408pt;}
.ls28{letter-spacing:-0.032064pt;}
.ls1d{letter-spacing:-0.026720pt;}
.ls20{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls34{letter-spacing:-0.003456pt;}
.ls11{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.010688pt;}
.ls32{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.016032pt;}
.ls31{letter-spacing:0.019200pt;}
.lse{letter-spacing:0.021376pt;}
.ls2d{letter-spacing:0.024000pt;}
.lsb{letter-spacing:0.026720pt;}
.ls9{letter-spacing:0.032064pt;}
.ls8{letter-spacing:0.037408pt;}
.lsf{letter-spacing:0.042752pt;}
.ls2f{letter-spacing:0.043200pt;}
.ls12{letter-spacing:0.044736pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls6{letter-spacing:0.048096pt;}
.ls17{letter-spacing:0.053440pt;}
.ls10{letter-spacing:0.058784pt;}
.ls4{letter-spacing:0.064128pt;}
.ls1{letter-spacing:0.069472pt;}
.lsa{letter-spacing:0.074816pt;}
.ls5{letter-spacing:0.080160pt;}
.ls0{letter-spacing:0.082016pt;}
.ls18{letter-spacing:0.085504pt;}
.ls3{letter-spacing:0.090848pt;}
.ls7{letter-spacing:0.096192pt;}
.lsd{letter-spacing:0.101536pt;}
.ls2{letter-spacing:0.106880pt;}
.ls29{letter-spacing:0.112224pt;}
.ls2a{letter-spacing:0.117568pt;}
.ls2e{letter-spacing:0.122912pt;}
.ls33{letter-spacing:0.128256pt;}
.ls27{letter-spacing:0.133600pt;}
.ls25{letter-spacing:0.138944pt;}
.ls1b{letter-spacing:0.157333pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.160320pt;}
.ls1c{letter-spacing:0.175360pt;}
.ls36{letter-spacing:0.438208pt;}
.ws3f{word-spacing:-13.520320pt;}
.ws5d{word-spacing:-13.413440pt;}
.ws5b{word-spacing:-13.402752pt;}
.ws5c{word-spacing:-13.397408pt;}
.ws28{word-spacing:-13.392064pt;}
.ws5e{word-spacing:-13.381376pt;}
.ws4c{word-spacing:-13.370688pt;}
.ws5a{word-spacing:-13.365344pt;}
.ws61{word-spacing:-13.349312pt;}
.ws0{word-spacing:-13.231744pt;}
.ws1{word-spacing:-1.360000pt;}
.ws46{word-spacing:-0.550432pt;}
.ws58{word-spacing:-0.352704pt;}
.ws3b{word-spacing:-0.331328pt;}
.ws4b{word-spacing:-0.325984pt;}
.ws3a{word-spacing:-0.320640pt;}
.ws48{word-spacing:-0.309952pt;}
.ws42{word-spacing:-0.304608pt;}
.ws4a{word-spacing:-0.299264pt;}
.ws49{word-spacing:-0.293920pt;}
.ws34{word-spacing:-0.288576pt;}
.ws47{word-spacing:-0.283232pt;}
.ws45{word-spacing:-0.277888pt;}
.ws44{word-spacing:-0.267200pt;}
.ws35{word-spacing:-0.261856pt;}
.ws33{word-spacing:-0.251168pt;}
.ws59{word-spacing:-0.240480pt;}
.ws57{word-spacing:-0.192384pt;}
.ws3{word-spacing:-0.164032pt;}
.ws3e{word-spacing:-0.058784pt;}
.ws60{word-spacing:-0.053440pt;}
.ws5f{word-spacing:-0.048096pt;}
.ws54{word-spacing:-0.042752pt;}
.ws4f{word-spacing:-0.037408pt;}
.ws40{word-spacing:-0.032064pt;}
.ws6{word-spacing:-0.026720pt;}
.ws20{word-spacing:-0.021376pt;}
.ws36{word-spacing:-0.016032pt;}
.ws31{word-spacing:-0.010688pt;}
.ws2b{word-spacing:-0.005344pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.005344pt;}
.ws4{word-spacing:0.010688pt;}
.ws26{word-spacing:0.016032pt;}
.ws27{word-spacing:0.021376pt;}
.ws29{word-spacing:0.026720pt;}
.ws2a{word-spacing:0.032064pt;}
.ws23{word-spacing:0.037408pt;}
.ws24{word-spacing:0.042752pt;}
.ws14{word-spacing:0.048096pt;}
.ws25{word-spacing:0.053440pt;}
.ws2d{word-spacing:0.058784pt;}
.ws8{word-spacing:0.064128pt;}
.ws2c{word-spacing:0.069472pt;}
.ws30{word-spacing:0.074816pt;}
.ws2f{word-spacing:0.080160pt;}
.ws3d{word-spacing:0.085504pt;}
.ws39{word-spacing:0.090848pt;}
.ws38{word-spacing:0.096192pt;}
.ws37{word-spacing:0.101536pt;}
.ws2e{word-spacing:0.106880pt;}
.ws51{word-spacing:0.110400pt;}
.ws43{word-spacing:0.112224pt;}
.ws55{word-spacing:0.115200pt;}
.ws7{word-spacing:0.117568pt;}
.ws32{word-spacing:0.122912pt;}
.ws3c{word-spacing:0.128256pt;}
.ws4d{word-spacing:0.133600pt;}
.ws53{word-spacing:0.134400pt;}
.ws50{word-spacing:0.138944pt;}
.ws52{word-spacing:0.139200pt;}
.ws56{word-spacing:0.144000pt;}
.ws41{word-spacing:0.149632pt;}
.wsc{word-spacing:2.239136pt;}
.ws11{word-spacing:3.521696pt;}
.ws10{word-spacing:3.826304pt;}
.ws1f{word-spacing:3.890432pt;}
.ws1e{word-spacing:3.917152pt;}
.ws22{word-spacing:4.467584pt;}
.wsb{word-spacing:4.494304pt;}
.ws21{word-spacing:4.857696pt;}
.wsa{word-spacing:5.108864pt;}
.ws18{word-spacing:5.135584pt;}
.ws1a{word-spacing:5.808928pt;}
.ws9{word-spacing:6.092160pt;}
.ws17{word-spacing:6.118880pt;}
.ws19{word-spacing:6.134912pt;}
.ws16{word-spacing:6.407456pt;}
.ws1d{word-spacing:7.369376pt;}
.ws1c{word-spacing:8.309920pt;}
.wsf{word-spacing:8.358016pt;}
.wsd{word-spacing:8.651936pt;}
.wse{word-spacing:8.673312pt;}
.ws12{word-spacing:10.281856pt;}
.ws13{word-spacing:10.297888pt;}
.ws15{word-spacing:14.070752pt;}
.ws1b{word-spacing:19.537664pt;}
.ws4e{word-spacing:402.232192pt;}
._8{margin-left:-402.535531pt;}
._4{margin-left:-9.288000pt;}
._0{margin-left:-1.342080pt;}
._1{width:0.961920pt;}
._3{width:2.404800pt;}
._5{width:15.444160pt;}
._2{width:38.792939pt;}
._7{width:57.971712pt;}
._c{width:64.927467pt;}
._9{width:86.911488pt;}
._6{width:98.847093pt;}
._a{width:101.435040pt;}
._13{width:109.942385pt;}
._11{width:119.664518pt;}
._d{width:130.007580pt;}
._e{width:133.703279pt;}
._f{width:146.840346pt;}
._12{width:148.979215pt;}
._b{width:154.003392pt;}
._14{width:310.815467pt;}
._10{width:494.185067pt;}
.fs3{font-size:5.440000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:38.888533pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:58.186800pt;}
.yb8{bottom:105.375227pt;}
.y97{bottom:105.381227pt;}
.y4d{bottom:105.385467pt;}
.y72{bottom:105.386533pt;}
.y250{bottom:107.702267pt;}
.y1a6{bottom:108.656560pt;}
.y13c{bottom:113.061227pt;}
.y1d8{bottom:114.484187pt;}
.yd2{bottom:114.818400pt;}
.y26{bottom:116.255093pt;}
.y127{bottom:119.681627pt;}
.yf2{bottom:119.924720pt;}
.y15f{bottom:120.324453pt;}
.yb7{bottom:128.341067pt;}
.y96{bottom:128.987067pt;}
.y1a5{bottom:131.622400pt;}
.y94{bottom:132.346400pt;}
.y217{bottom:133.667680pt;}
.y95{bottom:134.347067pt;}
.y13b{bottom:136.027067pt;}
.y4c{bottom:136.335227pt;}
.y71{bottom:136.987067pt;}
.y1d7{bottom:137.450027pt;}
.yd1{bottom:137.864400pt;}
.y24f{bottom:138.657360pt;}
.y25{bottom:139.301093pt;}
.y6f{bottom:140.346400pt;}
.y1c1{bottom:141.678827pt;}
.y70{bottom:142.347067pt;}
.y126{bottom:142.647467pt;}
.yf1{bottom:142.890560pt;}
.y15e{bottom:143.290293pt;}
.yb6{bottom:152.027067pt;}
.yb4{bottom:155.386533pt;}
.y216{bottom:156.713680pt;}
.yb5{bottom:157.387067pt;}
.y4b{bottom:159.381227pt;}
.y1d6{bottom:160.496027pt;}
.y24e{bottom:161.623200pt;}
.y24{bottom:162.266933pt;}
.y1a4{bottom:162.625573pt;}
.y73{bottom:163.374107pt;}
.y103{bottom:163.386667pt;}
.y93{bottom:163.387067pt;}
.y1c0{bottom:164.724827pt;}
.y125{bottom:165.693467pt;}
.yf0{bottom:165.936560pt;}
.y15d{bottom:166.336293pt;}
.y13a{bottom:166.827200pt;}
.yd0{bottom:168.819467pt;}
.y6e{bottom:171.376133pt;}
.y1f3{bottom:179.647867pt;}
.y215{bottom:179.679520pt;}
.y4a{bottom:182.987067pt;}
.y1d5{bottom:183.461867pt;}
.y1a3{bottom:185.591413pt;}
.yb3{bottom:186.340667pt;}
.y48{bottom:186.346400pt;}
.y1bf{bottom:187.690667pt;}
.y49{bottom:188.347067pt;}
.yef{bottom:188.902400pt;}
.y15c{bottom:189.302133pt;}
.ycf{bottom:191.865467pt;}
.y24d{bottom:192.653093pt;}
.y23{bottom:193.137200pt;}
.y124{bottom:196.600400pt;}
.y139{bottom:198.820533pt;}
.y1f2{bottom:202.693867pt;}
.y214{bottom:202.725520pt;}
.y102{bottom:205.627067pt;}
.y1a2{bottom:208.557253pt;}
.y1be{bottom:210.736667pt;}
.yb2{bottom:213.925093pt;}
.y1d4{bottom:214.342133pt;}
.y24c{bottom:215.618933pt;}
.y47{bottom:217.387067pt;}
.y28{bottom:217.388587pt;}
.y123{bottom:219.646400pt;}
.yee{bottom:219.782800pt;}
.y15b{bottom:220.315947pt;}
.y6d{bottom:220.719893pt;}
.yce{bottom:223.779867pt;}
.y22{bottom:225.217200pt;}
.y1f1{bottom:225.659707pt;}
.y213{bottom:225.691360pt;}
.y138{bottom:230.900533pt;}
.y1a1{bottom:231.603253pt;}
.y101{bottom:233.707067pt;}
.yb1{bottom:236.971093pt;}
.y92{bottom:237.610800pt;}
.y24b{bottom:238.664933pt;}
.y1bd{bottom:241.697067pt;}
.y122{bottom:242.612240pt;}
.y15a{bottom:243.281787pt;}
.y6c{bottom:243.765893pt;}
.y1d3{bottom:246.422267pt;}
.ycd{bottom:246.825867pt;}
.y1f0{bottom:248.705707pt;}
.y212{bottom:248.737360pt;}
.yed{bottom:251.836053pt;}
.y1a0{bottom:254.569093pt;}
.y21{bottom:256.172267pt;}
.yb0{bottom:259.936933pt;}
.y91{bottom:260.656800pt;}
.y137{bottom:261.894453pt;}
.y121{bottom:265.578080pt;}
.y159{bottom:266.327787pt;}
.y6b{bottom:266.731733pt;}
.y24a{bottom:269.620133pt;}
.y1ef{bottom:271.671547pt;}
.y211{bottom:271.703200pt;}
.y1bc{bottom:273.582053pt;}
.yec{bottom:274.882053pt;}
.y1d2{bottom:277.426693pt;}
.y19f{bottom:277.615093pt;}
.ycc{bottom:278.740267pt;}
.y20{bottom:279.218267pt;}
.yaf{bottom:282.982933pt;}
.y136{bottom:284.860293pt;}
.y46{bottom:285.626667pt;}
.y120{bottom:288.624080pt;}
.y158{bottom:289.293627pt;}
.y6a{bottom:289.777733pt;}
.y90{bottom:291.601227pt;}
.y249{bottom:292.666133pt;}
.y1ee{bottom:294.637387pt;}
.y1bb{bottom:296.628053pt;}
.yeb{bottom:297.847893pt;}
.y1d1{bottom:300.392533pt;}
.y19e{bottom:300.580933pt;}
.ycb{bottom:301.786267pt;}
.y1f{bottom:302.178800pt;}
.y210{bottom:302.649013pt;}
.y135{bottom:307.906293pt;}
.y11f{bottom:311.589920pt;}
.y157{bottom:312.339627pt;}
.yae{bottom:313.922053pt;}
.y8f{bottom:314.647227pt;}
.y45{bottom:316.542507pt;}
.y1ed{bottom:317.683387pt;}
.y1ba{bottom:319.593893pt;}
.y69{bottom:320.700907pt;}
.yea{bottom:320.893893pt;}
.y1d0{bottom:323.358373pt;}
.y248{bottom:323.621200pt;}
.y19d{bottom:323.626933pt;}
.y1e{bottom:325.188800pt;}
.y20f{bottom:325.695013pt;}
.y134{bottom:330.872133pt;}
.yca{bottom:332.746667pt;}
.y11e{bottom:334.635920pt;}
.y156{bottom:335.305467pt;}
.yad{bottom:336.968053pt;}
.y8e{bottom:337.613067pt;}
.y1ec{bottom:340.649227pt;}
.y1b9{bottom:342.639893pt;}
.y44{bottom:343.583147pt;}
.y68{bottom:343.666747pt;}
.ye9{bottom:343.859733pt;}
.y1cf{bottom:346.404373pt;}
.y247{bottom:346.666667pt;}
.y1d{bottom:348.154640pt;}
.y20e{bottom:348.660853pt;}
.y133{bottom:353.918133pt;}
.y19c{bottom:354.427067pt;}
.y11d{bottom:357.601760pt;}
.yac{bottom:359.933893pt;}
.y8d{bottom:360.659067pt;}
.yc9{bottom:363.627067pt;}
.y1eb{bottom:363.695227pt;}
.y1b8{bottom:365.605733pt;}
.y155{bottom:366.346133pt;}
.y43{bottom:366.548987pt;}
.y67{bottom:366.712747pt;}
.ye8{bottom:366.905733pt;}
.y1ce{bottom:369.370213pt;}
.y1c{bottom:371.200640pt;}
.y20d{bottom:371.693493pt;}
.y132{bottom:376.883973pt;}
.y246{bottom:377.626400pt;}
.y11c{bottom:380.647760pt;}
.yab{bottom:382.979893pt;}
.y19b{bottom:386.072907pt;}
.y1ea{bottom:386.661067pt;}
.y1b7{bottom:388.651733pt;}
.y42{bottom:389.594987pt;}
.y66{bottom:389.678587pt;}
.y8c{bottom:391.459200pt;}
.yc8{bottom:391.707067pt;}
.y1cd{bottom:392.416213pt;}
.y1b{bottom:394.166480pt;}
.y20c{bottom:394.659333pt;}
.y154{bottom:397.306533pt;}
.ye7{bottom:397.860827pt;}
.y185{bottom:399.065467pt;}
.y131{bottom:399.929973pt;}
.y11b{bottom:403.613600pt;}
.yaa{bottom:405.945733pt;}
.y245{bottom:408.664533pt;}
.y19a{bottom:409.265867pt;}
.y1b6{bottom:411.617573pt;}
.y41{bottom:412.560827pt;}
.y65{bottom:412.724587pt;}
.y1cc{bottom:415.382053pt;}
.y1a{bottom:417.212480pt;}
.y1e9{bottom:417.701733pt;}
.y20b{bottom:417.705333pt;}
.ye6{bottom:420.826667pt;}
.y130{bottom:422.895813pt;}
.y8b{bottom:423.583227pt;}
.y11a{bottom:426.659600pt;}
.y153{bottom:429.306400pt;}
.y184{bottom:430.102080pt;}
.y199{bottom:432.231707pt;}
.y1b5{bottom:434.663573pt;}
.y40{bottom:435.606827pt;}
.y64{bottom:435.690427pt;}
.ya9{bottom:436.906133pt;}
.y1cb{bottom:438.428053pt;}
.y244{bottom:439.619733pt;}
.y19{bottom:440.178320pt;}
.y12f{bottom:445.941813pt;}
.y8a{bottom:446.549067pt;}
.y20a{bottom:448.656480pt;}
.y1e8{bottom:449.608133pt;}
.ye5{bottom:451.860693pt;}
.y183{bottom:453.067920pt;}
.y100{bottom:454.581333pt;}
.y198{bottom:455.277707pt;}
.y119{bottom:457.608053pt;}
.y22d{bottom:457.620160pt;}
.y1b4{bottom:457.629413pt;}
.y3f{bottom:458.572667pt;}
.y63{bottom:458.736427pt;}
.y152{bottom:460.266933pt;}
.y1ca{bottom:461.393893pt;}
.y243{bottom:462.665733pt;}
.y18{bottom:463.224320pt;}
.ya8{bottom:468.900693pt;}
.y12e{bottom:468.907653pt;}
.y89{bottom:469.581707pt;}
.y209{bottom:471.689120pt;}
.y1e7{bottom:472.640773pt;}
.ye4{bottom:474.826533pt;}
.y182{bottom:476.100560pt;}
.y197{bottom:478.243547pt;}
.y118{bottom:480.640693pt;}
.y22c{bottom:480.652800pt;}
.y1b3{bottom:480.662053pt;}
.y3e{bottom:481.618667pt;}
.y62{bottom:481.702267pt;}
.y1c9{bottom:484.426533pt;}
.yff{bottom:485.573867pt;}
.y17{bottom:486.190160pt;}
.y151{bottom:491.067067pt;}
.ya7{bottom:491.866533pt;}
.y12d{bottom:491.940293pt;}
.y88{bottom:492.547547pt;}
.y242{bottom:493.632827pt;}
.y208{bottom:494.654960pt;}
.y1e6{bottom:495.606613pt;}
.y181{bottom:499.066400pt;}
.y196{bottom:501.289547pt;}
.y117{bottom:503.606533pt;}
.y22b{bottom:503.618640pt;}
.y1b2{bottom:503.627893pt;}
.ye3{bottom:506.815627pt;}
.yfe{bottom:508.539707pt;}
.y16{bottom:509.222800pt;}
.y25f{bottom:510.586400pt;}
.y3d{bottom:512.547013pt;}
.y61{bottom:512.722773pt;}
.y12c{bottom:514.906133pt;}
.y1c8{bottom:515.387067pt;}
.y87{bottom:515.593547pt;}
.y241{bottom:516.665467pt;}
.y207{bottom:517.700960pt;}
.y1e5{bottom:518.639253pt;}
.y14e{bottom:522.980160pt;}
.ya6{bottom:523.866400pt;}
.y195{bottom:524.255387pt;}
.y116{bottom:526.639173pt;}
.y22a{bottom:526.651280pt;}
.y1b1{bottom:526.660533pt;}
.ye2{bottom:529.781467pt;}
.y180{bottom:530.107067pt;}
.yfd{bottom:531.585707pt;}
.y15{bottom:532.183200pt;}
.y3c{bottom:535.593013pt;}
.y60{bottom:535.688613pt;}
.y86{bottom:538.559387pt;}
.y206{bottom:540.666800pt;}
.y1e4{bottom:541.605093pt;}
.y25e{bottom:541.626667pt;}
.y14d{bottom:545.946000pt;}
.y12b{bottom:545.946667pt;}
.y194{bottom:547.288027pt;}
.y1c7{bottom:547.386933pt;}
.y240{bottom:547.632560pt;}
.y115{bottom:549.605013pt;}
.y229{bottom:549.617120pt;}
.ye1{bottom:552.827467pt;}
.yfc{bottom:554.551547pt;}
.y14{bottom:555.193093pt;}
.ya5{bottom:555.792827pt;}
.y1b0{bottom:557.599653pt;}
.y3b{bottom:558.558853pt;}
.y5f{bottom:558.721253pt;}
.y17f{bottom:560.183067pt;}
.y85{bottom:561.605387pt;}
.y170{bottom:563.302000pt;}
.y1e3{bottom:564.651093pt;}
.y193{bottom:570.253867pt;}
.y23f{bottom:570.665200pt;}
.y205{bottom:571.540800pt;}
.y25d{bottom:572.587067pt;}
.y114{bottom:572.637653pt;}
.y228{bottom:572.649760pt;}
.y12a{bottom:576.746933pt;}
.y150{bottom:576.979893pt;}
.y14c{bottom:576.981227pt;}
.yfb{bottom:577.597547pt;}
.y13{bottom:578.158933pt;}
.y1c6{bottom:578.187067pt;}
.ya4{bottom:578.825467pt;}
.y1af{bottom:580.645653pt;}
.y17e{bottom:580.823067pt;}
.y3a{bottom:581.604853pt;}
.y5e{bottom:581.687093pt;}
.y84{bottom:584.571227pt;}
.ye0{bottom:584.753893pt;}
.y1e2{bottom:587.616933pt;}
.y192{bottom:593.299867pt;}
.y16f{bottom:594.262400pt;}
.y113{bottom:595.603493pt;}
.y227{bottom:595.615600pt;}
.y25c{bottom:595.624267pt;}
.y14f{bottom:599.945733pt;}
.y14b{bottom:599.947067pt;}
.yfa{bottom:600.563387pt;}
.y12{bottom:601.204933pt;}
.y17d{bottom:601.547067pt;}
.y23e{bottom:601.632427pt;}
.y204{bottom:603.607493pt;}
.y1ae{bottom:603.611493pt;}
.y39{bottom:604.570693pt;}
.y5d{bottom:604.733093pt;}
.y129{bottom:604.907067pt;}
.y83{bottom:607.617227pt;}
.ydf{bottom:607.786533pt;}
.y1e1{bottom:610.662933pt;}
.ya3{bottom:610.745200pt;}
.yc7{bottom:612.556000pt;}
.y1c5{bottom:616.587067pt;}
.y112{bottom:618.649493pt;}
.y226{bottom:618.661600pt;}
.yf9{bottom:623.609387pt;}
.y11{bottom:624.170773pt;}
.y191{bottom:624.260400pt;}
.y23d{bottom:624.665067pt;}
.y16e{bottom:625.304453pt;}
.y25b{bottom:626.574027pt;}
.y203{bottom:626.653493pt;}
.y1ad{bottom:626.657493pt;}
.y38{bottom:627.616693pt;}
.y5c{bottom:627.698933pt;}
.y82{bottom:630.583067pt;}
.y17c{bottom:631.146267pt;}
.y14a{bottom:631.619227pt;}
.y147{bottom:631.626000pt;}
.yc6{bottom:635.602000pt;}
.yde{bottom:639.707653pt;}
.y111{bottom:641.615333pt;}
.y1e0{bottom:641.623333pt;}
.ya2{bottom:642.745067pt;}
.yf8{bottom:646.575227pt;}
.y10{bottom:647.203413pt;}
.y16d{bottom:648.270293pt;}
.y202{bottom:649.619333pt;}
.y25a{bottom:649.620027pt;}
.y1ac{bottom:649.623333pt;}
.y225{bottom:649.624773pt;}
.y1c4{bottom:649.707067pt;}
.y37{bottom:650.582533pt;}
.y5b{bottom:650.744933pt;}
.y149{bottom:654.585067pt;}
.y190{bottom:655.284853pt;}
.y23c{bottom:655.620133pt;}
.yc5{bottom:658.567840pt;}
.y81{bottom:661.463467pt;}
.y17b{bottom:662.188187pt;}
.y146{bottom:662.581067pt;}
.ydd{bottom:662.740293pt;}
.y110{bottom:664.661333pt;}
.y1c3{bottom:668.107067pt;}
.yf7{bottom:669.621227pt;}
.yf{bottom:670.169253pt;}
.y16c{bottom:671.302933pt;}
.y259{bottom:672.585867pt;}
.y201{bottom:672.651973pt;}
.y224{bottom:672.657413pt;}
.y1df{bottom:673.623200pt;}
.ya1{bottom:674.664800pt;}
.y18f{bottom:678.250693pt;}
.y23b{bottom:678.666133pt;}
.y1ab{bottom:680.664000pt;}
.y5a{bottom:681.545067pt;}
.y36{bottom:681.600507pt;}
.yc4{bottom:681.613840pt;}
.y17a{bottom:685.154027pt;}
.y148{bottom:685.625733pt;}
.y145{bottom:685.627067pt;}
.ydc{bottom:685.706133pt;}
.y80{bottom:692.578880pt;}
.yf6{bottom:692.585040pt;}
.ye{bottom:693.215253pt;}
.y10f{bottom:695.580427pt;}
.y200{bottom:695.617813pt;}
.y223{bottom:695.623253pt;}
.y1c2{bottom:696.583733pt;}
.y18e{bottom:701.296693pt;}
.y16b{bottom:702.263333pt;}
.y258{bottom:703.553093pt;}
.y35{bottom:704.566347pt;}
.yc3{bottom:704.579680pt;}
.y1de{bottom:704.581067pt;}
.ya0{bottom:706.643280pt;}
.y179{bottom:708.186667pt;}
.y23a{bottom:709.626667pt;}
.y1aa{bottom:712.555573pt;}
.y59{bottom:713.686587pt;}
.y7f{bottom:715.544720pt;}
.yd{bottom:716.181093pt;}
.y144{bottom:717.300560pt;}
.ydb{bottom:717.693947pt;}
.y10e{bottom:718.613067pt;}
.y1ff{bottom:718.650453pt;}
.y222{bottom:718.655893pt;}
.yf5{bottom:719.545520pt;}
.y18d{bottom:724.262533pt;}
.y257{bottom:726.585733pt;}
.y34{bottom:727.532187pt;}
.yc2{bottom:727.545520pt;}
.y1dd{bottom:727.546907pt;}
.y9f{bottom:729.609120pt;}
.y16a{bottom:733.278667pt;}
.y1a9{bottom:735.521413pt;}
.y58{bottom:736.652427pt;}
.y7e{bottom:738.577360pt;}
.yc{bottom:739.146933pt;}
.y178{bottom:739.147200pt;}
.y143{bottom:740.266400pt;}
.y239{bottom:740.587067pt;}
.yda{bottom:740.659787pt;}
.y10d{bottom:741.578907pt;}
.y1fe{bottom:741.616293pt;}
.y221{bottom:741.621733pt;}
.yf4{bottom:742.578160pt;}
.y142{bottom:748.261067pt;}
.y33{bottom:750.564827pt;}
.yc1{bottom:750.578160pt;}
.y1dc{bottom:750.579547pt;}
.y9e{bottom:752.574960pt;}
.y18c{bottom:755.303200pt;}
.y169{bottom:756.244507pt;}
.y256{bottom:757.547520pt;}
.y1a8{bottom:758.554053pt;}
.y57{bottom:759.698427pt;}
.y7d{bottom:761.543200pt;}
.yb{bottom:762.186267pt;}
.y238{bottom:763.623733pt;}
.yd9{bottom:763.705787pt;}
.y10c{bottom:764.544747pt;}
.y1fd{bottom:764.582133pt;}
.yf3{bottom:765.544000pt;}
.y177{bottom:769.219067pt;}
.y141{bottom:771.307067pt;}
.y220{bottom:772.539440pt;}
.y32{bottom:773.530667pt;}
.yc0{bottom:773.544000pt;}
.y1db{bottom:773.545387pt;}
.y9d{bottom:775.620960pt;}
.y168{bottom:779.290507pt;}
.y255{bottom:780.580160pt;}
.y1a7{bottom:781.519893pt;}
.y56{bottom:782.664267pt;}
.ya{bottom:785.146800pt;}
.y18b{bottom:786.258400pt;}
.yd8{bottom:786.671627pt;}
.y10b{bottom:787.590747pt;}
.y176{bottom:789.943067pt;}
.y7c{bottom:792.574480pt;}
.y237{bottom:794.584133pt;}
.y1fc{bottom:795.585307pt;}
.y21f{bottom:795.585440pt;}
.y31{bottom:796.563307pt;}
.y1da{bottom:796.578027pt;}
.y9c{bottom:798.586800pt;}
.y167{bottom:802.256347pt;}
.y140{bottom:802.904000pt;}
.y254{bottom:803.546000pt;}
.ybf{bottom:804.552533pt;}
.y55{bottom:805.630107pt;}
.y9{bottom:808.186133pt;}
.y18a{bottom:809.304400pt;}
.yd7{bottom:809.637467pt;}
.y10a{bottom:810.556587pt;}
.y175{bottom:810.667067pt;}
.y7b{bottom:815.540320pt;}
.y1fb{bottom:818.551147pt;}
.y21e{bottom:818.551280pt;}
.y30{bottom:819.529147pt;}
.y1d9{bottom:819.543867pt;}
.y166{bottom:825.302347pt;}
.y236{bottom:825.614160pt;}
.ybe{bottom:827.518373pt;}
.y54{bottom:828.662747pt;}
.y9b{bottom:829.465467pt;}
.yd6{bottom:832.670107pt;}
.y109{bottom:833.602587pt;}
.y253{bottom:834.581227pt;}
.y13f{bottom:834.584533pt;}
.y7a{bottom:838.586320pt;}
.y8{bottom:839.146533pt;}
.y174{bottom:840.261467pt;}
.y189{bottom:840.264800pt;}
.y1fa{bottom:841.597147pt;}
.y21d{bottom:841.597280pt;}
.y2f{bottom:842.575147pt;}
.y165{bottom:848.268187pt;}
.y235{bottom:848.580000pt;}
.ybd{bottom:850.564373pt;}
.y53{bottom:851.628587pt;}
.yd5{bottom:855.635947pt;}
.y108{bottom:856.568427pt;}
.y252{bottom:857.538267pt;}
.y9a{bottom:861.546853pt;}
.y79{bottom:861.552160pt;}
.y7{bottom:862.187200pt;}
.y1f9{bottom:864.562987pt;}
.y21c{bottom:864.563120pt;}
.y2e{bottom:865.540987pt;}
.y13e{bottom:865.546320pt;}
.y173{bottom:871.228560pt;}
.y188{bottom:871.231893pt;}
.y164{bottom:871.234027pt;}
.y234{bottom:871.626000pt;}
.ybc{bottom:873.530213pt;}
.y52{bottom:874.661227pt;}
.yd4{bottom:878.668587pt;}
.y107{bottom:879.614427pt;}
.y251{bottom:880.584267pt;}
.y99{bottom:884.579493pt;}
.y78{bottom:884.584800pt;}
.y6{bottom:885.147733pt;}
.y1f8{bottom:887.608987pt;}
.y21b{bottom:887.609120pt;}
.y2d{bottom:888.573627pt;}
.y13d{bottom:888.578960pt;}
.y172{bottom:894.261200pt;}
.y187{bottom:894.264533pt;}
.y163{bottom:894.266667pt;}
.ybb{bottom:896.562853pt;}
.y51{bottom:897.626427pt;}
.yd3{bottom:901.634427pt;}
.y106{bottom:902.580267pt;}
.y233{bottom:902.581067pt;}
.y98{bottom:907.545333pt;}
.y5{bottom:908.187067pt;}
.y1f7{bottom:910.574827pt;}
.y21a{bottom:910.574960pt;}
.y2c{bottom:911.539467pt;}
.y128{bottom:911.544800pt;}
.y77{bottom:915.529227pt;}
.yba{bottom:919.528693pt;}
.y50{bottom:924.667067pt;}
.y171{bottom:925.221733pt;}
.y186{bottom:925.225067pt;}
.y162{bottom:925.227067pt;}
.y230{bottom:925.620960pt;}
.y105{bottom:925.626267pt;}
.y232{bottom:926.267067pt;}
.y231{bottom:931.627067pt;}
.y1f6{bottom:933.620827pt;}
.y219{bottom:933.620960pt;}
.y2b{bottom:934.585467pt;}
.y76{bottom:938.575227pt;}
.yb9{bottom:942.574693pt;}
.y4{bottom:943.139867pt;}
.y22f{bottom:948.586800pt;}
.y4f{bottom:955.467200pt;}
.y104{bottom:956.426400pt;}
.y1f5{bottom:956.586667pt;}
.y218{bottom:956.586800pt;}
.y161{bottom:956.900667pt;}
.y75{bottom:961.541067pt;}
.y2a{bottom:965.540533pt;}
.y3{bottom:975.387067pt;}
.y22e{bottom:979.467067pt;}
.y160{bottom:979.946667pt;}
.y74{bottom:984.586533pt;}
.y4e{bottom:987.467067pt;}
.y1f4{bottom:987.627333pt;}
.y29{bottom:988.586533pt;}
.y2{bottom:1011.547067pt;}
.y1{bottom:1044.507067pt;}
.h6{height:33.918750pt;}
.h13{height:39.192350pt;}
.h12{height:47.109375pt;}
.h7{height:49.888438pt;}
.h9{height:52.422344pt;}
.h2{height:52.448437pt;}
.h10{height:52.450038pt;}
.h17{height:52.450571pt;}
.h16{height:52.451104pt;}
.h15{height:52.458571pt;}
.h18{height:52.467638pt;}
.he{height:52.474038pt;}
.h19{height:52.483638pt;}
.hb{height:52.492171pt;}
.h8{height:53.857500pt;}
.hd{height:53.863900pt;}
.h14{height:53.882567pt;}
.h11{height:53.883633pt;}
.h4{height:53.897500pt;}
.h1{height:66.750000pt;}
.hc{height:68.450571pt;}
.ha{height:68.450998pt;}
.hf{height:68.456544pt;}
.h5{height:68.626677pt;}
.h3{height:75.142500pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x5{left:94.480000pt;}
.x18{left:112.239600pt;}
.x3{left:116.800000pt;}
.x11{left:118.476027pt;}
.xa{left:123.280133pt;}
.xf{left:132.879733pt;}
.x1c{left:142.479333pt;}
.x2{left:151.200000pt;}
.xd{left:158.720000pt;}
.x10{left:163.040000pt;}
.xe{left:165.200000pt;}
.x9{left:170.080267pt;}
.x20{left:202.800000pt;}
.x7{left:209.440133pt;}
.x16{left:227.120667pt;}
.x14{left:235.680133pt;}
.x21{left:241.120000pt;}
.x1f{left:244.080000pt;}
.x19{left:259.840000pt;}
.x13{left:270.239733pt;}
.x1d{left:281.277600pt;}
.x1b{left:283.760000pt;}
.xc{left:286.480000pt;}
.x8{left:296.079733pt;}
.x6{left:304.719600pt;}
.x4{left:350.247360pt;}
.x22{left:352.320000pt;}
.x23{left:359.040000pt;}
.x17{left:418.480133pt;}
.xb{left:421.840267pt;}
.x1e{left:470.319600pt;}
.x1a{left:497.439600pt;}
.x12{left:536.880000pt;}
.x15{left:596.880000pt;}
.x1{left:699.280000pt;}
}




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