
    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_68dacd0cb8aa5466342e5ddf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a3f3dea8924e50f387b2145c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_8cc58d56db9acb751a1db163.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_87458e3a2ea593c2516f4c58.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.192000;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_9f1f0ce1294e9b585b2dfbd8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4f497fc9d81e3b90d32ec114.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960449;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_12c6dc2a5b654b4dc030a655.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_58ed9a90407279361cd73d31.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_71d61e5389b6b6b1a05307a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_751e5da31202b170414335d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_576562c5c47245e3a50f918b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.va{vertical-align:-20.880000px;}
.vc{vertical-align:-18.000000px;}
.v5{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.880000px;}
.v9{vertical-align:5.760000px;}
.v1{vertical-align:8.502779px;}
.vb{vertical-align:18.000000px;}
.v7{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v6{vertical-align:26.640000px;}
.ls14{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.702000px;}
.ls8{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.468000px;}
.ls9{letter-spacing:-0.432000px;}
.ls25{letter-spacing:-0.252000px;}
.ls15{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.181200px;}
.ls1{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.102000px;}
.ls1f{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls27{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.216000px;}
.lse{letter-spacing:0.223920px;}
.ls20{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.269280px;}
.ls2{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.540000px;}
.ls1d{letter-spacing:1.512000px;}
.ls22{letter-spacing:1.548000px;}
.ls18{letter-spacing:4.464000px;}
.ls17{letter-spacing:5.184000px;}
.ls2a{letter-spacing:7.308000px;}
.ls28{letter-spacing:8.748000px;}
.ls11{letter-spacing:25.469280px;}
.ls12{letter-spacing:273.149280px;}
.ls1e{letter-spacing:849.185760px;}
.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;}
}
.ws15{word-spacing:-72.000000px;}
.ws2{word-spacing:-26.599541px;}
.ws3{word-spacing:-26.495862px;}
.ws18{word-spacing:-20.520000px;}
.wsc{word-spacing:-20.304000px;}
.ws10{word-spacing:-20.160000px;}
.wsb{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.584000px;}
.ws17{word-spacing:-19.512000px;}
.ws16{word-spacing:-19.296000px;}
.ws11{word-spacing:-19.152000px;}
.ws12{word-spacing:-19.080000px;}
.ws1{word-spacing:-18.169113px;}
.ws27{word-spacing:-15.372000px;}
.ws1a{word-spacing:-15.264000px;}
.ws1b{word-spacing:-15.228000px;}
.ws1c{word-spacing:-15.012000px;}
.ws19{word-spacing:-14.904000px;}
.ws22{word-spacing:-14.760000px;}
.ws23{word-spacing:-14.544000px;}
.ws24{word-spacing:-14.508000px;}
.ws25{word-spacing:-14.310000px;}
.ws9{word-spacing:-13.410720px;}
.wsf{word-spacing:-13.229520px;}
.ws13{word-spacing:-13.186920px;}
.ws4{word-spacing:-12.681512px;}
.ws14{word-spacing:-12.510720px;}
.ws5{word-spacing:-11.215308px;}
.ws20{word-spacing:-10.332000px;}
.ws1d{word-spacing:-10.080000px;}
.ws1e{word-spacing:-10.008000px;}
.ws21{word-spacing:-9.936000px;}
.ws1f{word-spacing:-9.756000px;}
.ws26{word-spacing:-9.432000px;}
.ws7{word-spacing:-1.259450px;}
.ws6{word-spacing:-1.142292px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:13.439966px;}
._1a{margin-left:-5.208000px;}
._28{margin-left:-3.729600px;}
._a{margin-left:-2.212560px;}
._6{margin-left:-1.179360px;}
._5{width:1.200960px;}
._17{width:2.743200px;}
._16{width:3.816000px;}
._8{width:5.218560px;}
._9{width:6.608160px;}
._2f{width:7.614720px;}
._25{width:8.624400px;}
._1f{width:10.095600px;}
._1e{width:11.352000px;}
._20{width:12.397200px;}
._1c{width:13.608000px;}
._1d{width:15.240000px;}
._2a{width:16.535040px;}
._29{width:18.072000px;}
._1{width:20.688060px;}
._14{width:22.680000px;}
._1b{width:23.976000px;}
._0{width:25.616347px;}
._15{width:27.792000px;}
._7{width:29.319840px;}
._2d{width:30.895200px;}
._2e{width:32.741760px;}
._31{width:34.169280px;}
._27{width:36.139200px;}
._10{width:40.430400px;}
._18{width:43.920000px;}
._19{width:45.300000px;}
._30{width:54.840000px;}
._2c{width:73.056000px;}
._21{width:74.664000px;}
._22{width:75.999360px;}
._32{width:94.860000px;}
._23{width:106.749600px;}
._4{width:174.469042px;}
._2b{width:232.776000px;}
._f{width:244.225680px;}
._26{width:275.976000px;}
._24{width:479.447520px;}
._13{width:844.140000px;}
._c{width:1346.258400px;}
._11{width:1565.930400px;}
._e{width:1622.882400px;}
._b{width:1898.520000px;}
._d{width:2015.016000px;}
._12{width:2251.104000px;}
._2{width:2616.903241px;}
._3{width:2729.768391px;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs4{font-size:41.842200px;}
.fs9{font-size:48.240000px;}
.fse{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:76.764600px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:113.573400px;}
.fs2{font-size:115.199400px;}
.fs1{font-size:125.999400px;}
.fs0{font-size:239.999400px;}
.y9{bottom:-37.842195px;}
.y8{bottom:-25.086600px;}
.y0{bottom:0.000000px;}
.y19e{bottom:2.880000px;}
.y1a0{bottom:3.060000px;}
.y141{bottom:3.225000px;}
.y13a{bottom:3.240000px;}
.y18e{bottom:3.270000px;}
.y143{bottom:3.405000px;}
.y137{bottom:3.420000px;}
.y13e{bottom:3.450000px;}
.y140{bottom:3.585000px;}
.y155{bottom:3.600000px;}
.y18c{bottom:3.630000px;}
.y18a{bottom:4.140000px;}
.y18d{bottom:4.170000px;}
.y18f{bottom:4.305000px;}
.y188{bottom:4.320000px;}
.y1ad{bottom:7.725000px;}
.y134{bottom:7.740000px;}
.y14d{bottom:7.920000px;}
.y1ae{bottom:12.225000px;}
.y135{bottom:12.240000px;}
.y132{bottom:12.420000px;}
.y9c{bottom:89.316000px;}
.y89{bottom:91.656000px;}
.y104{bottom:94.536000px;}
.y149{bottom:96.876000px;}
.y11d{bottom:99.216000px;}
.y166{bottom:101.196000px;}
.y197{bottom:115.776000px;}
.y9b{bottom:120.456000px;}
.ybf{bottom:121.176000px;}
.y103{bottom:125.496000px;}
.ye8{bottom:126.036000px;}
.y11c{bottom:130.356000px;}
.y73{bottom:133.416000px;}
.y165{bottom:135.576000px;}
.y148{bottom:135.756000px;}
.y88{bottom:137.736000px;}
.y196{bottom:149.616000px;}
.y102{bottom:156.630000px;}
.y11b{bottom:161.310000px;}
.ye7{bottom:162.930000px;}
.y9a{bottom:166.350000px;}
.ybe{bottom:166.890000px;}
.y164{bottom:169.770000px;}
.y147{bottom:174.630000px;}
.y72{bottom:179.310000px;}
.y87{bottom:183.630000px;}
.y101{bottom:187.590000px;}
.y11a{bottom:192.450000px;}
.y99{bottom:197.490000px;}
.ybd{bottom:198.030000px;}
.ye6{bottom:199.830000px;}
.y1b4{bottom:201.810000px;}
.y163{bottom:204.150000px;}
.y195{bottom:205.230000px;}
.y71{bottom:210.450000px;}
.y146{bottom:213.330000px;}
.y100{bottom:218.730000px;}
.y194{bottom:220.890000px;}
.y1b3{bottom:226.470000px;}
.y98{bottom:228.450000px;}
.y119{bottom:229.350000px;}
.y86{bottom:229.710000px;}
.ye5{bottom:237.090000px;}
.y145{bottom:239.070000px;}
.y193{bottom:240.870000px;}
.y70{bottom:241.410000px;}
.y162{bottom:243.210000px;}
.ybc{bottom:244.110000px;}
.y42{bottom:246.090000px;}
.y1b2{bottom:246.450000px;}
.yff{bottom:249.690000px;}
.y118{bottom:254.550000px;}
.y192{bottom:258.705000px;}
.y97{bottom:259.590000px;}
.y1b1{bottom:264.285000px;}
.y6f{bottom:272.550000px;}
.y144{bottom:274.530000px;}
.ybb{bottom:275.070000px;}
.y85{bottom:275.610000px;}
.y191{bottom:275.625000px;}
.y161{bottom:276.690000px;}
.y41{bottom:277.050000px;}
.y1b0{bottom:281.205000px;}
.y117{bottom:285.510000px;}
.ye4{bottom:286.050000px;}
.y24{bottom:288.390000px;}
.y142{bottom:292.365000px;}
.y190{bottom:292.545000px;}
.yfe{bottom:295.950000px;}
.y1af{bottom:298.125000px;}
.y6e{bottom:303.510000px;}
.y96{bottom:305.670000px;}
.yba{bottom:306.210000px;}
.y84{bottom:306.750000px;}
.y40{bottom:308.010000px;}
.y13f{bottom:309.465000px;}
.y160{bottom:311.070000px;}
.y1ac{bottom:315.045000px;}
.y116{bottom:316.650000px;}
.ye3{bottom:318.810000px;}
.y13d{bottom:326.205000px;}
.y18b{bottom:326.385000px;}
.y15f{bottom:326.730000px;}
.y23{bottom:327.495000px;}
.y6d{bottom:334.695000px;}
.y95{bottom:336.855000px;}
.yb9{bottom:337.215000px;}
.y3f{bottom:339.195000px;}
.y1ab{bottom:341.715000px;}
.yfd{bottom:341.895000px;}
.y15e{bottom:342.255000px;}
.y13c{bottom:343.155000px;}
.y115{bottom:347.655000px;}
.ye2{bottom:350.715000px;}
.y83{bottom:352.695000px;}
.y22{bottom:357.915000px;}
.y13b{bottom:360.075000px;}
.y6c{bottom:365.655000px;}
.y15d{bottom:368.715000px;}
.y3e{bottom:370.155000px;}
.y139{bottom:376.995000px;}
.y114{bottom:378.615000px;}
.y94{bottom:382.755000px;}
.ye1{bottom:382.935000px;}
.yb8{bottom:383.295000px;}
.y82{bottom:383.835000px;}
.y1aa{bottom:386.175000px;}
.y21{bottom:387.795000px;}
.yfc{bottom:387.975000px;}
.ycd{bottom:393.735000px;}
.y189{bottom:393.915000px;}
.y6b{bottom:396.795000px;}
.y3d{bottom:401.295000px;}
.y1c6{bottom:403.815000px;}
.y113{bottom:409.755000px;}
.y138{bottom:410.655000px;}
.yb7{bottom:414.615000px;}
.y81{bottom:414.795000px;}
.ye0{bottom:415.335000px;}
.y20{bottom:417.495000px;}
.yfb{bottom:418.935000px;}
.y93{bottom:419.835000px;}
.y1c5{bottom:421.815000px;}
.y136{bottom:427.575000px;}
.y1a9{bottom:428.115000px;}
.y3c{bottom:432.975000px;}
.y1c4{bottom:438.735000px;}
.y1f{bottom:439.635000px;}
.y112{bottom:441.615000px;}
.y6a{bottom:442.695000px;}
.y133{bottom:444.495000px;}
.y80{bottom:445.935000px;}
.y1c3{bottom:455.475000px;}
.yb6{bottom:460.335000px;}
.y187{bottom:461.415000px;}
.ydf{bottom:462.495000px;}
.y1a8{bottom:462.855000px;}
.y3b{bottom:463.935000px;}
.yfa{bottom:465.195000px;}
.y92{bottom:465.915000px;}
.y1e{bottom:469.695000px;}
.ycc{bottom:470.595000px;}
.y131{bottom:470.955000px;}
.y1c2{bottom:472.395000px;}
.y69{bottom:473.835000px;}
.y111{bottom:474.735000px;}
.y186{bottom:478.155000px;}
.y1c1{bottom:489.315000px;}
.yb5{bottom:491.655000px;}
.y1d{bottom:491.835000px;}
.y7f{bottom:492.015000px;}
.yde{bottom:493.635000px;}
.y3a{bottom:495.075000px;}
.y68{bottom:504.795000px;}
.y91{bottom:506.055000px;}
.y1c0{bottom:506.235000px;}
.y110{bottom:506.955000px;}
.yf9{bottom:511.095000px;}
.y185{bottom:511.995000px;}
.y130{bottom:515.595000px;}
.ycb{bottom:516.675000px;}
.y7e{bottom:523.155000px;}
.y1c{bottom:523.335000px;}
.y1bf{bottom:523.875000px;}
.ydd{bottom:524.595000px;}
.y39{bottom:526.035000px;}
.y54{bottom:528.555000px;}
.y184{bottom:528.915000px;}
.y67{bottom:535.935000px;}
.y10f{bottom:537.915000px;}
.yb4{bottom:543.495000px;}
.y183{bottom:545.655000px;}
.yca{bottom:547.815000px;}
.y90{bottom:552.135000px;}
.y1b{bottom:554.655000px;}
.ydc{bottom:555.735000px;}
.y38{bottom:557.175000px;}
.y12f{bottom:557.535000px;}
.yf8{bottom:560.055000px;}
.y66{bottom:566.895000px;}
.y1be{bottom:568.335000px;}
.y7d{bottom:569.055000px;}
.ya4{bottom:569.415000px;}
.y182{bottom:572.295000px;}
.y53{bottom:574.275000px;}
.yc9{bottom:578.775000px;}
.yb3{bottom:583.455000px;}
.y1bd{bottom:583.995000px;}
.y1a{bottom:585.975000px;}
.ydb{bottom:586.695000px;}
.y37{bottom:588.135000px;}
.y10e{bottom:589.395000px;}
.y12e{bottom:592.095000px;}
.yf7{bottom:592.275000px;}
.y65{bottom:598.065000px;}
.y1cc{bottom:599.145000px;}
.y7c{bottom:600.225000px;}
.y52{bottom:605.445000px;}
.y12d{bottom:607.785000px;}
.yb2{bottom:614.805000px;}
.ya3{bottom:615.345000px;}
.y181{bottom:616.965000px;}
.y19{bottom:617.325000px;}
.y1bc{bottom:618.945000px;}
.y36{bottom:619.305000px;}
.yf6{bottom:624.705000px;}
.yc8{bottom:624.885000px;}
.y64{bottom:629.025000px;}
.y10d{bottom:630.285000px;}
.y180{bottom:632.445000px;}
.yda{bottom:632.985000px;}
.y51{bottom:636.405000px;}
.y7b{bottom:637.125000px;}
.y12c{bottom:638.385000px;}
.y1cb{bottom:640.005000px;}
.y1bb{bottom:641.985000px;}
.y18{bottom:642.885000px;}
.y35{bottom:650.265000px;}
.yc7{bottom:656.025000px;}
.yf5{bottom:656.925000px;}
.y1ca{bottom:659.625000px;}
.y63{bottom:660.165000px;}
.ya2{bottom:661.245000px;}
.yb1{bottom:666.645000px;}
.y50{bottom:667.545000px;}
.yd9{bottom:671.145000px;}
.y17f{bottom:674.385000px;}
.y10c{bottom:676.185000px;}
.y7a{bottom:677.445000px;}
.y1ba{bottom:681.045000px;}
.y34{bottom:681.405000px;}
.y7{bottom:689.074088px;}
.yf4{bottom:689.145000px;}
.y17{bottom:690.765000px;}
.y62{bottom:691.125000px;}
.ya1{bottom:692.205000px;}
.y8e{bottom:692.565000px;}
.y4f{bottom:698.505000px;}
.y17e{bottom:699.945000px;}
.y1c9{bottom:701.745000px;}
.yc6{bottom:702.105000px;}
.yb0{bottom:706.965000px;}
.y10b{bottom:707.145000px;}
.y6{bottom:709.908000px;}
.y33{bottom:712.365000px;}
.y1b9{bottom:714.525000px;}
.y17d{bottom:715.605000px;}
.yd8{bottom:718.665000px;}
.y129{bottom:719.385000px;}
.y16{bottom:722.085000px;}
.y61{bottom:722.265000px;}
.y79{bottom:723.525000px;}
.y4e{bottom:729.645000px;}
.y1c8{bottom:735.405000px;}
.y17c{bottom:735.585000px;}
.y8d{bottom:738.285000px;}
.yf3{bottom:742.425000px;}
.y32{bottom:743.505000px;}
.y1b8{bottom:745.305000px;}
.y5{bottom:745.458149px;}
.yd7{bottom:750.885000px;}
.yaf{bottom:752.865000px;}
.y60{bottom:753.225000px;}
.y17b{bottom:753.405000px;}
.yc5{bottom:753.945000px;}
.y15{bottom:755.385000px;}
.y15c{bottom:755.565000px;}
.y4d{bottom:760.605000px;}
.y128{bottom:765.105000px;}
.y78{bottom:769.245000px;}
.y17a{bottom:770.325000px;}
.y1c7{bottom:773.925000px;}
.y4{bottom:774.114000px;}
.y31{bottom:774.465000px;}
.yd6{bottom:782.025000px;}
.y5f{bottom:784.365000px;}
.yf2{bottom:785.445000px;}
.yc4{bottom:785.625000px;}
.y179{bottom:787.245000px;}
.y4c{bottom:791.745000px;}
.y15b{bottom:792.825000px;}
.y14{bottom:795.525000px;}
.y127{bottom:796.245000px;}
.yae{bottom:798.765000px;}
.y77{bottom:800.385000px;}
.y178{bottom:804.165000px;}
.y30{bottom:805.425000px;}
.yd5{bottom:814.245000px;}
.y5e{bottom:815.325000px;}
.yf1{bottom:817.665000px;}
.y177{bottom:820.905000px;}
.y4b{bottom:822.705000px;}
.y126{bottom:827.205000px;}
.yad{bottom:829.905000px;}
.ya0{bottom:831.345000px;}
.yc3{bottom:831.525000px;}
.y13{bottom:831.705000px;}
.y2f{bottom:836.565000px;}
.y176{bottom:837.825000px;}
.y15a{bottom:841.785000px;}
.y5d{bottom:846.465000px;}
.y10a{bottom:846.645000px;}
.yf0{bottom:849.885000px;}
.y4a{bottom:853.845000px;}
.y175{bottom:854.745000px;}
.y1a7{bottom:857.085000px;}
.y125{bottom:858.345000px;}
.yac{bottom:860.865000px;}
.y12{bottom:861.405000px;}
.yd4{bottom:861.585000px;}
.y159{bottom:867.390000px;}
.y2e{bottom:867.570000px;}
.y174{bottom:871.710000px;}
.y1a6{bottom:874.590000px;}
.y5c{bottom:877.470000px;}
.yef{bottom:882.330000px;}
.y158{bottom:883.050000px;}
.y49{bottom:884.850000px;}
.y173{bottom:888.450000px;}
.y124{bottom:889.350000px;}
.y1a5{bottom:890.070000px;}
.yab{bottom:892.050000px;}
.y109{bottom:892.770000px;}
.y11{bottom:894.390000px;}
.y3{bottom:895.549500px;}
.y2d{bottom:898.710000px;}
.y157{bottom:903.030000px;}
.y172{bottom:905.370000px;}
.y1a4{bottom:905.550000px;}
.yd3{bottom:907.710000px;}
.y5b{bottom:908.610000px;}
.y9f{bottom:908.790000px;}
.yee{bottom:914.550000px;}
.y48{bottom:915.990000px;}
.y1b7{bottom:917.970000px;}
.y123{bottom:920.490000px;}
.y156{bottom:920.850000px;}
.y1a3{bottom:921.210000px;}
.y171{bottom:922.290000px;}
.yaa{bottom:923.010000px;}
.y10{bottom:924.090000px;}
.y2c{bottom:929.670000px;}
.y1a2{bottom:936.690000px;}
.y154{bottom:937.770000px;}
.y108{bottom:938.490000px;}
.yd2{bottom:938.670000px;}
.y170{bottom:939.210000px;}
.y5a{bottom:939.570000px;}
.y47{bottom:946.950000px;}
.y122{bottom:951.450000px;}
.y1a1{bottom:952.170000px;}
.y1b6{bottom:952.710000px;}
.ya9{bottom:954.150000px;}
.y8c{bottom:954.510000px;}
.y9e{bottom:954.690000px;}
.y2{bottom:955.504650px;}
.y16f{bottom:955.950000px;}
.yf{bottom:957.030000px;}
.y2b{bottom:960.810000px;}
.y19f{bottom:967.650000px;}
.yed{bottom:967.830000px;}
.y107{bottom:969.630000px;}
.yd1{bottom:969.810000px;}
.y8f{bottom:970.710000px;}
.y153{bottom:971.610000px;}
.y16e{bottom:972.870000px;}
.ye{bottom:980.790000px;}
.y121{bottom:983.310000px;}
.y1b5{bottom:983.490000px;}
.ya8{bottom:985.110000px;}
.y76{bottom:985.650000px;}
.y59{bottom:985.830000px;}
.y152{bottom:988.350000px;}
.y16d{bottom:989.790000px;}
.y9d{bottom:991.590000px;}
.y2a{bottom:991.770000px;}
.y46{bottom:993.210000px;}
.y19d{bottom:998.790000px;}
.y106{bottom:1000.590000px;}
.yd0{bottom:1000.770000px;}
.yc2{bottom:1001.670000px;}
.y151{bottom:1005.270000px;}
.y16c{bottom:1006.710000px;}
.yec{bottom:1007.970000px;}
.y19c{bottom:1014.270000px;}
.y1{bottom:1015.540500px;}
.y120{bottom:1015.710000px;}
.ya7{bottom:1016.250000px;}
.y58{bottom:1016.790000px;}
.y150{bottom:1022.190000px;}
.y29{bottom:1022.910000px;}
.yd{bottom:1023.270000px;}
.y16b{bottom:1023.450000px;}
.y12b{bottom:1029.930000px;}
.y19b{bottom:1031.190000px;}
.y8b{bottom:1031.730000px;}
.yeb{bottom:1038.930000px;}
.y14f{bottom:1039.110000px;}
.y45{bottom:1039.290000px;}
.y16a{bottom:1040.370000px;}
.y11f{bottom:1046.670000px;}
.ycf{bottom:1047.030000px;}
.yc1{bottom:1047.930000px;}
.y19a{bottom:1048.110000px;}
.y28{bottom:1053.870000px;}
.ya6{bottom:1055.130000px;}
.y14e{bottom:1055.850000px;}
.y169{bottom:1057.290000px;}
.yc{bottom:1059.450000px;}
.y75{bottom:1062.690000px;}
.y57{bottom:1062.870000px;}
.y199{bottom:1064.850000px;}
.y12a{bottom:1067.190000px;}
.yea{bottom:1070.070000px;}
.y14c{bottom:1072.770000px;}
.y44{bottom:1077.810000px;}
.yce{bottom:1077.990000px;}
.y198{bottom:1081.770000px;}
.y168{bottom:1083.930000px;}
.y27{bottom:1085.010000px;}
.y105{bottom:1093.830000px;}
.yc0{bottom:1094.010000px;}
.yb{bottom:1095.810000px;}
.y14b{bottom:1099.410000px;}
.y8a{bottom:1099.770000px;}
.y74{bottom:1099.950000px;}
.ye9{bottom:1101.030000px;}
.ya5{bottom:1101.210000px;}
.y11e{bottom:1108.770000px;}
.y56{bottom:1108.950000px;}
.y26{bottom:1115.970000px;}
.y43{bottom:1117.050000px;}
.y167{bottom:1128.390000px;}
.ya{bottom:1134.720000px;}
.y25{bottom:1139.940000px;}
.y55{bottom:1140.120000px;}
.y14a{bottom:1144.080000px;}
.h21{height:15.465000px;}
.h22{height:15.645000px;}
.h17{height:16.725000px;}
.h1d{height:16.740000px;}
.h1f{height:16.761000px;}
.h16{height:16.905000px;}
.h1c{height:16.920000px;}
.h18{height:16.941000px;}
.h1b{height:16.942500px;}
.h19{height:17.085000px;}
.h15{height:25.725000px;}
.h23{height:25.761000px;}
.h14{height:25.905000px;}
.h1e{height:25.950000px;}
.h1a{height:38.320312px;}
.h6{height:40.796145px;}
.h24{height:51.086250px;}
.hc{height:51.333750px;}
.h12{height:52.628906px;}
.h20{height:53.709961px;}
.h11{height:54.213750px;}
.h5{height:55.347277px;}
.h13{height:56.320312px;}
.hd{height:62.327813px;}
.hf{height:65.884219px;}
.h10{height:69.086250px;}
.hb{height:75.093750px;}
.h4{height:83.058767px;}
.ha{height:87.859687px;}
.h3{height:90.845567px;}
.he{height:91.177734px;}
.h9{height:99.874688px;}
.h7{height:119.236844px;}
.h2{height:181.439546px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:57.585000px;}
.we{width:59.781000px;}
.w10{width:59.796000px;}
.w11{width:59.925000px;}
.wf{width:59.940000px;}
.w21{width:60.105000px;}
.w1f{width:60.120000px;}
.w22{width:60.141000px;}
.w20{width:60.156000px;}
.w4{width:63.525000px;}
.wa{width:63.705000px;}
.w8{width:63.720000px;}
.w6{width:63.741000px;}
.w7{width:63.900000px;}
.w9{width:63.936000px;}
.w1a{width:64.065000px;}
.w18{width:65.145000px;}
.w16{width:65.160000px;}
.w19{width:65.181000px;}
.w13{width:65.325000px;}
.w15{width:65.361000px;}
.w17{width:65.376000px;}
.wb{width:93.771000px;}
.w12{width:94.491000px;}
.w3{width:106.731000px;}
.w23{width:117.345000px;}
.w1b{width:159.471000px;}
.w26{width:197.475000px;}
.w25{width:197.490000px;}
.w1d{width:202.701000px;}
.w24{width:285.501000px;}
.w1e{width:477.795000px;}
.w5{width:510.210000px;}
.w14{width:520.650000px;}
.w1c{width:521.190000px;}
.wd{width:539.010000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.503800px;}
.x1e{left:15.645000px;}
.x24{left:16.740000px;}
.x3b{left:18.351000px;}
.x23{left:23.205000px;}
.x2b{left:24.645000px;}
.x2d{left:27.900000px;}
.x26{left:30.420000px;}
.x32{left:33.105000px;}
.x30{left:41.925000px;}
.x31{left:44.130000px;}
.x21{left:46.791000px;}
.x22{left:49.485000px;}
.x2f{left:51.690000px;}
.x12{left:53.265000px;}
.x41{left:64.605000px;}
.x3f{left:68.385000px;}
.x4{left:70.157400px;}
.x49{left:72.345000px;}
.x47{left:74.550000px;}
.x3c{left:79.725000px;}
.x57{left:81.750000px;}
.x58{left:89.310000px;}
.x1c{left:101.385000px;}
.xa{left:106.236000px;}
.x8{left:111.456000px;}
.x54{left:113.745000px;}
.x5b{left:114.825000px;}
.x59{left:116.445000px;}
.x3e{left:117.570000px;}
.x5a{left:122.385000px;}
.x1{left:126.113250px;}
.xb{left:127.476000px;}
.xc{left:133.236000px;}
.x44{left:145.830000px;}
.x48{left:157.170000px;}
.xd{left:160.230000px;}
.x46{left:176.430000px;}
.x40{left:190.830000px;}
.x42{left:193.890000px;}
.x1d{left:195.165000px;}
.x43{left:196.410000px;}
.x45{left:197.490000px;}
.x33{left:200.745000px;}
.x1a{left:207.060000px;}
.x4b{left:208.110000px;}
.xf{left:212.985000px;}
.x11{left:224.340000px;}
.x20{left:238.740000px;}
.x1f{left:252.765000px;}
.x9{left:253.830000px;}
.x3d{left:260.520000px;}
.x34{left:266.085000px;}
.x10{left:276.525000px;}
.x3{left:289.644000px;}
.x4a{left:308.955000px;}
.x6{left:313.095000px;}
.x35{left:331.455000px;}
.x13{left:340.275000px;}
.x2{left:345.508702px;}
.x4c{left:369.075000px;}
.x25{left:372.495000px;}
.x55{left:391.755000px;}
.x36{left:396.615000px;}
.x14{left:404.175000px;}
.x4d{left:429.015000px;}
.x27{left:432.435000px;}
.x7{left:446.475000px;}
.x37{left:461.775000px;}
.x15{left:467.895000px;}
.x4e{left:489.180000px;}
.x28{left:492.240000px;}
.x38{left:527.160000px;}
.x16{left:531.840000px;}
.x4f{left:549.120000px;}
.x29{left:552.180000px;}
.x56{left:589.260000px;}
.x39{left:592.320000px;}
.x17{left:595.560000px;}
.x50{left:609.240000px;}
.x2a{left:612.120000px;}
.x5c{left:653.505000px;}
.x3a{left:657.480000px;}
.x18{left:659.280000px;}
.x51{left:669.390000px;}
.x2c{left:671.910000px;}
.x52{left:680.550000px;}
.x53{left:699.630000px;}
.x19{left:723.030000px;}
.x2e{left:731.850000px;}
.x1b{left:763.350000px;}
.xe{left:778.470000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.va{vertical-align:-18.560000pt;}
.vc{vertical-align:-16.000000pt;}
.v5{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.560000pt;}
.v9{vertical-align:5.120000pt;}
.v1{vertical-align:7.558025pt;}
.vb{vertical-align:16.000000pt;}
.v7{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v6{vertical-align:23.680000pt;}
.ls14{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.624000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.416000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls25{letter-spacing:-0.224000pt;}
.ls15{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.161067pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.090667pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls27{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.199040pt;}
.ls20{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.239360pt;}
.ls2{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:1.344000pt;}
.ls22{letter-spacing:1.376000pt;}
.ls18{letter-spacing:3.968000pt;}
.ls17{letter-spacing:4.608000pt;}
.ls2a{letter-spacing:6.496000pt;}
.ls28{letter-spacing:7.776000pt;}
.ls11{letter-spacing:22.639360pt;}
.ls12{letter-spacing:242.799360pt;}
.ls1e{letter-spacing:754.831787pt;}
.ws15{word-spacing:-64.000000pt;}
.ws2{word-spacing:-23.644037pt;}
.ws3{word-spacing:-23.551877pt;}
.ws18{word-spacing:-18.240000pt;}
.wsc{word-spacing:-18.048000pt;}
.ws10{word-spacing:-17.920000pt;}
.wsb{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.408000pt;}
.ws17{word-spacing:-17.344000pt;}
.ws16{word-spacing:-17.152000pt;}
.ws11{word-spacing:-17.024000pt;}
.ws12{word-spacing:-16.960000pt;}
.ws1{word-spacing:-16.150323pt;}
.ws27{word-spacing:-13.664000pt;}
.ws1a{word-spacing:-13.568000pt;}
.ws1b{word-spacing:-13.536000pt;}
.ws1c{word-spacing:-13.344000pt;}
.ws19{word-spacing:-13.248000pt;}
.ws22{word-spacing:-13.120000pt;}
.ws23{word-spacing:-12.928000pt;}
.ws24{word-spacing:-12.896000pt;}
.ws25{word-spacing:-12.720000pt;}
.ws9{word-spacing:-11.920640pt;}
.wsf{word-spacing:-11.759573pt;}
.ws13{word-spacing:-11.721707pt;}
.ws4{word-spacing:-11.272455pt;}
.ws14{word-spacing:-11.120640pt;}
.ws5{word-spacing:-9.969163pt;}
.ws20{word-spacing:-9.184000pt;}
.ws1d{word-spacing:-8.960000pt;}
.ws1e{word-spacing:-8.896000pt;}
.ws21{word-spacing:-8.832000pt;}
.ws1f{word-spacing:-8.672000pt;}
.ws26{word-spacing:-8.384000pt;}
.ws7{word-spacing:-1.119511pt;}
.ws6{word-spacing:-1.015371pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:11.946637pt;}
._1a{margin-left:-4.629333pt;}
._28{margin-left:-3.315200pt;}
._a{margin-left:-1.966720pt;}
._6{margin-left:-1.048320pt;}
._5{width:1.067520pt;}
._17{width:2.438400pt;}
._16{width:3.392000pt;}
._8{width:4.638720pt;}
._9{width:5.873920pt;}
._2f{width:6.768640pt;}
._25{width:7.666133pt;}
._1f{width:8.973867pt;}
._1e{width:10.090667pt;}
._20{width:11.019733pt;}
._1c{width:12.096000pt;}
._1d{width:13.546667pt;}
._2a{width:14.697813pt;}
._29{width:16.064000pt;}
._1{width:18.389386pt;}
._14{width:20.160000pt;}
._1b{width:21.312000pt;}
._0{width:22.770086pt;}
._15{width:24.704000pt;}
._7{width:26.062080pt;}
._2d{width:27.462400pt;}
._2e{width:29.103787pt;}
._31{width:30.372693pt;}
._27{width:32.123733pt;}
._10{width:35.938133pt;}
._18{width:39.040000pt;}
._19{width:40.266667pt;}
._30{width:48.746667pt;}
._2c{width:64.938667pt;}
._21{width:66.368000pt;}
._22{width:67.554987pt;}
._32{width:84.320000pt;}
._23{width:94.888533pt;}
._4{width:155.083593pt;}
._2b{width:206.912000pt;}
._f{width:217.089493pt;}
._26{width:245.312000pt;}
._24{width:426.175573pt;}
._13{width:750.346667pt;}
._c{width:1196.674133pt;}
._11{width:1391.938133pt;}
._e{width:1442.562133pt;}
._b{width:1687.573333pt;}
._d{width:1791.125333pt;}
._12{width:2000.981333pt;}
._2{width:2326.136214pt;}
._3{width:2426.460792pt;}
.fsd{font-size:32.000000pt;}
.fs4{font-size:37.193067pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:68.235200pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:100.954133pt;}
.fs2{font-size:102.399467pt;}
.fs1{font-size:111.999467pt;}
.fs0{font-size:213.332800pt;}
.y9{bottom:-33.637506pt;}
.y8{bottom:-22.299200pt;}
.y0{bottom:0.000000pt;}
.y19e{bottom:2.560000pt;}
.y1a0{bottom:2.720000pt;}
.y141{bottom:2.866667pt;}
.y13a{bottom:2.880000pt;}
.y18e{bottom:2.906667pt;}
.y143{bottom:3.026667pt;}
.y137{bottom:3.040000pt;}
.y13e{bottom:3.066667pt;}
.y140{bottom:3.186667pt;}
.y155{bottom:3.200000pt;}
.y18c{bottom:3.226667pt;}
.y18a{bottom:3.680000pt;}
.y18d{bottom:3.706667pt;}
.y18f{bottom:3.826667pt;}
.y188{bottom:3.840000pt;}
.y1ad{bottom:6.866667pt;}
.y134{bottom:6.880000pt;}
.y14d{bottom:7.040000pt;}
.y1ae{bottom:10.866667pt;}
.y135{bottom:10.880000pt;}
.y132{bottom:11.040000pt;}
.y9c{bottom:79.392000pt;}
.y89{bottom:81.472000pt;}
.y104{bottom:84.032000pt;}
.y149{bottom:86.112000pt;}
.y11d{bottom:88.192000pt;}
.y166{bottom:89.952000pt;}
.y197{bottom:102.912000pt;}
.y9b{bottom:107.072000pt;}
.ybf{bottom:107.712000pt;}
.y103{bottom:111.552000pt;}
.ye8{bottom:112.032000pt;}
.y11c{bottom:115.872000pt;}
.y73{bottom:118.592000pt;}
.y165{bottom:120.512000pt;}
.y148{bottom:120.672000pt;}
.y88{bottom:122.432000pt;}
.y196{bottom:132.992000pt;}
.y102{bottom:139.226667pt;}
.y11b{bottom:143.386667pt;}
.ye7{bottom:144.826667pt;}
.y9a{bottom:147.866667pt;}
.ybe{bottom:148.346667pt;}
.y164{bottom:150.906667pt;}
.y147{bottom:155.226667pt;}
.y72{bottom:159.386667pt;}
.y87{bottom:163.226667pt;}
.y101{bottom:166.746667pt;}
.y11a{bottom:171.066667pt;}
.y99{bottom:175.546667pt;}
.ybd{bottom:176.026667pt;}
.ye6{bottom:177.626667pt;}
.y1b4{bottom:179.386667pt;}
.y163{bottom:181.466667pt;}
.y195{bottom:182.426667pt;}
.y71{bottom:187.066667pt;}
.y146{bottom:189.626667pt;}
.y100{bottom:194.426667pt;}
.y194{bottom:196.346667pt;}
.y1b3{bottom:201.306667pt;}
.y98{bottom:203.066667pt;}
.y119{bottom:203.866667pt;}
.y86{bottom:204.186667pt;}
.ye5{bottom:210.746667pt;}
.y145{bottom:212.506667pt;}
.y193{bottom:214.106667pt;}
.y70{bottom:214.586667pt;}
.y162{bottom:216.186667pt;}
.ybc{bottom:216.986667pt;}
.y42{bottom:218.746667pt;}
.y1b2{bottom:219.066667pt;}
.yff{bottom:221.946667pt;}
.y118{bottom:226.266667pt;}
.y192{bottom:229.960000pt;}
.y97{bottom:230.746667pt;}
.y1b1{bottom:234.920000pt;}
.y6f{bottom:242.266667pt;}
.y144{bottom:244.026667pt;}
.ybb{bottom:244.506667pt;}
.y85{bottom:244.986667pt;}
.y191{bottom:245.000000pt;}
.y161{bottom:245.946667pt;}
.y41{bottom:246.266667pt;}
.y1b0{bottom:249.960000pt;}
.y117{bottom:253.786667pt;}
.ye4{bottom:254.266667pt;}
.y24{bottom:256.346667pt;}
.y142{bottom:259.880000pt;}
.y190{bottom:260.040000pt;}
.yfe{bottom:263.066667pt;}
.y1af{bottom:265.000000pt;}
.y6e{bottom:269.786667pt;}
.y96{bottom:271.706667pt;}
.yba{bottom:272.186667pt;}
.y84{bottom:272.666667pt;}
.y40{bottom:273.786667pt;}
.y13f{bottom:275.080000pt;}
.y160{bottom:276.506667pt;}
.y1ac{bottom:280.040000pt;}
.y116{bottom:281.466667pt;}
.ye3{bottom:283.386667pt;}
.y13d{bottom:289.960000pt;}
.y18b{bottom:290.120000pt;}
.y15f{bottom:290.426667pt;}
.y23{bottom:291.106667pt;}
.y6d{bottom:297.506667pt;}
.y95{bottom:299.426667pt;}
.yb9{bottom:299.746667pt;}
.y3f{bottom:301.506667pt;}
.y1ab{bottom:303.746667pt;}
.yfd{bottom:303.906667pt;}
.y15e{bottom:304.226667pt;}
.y13c{bottom:305.026667pt;}
.y115{bottom:309.026667pt;}
.ye2{bottom:311.746667pt;}
.y83{bottom:313.506667pt;}
.y22{bottom:318.146667pt;}
.y13b{bottom:320.066667pt;}
.y6c{bottom:325.026667pt;}
.y15d{bottom:327.746667pt;}
.y3e{bottom:329.026667pt;}
.y139{bottom:335.106667pt;}
.y114{bottom:336.546667pt;}
.y94{bottom:340.226667pt;}
.ye1{bottom:340.386667pt;}
.yb8{bottom:340.706667pt;}
.y82{bottom:341.186667pt;}
.y1aa{bottom:343.266667pt;}
.y21{bottom:344.706667pt;}
.yfc{bottom:344.866667pt;}
.ycd{bottom:349.986667pt;}
.y189{bottom:350.146667pt;}
.y6b{bottom:352.706667pt;}
.y3d{bottom:356.706667pt;}
.y1c6{bottom:358.946667pt;}
.y113{bottom:364.226667pt;}
.y138{bottom:365.026667pt;}
.yb7{bottom:368.546667pt;}
.y81{bottom:368.706667pt;}
.ye0{bottom:369.186667pt;}
.y20{bottom:371.106667pt;}
.yfb{bottom:372.386667pt;}
.y93{bottom:373.186667pt;}
.y1c5{bottom:374.946667pt;}
.y136{bottom:380.066667pt;}
.y1a9{bottom:380.546667pt;}
.y3c{bottom:384.866667pt;}
.y1c4{bottom:389.986667pt;}
.y1f{bottom:390.786667pt;}
.y112{bottom:392.546667pt;}
.y6a{bottom:393.506667pt;}
.y133{bottom:395.106667pt;}
.y80{bottom:396.386667pt;}
.y1c3{bottom:404.866667pt;}
.yb6{bottom:409.186667pt;}
.y187{bottom:410.146667pt;}
.ydf{bottom:411.106667pt;}
.y1a8{bottom:411.426667pt;}
.y3b{bottom:412.386667pt;}
.yfa{bottom:413.506667pt;}
.y92{bottom:414.146667pt;}
.y1e{bottom:417.506667pt;}
.ycc{bottom:418.306667pt;}
.y131{bottom:418.626667pt;}
.y1c2{bottom:419.906667pt;}
.y69{bottom:421.186667pt;}
.y111{bottom:421.986667pt;}
.y186{bottom:425.026667pt;}
.y1c1{bottom:434.946667pt;}
.yb5{bottom:437.026667pt;}
.y1d{bottom:437.186667pt;}
.y7f{bottom:437.346667pt;}
.yde{bottom:438.786667pt;}
.y3a{bottom:440.066667pt;}
.y68{bottom:448.706667pt;}
.y91{bottom:449.826667pt;}
.y1c0{bottom:449.986667pt;}
.y110{bottom:450.626667pt;}
.yf9{bottom:454.306667pt;}
.y185{bottom:455.106667pt;}
.y130{bottom:458.306667pt;}
.ycb{bottom:459.266667pt;}
.y7e{bottom:465.026667pt;}
.y1c{bottom:465.186667pt;}
.y1bf{bottom:465.666667pt;}
.ydd{bottom:466.306667pt;}
.y39{bottom:467.586667pt;}
.y54{bottom:469.826667pt;}
.y184{bottom:470.146667pt;}
.y67{bottom:476.386667pt;}
.y10f{bottom:478.146667pt;}
.yb4{bottom:483.106667pt;}
.y183{bottom:485.026667pt;}
.yca{bottom:486.946667pt;}
.y90{bottom:490.786667pt;}
.y1b{bottom:493.026667pt;}
.ydc{bottom:493.986667pt;}
.y38{bottom:495.266667pt;}
.y12f{bottom:495.586667pt;}
.yf8{bottom:497.826667pt;}
.y66{bottom:503.906667pt;}
.y1be{bottom:505.186667pt;}
.y7d{bottom:505.826667pt;}
.ya4{bottom:506.146667pt;}
.y182{bottom:508.706667pt;}
.y53{bottom:510.466667pt;}
.yc9{bottom:514.466667pt;}
.yb3{bottom:518.626667pt;}
.y1bd{bottom:519.106667pt;}
.y1a{bottom:520.866667pt;}
.ydb{bottom:521.506667pt;}
.y37{bottom:522.786667pt;}
.y10e{bottom:523.906667pt;}
.y12e{bottom:526.306667pt;}
.yf7{bottom:526.466667pt;}
.y65{bottom:531.613333pt;}
.y1cc{bottom:532.573333pt;}
.y7c{bottom:533.533333pt;}
.y52{bottom:538.173333pt;}
.y12d{bottom:540.253333pt;}
.yb2{bottom:546.493333pt;}
.ya3{bottom:546.973333pt;}
.y181{bottom:548.413333pt;}
.y19{bottom:548.733333pt;}
.y1bc{bottom:550.173333pt;}
.y36{bottom:550.493333pt;}
.yf6{bottom:555.293333pt;}
.yc8{bottom:555.453333pt;}
.y64{bottom:559.133333pt;}
.y10d{bottom:560.253333pt;}
.y180{bottom:562.173333pt;}
.yda{bottom:562.653333pt;}
.y51{bottom:565.693333pt;}
.y7b{bottom:566.333333pt;}
.y12c{bottom:567.453333pt;}
.y1cb{bottom:568.893333pt;}
.y1bb{bottom:570.653333pt;}
.y18{bottom:571.453333pt;}
.y35{bottom:578.013333pt;}
.yc7{bottom:583.133333pt;}
.yf5{bottom:583.933333pt;}
.y1ca{bottom:586.333333pt;}
.y63{bottom:586.813333pt;}
.ya2{bottom:587.773333pt;}
.yb1{bottom:592.573333pt;}
.y50{bottom:593.373333pt;}
.yd9{bottom:596.573333pt;}
.y17f{bottom:599.453333pt;}
.y10c{bottom:601.053333pt;}
.y7a{bottom:602.173333pt;}
.y1ba{bottom:605.373333pt;}
.y34{bottom:605.693333pt;}
.y7{bottom:612.510300pt;}
.yf4{bottom:612.573333pt;}
.y17{bottom:614.013333pt;}
.y62{bottom:614.333333pt;}
.ya1{bottom:615.293333pt;}
.y8e{bottom:615.613333pt;}
.y4f{bottom:620.893333pt;}
.y17e{bottom:622.173333pt;}
.y1c9{bottom:623.773333pt;}
.yc6{bottom:624.093333pt;}
.yb0{bottom:628.413333pt;}
.y10b{bottom:628.573333pt;}
.y6{bottom:631.029333pt;}
.y33{bottom:633.213333pt;}
.y1b9{bottom:635.133333pt;}
.y17d{bottom:636.093333pt;}
.yd8{bottom:638.813333pt;}
.y129{bottom:639.453333pt;}
.y16{bottom:641.853333pt;}
.y61{bottom:642.013333pt;}
.y79{bottom:643.133333pt;}
.y4e{bottom:648.573333pt;}
.y1c8{bottom:653.693333pt;}
.y17c{bottom:653.853333pt;}
.y8d{bottom:656.253333pt;}
.yf3{bottom:659.933333pt;}
.y32{bottom:660.893333pt;}
.y1b8{bottom:662.493333pt;}
.y5{bottom:662.629466pt;}
.yd7{bottom:667.453333pt;}
.yaf{bottom:669.213333pt;}
.y60{bottom:669.533333pt;}
.y17b{bottom:669.693333pt;}
.yc5{bottom:670.173333pt;}
.y15{bottom:671.453333pt;}
.y15c{bottom:671.613333pt;}
.y4d{bottom:676.093333pt;}
.y128{bottom:680.093333pt;}
.y78{bottom:683.773333pt;}
.y17a{bottom:684.733333pt;}
.y1c7{bottom:687.933333pt;}
.y4{bottom:688.101333pt;}
.y31{bottom:688.413333pt;}
.yd6{bottom:695.133333pt;}
.y5f{bottom:697.213333pt;}
.yf2{bottom:698.173333pt;}
.yc4{bottom:698.333333pt;}
.y179{bottom:699.773333pt;}
.y4c{bottom:703.773333pt;}
.y15b{bottom:704.733333pt;}
.y14{bottom:707.133333pt;}
.y127{bottom:707.773333pt;}
.yae{bottom:710.013333pt;}
.y77{bottom:711.453333pt;}
.y178{bottom:714.813333pt;}
.y30{bottom:715.933333pt;}
.yd5{bottom:723.773333pt;}
.y5e{bottom:724.733333pt;}
.yf1{bottom:726.813333pt;}
.y177{bottom:729.693333pt;}
.y4b{bottom:731.293333pt;}
.y126{bottom:735.293333pt;}
.yad{bottom:737.693333pt;}
.ya0{bottom:738.973333pt;}
.yc3{bottom:739.133333pt;}
.y13{bottom:739.293333pt;}
.y2f{bottom:743.613333pt;}
.y176{bottom:744.733333pt;}
.y15a{bottom:748.253333pt;}
.y5d{bottom:752.413333pt;}
.y10a{bottom:752.573333pt;}
.yf0{bottom:755.453333pt;}
.y4a{bottom:758.973333pt;}
.y175{bottom:759.773333pt;}
.y1a7{bottom:761.853333pt;}
.y125{bottom:762.973333pt;}
.yac{bottom:765.213333pt;}
.y12{bottom:765.693333pt;}
.yd4{bottom:765.853333pt;}
.y159{bottom:771.013333pt;}
.y2e{bottom:771.173333pt;}
.y174{bottom:774.853333pt;}
.y1a6{bottom:777.413333pt;}
.y5c{bottom:779.973333pt;}
.yef{bottom:784.293333pt;}
.y158{bottom:784.933333pt;}
.y49{bottom:786.533333pt;}
.y173{bottom:789.733333pt;}
.y124{bottom:790.533333pt;}
.y1a5{bottom:791.173333pt;}
.yab{bottom:792.933333pt;}
.y109{bottom:793.573333pt;}
.y11{bottom:795.013333pt;}
.y3{bottom:796.044000pt;}
.y2d{bottom:798.853333pt;}
.y157{bottom:802.693333pt;}
.y172{bottom:804.773333pt;}
.y1a4{bottom:804.933333pt;}
.yd3{bottom:806.853333pt;}
.y5b{bottom:807.653333pt;}
.y9f{bottom:807.813333pt;}
.yee{bottom:812.933333pt;}
.y48{bottom:814.213333pt;}
.y1b7{bottom:815.973333pt;}
.y123{bottom:818.213333pt;}
.y156{bottom:818.533333pt;}
.y1a3{bottom:818.853333pt;}
.y171{bottom:819.813333pt;}
.yaa{bottom:820.453333pt;}
.y10{bottom:821.413333pt;}
.y2c{bottom:826.373333pt;}
.y1a2{bottom:832.613333pt;}
.y154{bottom:833.573333pt;}
.y108{bottom:834.213333pt;}
.yd2{bottom:834.373333pt;}
.y170{bottom:834.853333pt;}
.y5a{bottom:835.173333pt;}
.y47{bottom:841.733333pt;}
.y122{bottom:845.733333pt;}
.y1a1{bottom:846.373333pt;}
.y1b6{bottom:846.853333pt;}
.ya9{bottom:848.133333pt;}
.y8c{bottom:848.453333pt;}
.y9e{bottom:848.613333pt;}
.y2{bottom:849.337467pt;}
.y16f{bottom:849.733333pt;}
.yf{bottom:850.693333pt;}
.y2b{bottom:854.053333pt;}
.y19f{bottom:860.133333pt;}
.yed{bottom:860.293333pt;}
.y107{bottom:861.893333pt;}
.yd1{bottom:862.053333pt;}
.y8f{bottom:862.853333pt;}
.y153{bottom:863.653333pt;}
.y16e{bottom:864.773333pt;}
.ye{bottom:871.813333pt;}
.y121{bottom:874.053333pt;}
.y1b5{bottom:874.213333pt;}
.ya8{bottom:875.653333pt;}
.y76{bottom:876.133333pt;}
.y59{bottom:876.293333pt;}
.y152{bottom:878.533333pt;}
.y16d{bottom:879.813333pt;}
.y9d{bottom:881.413333pt;}
.y2a{bottom:881.573333pt;}
.y46{bottom:882.853333pt;}
.y19d{bottom:887.813333pt;}
.y106{bottom:889.413333pt;}
.yd0{bottom:889.573333pt;}
.yc2{bottom:890.373333pt;}
.y151{bottom:893.573333pt;}
.y16c{bottom:894.853333pt;}
.yec{bottom:895.973333pt;}
.y19c{bottom:901.573333pt;}
.y1{bottom:902.702667pt;}
.y120{bottom:902.853333pt;}
.ya7{bottom:903.333333pt;}
.y58{bottom:903.813333pt;}
.y150{bottom:908.613333pt;}
.y29{bottom:909.253333pt;}
.yd{bottom:909.573333pt;}
.y16b{bottom:909.733333pt;}
.y12b{bottom:915.493333pt;}
.y19b{bottom:916.613333pt;}
.y8b{bottom:917.093333pt;}
.yeb{bottom:923.493333pt;}
.y14f{bottom:923.653333pt;}
.y45{bottom:923.813333pt;}
.y16a{bottom:924.773333pt;}
.y11f{bottom:930.373333pt;}
.ycf{bottom:930.693333pt;}
.yc1{bottom:931.493333pt;}
.y19a{bottom:931.653333pt;}
.y28{bottom:936.773333pt;}
.ya6{bottom:937.893333pt;}
.y14e{bottom:938.533333pt;}
.y169{bottom:939.813333pt;}
.yc{bottom:941.733333pt;}
.y75{bottom:944.613333pt;}
.y57{bottom:944.773333pt;}
.y199{bottom:946.533333pt;}
.y12a{bottom:948.613333pt;}
.yea{bottom:951.173333pt;}
.y14c{bottom:953.573333pt;}
.y44{bottom:958.053333pt;}
.yce{bottom:958.213333pt;}
.y198{bottom:961.573333pt;}
.y168{bottom:963.493333pt;}
.y27{bottom:964.453333pt;}
.y105{bottom:972.293333pt;}
.yc0{bottom:972.453333pt;}
.yb{bottom:974.053333pt;}
.y14b{bottom:977.253333pt;}
.y8a{bottom:977.573333pt;}
.y74{bottom:977.733333pt;}
.ye9{bottom:978.693333pt;}
.ya5{bottom:978.853333pt;}
.y11e{bottom:985.573333pt;}
.y56{bottom:985.733333pt;}
.y26{bottom:991.973333pt;}
.y43{bottom:992.933333pt;}
.y167{bottom:1003.013333pt;}
.ya{bottom:1008.640000pt;}
.y25{bottom:1013.280000pt;}
.y55{bottom:1013.440000pt;}
.y14a{bottom:1016.960000pt;}
.h21{height:13.746667pt;}
.h22{height:13.906667pt;}
.h17{height:14.866667pt;}
.h1d{height:14.880000pt;}
.h1f{height:14.898667pt;}
.h16{height:15.026667pt;}
.h1c{height:15.040000pt;}
.h18{height:15.058667pt;}
.h1b{height:15.060000pt;}
.h19{height:15.186667pt;}
.h15{height:22.866667pt;}
.h23{height:22.898667pt;}
.h14{height:23.026667pt;}
.h1e{height:23.066667pt;}
.h1a{height:34.062500pt;}
.h6{height:36.263240pt;}
.h24{height:45.410000pt;}
.hc{height:45.630000pt;}
.h12{height:46.781250pt;}
.h20{height:47.742188pt;}
.h11{height:48.190000pt;}
.h5{height:49.197579pt;}
.h13{height:50.062500pt;}
.hd{height:55.402500pt;}
.hf{height:58.563750pt;}
.h10{height:61.410000pt;}
.hb{height:66.750000pt;}
.h4{height:73.830015pt;}
.ha{height:78.097500pt;}
.h3{height:80.751615pt;}
.he{height:81.046875pt;}
.h9{height:88.777500pt;}
.h7{height:105.988305pt;}
.h2{height:161.279597pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:51.186667pt;}
.we{width:53.138667pt;}
.w10{width:53.152000pt;}
.w11{width:53.266667pt;}
.wf{width:53.280000pt;}
.w21{width:53.426667pt;}
.w1f{width:53.440000pt;}
.w22{width:53.458667pt;}
.w20{width:53.472000pt;}
.w4{width:56.466667pt;}
.wa{width:56.626667pt;}
.w8{width:56.640000pt;}
.w6{width:56.658667pt;}
.w7{width:56.800000pt;}
.w9{width:56.832000pt;}
.w1a{width:56.946667pt;}
.w18{width:57.906667pt;}
.w16{width:57.920000pt;}
.w19{width:57.938667pt;}
.w13{width:58.066667pt;}
.w15{width:58.098667pt;}
.w17{width:58.112000pt;}
.wb{width:83.352000pt;}
.w12{width:83.992000pt;}
.w3{width:94.872000pt;}
.w23{width:104.306667pt;}
.w1b{width:141.752000pt;}
.w26{width:175.533333pt;}
.w25{width:175.546667pt;}
.w1d{width:180.178667pt;}
.w24{width:253.778667pt;}
.w1e{width:424.706667pt;}
.w5{width:453.520000pt;}
.w14{width:462.800000pt;}
.w1c{width:463.280000pt;}
.wd{width:479.120000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.558933pt;}
.x1e{left:13.906667pt;}
.x24{left:14.880000pt;}
.x3b{left:16.312000pt;}
.x23{left:20.626667pt;}
.x2b{left:21.906667pt;}
.x2d{left:24.800000pt;}
.x26{left:27.040000pt;}
.x32{left:29.426667pt;}
.x30{left:37.266667pt;}
.x31{left:39.226667pt;}
.x21{left:41.592000pt;}
.x22{left:43.986667pt;}
.x2f{left:45.946667pt;}
.x12{left:47.346667pt;}
.x41{left:57.426667pt;}
.x3f{left:60.786667pt;}
.x4{left:62.362133pt;}
.x49{left:64.306667pt;}
.x47{left:66.266667pt;}
.x3c{left:70.866667pt;}
.x57{left:72.666667pt;}
.x58{left:79.386667pt;}
.x1c{left:90.120000pt;}
.xa{left:94.432000pt;}
.x8{left:99.072000pt;}
.x54{left:101.106667pt;}
.x5b{left:102.066667pt;}
.x59{left:103.506667pt;}
.x3e{left:104.506667pt;}
.x5a{left:108.786667pt;}
.x1{left:112.100667pt;}
.xb{left:113.312000pt;}
.xc{left:118.432000pt;}
.x44{left:129.626667pt;}
.x48{left:139.706667pt;}
.xd{left:142.426667pt;}
.x46{left:156.826667pt;}
.x40{left:169.626667pt;}
.x42{left:172.346667pt;}
.x1d{left:173.480000pt;}
.x43{left:174.586667pt;}
.x45{left:175.546667pt;}
.x33{left:178.440000pt;}
.x1a{left:184.053333pt;}
.x4b{left:184.986667pt;}
.xf{left:189.320000pt;}
.x11{left:199.413333pt;}
.x20{left:212.213333pt;}
.x1f{left:224.680000pt;}
.x9{left:225.626667pt;}
.x3d{left:231.573333pt;}
.x34{left:236.520000pt;}
.x10{left:245.800000pt;}
.x3{left:257.461333pt;}
.x4a{left:274.626667pt;}
.x6{left:278.306667pt;}
.x35{left:294.626667pt;}
.x13{left:302.466667pt;}
.x2{left:307.118846pt;}
.x4c{left:328.066667pt;}
.x25{left:331.106667pt;}
.x55{left:348.226667pt;}
.x36{left:352.546667pt;}
.x14{left:359.266667pt;}
.x4d{left:381.346667pt;}
.x27{left:384.386667pt;}
.x7{left:396.866667pt;}
.x37{left:410.466667pt;}
.x15{left:415.906667pt;}
.x4e{left:434.826667pt;}
.x28{left:437.546667pt;}
.x38{left:468.586667pt;}
.x16{left:472.746667pt;}
.x4f{left:488.106667pt;}
.x29{left:490.826667pt;}
.x56{left:523.786667pt;}
.x39{left:526.506667pt;}
.x17{left:529.386667pt;}
.x50{left:541.546667pt;}
.x2a{left:544.106667pt;}
.x5c{left:580.893333pt;}
.x3a{left:584.426667pt;}
.x18{left:586.026667pt;}
.x51{left:595.013333pt;}
.x2c{left:597.253333pt;}
.x52{left:604.933333pt;}
.x53{left:621.893333pt;}
.x19{left:642.693333pt;}
.x2e{left:650.533333pt;}
.x1b{left:678.533333pt;}
.xe{left:691.973333pt;}
}




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