
    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_98195b05d3f111d480ac0567.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_bbfff42d034ecf3bf86aeb97.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727000;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_aa0ddaa2097be6c475c252d9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_20e5a4e79dc0fdfb0daeca15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.390000;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_c6dade7aa49a5a732438b8b1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.727000;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_1bc29d6b00322c725f2d7841.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910000;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_43716e6ef4f280d18ea964c9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_00cc288fbeaa091b7c510d60.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_ca011736b5bd9dad68d86084.woff')format("woff");}.ff9{font-family:ff9;line-height:0.705000;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_bb7131a84674a0a2fc67e6fc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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_99a4ef603533c787336e0953.woff')format("woff");}.ffb{font-family:ffb;line-height:0.773000;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_f65abe6b6f53d31de4f20cf1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.114000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000538px;}
.ls1c{letter-spacing:0.001243px;}
.ls1d{letter-spacing:0.002823px;}
.ls9{letter-spacing:0.003030px;}
.ls27{letter-spacing:0.003269px;}
.ls1e{letter-spacing:5.023295px;}
.ls1f{letter-spacing:8.303139px;}
.ls22{letter-spacing:18.384538px;}
.lsa{letter-spacing:19.606397px;}
.ls23{letter-spacing:19.905275px;}
.ls1{letter-spacing:19.965050px;}
.ls21{letter-spacing:20.039781px;}
.ls4{letter-spacing:21.242525px;}
.ls16{letter-spacing:22.238525px;}
.ls8{letter-spacing:22.296299px;}
.ls25{letter-spacing:22.544525px;}
.ls24{letter-spacing:22.910525px;}
.ls26{letter-spacing:22.916525px;}
.ls11{letter-spacing:23.013606px;}
.ls10{letter-spacing:23.372260px;}
.ls5{letter-spacing:23.618525px;}
.lse{letter-spacing:24.038525px;}
.ls1a{letter-spacing:24.746525px;}
.ls3{letter-spacing:24.905139px;}
.ls6{letter-spacing:24.926425px;}
.ls29{letter-spacing:25.165528px;}
.ls12{letter-spacing:25.406525px;}
.lsc{letter-spacing:25.464406px;}
.lsf{letter-spacing:25.676525px;}
.lsd{letter-spacing:25.904525px;}
.ls14{letter-spacing:26.378245px;}
.ls19{letter-spacing:26.432525px;}
.ls20{letter-spacing:26.480591px;}
.ls28{letter-spacing:27.092525px;}
.ls17{letter-spacing:28.070525px;}
.ls18{letter-spacing:28.076525px;}
.ls15{letter-spacing:28.520023px;}
.ls13{letter-spacing:29.360525px;}
.lsb{letter-spacing:29.409595px;}
.ls1b{letter-spacing:29.884178px;}
.ls2b{letter-spacing:29.887800px;}
.ls2a{letter-spacing:29.889030px;}
.ls0{letter-spacing:29.890178px;}
.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;}
}
.ws3{word-spacing:-16.605662px;}
.ws17{word-spacing:-15.278643px;}
.wsb8{word-spacing:-3.335478px;}
.ws23{word-spacing:-3.096376px;}
.ws8d{word-spacing:-2.917049px;}
.wsd4{word-spacing:-2.797498px;}
.wsc4{word-spacing:-2.677947px;}
.wse3{word-spacing:-2.438844px;}
.wsdf{word-spacing:-2.259518px;}
.ws3d{word-spacing:-2.139966px;}
.ws92{word-spacing:-1.781313px;}
.ws59{word-spacing:-1.542210px;}
.wsa8{word-spacing:-1.303108px;}
.ws1b{word-spacing:-1.243332px;}
.ws7b{word-spacing:-0.765128px;}
.wsc0{word-spacing:-0.705352px;}
.ws7c{word-spacing:-0.645576px;}
.ws9d{word-spacing:-0.587048px;}
.ws9c{word-spacing:-0.585801px;}
.ws2e{word-spacing:-0.526025px;}
.ws89{word-spacing:-0.227147px;}
.wscd{word-spacing:-0.107596px;}
.ws4{word-spacing:-0.071731px;}
.ws30{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.047820px;}
.wsd{word-spacing:0.000000px;}
.ws2b{word-spacing:0.011955px;}
.ws53{word-spacing:0.071731px;}
.ws5b{word-spacing:0.131506px;}
.ws43{word-spacing:0.191282px;}
.wsa6{word-spacing:0.251058px;}
.wsbc{word-spacing:0.310833px;}
.ws8c{word-spacing:0.322788px;}
.wsbb{word-spacing:0.360170px;}
.wsbd{word-spacing:0.370609px;}
.ws24{word-spacing:0.430384px;}
.ws27{word-spacing:0.490160px;}
.ws49{word-spacing:0.549936px;}
.wsc2{word-spacing:0.559067px;}
.wsdc{word-spacing:0.729262px;}
.ws80{word-spacing:0.848814px;}
.ws3a{word-spacing:0.908589px;}
.ws6c{word-spacing:0.968365px;}
.wsd2{word-spacing:1.207467px;}
.wscf{word-spacing:1.327018px;}
.ws93{word-spacing:1.386794px;}
.ws88{word-spacing:1.506345px;}
.ws26{word-spacing:1.566121px;}
.ws3f{word-spacing:1.625896px;}
.ws2d{word-spacing:1.745448px;}
.ws75{word-spacing:1.864999px;}
.ws76{word-spacing:1.878030px;}
.ws66{word-spacing:1.924774px;}
.ws2f{word-spacing:1.984550px;}
.wsa5{word-spacing:2.044326px;}
.wsb3{word-spacing:2.104101px;}
.wsb2{word-spacing:2.135650px;}
.ws78{word-spacing:2.223652px;}
.ws44{word-spacing:2.283428px;}
.wsb5{word-spacing:2.295383px;}
.ws2a{word-spacing:2.343204px;}
.ws45{word-spacing:2.402979px;}
.ws8{word-spacing:2.522530px;}
.ws39{word-spacing:2.642082px;}
.ws64{word-spacing:2.666921px;}
.ws25{word-spacing:2.701857px;}
.wsc9{word-spacing:2.761633px;}
.ws12{word-spacing:2.821408px;}
.ws6e{word-spacing:2.881184px;}
.ws6f{word-spacing:2.894724px;}
.ws48{word-spacing:2.940960px;}
.ws5a{word-spacing:3.000735px;}
.ws54{word-spacing:3.060511px;}
.ws7e{word-spacing:3.239838px;}
.ws2{word-spacing:3.299613px;}
.wsbe{word-spacing:3.305166px;}
.wsba{word-spacing:3.325417px;}
.wsac{word-spacing:3.343195px;}
.ws6{word-spacing:3.359389px;}
.ws16{word-spacing:3.419164px;}
.ws65{word-spacing:3.538716px;}
.wsca{word-spacing:3.550671px;}
.ws6a{word-spacing:3.598491px;}
.wsad{word-spacing:3.718042px;}
.wsbf{word-spacing:3.777818px;}
.ws9e{word-spacing:3.837594px;}
.ws40{word-spacing:4.016920px;}
.wsd3{word-spacing:4.136472px;}
.ws7{word-spacing:4.196247px;}
.wsc{word-spacing:4.256023px;}
.ws6d{word-spacing:4.375574px;}
.ws81{word-spacing:4.435350px;}
.wsb9{word-spacing:4.495125px;}
.ws11{word-spacing:4.554901px;}
.ws4d{word-spacing:4.628374px;}
.ws3e{word-spacing:4.674452px;}
.ws10{word-spacing:4.734228px;}
.ws21{word-spacing:4.794003px;}
.ws3c{word-spacing:4.853779px;}
.wsce{word-spacing:4.914842px;}
.ws5f{word-spacing:4.973330px;}
.wsb4{word-spacing:4.985285px;}
.wsb{word-spacing:5.033106px;}
.ws5e{word-spacing:5.152657px;}
.ws2c{word-spacing:5.164612px;}
.ws5c{word-spacing:5.184346px;}
.ws5d{word-spacing:5.212432px;}
.ws6b{word-spacing:5.272208px;}
.ws7a{word-spacing:5.331984px;}
.ws9f{word-spacing:5.370668px;}
.wsf{word-spacing:5.391759px;}
.wsd1{word-spacing:5.451535px;}
.wsa7{word-spacing:5.511310px;}
.ws97{word-spacing:5.571086px;}
.wsc8{word-spacing:5.583041px;}
.ws94{word-spacing:5.596491px;}
.ws96{word-spacing:5.614923px;}
.ws56{word-spacing:5.630862px;}
.wsaf{word-spacing:5.690637px;}
.ws85{word-spacing:5.794238px;}
.ws84{word-spacing:5.810188px;}
.wsab{word-spacing:5.822143px;}
.ws19{word-spacing:5.869964px;}
.ws4a{word-spacing:5.929740px;}
.wsd8{word-spacing:5.989515px;}
.ws1c{word-spacing:6.049291px;}
.ws82{word-spacing:6.109066px;}
.ws4e{word-spacing:6.121021px;}
.ws7f{word-spacing:6.168842px;}
.ws1d{word-spacing:6.228618px;}
.wsb7{word-spacing:6.348169px;}
.ws7d{word-spacing:6.527496px;}
.ws4c{word-spacing:6.562015px;}
.wsa{word-spacing:6.647047px;}
.ws47{word-spacing:6.706822px;}
.wsa0{word-spacing:6.725466px;}
.ws18{word-spacing:6.826374px;}
.ws37{word-spacing:6.886149px;}
.ws69{word-spacing:6.945925px;}
.ws67{word-spacing:7.005700px;}
.ws34{word-spacing:7.065476px;}
.ws8f{word-spacing:7.077431px;}
.ws29{word-spacing:7.185027px;}
.ws4b{word-spacing:7.214270px;}
.wsa9{word-spacing:7.218751px;}
.ws38{word-spacing:7.304578px;}
.ws35{word-spacing:7.364354px;}
.wscb{word-spacing:7.376309px;}
.wsc7{word-spacing:7.481734px;}
.ws57{word-spacing:7.483905px;}
.ws46{word-spacing:7.543681px;}
.wsd5{word-spacing:7.663232px;}
.ws1a{word-spacing:7.723008px;}
.ws77{word-spacing:7.782783px;}
.ws63{word-spacing:7.842559px;}
.wse2{word-spacing:7.902334px;}
.ws42{word-spacing:7.962110px;}
.ws95{word-spacing:8.213167px;}
.wsae{word-spacing:8.260988px;}
.ws68{word-spacing:8.304180px;}
.ws41{word-spacing:8.320764px;}
.wsb1{word-spacing:8.332719px;}
.ws55{word-spacing:8.500090px;}
.ws50{word-spacing:8.540460px;}
.ws9b{word-spacing:8.558269px;}
.ws52{word-spacing:8.559866px;}
.wsaa{word-spacing:8.619642px;}
.ws3b{word-spacing:8.631597px;}
.wsdb{word-spacing:8.679417px;}
.ws1e{word-spacing:8.798968px;}
.ws98{word-spacing:9.038071px;}
.wse0{word-spacing:9.097846px;}
.wse1{word-spacing:9.157622px;}
.ws62{word-spacing:9.217398px;}
.wsa1{word-spacing:9.220565px;}
.wsa4{word-spacing:9.277173px;}
.ws36{word-spacing:9.396724px;}
.wsb6{word-spacing:9.408679px;}
.ws61{word-spacing:9.456500px;}
.ws60{word-spacing:9.516276px;}
.wsd0{word-spacing:9.635827px;}
.ws5{word-spacing:9.755378px;}
.ws86{word-spacing:9.765892px;}
.ws58{word-spacing:9.767333px;}
.ws87{word-spacing:9.815154px;}
.ws33{word-spacing:9.874929px;}
.wsd6{word-spacing:9.934705px;}
.wsc6{word-spacing:9.946660px;}
.ws8e{word-spacing:10.314180px;}
.ws14{word-spacing:10.472685px;}
.wsde{word-spacing:10.532461px;}
.ws20{word-spacing:10.592236px;}
.ws91{word-spacing:10.652012px;}
.ws1f{word-spacing:10.711788px;}
.wsa3{word-spacing:10.771563px;}
.ws70{word-spacing:10.891114px;}
.ws51{word-spacing:10.903069px;}
.ws73{word-spacing:10.927996px;}
.ws71{word-spacing:10.933520px;}
.ws72{word-spacing:10.950890px;}
.wsc3{word-spacing:11.249768px;}
.ws22{word-spacing:11.548646px;}
.wsa2{word-spacing:11.560601px;}
.ws31{word-spacing:11.847524px;}
.ws90{word-spacing:12.325729px;}
.ws99{word-spacing:12.445280px;}
.ws28{word-spacing:12.684382px;}
.ws15{word-spacing:12.744158px;}
.ws74{word-spacing:12.803934px;}
.ws8b{word-spacing:13.280877px;}
.wsd9{word-spacing:13.700568px;}
.wsda{word-spacing:13.760343px;}
.wsd7{word-spacing:15.314509px;}
.wsc1{word-spacing:15.846284px;}
.ws79{word-spacing:17.353051px;}
.wsb0{word-spacing:18.467452px;}
.wse{word-spacing:19.845499px;}
.ws8a{word-spacing:21.829051px;}
.ws1{word-spacing:22.535401px;}
.ws4f{word-spacing:22.834279px;}
.wsc5{word-spacing:23.813452px;}
.wscc{word-spacing:24.275633px;}
.ws32{word-spacing:24.383038px;}
.wsdd{word-spacing:24.400400px;}
.ws13{word-spacing:25.613038px;}
.ws0{word-spacing:26.827469px;}
.ws83{word-spacing:26.831958px;}
.ws9a{word-spacing:27.011452px;}
._20{margin-left:-31.326346px;}
._26{margin-left:-29.755137px;}
._25{margin-left:-27.664133px;}
._16{margin-left:-5.965590px;}
._4{margin-left:-4.961375px;}
._3{margin-left:-3.287658px;}
._0{margin-left:-2.223667px;}
._2{margin-left:-1.063991px;}
._10{width:1.130663px;}
._5{width:2.250107px;}
._23{width:3.393486px;}
._d{width:4.582858px;}
._22{width:6.441714px;}
._11{width:14.346144px;}
._15{width:15.375657px;}
._21{width:16.390484px;}
._8{width:17.813129px;}
._19{width:19.126659px;}
._17{width:20.322562px;}
._1d{width:21.399665px;}
._9{width:22.760034px;}
._1c{width:23.855538px;}
._7{width:25.464406px;}
._1{width:26.530297px;}
._6{width:28.524931px;}
._14{width:30.246454px;}
._b{width:31.752814px;}
._e{width:33.593887px;}
._1f{width:35.387155px;}
._12{width:37.537935px;}
._1b{width:38.734589px;}
._f{width:40.181173px;}
._1e{width:42.350661px;}
._1a{width:43.635046px;}
._18{width:45.308763px;}
._13{width:49.386616px;}
._c{width:55.423951px;}
._24{width:1856.692851px;}
._a{width:1886.584851px;}
.fc1{color:rgb(236,0,140);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.842800px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.169500px;}
.y48{bottom:108.001500px;}
.y15e{bottom:110.200500px;}
.yd7{bottom:111.907500px;}
.y1c6{bottom:111.909000px;}
.y179{bottom:117.706500px;}
.y95{bottom:119.515500px;}
.y101{bottom:120.267000px;}
.y1d5{bottom:121.122000px;}
.y18f{bottom:121.302000px;}
.y47{bottom:126.361500px;}
.y15d{bottom:128.560500px;}
.yd6{bottom:130.267500px;}
.y178{bottom:136.066500px;}
.y94{bottom:137.874000px;}
.y1ac{bottom:138.136500px;}
.y100{bottom:138.627000px;}
.y1c5{bottom:142.224000px;}
.y46{bottom:144.721500px;}
.y15c{bottom:146.920500px;}
.yd5{bottom:148.627500px;}
.y120{bottom:151.369500px;}
.y1d4{bottom:151.437000px;}
.y18e{bottom:151.617000px;}
.y1f5{bottom:153.804000px;}
.y93{bottom:156.234000px;}
.y13d{bottom:156.630000px;}
.yff{bottom:156.987000px;}
.y45{bottom:163.081500px;}
.y15b{bottom:165.280500px;}
.y6a{bottom:166.381500px;}
.y1ab{bottom:168.270000px;}
.y1f4{bottom:172.162500px;}
.y1c4{bottom:172.539000px;}
.yd4{bottom:172.965000px;}
.y92{bottom:174.594000px;}
.yfe{bottom:181.324500px;}
.ybd{bottom:181.440000px;}
.y44{bottom:181.441500px;}
.y11f{bottom:181.684500px;}
.y1d3{bottom:181.752000px;}
.y18d{bottom:181.932000px;}
.y69{bottom:184.741500px;}
.y13c{bottom:186.898500px;}
.yd3{bottom:191.325000px;}
.y1f{bottom:191.752500px;}
.y91{bottom:192.954000px;}
.y15a{bottom:195.595500px;}
.y1aa{bottom:198.405000px;}
.y1f3{bottom:199.605000px;}
.yfd{bottom:199.684500px;}
.y43{bottom:199.800000px;}
.y11e{bottom:200.044500px;}
.y1c3{bottom:202.854000px;}
.yd2{bottom:209.685000px;}
.y1e{bottom:210.112500px;}
.y90{bottom:211.314000px;}
.y1d2{bottom:212.067000px;}
.y18c{bottom:212.247000px;}
.y159{bottom:213.955500px;}
.y68{bottom:215.056500px;}
.y13b{bottom:217.167000px;}
.yfc{bottom:218.044500px;}
.y42{bottom:218.160000px;}
.y1f2{bottom:227.047500px;}
.ybc{bottom:227.811000px;}
.yd1{bottom:228.043500px;}
.y1a9{bottom:228.538500px;}
.y8f{bottom:229.674000px;}
.y11d{bottom:230.359500px;}
.y18b{bottom:230.607000px;}
.y1c2{bottom:233.169000px;}
.y177{bottom:233.415000px;}
.yfb{bottom:236.404500px;}
.y41{bottom:236.520000px;}
.y1d{bottom:240.427500px;}
.y1d1{bottom:242.382000px;}
.y158{bottom:244.270500px;}
.y67{bottom:245.371500px;}
.yd0{bottom:246.403500px;}
.y13a{bottom:247.434000px;}
.y1f1{bottom:254.488500px;}
.yfa{bottom:254.763000px;}
.y40{bottom:254.880000px;}
.y8e{bottom:257.685000px;}
.y1a8{bottom:258.673500px;}
.y11c{bottom:260.674500px;}
.y18a{bottom:260.922000px;}
.y157{bottom:262.630500px;}
.y1c1{bottom:263.484000px;}
.y66{bottom:263.730000px;}
.ycf{bottom:264.763500px;}
.ybb{bottom:265.864500px;}
.y1c{bottom:270.742500px;}
.y1d0{bottom:272.697000px;}
.y3f{bottom:273.240000px;}
.y139{bottom:277.702500px;}
.y189{bottom:279.282000px;}
.y1f0{bottom:281.931000px;}
.y65{bottom:282.090000px;}
.yce{bottom:283.123500px;}
.yba{bottom:284.224500px;}
.yf9{bottom:285.078000px;}
.y1a7{bottom:288.807000px;}
.y1b{bottom:289.102500px;}
.y156{bottom:290.641500px;}
.y11b{bottom:290.989500px;}
.y1c0{bottom:293.799000px;}
.y8d{bottom:296.529000px;}
.ycd{bottom:301.483500px;}
.y3e{bottom:301.918500px;}
.yb9{bottom:302.584500px;}
.y1cf{bottom:303.012000px;}
.yf8{bottom:303.438000px;}
.y138{bottom:307.971000px;}
.y1ef{bottom:309.373500px;}
.y188{bottom:309.597000px;}
.y64{bottom:312.405000px;}
.y8c{bottom:314.889000px;}
.y1a6{bottom:318.942000px;}
.y1a{bottom:319.417500px;}
.yb8{bottom:320.944500px;}
.y11a{bottom:321.304500px;}
.yf7{bottom:321.798000px;}
.y1bf{bottom:324.114000px;}
.y187{bottom:327.955500px;}
.y3d{bottom:330.598500px;}
.y176{bottom:330.765000px;}
.ycc{bottom:331.798500px;}
.y155{bottom:332.473500px;}
.y8b{bottom:333.247500px;}
.y1ce{bottom:333.327000px;}
.y1ee{bottom:336.814500px;}
.y19{bottom:337.776000px;}
.y137{bottom:338.239500px;}
.yb7{bottom:339.304500px;}
.yf6{bottom:340.158000px;}
.y63{bottom:342.720000px;}
.y3c{bottom:348.958500px;}
.y1a5{bottom:349.075500px;}
.ycb{bottom:350.158500px;}
.y8a{bottom:351.607500px;}
.y119{bottom:351.619500px;}
.y1be{bottom:354.429000px;}
.yb6{bottom:357.664500px;}
.y186{bottom:358.270500px;}
.yf5{bottom:358.518000px;}
.y175{bottom:361.080000px;}
.y154{bottom:362.788500px;}
.y1cd{bottom:363.642000px;}
.y1ed{bottom:364.257000px;}
.y3b{bottom:367.318500px;}
.y18{bottom:368.091000px;}
.y136{bottom:368.508000px;}
.yca{bottom:368.518500px;}
.y89{bottom:369.967500px;}
.y62{bottom:373.035000px;}
.yb5{bottom:376.023000px;}
.y185{bottom:376.630500px;}
.y1a4{bottom:379.210500px;}
.y174{bottom:379.440000px;}
.y118{bottom:379.630500px;}
.y1bd{bottom:384.744000px;}
.y3a{bottom:385.677000px;}
.yc9{bottom:386.878500px;}
.y88{bottom:388.327500px;}
.yf4{bottom:388.833000px;}
.y1ec{bottom:391.698000px;}
.y153{bottom:393.103500px;}
.y1cc{bottom:393.957000px;}
.yb4{bottom:394.383000px;}
.y17{bottom:398.406000px;}
.y135{bottom:398.776500px;}
.y61{bottom:403.350000px;}
.y39{bottom:404.037000px;}
.y184{bottom:404.641500px;}
.yc8{bottom:405.237000px;}
.y87{bottom:406.687500px;}
.yf3{bottom:407.193000px;}
.y1a3{bottom:409.345500px;}
.y173{bottom:409.755000px;}
.y1eb{bottom:410.058000px;}
.yb3{bottom:412.743000px;}
.y1bc{bottom:415.059000px;}
.y16{bottom:416.766000px;}
.y134{bottom:417.136500px;}
.y117{bottom:421.462500px;}
.y60{bottom:421.710000px;}
.y38{bottom:422.397000px;}
.y152{bottom:423.418500px;}
.yc7{bottom:423.597000px;}
.y1cb{bottom:424.272000px;}
.y86{bottom:425.047500px;}
.yf2{bottom:425.553000px;}
.y172{bottom:428.115000px;}
.yb2{bottom:431.103000px;}
.y1ea{bottom:438.069000px;}
.y1a2{bottom:439.479000px;}
.y116{bottom:439.822500px;}
.y5f{bottom:440.070000px;}
.y37{bottom:440.757000px;}
.y151{bottom:441.778500px;}
.y85{bottom:443.407500px;}
.yf1{bottom:443.913000px;}
.y1bb{bottom:445.374000px;}
.y171{bottom:446.475000px;}
.y15{bottom:447.081000px;}
.y133{bottom:447.403500px;}
.yb1{bottom:449.463000px;}
.yc6{bottom:453.912000px;}
.y1ca{bottom:454.587000px;}
.y115{bottom:458.182500px;}
.y84{bottom:461.767500px;}
.yf0{bottom:462.271500px;}
.y132{bottom:465.763500px;}
.yb0{bottom:467.823000px;}
.y36{bottom:469.437000px;}
.y1a1{bottom:469.614000px;}
.y5e{bottom:470.385000px;}
.y150{bottom:472.093500px;}
.yc5{bottom:472.272000px;}
.y1ba{bottom:475.689000px;}
.y170{bottom:476.790000px;}
.y14{bottom:477.396000px;}
.y1e9{bottom:478.665000px;}
.y83{bottom:480.126000px;}
.yef{bottom:480.631500px;}
.y1c9{bottom:484.902000px;}
.yaf{bottom:486.183000px;}
.y114{bottom:488.497500px;}
.y16f{bottom:495.150000px;}
.y13{bottom:495.756000px;}
.y131{bottom:496.032000px;}
.y35{bottom:498.115500px;}
.y82{bottom:498.486000px;}
.yee{bottom:498.991500px;}
.y1a0{bottom:499.747500px;}
.y5d{bottom:500.700000px;}
.y14f{bottom:502.408500px;}
.yc4{bottom:502.587000px;}
.yae{bottom:504.541500px;}
.y1b9{bottom:506.004000px;}
.y1e8{bottom:506.107500px;}
.y113{bottom:506.857500px;}
.y183{bottom:507.105000px;}
.y16e{bottom:513.508500px;}
.y1c8{bottom:515.217000px;}
.y81{bottom:516.846000px;}
.yed{bottom:517.351500px;}
.y14e{bottom:520.768500px;}
.yad{bottom:522.901500px;}
.y182{bottom:525.465000px;}
.y12{bottom:526.071000px;}
.y130{bottom:526.300500px;}
.y34{bottom:526.794000px;}
.yc3{bottom:526.924500px;}
.y19f{bottom:529.882500px;}
.y5c{bottom:531.015000px;}
.y1e7{bottom:533.548500px;}
.y1b8{bottom:534.015000px;}
.y80{bottom:535.206000px;}
.yec{bottom:535.711500px;}
.y112{bottom:537.172500px;}
.yac{bottom:541.261500px;}
.y16d{bottom:543.823500px;}
.y11{bottom:544.431000px;}
.y12f{bottom:544.660500px;}
.y1c7{bottom:545.532000px;}
.y5b{bottom:549.375000px;}
.y14d{bottom:551.083500px;}
.yc2{bottom:551.262000px;}
.y7f{bottom:553.566000px;}
.yeb{bottom:554.071500px;}
.y33{bottom:555.474000px;}
.y111{bottom:555.532500px;}
.y181{bottom:555.780000px;}
.yab{bottom:559.621500px;}
.y19e{bottom:560.016000px;}
.y1e6{bottom:560.991000px;}
.y16c{bottom:562.183500px;}
.y14c{bottom:569.442000px;}
.y7e{bottom:571.926000px;}
.yea{bottom:572.431500px;}
.y32{bottom:573.834000px;}
.y180{bottom:574.138500px;}
.y10{bottom:574.746000px;}
.y12e{bottom:574.929000px;}
.y1b7{bottom:575.847000px;}
.yaa{bottom:577.981500px;}
.y5a{bottom:579.690000px;}
.yc1{bottom:581.577000px;}
.y110{bottom:585.847500px;}
.y1e5{bottom:588.433500px;}
.y19d{bottom:590.151000px;}
.y7d{bottom:590.286000px;}
.y31{bottom:592.194000px;}
.y16b{bottom:592.498500px;}
.ya9{bottom:596.341500px;}
.y14b{bottom:599.757000px;}
.yc0{bottom:599.937000px;}
.ye9{bottom:602.746500px;}
.y17f{bottom:604.453500px;}
.yf{bottom:605.061000px;}
.y12d{bottom:605.197500px;}
.y1b6{bottom:606.162000px;}
.y7c{bottom:608.646000px;}
.y59{bottom:610.005000px;}
.y10f{bottom:610.185000px;}
.y30{bottom:610.552500px;}
.y16a{bottom:610.858500px;}
.ya8{bottom:614.701500px;}
.y1e4{bottom:615.874500px;}
.ybf{bottom:618.297000px;}
.y19c{bottom:620.284500px;}
.ye8{bottom:621.105000px;}
.y17e{bottom:622.813500px;}
.y7b{bottom:627.004500px;}
.y2f{bottom:628.912500px;}
.y14a{bottom:630.072000px;}
.ya7{bottom:633.061500px;}
.y1e3{bottom:634.234500px;}
.y10e{bottom:634.521000px;}
.ye{bottom:635.376000px;}
.y12c{bottom:635.464500px;}
.y1b5{bottom:636.477000px;}
.ye7{bottom:639.465000px;}
.y58{bottom:640.320000px;}
.y169{bottom:641.173500px;}
.y7a{bottom:645.364500px;}
.ybe{bottom:646.308000px;}
.y19b{bottom:650.419500px;}
.ya6{bottom:651.420000px;}
.y2e{bottom:657.592500px;}
.ye6{bottom:657.825000px;}
.y57{bottom:658.680000px;}
.y10d{bottom:658.858500px;}
.y168{bottom:659.533500px;}
.y149{bottom:660.387000px;}
.y1e2{bottom:661.677000px;}
.y79{bottom:663.724500px;}
.yd{bottom:665.691000px;}
.y12b{bottom:665.733000px;}
.y1b4{bottom:666.792000px;}
.y1ff{bottom:669.096000px;}
.ya5{bottom:669.780000px;}
.y17d{bottom:671.488500px;}
.ye5{bottom:676.185000px;}
.y19a{bottom:680.554500px;}
.y78{bottom:682.084500px;}
.y2d{bottom:686.271000px;}
.ya4{bottom:688.140000px;}
.y56{bottom:688.995000px;}
.y1e1{bottom:689.118000px;}
.y10c{bottom:689.173500px;}
.y167{bottom:689.848500px;}
.y148{bottom:690.702000px;}
.ye4{bottom:694.545000px;}
.y12a{bottom:696.001500px;}
.yc{bottom:696.006000px;}
.y1b3{bottom:697.107000px;}
.y1fe{bottom:699.411000px;}
.y77{bottom:700.444500px;}
.y2c{bottom:704.631000px;}
.ya3{bottom:706.500000px;}
.y55{bottom:707.353500px;}
.y10b{bottom:707.533500px;}
.y166{bottom:708.208500px;}
.y199{bottom:710.688000px;}
.ye3{bottom:712.905000px;}
.yb{bottom:714.366000px;}
.y1e0{bottom:716.560500px;}
.y76{bottom:718.804500px;}
.y17c{bottom:720.163500px;}
.y147{bottom:721.017000px;}
.y2b{bottom:722.991000px;}
.ya2{bottom:724.860000px;}
.y54{bottom:725.713500px;}
.y129{bottom:726.270000px;}
.y1b2{bottom:727.422000px;}
.y1fd{bottom:729.726000px;}
.ye2{bottom:731.265000px;}
.y10a{bottom:735.544500px;}
.y75{bottom:737.164500px;}
.y165{bottom:738.523500px;}
.y198{bottom:740.823000px;}
.ya1{bottom:743.220000px;}
.y1df{bottom:744.001500px;}
.y53{bottom:744.073500px;}
.y128{bottom:744.630000px;}
.ya{bottom:744.681000px;}
.ye1{bottom:749.625000px;}
.y146{bottom:751.332000px;}
.y2a{bottom:751.669500px;}
.y74{bottom:755.524500px;}
.y164{bottom:756.883500px;}
.y1b1{bottom:757.737000px;}
.y1fc{bottom:760.041000px;}
.ya0{bottom:761.580000px;}
.y1de{bottom:762.361500px;}
.y52{bottom:762.433500px;}
.ye0{bottom:767.983500px;}
.y17b{bottom:768.838500px;}
.y145{bottom:769.692000px;}
.y197{bottom:770.956500px;}
.y73{bottom:773.883000px;}
.y127{bottom:774.898500px;}
.y9{bottom:774.996000px;}
.y109{bottom:777.378000px;}
.y29{bottom:779.682000px;}
.y9f{bottom:779.940000px;}
.ydf{bottom:786.343500px;}
.y163{bottom:787.198500px;}
.y1b0{bottom:788.052000px;}
.y1dd{bottom:789.804000px;}
.y1fb{bottom:790.356000px;}
.y51{bottom:792.748500px;}
.y126{bottom:793.257000px;}
.y9e{bottom:798.298500px;}
.y144{bottom:800.007000px;}
.y196{bottom:801.091500px;}
.y72{bottom:801.894000px;}
.yde{bottom:804.703500px;}
.y8{bottom:805.311000px;}
.y162{bottom:805.558500px;}
.y108{bottom:810.681000px;}
.y50{bottom:811.108500px;}
.y9d{bottom:816.658500px;}
.y1dc{bottom:817.246500px;}
.y17a{bottom:817.513500px;}
.y1af{bottom:818.367000px;}
.y1fa{bottom:820.671000px;}
.y28{bottom:820.809000px;}
.ydd{bottom:823.063500px;}
.y125{bottom:823.525500px;}
.y107{bottom:829.041000px;}
.y4f{bottom:829.468500px;}
.y143{bottom:830.322000px;}
.y195{bottom:831.225000px;}
.y7{bottom:833.322000px;}
.y9c{bottom:835.018500px;}
.y161{bottom:835.873500px;}
.ydc{bottom:841.423500px;}
.y71{bottom:843.727500px;}
.y1db{bottom:844.687500px;}
.y106{bottom:847.401000px;}
.y4e{bottom:847.828500px;}
.y1ae{bottom:848.682000px;}
.y27{bottom:849.489000px;}
.y1f9{bottom:850.986000px;}
.y9b{bottom:853.378500px;}
.y124{bottom:853.794000px;}
.y160{bottom:854.232000px;}
.ydb{bottom:859.783500px;}
.y142{bottom:860.637000px;}
.y194{bottom:861.360000px;}
.y70{bottom:862.087500px;}
.y105{bottom:865.761000px;}
.y4d{bottom:866.188500px;}
.y26{bottom:867.849000px;}
.y9a{bottom:871.738500px;}
.y1da{bottom:872.130000px;}
.yda{bottom:878.143500px;}
.y1ad{bottom:878.997000px;}
.y6f{bottom:880.447500px;}
.y1f8{bottom:881.301000px;}
.y123{bottom:884.062500px;}
.y104{bottom:884.121000px;}
.y4c{bottom:884.547000px;}
.y99{bottom:890.098500px;}
.y141{bottom:890.952000px;}
.y193{bottom:891.493500px;}
.y6{bottom:893.514000px;}
.yd9{bottom:896.503500px;}
.y25{bottom:896.527500px;}
.y6e{bottom:898.806000px;}
.y1d9{bottom:899.571000px;}
.y122{bottom:902.422500px;}
.y103{bottom:902.481000px;}
.y4b{bottom:902.907000px;}
.y98{bottom:908.458500px;}
.y140{bottom:909.312000px;}
.y192{bottom:909.853500px;}
.y1f7{bottom:911.616000px;}
.y5{bottom:911.874000px;}
.yd8{bottom:914.862000px;}
.y6d{bottom:917.166000px;}
.y102{bottom:920.839500px;}
.y24{bottom:925.207500px;}
.y97{bottom:926.818500px;}
.y1d8{bottom:927.013500px;}
.y4{bottom:930.234000px;}
.y121{bottom:930.433500px;}
.y4a{bottom:933.222000px;}
.y6c{bottom:935.526000px;}
.y13f{bottom:939.627000px;}
.y191{bottom:939.988500px;}
.y1f6{bottom:941.931000px;}
.y23{bottom:943.567500px;}
.y96{bottom:945.177000px;}
.y3{bottom:948.594000px;}
.y15f{bottom:951.582000px;}
.y6b{bottom:953.886000px;}
.y1d7{bottom:954.456000px;}
.y49{bottom:963.537000px;}
.y13e{bottom:969.942000px;}
.y190{bottom:970.122000px;}
.y22{bottom:972.246000px;}
.y1d6{bottom:972.814500px;}
.y2{bottom:981.897000px;}
.y1{bottom:1000.257000px;}
.y21{bottom:1058.400000px;}
.h3{height:41.723369px;}
.h2{height:44.831700px;}
.h1{height:50.211840px;}
.h4{height:59.945700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:108.000000px;}
.x7{left:126.265500px;}
.x4{left:130.417500px;}
.x5{left:145.360500px;}
.xa{left:162.171000px;}
.x8{left:163.294500px;}
.x9{left:178.236000px;}
.x2{left:380.959500px;}
.x1{left:396.058500px;}
.x6{left:455.263500px;}
.xb{left:678.174000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.434667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000479pt;}
.ls1c{letter-spacing:0.001105pt;}
.ls1d{letter-spacing:0.002509pt;}
.ls9{letter-spacing:0.002693pt;}
.ls27{letter-spacing:0.002906pt;}
.ls1e{letter-spacing:4.465151pt;}
.ls1f{letter-spacing:7.380568pt;}
.ls22{letter-spacing:16.341812pt;}
.lsa{letter-spacing:17.427908pt;}
.ls23{letter-spacing:17.693578pt;}
.ls1{letter-spacing:17.746711pt;}
.ls21{letter-spacing:17.813138pt;}
.ls4{letter-spacing:18.882245pt;}
.ls16{letter-spacing:19.767578pt;}
.ls8{letter-spacing:19.818932pt;}
.ls25{letter-spacing:20.039578pt;}
.ls24{letter-spacing:20.364911pt;}
.ls26{letter-spacing:20.370245pt;}
.ls11{letter-spacing:20.456539pt;}
.ls10{letter-spacing:20.775342pt;}
.ls5{letter-spacing:20.994245pt;}
.lse{letter-spacing:21.367578pt;}
.ls1a{letter-spacing:21.996911pt;}
.ls3{letter-spacing:22.137902pt;}
.ls6{letter-spacing:22.156822pt;}
.ls29{letter-spacing:22.369358pt;}
.ls12{letter-spacing:22.583578pt;}
.lsc{letter-spacing:22.635027pt;}
.lsf{letter-spacing:22.823578pt;}
.lsd{letter-spacing:23.026245pt;}
.ls14{letter-spacing:23.447329pt;}
.ls19{letter-spacing:23.495578pt;}
.ls20{letter-spacing:23.538303pt;}
.ls28{letter-spacing:24.082245pt;}
.ls17{letter-spacing:24.951578pt;}
.ls18{letter-spacing:24.956911pt;}
.ls15{letter-spacing:25.351132pt;}
.ls13{letter-spacing:26.098245pt;}
.lsb{letter-spacing:26.141862pt;}
.ls1b{letter-spacing:26.563713pt;}
.ls2b{letter-spacing:26.566933pt;}
.ls2a{letter-spacing:26.568027pt;}
.ls0{letter-spacing:26.569047pt;}
.ws3{word-spacing:-14.760588pt;}
.ws17{word-spacing:-13.581016pt;}
.wsb8{word-spacing:-2.964870pt;}
.ws23{word-spacing:-2.752334pt;}
.ws8d{word-spacing:-2.592933pt;}
.wsd4{word-spacing:-2.486665pt;}
.wsc4{word-spacing:-2.380397pt;}
.wse3{word-spacing:-2.167862pt;}
.wsdf{word-spacing:-2.008460pt;}
.ws3d{word-spacing:-1.902192pt;}
.ws92{word-spacing:-1.583389pt;}
.ws59{word-spacing:-1.370854pt;}
.wsa8{word-spacing:-1.158318pt;}
.ws1b{word-spacing:-1.105184pt;}
.ws7b{word-spacing:-0.680113pt;}
.wsc0{word-spacing:-0.626980pt;}
.ws7c{word-spacing:-0.573846pt;}
.ws9d{word-spacing:-0.521821pt;}
.ws9c{word-spacing:-0.520712pt;}
.ws2e{word-spacing:-0.467578pt;}
.ws89{word-spacing:-0.201909pt;}
.wscd{word-spacing:-0.095641pt;}
.ws4{word-spacing:-0.063761pt;}
.ws30{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.042507pt;}
.wsd{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.010627pt;}
.ws53{word-spacing:0.063761pt;}
.ws5b{word-spacing:0.116895pt;}
.ws43{word-spacing:0.170028pt;}
.wsa6{word-spacing:0.223162pt;}
.wsbc{word-spacing:0.276296pt;}
.ws8c{word-spacing:0.286923pt;}
.wsbb{word-spacing:0.320151pt;}
.wsbd{word-spacing:0.329430pt;}
.ws24{word-spacing:0.382564pt;}
.ws27{word-spacing:0.435698pt;}
.ws49{word-spacing:0.488832pt;}
.wsc2{word-spacing:0.496949pt;}
.wsdc{word-spacing:0.648233pt;}
.ws80{word-spacing:0.754501pt;}
.ws3a{word-spacing:0.807635pt;}
.ws6c{word-spacing:0.860769pt;}
.wsd2{word-spacing:1.073304pt;}
.wscf{word-spacing:1.179572pt;}
.ws93{word-spacing:1.232706pt;}
.ws88{word-spacing:1.338973pt;}
.ws26{word-spacing:1.392107pt;}
.ws3f{word-spacing:1.445241pt;}
.ws2d{word-spacing:1.551509pt;}
.ws75{word-spacing:1.657777pt;}
.ws76{word-spacing:1.669360pt;}
.ws66{word-spacing:1.710911pt;}
.ws2f{word-spacing:1.764044pt;}
.wsa5{word-spacing:1.817178pt;}
.wsb3{word-spacing:1.870312pt;}
.wsb2{word-spacing:1.898356pt;}
.ws78{word-spacing:1.976580pt;}
.ws44{word-spacing:2.029714pt;}
.wsb5{word-spacing:2.040340pt;}
.ws2a{word-spacing:2.082848pt;}
.ws45{word-spacing:2.135981pt;}
.ws8{word-spacing:2.242249pt;}
.ws39{word-spacing:2.348517pt;}
.ws64{word-spacing:2.370597pt;}
.ws25{word-spacing:2.401651pt;}
.wsc9{word-spacing:2.454785pt;}
.ws12{word-spacing:2.507919pt;}
.ws6e{word-spacing:2.561052pt;}
.ws6f{word-spacing:2.573088pt;}
.ws48{word-spacing:2.614186pt;}
.ws5a{word-spacing:2.667320pt;}
.ws54{word-spacing:2.720454pt;}
.ws7e{word-spacing:2.879856pt;}
.ws2{word-spacing:2.932989pt;}
.wsbe{word-spacing:2.937926pt;}
.wsba{word-spacing:2.955926pt;}
.wsac{word-spacing:2.971729pt;}
.ws6{word-spacing:2.986123pt;}
.ws16{word-spacing:3.039257pt;}
.ws65{word-spacing:3.145525pt;}
.wsca{word-spacing:3.156152pt;}
.ws6a{word-spacing:3.198659pt;}
.wsad{word-spacing:3.304927pt;}
.wsbf{word-spacing:3.358060pt;}
.ws9e{word-spacing:3.411194pt;}
.ws40{word-spacing:3.570596pt;}
.wsd3{word-spacing:3.676864pt;}
.ws7{word-spacing:3.729997pt;}
.wsc{word-spacing:3.783131pt;}
.ws6d{word-spacing:3.889399pt;}
.ws81{word-spacing:3.942533pt;}
.wsb9{word-spacing:3.995667pt;}
.ws11{word-spacing:4.048801pt;}
.ws4d{word-spacing:4.114110pt;}
.ws3e{word-spacing:4.155068pt;}
.ws10{word-spacing:4.208202pt;}
.ws21{word-spacing:4.261336pt;}
.ws3c{word-spacing:4.314470pt;}
.wsce{word-spacing:4.368748pt;}
.ws5f{word-spacing:4.420738pt;}
.wsb4{word-spacing:4.431364pt;}
.wsb{word-spacing:4.473872pt;}
.ws5e{word-spacing:4.580139pt;}
.ws2c{word-spacing:4.590766pt;}
.ws5c{word-spacing:4.608308pt;}
.ws5d{word-spacing:4.633273pt;}
.ws6b{word-spacing:4.686407pt;}
.ws7a{word-spacing:4.739541pt;}
.ws9f{word-spacing:4.773927pt;}
.wsf{word-spacing:4.792675pt;}
.wsd1{word-spacing:4.845809pt;}
.wsa7{word-spacing:4.898943pt;}
.ws97{word-spacing:4.952076pt;}
.wsc8{word-spacing:4.962703pt;}
.ws94{word-spacing:4.974659pt;}
.ws96{word-spacing:4.991043pt;}
.ws56{word-spacing:5.005210pt;}
.wsaf{word-spacing:5.058344pt;}
.ws85{word-spacing:5.150433pt;}
.ws84{word-spacing:5.164612pt;}
.wsab{word-spacing:5.175239pt;}
.ws19{word-spacing:5.217746pt;}
.ws4a{word-spacing:5.270880pt;}
.wsd8{word-spacing:5.324013pt;}
.ws1c{word-spacing:5.377147pt;}
.ws82{word-spacing:5.430281pt;}
.ws4e{word-spacing:5.440908pt;}
.ws7f{word-spacing:5.483415pt;}
.ws1d{word-spacing:5.536549pt;}
.wsb7{word-spacing:5.642817pt;}
.ws7d{word-spacing:5.802218pt;}
.ws4c{word-spacing:5.832902pt;}
.wsa{word-spacing:5.908486pt;}
.ws47{word-spacing:5.961620pt;}
.wsa0{word-spacing:5.978192pt;}
.ws18{word-spacing:6.067888pt;}
.ws37{word-spacing:6.121021pt;}
.ws69{word-spacing:6.174155pt;}
.ws67{word-spacing:6.227289pt;}
.ws34{word-spacing:6.280423pt;}
.ws8f{word-spacing:6.291050pt;}
.ws29{word-spacing:6.386691pt;}
.ws4b{word-spacing:6.412685pt;}
.wsa9{word-spacing:6.416667pt;}
.ws38{word-spacing:6.492959pt;}
.ws35{word-spacing:6.546092pt;}
.wscb{word-spacing:6.556719pt;}
.wsc7{word-spacing:6.650430pt;}
.ws57{word-spacing:6.652360pt;}
.ws46{word-spacing:6.705494pt;}
.wsd5{word-spacing:6.811762pt;}
.ws1a{word-spacing:6.864896pt;}
.ws77{word-spacing:6.918029pt;}
.ws63{word-spacing:6.971163pt;}
.wse2{word-spacing:7.024297pt;}
.ws42{word-spacing:7.077431pt;}
.ws95{word-spacing:7.300593pt;}
.wsae{word-spacing:7.343100pt;}
.ws68{word-spacing:7.381493pt;}
.ws41{word-spacing:7.396234pt;}
.wsb1{word-spacing:7.406861pt;}
.ws55{word-spacing:7.555636pt;}
.ws50{word-spacing:7.591520pt;}
.ws9b{word-spacing:7.607350pt;}
.ws52{word-spacing:7.608770pt;}
.wsaa{word-spacing:7.661904pt;}
.ws3b{word-spacing:7.672530pt;}
.wsdb{word-spacing:7.715037pt;}
.ws1e{word-spacing:7.821305pt;}
.ws98{word-spacing:8.033841pt;}
.wse0{word-spacing:8.086975pt;}
.wse1{word-spacing:8.140108pt;}
.ws62{word-spacing:8.193242pt;}
.wsa1{word-spacing:8.196058pt;}
.wsa4{word-spacing:8.246376pt;}
.ws36{word-spacing:8.352644pt;}
.wsb6{word-spacing:8.363271pt;}
.ws61{word-spacing:8.405778pt;}
.ws60{word-spacing:8.458912pt;}
.wsd0{word-spacing:8.565179pt;}
.ws5{word-spacing:8.671447pt;}
.ws86{word-spacing:8.680793pt;}
.ws58{word-spacing:8.682074pt;}
.ws87{word-spacing:8.724581pt;}
.ws33{word-spacing:8.777715pt;}
.wsd6{word-spacing:8.830849pt;}
.wsc6{word-spacing:8.841475pt;}
.ws8e{word-spacing:9.168160pt;}
.ws14{word-spacing:9.309053pt;}
.wsde{word-spacing:9.362187pt;}
.ws20{word-spacing:9.415321pt;}
.ws91{word-spacing:9.468455pt;}
.ws1f{word-spacing:9.521589pt;}
.wsa3{word-spacing:9.574723pt;}
.ws70{word-spacing:9.680991pt;}
.ws51{word-spacing:9.691617pt;}
.ws73{word-spacing:9.713775pt;}
.ws71{word-spacing:9.718684pt;}
.ws72{word-spacing:9.734124pt;}
.wsc3{word-spacing:9.999794pt;}
.ws22{word-spacing:10.265463pt;}
.wsa2{word-spacing:10.276090pt;}
.ws31{word-spacing:10.531132pt;}
.ws90{word-spacing:10.956203pt;}
.ws99{word-spacing:11.062471pt;}
.ws28{word-spacing:11.275007pt;}
.ws15{word-spacing:11.328140pt;}
.ws74{word-spacing:11.381274pt;}
.ws8b{word-spacing:11.805224pt;}
.wsd9{word-spacing:12.178282pt;}
.wsda{word-spacing:12.231416pt;}
.wsd7{word-spacing:13.612897pt;}
.wsc1{word-spacing:14.085586pt;}
.ws79{word-spacing:15.424934pt;}
.wsb0{word-spacing:16.415513pt;}
.wse{word-spacing:17.640444pt;}
.ws8a{word-spacing:19.403601pt;}
.ws1{word-spacing:20.031468pt;}
.ws4f{word-spacing:20.297137pt;}
.wsc5{word-spacing:21.167513pt;}
.wscc{word-spacing:21.578341pt;}
.ws32{word-spacing:21.673812pt;}
.wsdd{word-spacing:21.689244pt;}
.ws13{word-spacing:22.767145pt;}
.ws0{word-spacing:23.846639pt;}
.ws83{word-spacing:23.850629pt;}
.ws9a{word-spacing:24.010179pt;}
._20{margin-left:-27.845641pt;}
._26{margin-left:-26.449011pt;}
._25{margin-left:-24.590340pt;}
._16{margin-left:-5.302747pt;}
._4{margin-left:-4.410111pt;}
._3{margin-left:-2.922363pt;}
._0{margin-left:-1.976593pt;}
._2{margin-left:-0.945770pt;}
._10{width:1.005034pt;}
._5{width:2.000095pt;}
._23{width:3.016432pt;}
._d{width:4.073652pt;}
._22{width:5.725968pt;}
._11{width:12.752128pt;}
._15{width:13.667251pt;}
._21{width:14.569319pt;}
._8{width:15.833892pt;}
._19{width:17.001475pt;}
._17{width:18.064500pt;}
._1d{width:19.021924pt;}
._9{width:20.231141pt;}
._1c{width:21.204923pt;}
._7{width:22.635027pt;}
._1{width:23.582486pt;}
._6{width:25.355494pt;}
._14{width:26.885737pt;}
._b{width:28.224723pt;}
._e{width:29.861233pt;}
._1f{width:31.455249pt;}
._12{width:33.367053pt;}
._1b{width:34.430746pt;}
._f{width:35.716598pt;}
._1e{width:37.645032pt;}
._1a{width:38.786708pt;}
._18{width:40.274456pt;}
._13{width:43.899214pt;}
._c{width:49.265734pt;}
._24{width:1650.393645pt;}
._a{width:1676.964312pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.150667pt;}
.y48{bottom:96.001333pt;}
.y15e{bottom:97.956000pt;}
.yd7{bottom:99.473333pt;}
.y1c6{bottom:99.474667pt;}
.y179{bottom:104.628000pt;}
.y95{bottom:106.236000pt;}
.y101{bottom:106.904000pt;}
.y1d5{bottom:107.664000pt;}
.y18f{bottom:107.824000pt;}
.y47{bottom:112.321333pt;}
.y15d{bottom:114.276000pt;}
.yd6{bottom:115.793333pt;}
.y178{bottom:120.948000pt;}
.y94{bottom:122.554667pt;}
.y1ac{bottom:122.788000pt;}
.y100{bottom:123.224000pt;}
.y1c5{bottom:126.421333pt;}
.y46{bottom:128.641333pt;}
.y15c{bottom:130.596000pt;}
.yd5{bottom:132.113333pt;}
.y120{bottom:134.550667pt;}
.y1d4{bottom:134.610667pt;}
.y18e{bottom:134.770667pt;}
.y1f5{bottom:136.714667pt;}
.y93{bottom:138.874667pt;}
.y13d{bottom:139.226667pt;}
.yff{bottom:139.544000pt;}
.y45{bottom:144.961333pt;}
.y15b{bottom:146.916000pt;}
.y6a{bottom:147.894667pt;}
.y1ab{bottom:149.573333pt;}
.y1f4{bottom:153.033333pt;}
.y1c4{bottom:153.368000pt;}
.yd4{bottom:153.746667pt;}
.y92{bottom:155.194667pt;}
.yfe{bottom:161.177333pt;}
.ybd{bottom:161.280000pt;}
.y44{bottom:161.281333pt;}
.y11f{bottom:161.497333pt;}
.y1d3{bottom:161.557333pt;}
.y18d{bottom:161.717333pt;}
.y69{bottom:164.214667pt;}
.y13c{bottom:166.132000pt;}
.yd3{bottom:170.066667pt;}
.y1f{bottom:170.446667pt;}
.y91{bottom:171.514667pt;}
.y15a{bottom:173.862667pt;}
.y1aa{bottom:176.360000pt;}
.y1f3{bottom:177.426667pt;}
.yfd{bottom:177.497333pt;}
.y43{bottom:177.600000pt;}
.y11e{bottom:177.817333pt;}
.y1c3{bottom:180.314667pt;}
.yd2{bottom:186.386667pt;}
.y1e{bottom:186.766667pt;}
.y90{bottom:187.834667pt;}
.y1d2{bottom:188.504000pt;}
.y18c{bottom:188.664000pt;}
.y159{bottom:190.182667pt;}
.y68{bottom:191.161333pt;}
.y13b{bottom:193.037333pt;}
.yfc{bottom:193.817333pt;}
.y42{bottom:193.920000pt;}
.y1f2{bottom:201.820000pt;}
.ybc{bottom:202.498667pt;}
.yd1{bottom:202.705333pt;}
.y1a9{bottom:203.145333pt;}
.y8f{bottom:204.154667pt;}
.y11d{bottom:204.764000pt;}
.y18b{bottom:204.984000pt;}
.y1c2{bottom:207.261333pt;}
.y177{bottom:207.480000pt;}
.yfb{bottom:210.137333pt;}
.y41{bottom:210.240000pt;}
.y1d{bottom:213.713333pt;}
.y1d1{bottom:215.450667pt;}
.y158{bottom:217.129333pt;}
.y67{bottom:218.108000pt;}
.yd0{bottom:219.025333pt;}
.y13a{bottom:219.941333pt;}
.y1f1{bottom:226.212000pt;}
.yfa{bottom:226.456000pt;}
.y40{bottom:226.560000pt;}
.y8e{bottom:229.053333pt;}
.y1a8{bottom:229.932000pt;}
.y11c{bottom:231.710667pt;}
.y18a{bottom:231.930667pt;}
.y157{bottom:233.449333pt;}
.y1c1{bottom:234.208000pt;}
.y66{bottom:234.426667pt;}
.ycf{bottom:235.345333pt;}
.ybb{bottom:236.324000pt;}
.y1c{bottom:240.660000pt;}
.y1d0{bottom:242.397333pt;}
.y3f{bottom:242.880000pt;}
.y139{bottom:246.846667pt;}
.y189{bottom:248.250667pt;}
.y1f0{bottom:250.605333pt;}
.y65{bottom:250.746667pt;}
.yce{bottom:251.665333pt;}
.yba{bottom:252.644000pt;}
.yf9{bottom:253.402667pt;}
.y1a7{bottom:256.717333pt;}
.y1b{bottom:256.980000pt;}
.y156{bottom:258.348000pt;}
.y11b{bottom:258.657333pt;}
.y1c0{bottom:261.154667pt;}
.y8d{bottom:263.581333pt;}
.ycd{bottom:267.985333pt;}
.y3e{bottom:268.372000pt;}
.yb9{bottom:268.964000pt;}
.y1cf{bottom:269.344000pt;}
.yf8{bottom:269.722667pt;}
.y138{bottom:273.752000pt;}
.y1ef{bottom:274.998667pt;}
.y188{bottom:275.197333pt;}
.y64{bottom:277.693333pt;}
.y8c{bottom:279.901333pt;}
.y1a6{bottom:283.504000pt;}
.y1a{bottom:283.926667pt;}
.yb8{bottom:285.284000pt;}
.y11a{bottom:285.604000pt;}
.yf7{bottom:286.042667pt;}
.y1bf{bottom:288.101333pt;}
.y187{bottom:291.516000pt;}
.y3d{bottom:293.865333pt;}
.y176{bottom:294.013333pt;}
.ycc{bottom:294.932000pt;}
.y155{bottom:295.532000pt;}
.y8b{bottom:296.220000pt;}
.y1ce{bottom:296.290667pt;}
.y1ee{bottom:299.390667pt;}
.y19{bottom:300.245333pt;}
.y137{bottom:300.657333pt;}
.yb7{bottom:301.604000pt;}
.yf6{bottom:302.362667pt;}
.y63{bottom:304.640000pt;}
.y3c{bottom:310.185333pt;}
.y1a5{bottom:310.289333pt;}
.ycb{bottom:311.252000pt;}
.y8a{bottom:312.540000pt;}
.y119{bottom:312.550667pt;}
.y1be{bottom:315.048000pt;}
.yb6{bottom:317.924000pt;}
.y186{bottom:318.462667pt;}
.yf5{bottom:318.682667pt;}
.y175{bottom:320.960000pt;}
.y154{bottom:322.478667pt;}
.y1cd{bottom:323.237333pt;}
.y1ed{bottom:323.784000pt;}
.y3b{bottom:326.505333pt;}
.y18{bottom:327.192000pt;}
.y136{bottom:327.562667pt;}
.yca{bottom:327.572000pt;}
.y89{bottom:328.860000pt;}
.y62{bottom:331.586667pt;}
.yb5{bottom:334.242667pt;}
.y185{bottom:334.782667pt;}
.y1a4{bottom:337.076000pt;}
.y174{bottom:337.280000pt;}
.y118{bottom:337.449333pt;}
.y1bd{bottom:341.994667pt;}
.y3a{bottom:342.824000pt;}
.yc9{bottom:343.892000pt;}
.y88{bottom:345.180000pt;}
.yf4{bottom:345.629333pt;}
.y1ec{bottom:348.176000pt;}
.y153{bottom:349.425333pt;}
.y1cc{bottom:350.184000pt;}
.yb4{bottom:350.562667pt;}
.y17{bottom:354.138667pt;}
.y135{bottom:354.468000pt;}
.y61{bottom:358.533333pt;}
.y39{bottom:359.144000pt;}
.y184{bottom:359.681333pt;}
.yc8{bottom:360.210667pt;}
.y87{bottom:361.500000pt;}
.yf3{bottom:361.949333pt;}
.y1a3{bottom:363.862667pt;}
.y173{bottom:364.226667pt;}
.y1eb{bottom:364.496000pt;}
.yb3{bottom:366.882667pt;}
.y1bc{bottom:368.941333pt;}
.y16{bottom:370.458667pt;}
.y134{bottom:370.788000pt;}
.y117{bottom:374.633333pt;}
.y60{bottom:374.853333pt;}
.y38{bottom:375.464000pt;}
.y152{bottom:376.372000pt;}
.yc7{bottom:376.530667pt;}
.y1cb{bottom:377.130667pt;}
.y86{bottom:377.820000pt;}
.yf2{bottom:378.269333pt;}
.y172{bottom:380.546667pt;}
.yb2{bottom:383.202667pt;}
.y1ea{bottom:389.394667pt;}
.y1a2{bottom:390.648000pt;}
.y116{bottom:390.953333pt;}
.y5f{bottom:391.173333pt;}
.y37{bottom:391.784000pt;}
.y151{bottom:392.692000pt;}
.y85{bottom:394.140000pt;}
.yf1{bottom:394.589333pt;}
.y1bb{bottom:395.888000pt;}
.y171{bottom:396.866667pt;}
.y15{bottom:397.405333pt;}
.y133{bottom:397.692000pt;}
.yb1{bottom:399.522667pt;}
.yc6{bottom:403.477333pt;}
.y1ca{bottom:404.077333pt;}
.y115{bottom:407.273333pt;}
.y84{bottom:410.460000pt;}
.yf0{bottom:410.908000pt;}
.y132{bottom:414.012000pt;}
.yb0{bottom:415.842667pt;}
.y36{bottom:417.277333pt;}
.y1a1{bottom:417.434667pt;}
.y5e{bottom:418.120000pt;}
.y150{bottom:419.638667pt;}
.yc5{bottom:419.797333pt;}
.y1ba{bottom:422.834667pt;}
.y170{bottom:423.813333pt;}
.y14{bottom:424.352000pt;}
.y1e9{bottom:425.480000pt;}
.y83{bottom:426.778667pt;}
.yef{bottom:427.228000pt;}
.y1c9{bottom:431.024000pt;}
.yaf{bottom:432.162667pt;}
.y114{bottom:434.220000pt;}
.y16f{bottom:440.133333pt;}
.y13{bottom:440.672000pt;}
.y131{bottom:440.917333pt;}
.y35{bottom:442.769333pt;}
.y82{bottom:443.098667pt;}
.yee{bottom:443.548000pt;}
.y1a0{bottom:444.220000pt;}
.y5d{bottom:445.066667pt;}
.y14f{bottom:446.585333pt;}
.yc4{bottom:446.744000pt;}
.yae{bottom:448.481333pt;}
.y1b9{bottom:449.781333pt;}
.y1e8{bottom:449.873333pt;}
.y113{bottom:450.540000pt;}
.y183{bottom:450.760000pt;}
.y16e{bottom:456.452000pt;}
.y1c8{bottom:457.970667pt;}
.y81{bottom:459.418667pt;}
.yed{bottom:459.868000pt;}
.y14e{bottom:462.905333pt;}
.yad{bottom:464.801333pt;}
.y182{bottom:467.080000pt;}
.y12{bottom:467.618667pt;}
.y130{bottom:467.822667pt;}
.y34{bottom:468.261333pt;}
.yc3{bottom:468.377333pt;}
.y19f{bottom:471.006667pt;}
.y5c{bottom:472.013333pt;}
.y1e7{bottom:474.265333pt;}
.y1b8{bottom:474.680000pt;}
.y80{bottom:475.738667pt;}
.yec{bottom:476.188000pt;}
.y112{bottom:477.486667pt;}
.yac{bottom:481.121333pt;}
.y16d{bottom:483.398667pt;}
.y11{bottom:483.938667pt;}
.y12f{bottom:484.142667pt;}
.y1c7{bottom:484.917333pt;}
.y5b{bottom:488.333333pt;}
.y14d{bottom:489.852000pt;}
.yc2{bottom:490.010667pt;}
.y7f{bottom:492.058667pt;}
.yeb{bottom:492.508000pt;}
.y33{bottom:493.754667pt;}
.y111{bottom:493.806667pt;}
.y181{bottom:494.026667pt;}
.yab{bottom:497.441333pt;}
.y19e{bottom:497.792000pt;}
.y1e6{bottom:498.658667pt;}
.y16c{bottom:499.718667pt;}
.y14c{bottom:506.170667pt;}
.y7e{bottom:508.378667pt;}
.yea{bottom:508.828000pt;}
.y32{bottom:510.074667pt;}
.y180{bottom:510.345333pt;}
.y10{bottom:510.885333pt;}
.y12e{bottom:511.048000pt;}
.y1b7{bottom:511.864000pt;}
.yaa{bottom:513.761333pt;}
.y5a{bottom:515.280000pt;}
.yc1{bottom:516.957333pt;}
.y110{bottom:520.753333pt;}
.y1e5{bottom:523.052000pt;}
.y19d{bottom:524.578667pt;}
.y7d{bottom:524.698667pt;}
.y31{bottom:526.394667pt;}
.y16b{bottom:526.665333pt;}
.ya9{bottom:530.081333pt;}
.y14b{bottom:533.117333pt;}
.yc0{bottom:533.277333pt;}
.ye9{bottom:535.774667pt;}
.y17f{bottom:537.292000pt;}
.yf{bottom:537.832000pt;}
.y12d{bottom:537.953333pt;}
.y1b6{bottom:538.810667pt;}
.y7c{bottom:541.018667pt;}
.y59{bottom:542.226667pt;}
.y10f{bottom:542.386667pt;}
.y30{bottom:542.713333pt;}
.y16a{bottom:542.985333pt;}
.ya8{bottom:546.401333pt;}
.y1e4{bottom:547.444000pt;}
.ybf{bottom:549.597333pt;}
.y19c{bottom:551.364000pt;}
.ye8{bottom:552.093333pt;}
.y17e{bottom:553.612000pt;}
.y7b{bottom:557.337333pt;}
.y2f{bottom:559.033333pt;}
.y14a{bottom:560.064000pt;}
.ya7{bottom:562.721333pt;}
.y1e3{bottom:563.764000pt;}
.y10e{bottom:564.018667pt;}
.ye{bottom:564.778667pt;}
.y12c{bottom:564.857333pt;}
.y1b5{bottom:565.757333pt;}
.ye7{bottom:568.413333pt;}
.y58{bottom:569.173333pt;}
.y169{bottom:569.932000pt;}
.y7a{bottom:573.657333pt;}
.ybe{bottom:574.496000pt;}
.y19b{bottom:578.150667pt;}
.ya6{bottom:579.040000pt;}
.y2e{bottom:584.526667pt;}
.ye6{bottom:584.733333pt;}
.y57{bottom:585.493333pt;}
.y10d{bottom:585.652000pt;}
.y168{bottom:586.252000pt;}
.y149{bottom:587.010667pt;}
.y1e2{bottom:588.157333pt;}
.y79{bottom:589.977333pt;}
.yd{bottom:591.725333pt;}
.y12b{bottom:591.762667pt;}
.y1b4{bottom:592.704000pt;}
.y1ff{bottom:594.752000pt;}
.ya5{bottom:595.360000pt;}
.y17d{bottom:596.878667pt;}
.ye5{bottom:601.053333pt;}
.y19a{bottom:604.937333pt;}
.y78{bottom:606.297333pt;}
.y2d{bottom:610.018667pt;}
.ya4{bottom:611.680000pt;}
.y56{bottom:612.440000pt;}
.y1e1{bottom:612.549333pt;}
.y10c{bottom:612.598667pt;}
.y167{bottom:613.198667pt;}
.y148{bottom:613.957333pt;}
.ye4{bottom:617.373333pt;}
.y12a{bottom:618.668000pt;}
.yc{bottom:618.672000pt;}
.y1b3{bottom:619.650667pt;}
.y1fe{bottom:621.698667pt;}
.y77{bottom:622.617333pt;}
.y2c{bottom:626.338667pt;}
.ya3{bottom:628.000000pt;}
.y55{bottom:628.758667pt;}
.y10b{bottom:628.918667pt;}
.y166{bottom:629.518667pt;}
.y199{bottom:631.722667pt;}
.ye3{bottom:633.693333pt;}
.yb{bottom:634.992000pt;}
.y1e0{bottom:636.942667pt;}
.y76{bottom:638.937333pt;}
.y17c{bottom:640.145333pt;}
.y147{bottom:640.904000pt;}
.y2b{bottom:642.658667pt;}
.ya2{bottom:644.320000pt;}
.y54{bottom:645.078667pt;}
.y129{bottom:645.573333pt;}
.y1b2{bottom:646.597333pt;}
.y1fd{bottom:648.645333pt;}
.ye2{bottom:650.013333pt;}
.y10a{bottom:653.817333pt;}
.y75{bottom:655.257333pt;}
.y165{bottom:656.465333pt;}
.y198{bottom:658.509333pt;}
.ya1{bottom:660.640000pt;}
.y1df{bottom:661.334667pt;}
.y53{bottom:661.398667pt;}
.y128{bottom:661.893333pt;}
.ya{bottom:661.938667pt;}
.ye1{bottom:666.333333pt;}
.y146{bottom:667.850667pt;}
.y2a{bottom:668.150667pt;}
.y74{bottom:671.577333pt;}
.y164{bottom:672.785333pt;}
.y1b1{bottom:673.544000pt;}
.y1fc{bottom:675.592000pt;}
.ya0{bottom:676.960000pt;}
.y1de{bottom:677.654667pt;}
.y52{bottom:677.718667pt;}
.ye0{bottom:682.652000pt;}
.y17b{bottom:683.412000pt;}
.y145{bottom:684.170667pt;}
.y197{bottom:685.294667pt;}
.y73{bottom:687.896000pt;}
.y127{bottom:688.798667pt;}
.y9{bottom:688.885333pt;}
.y109{bottom:691.002667pt;}
.y29{bottom:693.050667pt;}
.y9f{bottom:693.280000pt;}
.ydf{bottom:698.972000pt;}
.y163{bottom:699.732000pt;}
.y1b0{bottom:700.490667pt;}
.y1dd{bottom:702.048000pt;}
.y1fb{bottom:702.538667pt;}
.y51{bottom:704.665333pt;}
.y126{bottom:705.117333pt;}
.y9e{bottom:709.598667pt;}
.y144{bottom:711.117333pt;}
.y196{bottom:712.081333pt;}
.y72{bottom:712.794667pt;}
.yde{bottom:715.292000pt;}
.y8{bottom:715.832000pt;}
.y162{bottom:716.052000pt;}
.y108{bottom:720.605333pt;}
.y50{bottom:720.985333pt;}
.y9d{bottom:725.918667pt;}
.y1dc{bottom:726.441333pt;}
.y17a{bottom:726.678667pt;}
.y1af{bottom:727.437333pt;}
.y1fa{bottom:729.485333pt;}
.y28{bottom:729.608000pt;}
.ydd{bottom:731.612000pt;}
.y125{bottom:732.022667pt;}
.y107{bottom:736.925333pt;}
.y4f{bottom:737.305333pt;}
.y143{bottom:738.064000pt;}
.y195{bottom:738.866667pt;}
.y7{bottom:740.730667pt;}
.y9c{bottom:742.238667pt;}
.y161{bottom:742.998667pt;}
.ydc{bottom:747.932000pt;}
.y71{bottom:749.980000pt;}
.y1db{bottom:750.833333pt;}
.y106{bottom:753.245333pt;}
.y4e{bottom:753.625333pt;}
.y1ae{bottom:754.384000pt;}
.y27{bottom:755.101333pt;}
.y1f9{bottom:756.432000pt;}
.y9b{bottom:758.558667pt;}
.y124{bottom:758.928000pt;}
.y160{bottom:759.317333pt;}
.ydb{bottom:764.252000pt;}
.y142{bottom:765.010667pt;}
.y194{bottom:765.653333pt;}
.y70{bottom:766.300000pt;}
.y105{bottom:769.565333pt;}
.y4d{bottom:769.945333pt;}
.y26{bottom:771.421333pt;}
.y9a{bottom:774.878667pt;}
.y1da{bottom:775.226667pt;}
.yda{bottom:780.572000pt;}
.y1ad{bottom:781.330667pt;}
.y6f{bottom:782.620000pt;}
.y1f8{bottom:783.378667pt;}
.y123{bottom:785.833333pt;}
.y104{bottom:785.885333pt;}
.y4c{bottom:786.264000pt;}
.y99{bottom:791.198667pt;}
.y141{bottom:791.957333pt;}
.y193{bottom:792.438667pt;}
.y6{bottom:794.234667pt;}
.yd9{bottom:796.892000pt;}
.y25{bottom:796.913333pt;}
.y6e{bottom:798.938667pt;}
.y1d9{bottom:799.618667pt;}
.y122{bottom:802.153333pt;}
.y103{bottom:802.205333pt;}
.y4b{bottom:802.584000pt;}
.y98{bottom:807.518667pt;}
.y140{bottom:808.277333pt;}
.y192{bottom:808.758667pt;}
.y1f7{bottom:810.325333pt;}
.y5{bottom:810.554667pt;}
.yd8{bottom:813.210667pt;}
.y6d{bottom:815.258667pt;}
.y102{bottom:818.524000pt;}
.y24{bottom:822.406667pt;}
.y97{bottom:823.838667pt;}
.y1d8{bottom:824.012000pt;}
.y4{bottom:826.874667pt;}
.y121{bottom:827.052000pt;}
.y4a{bottom:829.530667pt;}
.y6c{bottom:831.578667pt;}
.y13f{bottom:835.224000pt;}
.y191{bottom:835.545333pt;}
.y1f6{bottom:837.272000pt;}
.y23{bottom:838.726667pt;}
.y96{bottom:840.157333pt;}
.y3{bottom:843.194667pt;}
.y15f{bottom:845.850667pt;}
.y6b{bottom:847.898667pt;}
.y1d7{bottom:848.405333pt;}
.y49{bottom:856.477333pt;}
.y13e{bottom:862.170667pt;}
.y190{bottom:862.330667pt;}
.y22{bottom:864.218667pt;}
.y1d6{bottom:864.724000pt;}
.y2{bottom:872.797333pt;}
.y1{bottom:889.117333pt;}
.y21{bottom:940.800000pt;}
.h3{height:37.087439pt;}
.h2{height:39.850400pt;}
.h1{height:44.632747pt;}
.h4{height:53.285067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:96.000000pt;}
.x7{left:112.236000pt;}
.x4{left:115.926667pt;}
.x5{left:129.209333pt;}
.xa{left:144.152000pt;}
.x8{left:145.150667pt;}
.x9{left:158.432000pt;}
.x2{left:338.630667pt;}
.x1{left:352.052000pt;}
.x6{left:404.678667pt;}
.xb{left:602.821333pt;}
}




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