
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_46042ea15cb7355fb4f24374.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_0d631d57b93e173b2e4d799f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_53585887dd71b86f8dee5ba8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_38ccbb7b3a3276e4c70f502f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_b6891de30d1344beb2c1a3ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_bb5914afa085cbc1742532ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_eacd020e29481d2138f15879.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m6{transform:matrix(0.174758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174758,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186893,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199030,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235438,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373775,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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.ls2e{letter-spacing:-1.566000px;}
.ls3a{letter-spacing:-0.900000px;}
.ls38{letter-spacing:-0.888000px;}
.ls1f{letter-spacing:-0.513600px;}
.ls43{letter-spacing:-0.485400px;}
.ls41{letter-spacing:-0.399000px;}
.ls3d{letter-spacing:-0.375000px;}
.ls34{letter-spacing:-0.332400px;}
.ls30{letter-spacing:-0.327600px;}
.ls39{letter-spacing:-0.319200px;}
.ls4a{letter-spacing:-0.244200px;}
.ls18{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls20{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.166200px;}
.ls9{letter-spacing:-0.160800px;}
.ls12{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.135000px;}
.ls2f{letter-spacing:-0.132600px;}
.ls16{letter-spacing:-0.125400px;}
.lsb{letter-spacing:-0.121200px;}
.ls49{letter-spacing:-0.096600px;}
.ls5{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls33{letter-spacing:-0.083400px;}
.ls3e{letter-spacing:-0.067200px;}
.ls40{letter-spacing:-0.053820px;}
.ls42{letter-spacing:-0.045720px;}
.ls13{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.011160px;}
.ls19{letter-spacing:-0.008280px;}
.ls3c{letter-spacing:-0.003888px;}
.ls31{letter-spacing:-0.003408px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.041760px;}
.ls35{letter-spacing:0.043860px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.074160px;}
.ls28{letter-spacing:0.087131px;}
.ls2{letter-spacing:0.090000px;}
.ls27{letter-spacing:0.090600px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.096010px;}
.ls1d{letter-spacing:0.115800px;}
.ls17{letter-spacing:0.116400px;}
.ls24{letter-spacing:0.118830px;}
.ls23{letter-spacing:0.121800px;}
.ls26{letter-spacing:0.122191px;}
.ls44{letter-spacing:0.143400px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.146400px;}
.ls32{letter-spacing:0.148800px;}
.ls29{letter-spacing:0.149052px;}
.ls2d{letter-spacing:0.163200px;}
.ls36{letter-spacing:0.168478px;}
.lsf{letter-spacing:0.173400px;}
.ls15{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.199200px;}
.ls21{letter-spacing:0.202200px;}
.ls2a{letter-spacing:0.202569px;}
.ls37{letter-spacing:0.209131px;}
.ls2c{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.402738px;}
.ls3b{letter-spacing:0.469800px;}
.ls3f{letter-spacing:0.486600px;}
.ls1b{letter-spacing:0.540600px;}
.ls1e{letter-spacing:19.533600px;}
.ls48{letter-spacing:29.973600px;}
.ls46{letter-spacing:47.726640px;}
.ls45{letter-spacing:80.846640px;}
.ls47{letter-spacing:157.413600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.287400px;}
.ws6{word-spacing:-14.493600px;}
.ws2d{word-spacing:-14.447880px;}
.ws12{word-spacing:-14.372400px;}
.ws2b{word-spacing:-13.713000px;}
.ws26{word-spacing:-13.696200px;}
.ws22{word-spacing:-13.461000px;}
.ws1b{word-spacing:-13.428600px;}
.wsb{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws24{word-spacing:-13.389600px;}
.ws2f{word-spacing:-13.369800px;}
.ws1f{word-spacing:-13.348200px;}
.ws11{word-spacing:-13.342800px;}
.ws18{word-spacing:-13.342200px;}
.ws21{word-spacing:-13.317000px;}
.ws1c{word-spacing:-13.287000px;}
.ws13{word-spacing:-13.275360px;}
.ws27{word-spacing:-13.270260px;}
.ws16{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.ws28{word-spacing:-13.222512px;}
.ws15{word-spacing:-13.218120px;}
.ws17{word-spacing:-13.215240px;}
.wse{word-spacing:-13.211640px;}
.wsd{word-spacing:-13.187520px;}
.ws2a{word-spacing:-13.159200px;}
.ws23{word-spacing:-13.143000px;}
.ws30{word-spacing:-13.129800px;}
.ws10{word-spacing:-13.101000px;}
.ws1e{word-spacing:-13.093800px;}
.wsc{word-spacing:-13.072800px;}
.ws5{word-spacing:-13.065600px;}
.ws1a{word-spacing:-13.047600px;}
.wsa{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.982800px;}
.ws31{word-spacing:-12.982200px;}
.ws25{word-spacing:-12.907200px;}
.ws20{word-spacing:-12.898800px;}
.ws29{word-spacing:-12.851400px;}
.ws2c{word-spacing:-12.827400px;}
.ws2e{word-spacing:-12.741000px;}
.ws19{word-spacing:-12.712800px;}
.ws1d{word-spacing:-11.660400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-9.266400px;}
.ws8{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._33{margin-left:-12.587400px;}
._3{margin-left:-6.017688px;}
._4{margin-left:-4.126404px;}
._1{margin-left:-2.421720px;}
._0{margin-left:-1.302000px;}
._2{width:1.247484px;}
._6{width:2.389813px;}
._5{width:3.547200px;}
._b{width:4.869600px;}
._7{width:6.593400px;}
._c{width:7.674000px;}
._8{width:8.955840px;}
._9{width:10.941600px;}
._10{width:12.101520px;}
._15{width:14.683201px;}
._e{width:15.751200px;}
._f{width:17.063641px;}
._13{width:18.554040px;}
._d{width:19.682280px;}
._a{width:21.292962px;}
._17{width:22.692001px;}
._1a{width:24.635122px;}
._11{width:25.651718px;}
._16{width:26.774723px;}
._1d{width:27.780220px;}
._18{width:28.996562px;}
._19{width:30.790308px;}
._28{width:32.484358px;}
._14{width:33.571680px;}
._12{width:37.573200px;}
._1b{width:41.670789px;}
._24{width:42.800520px;}
._1e{width:43.905600px;}
._1c{width:45.957480px;}
._2c{width:48.841200px;}
._2d{width:50.470680px;}
._20{width:56.321280px;}
._3a{width:57.343080px;}
._2e{width:60.339960px;}
._47{width:63.853920px;}
._42{width:67.432320px;}
._48{width:70.750080px;}
._3d{width:80.500680px;}
._40{width:83.484360px;}
._35{width:89.469840px;}
._2b{width:90.540720px;}
._31{width:97.680240px;}
._39{width:105.027480px;}
._49{width:106.602000px;}
._37{width:112.474439px;}
._26{width:114.408360px;}
._44{width:121.540080px;}
._36{width:123.315840px;}
._38{width:124.978320px;}
._3b{width:127.033560px;}
._3c{width:128.596680px;}
._22{width:143.424000px;}
._2f{width:144.952560px;}
._23{width:152.820480px;}
._21{width:156.289680px;}
._4a{width:158.536440px;}
._43{width:163.744560px;}
._32{width:180.036840px;}
._30{width:183.696771px;}
._27{width:191.001240px;}
._41{width:194.345400px;}
._1f{width:196.193280px;}
._3f{width:199.272720px;}
._45{width:203.170320px;}
._3e{width:303.143880px;}
._2a{width:316.531800px;}
._25{width:343.735560px;}
._29{width:411.521400px;}
._34{width:415.979998px;}
._46{width:934.283998px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.560000px;}
.y2a{bottom:74.460000px;}
.y1{bottom:101.820000px;}
.yce{bottom:113.970000px;}
.y15d{bottom:115.320000px;}
.y189{bottom:117.840000px;}
.y137{bottom:118.650000px;}
.y198{bottom:121.530000px;}
.y8b{bottom:125.580000px;}
.y1b2{bottom:126.030000px;}
.yf8{bottom:127.020000px;}
.ybc{bottom:128.550000px;}
.y5d{bottom:130.980000px;}
.ycd{bottom:131.610000px;}
.y15c{bottom:132.870000px;}
.y1c4{bottom:134.580000px;}
.y188{bottom:135.390000px;}
.y136{bottom:136.200000px;}
.y197{bottom:139.170000px;}
.y28{bottom:142.500000px;}
.y8a{bottom:143.130000px;}
.yf7{bottom:144.660000px;}
.y5c{bottom:148.530000px;}
.ycc{bottom:149.160000px;}
.y15b{bottom:150.510000px;}
.y1c3{bottom:152.130000px;}
.y1b1{bottom:152.580000px;}
.y187{bottom:152.940000px;}
.y196{bottom:156.720000px;}
.y27{bottom:160.050000px;}
.y89{bottom:160.680000px;}
.ybb{bottom:160.770000px;}
.y5b{bottom:166.170000px;}
.y15a{bottom:168.060000px;}
.y1c2{bottom:169.680000px;}
.y186{bottom:170.580000px;}
.y135{bottom:171.840000px;}
.y195{bottom:174.270000px;}
.y26{bottom:177.600000px;}
.y88{bottom:178.320000px;}
.ya9{bottom:178.680000px;}
.y1b0{bottom:179.220000px;}
.yf6{bottom:180.210000px;}
.y5a{bottom:183.720000px;}
.ycb{bottom:184.800000px;}
.y185{bottom:188.130000px;}
.y134{bottom:189.390000px;}
.y25{bottom:195.240000px;}
.ya8{bottom:196.320000px;}
.y1af{bottom:196.770000px;}
.y194{bottom:201.180000px;}
.y59{bottom:201.270000px;}
.yf5{bottom:201.540000px;}
.yca{bottom:202.350000px;}
.y159{bottom:203.610000px;}
.y184{bottom:205.680000px;}
.y133{bottom:207.030000px;}
.y24{bottom:212.790000px;}
.y87{bottom:213.870000px;}
.y58{bottom:218.910000px;}
.yf4{bottom:219.180000px;}
.yc9{bottom:219.900000px;}
.y158{bottom:221.250000px;}
.y183{bottom:223.320000px;}
.y23{bottom:230.340000px;}
.y86{bottom:231.510000px;}
.yf3{bottom:236.730000px;}
.yc8{bottom:237.540000px;}
.y157{bottom:238.800000px;}
.y1c1{bottom:240.510000px;}
.y182{bottom:240.870000px;}
.y1ae{bottom:240.960000px;}
.y132{bottom:242.580000px;}
.y85{bottom:249.060000px;}
.ya7{bottom:249.510000px;}
.yf2{bottom:254.280000px;}
.y57{bottom:254.460000px;}
.yc7{bottom:255.090000px;}
.y1c0{bottom:258.060000px;}
.y181{bottom:258.510000px;}
.y131{bottom:260.130000px;}
.y22{bottom:265.980000px;}
.y84{bottom:266.610000px;}
.ya6{bottom:267.060000px;}
.yf1{bottom:271.920000px;}
.y56{bottom:272.100000px;}
.yc6{bottom:272.730000px;}
.y156{bottom:274.440000px;}
.y180{bottom:276.060000px;}
.y130{bottom:277.770000px;}
.y21{bottom:283.530000px;}
.y83{bottom:284.250000px;}
.ya5{bottom:284.610000px;}
.y1ad{bottom:285.150000px;}
.yf0{bottom:289.470000px;}
.y55{bottom:289.650000px;}
.y155{bottom:291.990000px;}
.y17f{bottom:293.610000px;}
.y12f{bottom:295.320000px;}
.y20{bottom:301.170000px;}
.y82{bottom:301.800000px;}
.ya4{bottom:302.250000px;}
.y1ac{bottom:302.700000px;}
.yef{bottom:307.110000px;}
.y54{bottom:307.200000px;}
.yc5{bottom:308.280000px;}
.y154{bottom:309.540000px;}
.y17e{bottom:311.250000px;}
.y1f{bottom:318.720000px;}
.y81{bottom:319.440000px;}
.ya3{bottom:319.800000px;}
.y1ab{bottom:320.250000px;}
.yee{bottom:324.660000px;}
.y53{bottom:324.840000px;}
.yc4{bottom:325.830000px;}
.y153{bottom:327.180000px;}
.y17d{bottom:328.800000px;}
.y12e{bottom:330.960000px;}
.y1e{bottom:336.270000px;}
.y80{bottom:336.990000px;}
.ya2{bottom:337.440000px;}
.y1aa{bottom:337.890000px;}
.y117{bottom:342.210000px;}
.y52{bottom:342.390000px;}
.y17c{bottom:346.440000px;}
.y12d{bottom:348.510000px;}
.yc3{bottom:352.470000px;}
.y1d{bottom:353.910000px;}
.y7f{bottom:354.540000px;}
.y1a9{bottom:355.440000px;}
.y116{bottom:359.850000px;}
.yed{bottom:360.210000px;}
.y152{bottom:362.730000px;}
.y17b{bottom:363.990000px;}
.y12c{bottom:366.060000px;}
.y51{bottom:368.940000px;}
.y1c{bottom:371.460000px;}
.y7e{bottom:372.180000px;}
.ya1{bottom:372.990000px;}
.y115{bottom:377.400000px;}
.yec{bottom:377.850000px;}
.y151{bottom:380.370000px;}
.y17a{bottom:381.540000px;}
.y1a8{bottom:382.080000px;}
.yc2{bottom:388.020000px;}
.y1b{bottom:389.100000px;}
.y7d{bottom:389.730000px;}
.ya0{bottom:390.540000px;}
.y114{bottom:395.040000px;}
.yeb{bottom:395.400000px;}
.y150{bottom:397.920000px;}
.y179{bottom:399.180000px;}
.y1a7{bottom:399.630000px;}
.y12b{bottom:401.700000px;}
.y50{bottom:404.850000px;}
.yc1{bottom:405.660000px;}
.y1a{bottom:406.650000px;}
.y9f{bottom:408.180000px;}
.y113{bottom:412.590000px;}
.yea{bottom:413.040000px;}
.y14f{bottom:415.470000px;}
.y178{bottom:416.730000px;}
.y12a{bottom:419.250000px;}
.y19{bottom:424.200000px;}
.y7c{bottom:425.370000px;}
.y9e{bottom:425.730000px;}
.y1a6{bottom:426.180000px;}
.y112{bottom:430.140000px;}
.ye9{bottom:430.590000px;}
.y14e{bottom:433.110000px;}
.y177{bottom:434.370000px;}
.yc0{bottom:441.210000px;}
.y7b{bottom:442.920000px;}
.y193{bottom:443.370000px;}
.y1a5{bottom:443.820000px;}
.ye8{bottom:448.140000px;}
.y18{bottom:451.110000px;}
.y176{bottom:451.920000px;}
.y4f{bottom:453.180000px;}
.y129{bottom:454.890000px;}
.y7a{bottom:460.470000px;}
.y192{bottom:460.920000px;}
.y9d{bottom:461.370000px;}
.ye7{bottom:465.780000px;}
.y14d{bottom:468.660000px;}
.y175{bottom:469.470000px;}
.y1bf{bottom:469.950000px;}
.y4e{bottom:470.760000px;}
.y128{bottom:472.470000px;}
.ybf{bottom:473.460000px;}
.yba{bottom:474.630000px;}
.y79{bottom:478.140000px;}
.y191{bottom:478.500000px;}
.y9c{bottom:478.950000px;}
.ye6{bottom:483.360000px;}
.y14c{bottom:486.330000px;}
.y1be{bottom:487.500000px;}
.y1a4{bottom:488.310000px;}
.y4d{bottom:488.400000px;}
.y127{bottom:490.020000px;}
.yb9{bottom:492.270000px;}
.y78{bottom:495.690000px;}
.y174{bottom:496.140000px;}
.y9b{bottom:496.500000px;}
.y17{bottom:499.740000px;}
.ye5{bottom:501.000000px;}
.y14b{bottom:503.880000px;}
.y1bd{bottom:505.140000px;}
.y4c{bottom:505.950000px;}
.y126{bottom:507.660000px;}
.yb8{bottom:509.820000px;}
.y77{bottom:513.330000px;}
.y190{bottom:513.690000px;}
.y9a{bottom:514.140000px;}
.ye3{bottom:518.550000px;}
.ye4{bottom:519.270000px;}
.y14a{bottom:521.430000px;}
.y1bc{bottom:522.690000px;}
.y4b{bottom:523.500000px;}
.yb7{bottom:527.370000px;}
.y76{bottom:530.880000px;}
.y18f{bottom:531.330000px;}
.y99{bottom:531.690000px;}
.y111{bottom:536.100000px;}
.y1a3{bottom:536.550000px;}
.y16{bottom:536.820000px;}
.ye2{bottom:539.880000px;}
.y1cb{bottom:540.330000px;}
.y4a{bottom:541.140000px;}
.y125{bottom:543.210000px;}
.yb6{bottom:545.010000px;}
.y18e{bottom:548.880000px;}
.y173{bottom:549.330000px;}
.y110{bottom:553.740000px;}
.y1a2{bottom:554.190000px;}
.y15{bottom:554.370000px;}
.y149{bottom:557.070000px;}
.y75{bottom:557.430000px;}
.y98{bottom:558.330000px;}
.y49{bottom:558.690000px;}
.y124{bottom:560.850000px;}
.yb5{bottom:562.560000px;}
.ye1{bottom:566.430000px;}
.y172{bottom:566.880000px;}
.y10f{bottom:571.290000px;}
.y14{bottom:571.920000px;}
.y148{bottom:574.620000px;}
.y48{bottom:576.330000px;}
.y123{bottom:578.400000px;}
.yb4{bottom:580.200000px;}
.y1a1{bottom:581.100000px;}
.y18d{bottom:584.070000px;}
.y171{bottom:584.430000px;}
.y10e{bottom:588.840000px;}
.y13{bottom:589.560000px;}
.y147{bottom:592.260000px;}
.y74{bottom:593.070000px;}
.y47{bottom:593.880000px;}
.y122{bottom:595.950000px;}
.y18c{bottom:601.620000px;}
.ye0{bottom:602.070000px;}
.y10d{bottom:606.480000px;}
.y12{bottom:607.110000px;}
.y146{bottom:609.810000px;}
.y73{bottom:610.620000px;}
.y1ca{bottom:611.070000px;}
.y46{bottom:611.430000px;}
.y121{bottom:613.590000px;}
.yb3{bottom:615.750000px;}
.y1a0{bottom:618.090000px;}
.ydf{bottom:619.620000px;}
.y11{bottom:624.750000px;}
.y72{bottom:628.260000px;}
.y1bb{bottom:628.620000px;}
.y45{bottom:629.070000px;}
.y10c{bottom:633.030000px;}
.y145{bottom:636.360000px;}
.yde{bottom:637.260000px;}
.y120{bottom:640.500000px;}
.y10{bottom:642.300000px;}
.y19f{bottom:645.000000px;}
.y71{bottom:645.810000px;}
.y1ba{bottom:646.260000px;}
.y44{bottom:646.620000px;}
.yb2{bottom:647.970000px;}
.ydd{bottom:654.810000px;}
.yf{bottom:659.850000px;}
.y1b9{bottom:663.810000px;}
.y43{bottom:664.260000px;}
.y10b{bottom:668.670000px;}
.y144{bottom:672.000000px;}
.ydc{bottom:672.360000px;}
.ye{bottom:677.490000px;}
.y11f{bottom:677.850000px;}
.y70{bottom:681.360000px;}
.y97{bottom:681.810000px;}
.y19e{bottom:682.080000px;}
.y10a{bottom:686.220000px;}
.y143{bottom:689.550000px;}
.ydb{bottom:690.000000px;}
.y1b8{bottom:690.360000px;}
.yd{bottom:695.040000px;}
.y6f{bottom:699.000000px;}
.y96{bottom:699.360000px;}
.y19d{bottom:699.630000px;}
.y42{bottom:699.810000px;}
.y109{bottom:703.770000px;}
.y142{bottom:707.190000px;}
.yda{bottom:707.550000px;}
.y1b7{bottom:708.000000px;}
.yc{bottom:712.680000px;}
.y6e{bottom:716.550000px;}
.y95{bottom:717.000000px;}
.y41{bottom:717.360000px;}
.y141{bottom:724.740000px;}
.yd9{bottom:725.190000px;}
.y1c9{bottom:725.550000px;}
.y11e{bottom:726.090000px;}
.y19c{bottom:726.540000px;}
.yb{bottom:730.230000px;}
.y6d{bottom:734.190000px;}
.y94{bottom:734.550000px;}
.y40{bottom:735.000000px;}
.y108{bottom:739.410000px;}
.y140{bottom:742.290000px;}
.yd8{bottom:742.740000px;}
.y170{bottom:743.190000px;}
.y11d{bottom:743.640000px;}
.y6c{bottom:751.740000px;}
.y1b6{bottom:752.190000px;}
.y3f{bottom:752.550000px;}
.y107{bottom:756.960000px;}
.ya{bottom:757.140000px;}
.yd7{bottom:760.290000px;}
.y16f{bottom:760.740000px;}
.y11c{bottom:761.280000px;}
.y19b{bottom:763.530000px;}
.y1c8{bottom:769.740000px;}
.y3e{bottom:770.190000px;}
.y106{bottom:774.600000px;}
.y13f{bottom:777.930000px;}
.y16e{bottom:778.290000px;}
.y1b5{bottom:778.740000px;}
.y11b{bottom:778.830000px;}
.y6b{bottom:787.290000px;}
.y3d{bottom:787.740000px;}
.y19a{bottom:790.440000px;}
.y105{bottom:792.150000px;}
.y13e{bottom:795.480000px;}
.yd6{bottom:795.930000px;}
.y1b4{bottom:796.290000px;}
.y11a{bottom:796.470000px;}
.y6a{bottom:804.930000px;}
.y93{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.y104{bottom:809.700000px;}
.y13d{bottom:813.030000px;}
.yd5{bottom:813.480000px;}
.y16d{bottom:813.930000px;}
.y69{bottom:822.480000px;}
.y92{bottom:822.930000px;}
.y3c{bottom:823.290000px;}
.y199{bottom:827.790000px;}
.y13c{bottom:830.670000px;}
.yd4{bottom:831.030000px;}
.y16c{bottom:831.480000px;}
.y119{bottom:832.020000px;}
.y68{bottom:840.030000px;}
.y91{bottom:840.480000px;}
.y3b{bottom:840.930000px;}
.y8{bottom:841.200000px;}
.y103{bottom:845.340000px;}
.yd3{bottom:848.670000px;}
.y1c7{bottom:849.030000px;}
.y67{bottom:857.670000px;}
.y90{bottom:858.030000px;}
.y3a{bottom:858.480000px;}
.y102{bottom:862.890000px;}
.y118{bottom:864.240000px;}
.yd2{bottom:866.220000px;}
.y1c6{bottom:866.670000px;}
.y16b{bottom:867.030000px;}
.y66{bottom:875.220000px;}
.ybe{bottom:875.670000px;}
.y39{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.y101{bottom:880.530000px;}
.yd1{bottom:883.860000px;}
.y16a{bottom:884.670000px;}
.ybd{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y100{bottom:898.080000px;}
.y13b{bottom:901.410000px;}
.y18b{bottom:901.860000px;}
.y169{bottom:902.220000px;}
.y65{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.yff{bottom:915.630000px;}
.yd0{bottom:919.410000px;}
.y168{bottom:919.860000px;}
.y64{bottom:928.410000px;}
.y36{bottom:928.860000px;}
.ycf{bottom:936.960000px;}
.y1b3{bottom:937.410000px;}
.y63{bottom:945.960000px;}
.y35{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yfe{bottom:951.270000px;}
.y13a{bottom:954.600000px;}
.y1c5{bottom:954.960000px;}
.y167{bottom:955.410000px;}
.yb1{bottom:959.550000px;}
.y62{bottom:963.600000px;}
.y8f{bottom:963.960000px;}
.yfd{bottom:968.820000px;}
.y139{bottom:972.150000px;}
.y166{bottom:972.960000px;}
.yb0{bottom:977.190000px;}
.y18a{bottom:981.150000px;}
.y8e{bottom:981.600000px;}
.y34{bottom:981.960000px;}
.yfc{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y165{bottom:990.600000px;}
.yaf{bottom:994.740000px;}
.y61{bottom:999.150000px;}
.y33{bottom:999.600000px;}
.yfb{bottom:1007.790000px;}
.y164{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.y60{bottom:1016.820000px;}
.y32{bottom:1017.180000px;}
.yfa{bottom:1025.370000px;}
.y163{bottom:1025.820000px;}
.yae{bottom:1029.960000px;}
.y5f{bottom:1034.370000px;}
.y31{bottom:1034.820000px;}
.yf9{bottom:1042.920000px;}
.y162{bottom:1043.370000px;}
.yad{bottom:1047.510000px;}
.y5e{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.y138{bottom:1060.560000px;}
.y161{bottom:1060.920000px;}
.yac{bottom:1065.150000px;}
.y8d{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.y160{bottom:1078.560000px;}
.y8c{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yab{bottom:1091.700000px;}
.y15f{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y15e{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.yaa{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:61.793886px;}
.ha{height:62.585859px;}
.hb{height:67.431445px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x50{left:80.189987px;}
.x52{left:111.239987px;}
.x3c{left:116.369987px;}
.x49{left:125.459987px;}
.x51{left:127.709987px;}
.xe{left:134.639987px;}
.xf{left:140.309987px;}
.x3d{left:143.819987px;}
.x3e{left:146.609987px;}
.x10{left:187.139987px;}
.x11{left:192.809987px;}
.x2b{left:197.939987px;}
.x12{left:208.019987px;}
.x2{left:211.079987px;}
.x13{left:213.959987px;}
.xa{left:218.009987px;}
.x14{left:219.809987px;}
.x30{left:221.249987px;}
.x15{left:226.109987px;}
.x31{left:227.819987px;}
.x5{left:239.429987px;}
.x9{left:243.389987px;}
.x32{left:245.369987px;}
.x3f{left:247.259987px;}
.x40{left:250.049987px;}
.x7{left:252.209987px;}
.x16{left:258.959987px;}
.x17{left:265.259987px;}
.x21{left:272.729987px;}
.x22{left:276.239987px;}
.x41{left:279.839987px;}
.x42{left:282.629987px;}
.xb{left:287.759987px;}
.x23{left:291.809987px;}
.x24{left:295.409987px;}
.x43{left:304.769987px;}
.x44{left:307.559987px;}
.x2a{left:346.349987px;}
.x25{left:348.239987px;}
.x26{left:351.659987px;}
.x33{left:375.959987px;}
.x45{left:378.119987px;}
.x34{left:383.159987px;}
.x35{left:394.049987px;}
.x27{left:395.129987px;}
.x28{left:398.549987px;}
.x36{left:401.159987px;}
.x2c{left:404.759987px;}
.x37{left:418.889987px;}
.x2d{left:434.729987px;}
.x18{left:465.149987px;}
.x38{left:469.829987px;}
.xc{left:472.979987px;}
.x29{left:480.269987px;}
.x2e{left:488.909987px;}
.x46{left:489.989987px;}
.x39{left:513.419987px;}
.x3a{left:517.649987px;}
.x4a{left:537.449987px;}
.x47{left:559.589987px;}
.x3b{left:564.629987px;}
.x4b{left:585.689987px;}
.x4c{left:588.209987px;}
.x19{left:594.599987px;}
.x1a{left:597.209987px;}
.xd{left:609.629987px;}
.x4{left:610.889987px;}
.x6{left:625.559987px;}
.x4d{left:632.849987px;}
.x4e{left:635.459987px;}
.x8{left:652.559987px;}
.x48{left:678.659987px;}
.x4f{left:683.699987px;}
.x1b{left:724.199987px;}
.x1c{left:726.719987px;}
.x1d{left:759.029987px;}
.x1e{left:761.549987px;}
.x1f{left:780.809987px;}
.x20{left:783.509987px;}
.x3{left:800.339987px;}
.x2f{left:803.939987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls2e{letter-spacing:-1.392000pt;}
.ls3a{letter-spacing:-0.800000pt;}
.ls38{letter-spacing:-0.789333pt;}
.ls1f{letter-spacing:-0.456533pt;}
.ls43{letter-spacing:-0.431467pt;}
.ls41{letter-spacing:-0.354667pt;}
.ls3d{letter-spacing:-0.333333pt;}
.ls34{letter-spacing:-0.295467pt;}
.ls30{letter-spacing:-0.291200pt;}
.ls39{letter-spacing:-0.283733pt;}
.ls4a{letter-spacing:-0.217067pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls20{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.147733pt;}
.ls9{letter-spacing:-0.142933pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls2f{letter-spacing:-0.117867pt;}
.ls16{letter-spacing:-0.111467pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls49{letter-spacing:-0.085867pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls33{letter-spacing:-0.074133pt;}
.ls3e{letter-spacing:-0.059733pt;}
.ls40{letter-spacing:-0.047840pt;}
.ls42{letter-spacing:-0.040640pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.009920pt;}
.ls19{letter-spacing:-0.007360pt;}
.ls3c{letter-spacing:-0.003456pt;}
.ls31{letter-spacing:-0.003029pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.037120pt;}
.ls35{letter-spacing:0.038987pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.065920pt;}
.ls28{letter-spacing:0.077450pt;}
.ls2{letter-spacing:0.080000pt;}
.ls27{letter-spacing:0.080533pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.085342pt;}
.ls1d{letter-spacing:0.102933pt;}
.ls17{letter-spacing:0.103467pt;}
.ls24{letter-spacing:0.105627pt;}
.ls23{letter-spacing:0.108267pt;}
.ls26{letter-spacing:0.108614pt;}
.ls44{letter-spacing:0.127467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.130133pt;}
.ls32{letter-spacing:0.132267pt;}
.ls29{letter-spacing:0.132491pt;}
.ls2d{letter-spacing:0.145067pt;}
.ls36{letter-spacing:0.149758pt;}
.lsf{letter-spacing:0.154133pt;}
.ls15{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.177067pt;}
.ls21{letter-spacing:0.179733pt;}
.ls2a{letter-spacing:0.180062pt;}
.ls37{letter-spacing:0.185894pt;}
.ls2c{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.357989pt;}
.ls3b{letter-spacing:0.417600pt;}
.ls3f{letter-spacing:0.432533pt;}
.ls1b{letter-spacing:0.480533pt;}
.ls1e{letter-spacing:17.363200pt;}
.ls48{letter-spacing:26.643200pt;}
.ls46{letter-spacing:42.423680pt;}
.ls45{letter-spacing:71.863680pt;}
.ls47{letter-spacing:139.923200pt;}
.ws2{word-spacing:-16.255467pt;}
.ws6{word-spacing:-12.883200pt;}
.ws2d{word-spacing:-12.842560pt;}
.ws12{word-spacing:-12.775467pt;}
.ws2b{word-spacing:-12.189333pt;}
.ws26{word-spacing:-12.174400pt;}
.ws22{word-spacing:-11.965333pt;}
.ws1b{word-spacing:-11.936533pt;}
.wsb{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws24{word-spacing:-11.901867pt;}
.ws2f{word-spacing:-11.884267pt;}
.ws1f{word-spacing:-11.865067pt;}
.ws11{word-spacing:-11.860267pt;}
.ws18{word-spacing:-11.859733pt;}
.ws21{word-spacing:-11.837333pt;}
.ws1c{word-spacing:-11.810667pt;}
.ws13{word-spacing:-11.800320pt;}
.ws27{word-spacing:-11.795787pt;}
.ws16{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.ws28{word-spacing:-11.753344pt;}
.ws15{word-spacing:-11.749440pt;}
.ws17{word-spacing:-11.746880pt;}
.wse{word-spacing:-11.743680pt;}
.wsd{word-spacing:-11.722240pt;}
.ws2a{word-spacing:-11.697067pt;}
.ws23{word-spacing:-11.682667pt;}
.ws30{word-spacing:-11.670933pt;}
.ws10{word-spacing:-11.645333pt;}
.ws1e{word-spacing:-11.638933pt;}
.wsc{word-spacing:-11.620267pt;}
.ws5{word-spacing:-11.613867pt;}
.ws1a{word-spacing:-11.597867pt;}
.wsa{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.540267pt;}
.ws31{word-spacing:-11.539733pt;}
.ws25{word-spacing:-11.473067pt;}
.ws20{word-spacing:-11.465600pt;}
.ws29{word-spacing:-11.423467pt;}
.ws2c{word-spacing:-11.402133pt;}
.ws2e{word-spacing:-11.325333pt;}
.ws19{word-spacing:-11.300267pt;}
.ws1d{word-spacing:-10.364800pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-8.236800pt;}
.ws8{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._33{margin-left:-11.188800pt;}
._3{margin-left:-5.349056pt;}
._4{margin-left:-3.667915pt;}
._1{margin-left:-2.152640pt;}
._0{margin-left:-1.157333pt;}
._2{width:1.108875pt;}
._6{width:2.124278pt;}
._5{width:3.153067pt;}
._b{width:4.328533pt;}
._7{width:5.860800pt;}
._c{width:6.821333pt;}
._8{width:7.960747pt;}
._9{width:9.725866pt;}
._10{width:10.756907pt;}
._15{width:13.051734pt;}
._e{width:14.001066pt;}
._f{width:15.167681pt;}
._13{width:16.492480pt;}
._d{width:17.495360pt;}
._a{width:18.927077pt;}
._17{width:20.170667pt;}
._1a{width:21.897886pt;}
._11{width:22.801527pt;}
._16{width:23.799753pt;}
._1d{width:24.693529pt;}
._18{width:25.774722pt;}
._19{width:27.369163pt;}
._28{width:28.874985pt;}
._14{width:29.841494pt;}
._12{width:33.398400pt;}
._1b{width:37.040701pt;}
._24{width:38.044907pt;}
._1e{width:39.027200pt;}
._1c{width:40.851094pt;}
._2c{width:43.414400pt;}
._2d{width:44.862827pt;}
._20{width:50.063360pt;}
._3a{width:50.971627pt;}
._2e{width:53.635520pt;}
._47{width:56.759040pt;}
._42{width:59.939840pt;}
._48{width:62.888960pt;}
._3d{width:71.556160pt;}
._40{width:74.208320pt;}
._35{width:79.528747pt;}
._2b{width:80.480640pt;}
._31{width:86.826880pt;}
._39{width:93.357760pt;}
._49{width:94.757333pt;}
._37{width:99.977279pt;}
._26{width:101.696320pt;}
._44{width:108.035627pt;}
._36{width:109.614080pt;}
._38{width:111.091840pt;}
._3b{width:112.918720pt;}
._3c{width:114.308160pt;}
._22{width:127.488000pt;}
._2f{width:128.846720pt;}
._23{width:135.840427pt;}
._21{width:138.924160pt;}
._4a{width:140.921280pt;}
._43{width:145.550720pt;}
._32{width:160.032747pt;}
._30{width:163.286019pt;}
._27{width:169.778880pt;}
._41{width:172.751467pt;}
._1f{width:174.394027pt;}
._3f{width:177.131307pt;}
._45{width:180.595840pt;}
._3e{width:269.461227pt;}
._2a{width:281.361600pt;}
._25{width:305.542720pt;}
._29{width:365.796800pt;}
._34{width:369.759998pt;}
._46{width:830.474665pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.386667pt;}
.y2a{bottom:66.186667pt;}
.y1{bottom:90.506667pt;}
.yce{bottom:101.306667pt;}
.y15d{bottom:102.506667pt;}
.y189{bottom:104.746667pt;}
.y137{bottom:105.466667pt;}
.y198{bottom:108.026667pt;}
.y8b{bottom:111.626667pt;}
.y1b2{bottom:112.026667pt;}
.yf8{bottom:112.906667pt;}
.ybc{bottom:114.266667pt;}
.y5d{bottom:116.426667pt;}
.ycd{bottom:116.986667pt;}
.y15c{bottom:118.106667pt;}
.y1c4{bottom:119.626667pt;}
.y188{bottom:120.346667pt;}
.y136{bottom:121.066667pt;}
.y197{bottom:123.706667pt;}
.y28{bottom:126.666667pt;}
.y8a{bottom:127.226667pt;}
.yf7{bottom:128.586667pt;}
.y5c{bottom:132.026667pt;}
.ycc{bottom:132.586667pt;}
.y15b{bottom:133.786667pt;}
.y1c3{bottom:135.226667pt;}
.y1b1{bottom:135.626667pt;}
.y187{bottom:135.946667pt;}
.y196{bottom:139.306667pt;}
.y27{bottom:142.266667pt;}
.y89{bottom:142.826667pt;}
.ybb{bottom:142.906667pt;}
.y5b{bottom:147.706667pt;}
.y15a{bottom:149.386667pt;}
.y1c2{bottom:150.826667pt;}
.y186{bottom:151.626667pt;}
.y135{bottom:152.746667pt;}
.y195{bottom:154.906667pt;}
.y26{bottom:157.866667pt;}
.y88{bottom:158.506667pt;}
.ya9{bottom:158.826667pt;}
.y1b0{bottom:159.306667pt;}
.yf6{bottom:160.186667pt;}
.y5a{bottom:163.306667pt;}
.ycb{bottom:164.266667pt;}
.y185{bottom:167.226667pt;}
.y134{bottom:168.346667pt;}
.y25{bottom:173.546667pt;}
.ya8{bottom:174.506667pt;}
.y1af{bottom:174.906667pt;}
.y194{bottom:178.826667pt;}
.y59{bottom:178.906667pt;}
.yf5{bottom:179.146667pt;}
.yca{bottom:179.866667pt;}
.y159{bottom:180.986667pt;}
.y184{bottom:182.826667pt;}
.y133{bottom:184.026667pt;}
.y24{bottom:189.146667pt;}
.y87{bottom:190.106667pt;}
.y58{bottom:194.586667pt;}
.yf4{bottom:194.826667pt;}
.yc9{bottom:195.466667pt;}
.y158{bottom:196.666667pt;}
.y183{bottom:198.506667pt;}
.y23{bottom:204.746667pt;}
.y86{bottom:205.786667pt;}
.yf3{bottom:210.426667pt;}
.yc8{bottom:211.146667pt;}
.y157{bottom:212.266667pt;}
.y1c1{bottom:213.786667pt;}
.y182{bottom:214.106667pt;}
.y1ae{bottom:214.186667pt;}
.y132{bottom:215.626667pt;}
.y85{bottom:221.386667pt;}
.ya7{bottom:221.786667pt;}
.yf2{bottom:226.026667pt;}
.y57{bottom:226.186667pt;}
.yc7{bottom:226.746667pt;}
.y1c0{bottom:229.386667pt;}
.y181{bottom:229.786667pt;}
.y131{bottom:231.226667pt;}
.y22{bottom:236.426667pt;}
.y84{bottom:236.986667pt;}
.ya6{bottom:237.386667pt;}
.yf1{bottom:241.706667pt;}
.y56{bottom:241.866667pt;}
.yc6{bottom:242.426667pt;}
.y156{bottom:243.946667pt;}
.y180{bottom:245.386667pt;}
.y130{bottom:246.906667pt;}
.y21{bottom:252.026667pt;}
.y83{bottom:252.666667pt;}
.ya5{bottom:252.986667pt;}
.y1ad{bottom:253.466667pt;}
.yf0{bottom:257.306667pt;}
.y55{bottom:257.466667pt;}
.y155{bottom:259.546667pt;}
.y17f{bottom:260.986667pt;}
.y12f{bottom:262.506667pt;}
.y20{bottom:267.706667pt;}
.y82{bottom:268.266667pt;}
.ya4{bottom:268.666667pt;}
.y1ac{bottom:269.066667pt;}
.yef{bottom:272.986667pt;}
.y54{bottom:273.066667pt;}
.yc5{bottom:274.026667pt;}
.y154{bottom:275.146667pt;}
.y17e{bottom:276.666667pt;}
.y1f{bottom:283.306667pt;}
.y81{bottom:283.946667pt;}
.ya3{bottom:284.266667pt;}
.y1ab{bottom:284.666667pt;}
.yee{bottom:288.586667pt;}
.y53{bottom:288.746667pt;}
.yc4{bottom:289.626667pt;}
.y153{bottom:290.826667pt;}
.y17d{bottom:292.266667pt;}
.y12e{bottom:294.186667pt;}
.y1e{bottom:298.906667pt;}
.y80{bottom:299.546667pt;}
.ya2{bottom:299.946667pt;}
.y1aa{bottom:300.346667pt;}
.y117{bottom:304.186667pt;}
.y52{bottom:304.346667pt;}
.y17c{bottom:307.946667pt;}
.y12d{bottom:309.786667pt;}
.yc3{bottom:313.306667pt;}
.y1d{bottom:314.586667pt;}
.y7f{bottom:315.146667pt;}
.y1a9{bottom:315.946667pt;}
.y116{bottom:319.866667pt;}
.yed{bottom:320.186667pt;}
.y152{bottom:322.426667pt;}
.y17b{bottom:323.546667pt;}
.y12c{bottom:325.386667pt;}
.y51{bottom:327.946667pt;}
.y1c{bottom:330.186667pt;}
.y7e{bottom:330.826667pt;}
.ya1{bottom:331.546667pt;}
.y115{bottom:335.466667pt;}
.yec{bottom:335.866667pt;}
.y151{bottom:338.106667pt;}
.y17a{bottom:339.146667pt;}
.y1a8{bottom:339.626667pt;}
.yc2{bottom:344.906667pt;}
.y1b{bottom:345.866667pt;}
.y7d{bottom:346.426667pt;}
.ya0{bottom:347.146667pt;}
.y114{bottom:351.146667pt;}
.yeb{bottom:351.466667pt;}
.y150{bottom:353.706667pt;}
.y179{bottom:354.826667pt;}
.y1a7{bottom:355.226667pt;}
.y12b{bottom:357.066667pt;}
.y50{bottom:359.866667pt;}
.yc1{bottom:360.586667pt;}
.y1a{bottom:361.466667pt;}
.y9f{bottom:362.826667pt;}
.y113{bottom:366.746667pt;}
.yea{bottom:367.146667pt;}
.y14f{bottom:369.306667pt;}
.y178{bottom:370.426667pt;}
.y12a{bottom:372.666667pt;}
.y19{bottom:377.066667pt;}
.y7c{bottom:378.106667pt;}
.y9e{bottom:378.426667pt;}
.y1a6{bottom:378.826667pt;}
.y112{bottom:382.346667pt;}
.ye9{bottom:382.746667pt;}
.y14e{bottom:384.986667pt;}
.y177{bottom:386.106667pt;}
.yc0{bottom:392.186667pt;}
.y7b{bottom:393.706667pt;}
.y193{bottom:394.106667pt;}
.y1a5{bottom:394.506667pt;}
.ye8{bottom:398.346667pt;}
.y18{bottom:400.986667pt;}
.y176{bottom:401.706667pt;}
.y4f{bottom:402.826667pt;}
.y129{bottom:404.346667pt;}
.y7a{bottom:409.306667pt;}
.y192{bottom:409.706667pt;}
.y9d{bottom:410.106667pt;}
.ye7{bottom:414.026667pt;}
.y14d{bottom:416.586667pt;}
.y175{bottom:417.306667pt;}
.y1bf{bottom:417.733333pt;}
.y4e{bottom:418.453333pt;}
.y128{bottom:419.973333pt;}
.ybf{bottom:420.853333pt;}
.yba{bottom:421.893333pt;}
.y79{bottom:425.013333pt;}
.y191{bottom:425.333333pt;}
.y9c{bottom:425.733333pt;}
.ye6{bottom:429.653333pt;}
.y14c{bottom:432.293333pt;}
.y1be{bottom:433.333333pt;}
.y1a4{bottom:434.053333pt;}
.y4d{bottom:434.133333pt;}
.y127{bottom:435.573333pt;}
.yb9{bottom:437.573333pt;}
.y78{bottom:440.613333pt;}
.y174{bottom:441.013333pt;}
.y9b{bottom:441.333333pt;}
.y17{bottom:444.213333pt;}
.ye5{bottom:445.333333pt;}
.y14b{bottom:447.893333pt;}
.y1bd{bottom:449.013333pt;}
.y4c{bottom:449.733333pt;}
.y126{bottom:451.253333pt;}
.yb8{bottom:453.173333pt;}
.y77{bottom:456.293333pt;}
.y190{bottom:456.613333pt;}
.y9a{bottom:457.013333pt;}
.ye3{bottom:460.933333pt;}
.ye4{bottom:461.573333pt;}
.y14a{bottom:463.493333pt;}
.y1bc{bottom:464.613333pt;}
.y4b{bottom:465.333333pt;}
.yb7{bottom:468.773333pt;}
.y76{bottom:471.893333pt;}
.y18f{bottom:472.293333pt;}
.y99{bottom:472.613333pt;}
.y111{bottom:476.533333pt;}
.y1a3{bottom:476.933333pt;}
.y16{bottom:477.173333pt;}
.ye2{bottom:479.893333pt;}
.y1cb{bottom:480.293333pt;}
.y4a{bottom:481.013333pt;}
.y125{bottom:482.853333pt;}
.yb6{bottom:484.453333pt;}
.y18e{bottom:487.893333pt;}
.y173{bottom:488.293333pt;}
.y110{bottom:492.213333pt;}
.y1a2{bottom:492.613333pt;}
.y15{bottom:492.773333pt;}
.y149{bottom:495.173333pt;}
.y75{bottom:495.493333pt;}
.y98{bottom:496.293333pt;}
.y49{bottom:496.613333pt;}
.y124{bottom:498.533333pt;}
.yb5{bottom:500.053333pt;}
.ye1{bottom:503.493333pt;}
.y172{bottom:503.893333pt;}
.y10f{bottom:507.813333pt;}
.y14{bottom:508.373333pt;}
.y148{bottom:510.773333pt;}
.y48{bottom:512.293333pt;}
.y123{bottom:514.133333pt;}
.yb4{bottom:515.733333pt;}
.y1a1{bottom:516.533333pt;}
.y18d{bottom:519.173333pt;}
.y171{bottom:519.493333pt;}
.y10e{bottom:523.413333pt;}
.y13{bottom:524.053333pt;}
.y147{bottom:526.453333pt;}
.y74{bottom:527.173333pt;}
.y47{bottom:527.893333pt;}
.y122{bottom:529.733333pt;}
.y18c{bottom:534.773333pt;}
.ye0{bottom:535.173333pt;}
.y10d{bottom:539.093333pt;}
.y12{bottom:539.653333pt;}
.y146{bottom:542.053333pt;}
.y73{bottom:542.773333pt;}
.y1ca{bottom:543.173333pt;}
.y46{bottom:543.493333pt;}
.y121{bottom:545.413333pt;}
.yb3{bottom:547.333333pt;}
.y1a0{bottom:549.413333pt;}
.ydf{bottom:550.773333pt;}
.y11{bottom:555.333333pt;}
.y72{bottom:558.453333pt;}
.y1bb{bottom:558.773333pt;}
.y45{bottom:559.173333pt;}
.y10c{bottom:562.693333pt;}
.y145{bottom:565.653333pt;}
.yde{bottom:566.453333pt;}
.y120{bottom:569.333333pt;}
.y10{bottom:570.933333pt;}
.y19f{bottom:573.333333pt;}
.y71{bottom:574.053333pt;}
.y1ba{bottom:574.453333pt;}
.y44{bottom:574.773333pt;}
.yb2{bottom:575.973333pt;}
.ydd{bottom:582.053333pt;}
.yf{bottom:586.533333pt;}
.y1b9{bottom:590.053333pt;}
.y43{bottom:590.453333pt;}
.y10b{bottom:594.373333pt;}
.y144{bottom:597.333333pt;}
.ydc{bottom:597.653333pt;}
.ye{bottom:602.213333pt;}
.y11f{bottom:602.533333pt;}
.y70{bottom:605.653333pt;}
.y97{bottom:606.053333pt;}
.y19e{bottom:606.293333pt;}
.y10a{bottom:609.973333pt;}
.y143{bottom:612.933333pt;}
.ydb{bottom:613.333333pt;}
.y1b8{bottom:613.653333pt;}
.yd{bottom:617.813333pt;}
.y6f{bottom:621.333333pt;}
.y96{bottom:621.653333pt;}
.y19d{bottom:621.893333pt;}
.y42{bottom:622.053333pt;}
.y109{bottom:625.573333pt;}
.y142{bottom:628.613333pt;}
.yda{bottom:628.933333pt;}
.y1b7{bottom:629.333333pt;}
.yc{bottom:633.493333pt;}
.y6e{bottom:636.933333pt;}
.y95{bottom:637.333333pt;}
.y41{bottom:637.653333pt;}
.y141{bottom:644.213333pt;}
.yd9{bottom:644.613333pt;}
.y1c9{bottom:644.933333pt;}
.y11e{bottom:645.413333pt;}
.y19c{bottom:645.813333pt;}
.yb{bottom:649.093333pt;}
.y6d{bottom:652.613333pt;}
.y94{bottom:652.933333pt;}
.y40{bottom:653.333333pt;}
.y108{bottom:657.253333pt;}
.y140{bottom:659.813333pt;}
.yd8{bottom:660.213333pt;}
.y170{bottom:660.613333pt;}
.y11d{bottom:661.013333pt;}
.y6c{bottom:668.213333pt;}
.y1b6{bottom:668.613333pt;}
.y3f{bottom:668.933333pt;}
.y107{bottom:672.853333pt;}
.ya{bottom:673.013333pt;}
.yd7{bottom:675.813333pt;}
.y16f{bottom:676.213333pt;}
.y11c{bottom:676.693333pt;}
.y19b{bottom:678.693333pt;}
.y1c8{bottom:684.213333pt;}
.y3e{bottom:684.613333pt;}
.y106{bottom:688.533333pt;}
.y13f{bottom:691.493333pt;}
.y16e{bottom:691.813333pt;}
.y1b5{bottom:692.213333pt;}
.y11b{bottom:692.293333pt;}
.y6b{bottom:699.813333pt;}
.y3d{bottom:700.213333pt;}
.y19a{bottom:702.613333pt;}
.y105{bottom:704.133333pt;}
.y13e{bottom:707.093333pt;}
.yd6{bottom:707.493333pt;}
.y1b4{bottom:707.813333pt;}
.y11a{bottom:707.973333pt;}
.y6a{bottom:715.493333pt;}
.y93{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.y104{bottom:719.733333pt;}
.y13d{bottom:722.693333pt;}
.yd5{bottom:723.093333pt;}
.y16d{bottom:723.493333pt;}
.y69{bottom:731.093333pt;}
.y92{bottom:731.493333pt;}
.y3c{bottom:731.813333pt;}
.y199{bottom:735.813333pt;}
.y13c{bottom:738.373333pt;}
.yd4{bottom:738.693333pt;}
.y16c{bottom:739.093333pt;}
.y119{bottom:739.573333pt;}
.y68{bottom:746.693333pt;}
.y91{bottom:747.093333pt;}
.y3b{bottom:747.493333pt;}
.y8{bottom:747.733333pt;}
.y103{bottom:751.413333pt;}
.yd3{bottom:754.373333pt;}
.y1c7{bottom:754.693333pt;}
.y67{bottom:762.373333pt;}
.y90{bottom:762.693333pt;}
.y3a{bottom:763.093333pt;}
.y102{bottom:767.013333pt;}
.y118{bottom:768.213333pt;}
.yd2{bottom:769.973333pt;}
.y1c6{bottom:770.373333pt;}
.y16b{bottom:770.693333pt;}
.y66{bottom:777.973333pt;}
.ybe{bottom:778.373333pt;}
.y39{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.y101{bottom:782.693333pt;}
.yd1{bottom:785.653333pt;}
.y16a{bottom:786.373333pt;}
.ybd{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y100{bottom:798.293333pt;}
.y13b{bottom:801.253333pt;}
.y18b{bottom:801.653333pt;}
.y169{bottom:801.973333pt;}
.y65{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.yff{bottom:813.893333pt;}
.yd0{bottom:817.253333pt;}
.y168{bottom:817.653333pt;}
.y64{bottom:825.253333pt;}
.y36{bottom:825.653333pt;}
.ycf{bottom:832.853333pt;}
.y1b3{bottom:833.253333pt;}
.y63{bottom:840.853333pt;}
.y35{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yfe{bottom:845.573333pt;}
.y13a{bottom:848.533333pt;}
.y1c5{bottom:848.853333pt;}
.y167{bottom:849.253333pt;}
.yb1{bottom:852.933333pt;}
.y62{bottom:856.533333pt;}
.y8f{bottom:856.853333pt;}
.yfd{bottom:861.173333pt;}
.y139{bottom:864.133333pt;}
.y166{bottom:864.853333pt;}
.yb0{bottom:868.613333pt;}
.y18a{bottom:872.133333pt;}
.y8e{bottom:872.533333pt;}
.y34{bottom:872.853333pt;}
.yfc{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y165{bottom:880.533333pt;}
.yaf{bottom:884.213333pt;}
.y61{bottom:888.133333pt;}
.y33{bottom:888.533333pt;}
.yfb{bottom:895.813333pt;}
.y164{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.y60{bottom:903.840000pt;}
.y32{bottom:904.160000pt;}
.yfa{bottom:911.440000pt;}
.y163{bottom:911.840000pt;}
.yae{bottom:915.520000pt;}
.y5f{bottom:919.440000pt;}
.y31{bottom:919.840000pt;}
.yf9{bottom:927.040000pt;}
.y162{bottom:927.440000pt;}
.yad{bottom:931.120000pt;}
.y5e{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.y138{bottom:942.720000pt;}
.y161{bottom:943.040000pt;}
.yac{bottom:946.800000pt;}
.y8d{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.y160{bottom:958.720000pt;}
.y8c{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yab{bottom:970.400000pt;}
.y15f{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y15e{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.yaa{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686563pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:54.927899pt;}
.ha{height:55.631875pt;}
.hb{height:59.939062pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x50{left:71.279988pt;}
.x52{left:98.879988pt;}
.x3c{left:103.439988pt;}
.x49{left:111.519988pt;}
.x51{left:113.519988pt;}
.xe{left:119.679988pt;}
.xf{left:124.719988pt;}
.x3d{left:127.839988pt;}
.x3e{left:130.319988pt;}
.x10{left:166.346655pt;}
.x11{left:171.386655pt;}
.x2b{left:175.946655pt;}
.x12{left:184.906655pt;}
.x2{left:187.626655pt;}
.x13{left:190.186655pt;}
.xa{left:193.786655pt;}
.x14{left:195.386655pt;}
.x30{left:196.666655pt;}
.x15{left:200.986655pt;}
.x31{left:202.506655pt;}
.x5{left:212.826655pt;}
.x9{left:216.346655pt;}
.x32{left:218.106655pt;}
.x3f{left:219.786655pt;}
.x40{left:222.266655pt;}
.x7{left:224.186655pt;}
.x16{left:230.186655pt;}
.x17{left:235.786655pt;}
.x21{left:242.426655pt;}
.x22{left:245.546655pt;}
.x41{left:248.746655pt;}
.x42{left:251.226655pt;}
.xb{left:255.786655pt;}
.x23{left:259.386655pt;}
.x24{left:262.586655pt;}
.x43{left:270.906655pt;}
.x44{left:273.386655pt;}
.x2a{left:307.866655pt;}
.x25{left:309.546655pt;}
.x26{left:312.586655pt;}
.x33{left:334.186655pt;}
.x45{left:336.106655pt;}
.x34{left:340.586655pt;}
.x35{left:350.266655pt;}
.x27{left:351.226655pt;}
.x28{left:354.266655pt;}
.x36{left:356.586655pt;}
.x2c{left:359.786655pt;}
.x37{left:372.346655pt;}
.x2d{left:386.426655pt;}
.x18{left:413.466655pt;}
.x38{left:417.626655pt;}
.xc{left:420.426655pt;}
.x29{left:426.906655pt;}
.x2e{left:434.586655pt;}
.x46{left:435.546655pt;}
.x39{left:456.373322pt;}
.x3a{left:460.133322pt;}
.x4a{left:477.733322pt;}
.x47{left:497.413322pt;}
.x3b{left:501.893322pt;}
.x4b{left:520.613322pt;}
.x4c{left:522.853322pt;}
.x19{left:528.533322pt;}
.x1a{left:530.853322pt;}
.xd{left:541.893322pt;}
.x4{left:543.013322pt;}
.x6{left:556.053322pt;}
.x4d{left:562.533322pt;}
.x4e{left:564.853322pt;}
.x8{left:580.053322pt;}
.x48{left:603.253322pt;}
.x4f{left:607.733322pt;}
.x1b{left:643.733322pt;}
.x1c{left:645.973322pt;}
.x1d{left:674.693322pt;}
.x1e{left:676.933322pt;}
.x1f{left:694.053322pt;}
.x20{left:696.453322pt;}
.x3{left:711.413322pt;}
.x2f{left:714.613322pt;}
}




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