
    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_4d0a8d3d54992f0aabdc6044.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_83daaec4ea47e7994def0c97.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_0ee8f7d0dce5c97c628deadb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ce116ae82a277615833fa981.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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);}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-0.446400px;}
.ls31{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.226800px;}
.ls4d{letter-spacing:-0.194400px;}
.ls49{letter-spacing:-0.187200px;}
.ls48{letter-spacing:-0.180000px;}
.ls4f{letter-spacing:-0.176400px;}
.ls26{letter-spacing:-0.156600px;}
.ls3e{letter-spacing:-0.145800px;}
.ls53{letter-spacing:-0.140400px;}
.ls2c{letter-spacing:-0.135000px;}
.ls5a{letter-spacing:-0.132264px;}
.ls27{letter-spacing:-0.129600px;}
.ls24{letter-spacing:-0.124200px;}
.ls41{letter-spacing:-0.118800px;}
.ls22{letter-spacing:-0.113400px;}
.ls2e{letter-spacing:-0.111600px;}
.ls1d{letter-spacing:-0.108000px;}
.ls5d{letter-spacing:-0.104400px;}
.ls1e{letter-spacing:-0.102600px;}
.ls47{letter-spacing:-0.100800px;}
.ls21{letter-spacing:-0.097200px;}
.ls40{letter-spacing:-0.091800px;}
.ls29{letter-spacing:-0.086400px;}
.ls4b{letter-spacing:-0.082800px;}
.ls1c{letter-spacing:-0.081000px;}
.ls5b{letter-spacing:-0.079200px;}
.ls19{letter-spacing:-0.078156px;}
.ls25{letter-spacing:-0.075600px;}
.ls43{letter-spacing:-0.070200px;}
.ls45{letter-spacing:-0.064800px;}
.ls1f{letter-spacing:-0.059400px;}
.ls4e{letter-spacing:-0.057600px;}
.ls2a{letter-spacing:-0.054000px;}
.ls3f{letter-spacing:-0.048600px;}
.ls1b{letter-spacing:-0.043200px;}
.ls18{letter-spacing:-0.042084px;}
.ls2b{letter-spacing:-0.037800px;}
.ls23{letter-spacing:-0.032400px;}
.ls2d{letter-spacing:-0.028800px;}
.ls28{letter-spacing:-0.027000px;}
.ls30{letter-spacing:-0.021600px;}
.ls42{letter-spacing:-0.016200px;}
.ls33{letter-spacing:-0.012000px;}
.ls44{letter-spacing:-0.010800px;}
.ls55{letter-spacing:-0.007200px;}
.ls20{letter-spacing:-0.005400px;}
.ls32{letter-spacing:-0.004800px;}
.ls1a{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006012px;}
.ls56{letter-spacing:0.010800px;}
.ls3a{letter-spacing:0.014400px;}
.ls46{letter-spacing:0.016200px;}
.ls3d{letter-spacing:0.018000px;}
.ls57{letter-spacing:0.025200px;}
.ls3{letter-spacing:0.027000px;}
.ls3b{letter-spacing:0.028800px;}
.ls13{letter-spacing:0.032400px;}
.ls17{letter-spacing:0.036000px;}
.ls51{letter-spacing:0.037800px;}
.ls59{letter-spacing:0.039600px;}
.ls4{letter-spacing:0.043200px;}
.ls14{letter-spacing:0.046800px;}
.ls10{letter-spacing:0.050400px;}
.ls35{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.057600px;}
.ls39{letter-spacing:0.061200px;}
.lsf{letter-spacing:0.064800px;}
.ls8{letter-spacing:0.068400px;}
.ls34{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.075600px;}
.lsa{letter-spacing:0.079200px;}
.ls15{letter-spacing:0.082800px;}
.lse{letter-spacing:0.086400px;}
.ls9{letter-spacing:0.090000px;}
.ls5c{letter-spacing:0.090180px;}
.ls3c{letter-spacing:0.093600px;}
.ls11{letter-spacing:0.097200px;}
.ls38{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.104400px;}
.ls7{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.111600px;}
.lsb{letter-spacing:0.115200px;}
.ls6{letter-spacing:0.118800px;}
.ls37{letter-spacing:0.122400px;}
.ls52{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.129600px;}
.lsc{letter-spacing:0.133200px;}
.ls58{letter-spacing:0.136800px;}
.ls4c{letter-spacing:0.140400px;}
.lsd{letter-spacing:0.147600px;}
.ls54{letter-spacing:0.172800px;}
.ls50{letter-spacing:0.180000px;}
.ls2f{letter-spacing:4.039200px;}
.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;}
}
.ws1c{word-spacing:-60.126012px;}
.ws0{word-spacing:-60.077916px;}
.ws1{word-spacing:-60.041844px;}
.ws29{word-spacing:-54.129600px;}
.ws27{word-spacing:-54.043200px;}
.ws89{word-spacing:-54.037800px;}
.ws6a{word-spacing:-54.032400px;}
.ws1b{word-spacing:-54.005400px;}
.ws60{word-spacing:-53.994600px;}
.wsb5{word-spacing:-53.989200px;}
.ws9e{word-spacing:-53.983800px;}
.ws52{word-spacing:-53.973000px;}
.wsb{word-spacing:-53.967600px;}
.ws24{word-spacing:-53.962200px;}
.ws20{word-spacing:-53.956800px;}
.ws4d{word-spacing:-53.951400px;}
.ws23{word-spacing:-53.946000px;}
.ws7{word-spacing:-53.940600px;}
.wsd0{word-spacing:-53.935200px;}
.wsb9{word-spacing:-53.929800px;}
.ws10{word-spacing:-53.924400px;}
.ws3{word-spacing:-53.919000px;}
.ws68{word-spacing:-53.913600px;}
.ws67{word-spacing:-53.908200px;}
.wsc{word-spacing:-53.902800px;}
.ws58{word-spacing:-53.897400px;}
.ws4{word-spacing:-53.892000px;}
.ws4a{word-spacing:-53.886600px;}
.ws5f{word-spacing:-53.881200px;}
.wsf{word-spacing:-53.875800px;}
.ws16{word-spacing:-53.870400px;}
.ws26{word-spacing:-53.865000px;}
.ws12{word-spacing:-53.843400px;}
.ws22{word-spacing:-44.690400px;}
.ws6f{word-spacing:-44.658000px;}
.ws63{word-spacing:-44.355600px;}
.ws56{word-spacing:-44.247600px;}
.ws9d{word-spacing:-43.956000px;}
.ws96{word-spacing:-43.297200px;}
.ws9{word-spacing:-43.264800px;}
.ws95{word-spacing:-43.232400px;}
.wsb6{word-spacing:-43.178400px;}
.wsa1{word-spacing:-42.892200px;}
.ws54{word-spacing:-42.886800px;}
.ws4e{word-spacing:-42.881400px;}
.wsba{word-spacing:-42.832800px;}
.ws8a{word-spacing:-42.643800px;}
.ws8b{word-spacing:-42.616800px;}
.ws21{word-spacing:-42.498000px;}
.wsa2{word-spacing:-42.184800px;}
.ws55{word-spacing:-42.168600px;}
.ws93{word-spacing:-42.163200px;}
.wsc1{word-spacing:-42.120000px;}
.wscc{word-spacing:-42.022800px;}
.wsc8{word-spacing:-41.790600px;}
.ws6c{word-spacing:-41.536800px;}
.ws6{word-spacing:-41.418000px;}
.wsd{word-spacing:-41.412600px;}
.wsaf{word-spacing:-41.385600px;}
.ws91{word-spacing:-41.364000px;}
.ws25{word-spacing:-41.104800px;}
.ws9f{word-spacing:-41.061600px;}
.ws9b{word-spacing:-40.721400px;}
.wsc3{word-spacing:-40.424400px;}
.wsa7{word-spacing:-40.402800px;}
.wsc6{word-spacing:-40.359600px;}
.ws42{word-spacing:-40.039200px;}
.ws86{word-spacing:-40.030200px;}
.ws15{word-spacing:-39.960000px;}
.ws4c{word-spacing:-39.673800px;}
.wsb4{word-spacing:-39.668400px;}
.ws50{word-spacing:-39.603600px;}
.wsbf{word-spacing:-39.268800px;}
.ws90{word-spacing:-39.258000px;}
.wsc2{word-spacing:-38.680200px;}
.ws98{word-spacing:-38.577600px;}
.wsa3{word-spacing:-38.534400px;}
.wsb3{word-spacing:-38.491200px;}
.ws8e{word-spacing:-38.286000px;}
.wsb1{word-spacing:-38.167200px;}
.ws8c{word-spacing:-37.918800px;}
.ws1f{word-spacing:-37.837800px;}
.wsa5{word-spacing:-37.832400px;}
.wsce{word-spacing:-37.130400px;}
.wsb0{word-spacing:-37.065600px;}
.wsa{word-spacing:-36.752400px;}
.ws97{word-spacing:-36.401400px;}
.ws85{word-spacing:-36.180000px;}
.wsad{word-spacing:-36.172800px;}
.ws36{word-spacing:-36.147600px;}
.ws7e{word-spacing:-36.140400px;}
.wsd4{word-spacing:-36.136800px;}
.ws35{word-spacing:-36.133200px;}
.ws34{word-spacing:-36.129600px;}
.wsaa{word-spacing:-36.126000px;}
.ws75{word-spacing:-36.122400px;}
.ws2c{word-spacing:-36.118800px;}
.ws32{word-spacing:-36.115200px;}
.ws74{word-spacing:-36.111600px;}
.ws2d{word-spacing:-36.108000px;}
.ws2b{word-spacing:-36.104400px;}
.ws76{word-spacing:-36.100800px;}
.ws3c{word-spacing:-36.097200px;}
.ws83{word-spacing:-36.093600px;}
.ws2f{word-spacing:-36.090000px;}
.ws39{word-spacing:-36.086400px;}
.ws5a{word-spacing:-36.082800px;}
.ws30{word-spacing:-36.079200px;}
.ws41{word-spacing:-36.075600px;}
.ws72{word-spacing:-36.072000px;}
.ws2e{word-spacing:-36.068400px;}
.ws38{word-spacing:-36.064800px;}
.ws77{word-spacing:-36.061200px;}
.ws3d{word-spacing:-36.057600px;}
.ws73{word-spacing:-36.054000px;}
.ws3a{word-spacing:-36.050400px;}
.ws3f{word-spacing:-36.046800px;}
.wsd5{word-spacing:-36.039600px;}
.ws46{word-spacing:-36.036000px;}
.ws3e{word-spacing:-36.032400px;}
.ws7d{word-spacing:-36.028800px;}
.wsd2{word-spacing:-36.025200px;}
.ws84{word-spacing:-36.018000px;}
.ws78{word-spacing:-36.014400px;}
.ws44{word-spacing:-36.000000px;}
.wsae{word-spacing:-35.992800px;}
.wsc9{word-spacing:-35.985600px;}
.ws43{word-spacing:-35.978400px;}
.ws31{word-spacing:-35.971200px;}
.wsab{word-spacing:-35.967600px;}
.ws81{word-spacing:-35.956800px;}
.ws33{word-spacing:-35.946000px;}
.ws80{word-spacing:-35.942400px;}
.wsd3{word-spacing:-35.920800px;}
.ws7c{word-spacing:-35.917200px;}
.ws71{word-spacing:-35.899200px;}
.wsd6{word-spacing:-35.895600px;}
.ws3b{word-spacing:-35.888400px;}
.wsac{word-spacing:-35.859600px;}
.ws82{word-spacing:-35.823600px;}
.ws79{word-spacing:-35.820000px;}
.ws7a{word-spacing:-35.812800px;}
.ws7f{word-spacing:-35.805600px;}
.wsd7{word-spacing:-35.773200px;}
.ws45{word-spacing:-35.640000px;}
.ws7b{word-spacing:-35.553600px;}
.ws6b{word-spacing:-34.981200px;}
.ws5b{word-spacing:-34.894800px;}
.ws4b{word-spacing:-34.851600px;}
.ws88{word-spacing:-34.570800px;}
.ws92{word-spacing:-33.555600px;}
.wsbd{word-spacing:-33.517800px;}
.wscd{word-spacing:-33.069600px;}
.ws8{word-spacing:-32.972400px;}
.ws51{word-spacing:-32.853600px;}
.ws5d{word-spacing:-32.778000px;}
.ws17{word-spacing:-32.464800px;}
.ws66{word-spacing:-32.124600px;}
.ws6d{word-spacing:-32.086800px;}
.ws5c{word-spacing:-31.773600px;}
.wsbb{word-spacing:-30.996000px;}
.ws57{word-spacing:-30.699000px;}
.ws94{word-spacing:-29.597400px;}
.ws8f{word-spacing:-29.322000px;}
.ws5e{word-spacing:-29.235600px;}
.ws59{word-spacing:-28.846800px;}
.ws4f{word-spacing:-28.555200px;}
.wsc7{word-spacing:-28.528200px;}
.ws9a{word-spacing:-28.414800px;}
.ws1e{word-spacing:-28.139400px;}
.ws18{word-spacing:-28.112400px;}
.wscf{word-spacing:-28.074600px;}
.wsca{word-spacing:-27.108000px;}
.ws64{word-spacing:-27.037800px;}
.wsc5{word-spacing:-26.659800px;}
.wsa8{word-spacing:-26.649000px;}
.wsb2{word-spacing:-26.298000px;}
.ws37{word-spacing:-25.963200px;}
.ws87{word-spacing:-25.644600px;}
.wscb{word-spacing:-24.958800px;}
.wsb8{word-spacing:-24.526800px;}
.ws9c{word-spacing:-24.121800px;}
.wse{word-spacing:-23.814000px;}
.ws1d{word-spacing:-23.317200px;}
.ws49{word-spacing:-23.236200px;}
.ws65{word-spacing:-20.574000px;}
.wsc4{word-spacing:-18.732600px;}
.wsa6{word-spacing:-18.424800px;}
.wsa0{word-spacing:-18.403200px;}
.wsbe{word-spacing:-16.588800px;}
.wsb7{word-spacing:-16.351200px;}
.ws40{word-spacing:-15.566400px;}
.ws62{word-spacing:-15.535800px;}
.ws14{word-spacing:-14.137200px;}
.wsa4{word-spacing:-13.008600px;}
.ws6e{word-spacing:-11.566800px;}
.ws5{word-spacing:-10.481400px;}
.ws19{word-spacing:-8.802000px;}
.ws47{word-spacing:0.000000px;}
.ws48{word-spacing:0.014400px;}
.ws53{word-spacing:0.572400px;}
.ws69{word-spacing:10.076400px;}
.ws1a{word-spacing:13.986000px;}
.ws8d{word-spacing:15.395400px;}
.wsc0{word-spacing:26.557200px;}
.ws11{word-spacing:341.913600px;}
.wsbc{word-spacing:392.767800px;}
.ws13{word-spacing:436.636800px;}
.ws2a{word-spacing:497.203200px;}
.ws28{word-spacing:512.086800px;}
.ws99{word-spacing:533.663400px;}
.ws61{word-spacing:558.528000px;}
.wsa9{word-spacing:563.010000px;}
.wsd1{word-spacing:630.957492px;}
.ws70{word-spacing:652.580400px;}
.ws2{word-spacing:858.092400px;}
._10{margin-left:-4.557600px;}
._11{margin-left:-3.294000px;}
._9{margin-left:-1.085400px;}
._1{width:1.279800px;}
._5{width:2.413800px;}
._e{width:3.963600px;}
._2{width:5.254200px;}
._0{width:6.679800px;}
._8{width:7.813800px;}
._12{width:8.920800px;}
._d{width:10.492200px;}
._3{width:11.642400px;}
._6{width:13.489200px;}
._13{width:15.584400px;}
._1b{width:16.761600px;}
._4{width:18.273600px;}
._f{width:19.425600px;}
._19{width:21.373200px;}
._b{width:22.728600px;}
._15{width:24.499800px;}
._16{width:26.373600px;}
._1c{width:28.603800px;}
._7{width:31.114800px;}
._1a{width:36.720000px;}
._17{width:39.414600px;}
._a{width:40.807800px;}
._c{width:46.353600px;}
._14{width:55.884600px;}
._18{width:65.151000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:60.120000px;}
.y0{bottom:0.000000px;}
.y1a8{bottom:1.529700px;}
.y78{bottom:40.971000px;}
.ya1{bottom:60.068700px;}
.y4f{bottom:65.370150px;}
.y173{bottom:66.728700px;}
.yc9{bottom:66.913200px;}
.y27{bottom:69.253050px;}
.y73{bottom:76.633350px;}
.y137{bottom:83.194200px;}
.ya0{bottom:83.383200px;}
.yc8{bottom:87.154500px;}
.y72{bottom:87.253350px;}
.y110{bottom:89.318850px;}
.y172{bottom:90.043200px;}
.y71{bottom:97.603350px;}
.y19a{bottom:97.960170px;}
.yd6{bottom:102.103500px;}
.yf2{bottom:103.363350px;}
.y9f{bottom:103.633200px;}
.y1a7{bottom:103.993500px;}
.y1a9{bottom:105.523200px;}
.y1a6{bottom:105.523500px;}
.y136{bottom:106.414200px;}
.y70{bottom:107.953350px;}
.y171{bottom:110.293200px;}
.yd5{bottom:112.453500px;}
.y10f{bottom:112.538850px;}
.yf1{bottom:113.713350px;}
.y1a5{bottom:115.873500px;}
.y1af{bottom:117.943500px;}
.y6f{bottom:118.303350px;}
.yd4{bottom:122.803500px;}
.yf0{bottom:124.063350px;}
.y1a4{bottom:126.223500px;}
.y1ae{bottom:128.293500px;}
.y6e{bottom:128.653350px;}
.y135{bottom:129.728700px;}
.yd3{bottom:133.153500px;}
.yef{bottom:134.413350px;}
.y10e{bottom:135.853350px;}
.y1a3{bottom:136.573500px;}
.y1ad{bottom:138.643500px;}
.y6d{bottom:139.003350px;}
.yd2{bottom:143.503500px;}
.yee{bottom:144.763350px;}
.y1a2{bottom:146.923500px;}
.y1ac{bottom:148.993500px;}
.y6c{bottom:149.353350px;}
.y134{bottom:150.073200px;}
.y13f{bottom:150.253500px;}
.yd1{bottom:153.853500px;}
.yed{bottom:155.113350px;}
.y10d{bottom:156.099150px;}
.y1a1{bottom:157.273500px;}
.y1ab{bottom:159.343500px;}
.y6b{bottom:159.703350px;}
.y13e{bottom:160.603500px;}
.y15e{bottom:163.663500px;}
.yd0{bottom:164.203500px;}
.yec{bottom:165.463350px;}
.y1a0{bottom:167.623500px;}
.y1aa{bottom:169.693500px;}
.y26{bottom:169.963350px;}
.y6a{bottom:170.053350px;}
.y13d{bottom:170.953500px;}
.y15d{bottom:174.013500px;}
.ycf{bottom:174.553500px;}
.yeb{bottom:175.813350px;}
.y19f{bottom:177.973500px;}
.y66{bottom:180.043500px;}
.y69{bottom:180.403350px;}
.y13c{bottom:181.303500px;}
.y15c{bottom:184.363500px;}
.yce{bottom:184.903500px;}
.yea{bottom:186.163350px;}
.y19e{bottom:188.323500px;}
.y65{bottom:190.393500px;}
.y68{bottom:190.753350px;}
.y13b{bottom:191.653500px;}
.y15b{bottom:194.713500px;}
.ycd{bottom:195.253500px;}
.ye9{bottom:196.513350px;}
.y19d{bottom:198.673500px;}
.y64{bottom:200.743500px;}
.y67{bottom:201.103350px;}
.y13a{bottom:202.003500px;}
.y15a{bottom:205.063500px;}
.ycc{bottom:205.603500px;}
.ye8{bottom:206.863350px;}
.y19c{bottom:209.023500px;}
.y63{bottom:211.093500px;}
.y139{bottom:212.353500px;}
.y159{bottom:215.413500px;}
.ycb{bottom:215.953500px;}
.ye7{bottom:217.213350px;}
.y19b{bottom:219.373500px;}
.y4e{bottom:220.174650px;}
.y62{bottom:221.443500px;}
.y138{bottom:222.703500px;}
.y9e{bottom:225.574500px;}
.y158{bottom:225.763500px;}
.yca{bottom:226.303500px;}
.ye6{bottom:227.563350px;}
.yc7{bottom:230.619000px;}
.y61{bottom:231.793500px;}
.y199{bottom:232.689090px;}
.y157{bottom:236.113500px;}
.ye5{bottom:237.913350px;}
.y4d{bottom:243.394650px;}
.y170{bottom:244.479150px;}
.y156{bottom:246.463500px;}
.y9d{bottom:248.794500px;}
.yc6{bottom:253.933500px;}
.y25{bottom:255.459000px;}
.y155{bottom:256.813500px;}
.y198{bottom:257.443500px;}
.y4c{bottom:266.709150px;}
.y76{bottom:266.803500px;}
.y16f{bottom:267.699150px;}
.y9c{bottom:272.109000px;}
.yc5{bottom:274.183500px;}
.y75{bottom:277.153500px;}
.y10c{bottom:277.329150px;}
.y197{bottom:277.693500px;}
.y24{bottom:278.679000px;}
.y74{bottom:287.503500px;}
.y1b8{bottom:287.773650px;}
.y16e{bottom:287.933250px;}
.y4b{bottom:290.023650px;}
.ye4{bottom:290.023800px;}
.y9b{bottom:292.361250px;}
.y1b7{bottom:298.123650px;}
.y23{bottom:299.023500px;}
.y1c0{bottom:299.833650px;}
.ye3{bottom:300.373800px;}
.y10b{bottom:300.643650px;}
.yfd{bottom:302.803800px;}
.y60{bottom:303.883950px;}
.y1b6{bottom:308.473650px;}
.y133{bottom:310.093650px;}
.y1bf{bottom:310.183650px;}
.y4a{bottom:310.273650px;}
.ye2{bottom:310.723800px;}
.yfc{bottom:313.153800px;}
.y5f{bottom:314.233950px;}
.y1b5{bottom:318.823650px;}
.y1be{bottom:320.533650px;}
.y10a{bottom:320.893650px;}
.ye1{bottom:321.073800px;}
.yfb{bottom:323.503800px;}
.y5e{bottom:324.583950px;}
.y1b4{bottom:329.173650px;}
.y132{bottom:330.226350px;}
.y1bd{bottom:330.883650px;}
.y154{bottom:331.153950px;}
.ye0{bottom:331.423800px;}
.y149{bottom:333.133950px;}
.yfa{bottom:333.853800px;}
.y5d{bottom:334.933950px;}
.y1b3{bottom:339.523650px;}
.y1bc{bottom:341.233650px;}
.y153{bottom:341.503950px;}
.ydf{bottom:341.773800px;}
.y148{bottom:343.483950px;}
.yf9{bottom:344.203800px;}
.y5c{bottom:345.283950px;}
.y1b2{bottom:349.873650px;}
.y1bb{bottom:351.583650px;}
.y152{bottom:351.853950px;}
.yde{bottom:352.123800px;}
.y147{bottom:353.833950px;}
.yf8{bottom:354.553800px;}
.y5b{bottom:355.633950px;}
.y1b1{bottom:360.223650px;}
.y1ba{bottom:361.933650px;}
.y151{bottom:362.203950px;}
.ydd{bottom:362.473800px;}
.y146{bottom:364.183950px;}
.yf7{bottom:364.903800px;}
.y5a{bottom:365.983950px;}
.y1b0{bottom:370.573650px;}
.y1b9{bottom:372.283650px;}
.y150{bottom:372.553950px;}
.ydc{bottom:372.823800px;}
.y145{bottom:374.533950px;}
.yf6{bottom:375.253800px;}
.y59{bottom:376.333950px;}
.y14f{bottom:382.903950px;}
.ydb{bottom:383.173800px;}
.y144{bottom:384.883950px;}
.yf5{bottom:385.603800px;}
.y58{bottom:386.683950px;}
.y14e{bottom:393.253950px;}
.yda{bottom:393.523800px;}
.yc4{bottom:394.868700px;}
.y196{bottom:394.954200px;}
.y143{bottom:395.233950px;}
.yf4{bottom:395.953800px;}
.y57{bottom:397.033950px;}
.y14d{bottom:403.603950px;}
.yd9{bottom:403.873800px;}
.y142{bottom:405.583950px;}
.yf3{bottom:406.303800px;}
.y56{bottom:407.383950px;}
.y22{bottom:412.961250px;}
.y14c{bottom:413.953950px;}
.yd8{bottom:414.223800px;}
.y49{bottom:415.601850px;}
.y141{bottom:415.933950px;}
.y55{bottom:417.733950px;}
.y16d{bottom:418.167750px;}
.y9a{bottom:418.181250px;}
.yc3{bottom:418.183200px;}
.y195{bottom:418.268700px;}
.y14b{bottom:424.303950px;}
.yd7{bottom:424.573800px;}
.y140{bottom:426.283950px;}
.y54{bottom:428.083950px;}
.y14a{bottom:434.653950px;}
.y21{bottom:436.275750px;}
.y53{bottom:438.433950px;}
.y48{bottom:438.916350px;}
.y131{bottom:441.466350px;}
.y16c{bottom:441.482250px;}
.y99{bottom:441.495750px;}
.yc2{bottom:441.497700px;}
.y194{bottom:441.583200px;}
.y52{bottom:448.783950px;}
.y51{bottom:459.133950px;}
.y20{bottom:459.590250px;}
.y47{bottom:462.230850px;}
.y130{bottom:464.686350px;}
.y16b{bottom:464.702250px;}
.y98{bottom:464.715750px;}
.yc1{bottom:464.717700px;}
.y193{bottom:464.803200px;}
.y50{bottom:469.483950px;}
.y1f{bottom:482.810250px;}
.y46{bottom:485.450850px;}
.y12f{bottom:488.000850px;}
.y16a{bottom:488.016750px;}
.y97{bottom:488.030250px;}
.yc0{bottom:488.032200px;}
.y192{bottom:488.117700px;}
.y1e{bottom:506.124750px;}
.y45{bottom:508.765350px;}
.y12e{bottom:511.315350px;}
.y169{bottom:511.331250px;}
.y96{bottom:511.344750px;}
.ybf{bottom:511.346700px;}
.y191{bottom:511.432200px;}
.y1d{bottom:529.439250px;}
.y44{bottom:532.079850px;}
.y12d{bottom:534.535350px;}
.y168{bottom:534.551250px;}
.y190{bottom:534.557700px;}
.y95{bottom:534.564750px;}
.ybe{bottom:534.566700px;}
.y1c{bottom:552.753750px;}
.y43{bottom:555.299850px;}
.y12c{bottom:557.849850px;}
.y167{bottom:557.865750px;}
.y18f{bottom:557.872200px;}
.y94{bottom:557.879250px;}
.ybd{bottom:557.881200px;}
.y1b{bottom:575.973750px;}
.y42{bottom:578.614350px;}
.y12b{bottom:581.164350px;}
.y166{bottom:581.180250px;}
.y18e{bottom:581.186700px;}
.y93{bottom:581.193750px;}
.ybc{bottom:581.195700px;}
.y1a{bottom:599.288250px;}
.y41{bottom:601.928850px;}
.y12a{bottom:604.478850px;}
.y165{bottom:604.494750px;}
.y18d{bottom:604.501200px;}
.y92{bottom:604.508250px;}
.ybb{bottom:604.510200px;}
.y19{bottom:622.602750px;}
.y40{bottom:625.243350px;}
.y129{bottom:627.698850px;}
.y164{bottom:627.714750px;}
.y18c{bottom:627.721200px;}
.y91{bottom:627.728250px;}
.yba{bottom:627.730200px;}
.y18{bottom:645.917250px;}
.y3f{bottom:648.463350px;}
.y128{bottom:651.013350px;}
.y163{bottom:651.029250px;}
.y18b{bottom:651.035700px;}
.y90{bottom:651.042750px;}
.yb9{bottom:651.044700px;}
.y17{bottom:669.137250px;}
.y3e{bottom:671.777850px;}
.y127{bottom:674.327850px;}
.y162{bottom:674.343750px;}
.y18a{bottom:674.350200px;}
.y8f{bottom:674.357250px;}
.yb8{bottom:674.359200px;}
.y16{bottom:692.451750px;}
.y3d{bottom:695.092350px;}
.y126{bottom:697.642350px;}
.y161{bottom:697.658250px;}
.y189{bottom:697.664700px;}
.y8e{bottom:697.671750px;}
.yb7{bottom:697.673700px;}
.y15{bottom:715.766250px;}
.y3c{bottom:718.406850px;}
.y125{bottom:720.862350px;}
.y160{bottom:720.878250px;}
.y188{bottom:720.884700px;}
.y8d{bottom:720.891750px;}
.yb6{bottom:720.893700px;}
.y14{bottom:739.080750px;}
.y3b{bottom:741.626850px;}
.y124{bottom:744.176850px;}
.y15f{bottom:744.192750px;}
.y187{bottom:744.199200px;}
.y109{bottom:744.206250px;}
.yb5{bottom:744.208200px;}
.y8c{bottom:744.287250px;}
.y13{bottom:762.300750px;}
.y3a{bottom:764.941350px;}
.y123{bottom:767.491350px;}
.y8b{bottom:767.507250px;}
.y186{bottom:767.513700px;}
.y108{bottom:767.520750px;}
.yb4{bottom:767.522700px;}
.y12{bottom:785.615250px;}
.y39{bottom:788.255850px;}
.y122{bottom:790.711350px;}
.y8a{bottom:790.727250px;}
.y185{bottom:790.733700px;}
.y107{bottom:790.740750px;}
.yb3{bottom:790.742700px;}
.y11{bottom:808.929750px;}
.y38{bottom:811.475850px;}
.y121{bottom:814.025850px;}
.y89{bottom:814.041750px;}
.y184{bottom:814.048200px;}
.y106{bottom:814.055250px;}
.yb2{bottom:814.138200px;}
.y10{bottom:832.149750px;}
.y37{bottom:834.790350px;}
.y120{bottom:837.340350px;}
.y88{bottom:837.356250px;}
.yb1{bottom:837.358200px;}
.y183{bottom:837.362700px;}
.y105{bottom:837.369750px;}
.yf{bottom:855.464250px;}
.y36{bottom:858.104850px;}
.y11f{bottom:860.654850px;}
.y87{bottom:860.670750px;}
.yb0{bottom:860.672700px;}
.y182{bottom:860.677200px;}
.y104{bottom:860.684250px;}
.ye{bottom:878.778750px;}
.y35{bottom:881.500350px;}
.y11e{bottom:883.874850px;}
.y86{bottom:883.890750px;}
.yaf{bottom:883.892700px;}
.y181{bottom:883.897200px;}
.y103{bottom:883.904250px;}
.yd{bottom:902.093250px;}
.y34{bottom:904.720350px;}
.y11d{bottom:907.189350px;}
.y85{bottom:907.205250px;}
.yae{bottom:907.207200px;}
.y180{bottom:907.211700px;}
.y102{bottom:907.218750px;}
.yc{bottom:925.313250px;}
.y33{bottom:928.034850px;}
.y11c{bottom:930.503850px;}
.y84{bottom:930.519750px;}
.yad{bottom:930.521700px;}
.y17f{bottom:930.526200px;}
.y101{bottom:930.533250px;}
.yb{bottom:948.627750px;}
.y32{bottom:952.424850px;}
.y11b{bottom:953.818350px;}
.y83{bottom:953.834250px;}
.yac{bottom:953.836200px;}
.y17e{bottom:953.840700px;}
.y100{bottom:953.847750px;}
.ya{bottom:971.942250px;}
.y11a{bottom:977.038350px;}
.y31{bottom:977.047050px;}
.y82{bottom:977.054250px;}
.yab{bottom:977.056200px;}
.y17d{bottom:977.060700px;}
.yff{bottom:977.067750px;}
.y9{bottom:995.256750px;}
.y119{bottom:1000.352850px;}
.y30{bottom:1000.361550px;}
.y81{bottom:1000.368750px;}
.yaa{bottom:1000.370700px;}
.y17c{bottom:1000.375200px;}
.yfe{bottom:1000.463250px;}
.y8{bottom:1018.476750px;}
.y118{bottom:1023.667350px;}
.y2f{bottom:1023.676050px;}
.y80{bottom:1023.683250px;}
.ya9{bottom:1023.685200px;}
.y17b{bottom:1023.689700px;}
.y7{bottom:1041.791250px;}
.y117{bottom:1046.887350px;}
.y2e{bottom:1046.896050px;}
.y7f{bottom:1046.903250px;}
.ya8{bottom:1046.905200px;}
.y17a{bottom:1046.909700px;}
.y6{bottom:1065.105750px;}
.y116{bottom:1070.201850px;}
.y2d{bottom:1070.210550px;}
.y7e{bottom:1070.217750px;}
.y179{bottom:1070.224200px;}
.ya7{bottom:1070.300700px;}
.y5{bottom:1088.325750px;}
.y115{bottom:1093.516350px;}
.ya6{bottom:1093.520700px;}
.y2c{bottom:1093.525050px;}
.y7d{bottom:1093.532250px;}
.y178{bottom:1093.538700px;}
.y4{bottom:1111.721250px;}
.y114{bottom:1116.830850px;}
.ya5{bottom:1116.835200px;}
.y2b{bottom:1116.839550px;}
.y7c{bottom:1116.846750px;}
.y177{bottom:1116.853200px;}
.y3{bottom:1135.035750px;}
.ya4{bottom:1140.055200px;}
.y2a{bottom:1140.059550px;}
.y7b{bottom:1140.066750px;}
.y176{bottom:1140.073200px;}
.y113{bottom:1140.145350px;}
.y2{bottom:1159.344030px;}
.ya3{bottom:1163.369700px;}
.y29{bottom:1163.374050px;}
.y7a{bottom:1163.381250px;}
.y112{bottom:1163.459850px;}
.y175{bottom:1163.468700px;}
.y1{bottom:1185.255750px;}
.ya2{bottom:1186.684200px;}
.y28{bottom:1186.688550px;}
.y79{bottom:1186.695750px;}
.y111{bottom:1186.774350px;}
.y174{bottom:1186.783200px;}
.y77{bottom:1211.541150px;}
.hf{height:9.630000px;}
.h5{height:32.273438px;}
.h6{height:32.501953px;}
.h7{height:34.945312px;}
.h8{height:43.681641px;}
.h3{height:48.410156px;}
.hb{height:48.426956px;}
.ha{height:48.444956px;}
.h4{height:48.462356px;}
.h2{height:48.752930px;}
.h9{height:48.779156px;}
.hd{height:48.851756px;}
.hc{height:48.879356px;}
.h10{height:52.750577px;}
.h1{height:54.278262px;}
.he{height:54.290382px;}
.h0{height:1263.000000px;}
.w2{width:81.090000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x43{left:45.089550px;}
.x45{left:52.019550px;}
.x46{left:64.079550px;}
.x1{left:74.620500px;}
.x40{left:77.230500px;}
.x2{left:151.030800px;}
.x7{left:163.720800px;}
.x9{left:165.691800px;}
.xf{left:167.185800px;}
.xa{left:168.481800px;}
.xb{left:169.714800px;}
.x8{left:172.711800px;}
.xc{left:176.005800px;}
.xe{left:181.405800px;}
.xd{left:185.635800px;}
.x4{left:195.220800px;}
.x3{left:249.130950px;}
.x3c{left:272.180100px;}
.x10{left:273.341100px;}
.x12{left:278.831100px;}
.x3d{left:280.109100px;}
.x3b{left:287.120100px;}
.x39{left:289.181100px;}
.x13{left:294.392100px;}
.x3a{left:296.651100px;}
.x3e{left:298.640100px;}
.x14{left:302.402100px;}
.x11{left:309.341100px;}
.x3f{left:326.630100px;}
.x41{left:334.809600px;}
.x18{left:344.799600px;}
.x2d{left:356.751750px;}
.x2e{left:358.272750px;}
.x27{left:360.459750px;}
.x4a{left:362.268750px;}
.x48{left:363.789750px;}
.x2b{left:367.380750px;}
.x26{left:368.829750px;}
.x2c{left:371.340750px;}
.x28{left:374.850750px;}
.x2f{left:376.272750px;}
.x2a{left:379.800750px;}
.x16{left:382.125750px;}
.x49{left:384.309750px;}
.x17{left:386.740500px;}
.x29{left:398.799750px;}
.x30{left:403.812750px;}
.x5{left:420.486750px;}
.x15{left:423.281400px;}
.x31{left:477.794400px;}
.x32{left:482.412000px;}
.x19{left:516.155100px;}
.x1b{left:518.950050px;}
.x37{left:542.090550px;}
.x33{left:544.601550px;}
.x38{left:550.631550px;}
.x35{left:552.611550px;}
.x34{left:559.991550px;}
.x6{left:561.521550px;}
.x44{left:568.450050px;}
.x36{left:573.581550px;}
.x47{left:587.980200px;}
.x42{left:658.540350px;}
.x1a{left:681.040350px;}
.x4c{left:685.720350px;}
.x4d{left:692.650350px;}
.x4b{left:698.770350px;}
.x23{left:703.342350px;}
.x1c{left:706.960350px;}
.x21{left:708.841350px;}
.x20{left:710.830350px;}
.x1d{left:712.360350px;}
.x4e{left:713.800350px;}
.x1e{left:714.880350px;}
.x1f{left:720.820350px;}
.x22{left:732.331350px;}
.x4f{left:740.800350px;}
.x24{left:745.372350px;}
.x25{left:749.332350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-0.396800pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.201600pt;}
.ls4d{letter-spacing:-0.172800pt;}
.ls49{letter-spacing:-0.166400pt;}
.ls48{letter-spacing:-0.160000pt;}
.ls4f{letter-spacing:-0.156800pt;}
.ls26{letter-spacing:-0.139200pt;}
.ls3e{letter-spacing:-0.129600pt;}
.ls53{letter-spacing:-0.124800pt;}
.ls2c{letter-spacing:-0.120000pt;}
.ls5a{letter-spacing:-0.117568pt;}
.ls27{letter-spacing:-0.115200pt;}
.ls24{letter-spacing:-0.110400pt;}
.ls41{letter-spacing:-0.105600pt;}
.ls22{letter-spacing:-0.100800pt;}
.ls2e{letter-spacing:-0.099200pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls5d{letter-spacing:-0.092800pt;}
.ls1e{letter-spacing:-0.091200pt;}
.ls47{letter-spacing:-0.089600pt;}
.ls21{letter-spacing:-0.086400pt;}
.ls40{letter-spacing:-0.081600pt;}
.ls29{letter-spacing:-0.076800pt;}
.ls4b{letter-spacing:-0.073600pt;}
.ls1c{letter-spacing:-0.072000pt;}
.ls5b{letter-spacing:-0.070400pt;}
.ls19{letter-spacing:-0.069472pt;}
.ls25{letter-spacing:-0.067200pt;}
.ls43{letter-spacing:-0.062400pt;}
.ls45{letter-spacing:-0.057600pt;}
.ls1f{letter-spacing:-0.052800pt;}
.ls4e{letter-spacing:-0.051200pt;}
.ls2a{letter-spacing:-0.048000pt;}
.ls3f{letter-spacing:-0.043200pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls18{letter-spacing:-0.037408pt;}
.ls2b{letter-spacing:-0.033600pt;}
.ls23{letter-spacing:-0.028800pt;}
.ls2d{letter-spacing:-0.025600pt;}
.ls28{letter-spacing:-0.024000pt;}
.ls30{letter-spacing:-0.019200pt;}
.ls42{letter-spacing:-0.014400pt;}
.ls33{letter-spacing:-0.010667pt;}
.ls44{letter-spacing:-0.009600pt;}
.ls55{letter-spacing:-0.006400pt;}
.ls20{letter-spacing:-0.004800pt;}
.ls32{letter-spacing:-0.004267pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005344pt;}
.ls56{letter-spacing:0.009600pt;}
.ls3a{letter-spacing:0.012800pt;}
.ls46{letter-spacing:0.014400pt;}
.ls3d{letter-spacing:0.016000pt;}
.ls57{letter-spacing:0.022400pt;}
.ls3{letter-spacing:0.024000pt;}
.ls3b{letter-spacing:0.025600pt;}
.ls13{letter-spacing:0.028800pt;}
.ls17{letter-spacing:0.032000pt;}
.ls51{letter-spacing:0.033600pt;}
.ls59{letter-spacing:0.035200pt;}
.ls4{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.041600pt;}
.ls10{letter-spacing:0.044800pt;}
.ls35{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.051200pt;}
.ls39{letter-spacing:0.054400pt;}
.lsf{letter-spacing:0.057600pt;}
.ls8{letter-spacing:0.060800pt;}
.ls34{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.067200pt;}
.lsa{letter-spacing:0.070400pt;}
.ls15{letter-spacing:0.073600pt;}
.lse{letter-spacing:0.076800pt;}
.ls9{letter-spacing:0.080000pt;}
.ls5c{letter-spacing:0.080160pt;}
.ls3c{letter-spacing:0.083200pt;}
.ls11{letter-spacing:0.086400pt;}
.ls38{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.092800pt;}
.ls7{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.099200pt;}
.lsb{letter-spacing:0.102400pt;}
.ls6{letter-spacing:0.105600pt;}
.ls37{letter-spacing:0.108800pt;}
.ls52{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.115200pt;}
.lsc{letter-spacing:0.118400pt;}
.ls58{letter-spacing:0.121600pt;}
.ls4c{letter-spacing:0.124800pt;}
.lsd{letter-spacing:0.131200pt;}
.ls54{letter-spacing:0.153600pt;}
.ls50{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:3.590400pt;}
.ws1c{word-spacing:-53.445344pt;}
.ws0{word-spacing:-53.402592pt;}
.ws1{word-spacing:-53.370528pt;}
.ws29{word-spacing:-48.115200pt;}
.ws27{word-spacing:-48.038400pt;}
.ws89{word-spacing:-48.033600pt;}
.ws6a{word-spacing:-48.028800pt;}
.ws1b{word-spacing:-48.004800pt;}
.ws60{word-spacing:-47.995200pt;}
.wsb5{word-spacing:-47.990400pt;}
.ws9e{word-spacing:-47.985600pt;}
.ws52{word-spacing:-47.976000pt;}
.wsb{word-spacing:-47.971200pt;}
.ws24{word-spacing:-47.966400pt;}
.ws20{word-spacing:-47.961600pt;}
.ws4d{word-spacing:-47.956800pt;}
.ws23{word-spacing:-47.952000pt;}
.ws7{word-spacing:-47.947200pt;}
.wsd0{word-spacing:-47.942400pt;}
.wsb9{word-spacing:-47.937600pt;}
.ws10{word-spacing:-47.932800pt;}
.ws3{word-spacing:-47.928000pt;}
.ws68{word-spacing:-47.923200pt;}
.ws67{word-spacing:-47.918400pt;}
.wsc{word-spacing:-47.913600pt;}
.ws58{word-spacing:-47.908800pt;}
.ws4{word-spacing:-47.904000pt;}
.ws4a{word-spacing:-47.899200pt;}
.ws5f{word-spacing:-47.894400pt;}
.wsf{word-spacing:-47.889600pt;}
.ws16{word-spacing:-47.884800pt;}
.ws26{word-spacing:-47.880000pt;}
.ws12{word-spacing:-47.860800pt;}
.ws22{word-spacing:-39.724800pt;}
.ws6f{word-spacing:-39.696000pt;}
.ws63{word-spacing:-39.427200pt;}
.ws56{word-spacing:-39.331200pt;}
.ws9d{word-spacing:-39.072000pt;}
.ws96{word-spacing:-38.486400pt;}
.ws9{word-spacing:-38.457600pt;}
.ws95{word-spacing:-38.428800pt;}
.wsb6{word-spacing:-38.380800pt;}
.wsa1{word-spacing:-38.126400pt;}
.ws54{word-spacing:-38.121600pt;}
.ws4e{word-spacing:-38.116800pt;}
.wsba{word-spacing:-38.073600pt;}
.ws8a{word-spacing:-37.905600pt;}
.ws8b{word-spacing:-37.881600pt;}
.ws21{word-spacing:-37.776000pt;}
.wsa2{word-spacing:-37.497600pt;}
.ws55{word-spacing:-37.483200pt;}
.ws93{word-spacing:-37.478400pt;}
.wsc1{word-spacing:-37.440000pt;}
.wscc{word-spacing:-37.353600pt;}
.wsc8{word-spacing:-37.147200pt;}
.ws6c{word-spacing:-36.921600pt;}
.ws6{word-spacing:-36.816000pt;}
.wsd{word-spacing:-36.811200pt;}
.wsaf{word-spacing:-36.787200pt;}
.ws91{word-spacing:-36.768000pt;}
.ws25{word-spacing:-36.537600pt;}
.ws9f{word-spacing:-36.499200pt;}
.ws9b{word-spacing:-36.196800pt;}
.wsc3{word-spacing:-35.932800pt;}
.wsa7{word-spacing:-35.913600pt;}
.wsc6{word-spacing:-35.875200pt;}
.ws42{word-spacing:-35.590400pt;}
.ws86{word-spacing:-35.582400pt;}
.ws15{word-spacing:-35.520000pt;}
.ws4c{word-spacing:-35.265600pt;}
.wsb4{word-spacing:-35.260800pt;}
.ws50{word-spacing:-35.203200pt;}
.wsbf{word-spacing:-34.905600pt;}
.ws90{word-spacing:-34.896000pt;}
.wsc2{word-spacing:-34.382400pt;}
.ws98{word-spacing:-34.291200pt;}
.wsa3{word-spacing:-34.252800pt;}
.wsb3{word-spacing:-34.214400pt;}
.ws8e{word-spacing:-34.032000pt;}
.wsb1{word-spacing:-33.926400pt;}
.ws8c{word-spacing:-33.705600pt;}
.ws1f{word-spacing:-33.633600pt;}
.wsa5{word-spacing:-33.628800pt;}
.wsce{word-spacing:-33.004800pt;}
.wsb0{word-spacing:-32.947200pt;}
.wsa{word-spacing:-32.668800pt;}
.ws97{word-spacing:-32.356800pt;}
.ws85{word-spacing:-32.160000pt;}
.wsad{word-spacing:-32.153600pt;}
.ws36{word-spacing:-32.131200pt;}
.ws7e{word-spacing:-32.124800pt;}
.wsd4{word-spacing:-32.121600pt;}
.ws35{word-spacing:-32.118400pt;}
.ws34{word-spacing:-32.115200pt;}
.wsaa{word-spacing:-32.112000pt;}
.ws75{word-spacing:-32.108800pt;}
.ws2c{word-spacing:-32.105600pt;}
.ws32{word-spacing:-32.102400pt;}
.ws74{word-spacing:-32.099200pt;}
.ws2d{word-spacing:-32.096000pt;}
.ws2b{word-spacing:-32.092800pt;}
.ws76{word-spacing:-32.089600pt;}
.ws3c{word-spacing:-32.086400pt;}
.ws83{word-spacing:-32.083200pt;}
.ws2f{word-spacing:-32.080000pt;}
.ws39{word-spacing:-32.076800pt;}
.ws5a{word-spacing:-32.073600pt;}
.ws30{word-spacing:-32.070400pt;}
.ws41{word-spacing:-32.067200pt;}
.ws72{word-spacing:-32.064000pt;}
.ws2e{word-spacing:-32.060800pt;}
.ws38{word-spacing:-32.057600pt;}
.ws77{word-spacing:-32.054400pt;}
.ws3d{word-spacing:-32.051200pt;}
.ws73{word-spacing:-32.048000pt;}
.ws3a{word-spacing:-32.044800pt;}
.ws3f{word-spacing:-32.041600pt;}
.wsd5{word-spacing:-32.035200pt;}
.ws46{word-spacing:-32.032000pt;}
.ws3e{word-spacing:-32.028800pt;}
.ws7d{word-spacing:-32.025600pt;}
.wsd2{word-spacing:-32.022400pt;}
.ws84{word-spacing:-32.016000pt;}
.ws78{word-spacing:-32.012800pt;}
.ws44{word-spacing:-32.000000pt;}
.wsae{word-spacing:-31.993600pt;}
.wsc9{word-spacing:-31.987200pt;}
.ws43{word-spacing:-31.980800pt;}
.ws31{word-spacing:-31.974400pt;}
.wsab{word-spacing:-31.971200pt;}
.ws81{word-spacing:-31.961600pt;}
.ws33{word-spacing:-31.952000pt;}
.ws80{word-spacing:-31.948800pt;}
.wsd3{word-spacing:-31.929600pt;}
.ws7c{word-spacing:-31.926400pt;}
.ws71{word-spacing:-31.910400pt;}
.wsd6{word-spacing:-31.907200pt;}
.ws3b{word-spacing:-31.900800pt;}
.wsac{word-spacing:-31.875200pt;}
.ws82{word-spacing:-31.843200pt;}
.ws79{word-spacing:-31.840000pt;}
.ws7a{word-spacing:-31.833600pt;}
.ws7f{word-spacing:-31.827200pt;}
.wsd7{word-spacing:-31.798400pt;}
.ws45{word-spacing:-31.680000pt;}
.ws7b{word-spacing:-31.603200pt;}
.ws6b{word-spacing:-31.094400pt;}
.ws5b{word-spacing:-31.017600pt;}
.ws4b{word-spacing:-30.979200pt;}
.ws88{word-spacing:-30.729600pt;}
.ws92{word-spacing:-29.827200pt;}
.wsbd{word-spacing:-29.793600pt;}
.wscd{word-spacing:-29.395200pt;}
.ws8{word-spacing:-29.308800pt;}
.ws51{word-spacing:-29.203200pt;}
.ws5d{word-spacing:-29.136000pt;}
.ws17{word-spacing:-28.857600pt;}
.ws66{word-spacing:-28.555200pt;}
.ws6d{word-spacing:-28.521600pt;}
.ws5c{word-spacing:-28.243200pt;}
.wsbb{word-spacing:-27.552000pt;}
.ws57{word-spacing:-27.288000pt;}
.ws94{word-spacing:-26.308800pt;}
.ws8f{word-spacing:-26.064000pt;}
.ws5e{word-spacing:-25.987200pt;}
.ws59{word-spacing:-25.641600pt;}
.ws4f{word-spacing:-25.382400pt;}
.wsc7{word-spacing:-25.358400pt;}
.ws9a{word-spacing:-25.257600pt;}
.ws1e{word-spacing:-25.012800pt;}
.ws18{word-spacing:-24.988800pt;}
.wscf{word-spacing:-24.955200pt;}
.wsca{word-spacing:-24.096000pt;}
.ws64{word-spacing:-24.033600pt;}
.wsc5{word-spacing:-23.697600pt;}
.wsa8{word-spacing:-23.688000pt;}
.wsb2{word-spacing:-23.376000pt;}
.ws37{word-spacing:-23.078400pt;}
.ws87{word-spacing:-22.795200pt;}
.wscb{word-spacing:-22.185600pt;}
.wsb8{word-spacing:-21.801600pt;}
.ws9c{word-spacing:-21.441600pt;}
.wse{word-spacing:-21.168000pt;}
.ws1d{word-spacing:-20.726400pt;}
.ws49{word-spacing:-20.654400pt;}
.ws65{word-spacing:-18.288000pt;}
.wsc4{word-spacing:-16.651200pt;}
.wsa6{word-spacing:-16.377600pt;}
.wsa0{word-spacing:-16.358400pt;}
.wsbe{word-spacing:-14.745600pt;}
.wsb7{word-spacing:-14.534400pt;}
.ws40{word-spacing:-13.836800pt;}
.ws62{word-spacing:-13.809600pt;}
.ws14{word-spacing:-12.566400pt;}
.wsa4{word-spacing:-11.563200pt;}
.ws6e{word-spacing:-10.281600pt;}
.ws5{word-spacing:-9.316800pt;}
.ws19{word-spacing:-7.824000pt;}
.ws47{word-spacing:0.000000pt;}
.ws48{word-spacing:0.012800pt;}
.ws53{word-spacing:0.508800pt;}
.ws69{word-spacing:8.956800pt;}
.ws1a{word-spacing:12.432000pt;}
.ws8d{word-spacing:13.684800pt;}
.wsc0{word-spacing:23.606400pt;}
.ws11{word-spacing:303.923200pt;}
.wsbc{word-spacing:349.126933pt;}
.ws13{word-spacing:388.121600pt;}
.ws2a{word-spacing:441.958400pt;}
.ws28{word-spacing:455.188267pt;}
.ws99{word-spacing:474.367467pt;}
.ws61{word-spacing:496.469333pt;}
.wsa9{word-spacing:500.453333pt;}
.wsd1{word-spacing:560.851104pt;}
.ws70{word-spacing:580.071467pt;}
.ws2{word-spacing:762.748800pt;}
._10{margin-left:-4.051200pt;}
._11{margin-left:-2.928000pt;}
._9{margin-left:-0.964800pt;}
._1{width:1.137600pt;}
._5{width:2.145600pt;}
._e{width:3.523200pt;}
._2{width:4.670400pt;}
._0{width:5.937600pt;}
._8{width:6.945600pt;}
._12{width:7.929600pt;}
._d{width:9.326400pt;}
._3{width:10.348800pt;}
._6{width:11.990400pt;}
._13{width:13.852800pt;}
._1b{width:14.899200pt;}
._4{width:16.243200pt;}
._f{width:17.267200pt;}
._19{width:18.998400pt;}
._b{width:20.203200pt;}
._15{width:21.777600pt;}
._16{width:23.443200pt;}
._1c{width:25.425600pt;}
._7{width:27.657600pt;}
._1a{width:32.640000pt;}
._17{width:35.035200pt;}
._a{width:36.273600pt;}
._c{width:41.203200pt;}
._14{width:49.675200pt;}
._18{width:57.912000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:53.440000pt;}
.y0{bottom:0.000000pt;}
.y1a8{bottom:1.359733pt;}
.y78{bottom:36.418667pt;}
.ya1{bottom:53.394400pt;}
.y4f{bottom:58.106800pt;}
.y173{bottom:59.314400pt;}
.yc9{bottom:59.478400pt;}
.y27{bottom:61.558267pt;}
.y73{bottom:68.118533pt;}
.y137{bottom:73.950400pt;}
.ya0{bottom:74.118400pt;}
.yc8{bottom:77.470667pt;}
.y72{bottom:77.558533pt;}
.y110{bottom:79.394533pt;}
.y172{bottom:80.038400pt;}
.y71{bottom:86.758533pt;}
.y19a{bottom:87.075707pt;}
.yd6{bottom:90.758667pt;}
.yf2{bottom:91.878533pt;}
.y9f{bottom:92.118400pt;}
.y1a7{bottom:92.438667pt;}
.y1a9{bottom:93.798400pt;}
.y1a6{bottom:93.798667pt;}
.y136{bottom:94.590400pt;}
.y70{bottom:95.958533pt;}
.y171{bottom:98.038400pt;}
.yd5{bottom:99.958667pt;}
.y10f{bottom:100.034533pt;}
.yf1{bottom:101.078533pt;}
.y1a5{bottom:102.998667pt;}
.y1af{bottom:104.838667pt;}
.y6f{bottom:105.158533pt;}
.yd4{bottom:109.158667pt;}
.yf0{bottom:110.278533pt;}
.y1a4{bottom:112.198667pt;}
.y1ae{bottom:114.038667pt;}
.y6e{bottom:114.358533pt;}
.y135{bottom:115.314400pt;}
.yd3{bottom:118.358667pt;}
.yef{bottom:119.478533pt;}
.y10e{bottom:120.758533pt;}
.y1a3{bottom:121.398667pt;}
.y1ad{bottom:123.238667pt;}
.y6d{bottom:123.558533pt;}
.yd2{bottom:127.558667pt;}
.yee{bottom:128.678533pt;}
.y1a2{bottom:130.598667pt;}
.y1ac{bottom:132.438667pt;}
.y6c{bottom:132.758533pt;}
.y134{bottom:133.398400pt;}
.y13f{bottom:133.558667pt;}
.yd1{bottom:136.758667pt;}
.yed{bottom:137.878533pt;}
.y10d{bottom:138.754800pt;}
.y1a1{bottom:139.798667pt;}
.y1ab{bottom:141.638667pt;}
.y6b{bottom:141.958533pt;}
.y13e{bottom:142.758667pt;}
.y15e{bottom:145.478667pt;}
.yd0{bottom:145.958667pt;}
.yec{bottom:147.078533pt;}
.y1a0{bottom:148.998667pt;}
.y1aa{bottom:150.838667pt;}
.y26{bottom:151.078533pt;}
.y6a{bottom:151.158533pt;}
.y13d{bottom:151.958667pt;}
.y15d{bottom:154.678667pt;}
.ycf{bottom:155.158667pt;}
.yeb{bottom:156.278533pt;}
.y19f{bottom:158.198667pt;}
.y66{bottom:160.038667pt;}
.y69{bottom:160.358533pt;}
.y13c{bottom:161.158667pt;}
.y15c{bottom:163.878667pt;}
.yce{bottom:164.358667pt;}
.yea{bottom:165.478533pt;}
.y19e{bottom:167.398667pt;}
.y65{bottom:169.238667pt;}
.y68{bottom:169.558533pt;}
.y13b{bottom:170.358667pt;}
.y15b{bottom:173.078667pt;}
.ycd{bottom:173.558667pt;}
.ye9{bottom:174.678533pt;}
.y19d{bottom:176.598667pt;}
.y64{bottom:178.438667pt;}
.y67{bottom:178.758533pt;}
.y13a{bottom:179.558667pt;}
.y15a{bottom:182.278667pt;}
.ycc{bottom:182.758667pt;}
.ye8{bottom:183.878533pt;}
.y19c{bottom:185.798667pt;}
.y63{bottom:187.638667pt;}
.y139{bottom:188.758667pt;}
.y159{bottom:191.478667pt;}
.ycb{bottom:191.958667pt;}
.ye7{bottom:193.078533pt;}
.y19b{bottom:194.998667pt;}
.y4e{bottom:195.710800pt;}
.y62{bottom:196.838667pt;}
.y138{bottom:197.958667pt;}
.y9e{bottom:200.510667pt;}
.y158{bottom:200.678667pt;}
.yca{bottom:201.158667pt;}
.ye6{bottom:202.278533pt;}
.yc7{bottom:204.994667pt;}
.y61{bottom:206.038667pt;}
.y199{bottom:206.834747pt;}
.y157{bottom:209.878667pt;}
.ye5{bottom:211.478533pt;}
.y4d{bottom:216.350800pt;}
.y170{bottom:217.314800pt;}
.y156{bottom:219.078667pt;}
.y9d{bottom:221.150667pt;}
.yc6{bottom:225.718667pt;}
.y25{bottom:227.074667pt;}
.y155{bottom:228.278667pt;}
.y198{bottom:228.838667pt;}
.y4c{bottom:237.074800pt;}
.y76{bottom:237.158667pt;}
.y16f{bottom:237.954800pt;}
.y9c{bottom:241.874667pt;}
.yc5{bottom:243.718667pt;}
.y75{bottom:246.358667pt;}
.y10c{bottom:246.514800pt;}
.y197{bottom:246.838667pt;}
.y24{bottom:247.714667pt;}
.y74{bottom:255.558667pt;}
.y1b8{bottom:255.798800pt;}
.y16e{bottom:255.940667pt;}
.y4b{bottom:257.798800pt;}
.ye4{bottom:257.798933pt;}
.y9b{bottom:259.876667pt;}
.y1b7{bottom:264.998800pt;}
.y23{bottom:265.798667pt;}
.y1c0{bottom:266.518800pt;}
.ye3{bottom:266.998933pt;}
.y10b{bottom:267.238800pt;}
.yfd{bottom:269.158933pt;}
.y60{bottom:270.119067pt;}
.y1b6{bottom:274.198800pt;}
.y133{bottom:275.638800pt;}
.y1bf{bottom:275.718800pt;}
.y4a{bottom:275.798800pt;}
.ye2{bottom:276.198933pt;}
.yfc{bottom:278.358933pt;}
.y5f{bottom:279.319067pt;}
.y1b5{bottom:283.398800pt;}
.y1be{bottom:284.918800pt;}
.y10a{bottom:285.238800pt;}
.ye1{bottom:285.398933pt;}
.yfb{bottom:287.558933pt;}
.y5e{bottom:288.519067pt;}
.y1b4{bottom:292.598800pt;}
.y132{bottom:293.534533pt;}
.y1bd{bottom:294.118800pt;}
.y154{bottom:294.359067pt;}
.ye0{bottom:294.598933pt;}
.y149{bottom:296.119067pt;}
.yfa{bottom:296.758933pt;}
.y5d{bottom:297.719067pt;}
.y1b3{bottom:301.798800pt;}
.y1bc{bottom:303.318800pt;}
.y153{bottom:303.559067pt;}
.ydf{bottom:303.798933pt;}
.y148{bottom:305.319067pt;}
.yf9{bottom:305.958933pt;}
.y5c{bottom:306.919067pt;}
.y1b2{bottom:310.998800pt;}
.y1bb{bottom:312.518800pt;}
.y152{bottom:312.759067pt;}
.yde{bottom:312.998933pt;}
.y147{bottom:314.519067pt;}
.yf8{bottom:315.158933pt;}
.y5b{bottom:316.119067pt;}
.y1b1{bottom:320.198800pt;}
.y1ba{bottom:321.718800pt;}
.y151{bottom:321.959067pt;}
.ydd{bottom:322.198933pt;}
.y146{bottom:323.719067pt;}
.yf7{bottom:324.358933pt;}
.y5a{bottom:325.319067pt;}
.y1b0{bottom:329.398800pt;}
.y1b9{bottom:330.918800pt;}
.y150{bottom:331.159067pt;}
.ydc{bottom:331.398933pt;}
.y145{bottom:332.919067pt;}
.yf6{bottom:333.558933pt;}
.y59{bottom:334.519067pt;}
.y14f{bottom:340.359067pt;}
.ydb{bottom:340.598933pt;}
.y144{bottom:342.119067pt;}
.yf5{bottom:342.758933pt;}
.y58{bottom:343.719067pt;}
.y14e{bottom:349.559067pt;}
.yda{bottom:349.798933pt;}
.yc4{bottom:350.994400pt;}
.y196{bottom:351.070400pt;}
.y143{bottom:351.319067pt;}
.yf4{bottom:351.958933pt;}
.y57{bottom:352.919067pt;}
.y14d{bottom:358.759067pt;}
.yd9{bottom:358.998933pt;}
.y142{bottom:360.519067pt;}
.yf3{bottom:361.158933pt;}
.y56{bottom:362.119067pt;}
.y22{bottom:367.076667pt;}
.y14c{bottom:367.959067pt;}
.yd8{bottom:368.198933pt;}
.y49{bottom:369.423867pt;}
.y141{bottom:369.719067pt;}
.y55{bottom:371.319067pt;}
.y16d{bottom:371.704667pt;}
.y9a{bottom:371.716667pt;}
.yc3{bottom:371.718400pt;}
.y195{bottom:371.794400pt;}
.y14b{bottom:377.159067pt;}
.yd7{bottom:377.398933pt;}
.y140{bottom:378.919067pt;}
.y54{bottom:380.519067pt;}
.y14a{bottom:386.359067pt;}
.y21{bottom:387.800667pt;}
.y53{bottom:389.719067pt;}
.y48{bottom:390.147867pt;}
.y131{bottom:392.414533pt;}
.y16c{bottom:392.428667pt;}
.y99{bottom:392.440667pt;}
.yc2{bottom:392.442400pt;}
.y194{bottom:392.518400pt;}
.y52{bottom:398.919067pt;}
.y51{bottom:408.119067pt;}
.y20{bottom:408.524667pt;}
.y47{bottom:410.871867pt;}
.y130{bottom:413.054533pt;}
.y16b{bottom:413.068667pt;}
.y98{bottom:413.080667pt;}
.yc1{bottom:413.082400pt;}
.y193{bottom:413.158400pt;}
.y50{bottom:417.319067pt;}
.y1f{bottom:429.164667pt;}
.y46{bottom:431.511867pt;}
.y12f{bottom:433.778533pt;}
.y16a{bottom:433.792667pt;}
.y97{bottom:433.804667pt;}
.yc0{bottom:433.806400pt;}
.y192{bottom:433.882400pt;}
.y1e{bottom:449.888667pt;}
.y45{bottom:452.235867pt;}
.y12e{bottom:454.502533pt;}
.y169{bottom:454.516667pt;}
.y96{bottom:454.528667pt;}
.ybf{bottom:454.530400pt;}
.y191{bottom:454.606400pt;}
.y1d{bottom:470.612667pt;}
.y44{bottom:472.959867pt;}
.y12d{bottom:475.142533pt;}
.y168{bottom:475.156667pt;}
.y190{bottom:475.162400pt;}
.y95{bottom:475.168667pt;}
.ybe{bottom:475.170400pt;}
.y1c{bottom:491.336667pt;}
.y43{bottom:493.599867pt;}
.y12c{bottom:495.866533pt;}
.y167{bottom:495.880667pt;}
.y18f{bottom:495.886400pt;}
.y94{bottom:495.892667pt;}
.ybd{bottom:495.894400pt;}
.y1b{bottom:511.976667pt;}
.y42{bottom:514.323867pt;}
.y12b{bottom:516.590533pt;}
.y166{bottom:516.604667pt;}
.y18e{bottom:516.610400pt;}
.y93{bottom:516.616667pt;}
.ybc{bottom:516.618400pt;}
.y1a{bottom:532.700667pt;}
.y41{bottom:535.047867pt;}
.y12a{bottom:537.314533pt;}
.y165{bottom:537.328667pt;}
.y18d{bottom:537.334400pt;}
.y92{bottom:537.340667pt;}
.ybb{bottom:537.342400pt;}
.y19{bottom:553.424667pt;}
.y40{bottom:555.771867pt;}
.y129{bottom:557.954533pt;}
.y164{bottom:557.968667pt;}
.y18c{bottom:557.974400pt;}
.y91{bottom:557.980667pt;}
.yba{bottom:557.982400pt;}
.y18{bottom:574.148667pt;}
.y3f{bottom:576.411867pt;}
.y128{bottom:578.678533pt;}
.y163{bottom:578.692667pt;}
.y18b{bottom:578.698400pt;}
.y90{bottom:578.704667pt;}
.yb9{bottom:578.706400pt;}
.y17{bottom:594.788667pt;}
.y3e{bottom:597.135867pt;}
.y127{bottom:599.402533pt;}
.y162{bottom:599.416667pt;}
.y18a{bottom:599.422400pt;}
.y8f{bottom:599.428667pt;}
.yb8{bottom:599.430400pt;}
.y16{bottom:615.512667pt;}
.y3d{bottom:617.859867pt;}
.y126{bottom:620.126533pt;}
.y161{bottom:620.140667pt;}
.y189{bottom:620.146400pt;}
.y8e{bottom:620.152667pt;}
.yb7{bottom:620.154400pt;}
.y15{bottom:636.236667pt;}
.y3c{bottom:638.583867pt;}
.y125{bottom:640.766533pt;}
.y160{bottom:640.780667pt;}
.y188{bottom:640.786400pt;}
.y8d{bottom:640.792667pt;}
.yb6{bottom:640.794400pt;}
.y14{bottom:656.960667pt;}
.y3b{bottom:659.223867pt;}
.y124{bottom:661.490533pt;}
.y15f{bottom:661.504667pt;}
.y187{bottom:661.510400pt;}
.y109{bottom:661.516667pt;}
.yb5{bottom:661.518400pt;}
.y8c{bottom:661.588667pt;}
.y13{bottom:677.600667pt;}
.y3a{bottom:679.947867pt;}
.y123{bottom:682.214533pt;}
.y8b{bottom:682.228667pt;}
.y186{bottom:682.234400pt;}
.y108{bottom:682.240667pt;}
.yb4{bottom:682.242400pt;}
.y12{bottom:698.324667pt;}
.y39{bottom:700.671867pt;}
.y122{bottom:702.854533pt;}
.y8a{bottom:702.868667pt;}
.y185{bottom:702.874400pt;}
.y107{bottom:702.880667pt;}
.yb3{bottom:702.882400pt;}
.y11{bottom:719.048667pt;}
.y38{bottom:721.311867pt;}
.y121{bottom:723.578533pt;}
.y89{bottom:723.592667pt;}
.y184{bottom:723.598400pt;}
.y106{bottom:723.604667pt;}
.yb2{bottom:723.678400pt;}
.y10{bottom:739.688667pt;}
.y37{bottom:742.035867pt;}
.y120{bottom:744.302533pt;}
.y88{bottom:744.316667pt;}
.yb1{bottom:744.318400pt;}
.y183{bottom:744.322400pt;}
.y105{bottom:744.328667pt;}
.yf{bottom:760.412667pt;}
.y36{bottom:762.759867pt;}
.y11f{bottom:765.026533pt;}
.y87{bottom:765.040667pt;}
.yb0{bottom:765.042400pt;}
.y182{bottom:765.046400pt;}
.y104{bottom:765.052667pt;}
.ye{bottom:781.136667pt;}
.y35{bottom:783.555867pt;}
.y11e{bottom:785.666533pt;}
.y86{bottom:785.680667pt;}
.yaf{bottom:785.682400pt;}
.y181{bottom:785.686400pt;}
.y103{bottom:785.692667pt;}
.yd{bottom:801.860667pt;}
.y34{bottom:804.195867pt;}
.y11d{bottom:806.390533pt;}
.y85{bottom:806.404667pt;}
.yae{bottom:806.406400pt;}
.y180{bottom:806.410400pt;}
.y102{bottom:806.416667pt;}
.yc{bottom:822.500667pt;}
.y33{bottom:824.919867pt;}
.y11c{bottom:827.114533pt;}
.y84{bottom:827.128667pt;}
.yad{bottom:827.130400pt;}
.y17f{bottom:827.134400pt;}
.y101{bottom:827.140667pt;}
.yb{bottom:843.224667pt;}
.y32{bottom:846.599867pt;}
.y11b{bottom:847.838533pt;}
.y83{bottom:847.852667pt;}
.yac{bottom:847.854400pt;}
.y17e{bottom:847.858400pt;}
.y100{bottom:847.864667pt;}
.ya{bottom:863.948667pt;}
.y11a{bottom:868.478533pt;}
.y31{bottom:868.486267pt;}
.y82{bottom:868.492667pt;}
.yab{bottom:868.494400pt;}
.y17d{bottom:868.498400pt;}
.yff{bottom:868.504667pt;}
.y9{bottom:884.672667pt;}
.y119{bottom:889.202533pt;}
.y30{bottom:889.210267pt;}
.y81{bottom:889.216667pt;}
.yaa{bottom:889.218400pt;}
.y17c{bottom:889.222400pt;}
.yfe{bottom:889.300667pt;}
.y8{bottom:905.312667pt;}
.y118{bottom:909.926533pt;}
.y2f{bottom:909.934267pt;}
.y80{bottom:909.940667pt;}
.ya9{bottom:909.942400pt;}
.y17b{bottom:909.946400pt;}
.y7{bottom:926.036667pt;}
.y117{bottom:930.566533pt;}
.y2e{bottom:930.574267pt;}
.y7f{bottom:930.580667pt;}
.ya8{bottom:930.582400pt;}
.y17a{bottom:930.586400pt;}
.y6{bottom:946.760667pt;}
.y116{bottom:951.290533pt;}
.y2d{bottom:951.298267pt;}
.y7e{bottom:951.304667pt;}
.y179{bottom:951.310400pt;}
.ya7{bottom:951.378400pt;}
.y5{bottom:967.400667pt;}
.y115{bottom:972.014533pt;}
.ya6{bottom:972.018400pt;}
.y2c{bottom:972.022267pt;}
.y7d{bottom:972.028667pt;}
.y178{bottom:972.034400pt;}
.y4{bottom:988.196667pt;}
.y114{bottom:992.738533pt;}
.ya5{bottom:992.742400pt;}
.y2b{bottom:992.746267pt;}
.y7c{bottom:992.752667pt;}
.y177{bottom:992.758400pt;}
.y3{bottom:1008.920667pt;}
.ya4{bottom:1013.382400pt;}
.y2a{bottom:1013.386267pt;}
.y7b{bottom:1013.392667pt;}
.y176{bottom:1013.398400pt;}
.y113{bottom:1013.462533pt;}
.y2{bottom:1030.528027pt;}
.ya3{bottom:1034.106400pt;}
.y29{bottom:1034.110267pt;}
.y7a{bottom:1034.116667pt;}
.y112{bottom:1034.186533pt;}
.y175{bottom:1034.194400pt;}
.y1{bottom:1053.560667pt;}
.ya2{bottom:1054.830400pt;}
.y28{bottom:1054.834267pt;}
.y79{bottom:1054.840667pt;}
.y111{bottom:1054.910533pt;}
.y174{bottom:1054.918400pt;}
.y77{bottom:1076.925467pt;}
.hf{height:8.560000pt;}
.h5{height:28.687500pt;}
.h6{height:28.890625pt;}
.h7{height:31.062500pt;}
.h8{height:38.828125pt;}
.h3{height:43.031250pt;}
.hb{height:43.046183pt;}
.ha{height:43.062183pt;}
.h4{height:43.077650pt;}
.h2{height:43.335938pt;}
.h9{height:43.359250pt;}
.hd{height:43.423783pt;}
.hc{height:43.448317pt;}
.h10{height:46.889402pt;}
.h1{height:48.247344pt;}
.he{height:48.258117pt;}
.h0{height:1122.666667pt;}
.w2{width:72.080000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x43{left:40.079600pt;}
.x45{left:46.239600pt;}
.x46{left:56.959600pt;}
.x1{left:66.329333pt;}
.x40{left:68.649333pt;}
.x2{left:134.249600pt;}
.x7{left:145.529600pt;}
.x9{left:147.281600pt;}
.xf{left:148.609600pt;}
.xa{left:149.761600pt;}
.xb{left:150.857600pt;}
.x8{left:153.521600pt;}
.xc{left:156.449600pt;}
.xe{left:161.249600pt;}
.xd{left:165.009600pt;}
.x4{left:173.529600pt;}
.x3{left:221.449733pt;}
.x3c{left:241.937867pt;}
.x10{left:242.969867pt;}
.x12{left:247.849867pt;}
.x3d{left:248.985867pt;}
.x3b{left:255.217867pt;}
.x39{left:257.049867pt;}
.x13{left:261.681867pt;}
.x3a{left:263.689867pt;}
.x3e{left:265.457867pt;}
.x14{left:268.801867pt;}
.x11{left:274.969867pt;}
.x3f{left:290.337867pt;}
.x41{left:297.608533pt;}
.x18{left:306.488533pt;}
.x2d{left:317.112667pt;}
.x2e{left:318.464667pt;}
.x27{left:320.408667pt;}
.x4a{left:322.016667pt;}
.x48{left:323.368667pt;}
.x2b{left:326.560667pt;}
.x26{left:327.848667pt;}
.x2c{left:330.080667pt;}
.x28{left:333.200667pt;}
.x2f{left:334.464667pt;}
.x2a{left:337.600667pt;}
.x16{left:339.667333pt;}
.x49{left:341.608667pt;}
.x17{left:343.769333pt;}
.x29{left:354.488667pt;}
.x30{left:358.944667pt;}
.x5{left:373.766000pt;}
.x15{left:376.250133pt;}
.x31{left:424.706133pt;}
.x32{left:428.810667pt;}
.x19{left:458.804533pt;}
.x1b{left:461.288933pt;}
.x37{left:481.858267pt;}
.x33{left:484.090267pt;}
.x38{left:489.450267pt;}
.x35{left:491.210267pt;}
.x34{left:497.770267pt;}
.x6{left:499.130267pt;}
.x44{left:505.288933pt;}
.x36{left:509.850267pt;}
.x47{left:522.649067pt;}
.x42{left:585.369200pt;}
.x1a{left:605.369200pt;}
.x4c{left:609.529200pt;}
.x4d{left:615.689200pt;}
.x4b{left:621.129200pt;}
.x23{left:625.193200pt;}
.x1c{left:628.409200pt;}
.x21{left:630.081200pt;}
.x20{left:631.849200pt;}
.x1d{left:633.209200pt;}
.x4e{left:634.489200pt;}
.x1e{left:635.449200pt;}
.x1f{left:640.729200pt;}
.x22{left:650.961200pt;}
.x4f{left:658.489200pt;}
.x24{left:662.553200pt;}
.x25{left:666.073200pt;}
}




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