
    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_bec82cd1ccfe2a5caf1858b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_ce256084d112c908f3bad17e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_4360d1193838e2d5add4f1c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100098;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_d49254e5b9ac59fcb959b299.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9704cf03735cf36b3f8b3e0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9a206c8f5f8737325c596d63.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_80bc352e87bc0f1e07b8bd13.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_99dcb83c73dd54b57351e3d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_9c990a92c5af1bc45e9b1fcc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_55e4f90cfd1660498bb30225.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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;}
.m3{transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249840,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249826,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249830,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-28.800000px;}
.v7{vertical-align:-25.394969px;}
.v8{vertical-align:-17.566226px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.280000px;}
.v5{vertical-align:25.340230px;}
.v3{vertical-align:28.800000px;}
.v1{vertical-align:32.400000px;}
.v4{vertical-align:91.140000px;}
.ls1e{letter-spacing:-17.340000px;}
.ls2b{letter-spacing:-11.700000px;}
.ls27{letter-spacing:-9.180000px;}
.ls2d{letter-spacing:-7.320000px;}
.ls28{letter-spacing:-3.240000px;}
.ls38{letter-spacing:-2.592000px;}
.ls1c{letter-spacing:-2.550000px;}
.ls3a{letter-spacing:-1.860000px;}
.ls20{letter-spacing:-1.428000px;}
.ls26{letter-spacing:-1.260000px;}
.ls24{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.277800px;}
.ls34{letter-spacing:-0.214646px;}
.ls2f{letter-spacing:-0.214575px;}
.ls36{letter-spacing:-0.214546px;}
.ls33{letter-spacing:-0.198857px;}
.ls32{letter-spacing:-0.184462px;}
.ls25{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.175949px;}
.ls30{letter-spacing:-0.170276px;}
.ls3e{letter-spacing:-0.165253px;}
.ls21{letter-spacing:-0.163200px;}
.ls29{letter-spacing:-0.138000px;}
.ls31{letter-spacing:-0.104579px;}
.ls2a{letter-spacing:-0.094200px;}
.ls1d{letter-spacing:-0.002874px;}
.ls39{letter-spacing:-0.000006px;}
.ls19{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.050400px;}
.ls3{letter-spacing:0.087600px;}
.ls8{letter-spacing:0.138480px;}
.ls18{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.180000px;}
.ls3b{letter-spacing:0.183000px;}
.ls35{letter-spacing:0.194364px;}
.ls16{letter-spacing:0.209507px;}
.ls2c{letter-spacing:0.242400px;}
.lsc{letter-spacing:0.261600px;}
.ls3c{letter-spacing:0.267600px;}
.ls3d{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.290400px;}
.ls4{letter-spacing:0.297600px;}
.ls22{letter-spacing:0.332400px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.515400px;}
.ls6{letter-spacing:1.020000px;}
.lsa{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.260000px;}
.ls2{letter-spacing:17.393760px;}
.ls5{letter-spacing:24.593760px;}
.ls1{letter-spacing:26.033760px;}
.ls7{letter-spacing:32.513760px;}
.ls17{letter-spacing:158.963154px;}
.ls15{letter-spacing:390.135046px;}
.ls14{letter-spacing:417.961200px;}
.ls13{letter-spacing:436.397520px;}
.ls12{letter-spacing:460.477200px;}
.ls11{letter-spacing:474.466800px;}
.ls10{letter-spacing:933.301200px;}
.lsf{letter-spacing:947.229600px;}
.lsd{letter-spacing:958.301760px;}
.lse{letter-spacing:1026.796080px;}
.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;}
}
.ws4e{word-spacing:-144.000000px;}
.ws3{word-spacing:-82.866240px;}
.ws1c{word-spacing:-66.173760px;}
.ws16{word-spacing:-49.680000px;}
.ws18{word-spacing:-49.500000px;}
.ws1a{word-spacing:-49.320000px;}
.ws13{word-spacing:-49.140000px;}
.ws11{word-spacing:-48.960000px;}
.ws12{word-spacing:-48.780000px;}
.ws15{word-spacing:-48.060000px;}
.wsf{word-spacing:-46.986240px;}
.wsc{word-spacing:-46.481640px;}
.ws10{word-spacing:-46.298640px;}
.ws4{word-spacing:-46.263840px;}
.ws6{word-spacing:-46.256640px;}
.ws1b{word-spacing:-46.080000px;}
.wsa{word-spacing:-46.053840px;}
.wsb{word-spacing:-45.966240px;}
.ws8{word-spacing:-45.963366px;}
.wse{word-spacing:-45.803040px;}
.ws5{word-spacing:-45.688440px;}
.wsd{word-spacing:-44.538240px;}
.ws50{word-spacing:-43.419840px;}
.ws7{word-spacing:-43.416240px;}
.ws53{word-spacing:-43.389840px;}
.ws51{word-spacing:-43.305240px;}
.ws4f{word-spacing:-41.262240px;}
.ws17{word-spacing:-40.140000px;}
.ws30{word-spacing:-36.365760px;}
.ws36{word-spacing:-36.363840px;}
.ws33{word-spacing:-36.102240px;}
.ws1d{word-spacing:-32.945760px;}
.ws0{word-spacing:-29.808000px;}
.ws9{word-spacing:-28.626240px;}
.ws54{word-spacing:-27.000000px;}
.ws48{word-spacing:-25.961157px;}
.ws45{word-spacing:-24.034716px;}
.ws41{word-spacing:-22.294934px;}
.ws4d{word-spacing:-21.265944px;}
.ws3e{word-spacing:-20.580249px;}
.ws1{word-spacing:-19.872000px;}
.ws42{word-spacing:-18.175327px;}
.ws49{word-spacing:-17.637742px;}
.ws2{word-spacing:-17.557920px;}
.ws3f{word-spacing:-16.777478px;}
.ws14{word-spacing:-14.220000px;}
.ws19{word-spacing:-13.500000px;}
.ws56{word-spacing:-12.267309px;}
.ws52{word-spacing:-11.604240px;}
.ws58{word-spacing:0.000000px;}
.ws43{word-spacing:40.860000px;}
.ws4a{word-spacing:51.133497px;}
.ws4b{word-spacing:96.678334px;}
.ws55{word-spacing:99.071792px;}
.ws39{word-spacing:217.701360px;}
.ws47{word-spacing:229.584528px;}
.ws37{word-spacing:239.916240px;}
.ws3a{word-spacing:282.315823px;}
.ws38{word-spacing:285.414720px;}
.ws3c{word-spacing:286.012767px;}
.ws4c{word-spacing:295.850042px;}
.ws32{word-spacing:298.974720px;}
.ws40{word-spacing:309.406755px;}
.ws3b{word-spacing:327.883853px;}
.ws44{word-spacing:333.899227px;}
.ws46{word-spacing:334.368968px;}
.ws57{word-spacing:341.073348px;}
.ws34{word-spacing:341.896560px;}
.ws35{word-spacing:420.636240px;}
.ws31{word-spacing:433.193280px;}
.ws2e{word-spacing:579.781440px;}
.ws2c{word-spacing:599.801280px;}
.ws2f{word-spacing:606.299040px;}
.ws29{word-spacing:611.879280px;}
.ws28{word-spacing:612.121680px;}
.ws23{word-spacing:624.421680px;}
.ws24{word-spacing:637.961280px;}
.ws26{word-spacing:659.701680px;}
.ws27{word-spacing:695.641920px;}
.ws2a{word-spacing:695.701680px;}
.ws22{word-spacing:730.982160px;}
.ws20{word-spacing:781.381920px;}
.ws21{word-spacing:817.899120px;}
.ws1e{word-spacing:824.411760px;}
.ws25{word-spacing:860.547720px;}
.ws2d{word-spacing:870.489840px;}
.ws2b{word-spacing:917.796000px;}
.ws1f{word-spacing:931.109520px;}
.ws3d{word-spacing:1573.251120px;}
._13{margin-left:-18.841680px;}
._1c{margin-left:-17.829120px;}
._c{margin-left:-15.364560px;}
._4d{margin-left:-12.391680px;}
._6{margin-left:-9.048000px;}
._4{margin-left:-7.776000px;}
._7{margin-left:-6.456000px;}
._2{margin-left:-5.040000px;}
._3{margin-left:-3.600000px;}
._5{margin-left:-2.220000px;}
._0{margin-left:-1.080000px;}
._8{width:1.616160px;}
._24{width:2.700000px;}
._a{width:3.977280px;}
._1f{width:6.047760px;}
._f{width:7.782000px;}
._10{width:8.983440px;}
._1{width:10.080000px;}
._53{width:14.067993px;}
._d{width:17.064480px;}
._e{width:18.308160px;}
._23{width:20.763840px;}
._22{width:21.960000px;}
._14{width:24.188640px;}
._15{width:25.252320px;}
._b{width:26.918400px;}
._9{width:28.181760px;}
._16{width:33.059760px;}
._12{width:34.913028px;}
._11{width:36.367440px;}
._20{width:42.307680px;}
._21{width:43.380000px;}
._17{width:51.853200px;}
._19{width:52.901520px;}
._1d{width:54.425520px;}
._1e{width:55.668480px;}
._4c{width:57.586800px;}
._49{width:66.898800px;}
._4b{width:73.392480px;}
._1b{width:78.981600px;}
._1a{width:80.303520px;}
._45{width:92.826882px;}
._18{width:98.485440px;}
._55{width:109.732605px;}
._4e{width:116.360179px;}
._46{width:138.084364px;}
._47{width:151.135703px;}
._56{width:154.319022px;}
._4a{width:192.718080px;}
._54{width:209.855187px;}
._4f{width:217.756117px;}
._50{width:228.451991px;}
._52{width:245.915849px;}
._34{width:255.533520px;}
._44{width:267.615541px;}
._51{width:268.962597px;}
._32{width:290.974800px;}
._3b{width:304.683690px;}
._3c{width:312.565256px;}
._3d{width:318.176307px;}
._48{width:328.784261px;}
._3f{width:330.069021px;}
._40{width:338.171518px;}
._41{width:344.257327px;}
._43{width:355.184792px;}
._39{width:368.112720px;}
._42{width:371.113569px;}
._37{width:419.076960px;}
._38{width:420.431520px;}
._35{width:450.838800px;}
._3a{width:479.535600px;}
._36{width:598.876560px;}
._31{width:651.379200px;}
._2d{width:660.785520px;}
._2a{width:686.045520px;}
._2b{width:732.005760px;}
._30{width:749.309040px;}
._2f{width:760.265760px;}
._2c{width:767.346000px;}
._2e{width:803.466000px;}
._33{width:848.250000px;}
._25{width:869.977920px;}
._28{width:884.077200px;}
._27{width:902.566800px;}
._29{width:903.861360px;}
._26{width:910.423680px;}
._3e{width:2162.592000px;}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(152,74,156);}
.fc6{color:rgb(0,176,80);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(142,216,248);}
.fc0{color:rgb(86,40,115);}
.fs2c{font-size:38.271602px;}
.fs2b{font-size:44.127011px;}
.fs10{font-size:47.077187px;}
.fs27{font-size:58.570353px;}
.fsf{font-size:60.350641px;}
.fs23{font-size:62.361409px;}
.fs1d{font-size:63.445113px;}
.fs4{font-size:64.080000px;}
.fs2a{font-size:64.816122px;}
.fs14{font-size:65.378876px;}
.fs22{font-size:67.425594px;}
.fs1b{font-size:67.457057px;}
.fs17{font-size:70.480707px;}
.fs28{font-size:71.845866px;}
.fs29{font-size:71.891802px;}
.fs3{font-size:72.000000px;}
.fs12{font-size:74.029673px;}
.fs11{font-size:74.080165px;}
.fs1f{font-size:76.041203px;}
.fsc{font-size:76.051717px;}
.fs1a{font-size:76.076688px;}
.fs25{font-size:76.496200px;}
.fs24{font-size:76.549504px;}
.fs16{font-size:80.197603px;}
.fs15{font-size:80.253513px;}
.fs18{font-size:86.426860px;}
.fs19{font-size:86.455812px;}
.fs21{font-size:93.276646px;}
.fse{font-size:93.289543px;}
.fs1e{font-size:93.320173px;}
.fs20{font-size:93.341008px;}
.fsd{font-size:93.354590px;}
.fs1c{font-size:93.385457px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fsb{font-size:131.760000px;}
.fs13{font-size:144.000000px;}
.fs26{font-size:156.240000px;}
.fs7{font-size:167.760000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:239.760000px;}
.fs6{font-size:300.240000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y138{bottom:3.806016px;}
.y137{bottom:13.369850px;}
.y12d{bottom:16.683035px;}
.y136{bottom:22.936937px;}
.y5b{bottom:30.463583px;}
.y113{bottom:31.478571px;}
.y135{bottom:32.500772px;}
.y9e{bottom:32.783848px;}
.yd9{bottom:34.989825px;}
.ye7{bottom:35.577001px;}
.y106{bottom:37.370208px;}
.y44{bottom:37.375375px;}
.y134{bottom:42.069486px;}
.y121{bottom:44.305926px;}
.y133{bottom:51.633320px;}
.y50{bottom:58.929443px;}
.y109{bottom:60.892860px;}
.y132{bottom:61.200407px;}
.y122{bottom:62.753717px;}
.y93{bottom:63.621399px;}
.yd1{bottom:68.233780px;}
.ydd{bottom:68.820956px;}
.y131{bottom:70.764242px;}
.yfe{bottom:73.997108px;}
.y3c{bottom:74.007339px;}
.y130{bottom:80.430545px;}
.y10a{bottom:80.536444px;}
.y21{bottom:83.160000px;}
.yb5{bottom:84.215472px;}
.yd2{bottom:90.434909px;}
.yde{bottom:91.022085px;}
.y20{bottom:92.052000px;}
.y63{bottom:96.646499px;}
.yea{bottom:97.741959px;}
.y3d{bottom:97.963313px;}
.y77{bottom:98.054290px;}
.y51{bottom:103.283226px;}
.y94{bottom:106.877486px;}
.ya6{bottom:109.927653px;}
.y127{bottom:110.000360px;}
.y84{bottom:110.221622px;}
.yc3{bottom:127.035822px;}
.y112{bottom:127.199265px;}
.y10b{bottom:133.018046px;}
.y2d{bottom:133.125000px;}
.y64{bottom:134.061886px;}
.yff{bottom:135.203836px;}
.yb6{bottom:139.236489px;}
.ydf{bottom:146.343862px;}
.y123{bottom:151.874665px;}
.y95{bottom:152.203330px;}
.y52{bottom:154.077651px;}
.y128{bottom:157.242123px;}
.ya7{bottom:161.244896px;}
.yeb{bottom:161.765953px;}
.y78{bottom:165.138863px;}
.y65{bottom:171.477272px;}
.yd3{bottom:173.475313px;}
.y85{bottom:174.896192px;}
.yf2{bottom:179.262957px;}
.y10c{bottom:185.399206px;}
.ye6{bottom:186.868800px;}
.y3e{bottom:187.567485px;}
.yd8{bottom:193.680043px;}
.yb7{bottom:194.261138px;}
.y96{bottom:197.420239px;}
.y12c{bottom:201.559435px;}
.ye0{bottom:201.669553px;}
.y53{bottom:204.867048px;}
.y66{bottom:208.889307px;}
.y100{bottom:209.847115px;}
.y43{bottom:211.270023px;}
.ya8{bottom:212.567586px;}
.y6f{bottom:218.546080px;}
.y7c{bottom:224.177242px;}
.y5a{bottom:224.680024px;}
.y8b{bottom:225.283363px;}
.yec{bottom:225.920932px;}
.y12b{bottom:227.816064px;}
.y105{bottom:231.263662px;}
.yad{bottom:231.634760px;}
.y79{bottom:232.126231px;}
.y10d{bottom:237.886004px;}
.y9d{bottom:238.279767px;}
.y86{bottom:239.466853px;}
.y124{bottom:240.993987px;}
.y97{bottom:242.746083px;}
.y67{bottom:246.304693px;}
.yb8{bottom:249.287602px;}
.yc6{bottom:249.396536px;}
.y12a{bottom:249.484329px;}
.ybc{bottom:250.485881px;}
.y54{bottom:255.559240px;}
.yd4{bottom:256.521589px;}
.ye1{bottom:256.991330px;}
.yf3{bottom:260.786068px;}
.yfa{bottom:263.448013px;}
.ya9{bottom:263.884829px;}
.ye9{bottom:266.114183px;}
.yf9{bottom:267.381776px;}
.y3f{bottom:277.177992px;}
.y68{bottom:283.619523px;}
.y101{bottom:284.488281px;}
.y98{bottom:288.071927px;}
.yed{bottom:289.951263px;}
.y10e{bottom:290.367606px;}
.yc4{bottom:298.099350px;}
.y7a{bottom:299.209128px;}
.y87{bottom:304.035838px;}
.yb9{bottom:304.199684px;}
.y55{bottom:306.348637px;}
.ye2{bottom:312.313106px;}
.yaa{bottom:315.205703px;}
.y69{bottom:321.034910px;}
.y125{bottom:330.114935px;}
.yc2{bottom:330.783341px;}
.y99{bottom:333.397770px;}
.y72{bottom:334.211159px;}
.y5e{bottom:335.417837px;}
.y75{bottom:336.523958px;}
.y8d{bottom:337.026740px;}
.y61{bottom:337.630079px;}
.yb3{bottom:339.612485px;}
.yd5{bottom:339.685300px;}
.ycc{bottom:341.028634px;}
.y82{bottom:341.752894px;}
.y1f{bottom:342.285000px;}
.yf4{bottom:342.313404px;}
.y10f{bottom:342.852673px;}
.y7f{bottom:344.166249px;}
.ya4{bottom:347.237903px;}
.y71{bottom:348.796875px;}
.y5d{bottom:350.003553px;}
.yc1{bottom:350.941677px;}
.y74{bottom:351.109674px;}
.y8c{bottom:351.612456px;}
.y60{bottom:352.215795px;}
.yee{bottom:353.975257px;}
.y81{bottom:356.338610px;}
.y56{bottom:357.143062px;}
.y6a{bottom:358.450296px;}
.y7e{bottom:358.751965px;}
.y102{bottom:359.131560px;}
.yba{bottom:359.224333px;}
.yb2{bottom:359.769005px;}
.ycb{bottom:361.185154px;}
.y70{bottom:363.377563px;}
.y5c{bottom:364.584241px;}
.y73{bottom:365.690362px;}
.y7b{bottom:366.193144px;}
.yab{bottom:366.631881px;}
.y40{bottom:366.661781px;}
.y5f{bottom:366.796483px;}
.ya3{bottom:367.394423px;}
.ye3{bottom:367.640755px;}
.y88{bottom:368.710408px;}
.y80{bottom:370.922650px;}
.yc0{bottom:371.098197px;}
.y7d{bottom:373.336005px;}
.y129{bottom:378.039829px;}
.y9a{bottom:378.620126px;}
.yb1{bottom:379.927341px;}
.yca{bottom:381.343490px;}
.yc5{bottom:383.740049px;}
.ya2{bottom:387.552758px;}
.y12e{bottom:388.973178px;}
.ybf{bottom:391.256532px;}
.y110{bottom:395.230369px;}
.y6b{bottom:395.865682px;}
.y1e{bottom:396.285000px;}
.y8a{bottom:397.776255px;}
.y6e{bottom:399.184046px;}
.y58{bottom:399.787385px;}
.yb0{bottom:400.083860px;}
.yc9{bottom:401.500009px;}
.ya1{bottom:407.709278px;}
.y57{bottom:407.935811px;}
.ybe{bottom:411.413052px;}
.y89{bottom:412.259739px;}
.y6d{bottom:413.667530px;}
.ybb{bottom:414.245350px;}
.y59{bottom:414.270868px;}
.yac{bottom:417.949124px;}
.yef{bottom:418.003476px;}
.y49{bottom:418.373148px;}
.y126{bottom:419.231003px;}
.yaf{bottom:420.242196px;}
.yc8{bottom:421.658345px;}
.yd6{bottom:422.727661px;}
.ye4{bottom:422.962532px;}
.yf5{bottom:423.834403px;}
.y9b{bottom:423.945970px;}
.ya0{bottom:427.867613px;}
.y139{bottom:431.140254px;}
.ybd{bottom:431.571387px;}
.y6c{bottom:433.281069px;}
.y103{bottom:433.772727px;}
.ydb{bottom:439.407377px;}
.yae{bottom:440.398716px;}
.yc7{bottom:441.814865px;}
.y48{bottom:441.822251px;}
.y111{bottom:447.717166px;}
.y9f{bottom:448.024133px;}
.y1d{bottom:450.285000px;}
.y41{bottom:456.268065px;}
.y114{bottom:462.059771px;}
.y47{bottom:465.269243px;}
.yda{bottom:465.953610px;}
.y9c{bottom:469.271814px;}
.ye5{bottom:478.288223px;}
.yf0{bottom:482.154229px;}
.y46{bottom:488.718346px;}
.yf8{bottom:492.047790px;}
.y1c{bottom:504.285000px;}
.yf6{bottom:505.357514px;}
.yd7{bottom:505.773937px;}
.y104{bottom:508.416005px;}
.y45{bottom:512.161114px;}
.yf7{bottom:513.347573px;}
.y42{bottom:545.878572px;}
.yf1{bottom:546.184561px;}
.y4a{bottom:561.718280px;}
.y107{bottom:565.192452px;}
.yfb{bottom:570.780085px;}
.y1b{bottom:604.980000px;}
.y116{bottom:668.085000px;}
.y11c{bottom:678.990000px;}
.y83{bottom:688.190399px;}
.y76{bottom:694.130399px;}
.y11b{bottom:725.790000px;}
.y11a{bottom:772.590000px;}
.y119{bottom:819.390000px;}
.y118{bottom:866.190000px;}
.y115{bottom:884.670000px;}
.y117{bottom:912.990000px;}
.ye8{bottom:968.313965px;}
.y11e{bottom:1045.050000px;}
.y11d{bottom:1077.450000px;}
.y108{bottom:1088.882067px;}
.y120{bottom:1111.244110px;}
.y62{bottom:1132.115399px;}
.y4f{bottom:1132.925399px;}
.y11f{bottom:1252.950000px;}
.y12f{bottom:1365.320055px;}
.yfc{bottom:1620.360000px;}
.y8e{bottom:1625.505000px;}
.y1a{bottom:1745.820000px;}
.yd0{bottom:1803.709749px;}
.ydc{bottom:1808.614749px;}
.y91{bottom:1827.645000px;}
.y4d{bottom:1842.915000px;}
.y90{bottom:1870.845000px;}
.y4c{bottom:1888.455000px;}
.y4b{bottom:1933.995000px;}
.y8f{bottom:2010.675000px;}
.ycf{bottom:2372.475000px;}
.y38{bottom:2415.390000px;}
.y37{bottom:2438.130000px;}
.y3b{bottom:2482.038634px;}
.yfd{bottom:2483.658495px;}
.y36{bottom:2502.750000px;}
.y35{bottom:2525.550000px;}
.y34{bottom:2590.125000px;}
.y33{bottom:2612.910000px;}
.y32{bottom:2677.530000px;}
.y31{bottom:2700.285000px;}
.y2c{bottom:2741.940000px;}
.y30{bottom:2764.905000px;}
.y2f{bottom:2787.690000px;}
.y2e{bottom:2852.310000px;}
.y2b{bottom:2875.065000px;}
.y39{bottom:2954.265000px;}
.y4e{bottom:3021.735000px;}
.y2a{bottom:3090.750000px;}
.yce{bottom:3112.350000px;}
.y29{bottom:3132.360000px;}
.y28{bottom:3174.015000px;}
.y27{bottom:3215.625000px;}
.yb4{bottom:3221.712086px;}
.y26{bottom:3257.250000px;}
.y25{bottom:3298.890000px;}
.y24{bottom:3340.515000px;}
.y23{bottom:3382.125000px;}
.y22{bottom:3433.530000px;}
.y3a{bottom:3506.865000px;}
.y19{bottom:3580.380000px;}
.y18{bottom:3668.505000px;}
.y92{bottom:3704.277086px;}
.ya5{bottom:3717.132086px;}
.y17{bottom:3718.905000px;}
.y16{bottom:3769.350000px;}
.y15{bottom:3819.750000px;}
.y14{bottom:3870.150000px;}
.y13{bottom:3920.550000px;}
.y12{bottom:3970.950000px;}
.y11{bottom:4021.350000px;}
.y10{bottom:4071.750000px;}
.yf{bottom:4122.150000px;}
.ye{bottom:4172.550000px;}
.yd{bottom:4222.950000px;}
.ycd{bottom:4255.095000px;}
.yc{bottom:4273.350000px;}
.yb{bottom:4323.750000px;}
.ya{bottom:4393.470000px;}
.y9{bottom:4476.990000px;}
.y8{bottom:4515.870000px;}
.y7{bottom:4544.670000px;}
.y6{bottom:4573.470000px;}
.y5{bottom:4595.790000px;}
.y4{bottom:4628.190000px;}
.y3{bottom:4644.510000px;}
.y2{bottom:4752.510000px;}
.y1{bottom:4860.510000px;}
.h21{height:32.871278px;}
.h47{height:39.916085px;}
.h23{height:44.113726px;}
.h22{height:46.203685px;}
.h20{height:47.444978px;}
.h1d{height:49.100035px;}
.h1e{height:54.149418px;}
.h5{height:55.412930px;}
.h31{height:55.608790px;}
.h42{height:61.087048px;}
.h1b{height:62.943833px;}
.h2e{height:63.174321px;}
.h3c{height:65.041001px;}
.h45{height:67.601190px;}
.h27{height:68.188124px;}
.h34{height:68.260756px;}
.h3a{height:70.322787px;}
.h32{height:70.355603px;}
.h2b{height:73.509175px;}
.h1c{height:74.440266px;}
.h43{height:74.932993px;}
.h44{height:74.980902px;}
.h1f{height:77.210636px;}
.h37{height:79.308599px;}
.h17{height:79.319565px;}
.h30{height:79.345608px;}
.h3e{height:79.783146px;}
.h3d{height:79.838741px;}
.h29{height:83.643594px;}
.h28{height:83.701906px;}
.h2c{height:90.140514px;}
.h2d{height:90.170710px;}
.h46{height:91.751002px;}
.h6{height:93.445312px;}
.h4{height:94.696875px;}
.h39{height:97.284627px;}
.h19{height:97.298078px;}
.h35{height:97.330025px;}
.h38{height:97.351755px;}
.h18{height:97.365920px;}
.h33{height:97.398113px;}
.hb{height:103.977070px;}
.h40{height:105.996094px;}
.h12{height:113.938945px;}
.hc{height:114.003281px;}
.h25{height:124.593750px;}
.h3f{height:135.184219px;}
.h24{height:141.873750px;}
.h8{height:145.069805px;}
.h9{height:155.654297px;}
.h15{height:155.742188px;}
.h13{height:204.898945px;}
.hf{height:204.958945px;}
.h11{height:205.078945px;}
.h14{height:205.138945px;}
.he{height:205.143281px;}
.ha{height:207.448594px;}
.h7{height:259.777969px;}
.hd{height:293.040000px;}
.h10{height:296.098945px;}
.h2{height:311.484375px;}
.h3{height:311.608969px;}
.h41{height:466.957117px;}
.h1a{height:495.124789px;}
.h3b{height:511.621402px;}
.h26{height:536.377102px;}
.h2a{height:578.233212px;}
.h36{height:623.852275px;}
.h16{height:623.938532px;}
.h2f{height:624.143392px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.wc{width:150.116370px;}
.w3{width:151.920000px;}
.w5{width:647.320978px;}
.wb{width:668.820633px;}
.wa{width:668.898344px;}
.w6{width:701.264393px;}
.w7{width:755.207808px;}
.w9{width:815.624432px;}
.w4{width:815.743108px;}
.w8{width:816.012825px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x70{left:4.301594px;}
.x14{left:17.175000px;}
.x6c{left:30.472476px;}
.x68{left:37.991722px;}
.x67{left:46.100138px;}
.x35{left:62.194669px;}
.x40{left:68.140632px;}
.x34{left:69.947830px;}
.x2f{left:71.054705px;}
.x3f{left:76.539889px;}
.x2c{left:78.802835px;}
.x60{left:82.053471px;}
.x51{left:83.249344px;}
.x3e{left:85.587758px;}
.x2b{left:87.153037px;}
.x5d{left:89.782504px;}
.x50{left:92.286872px;}
.x48{left:94.635628px;}
.x57{left:99.209891px;}
.x22{left:100.318354px;}
.x54{left:101.678543px;}
.x47{left:103.687131px;}
.x21{left:110.084530px;}
.x4f{left:111.780460px;}
.x20{left:120.613657px;}
.xb{left:122.687947px;}
.x5c{left:124.653312px;}
.x29{left:129.193561px;}
.x6e{left:137.808895px;}
.x5{left:140.183947px;}
.x1d{left:142.271947px;}
.x4{left:145.655947px;}
.x8{left:147.923947px;}
.x2a{left:154.383990px;}
.xa{left:156.164947px;}
.x5f{left:159.946040px;}
.x37{left:162.635245px;}
.x69{left:165.936082px;}
.x3d{left:167.467344px;}
.x9{left:168.689947px;}
.x1f{left:170.072230px;}
.x26{left:175.964947px;}
.x56{left:179.897869px;}
.x12{left:180.929947px;}
.x4b{left:182.619800px;}
.x25{left:190.364947px;}
.x49{left:193.524481px;}
.x31{left:196.651545px;}
.x1c{left:203.789947px;}
.x1b{left:208.469947px;}
.x1a{left:209.549947px;}
.x18{left:212.969947px;}
.x71{left:221.313211px;}
.xd{left:246.389947px;}
.x6d{left:250.809162px;}
.x24{left:262.150306px;}
.x10{left:283.289947px;}
.xe{left:292.289947px;}
.x11{left:296.069947px;}
.xf{left:298.769947px;}
.x61{left:308.970796px;}
.x41{left:324.030007px;}
.x23{left:329.494868px;}
.x2e{left:330.502993px;}
.x39{left:336.524947px;}
.x52{left:349.072788px;}
.x38{left:360.974947px;}
.x17{left:390.164947px;}
.x36{left:408.197275px;}
.x33{left:423.396689px;}
.x30{left:424.604190px;}
.x44{left:432.293761px;}
.x42{left:460.205893px;}
.x45{left:468.926731px;}
.x53{left:495.606347px;}
.x7{left:498.629947px;}
.x2d{left:501.594096px;}
.x28{left:504.029947px;}
.x6b{left:536.975054px;}
.x27{left:563.549947px;}
.x13{left:577.080000px;}
.x6a{left:578.968902px;}
.x58{left:717.942451px;}
.x32{left:722.535061px;}
.x59{left:784.421344px;}
.x15{left:902.729947px;}
.x1{left:905.069947px;}
.x2{left:997.769947px;}
.x3{left:1006.814947px;}
.x3a{left:1279.904947px;}
.x3b{left:1358.744947px;}
.x5e{left:1404.495063px;}
.x16{left:1477.409947px;}
.x19{left:1484.609947px;}
.x5a{left:1494.359947px;}
.x63{left:1523.519947px;}
.x64{left:1814.969947px;}
.x1e{left:1879.005077px;}
.x6{left:1880.924947px;}
.x3c{left:1911.000067px;}
.x4a{left:1923.150067px;}
.x4d{left:1936.334947px;}
.x4e{left:1938.060072px;}
.x4c{left:1965.089947px;}
.x66{left:1981.260060px;}
.x6f{left:2158.816794px;}
.x65{left:2336.069947px;}
.x55{left:2645.235077px;}
.x5b{left:2649.405077px;}
.x43{left:2706.645067px;}
.x46{left:2723.430067px;}
.x62{left:2849.654947px;}
.xc{left:3481.994947px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v7{vertical-align:-22.573306pt;}
.v8{vertical-align:-15.614423pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.360000pt;}
.v5{vertical-align:22.524649pt;}
.v3{vertical-align:25.600000pt;}
.v1{vertical-align:28.800000pt;}
.v4{vertical-align:81.013333pt;}
.ls1e{letter-spacing:-15.413333pt;}
.ls2b{letter-spacing:-10.400000pt;}
.ls27{letter-spacing:-8.160000pt;}
.ls2d{letter-spacing:-6.506667pt;}
.ls28{letter-spacing:-2.880000pt;}
.ls38{letter-spacing:-2.304000pt;}
.ls1c{letter-spacing:-2.266667pt;}
.ls3a{letter-spacing:-1.653333pt;}
.ls20{letter-spacing:-1.269333pt;}
.ls26{letter-spacing:-1.120000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.246933pt;}
.ls34{letter-spacing:-0.190796pt;}
.ls2f{letter-spacing:-0.190734pt;}
.ls36{letter-spacing:-0.190707pt;}
.ls33{letter-spacing:-0.176762pt;}
.ls32{letter-spacing:-0.163967pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.156399pt;}
.ls30{letter-spacing:-0.151356pt;}
.ls3e{letter-spacing:-0.146891pt;}
.ls21{letter-spacing:-0.145067pt;}
.ls29{letter-spacing:-0.122667pt;}
.ls31{letter-spacing:-0.092959pt;}
.ls2a{letter-spacing:-0.083733pt;}
.ls1d{letter-spacing:-0.002555pt;}
.ls39{letter-spacing:-0.000005pt;}
.ls19{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.044800pt;}
.ls3{letter-spacing:0.077867pt;}
.ls8{letter-spacing:0.123093pt;}
.ls18{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls3b{letter-spacing:0.162667pt;}
.ls35{letter-spacing:0.172768pt;}
.ls16{letter-spacing:0.186228pt;}
.ls2c{letter-spacing:0.215467pt;}
.lsc{letter-spacing:0.232533pt;}
.ls3c{letter-spacing:0.237867pt;}
.ls3d{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.258133pt;}
.ls4{letter-spacing:0.264533pt;}
.ls22{letter-spacing:0.295467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.458133pt;}
.ls6{letter-spacing:0.906667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls2{letter-spacing:15.461120pt;}
.ls5{letter-spacing:21.861120pt;}
.ls1{letter-spacing:23.141120pt;}
.ls7{letter-spacing:28.901120pt;}
.ls17{letter-spacing:141.300581pt;}
.ls15{letter-spacing:346.786707pt;}
.ls14{letter-spacing:371.521067pt;}
.ls13{letter-spacing:387.908907pt;}
.ls12{letter-spacing:409.313067pt;}
.ls11{letter-spacing:421.748267pt;}
.ls10{letter-spacing:829.601067pt;}
.lsf{letter-spacing:841.981867pt;}
.lsd{letter-spacing:851.823787pt;}
.lse{letter-spacing:912.707627pt;}
.ws4e{word-spacing:-128.000000pt;}
.ws3{word-spacing:-73.658880pt;}
.ws1c{word-spacing:-58.821120pt;}
.ws16{word-spacing:-44.160000pt;}
.ws18{word-spacing:-44.000000pt;}
.ws1a{word-spacing:-43.840000pt;}
.ws13{word-spacing:-43.680000pt;}
.ws11{word-spacing:-43.520000pt;}
.ws12{word-spacing:-43.360000pt;}
.ws15{word-spacing:-42.720000pt;}
.wsf{word-spacing:-41.765547pt;}
.wsc{word-spacing:-41.317013pt;}
.ws10{word-spacing:-41.154347pt;}
.ws4{word-spacing:-41.123413pt;}
.ws6{word-spacing:-41.117013pt;}
.ws1b{word-spacing:-40.960000pt;}
.wsa{word-spacing:-40.936747pt;}
.wsb{word-spacing:-40.858880pt;}
.ws8{word-spacing:-40.856325pt;}
.wse{word-spacing:-40.713813pt;}
.ws5{word-spacing:-40.611947pt;}
.wsd{word-spacing:-39.589547pt;}
.ws50{word-spacing:-38.595413pt;}
.ws7{word-spacing:-38.592213pt;}
.ws53{word-spacing:-38.568747pt;}
.ws51{word-spacing:-38.493547pt;}
.ws4f{word-spacing:-36.677547pt;}
.ws17{word-spacing:-35.680000pt;}
.ws30{word-spacing:-32.325120pt;}
.ws36{word-spacing:-32.323413pt;}
.ws33{word-spacing:-32.090880pt;}
.ws1d{word-spacing:-29.285120pt;}
.ws0{word-spacing:-26.496000pt;}
.ws9{word-spacing:-25.445547pt;}
.ws54{word-spacing:-24.000000pt;}
.ws48{word-spacing:-23.076584pt;}
.ws45{word-spacing:-21.364192pt;}
.ws41{word-spacing:-19.817719pt;}
.ws4d{word-spacing:-18.903061pt;}
.ws3e{word-spacing:-18.293555pt;}
.ws1{word-spacing:-17.664000pt;}
.ws42{word-spacing:-16.155847pt;}
.ws49{word-spacing:-15.677992pt;}
.ws2{word-spacing:-15.607040pt;}
.ws3f{word-spacing:-14.913314pt;}
.ws14{word-spacing:-12.640000pt;}
.ws19{word-spacing:-12.000000pt;}
.ws56{word-spacing:-10.904275pt;}
.ws52{word-spacing:-10.314880pt;}
.ws58{word-spacing:0.000000pt;}
.ws43{word-spacing:36.320000pt;}
.ws4a{word-spacing:45.451997pt;}
.ws4b{word-spacing:85.936297pt;}
.ws55{word-spacing:88.063815pt;}
.ws39{word-spacing:193.512320pt;}
.ws47{word-spacing:204.075136pt;}
.ws37{word-spacing:213.258880pt;}
.ws3a{word-spacing:250.947398pt;}
.ws38{word-spacing:253.701973pt;}
.ws3c{word-spacing:254.233571pt;}
.ws4c{word-spacing:262.977815pt;}
.ws32{word-spacing:265.755307pt;}
.ws40{word-spacing:275.028227pt;}
.ws3b{word-spacing:291.452314pt;}
.ws44{word-spacing:296.799313pt;}
.ws46{word-spacing:297.216860pt;}
.ws57{word-spacing:303.176310pt;}
.ws34{word-spacing:303.908053pt;}
.ws35{word-spacing:373.898880pt;}
.ws31{word-spacing:385.060693pt;}
.ws2e{word-spacing:515.361280pt;}
.ws2c{word-spacing:533.156693pt;}
.ws2f{word-spacing:538.932480pt;}
.ws29{word-spacing:543.892693pt;}
.ws28{word-spacing:544.108160pt;}
.ws23{word-spacing:555.041493pt;}
.ws24{word-spacing:567.076693pt;}
.ws26{word-spacing:586.401493pt;}
.ws27{word-spacing:618.348373pt;}
.ws2a{word-spacing:618.401493pt;}
.ws22{word-spacing:649.761920pt;}
.ws20{word-spacing:694.561707pt;}
.ws21{word-spacing:727.021440pt;}
.ws1e{word-spacing:732.810453pt;}
.ws25{word-spacing:764.931307pt;}
.ws2d{word-spacing:773.768747pt;}
.ws2b{word-spacing:815.818667pt;}
.ws1f{word-spacing:827.652907pt;}
.ws3d{word-spacing:1398.445440pt;}
._13{margin-left:-16.748160pt;}
._1c{margin-left:-15.848107pt;}
._c{margin-left:-13.657387pt;}
._4d{margin-left:-11.014827pt;}
._6{margin-left:-8.042667pt;}
._4{margin-left:-6.912000pt;}
._7{margin-left:-5.738667pt;}
._2{margin-left:-4.480000pt;}
._3{margin-left:-3.200000pt;}
._5{margin-left:-1.973333pt;}
._0{margin-left:-0.960000pt;}
._8{width:1.436587pt;}
._24{width:2.400000pt;}
._a{width:3.535360pt;}
._1f{width:5.375787pt;}
._f{width:6.917333pt;}
._10{width:7.985280pt;}
._1{width:8.960000pt;}
._53{width:12.504882pt;}
._d{width:15.168427pt;}
._e{width:16.273920pt;}
._23{width:18.456747pt;}
._22{width:19.520000pt;}
._14{width:21.501013pt;}
._15{width:22.446507pt;}
._b{width:23.927467pt;}
._9{width:25.050453pt;}
._16{width:29.386453pt;}
._12{width:31.033803pt;}
._11{width:32.326613pt;}
._20{width:37.606827pt;}
._21{width:38.560000pt;}
._17{width:46.091733pt;}
._19{width:47.023573pt;}
._1d{width:48.378240pt;}
._1e{width:49.483093pt;}
._4c{width:51.188267pt;}
._49{width:59.465600pt;}
._4b{width:65.237760pt;}
._1b{width:70.205867pt;}
._1a{width:71.380907pt;}
._45{width:82.512784pt;}
._18{width:87.542613pt;}
._55{width:97.540093pt;}
._4e{width:103.431271pt;}
._46{width:122.741657pt;}
._47{width:134.342848pt;}
._56{width:137.172464pt;}
._4a{width:171.304960pt;}
._54{width:186.537944pt;}
._4f{width:193.560993pt;}
._50{width:203.068436pt;}
._52{width:218.591866pt;}
._34{width:227.140907pt;}
._44{width:237.880481pt;}
._51{width:239.077864pt;}
._32{width:258.644267pt;}
._3b{width:270.829947pt;}
._3c{width:277.835783pt;}
._3d{width:282.823384pt;}
._48{width:292.252676pt;}
._3f{width:293.394686pt;}
._40{width:300.596904pt;}
._41{width:306.006513pt;}
._43{width:315.719815pt;}
._39{width:327.211306pt;}
._42{width:329.878728pt;}
._37{width:372.512853pt;}
._38{width:373.716907pt;}
._35{width:400.745600pt;}
._3a{width:426.253867pt;}
._36{width:532.334720pt;}
._31{width:579.003733pt;}
._2d{width:587.364907pt;}
._2a{width:609.818240pt;}
._2b{width:650.671787pt;}
._30{width:666.052480pt;}
._2f{width:675.791787pt;}
._2c{width:682.085333pt;}
._2e{width:714.192000pt;}
._33{width:754.000000pt;}
._25{width:773.313707pt;}
._28{width:785.846400pt;}
._27{width:802.281600pt;}
._29{width:803.432320pt;}
._26{width:809.265493pt;}
._3e{width:1922.304000pt;}
.fs2c{font-size:34.019202pt;}
.fs2b{font-size:39.224010pt;}
.fs10{font-size:41.846389pt;}
.fs27{font-size:52.062536pt;}
.fsf{font-size:53.645014pt;}
.fs23{font-size:55.432364pt;}
.fs1d{font-size:56.395656pt;}
.fs4{font-size:56.960000pt;}
.fs2a{font-size:57.614331pt;}
.fs14{font-size:58.114556pt;}
.fs22{font-size:59.933861pt;}
.fs1b{font-size:59.961829pt;}
.fs17{font-size:62.649517pt;}
.fs28{font-size:63.862992pt;}
.fs29{font-size:63.903824pt;}
.fs3{font-size:64.000000pt;}
.fs12{font-size:65.804154pt;}
.fs11{font-size:65.849036pt;}
.fs1f{font-size:67.592181pt;}
.fsc{font-size:67.601526pt;}
.fs1a{font-size:67.623722pt;}
.fs25{font-size:67.996623pt;}
.fs24{font-size:68.044004pt;}
.fs16{font-size:71.286759pt;}
.fs15{font-size:71.336456pt;}
.fs18{font-size:76.823875pt;}
.fs19{font-size:76.849611pt;}
.fs21{font-size:82.912575pt;}
.fse{font-size:82.924039pt;}
.fs1e{font-size:82.951265pt;}
.fs20{font-size:82.969785pt;}
.fsd{font-size:82.981858pt;}
.fs1c{font-size:83.009295pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fsb{font-size:117.120000pt;}
.fs13{font-size:128.000000pt;}
.fs26{font-size:138.880000pt;}
.fs7{font-size:149.120000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:213.120000pt;}
.fs6{font-size:266.880000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:3.383125pt;}
.y137{bottom:11.884311pt;}
.y12d{bottom:14.829365pt;}
.y136{bottom:20.388389pt;}
.y5b{bottom:27.078740pt;}
.y113{bottom:27.980952pt;}
.y135{bottom:28.889575pt;}
.y9e{bottom:29.141198pt;}
.yd9{bottom:31.102067pt;}
.ye7{bottom:31.624001pt;}
.y106{bottom:33.217962pt;}
.y44{bottom:33.222555pt;}
.y134{bottom:37.395098pt;}
.y121{bottom:39.383046pt;}
.y133{bottom:45.896284pt;}
.y50{bottom:52.381727pt;}
.y109{bottom:54.126986pt;}
.y132{bottom:54.400362pt;}
.y122{bottom:55.781082pt;}
.y93{bottom:56.552354pt;}
.yd1{bottom:60.652249pt;}
.ydd{bottom:61.174183pt;}
.y131{bottom:62.901548pt;}
.yfe{bottom:65.775207pt;}
.y3c{bottom:65.784301pt;}
.y130{bottom:71.493818pt;}
.y10a{bottom:71.587950pt;}
.y21{bottom:73.920000pt;}
.yb5{bottom:74.858197pt;}
.yd2{bottom:80.386586pt;}
.yde{bottom:80.908520pt;}
.y20{bottom:81.824000pt;}
.y63{bottom:85.907999pt;}
.yea{bottom:86.881742pt;}
.y3d{bottom:87.078501pt;}
.y77{bottom:87.159369pt;}
.y51{bottom:91.807312pt;}
.y94{bottom:95.002210pt;}
.ya6{bottom:97.713469pt;}
.y127{bottom:97.778098pt;}
.y84{bottom:97.974776pt;}
.yc3{bottom:112.920730pt;}
.y112{bottom:113.066013pt;}
.y10b{bottom:118.238264pt;}
.y2d{bottom:118.333333pt;}
.y64{bottom:119.166120pt;}
.yff{bottom:120.181188pt;}
.yb6{bottom:123.765768pt;}
.ydf{bottom:130.083433pt;}
.y123{bottom:134.999702pt;}
.y95{bottom:135.291849pt;}
.y52{bottom:136.957912pt;}
.y128{bottom:139.770776pt;}
.ya7{bottom:143.328797pt;}
.yeb{bottom:143.791958pt;}
.y78{bottom:146.790100pt;}
.y65{bottom:152.424242pt;}
.yd3{bottom:154.200278pt;}
.y85{bottom:155.463282pt;}
.yf2{bottom:159.344851pt;}
.y10c{bottom:164.799294pt;}
.ye6{bottom:166.105600pt;}
.y3e{bottom:166.726653pt;}
.yd8{bottom:172.160038pt;}
.yb7{bottom:172.676567pt;}
.y96{bottom:175.484657pt;}
.y12c{bottom:179.163942pt;}
.ye0{bottom:179.261825pt;}
.y53{bottom:182.104042pt;}
.y66{bottom:185.679384pt;}
.y100{bottom:186.530769pt;}
.y43{bottom:187.795576pt;}
.ya8{bottom:188.948965pt;}
.y6f{bottom:194.263182pt;}
.y7c{bottom:199.268659pt;}
.y5a{bottom:199.715577pt;}
.y8b{bottom:200.251878pt;}
.yec{bottom:200.818606pt;}
.y12b{bottom:202.503168pt;}
.y105{bottom:205.567700pt;}
.yad{bottom:205.897565pt;}
.y79{bottom:206.334427pt;}
.y10d{bottom:211.454226pt;}
.y9d{bottom:211.804237pt;}
.y86{bottom:212.859425pt;}
.y124{bottom:214.216877pt;}
.y97{bottom:215.774296pt;}
.y67{bottom:218.937505pt;}
.yb8{bottom:221.588979pt;}
.yc6{bottom:221.685810pt;}
.y12a{bottom:221.763848pt;}
.ybc{bottom:222.654117pt;}
.y54{bottom:227.163769pt;}
.yd4{bottom:228.019190pt;}
.ye1{bottom:228.436737pt;}
.yf3{bottom:231.809839pt;}
.yfa{bottom:234.176012pt;}
.ya9{bottom:234.564292pt;}
.ye9{bottom:236.545940pt;}
.yf9{bottom:237.672689pt;}
.y3f{bottom:246.380437pt;}
.y68{bottom:252.106243pt;}
.y101{bottom:252.878472pt;}
.y98{bottom:256.063935pt;}
.yed{bottom:257.734456pt;}
.y10e{bottom:258.104539pt;}
.yc4{bottom:264.977200pt;}
.y7a{bottom:265.963669pt;}
.y87{bottom:270.254079pt;}
.yb9{bottom:270.399719pt;}
.y55{bottom:272.309900pt;}
.ye2{bottom:277.611650pt;}
.yaa{bottom:280.182847pt;}
.y69{bottom:285.364364pt;}
.y125{bottom:293.435497pt;}
.yc2{bottom:294.029637pt;}
.y99{bottom:296.353574pt;}
.y72{bottom:297.076586pt;}
.y5e{bottom:298.149188pt;}
.y75{bottom:299.132407pt;}
.y8d{bottom:299.579325pt;}
.y61{bottom:300.115626pt;}
.yb3{bottom:301.877765pt;}
.yd5{bottom:301.942489pt;}
.ycc{bottom:303.136564pt;}
.y82{bottom:303.780350pt;}
.y1f{bottom:304.253333pt;}
.yf4{bottom:304.278582pt;}
.y10f{bottom:304.757931pt;}
.y7f{bottom:305.925555pt;}
.ya4{bottom:308.655914pt;}
.y71{bottom:310.041667pt;}
.y5d{bottom:311.114269pt;}
.yc1{bottom:311.948157pt;}
.y74{bottom:312.097488pt;}
.y8c{bottom:312.544405pt;}
.y60{bottom:313.080707pt;}
.yee{bottom:314.644673pt;}
.y81{bottom:316.745431pt;}
.y56{bottom:317.460499pt;}
.y6a{bottom:318.622485pt;}
.y7e{bottom:318.890636pt;}
.y102{bottom:319.228053pt;}
.yba{bottom:319.310518pt;}
.yb2{bottom:319.794671pt;}
.ycb{bottom:321.053470pt;}
.y70{bottom:323.002278pt;}
.y5c{bottom:324.074881pt;}
.y73{bottom:325.058099pt;}
.y7b{bottom:325.505017pt;}
.yab{bottom:325.895005pt;}
.y40{bottom:325.921583pt;}
.y5f{bottom:326.041318pt;}
.ya3{bottom:326.572820pt;}
.ye3{bottom:326.791782pt;}
.y88{bottom:327.742585pt;}
.y80{bottom:329.709022pt;}
.yc0{bottom:329.865064pt;}
.y7d{bottom:331.854227pt;}
.y129{bottom:336.035403pt;}
.y9a{bottom:336.551223pt;}
.yb1{bottom:337.713192pt;}
.yca{bottom:338.971991pt;}
.yc5{bottom:341.102266pt;}
.ya2{bottom:344.491340pt;}
.y12e{bottom:345.753936pt;}
.ybf{bottom:347.783584pt;}
.y110{bottom:351.315883pt;}
.y6b{bottom:351.880607pt;}
.y1e{bottom:352.253333pt;}
.y8a{bottom:353.578894pt;}
.y6e{bottom:354.830263pt;}
.y58{bottom:355.366564pt;}
.yb0{bottom:355.630098pt;}
.yc9{bottom:356.888897pt;}
.ya1{bottom:362.408247pt;}
.y57{bottom:362.609610pt;}
.ybe{bottom:365.700491pt;}
.y89{bottom:366.453101pt;}
.y6d{bottom:367.704471pt;}
.ybb{bottom:368.218089pt;}
.y59{bottom:368.240772pt;}
.yac{bottom:371.510332pt;}
.yef{bottom:371.558646pt;}
.y49{bottom:371.887242pt;}
.y126{bottom:372.649780pt;}
.yaf{bottom:373.548618pt;}
.yc8{bottom:374.807418pt;}
.yd6{bottom:375.757921pt;}
.ye4{bottom:375.966695pt;}
.yf5{bottom:376.741691pt;}
.y9b{bottom:376.840862pt;}
.ya0{bottom:380.326767pt;}
.y139{bottom:383.235781pt;}
.ybd{bottom:383.619011pt;}
.y6c{bottom:385.138728pt;}
.y103{bottom:385.575757pt;}
.ydb{bottom:390.584335pt;}
.yae{bottom:391.465525pt;}
.yc7{bottom:392.724324pt;}
.y48{bottom:392.730890pt;}
.y111{bottom:397.970815pt;}
.y9f{bottom:398.243674pt;}
.y1d{bottom:400.253333pt;}
.y41{bottom:405.571613pt;}
.y114{bottom:410.719797pt;}
.y47{bottom:413.572660pt;}
.yda{bottom:414.180986pt;}
.y9c{bottom:417.130501pt;}
.ye5{bottom:425.145087pt;}
.yf0{bottom:428.581537pt;}
.y46{bottom:434.416308pt;}
.yf8{bottom:437.375814pt;}
.y1c{bottom:448.253333pt;}
.yf6{bottom:449.206679pt;}
.yd7{bottom:449.576833pt;}
.y104{bottom:451.925338pt;}
.y45{bottom:455.254323pt;}
.yf7{bottom:456.308954pt;}
.y42{bottom:485.225397pt;}
.yf1{bottom:485.497388pt;}
.y4a{bottom:499.305137pt;}
.y107{bottom:502.393291pt;}
.yfb{bottom:507.360075pt;}
.y1b{bottom:537.760000pt;}
.y116{bottom:593.853333pt;}
.y11c{bottom:603.546667pt;}
.y83{bottom:611.724799pt;}
.y76{bottom:617.004799pt;}
.y11b{bottom:645.146667pt;}
.y11a{bottom:686.746667pt;}
.y119{bottom:728.346667pt;}
.y118{bottom:769.946667pt;}
.y115{bottom:786.373333pt;}
.y117{bottom:811.546667pt;}
.ye8{bottom:860.723525pt;}
.y11e{bottom:928.933333pt;}
.y11d{bottom:957.733333pt;}
.y108{bottom:967.895170pt;}
.y120{bottom:987.772542pt;}
.y62{bottom:1006.324799pt;}
.y4f{bottom:1007.044799pt;}
.y11f{bottom:1113.733333pt;}
.y12f{bottom:1213.617827pt;}
.yfc{bottom:1440.320000pt;}
.y8e{bottom:1444.893333pt;}
.y1a{bottom:1551.840000pt;}
.yd0{bottom:1603.297554pt;}
.ydc{bottom:1607.657554pt;}
.y91{bottom:1624.573333pt;}
.y4d{bottom:1638.146667pt;}
.y90{bottom:1662.973333pt;}
.y4c{bottom:1678.626667pt;}
.y4b{bottom:1719.106667pt;}
.y8f{bottom:1787.266667pt;}
.ycf{bottom:2108.866667pt;}
.y38{bottom:2147.013333pt;}
.y37{bottom:2167.226667pt;}
.y3b{bottom:2206.256564pt;}
.yfd{bottom:2207.696440pt;}
.y36{bottom:2224.666667pt;}
.y35{bottom:2244.933333pt;}
.y34{bottom:2302.333333pt;}
.y33{bottom:2322.586667pt;}
.y32{bottom:2380.026667pt;}
.y31{bottom:2400.253333pt;}
.y2c{bottom:2437.280000pt;}
.y30{bottom:2457.693333pt;}
.y2f{bottom:2477.946667pt;}
.y2e{bottom:2535.386667pt;}
.y2b{bottom:2555.613333pt;}
.y39{bottom:2626.013333pt;}
.y4e{bottom:2685.986667pt;}
.y2a{bottom:2747.333333pt;}
.yce{bottom:2766.533333pt;}
.y29{bottom:2784.320000pt;}
.y28{bottom:2821.346667pt;}
.y27{bottom:2858.333333pt;}
.yb4{bottom:2863.744076pt;}
.y26{bottom:2895.333333pt;}
.y25{bottom:2932.346667pt;}
.y24{bottom:2969.346667pt;}
.y23{bottom:3006.333333pt;}
.y22{bottom:3052.026667pt;}
.y3a{bottom:3117.213333pt;}
.y19{bottom:3182.560000pt;}
.y18{bottom:3260.893333pt;}
.y92{bottom:3292.690743pt;}
.ya5{bottom:3304.117410pt;}
.y17{bottom:3305.693333pt;}
.y16{bottom:3350.533333pt;}
.y15{bottom:3395.333333pt;}
.y14{bottom:3440.133333pt;}
.y13{bottom:3484.933333pt;}
.y12{bottom:3529.733333pt;}
.y11{bottom:3574.533333pt;}
.y10{bottom:3619.333333pt;}
.yf{bottom:3664.133333pt;}
.ye{bottom:3708.933333pt;}
.yd{bottom:3753.733333pt;}
.ycd{bottom:3782.306667pt;}
.yc{bottom:3798.533333pt;}
.yb{bottom:3843.333333pt;}
.ya{bottom:3905.306667pt;}
.y9{bottom:3979.546667pt;}
.y8{bottom:4014.106667pt;}
.y7{bottom:4039.706667pt;}
.y6{bottom:4065.306667pt;}
.y5{bottom:4085.146667pt;}
.y4{bottom:4113.946667pt;}
.y3{bottom:4128.453333pt;}
.y2{bottom:4224.453333pt;}
.y1{bottom:4320.453333pt;}
.h21{height:29.218914pt;}
.h47{height:35.480965pt;}
.h23{height:39.212201pt;}
.h22{height:41.069942pt;}
.h20{height:42.173314pt;}
.h1d{height:43.644476pt;}
.h1e{height:48.132816pt;}
.h5{height:49.255937pt;}
.h31{height:49.430035pt;}
.h42{height:54.299598pt;}
.h1b{height:55.950074pt;}
.h2e{height:56.154952pt;}
.h3c{height:57.814223pt;}
.h45{height:60.089947pt;}
.h27{height:60.611666pt;}
.h34{height:60.676228pt;}
.h3a{height:62.509144pt;}
.h32{height:62.538314pt;}
.h2b{height:65.341489pt;}
.h1c{height:66.169125pt;}
.h43{height:66.607105pt;}
.h44{height:66.649691pt;}
.h1f{height:68.631676pt;}
.h37{height:70.496532pt;}
.h17{height:70.506280pt;}
.h30{height:70.529429pt;}
.h3e{height:70.918352pt;}
.h3d{height:70.967770pt;}
.h29{height:74.349861pt;}
.h28{height:74.401694pt;}
.h2c{height:80.124901pt;}
.h2d{height:80.151742pt;}
.h46{height:81.556447pt;}
.h6{height:83.062500pt;}
.h4{height:84.175000pt;}
.h39{height:86.475224pt;}
.h19{height:86.487181pt;}
.h35{height:86.515577pt;}
.h38{height:86.534893pt;}
.h18{height:86.547484pt;}
.h33{height:86.576100pt;}
.hb{height:92.424063pt;}
.h40{height:94.218750pt;}
.h12{height:101.279062pt;}
.hc{height:101.336250pt;}
.h25{height:110.750000pt;}
.h3f{height:120.163750pt;}
.h24{height:126.110000pt;}
.h8{height:128.950937pt;}
.h9{height:138.359375pt;}
.h15{height:138.437500pt;}
.h13{height:182.132396pt;}
.hf{height:182.185729pt;}
.h11{height:182.292396pt;}
.h14{height:182.345729pt;}
.he{height:182.349583pt;}
.ha{height:184.398750pt;}
.h7{height:230.913750pt;}
.hd{height:260.480000pt;}
.h10{height:263.199062pt;}
.h2{height:276.875000pt;}
.h3{height:276.985750pt;}
.h41{height:415.072993pt;}
.h1a{height:440.110924pt;}
.h3b{height:454.774579pt;}
.h26{height:476.779646pt;}
.h2a{height:513.985077pt;}
.h36{height:554.535355pt;}
.h16{height:554.612028pt;}
.h2f{height:554.794126pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.wc{width:133.436774pt;}
.w3{width:135.040000pt;}
.w5{width:575.396425pt;}
.wb{width:594.507230pt;}
.wa{width:594.576306pt;}
.w6{width:623.346127pt;}
.w7{width:671.295829pt;}
.w9{width:724.999495pt;}
.w4{width:725.104985pt;}
.w8{width:725.344733pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x70{left:3.823640pt;}
.x14{left:15.266667pt;}
.x6c{left:27.086645pt;}
.x68{left:33.770419pt;}
.x67{left:40.977900pt;}
.x35{left:55.284151pt;}
.x40{left:60.569450pt;}
.x34{left:62.175849pt;}
.x2f{left:63.159738pt;}
.x3f{left:68.035457pt;}
.x2c{left:70.046964pt;}
.x60{left:72.936419pt;}
.x51{left:73.999417pt;}
.x3e{left:76.078008pt;}
.x2b{left:77.469366pt;}
.x5d{left:79.806670pt;}
.x50{left:82.032775pt;}
.x48{left:84.120558pt;}
.x57{left:88.186570pt;}
.x22{left:89.171870pt;}
.x54{left:90.380927pt;}
.x47{left:92.166339pt;}
.x21{left:97.852916pt;}
.x4f{left:99.360409pt;}
.x20{left:107.212139pt;}
.xb{left:109.055953pt;}
.x5c{left:110.802944pt;}
.x29{left:114.838721pt;}
.x6e{left:122.496796pt;}
.x5{left:124.607953pt;}
.x1d{left:126.463953pt;}
.x4{left:129.471953pt;}
.x8{left:131.487953pt;}
.x2a{left:137.230214pt;}
.xa{left:138.813286pt;}
.x5f{left:142.174258pt;}
.x37{left:144.564662pt;}
.x69{left:147.498740pt;}
.x3d{left:148.859861pt;}
.x9{left:149.946619pt;}
.x1f{left:151.175316pt;}
.x26{left:156.413286pt;}
.x56{left:159.909217pt;}
.x12{left:160.826619pt;}
.x4b{left:162.328711pt;}
.x25{left:169.213286pt;}
.x49{left:172.021761pt;}
.x31{left:174.801373pt;}
.x1c{left:181.146619pt;}
.x1b{left:185.306619pt;}
.x1a{left:186.266619pt;}
.x18{left:189.306619pt;}
.x71{left:196.722854pt;}
.xd{left:219.013286pt;}
.x6d{left:222.941477pt;}
.x24{left:233.022494pt;}
.x10{left:251.813286pt;}
.xe{left:259.813286pt;}
.x11{left:263.173286pt;}
.xf{left:265.573286pt;}
.x61{left:274.640708pt;}
.x41{left:288.026673pt;}
.x23{left:292.884327pt;}
.x2e{left:293.780438pt;}
.x39{left:299.133286pt;}
.x52{left:310.286922pt;}
.x38{left:320.866619pt;}
.x17{left:346.813286pt;}
.x36{left:362.842022pt;}
.x33{left:376.352613pt;}
.x30{left:377.425947pt;}
.x44{left:384.261121pt;}
.x42{left:409.071905pt;}
.x45{left:416.823761pt;}
.x53{left:440.538975pt;}
.x7{left:443.226619pt;}
.x2d{left:445.861419pt;}
.x28{left:448.026619pt;}
.x6b{left:477.311159pt;}
.x27{left:500.933286pt;}
.x13{left:512.960000pt;}
.x6a{left:514.639024pt;}
.x58{left:638.171068pt;}
.x32{left:642.253388pt;}
.x59{left:697.263417pt;}
.x15{left:802.426619pt;}
.x1{left:804.506619pt;}
.x2{left:886.906619pt;}
.x3{left:894.946619pt;}
.x3a{left:1137.693286pt;}
.x3b{left:1207.773286pt;}
.x5e{left:1248.440056pt;}
.x16{left:1313.253286pt;}
.x19{left:1319.653286pt;}
.x5a{left:1328.319953pt;}
.x63{left:1354.239953pt;}
.x64{left:1613.306619pt;}
.x1e{left:1670.226735pt;}
.x6{left:1671.933286pt;}
.x3c{left:1698.666726pt;}
.x4a{left:1709.466726pt;}
.x4d{left:1721.186619pt;}
.x4e{left:1722.720064pt;}
.x4c{left:1746.746619pt;}
.x66{left:1761.120053pt;}
.x6f{left:1918.948262pt;}
.x65{left:2076.506619pt;}
.x55{left:2351.320069pt;}
.x5b{left:2355.026735pt;}
.x43{left:2405.906726pt;}
.x46{left:2420.826726pt;}
.x62{left:2533.026619pt;}
.xc{left:3095.106619pt;}
}




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