
    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_3ffcfa3fdd5a7cabe8807f74.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1e8e488b90281bc7c4c2cb9.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_5c112885aefe679856f14457.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6be3f4c0997b8dc63c1eb7c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_91bed028802e748988adcc9c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_1c68699e2ce9dc5d9b3c5276.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945000;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_a1a05b2de600771240bc1231.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;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_df4594c43f93ee5d4e27d789.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_761a4752f6029e652b31c8db.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5b6a72aac5499972e10ce011.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_258c0c15501297ecb9dc3af5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_bfe70e17a7e64d2deef17936.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.799000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5b6a72aac5499972e10ce011.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3debe8e2022af935a8198ca6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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);}
.v2{vertical-align:-17.982000px;}
.v5{vertical-align:-4.371000px;}
.v3{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v1{vertical-align:17.982000px;}
.ls29{letter-spacing:-4.992000px;}
.ls34{letter-spacing:-4.272000px;}
.ls2c{letter-spacing:-3.552000px;}
.ls2a{letter-spacing:-2.688000px;}
.ls32{letter-spacing:-1.824000px;}
.ls2f{letter-spacing:-1.632000px;}
.ls20{letter-spacing:-1.584000px;}
.ls30{letter-spacing:-1.440000px;}
.ls33{letter-spacing:-1.344000px;}
.ls36{letter-spacing:-1.152000px;}
.ls37{letter-spacing:-1.104000px;}
.ls21{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.378000px;}
.ls3a{letter-spacing:-0.336000px;}
.ls1d{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.240000px;}
.ls1f{letter-spacing:-0.132000px;}
.ls24{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls7{letter-spacing:0.040800px;}
.ls23{letter-spacing:0.096000px;}
.ls28{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.192000px;}
.ls39{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.624000px;}
.ls31{letter-spacing:0.672000px;}
.ls38{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.912000px;}
.ls2{letter-spacing:9.264000px;}
.ls19{letter-spacing:75.597000px;}
.ls1c{letter-spacing:87.597000px;}
.ls13{letter-spacing:105.597000px;}
.ls17{letter-spacing:114.292200px;}
.ls12{letter-spacing:123.597000px;}
.ls10{letter-spacing:147.597000px;}
.ls18{letter-spacing:150.149400px;}
.ls14{letter-spacing:150.292800px;}
.lsd{letter-spacing:153.597600px;}
.lsb{letter-spacing:174.292800px;}
.lsc{letter-spacing:209.203800px;}
.ls1b{letter-spacing:240.768000px;}
.lsa{letter-spacing:261.597600px;}
.ls1a{letter-spacing:267.456000px;}
.ls16{letter-spacing:271.440000px;}
.ls6{letter-spacing:275.456400px;}
.ls15{letter-spacing:329.472000px;}
.ls11{letter-spacing:339.504000px;}
.lse{letter-spacing:377.808000px;}
.lsf{letter-spacing:404.496000px;}
.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;}
}
.wsc2{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.wsad{word-spacing:-14.472000px;}
.wsc7{word-spacing:-14.256000px;}
.wsc8{word-spacing:-13.968000px;}
.wsc9{word-spacing:-13.920000px;}
.wsc5{word-spacing:-13.488000px;}
.wsc4{word-spacing:-13.296000px;}
.wsc6{word-spacing:-13.104000px;}
.wsc3{word-spacing:-12.480000px;}
.ws32{word-spacing:-12.336000px;}
.wsca{word-spacing:-12.240000px;}
.ws2{word-spacing:-10.508400px;}
.ws33{word-spacing:-10.130400px;}
.wscb{word-spacing:-5.562000px;}
.ws96{word-spacing:-4.212000px;}
.ws103{word-spacing:-3.408000px;}
.wsf2{word-spacing:-2.976000px;}
.ws29{word-spacing:-2.970000px;}
.ws56{word-spacing:-2.916000px;}
.ws9a{word-spacing:-2.862000px;}
.ws90{word-spacing:-2.832000px;}
.ws8f{word-spacing:-2.784000px;}
.wsae{word-spacing:-2.700000px;}
.ws20{word-spacing:-2.646000px;}
.ws76{word-spacing:-2.592000px;}
.ws50{word-spacing:-2.538000px;}
.wsdb{word-spacing:-2.496000px;}
.ws2a{word-spacing:-2.430000px;}
.wsa3{word-spacing:-2.376000px;}
.wse7{word-spacing:-2.352000px;}
.wsa1{word-spacing:-2.322000px;}
.wsa0{word-spacing:-2.256000px;}
.ws5a{word-spacing:-1.998000px;}
.ws99{word-spacing:-1.944000px;}
.ws1f{word-spacing:-1.836000px;}
.ws36{word-spacing:-1.782000px;}
.wsa2{word-spacing:-1.620000px;}
.wse6{word-spacing:-1.584000px;}
.ws48{word-spacing:-1.566000px;}
.ws100{word-spacing:-1.536000px;}
.wsa5{word-spacing:-1.458000px;}
.wsc0{word-spacing:-1.350000px;}
.wsd8{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.134000px;}
.wsfd{word-spacing:-1.104000px;}
.wse{word-spacing:-1.080000px;}
.ws8c{word-spacing:-1.056000px;}
.ws60{word-spacing:-0.972000px;}
.wsbc{word-spacing:-0.864000px;}
.ws21{word-spacing:-0.810000px;}
.wsc1{word-spacing:-0.756000px;}
.wsf{word-spacing:-0.702000px;}
.wsdd{word-spacing:-0.672000px;}
.wsd9{word-spacing:-0.624000px;}
.ws14{word-spacing:-0.540000px;}
.wsde{word-spacing:-0.528000px;}
.ws2e{word-spacing:-0.480000px;}
.ws82{word-spacing:-0.324000px;}
.ws8d{word-spacing:-0.288000px;}
.wsa6{word-spacing:-0.270000px;}
.wse9{word-spacing:-0.192000px;}
.ws52{word-spacing:-0.108000px;}
.ws40{word-spacing:-0.054000px;}
.wse8{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.054000px;}
.wsfe{word-spacing:0.096000px;}
.wse1{word-spacing:0.144000px;}
.ws53{word-spacing:0.162000px;}
.wsda{word-spacing:0.240000px;}
.ws37{word-spacing:0.270000px;}
.wscd{word-spacing:0.324000px;}
.ws104{word-spacing:0.336000px;}
.ws4d{word-spacing:0.378000px;}
.ws11{word-spacing:0.432000px;}
.wsd6{word-spacing:0.480000px;}
.ws58{word-spacing:0.486000px;}
.ws5b{word-spacing:0.528000px;}
.ws5{word-spacing:0.540000px;}
.ws4e{word-spacing:0.594000px;}
.ws6{word-spacing:0.648000px;}
.ws79{word-spacing:0.702000px;}
.wsb7{word-spacing:0.756000px;}
.wsd0{word-spacing:0.768000px;}
.wsb3{word-spacing:0.810000px;}
.wscf{word-spacing:0.864000px;}
.ws24{word-spacing:0.918000px;}
.wsd5{word-spacing:1.008000px;}
.ws55{word-spacing:1.026000px;}
.wsfb{word-spacing:1.104000px;}
.wsf6{word-spacing:1.152000px;}
.ws9f{word-spacing:1.200000px;}
.ws95{word-spacing:1.242000px;}
.ws59{word-spacing:1.350000px;}
.ws44{word-spacing:1.404000px;}
.wsee{word-spacing:1.440000px;}
.wsb0{word-spacing:1.458000px;}
.wsed{word-spacing:1.536000px;}
.wsd3{word-spacing:1.584000px;}
.ws22{word-spacing:1.620000px;}
.wsec{word-spacing:1.632000px;}
.ws42{word-spacing:1.674000px;}
.wsbd{word-spacing:1.782000px;}
.wsf1{word-spacing:1.824000px;}
.wsd{word-spacing:1.890000px;}
.ws3f{word-spacing:1.944000px;}
.ws43{word-spacing:2.052000px;}
.ws7e{word-spacing:2.160000px;}
.wsd4{word-spacing:2.208000px;}
.ws9c{word-spacing:2.214000px;}
.ws45{word-spacing:2.268000px;}
.ws84{word-spacing:2.322000px;}
.ws19{word-spacing:2.376000px;}
.wsaf{word-spacing:2.430000px;}
.wsa7{word-spacing:2.484000px;}
.ws81{word-spacing:2.592000px;}
.wsba{word-spacing:2.646000px;}
.wse0{word-spacing:2.688000px;}
.wsef{word-spacing:2.736000px;}
.ws18{word-spacing:2.916000px;}
.wse3{word-spacing:2.928000px;}
.ws92{word-spacing:2.976000px;}
.ws54{word-spacing:3.024000px;}
.ws8{word-spacing:3.078000px;}
.ws1e{word-spacing:3.186000px;}
.wsd1{word-spacing:3.216000px;}
.ws1c{word-spacing:3.294000px;}
.ws34{word-spacing:3.348000px;}
.ws12{word-spacing:3.402000px;}
.ws1a{word-spacing:3.456000px;}
.ws38{word-spacing:3.510000px;}
.ws8e{word-spacing:3.552000px;}
.ws7{word-spacing:3.618000px;}
.ws10{word-spacing:3.672000px;}
.ws31{word-spacing:3.792000px;}
.ws77{word-spacing:3.888000px;}
.ws46{word-spacing:3.942000px;}
.ws85{word-spacing:4.050000px;}
.wsf7{word-spacing:4.128000px;}
.ws9e{word-spacing:4.212000px;}
.ws102{word-spacing:4.224000px;}
.wsf4{word-spacing:4.272000px;}
.ws7b{word-spacing:4.374000px;}
.ws15{word-spacing:4.428000px;}
.ws23{word-spacing:4.482000px;}
.ws98{word-spacing:4.536000px;}
.ws27{word-spacing:4.644000px;}
.ws49{word-spacing:4.752000px;}
.ws13{word-spacing:4.914000px;}
.wsdf{word-spacing:4.992000px;}
.ws7f{word-spacing:5.076000px;}
.wse4{word-spacing:5.136000px;}
.wsb8{word-spacing:5.184000px;}
.wsf3{word-spacing:5.280000px;}
.wsce{word-spacing:5.292000px;}
.ws47{word-spacing:5.346000px;}
.ws89{word-spacing:5.400000px;}
.wsff{word-spacing:5.424000px;}
.ws4f{word-spacing:5.616000px;}
.ws7d{word-spacing:5.670000px;}
.wsd2{word-spacing:5.712000px;}
.wsdc{word-spacing:5.808000px;}
.wsab{word-spacing:5.832000px;}
.ws41{word-spacing:5.940000px;}
.wsf9{word-spacing:5.952000px;}
.ws83{word-spacing:6.048000px;}
.wsfa{word-spacing:6.096000px;}
.ws17{word-spacing:6.102000px;}
.ws28{word-spacing:6.156000px;}
.wse5{word-spacing:6.384000px;}
.wsb9{word-spacing:6.480000px;}
.wsa8{word-spacing:6.588000px;}
.ws26{word-spacing:6.750000px;}
.wsaa{word-spacing:6.804000px;}
.ws3c{word-spacing:7.020000px;}
.ws9b{word-spacing:7.128000px;}
.wsfc{word-spacing:7.200000px;}
.wsac{word-spacing:7.236000px;}
.ws3e{word-spacing:7.398000px;}
.ws3d{word-spacing:7.614000px;}
.wsa4{word-spacing:7.776000px;}
.wsd7{word-spacing:7.872000px;}
.ws5e{word-spacing:7.938000px;}
.wseb{word-spacing:8.016000px;}
.ws5d{word-spacing:8.046000px;}
.ws101{word-spacing:8.064000px;}
.wsb5{word-spacing:8.100000px;}
.ws8a{word-spacing:8.154000px;}
.ws7c{word-spacing:8.208000px;}
.wsb{word-spacing:8.262000px;}
.wsb6{word-spacing:8.316000px;}
.ws51{word-spacing:8.748000px;}
.ws2d{word-spacing:8.784000px;}
.ws4c{word-spacing:8.910000px;}
.ws5c{word-spacing:9.018000px;}
.ws9d{word-spacing:9.072000px;}
.wscc{word-spacing:9.126000px;}
.ws2f{word-spacing:9.168000px;}
.wsf8{word-spacing:9.216000px;}
.wsbe{word-spacing:9.288000px;}
.ws35{word-spacing:9.396000px;}
.ws57{word-spacing:9.450000px;}
.wsf5{word-spacing:9.456000px;}
.ws97{word-spacing:9.666000px;}
.wsc{word-spacing:9.828000px;}
.wsf0{word-spacing:9.936000px;}
.wsb1{word-spacing:10.098000px;}
.wsbb{word-spacing:10.152000px;}
.ws3b{word-spacing:10.206000px;}
.ws25{word-spacing:10.260000px;}
.wsb2{word-spacing:10.368000px;}
.ws30{word-spacing:10.704000px;}
.ws61{word-spacing:10.746000px;}
.ws1d{word-spacing:10.854000px;}
.wse2{word-spacing:11.088000px;}
.wsa{word-spacing:11.124000px;}
.ws4b{word-spacing:11.178000px;}
.ws4a{word-spacing:11.286000px;}
.wsea{word-spacing:11.376000px;}
.ws7a{word-spacing:11.610000px;}
.ws80{word-spacing:11.664000px;}
.ws2b{word-spacing:11.988000px;}
.wsbf{word-spacing:12.096000px;}
.ws88{word-spacing:12.204000px;}
.ws3a{word-spacing:12.744000px;}
.ws39{word-spacing:13.716000px;}
.ws86{word-spacing:14.256000px;}
.ws78{word-spacing:14.310000px;}
.ws87{word-spacing:15.498000px;}
.wsa9{word-spacing:15.930000px;}
.wsb4{word-spacing:16.254000px;}
.ws91{word-spacing:16.848000px;}
.ws8b{word-spacing:19.548000px;}
.ws1b{word-spacing:20.466000px;}
.ws5f{word-spacing:21.708000px;}
.ws3{word-spacing:105.456000px;}
.ws72{word-spacing:168.844200px;}
.ws94{word-spacing:200.736000px;}
.ws2c{word-spacing:200.988000px;}
.ws75{word-spacing:262.752000px;}
.ws73{word-spacing:289.440000px;}
.ws71{word-spacing:337.776000px;}
.ws6d{word-spacing:369.895200px;}
.ws6f{word-spacing:377.863200px;}
.ws6e{word-spacing:385.831200px;}
.ws70{word-spacing:407.191200px;}
.ws6a{word-spacing:444.577800px;}
.ws6c{word-spacing:452.551200px;}
.ws69{word-spacing:452.553000px;}
.ws6b{word-spacing:460.519200px;}
.ws74{word-spacing:549.511200px;}
.ws62{word-spacing:566.421000px;}
.ws93{word-spacing:687.271800px;}
.ws68{word-spacing:819.024000px;}
.ws63{word-spacing:827.088000px;}
.ws67{word-spacing:861.744000px;}
.ws66{word-spacing:901.776000px;}
.ws64{word-spacing:909.744000px;}
.ws65{word-spacing:944.400000px;}
.ws1{word-spacing:1242.054000px;}
._15{margin-left:-29.952000px;}
._9{margin-left:-28.404000px;}
._c{margin-left:-20.066400px;}
._5{margin-left:-6.982200px;}
._7{margin-left:-5.567400px;}
._22{margin-left:-4.498200px;}
._2{margin-left:-3.461400px;}
._0{margin-left:-2.160000px;}
._4{margin-left:-1.101600px;}
._a{width:1.177200px;}
._b{width:3.048600px;}
._8{width:5.016600px;}
._3{width:6.112800px;}
._6{width:7.360200px;}
._d{width:9.312000px;}
._27{width:10.542600px;}
._20{width:11.728800px;}
._1{width:12.754800px;}
._2b{width:26.758800px;}
._29{width:28.173600px;}
._25{width:29.350800px;}
._28{width:31.053600px;}
._26{width:32.398200px;}
._2a{width:34.558200px;}
._f{width:38.070000px;}
._23{width:54.624000px;}
._21{width:56.614800px;}
._24{width:59.591400px;}
._12{width:98.208000px;}
._13{width:117.456000px;}
._1b{width:196.573200px;}
._14{width:199.111200px;}
._1c{width:201.905400px;}
._17{width:264.154800px;}
._18{width:285.409800px;}
._19{width:341.439000px;}
._1f{width:351.223800px;}
._1a{width:357.456000px;}
._16{width:400.464000px;}
._1d{width:455.335800px;}
._1e{width:465.895800px;}
._11{width:656.928000px;}
._10{width:943.429800px;}
._e{width:1361.538600px;}
.fc8{color:rgb(35,73,74);}
.fc7{color:rgb(109,167,162);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:17.301750px;}
.y3e{bottom:41.074650px;}
.y44{bottom:46.967550px;}
.y45{bottom:47.167950px;}
.y97{bottom:47.171700px;}
.y96{bottom:47.916000px;}
.y3d{bottom:59.074650px;}
.y42{bottom:59.194650px;}
.y3c{bottom:77.074650px;}
.y41{bottom:77.194650px;}
.y171{bottom:80.829900px;}
.y19e{bottom:81.214350px;}
.yfa{bottom:85.824000px;}
.ye1{bottom:86.857950px;}
.y95{bottom:92.268750px;}
.y13e{bottom:92.276250px;}
.y73{bottom:92.292750px;}
.y121{bottom:92.301750px;}
.y3b{bottom:95.074650px;}
.y40{bottom:95.194650px;}
.y170{bottom:97.329900px;}
.y19d{bottom:97.714350px;}
.yf9{bottom:102.324000px;}
.ye0{bottom:108.686400px;}
.y13d{bottom:111.027750px;}
.y3a{bottom:113.074650px;}
.y3f{bottom:113.194650px;}
.y16f{bottom:113.829900px;}
.y19c{bottom:114.214350px;}
.y94{bottom:129.771750px;}
.y13c{bottom:129.779250px;}
.y120{bottom:129.785250px;}
.y72{bottom:129.795750px;}
.y16e{bottom:130.329900px;}
.ydf{bottom:130.514700px;}
.y19b{bottom:130.714350px;}
.y16d{bottom:146.829900px;}
.y19a{bottom:147.214350px;}
.y13b{bottom:148.530750px;}
.y11f{bottom:148.536750px;}
.y71{bottom:148.547250px;}
.yde{bottom:152.343450px;}
.y30{bottom:159.373050px;}
.y16c{bottom:163.329900px;}
.y199{bottom:163.714350px;}
.y93{bottom:167.274750px;}
.y13a{bottom:167.282250px;}
.y11e{bottom:167.288250px;}
.y70{bottom:167.298750px;}
.ydd{bottom:173.079450px;}
.y16b{bottom:179.829900px;}
.y198{bottom:180.214350px;}
.y139{bottom:186.033750px;}
.y11d{bottom:186.039750px;}
.y6f{bottom:186.050250px;}
.ydc{bottom:193.815450px;}
.y16a{bottom:196.329900px;}
.y197{bottom:196.714350px;}
.y35{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.y92{bottom:204.777750px;}
.y138{bottom:204.785250px;}
.y11c{bottom:204.791250px;}
.y6e{bottom:204.801750px;}
.ydb{bottom:210.315450px;}
.y169{bottom:212.829900px;}
.y196{bottom:213.214350px;}
.y34{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y91{bottom:223.529250px;}
.y11b{bottom:223.542750px;}
.y168{bottom:229.329900px;}
.y195{bottom:229.714350px;}
.y33{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y90{bottom:242.280750px;}
.y137{bottom:242.288250px;}
.y6d{bottom:242.292750px;}
.y11a{bottom:242.294250px;}
.yb5{bottom:242.301750px;}
.y167{bottom:245.829900px;}
.y194{bottom:246.214350px;}
.y32{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y8f{bottom:261.032250px;}
.y136{bottom:261.039750px;}
.y6c{bottom:261.044250px;}
.y119{bottom:261.045750px;}
.y166{bottom:262.329900px;}
.y193{bottom:262.714350px;}
.yda{bottom:265.430250px;}
.y31{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y165{bottom:278.829900px;}
.y192{bottom:279.214350px;}
.y8e{bottom:279.783750px;}
.y135{bottom:279.791250px;}
.y6b{bottom:279.795750px;}
.y118{bottom:279.797250px;}
.yd9{bottom:281.930250px;}
.y164{bottom:295.329900px;}
.y191{bottom:295.714350px;}
.yd8{bottom:298.430250px;}
.yb4{bottom:298.532250px;}
.y8d{bottom:298.535250px;}
.y134{bottom:298.542750px;}
.y6a{bottom:298.547250px;}
.y117{bottom:298.548750px;}
.y39{bottom:309.273450px;}
.y163{bottom:311.829900px;}
.y190{bottom:312.214350px;}
.yd7{bottom:314.930250px;}
.yb3{bottom:317.283750px;}
.y8c{bottom:317.286750px;}
.y133{bottom:317.294250px;}
.y69{bottom:317.298750px;}
.y116{bottom:317.300250px;}
.y38{bottom:325.473450px;}
.y162{bottom:328.329900px;}
.y18f{bottom:328.714350px;}
.yb2{bottom:336.035250px;}
.y8b{bottom:336.038250px;}
.y68{bottom:336.050250px;}
.y115{bottom:336.051750px;}
.yd6{bottom:337.560900px;}
.y161{bottom:344.829900px;}
.y18e{bottom:345.214350px;}
.yb1{bottom:354.786750px;}
.y132{bottom:354.797250px;}
.y67{bottom:354.801750px;}
.yd5{bottom:360.995550px;}
.y160{bottom:361.329900px;}
.y18d{bottom:361.714350px;}
.y114{bottom:373.530750px;}
.yb0{bottom:373.538250px;}
.y8a{bottom:373.541250px;}
.y131{bottom:373.548750px;}
.y15f{bottom:377.829900px;}
.y18c{bottom:378.214350px;}
.yd4{bottom:384.430200px;}
.y113{bottom:392.282250px;}
.yaf{bottom:392.289750px;}
.y66{bottom:392.292750px;}
.y130{bottom:392.300250px;}
.y15e{bottom:394.329900px;}
.y18b{bottom:394.714350px;}
.y2f{bottom:397.474800px;}
.yd3{bottom:407.864850px;}
.y15d{bottom:410.829900px;}
.y112{bottom:411.033750px;}
.yae{bottom:411.041250px;}
.y65{bottom:411.044250px;}
.y12f{bottom:411.051750px;}
.y18a{bottom:411.214350px;}
.y2e{bottom:416.968800px;}
.yf8{bottom:421.068000px;}
.y15c{bottom:427.329900px;}
.y189{bottom:427.714350px;}
.y111{bottom:429.785250px;}
.y64{bottom:429.795750px;}
.yd2{bottom:431.299500px;}
.y2d{bottom:431.968800px;}
.y2c{bottom:442.474800px;}
.y15b{bottom:443.829900px;}
.y188{bottom:444.214350px;}
.y12e{bottom:448.526250px;}
.y110{bottom:448.536750px;}
.yad{bottom:448.544250px;}
.y63{bottom:448.547250px;}
.yd1{bottom:454.734300px;}
.y15a{bottom:460.329900px;}
.y187{bottom:460.714350px;}
.y2b{bottom:461.968800px;}
.y12d{bottom:467.277750px;}
.y10f{bottom:467.288250px;}
.yac{bottom:467.295750px;}
.y62{bottom:467.298750px;}
.yf7{bottom:469.872300px;}
.y159{bottom:476.829900px;}
.y186{bottom:477.214350px;}
.yd0{bottom:478.168950px;}
.y12c{bottom:486.029250px;}
.y10e{bottom:486.039750px;}
.yab{bottom:486.047250px;}
.y61{bottom:486.050250px;}
.yf6{bottom:491.700750px;}
.y158{bottom:493.329900px;}
.y185{bottom:493.714350px;}
.y21{bottom:498.763950px;}
.ycf{bottom:501.603600px;}
.y12b{bottom:504.780750px;}
.y10d{bottom:504.791250px;}
.yaa{bottom:504.798750px;}
.y60{bottom:504.801750px;}
.y157{bottom:509.829900px;}
.y184{bottom:510.214350px;}
.yf5{bottom:513.529050px;}
.y20{bottom:513.762450px;}
.y12a{bottom:523.532250px;}
.y10c{bottom:523.542750px;}
.ya9{bottom:523.550250px;}
.yce{bottom:525.039450px;}
.y156{bottom:526.329900px;}
.y183{bottom:526.714350px;}
.y1f{bottom:528.760950px;}
.yf4{bottom:535.357500px;}
.y129{bottom:542.283750px;}
.y5f{bottom:542.292750px;}
.ya8{bottom:542.301750px;}
.y89{bottom:542.307750px;}
.y155{bottom:542.829900px;}
.y182{bottom:543.214350px;}
.y1e{bottom:543.759450px;}
.ycd{bottom:546.579450px;}
.yf3{bottom:557.185800px;}
.y1d{bottom:558.757950px;}
.y154{bottom:559.329900px;}
.y181{bottom:559.714350px;}
.y128{bottom:561.035250px;}
.y5e{bottom:561.044250px;}
.y10b{bottom:561.045750px;}
.y88{bottom:561.051750px;}
.ycc{bottom:567.315450px;}
.y1c{bottom:573.756450px;}
.y153{bottom:575.829900px;}
.y180{bottom:576.214350px;}
.yf2{bottom:579.014250px;}
.y127{bottom:579.786750px;}
.y104{bottom:579.789750px;}
.y5d{bottom:579.795750px;}
.y10a{bottom:579.797250px;}
.ya7{bottom:579.801750px;}
.ycb{bottom:583.815450px;}
.y1b{bottom:588.754950px;}
.y152{bottom:592.329900px;}
.y17f{bottom:592.714350px;}
.y126{bottom:598.538250px;}
.y103{bottom:598.541250px;}
.y5c{bottom:598.547250px;}
.y109{bottom:598.548750px;}
.yf1{bottom:600.842850px;}
.y1a{bottom:603.753450px;}
.y151{bottom:608.829900px;}
.y17e{bottom:609.214350px;}
.y87{bottom:617.283750px;}
.y125{bottom:617.289750px;}
.y102{bottom:617.292750px;}
.y5b{bottom:617.298750px;}
.y108{bottom:617.300250px;}
.y19{bottom:618.751950px;}
.yf0{bottom:621.578850px;}
.y150{bottom:625.329900px;}
.y17d{bottom:625.714350px;}
.y18{bottom:633.750450px;}
.ybf{bottom:636.032250px;}
.y86{bottom:636.035250px;}
.y124{bottom:636.041250px;}
.y101{bottom:636.044250px;}
.ya6{bottom:636.045750px;}
.y5a{bottom:636.050250px;}
.y14f{bottom:641.829900px;}
.y17c{bottom:642.214350px;}
.yef{bottom:642.314850px;}
.y17{bottom:648.748950px;}
.ybe{bottom:654.783750px;}
.y85{bottom:654.786750px;}
.y123{bottom:654.792750px;}
.y100{bottom:654.795750px;}
.ya5{bottom:654.797250px;}
.y59{bottom:654.801750px;}
.y14e{bottom:658.329900px;}
.y17b{bottom:658.714350px;}
.yee{bottom:658.814850px;}
.y16{bottom:663.747450px;}
.y84{bottom:673.538250px;}
.y122{bottom:673.544250px;}
.yff{bottom:673.547250px;}
.ya4{bottom:673.548750px;}
.y14d{bottom:674.829900px;}
.y17a{bottom:675.214350px;}
.y15{bottom:678.745950px;}
.y14c{bottom:691.329900px;}
.y179{bottom:691.714350px;}
.ybd{bottom:692.286750px;}
.y83{bottom:692.289750px;}
.y58{bottom:692.295750px;}
.yfe{bottom:692.298750px;}
.ya3{bottom:692.300250px;}
.y14{bottom:693.744450px;}
.y14b{bottom:707.829900px;}
.y178{bottom:708.214350px;}
.y13{bottom:708.742950px;}
.yed{bottom:711.021750px;}
.ybc{bottom:711.038250px;}
.y82{bottom:711.041250px;}
.y57{bottom:711.047250px;}
.yfd{bottom:711.050250px;}
.ya2{bottom:711.051750px;}
.y12{bottom:723.741450px;}
.y14a{bottom:724.329900px;}
.y177{bottom:724.714350px;}
.yec{bottom:729.773250px;}
.ybb{bottom:729.789750px;}
.y81{bottom:729.792750px;}
.y56{bottom:729.798750px;}
.yfc{bottom:729.801750px;}
.y11{bottom:738.739950px;}
.y149{bottom:740.829900px;}
.y176{bottom:741.214350px;}
.yeb{bottom:748.524750px;}
.yba{bottom:748.541250px;}
.y80{bottom:748.544250px;}
.y55{bottom:748.550250px;}
.ya1{bottom:748.551750px;}
.y10{bottom:753.738450px;}
.y148{bottom:757.329900px;}
.y175{bottom:757.714350px;}
.yea{bottom:767.276250px;}
.yb9{bottom:767.292750px;}
.y54{bottom:767.294250px;}
.y7f{bottom:767.295750px;}
.yfb{bottom:767.301750px;}
.yf{bottom:768.736950px;}
.y147{bottom:773.829900px;}
.y174{bottom:774.214350px;}
.y107{bottom:779.565450px;}
.ye{bottom:783.735450px;}
.ye9{bottom:786.027750px;}
.yb8{bottom:786.044250px;}
.y53{bottom:786.045750px;}
.y7e{bottom:786.047250px;}
.y173{bottom:790.714350px;}
.y106{bottom:796.065450px;}
.yd{bottom:798.733950px;}
.yb7{bottom:804.795750px;}
.y52{bottom:804.797250px;}
.y7d{bottom:804.798750px;}
.ya0{bottom:804.800250px;}
.y146{bottom:806.829900px;}
.y172{bottom:807.214350px;}
.yc{bottom:813.732450px;}
.ye8{bottom:823.530750px;}
.yb6{bottom:823.547250px;}
.y51{bottom:823.548750px;}
.y7c{bottom:823.550250px;}
.y9f{bottom:823.551750px;}
.yb{bottom:828.730950px;}
.ye7{bottom:842.282250px;}
.y50{bottom:842.300250px;}
.y7b{bottom:842.301750px;}
.ya{bottom:843.729450px;}
.y9{bottom:858.727950px;}
.ye6{bottom:861.033750px;}
.y4f{bottom:861.051750px;}
.y8{bottom:873.726450px;}
.ye5{bottom:879.785250px;}
.y140{bottom:879.788250px;}
.y7a{bottom:879.801750px;}
.y145{bottom:880.551750px;}
.yca{bottom:885.848700px;}
.y7{bottom:888.724950px;}
.y144{bottom:897.051750px;}
.ye4{bottom:898.536750px;}
.y13f{bottom:898.539750px;}
.y4e{bottom:898.547250px;}
.y6{bottom:903.723450px;}
.yc9{bottom:906.584700px;}
.y143{bottom:913.551750px;}
.y9e{bottom:917.288250px;}
.y4d{bottom:917.298750px;}
.y22{bottom:923.289300px;}
.yc8{bottom:927.320700px;}
.y142{bottom:930.051750px;}
.y9d{bottom:936.039750px;}
.y79{bottom:936.042750px;}
.y4c{bottom:936.050250px;}
.y141{bottom:946.551750px;}
.yc7{bottom:948.056700px;}
.ye3{bottom:954.791250px;}
.y78{bottom:954.794250px;}
.y4b{bottom:954.801750px;}
.y2a{bottom:965.976300px;}
.yc6{bottom:968.792700px;}
.y9c{bottom:973.542750px;}
.y77{bottom:973.545750px;}
.y29{bottom:982.473300px;}
.yc5{bottom:989.528700px;}
.y9b{bottom:992.294250px;}
.y4a{bottom:992.297250px;}
.yc4{bottom:1010.264700px;}
.y9a{bottom:1011.045750px;}
.y49{bottom:1011.048750px;}
.y37{bottom:1021.700700px;}
.y99{bottom:1029.797250px;}
.y48{bottom:1029.800250px;}
.yc3{bottom:1032.093450px;}
.y36{bottom:1043.300700px;}
.y76{bottom:1048.538250px;}
.y98{bottom:1048.548750px;}
.y47{bottom:1048.551750px;}
.yc2{bottom:1052.829450px;}
.y75{bottom:1067.289750px;}
.ye2{bottom:1067.300250px;}
.y25{bottom:1071.552600px;}
.yc1{bottom:1073.565450px;}
.y28{bottom:1082.937000px;}
.y74{bottom:1086.041250px;}
.y46{bottom:1086.051750px;}
.yc0{bottom:1090.065450px;}
.y105{bottom:1096.065450px;}
.y27{bottom:1097.937000px;}
.y24{bottom:1103.952600px;}
.y26{bottom:1112.937000px;}
.y23{bottom:1136.352600px;}
.ha{height:33.887109px;}
.h2{height:34.945312px;}
.he{height:35.808000px;}
.hd{height:36.336000px;}
.hf{height:37.652344px;}
.h3{height:43.031250px;}
.h19{height:44.039156px;}
.h1f{height:44.039756px;}
.h1e{height:44.040356px;}
.h1d{height:44.040956px;}
.h1a{height:44.042756px;}
.h1c{height:44.046956px;}
.h1b{height:44.047556px;}
.h7{height:44.760000px;}
.h5{height:47.244141px;}
.h4{height:48.410156px;}
.h10{height:48.455756px;}
.h18{height:51.387356px;}
.h9{height:51.857109px;}
.hc{height:51.868509px;}
.h8{height:51.869109px;}
.h12{height:51.887109px;}
.h14{height:51.893109px;}
.h13{height:51.899109px;}
.h15{height:51.905109px;}
.h20{height:51.917109px;}
.h16{height:51.923109px;}
.h22{height:51.935109px;}
.h17{height:51.942000px;}
.h21{height:51.953109px;}
.h23{height:51.971109px;}
.hb{height:54.504000px;}
.h11{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x14{left:88.365900px;}
.x15{left:89.559000px;}
.x1d{left:95.853750px;}
.x1a{left:103.034850px;}
.x16{left:107.559000px;}
.x1e{left:116.291250px;}
.x12{left:139.339200px;}
.x6{left:270.660900px;}
.x10{left:274.038600px;}
.xf{left:298.518600px;}
.xe{left:322.290600px;}
.xb{left:324.684900px;}
.xa{left:327.348900px;}
.x3{left:335.767500px;}
.x8{left:338.688900px;}
.x7{left:356.676900px;}
.x11{left:367.062600px;}
.x9{left:376.692900px;}
.xc{left:396.097350px;}
.x5{left:432.427500px;}
.xd{left:436.273350px;}
.x19{left:451.325100px;}
.x13{left:455.592300px;}
.x4{left:463.369500px;}
.x1{left:469.770150px;}
.x17{left:474.097500px;}
.x1c{left:476.404950px;}
.x1b{left:487.843350px;}
.x18{left:492.094500px;}
.x1f{left:501.094500px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v5{vertical-align:-3.885333pt;}
.v3{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v1{vertical-align:15.984000pt;}
.ls29{letter-spacing:-4.437333pt;}
.ls34{letter-spacing:-3.797333pt;}
.ls2c{letter-spacing:-3.157333pt;}
.ls2a{letter-spacing:-2.389333pt;}
.ls32{letter-spacing:-1.621333pt;}
.ls2f{letter-spacing:-1.450667pt;}
.ls20{letter-spacing:-1.408000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls33{letter-spacing:-1.194667pt;}
.ls36{letter-spacing:-1.024000pt;}
.ls37{letter-spacing:-0.981333pt;}
.ls21{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls3a{letter-spacing:-0.298667pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls24{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls7{letter-spacing:0.036267pt;}
.ls23{letter-spacing:0.085333pt;}
.ls28{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.170667pt;}
.ls39{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.554667pt;}
.ls31{letter-spacing:0.597333pt;}
.ls38{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.810667pt;}
.ls2{letter-spacing:8.234667pt;}
.ls19{letter-spacing:67.197333pt;}
.ls1c{letter-spacing:77.864000pt;}
.ls13{letter-spacing:93.864000pt;}
.ls17{letter-spacing:101.593067pt;}
.ls12{letter-spacing:109.864000pt;}
.ls10{letter-spacing:131.197333pt;}
.ls18{letter-spacing:133.466133pt;}
.ls14{letter-spacing:133.593600pt;}
.lsd{letter-spacing:136.531200pt;}
.lsb{letter-spacing:154.926933pt;}
.lsc{letter-spacing:185.958933pt;}
.ls1b{letter-spacing:214.016000pt;}
.lsa{letter-spacing:232.531200pt;}
.ls1a{letter-spacing:237.738667pt;}
.ls16{letter-spacing:241.280000pt;}
.ls6{letter-spacing:244.850133pt;}
.ls15{letter-spacing:292.864000pt;}
.ls11{letter-spacing:301.781333pt;}
.lse{letter-spacing:335.829333pt;}
.lsf{letter-spacing:359.552000pt;}
.wsc2{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.wsad{word-spacing:-12.864000pt;}
.wsc7{word-spacing:-12.672000pt;}
.wsc8{word-spacing:-12.416000pt;}
.wsc9{word-spacing:-12.373333pt;}
.wsc5{word-spacing:-11.989333pt;}
.wsc4{word-spacing:-11.818667pt;}
.wsc6{word-spacing:-11.648000pt;}
.wsc3{word-spacing:-11.093333pt;}
.ws32{word-spacing:-10.965333pt;}
.wsca{word-spacing:-10.880000pt;}
.ws2{word-spacing:-9.340800pt;}
.ws33{word-spacing:-9.004800pt;}
.wscb{word-spacing:-4.944000pt;}
.ws96{word-spacing:-3.744000pt;}
.ws103{word-spacing:-3.029333pt;}
.wsf2{word-spacing:-2.645333pt;}
.ws29{word-spacing:-2.640000pt;}
.ws56{word-spacing:-2.592000pt;}
.ws9a{word-spacing:-2.544000pt;}
.ws90{word-spacing:-2.517333pt;}
.ws8f{word-spacing:-2.474667pt;}
.wsae{word-spacing:-2.400000pt;}
.ws20{word-spacing:-2.352000pt;}
.ws76{word-spacing:-2.304000pt;}
.ws50{word-spacing:-2.256000pt;}
.wsdb{word-spacing:-2.218667pt;}
.ws2a{word-spacing:-2.160000pt;}
.wsa3{word-spacing:-2.112000pt;}
.wse7{word-spacing:-2.090667pt;}
.wsa1{word-spacing:-2.064000pt;}
.wsa0{word-spacing:-2.005333pt;}
.ws5a{word-spacing:-1.776000pt;}
.ws99{word-spacing:-1.728000pt;}
.ws1f{word-spacing:-1.632000pt;}
.ws36{word-spacing:-1.584000pt;}
.wsa2{word-spacing:-1.440000pt;}
.wse6{word-spacing:-1.408000pt;}
.ws48{word-spacing:-1.392000pt;}
.ws100{word-spacing:-1.365333pt;}
.wsa5{word-spacing:-1.296000pt;}
.wsc0{word-spacing:-1.200000pt;}
.wsd8{word-spacing:-1.152000pt;}
.ws16{word-spacing:-1.008000pt;}
.wsfd{word-spacing:-0.981333pt;}
.wse{word-spacing:-0.960000pt;}
.ws8c{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.864000pt;}
.wsbc{word-spacing:-0.768000pt;}
.ws21{word-spacing:-0.720000pt;}
.wsc1{word-spacing:-0.672000pt;}
.wsf{word-spacing:-0.624000pt;}
.wsdd{word-spacing:-0.597333pt;}
.wsd9{word-spacing:-0.554667pt;}
.ws14{word-spacing:-0.480000pt;}
.wsde{word-spacing:-0.469333pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws82{word-spacing:-0.288000pt;}
.ws8d{word-spacing:-0.256000pt;}
.wsa6{word-spacing:-0.240000pt;}
.wse9{word-spacing:-0.170667pt;}
.ws52{word-spacing:-0.096000pt;}
.ws40{word-spacing:-0.048000pt;}
.wse8{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.048000pt;}
.wsfe{word-spacing:0.085333pt;}
.wse1{word-spacing:0.128000pt;}
.ws53{word-spacing:0.144000pt;}
.wsda{word-spacing:0.213333pt;}
.ws37{word-spacing:0.240000pt;}
.wscd{word-spacing:0.288000pt;}
.ws104{word-spacing:0.298667pt;}
.ws4d{word-spacing:0.336000pt;}
.ws11{word-spacing:0.384000pt;}
.wsd6{word-spacing:0.426667pt;}
.ws58{word-spacing:0.432000pt;}
.ws5b{word-spacing:0.469333pt;}
.ws5{word-spacing:0.480000pt;}
.ws4e{word-spacing:0.528000pt;}
.ws6{word-spacing:0.576000pt;}
.ws79{word-spacing:0.624000pt;}
.wsb7{word-spacing:0.672000pt;}
.wsd0{word-spacing:0.682667pt;}
.wsb3{word-spacing:0.720000pt;}
.wscf{word-spacing:0.768000pt;}
.ws24{word-spacing:0.816000pt;}
.wsd5{word-spacing:0.896000pt;}
.ws55{word-spacing:0.912000pt;}
.wsfb{word-spacing:0.981333pt;}
.wsf6{word-spacing:1.024000pt;}
.ws9f{word-spacing:1.066667pt;}
.ws95{word-spacing:1.104000pt;}
.ws59{word-spacing:1.200000pt;}
.ws44{word-spacing:1.248000pt;}
.wsee{word-spacing:1.280000pt;}
.wsb0{word-spacing:1.296000pt;}
.wsed{word-spacing:1.365333pt;}
.wsd3{word-spacing:1.408000pt;}
.ws22{word-spacing:1.440000pt;}
.wsec{word-spacing:1.450667pt;}
.ws42{word-spacing:1.488000pt;}
.wsbd{word-spacing:1.584000pt;}
.wsf1{word-spacing:1.621333pt;}
.wsd{word-spacing:1.680000pt;}
.ws3f{word-spacing:1.728000pt;}
.ws43{word-spacing:1.824000pt;}
.ws7e{word-spacing:1.920000pt;}
.wsd4{word-spacing:1.962667pt;}
.ws9c{word-spacing:1.968000pt;}
.ws45{word-spacing:2.016000pt;}
.ws84{word-spacing:2.064000pt;}
.ws19{word-spacing:2.112000pt;}
.wsaf{word-spacing:2.160000pt;}
.wsa7{word-spacing:2.208000pt;}
.ws81{word-spacing:2.304000pt;}
.wsba{word-spacing:2.352000pt;}
.wse0{word-spacing:2.389333pt;}
.wsef{word-spacing:2.432000pt;}
.ws18{word-spacing:2.592000pt;}
.wse3{word-spacing:2.602667pt;}
.ws92{word-spacing:2.645333pt;}
.ws54{word-spacing:2.688000pt;}
.ws8{word-spacing:2.736000pt;}
.ws1e{word-spacing:2.832000pt;}
.wsd1{word-spacing:2.858667pt;}
.ws1c{word-spacing:2.928000pt;}
.ws34{word-spacing:2.976000pt;}
.ws12{word-spacing:3.024000pt;}
.ws1a{word-spacing:3.072000pt;}
.ws38{word-spacing:3.120000pt;}
.ws8e{word-spacing:3.157333pt;}
.ws7{word-spacing:3.216000pt;}
.ws10{word-spacing:3.264000pt;}
.ws31{word-spacing:3.370667pt;}
.ws77{word-spacing:3.456000pt;}
.ws46{word-spacing:3.504000pt;}
.ws85{word-spacing:3.600000pt;}
.wsf7{word-spacing:3.669333pt;}
.ws9e{word-spacing:3.744000pt;}
.ws102{word-spacing:3.754667pt;}
.wsf4{word-spacing:3.797333pt;}
.ws7b{word-spacing:3.888000pt;}
.ws15{word-spacing:3.936000pt;}
.ws23{word-spacing:3.984000pt;}
.ws98{word-spacing:4.032000pt;}
.ws27{word-spacing:4.128000pt;}
.ws49{word-spacing:4.224000pt;}
.ws13{word-spacing:4.368000pt;}
.wsdf{word-spacing:4.437333pt;}
.ws7f{word-spacing:4.512000pt;}
.wse4{word-spacing:4.565333pt;}
.wsb8{word-spacing:4.608000pt;}
.wsf3{word-spacing:4.693333pt;}
.wsce{word-spacing:4.704000pt;}
.ws47{word-spacing:4.752000pt;}
.ws89{word-spacing:4.800000pt;}
.wsff{word-spacing:4.821333pt;}
.ws4f{word-spacing:4.992000pt;}
.ws7d{word-spacing:5.040000pt;}
.wsd2{word-spacing:5.077333pt;}
.wsdc{word-spacing:5.162667pt;}
.wsab{word-spacing:5.184000pt;}
.ws41{word-spacing:5.280000pt;}
.wsf9{word-spacing:5.290667pt;}
.ws83{word-spacing:5.376000pt;}
.wsfa{word-spacing:5.418667pt;}
.ws17{word-spacing:5.424000pt;}
.ws28{word-spacing:5.472000pt;}
.wse5{word-spacing:5.674667pt;}
.wsb9{word-spacing:5.760000pt;}
.wsa8{word-spacing:5.856000pt;}
.ws26{word-spacing:6.000000pt;}
.wsaa{word-spacing:6.048000pt;}
.ws3c{word-spacing:6.240000pt;}
.ws9b{word-spacing:6.336000pt;}
.wsfc{word-spacing:6.400000pt;}
.wsac{word-spacing:6.432000pt;}
.ws3e{word-spacing:6.576000pt;}
.ws3d{word-spacing:6.768000pt;}
.wsa4{word-spacing:6.912000pt;}
.wsd7{word-spacing:6.997333pt;}
.ws5e{word-spacing:7.056000pt;}
.wseb{word-spacing:7.125333pt;}
.ws5d{word-spacing:7.152000pt;}
.ws101{word-spacing:7.168000pt;}
.wsb5{word-spacing:7.200000pt;}
.ws8a{word-spacing:7.248000pt;}
.ws7c{word-spacing:7.296000pt;}
.wsb{word-spacing:7.344000pt;}
.wsb6{word-spacing:7.392000pt;}
.ws51{word-spacing:7.776000pt;}
.ws2d{word-spacing:7.808000pt;}
.ws4c{word-spacing:7.920000pt;}
.ws5c{word-spacing:8.016000pt;}
.ws9d{word-spacing:8.064000pt;}
.wscc{word-spacing:8.112000pt;}
.ws2f{word-spacing:8.149333pt;}
.wsf8{word-spacing:8.192000pt;}
.wsbe{word-spacing:8.256000pt;}
.ws35{word-spacing:8.352000pt;}
.ws57{word-spacing:8.400000pt;}
.wsf5{word-spacing:8.405333pt;}
.ws97{word-spacing:8.592000pt;}
.wsc{word-spacing:8.736000pt;}
.wsf0{word-spacing:8.832000pt;}
.wsb1{word-spacing:8.976000pt;}
.wsbb{word-spacing:9.024000pt;}
.ws3b{word-spacing:9.072000pt;}
.ws25{word-spacing:9.120000pt;}
.wsb2{word-spacing:9.216000pt;}
.ws30{word-spacing:9.514667pt;}
.ws61{word-spacing:9.552000pt;}
.ws1d{word-spacing:9.648000pt;}
.wse2{word-spacing:9.856000pt;}
.wsa{word-spacing:9.888000pt;}
.ws4b{word-spacing:9.936000pt;}
.ws4a{word-spacing:10.032000pt;}
.wsea{word-spacing:10.112000pt;}
.ws7a{word-spacing:10.320000pt;}
.ws80{word-spacing:10.368000pt;}
.ws2b{word-spacing:10.656000pt;}
.wsbf{word-spacing:10.752000pt;}
.ws88{word-spacing:10.848000pt;}
.ws3a{word-spacing:11.328000pt;}
.ws39{word-spacing:12.192000pt;}
.ws86{word-spacing:12.672000pt;}
.ws78{word-spacing:12.720000pt;}
.ws87{word-spacing:13.776000pt;}
.wsa9{word-spacing:14.160000pt;}
.wsb4{word-spacing:14.448000pt;}
.ws91{word-spacing:14.976000pt;}
.ws8b{word-spacing:17.376000pt;}
.ws1b{word-spacing:18.192000pt;}
.ws5f{word-spacing:19.296000pt;}
.ws3{word-spacing:93.738667pt;}
.ws72{word-spacing:150.083733pt;}
.ws94{word-spacing:178.432000pt;}
.ws2c{word-spacing:178.656000pt;}
.ws75{word-spacing:233.557333pt;}
.ws73{word-spacing:257.280000pt;}
.ws71{word-spacing:300.245333pt;}
.ws6d{word-spacing:328.795733pt;}
.ws6f{word-spacing:335.878400pt;}
.ws6e{word-spacing:342.961067pt;}
.ws70{word-spacing:361.947733pt;}
.ws6a{word-spacing:395.180267pt;}
.ws6c{word-spacing:402.267733pt;}
.ws69{word-spacing:402.269333pt;}
.ws6b{word-spacing:409.350400pt;}
.ws74{word-spacing:488.454400pt;}
.ws62{word-spacing:503.485333pt;}
.ws93{word-spacing:610.908267pt;}
.ws68{word-spacing:728.021333pt;}
.ws63{word-spacing:735.189333pt;}
.ws67{word-spacing:765.994667pt;}
.ws66{word-spacing:801.578667pt;}
.ws64{word-spacing:808.661333pt;}
.ws65{word-spacing:839.466667pt;}
.ws1{word-spacing:1104.048000pt;}
._15{margin-left:-26.624000pt;}
._9{margin-left:-25.248000pt;}
._c{margin-left:-17.836800pt;}
._5{margin-left:-6.206400pt;}
._7{margin-left:-4.948800pt;}
._22{margin-left:-3.998400pt;}
._2{margin-left:-3.076800pt;}
._0{margin-left:-1.920000pt;}
._4{margin-left:-0.979200pt;}
._a{width:1.046400pt;}
._b{width:2.709867pt;}
._8{width:4.459200pt;}
._3{width:5.433600pt;}
._6{width:6.542400pt;}
._d{width:8.277333pt;}
._27{width:9.371200pt;}
._20{width:10.425600pt;}
._1{width:11.337600pt;}
._2b{width:23.785600pt;}
._29{width:25.043200pt;}
._25{width:26.089600pt;}
._28{width:27.603200pt;}
._26{width:28.798400pt;}
._2a{width:30.718400pt;}
._f{width:33.840000pt;}
._23{width:48.554667pt;}
._21{width:50.324267pt;}
._24{width:52.970133pt;}
._12{width:87.296000pt;}
._13{width:104.405333pt;}
._1b{width:174.731733pt;}
._14{width:176.987733pt;}
._1c{width:179.471467pt;}
._17{width:234.804267pt;}
._18{width:253.697600pt;}
._19{width:303.501333pt;}
._1f{width:312.198933pt;}
._1a{width:317.738667pt;}
._16{width:355.968000pt;}
._1d{width:404.742933pt;}
._1e{width:414.129600pt;}
._11{width:583.936000pt;}
._10{width:838.604267pt;}
._e{width:1210.256533pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:15.379333pt;}
.y3e{bottom:36.510800pt;}
.y44{bottom:41.748933pt;}
.y45{bottom:41.927067pt;}
.y97{bottom:41.930400pt;}
.y96{bottom:42.592000pt;}
.y3d{bottom:52.510800pt;}
.y42{bottom:52.617467pt;}
.y3c{bottom:68.510800pt;}
.y41{bottom:68.617467pt;}
.y171{bottom:71.848800pt;}
.y19e{bottom:72.190533pt;}
.yfa{bottom:76.288000pt;}
.ye1{bottom:77.207067pt;}
.y95{bottom:82.016667pt;}
.y13e{bottom:82.023333pt;}
.y73{bottom:82.038000pt;}
.y121{bottom:82.046000pt;}
.y3b{bottom:84.510800pt;}
.y40{bottom:84.617467pt;}
.y170{bottom:86.515467pt;}
.y19d{bottom:86.857200pt;}
.yf9{bottom:90.954667pt;}
.ye0{bottom:96.610133pt;}
.y13d{bottom:98.691333pt;}
.y3a{bottom:100.510800pt;}
.y3f{bottom:100.617467pt;}
.y16f{bottom:101.182133pt;}
.y19c{bottom:101.523867pt;}
.y94{bottom:115.352667pt;}
.y13c{bottom:115.359333pt;}
.y120{bottom:115.364667pt;}
.y72{bottom:115.374000pt;}
.y16e{bottom:115.848800pt;}
.ydf{bottom:116.013067pt;}
.y19b{bottom:116.190533pt;}
.y16d{bottom:130.515467pt;}
.y19a{bottom:130.857200pt;}
.y13b{bottom:132.027333pt;}
.y11f{bottom:132.032667pt;}
.y71{bottom:132.042000pt;}
.yde{bottom:135.416400pt;}
.y30{bottom:141.664933pt;}
.y16c{bottom:145.182133pt;}
.y199{bottom:145.523867pt;}
.y93{bottom:148.688667pt;}
.y13a{bottom:148.695333pt;}
.y11e{bottom:148.700667pt;}
.y70{bottom:148.710000pt;}
.ydd{bottom:153.848400pt;}
.y16b{bottom:159.848800pt;}
.y198{bottom:160.190533pt;}
.y139{bottom:165.363333pt;}
.y11d{bottom:165.368667pt;}
.y6f{bottom:165.378000pt;}
.ydc{bottom:172.280400pt;}
.y16a{bottom:174.515467pt;}
.y197{bottom:174.857200pt;}
.y35{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.y92{bottom:182.024667pt;}
.y138{bottom:182.031333pt;}
.y11c{bottom:182.036667pt;}
.y6e{bottom:182.046000pt;}
.ydb{bottom:186.947067pt;}
.y169{bottom:189.182133pt;}
.y196{bottom:189.523867pt;}
.y34{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y91{bottom:198.692667pt;}
.y11b{bottom:198.704667pt;}
.y168{bottom:203.848800pt;}
.y195{bottom:204.190533pt;}
.y33{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y90{bottom:215.360667pt;}
.y137{bottom:215.367333pt;}
.y6d{bottom:215.371333pt;}
.y11a{bottom:215.372667pt;}
.yb5{bottom:215.379333pt;}
.y167{bottom:218.515467pt;}
.y194{bottom:218.857200pt;}
.y32{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y8f{bottom:232.028667pt;}
.y136{bottom:232.035333pt;}
.y6c{bottom:232.039333pt;}
.y119{bottom:232.040667pt;}
.y166{bottom:233.182133pt;}
.y193{bottom:233.523867pt;}
.yda{bottom:235.938000pt;}
.y31{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y165{bottom:247.848800pt;}
.y192{bottom:248.190533pt;}
.y8e{bottom:248.696667pt;}
.y135{bottom:248.703333pt;}
.y6b{bottom:248.707333pt;}
.y118{bottom:248.708667pt;}
.yd9{bottom:250.604667pt;}
.y164{bottom:262.515467pt;}
.y191{bottom:262.857200pt;}
.yd8{bottom:265.271333pt;}
.yb4{bottom:265.362000pt;}
.y8d{bottom:265.364667pt;}
.y134{bottom:265.371333pt;}
.y6a{bottom:265.375333pt;}
.y117{bottom:265.376667pt;}
.y39{bottom:274.909733pt;}
.y163{bottom:277.182133pt;}
.y190{bottom:277.523867pt;}
.yd7{bottom:279.938000pt;}
.yb3{bottom:282.030000pt;}
.y8c{bottom:282.032667pt;}
.y133{bottom:282.039333pt;}
.y69{bottom:282.043333pt;}
.y116{bottom:282.044667pt;}
.y38{bottom:289.309733pt;}
.y162{bottom:291.848800pt;}
.y18f{bottom:292.190533pt;}
.yb2{bottom:298.698000pt;}
.y8b{bottom:298.700667pt;}
.y68{bottom:298.711333pt;}
.y115{bottom:298.712667pt;}
.yd6{bottom:300.054133pt;}
.y161{bottom:306.515467pt;}
.y18e{bottom:306.857200pt;}
.yb1{bottom:315.366000pt;}
.y132{bottom:315.375333pt;}
.y67{bottom:315.379333pt;}
.yd5{bottom:320.884933pt;}
.y160{bottom:321.182133pt;}
.y18d{bottom:321.523867pt;}
.y114{bottom:332.027333pt;}
.yb0{bottom:332.034000pt;}
.y8a{bottom:332.036667pt;}
.y131{bottom:332.043333pt;}
.y15f{bottom:335.848800pt;}
.y18c{bottom:336.190533pt;}
.yd4{bottom:341.715733pt;}
.y113{bottom:348.695333pt;}
.yaf{bottom:348.702000pt;}
.y66{bottom:348.704667pt;}
.y130{bottom:348.711333pt;}
.y15e{bottom:350.515467pt;}
.y18b{bottom:350.857200pt;}
.y2f{bottom:353.310933pt;}
.yd3{bottom:362.546533pt;}
.y15d{bottom:365.182133pt;}
.y112{bottom:365.363333pt;}
.yae{bottom:365.370000pt;}
.y65{bottom:365.372667pt;}
.y12f{bottom:365.379333pt;}
.y18a{bottom:365.523867pt;}
.y2e{bottom:370.638933pt;}
.yf8{bottom:374.282667pt;}
.y15c{bottom:379.848800pt;}
.y189{bottom:380.190533pt;}
.y111{bottom:382.031333pt;}
.y64{bottom:382.040667pt;}
.yd2{bottom:383.377333pt;}
.y2d{bottom:383.972267pt;}
.y2c{bottom:393.310933pt;}
.y15b{bottom:394.515467pt;}
.y188{bottom:394.857200pt;}
.y12e{bottom:398.690000pt;}
.y110{bottom:398.699333pt;}
.yad{bottom:398.706000pt;}
.y63{bottom:398.708667pt;}
.yd1{bottom:404.208267pt;}
.y15a{bottom:409.182133pt;}
.y187{bottom:409.523867pt;}
.y2b{bottom:410.638933pt;}
.y12d{bottom:415.358000pt;}
.y10f{bottom:415.367333pt;}
.yac{bottom:415.374000pt;}
.y62{bottom:415.376667pt;}
.yf7{bottom:417.664267pt;}
.y159{bottom:423.848800pt;}
.y186{bottom:424.190533pt;}
.yd0{bottom:425.039067pt;}
.y12c{bottom:432.026000pt;}
.y10e{bottom:432.035333pt;}
.yab{bottom:432.042000pt;}
.y61{bottom:432.044667pt;}
.yf6{bottom:437.067333pt;}
.y158{bottom:438.515467pt;}
.y185{bottom:438.857200pt;}
.y21{bottom:443.345733pt;}
.ycf{bottom:445.869867pt;}
.y12b{bottom:448.694000pt;}
.y10d{bottom:448.703333pt;}
.yaa{bottom:448.710000pt;}
.y60{bottom:448.712667pt;}
.y157{bottom:453.182133pt;}
.y184{bottom:453.523867pt;}
.yf5{bottom:456.470267pt;}
.y20{bottom:456.677733pt;}
.y12a{bottom:465.362000pt;}
.y10c{bottom:465.371333pt;}
.ya9{bottom:465.378000pt;}
.yce{bottom:466.701733pt;}
.y156{bottom:467.848800pt;}
.y183{bottom:468.190533pt;}
.y1f{bottom:470.009733pt;}
.yf4{bottom:475.873333pt;}
.y129{bottom:482.030000pt;}
.y5f{bottom:482.038000pt;}
.ya8{bottom:482.046000pt;}
.y89{bottom:482.051333pt;}
.y155{bottom:482.515467pt;}
.y182{bottom:482.857200pt;}
.y1e{bottom:483.341733pt;}
.ycd{bottom:485.848400pt;}
.yf3{bottom:495.276267pt;}
.y1d{bottom:496.673733pt;}
.y154{bottom:497.182133pt;}
.y181{bottom:497.523867pt;}
.y128{bottom:498.698000pt;}
.y5e{bottom:498.706000pt;}
.y10b{bottom:498.707333pt;}
.y88{bottom:498.712667pt;}
.ycc{bottom:504.280400pt;}
.y1c{bottom:510.005733pt;}
.y153{bottom:511.848800pt;}
.y180{bottom:512.190533pt;}
.yf2{bottom:514.679333pt;}
.y127{bottom:515.366000pt;}
.y104{bottom:515.368667pt;}
.y5d{bottom:515.374000pt;}
.y10a{bottom:515.375333pt;}
.ya7{bottom:515.379333pt;}
.ycb{bottom:518.947067pt;}
.y1b{bottom:523.337733pt;}
.y152{bottom:526.515467pt;}
.y17f{bottom:526.857200pt;}
.y126{bottom:532.034000pt;}
.y103{bottom:532.036667pt;}
.y5c{bottom:532.042000pt;}
.y109{bottom:532.043333pt;}
.yf1{bottom:534.082533pt;}
.y1a{bottom:536.669733pt;}
.y151{bottom:541.182133pt;}
.y17e{bottom:541.523867pt;}
.y87{bottom:548.696667pt;}
.y125{bottom:548.702000pt;}
.y102{bottom:548.704667pt;}
.y5b{bottom:548.710000pt;}
.y108{bottom:548.711333pt;}
.y19{bottom:550.001733pt;}
.yf0{bottom:552.514533pt;}
.y150{bottom:555.848800pt;}
.y17d{bottom:556.190533pt;}
.y18{bottom:563.333733pt;}
.ybf{bottom:565.362000pt;}
.y86{bottom:565.364667pt;}
.y124{bottom:565.370000pt;}
.y101{bottom:565.372667pt;}
.ya6{bottom:565.374000pt;}
.y5a{bottom:565.378000pt;}
.y14f{bottom:570.515467pt;}
.y17c{bottom:570.857200pt;}
.yef{bottom:570.946533pt;}
.y17{bottom:576.665733pt;}
.ybe{bottom:582.030000pt;}
.y85{bottom:582.032667pt;}
.y123{bottom:582.038000pt;}
.y100{bottom:582.040667pt;}
.ya5{bottom:582.042000pt;}
.y59{bottom:582.046000pt;}
.y14e{bottom:585.182133pt;}
.y17b{bottom:585.523867pt;}
.yee{bottom:585.613200pt;}
.y16{bottom:589.997733pt;}
.y84{bottom:598.700667pt;}
.y122{bottom:598.706000pt;}
.yff{bottom:598.708667pt;}
.ya4{bottom:598.710000pt;}
.y14d{bottom:599.848800pt;}
.y17a{bottom:600.190533pt;}
.y15{bottom:603.329733pt;}
.y14c{bottom:614.515467pt;}
.y179{bottom:614.857200pt;}
.ybd{bottom:615.366000pt;}
.y83{bottom:615.368667pt;}
.y58{bottom:615.374000pt;}
.yfe{bottom:615.376667pt;}
.ya3{bottom:615.378000pt;}
.y14{bottom:616.661733pt;}
.y14b{bottom:629.182133pt;}
.y178{bottom:629.523867pt;}
.y13{bottom:629.993733pt;}
.yed{bottom:632.019333pt;}
.ybc{bottom:632.034000pt;}
.y82{bottom:632.036667pt;}
.y57{bottom:632.042000pt;}
.yfd{bottom:632.044667pt;}
.ya2{bottom:632.046000pt;}
.y12{bottom:643.325733pt;}
.y14a{bottom:643.848800pt;}
.y177{bottom:644.190533pt;}
.yec{bottom:648.687333pt;}
.ybb{bottom:648.702000pt;}
.y81{bottom:648.704667pt;}
.y56{bottom:648.710000pt;}
.yfc{bottom:648.712667pt;}
.y11{bottom:656.657733pt;}
.y149{bottom:658.515467pt;}
.y176{bottom:658.857200pt;}
.yeb{bottom:665.355333pt;}
.yba{bottom:665.370000pt;}
.y80{bottom:665.372667pt;}
.y55{bottom:665.378000pt;}
.ya1{bottom:665.379333pt;}
.y10{bottom:669.989733pt;}
.y148{bottom:673.182133pt;}
.y175{bottom:673.523867pt;}
.yea{bottom:682.023333pt;}
.yb9{bottom:682.038000pt;}
.y54{bottom:682.039333pt;}
.y7f{bottom:682.040667pt;}
.yfb{bottom:682.046000pt;}
.yf{bottom:683.321733pt;}
.y147{bottom:687.848800pt;}
.y174{bottom:688.190533pt;}
.y107{bottom:692.947067pt;}
.ye{bottom:696.653733pt;}
.ye9{bottom:698.691333pt;}
.yb8{bottom:698.706000pt;}
.y53{bottom:698.707333pt;}
.y7e{bottom:698.708667pt;}
.y173{bottom:702.857200pt;}
.y106{bottom:707.613733pt;}
.yd{bottom:709.985733pt;}
.yb7{bottom:715.374000pt;}
.y52{bottom:715.375333pt;}
.y7d{bottom:715.376667pt;}
.ya0{bottom:715.378000pt;}
.y146{bottom:717.182133pt;}
.y172{bottom:717.523867pt;}
.yc{bottom:723.317733pt;}
.ye8{bottom:732.027333pt;}
.yb6{bottom:732.042000pt;}
.y51{bottom:732.043333pt;}
.y7c{bottom:732.044667pt;}
.y9f{bottom:732.046000pt;}
.yb{bottom:736.649733pt;}
.ye7{bottom:748.695333pt;}
.y50{bottom:748.711333pt;}
.y7b{bottom:748.712667pt;}
.ya{bottom:749.981733pt;}
.y9{bottom:763.313733pt;}
.ye6{bottom:765.363333pt;}
.y4f{bottom:765.379333pt;}
.y8{bottom:776.645733pt;}
.ye5{bottom:782.031333pt;}
.y140{bottom:782.034000pt;}
.y7a{bottom:782.046000pt;}
.y145{bottom:782.712667pt;}
.yca{bottom:787.421067pt;}
.y7{bottom:789.977733pt;}
.y144{bottom:797.379333pt;}
.ye4{bottom:798.699333pt;}
.y13f{bottom:798.702000pt;}
.y4e{bottom:798.708667pt;}
.y6{bottom:803.309733pt;}
.yc9{bottom:805.853067pt;}
.y143{bottom:812.046000pt;}
.y9e{bottom:815.367333pt;}
.y4d{bottom:815.376667pt;}
.y22{bottom:820.701600pt;}
.yc8{bottom:824.285067pt;}
.y142{bottom:826.712667pt;}
.y9d{bottom:832.035333pt;}
.y79{bottom:832.038000pt;}
.y4c{bottom:832.044667pt;}
.y141{bottom:841.379333pt;}
.yc7{bottom:842.717067pt;}
.ye3{bottom:848.703333pt;}
.y78{bottom:848.706000pt;}
.y4b{bottom:848.712667pt;}
.y2a{bottom:858.645600pt;}
.yc6{bottom:861.149067pt;}
.y9c{bottom:865.371333pt;}
.y77{bottom:865.374000pt;}
.y29{bottom:873.309600pt;}
.yc5{bottom:879.581067pt;}
.y9b{bottom:882.039333pt;}
.y4a{bottom:882.042000pt;}
.yc4{bottom:898.013067pt;}
.y9a{bottom:898.707333pt;}
.y49{bottom:898.710000pt;}
.y37{bottom:908.178400pt;}
.y99{bottom:915.375333pt;}
.y48{bottom:915.378000pt;}
.yc3{bottom:917.416400pt;}
.y36{bottom:927.378400pt;}
.y76{bottom:932.034000pt;}
.y98{bottom:932.043333pt;}
.y47{bottom:932.046000pt;}
.yc2{bottom:935.848400pt;}
.y75{bottom:948.702000pt;}
.ye2{bottom:948.711333pt;}
.y25{bottom:952.491200pt;}
.yc1{bottom:954.280400pt;}
.y28{bottom:962.610667pt;}
.y74{bottom:965.370000pt;}
.y46{bottom:965.379333pt;}
.yc0{bottom:968.947067pt;}
.y105{bottom:974.280400pt;}
.y27{bottom:975.944000pt;}
.y24{bottom:981.291200pt;}
.y26{bottom:989.277333pt;}
.y23{bottom:1010.091200pt;}
.ha{height:30.121875pt;}
.h2{height:31.062500pt;}
.he{height:31.829333pt;}
.hd{height:32.298667pt;}
.hf{height:33.468750pt;}
.h3{height:38.250000pt;}
.h19{height:39.145917pt;}
.h1f{height:39.146450pt;}
.h1e{height:39.146983pt;}
.h1d{height:39.147517pt;}
.h1a{height:39.149117pt;}
.h1c{height:39.152850pt;}
.h1b{height:39.153383pt;}
.h7{height:39.786667pt;}
.h5{height:41.994792pt;}
.h4{height:43.031250pt;}
.h10{height:43.071783pt;}
.h18{height:45.677650pt;}
.h9{height:46.095208pt;}
.hc{height:46.105342pt;}
.h8{height:46.105875pt;}
.h12{height:46.121875pt;}
.h14{height:46.127208pt;}
.h13{height:46.132542pt;}
.h15{height:46.137875pt;}
.h20{height:46.148542pt;}
.h16{height:46.153875pt;}
.h22{height:46.164542pt;}
.h17{height:46.170667pt;}
.h21{height:46.180542pt;}
.h23{height:46.196542pt;}
.hb{height:48.448000pt;}
.h11{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x14{left:78.547467pt;}
.x15{left:79.608000pt;}
.x1d{left:85.203333pt;}
.x1a{left:91.586533pt;}
.x16{left:95.608000pt;}
.x1e{left:103.370000pt;}
.x12{left:123.857067pt;}
.x6{left:240.587467pt;}
.x10{left:243.589867pt;}
.xf{left:265.349867pt;}
.xe{left:286.480533pt;}
.xb{left:288.608800pt;}
.xa{left:290.976800pt;}
.x3{left:298.460000pt;}
.x8{left:301.056800pt;}
.x7{left:317.046133pt;}
.x11{left:326.277867pt;}
.x9{left:334.838133pt;}
.xc{left:352.086533pt;}
.x5{left:384.380000pt;}
.xd{left:387.798533pt;}
.x19{left:401.177867pt;}
.x13{left:404.970933pt;}
.x4{left:411.884000pt;}
.x1{left:417.573467pt;}
.x17{left:421.420000pt;}
.x1c{left:423.471067pt;}
.x1b{left:433.638533pt;}
.x18{left:437.417333pt;}
.x1f{left:445.417333pt;}
}




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