
    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_b9e6f5bde0adb83a4a027d1d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_aa44a8a9cc15ea80da3f4035.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_69653a0b4ab747a1c336a2ae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060547;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_cabf4295634f1c1e2a9e5d16.woff')format("woff");}.ff4{font-family:ff4;line-height:1.335449;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_95d125bf4514248161dd5162.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_d3869f0a9b34a22e63900b98.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.980000px;}
.v3{vertical-align:15.155400px;}
.v1{vertical-align:16.989000px;}
.v4{vertical-align:21.010800px;}
.ls61{letter-spacing:-6.174000px;}
.ls5b{letter-spacing:-5.727000px;}
.ls1f{letter-spacing:-4.071000px;}
.ls51{letter-spacing:-3.726000px;}
.ls45{letter-spacing:-3.657000px;}
.ls3a{letter-spacing:-3.381000px;}
.ls12{letter-spacing:-3.321000px;}
.ls4d{letter-spacing:-3.243000px;}
.ls47{letter-spacing:-3.174000px;}
.ls16{letter-spacing:-2.898000px;}
.ls52{letter-spacing:-2.829000px;}
.ls3d{letter-spacing:-2.760000px;}
.ls55{letter-spacing:-2.691000px;}
.ls53{letter-spacing:-2.553000px;}
.ls43{letter-spacing:-2.484000px;}
.ls4e{letter-spacing:-2.277000px;}
.ls3b{letter-spacing:-2.208000px;}
.ls4c{letter-spacing:-2.139000px;}
.ls13{letter-spacing:-2.109000px;}
.ls17{letter-spacing:-2.001000px;}
.ls54{letter-spacing:-1.932000px;}
.ls44{letter-spacing:-1.863000px;}
.ls49{letter-spacing:-1.725000px;}
.ls5d{letter-spacing:-1.620000px;}
.ls37{letter-spacing:-1.587000px;}
.ls4a{letter-spacing:-1.518000px;}
.ls46{letter-spacing:-1.449000px;}
.ls8{letter-spacing:-1.404000px;}
.ls48{letter-spacing:-1.311000px;}
.ls9{letter-spacing:-1.296000px;}
.ls10{letter-spacing:-1.215000px;}
.ls1e{letter-spacing:-1.173000px;}
.ls62{letter-spacing:-1.028412px;}
.ls20{letter-spacing:-0.897000px;}
.lsf{letter-spacing:-0.855000px;}
.ls36{letter-spacing:-0.627000px;}
.ls5c{letter-spacing:-0.570000px;}
.ls1d{letter-spacing:-0.483000px;}
.ls50{letter-spacing:-0.345000px;}
.lsa{letter-spacing:-0.300000px;}
.ls42{letter-spacing:-0.276000px;}
.ls7{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.171000px;}
.ls11{letter-spacing:-0.138000px;}
.ls4f{letter-spacing:-0.069000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.276000px;}
.ls1b{letter-spacing:0.552000px;}
.ls32{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.848700px;}
.ls5{letter-spacing:0.882000px;}
.ls33{letter-spacing:0.960000px;}
.ls14{letter-spacing:1.053000px;}
.ls31{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.482000px;}
.ls3c{letter-spacing:1.518000px;}
.ls35{letter-spacing:1.620000px;}
.ls34{letter-spacing:1.740000px;}
.ls3e{letter-spacing:1.794000px;}
.ls6{letter-spacing:2.400000px;}
.ls2d{letter-spacing:3.056700px;}
.lsc{letter-spacing:4.200000px;}
.ls0{letter-spacing:4.950000px;}
.ls3f{letter-spacing:5.271600px;}
.ls1a{letter-spacing:5.313000px;}
.ls4b{letter-spacing:5.475000px;}
.lsd{letter-spacing:5.760000px;}
.ls1{letter-spacing:6.000000px;}
.lsb{letter-spacing:6.120000px;}
.ls2{letter-spacing:6.300000px;}
.ls63{letter-spacing:6.375000px;}
.ls5f{letter-spacing:6.867000px;}
.ls41{letter-spacing:6.969000px;}
.ls18{letter-spacing:7.107000px;}
.ls30{letter-spacing:7.350000px;}
.ls1c{letter-spacing:7.725000px;}
.ls56{letter-spacing:7.783200px;}
.ls60{letter-spacing:7.950000px;}
.ls5e{letter-spacing:8.100000px;}
.lse{letter-spacing:8.250000px;}
.ls40{letter-spacing:8.325000px;}
.ls57{letter-spacing:8.700000px;}
.ls59{letter-spacing:9.577200px;}
.ls58{letter-spacing:9.584100px;}
.ls38{letter-spacing:9.729000px;}
.ls19{letter-spacing:10.764000px;}
.ls2f{letter-spacing:14.807400px;}
.ls5a{letter-spacing:15.952800px;}
.ls26{letter-spacing:80.040000px;}
.ls29{letter-spacing:117.600000px;}
.ls28{letter-spacing:159.973800px;}
.ls2c{letter-spacing:161.622000px;}
.ls22{letter-spacing:161.782800px;}
.ls23{letter-spacing:162.093000px;}
.ls24{letter-spacing:162.167400px;}
.ls25{letter-spacing:162.481800px;}
.ls27{letter-spacing:164.820000px;}
.ls2a{letter-spacing:167.220000px;}
.ls2b{letter-spacing:167.340000px;}
.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;}
}
.ws5c{word-spacing:-29.775000px;}
.ws3a{word-spacing:-29.400000px;}
.ws10{word-spacing:-29.325000px;}
.ws61{word-spacing:-29.175000px;}
.ws66{word-spacing:-29.025000px;}
.ws1c{word-spacing:-28.800000px;}
.ws23{word-spacing:-28.425000px;}
.ws6a{word-spacing:-27.450000px;}
.ws4a{word-spacing:-26.550000px;}
.ws0{word-spacing:-26.025000px;}
.ws62{word-spacing:-24.570000px;}
.wsb{word-spacing:-22.980000px;}
.ws69{word-spacing:-22.860000px;}
.wsd{word-spacing:-22.620000px;}
.ws11{word-spacing:-21.546000px;}
.ws21{word-spacing:-21.465000px;}
.ws5e{word-spacing:-21.141000px;}
.ws14{word-spacing:-19.440000px;}
.ws3b{word-spacing:-19.389000px;}
.ws2{word-spacing:-19.260000px;}
.ws36{word-spacing:-18.561000px;}
.ws1{word-spacing:-18.102000px;}
.ws19{word-spacing:-17.043000px;}
.ws4d{word-spacing:-16.974000px;}
.ws13{word-spacing:-16.905000px;}
.ws3d{word-spacing:-16.767000px;}
.ws4e{word-spacing:-16.698000px;}
.ws1d{word-spacing:-16.560000px;}
.ws20{word-spacing:-16.146000px;}
.ws1e{word-spacing:-15.870000px;}
.ws41{word-spacing:-15.594000px;}
.ws64{word-spacing:-15.561000px;}
.ws56{word-spacing:-15.525000px;}
.ws32{word-spacing:-15.456000px;}
.ws48{word-spacing:-15.318000px;}
.ws3e{word-spacing:-15.180000px;}
.ws1b{word-spacing:-15.042000px;}
.ws3c{word-spacing:-14.835000px;}
.wsc{word-spacing:-14.820000px;}
.ws4c{word-spacing:-14.766000px;}
.ws3f{word-spacing:-14.559000px;}
.ws5d{word-spacing:-14.283000px;}
.ws4f{word-spacing:-14.214000px;}
.ws1a{word-spacing:-14.145000px;}
.ws42{word-spacing:-13.869000px;}
.ws4b{word-spacing:-13.800000px;}
.ws35{word-spacing:-13.662000px;}
.ws40{word-spacing:-13.386000px;}
.ws1f{word-spacing:-12.972000px;}
.ws12{word-spacing:-11.303787px;}
.ws63{word-spacing:-10.320849px;}
.ws68{word-spacing:-8.043651px;}
.ws43{word-spacing:-6.969000px;}
.ws65{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.wsf{word-spacing:-4.200000px;}
.ws7{word-spacing:-2.400000px;}
.ws22{word-spacing:-1.482000px;}
.ws5{word-spacing:-1.260000px;}
.ws18{word-spacing:-1.053000px;}
.ws6{word-spacing:-0.882000px;}
.ws4{word-spacing:0.000000px;}
.ws52{word-spacing:0.069000px;}
.ws16{word-spacing:0.138000px;}
.ws37{word-spacing:0.171000px;}
.ws8{word-spacing:0.180000px;}
.ws44{word-spacing:0.276000px;}
.wse{word-spacing:0.300000px;}
.ws53{word-spacing:0.345000px;}
.ws60{word-spacing:0.570000px;}
.ws33{word-spacing:0.627000px;}
.ws15{word-spacing:0.855000px;}
.ws55{word-spacing:0.897000px;}
.wsa{word-spacing:1.296000px;}
.ws46{word-spacing:1.311000px;}
.ws9{word-spacing:1.404000px;}
.ws47{word-spacing:1.449000px;}
.ws49{word-spacing:1.518000px;}
.ws58{word-spacing:1.587000px;}
.ws59{word-spacing:1.932000px;}
.ws17{word-spacing:2.109000px;}
.ws51{word-spacing:2.139000px;}
.ws38{word-spacing:2.208000px;}
.ws45{word-spacing:2.484000px;}
.ws57{word-spacing:2.553000px;}
.ws5b{word-spacing:2.691000px;}
.ws39{word-spacing:2.760000px;}
.ws50{word-spacing:3.174000px;}
.ws54{word-spacing:3.726000px;}
.ws5f{word-spacing:5.727000px;}
.ws67{word-spacing:6.174000px;}
.ws5a{word-spacing:9.039000px;}
.ws34{word-spacing:14.835000px;}
.ws28{word-spacing:86.520000px;}
.ws24{word-spacing:92.520000px;}
.ws29{word-spacing:135.510000px;}
.ws2e{word-spacing:136.080000px;}
.ws2f{word-spacing:136.320000px;}
.ws2a{word-spacing:136.500000px;}
.ws2d{word-spacing:138.120000px;}
.ws2b{word-spacing:140.940000px;}
.ws30{word-spacing:143.400000px;}
.ws2c{word-spacing:143.640000px;}
.ws25{word-spacing:144.180000px;}
.ws26{word-spacing:144.660000px;}
.ws31{word-spacing:146.820000px;}
.ws27{word-spacing:146.940000px;}
._2d{margin-left:-17.346300px;}
._c{margin-left:-9.737400px;}
._25{margin-left:-8.486100px;}
._27{margin-left:-7.431300px;}
._6{margin-left:-6.058200px;}
._b{margin-left:-4.878000px;}
._5{margin-left:-3.832200px;}
._9{margin-left:-2.826000px;}
._4{margin-left:-1.819800px;}
._2{width:1.056000px;}
._0{width:2.512200px;}
._a{width:3.542100px;}
._7{width:5.100000px;}
._3{width:6.318000px;}
._8{width:7.374000px;}
._18{width:8.421000px;}
._f{width:9.696000px;}
._11{width:10.962000px;}
._10{width:12.048000px;}
._13{width:13.397400px;}
._1c{width:14.454900px;}
._1a{width:16.395900px;}
._19{width:17.448300px;}
._23{width:19.016400px;}
._1d{width:20.568300px;}
._24{width:22.110600px;}
._17{width:23.854800px;}
._16{width:24.927600px;}
._26{width:26.833800px;}
._2c{width:32.238000px;}
._15{width:85.554000px;}
._2b{width:92.303100px;}
._20{width:144.635400px;}
._21{width:155.160000px;}
._22{width:164.580000px;}
._12{width:260.610000px;}
._28{width:486.405000px;}
._2a{width:487.489800px;}
._14{width:489.660000px;}
._1e{width:490.725000px;}
._1{width:493.740000px;}
._2e{width:496.396200px;}
._d{width:578.400000px;}
._e{width:993.594000px;}
._1b{width:996.219000px;}
._1f{width:1000.269000px;}
._29{width:1002.249000px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:34.980000px;}
.fsc{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8b{bottom:106.165350px;}
.y42{bottom:106.220700px;}
.y178{bottom:106.244400px;}
.y119{bottom:106.268550px;}
.y197{bottom:106.277700px;}
.y113{bottom:106.279200px;}
.yaf{bottom:106.291650px;}
.y158{bottom:106.301550px;}
.yca{bottom:106.362750px;}
.y63{bottom:106.391100px;}
.yed{bottom:106.446750px;}
.y196{bottom:125.867700px;}
.y41{bottom:126.215700px;}
.y138{bottom:126.441150px;}
.y8a{bottom:126.589350px;}
.y118{bottom:126.640800px;}
.y62{bottom:126.642600px;}
.yae{bottom:126.663900px;}
.yc9{bottom:126.735000px;}
.y157{bottom:127.090950px;}
.y112{bottom:127.237950px;}
.yec{bottom:127.388250px;}
.y177{bottom:127.711650px;}
.y1b9{bottom:144.192750px;}
.y195{bottom:145.457700px;}
.y40{bottom:146.210700px;}
.y137{bottom:146.813400px;}
.y117{bottom:147.013050px;}
.y89{bottom:147.013350px;}
.yc8{bottom:147.107250px;}
.y111{bottom:148.196700px;}
.yeb{bottom:148.329750px;}
.y156{bottom:156.338700px;}
.y176{bottom:157.683900px;}
.y61{bottom:159.648450px;}
.y1b8{bottom:164.442750px;}
.y194{bottom:165.047700px;}
.y1a{bottom:165.556200px;}
.y3f{bottom:166.205700px;}
.y136{bottom:167.185650px;}
.y116{bottom:167.385300px;}
.y88{bottom:167.437350px;}
.yc7{bottom:167.479500px;}
.yad{bottom:168.288300px;}
.y110{bottom:169.155450px;}
.yea{bottom:169.271250px;}
.y155{bottom:177.081450px;}
.y175{bottom:179.151150px;}
.y1b7{bottom:184.692750px;}
.y3e{bottom:186.200700px;}
.y135{bottom:187.557900px;}
.y115{bottom:187.757550px;}
.yc6{bottom:187.851750px;}
.y87{bottom:187.861350px;}
.y10f{bottom:190.114200px;}
.ye9{bottom:190.212750px;}
.y19{bottom:194.032200px;}
.y60{bottom:196.404300px;}
.y193{bottom:197.387700px;}
.y154{bottom:197.824200px;}
.y174{bottom:200.618400px;}
.y1b6{bottom:204.942750px;}
.y3d{bottom:206.195700px;}
.y134{bottom:207.930150px;}
.yc5{bottom:208.224000px;}
.y86{bottom:208.285350px;}
.y10e{bottom:211.072950px;}
.ye8{bottom:211.154250px;}
.y1b5{bottom:225.192750px;}
.y3c{bottom:226.190700px;}
.y153{bottom:227.071950px;}
.y133{bottom:228.302400px;}
.yc4{bottom:228.596250px;}
.y85{bottom:228.709350px;}
.y114{bottom:229.381950px;}
.yac{bottom:230.417100px;}
.y173{bottom:230.590650px;}
.y10d{bottom:232.031700px;}
.ye7{bottom:232.095750px;}
.y18{bottom:243.740400px;}
.y3b{bottom:246.185700px;}
.y152{bottom:247.814700px;}
.y132{bottom:248.674650px;}
.yc3{bottom:248.968500px;}
.y84{bottom:249.133350px;}
.yab{bottom:250.789350px;}
.y172{bottom:252.057900px;}
.y10c{bottom:252.990450px;}
.ye6{bottom:253.037250px;}
.y192{bottom:255.231600px;}
.y1b4{bottom:258.192750px;}
.y5f{bottom:258.643650px;}
.y3a{bottom:266.180700px;}
.y131{bottom:269.046900px;}
.yc2{bottom:269.340750px;}
.y83{bottom:269.557350px;}
.yaa{bottom:271.161600px;}
.y171{bottom:273.525150px;}
.y10b{bottom:273.949200px;}
.ye5{bottom:273.978750px;}
.y17{bottom:276.734400px;}
.y151{bottom:277.062450px;}
.y5e{bottom:278.895150px;}
.y191{bottom:282.321600px;}
.y39{bottom:286.175700px;}
.y130{bottom:289.419150px;}
.yc1{bottom:289.713000px;}
.y82{bottom:289.981350px;}
.ya9{bottom:291.533850px;}
.y10a{bottom:294.907950px;}
.ye4{bottom:294.920250px;}
.y150{bottom:297.805200px;}
.y5d{bottom:299.146650px;}
.y1b3{bottom:299.697750px;}
.y170{bottom:303.497400px;}
.y38{bottom:306.170700px;}
.y16{bottom:309.728400px;}
.y12f{bottom:309.791400px;}
.yc0{bottom:310.085250px;}
.y81{bottom:310.405350px;}
.ya8{bottom:311.906100px;}
.ye3{bottom:315.861750px;}
.y109{bottom:315.866700px;}
.y1b2{bottom:319.197750px;}
.y5c{bottom:319.398150px;}
.y16f{bottom:324.964650px;}
.y37{bottom:326.165700px;}
.y14f{bottom:327.052950px;}
.y12e{bottom:330.163650px;}
.ybf{bottom:330.457500px;}
.y190{bottom:330.658800px;}
.y80{bottom:330.829350px;}
.ya7{bottom:332.278350px;}
.ye2{bottom:336.803250px;}
.y108{bottom:336.825450px;}
.y1b1{bottom:338.697750px;}
.y5b{bottom:339.649650px;}
.y15{bottom:342.722400px;}
.y36{bottom:346.160700px;}
.y14e{bottom:347.795700px;}
.y12d{bottom:350.535900px;}
.ybe{bottom:350.829750px;}
.y18f{bottom:350.992050px;}
.y7f{bottom:351.253350px;}
.ya6{bottom:352.650600px;}
.y16e{bottom:354.936900px;}
.ye1{bottom:357.744750px;}
.y107{bottom:357.784200px;}
.y1b0{bottom:358.197750px;}
.y5a{bottom:359.901150px;}
.y35{bottom:366.155700px;}
.y14d{bottom:368.538450px;}
.y12c{bottom:370.908150px;}
.ybd{bottom:371.202000px;}
.y18e{bottom:371.325300px;}
.y7e{bottom:371.677350px;}
.ya5{bottom:373.022850px;}
.y16d{bottom:376.404150px;}
.y1af{bottom:377.697750px;}
.ye0{bottom:378.686250px;}
.y106{bottom:378.742950px;}
.y59{bottom:380.152650px;}
.y34{bottom:386.150700px;}
.y14c{bottom:389.281200px;}
.y12b{bottom:391.280400px;}
.ybc{bottom:391.574250px;}
.y7d{bottom:392.101350px;}
.ya4{bottom:393.395100px;}
.y1ae{bottom:397.197750px;}
.ydf{bottom:399.627750px;}
.y105{bottom:399.701700px;}
.y18d{bottom:400.163550px;}
.y58{bottom:400.404150px;}
.y14{bottom:405.454650px;}
.y16c{bottom:406.376400px;}
.y12a{bottom:411.652650px;}
.ybb{bottom:411.946500px;}
.y7c{bottom:412.525350px;}
.ya3{bottom:413.767350px;}
.y1ad{bottom:416.697750px;}
.y14b{bottom:418.528950px;}
.y33{bottom:418.895700px;}
.y18c{bottom:420.496800px;}
.yde{bottom:420.569250px;}
.y57{bottom:420.655650px;}
.y104{bottom:420.660450px;}
.y16b{bottom:427.843650px;}
.y129{bottom:432.024900px;}
.y7b{bottom:432.949350px;}
.ya2{bottom:434.139600px;}
.y1ac{bottom:436.197750px;}
.y13{bottom:436.444650px;}
.y56{bottom:440.907150px;}
.ydd{bottom:441.510750px;}
.y103{bottom:441.619200px;}
.y14a{bottom:447.776700px;}
.y18b{bottom:449.335050px;}
.y128{bottom:452.397150px;}
.y7a{bottom:453.373350px;}
.yba{bottom:453.582750px;}
.ya1{bottom:454.511850px;}
.y1ab{bottom:455.697750px;}
.y16a{bottom:457.815900px;}
.y12{bottom:458.929650px;}
.y55{bottom:461.158650px;}
.ydc{bottom:462.452250px;}
.y102{bottom:462.577950px;}
.y149{bottom:468.519450px;}
.y32{bottom:468.650700px;}
.y18a{bottom:469.668300px;}
.y127{bottom:472.769400px;}
.y79{bottom:473.797350px;}
.ya0{bottom:474.884100px;}
.y1aa{bottom:475.197750px;}
.y169{bottom:479.264700px;}
.y54{bottom:481.410150px;}
.y11{bottom:481.414650px;}
.ydb{bottom:483.393750px;}
.y101{bottom:483.536700px;}
.y189{bottom:490.001550px;}
.y31{bottom:490.145700px;}
.y126{bottom:493.141650px;}
.y78{bottom:494.221350px;}
.y1a9{bottom:494.697750px;}
.y9f{bottom:495.256350px;}
.y148{bottom:497.767200px;}
.y53{bottom:501.661650px;}
.yda{bottom:504.335250px;}
.y100{bottom:504.495450px;}
.y168{bottom:509.236950px;}
.y30{bottom:511.542750px;}
.y10{bottom:512.404650px;}
.y125{bottom:513.513900px;}
.y1a8{bottom:514.197750px;}
.y77{bottom:514.645350px;}
.y9e{bottom:515.628600px;}
.yb9{bottom:515.998200px;}
.y147{bottom:518.509950px;}
.y188{bottom:518.839800px;}
.y52{bottom:521.913150px;}
.yd9{bottom:525.276750px;}
.yff{bottom:525.454200px;}
.y167{bottom:530.704200px;}
.y2f{bottom:531.537750px;}
.y1a7{bottom:533.697750px;}
.y124{bottom:533.886150px;}
.yf{bottom:534.889650px;}
.y76{bottom:535.069350px;}
.y9d{bottom:536.000850px;}
.yb8{bottom:536.370450px;}
.y187{bottom:539.173050px;}
.y146{bottom:539.252700px;}
.y51{bottom:542.164650px;}
.yd8{bottom:546.218250px;}
.yfe{bottom:546.412950px;}
.y2e{bottom:551.532750px;}
.y166{bottom:552.171450px;}
.y1a6{bottom:553.197750px;}
.y123{bottom:554.258400px;}
.y75{bottom:555.493350px;}
.y9c{bottom:556.373100px;}
.yb7{bottom:556.742700px;}
.ye{bottom:557.372250px;}
.y186{bottom:559.506300px;}
.y50{bottom:562.416150px;}
.yd7{bottom:567.159750px;}
.yfd{bottom:567.371700px;}
.y145{bottom:568.500450px;}
.y2d{bottom:571.527750px;}
.y1a5{bottom:572.697750px;}
.y122{bottom:574.630650px;}
.y74{bottom:575.917350px;}
.y9b{bottom:576.745350px;}
.yb6{bottom:577.114950px;}
.y165{bottom:582.143700px;}
.y4f{bottom:582.667650px;}
.yd6{bottom:588.101250px;}
.yfc{bottom:588.330450px;}
.y185{bottom:588.344550px;}
.y144{bottom:589.243200px;}
.y2c{bottom:591.522750px;}
.y1a4{bottom:592.197750px;}
.y121{bottom:595.002900px;}
.y73{bottom:596.341350px;}
.y9a{bottom:597.117600px;}
.yb5{bottom:597.487200px;}
.y4e{bottom:602.919150px;}
.y164{bottom:603.566850px;}
.y184{bottom:608.669850px;}
.yd5{bottom:609.042750px;}
.yfb{bottom:609.289200px;}
.yd{bottom:609.607950px;}
.y2b{bottom:611.517750px;}
.y1a3{bottom:611.697750px;}
.y120{bottom:615.375150px;}
.y72{bottom:616.765350px;}
.y99{bottom:617.489850px;}
.yb4{bottom:617.859450px;}
.y143{bottom:618.490950px;}
.y4d{bottom:623.170650px;}
.yd4{bottom:629.984250px;}
.yfa{bottom:630.247200px;}
.y1a2{bottom:631.197750px;}
.y2a{bottom:631.512750px;}
.yc{bottom:632.092950px;}
.y163{bottom:633.539100px;}
.y11f{bottom:635.747400px;}
.y71{bottom:637.189350px;}
.y183{bottom:637.508100px;}
.y98{bottom:637.862100px;}
.y142{bottom:639.233700px;}
.y4c{bottom:643.420650px;}
.y1a1{bottom:650.697750px;}
.yd3{bottom:650.925750px;}
.yf9{bottom:651.196350px;}
.y29{bottom:651.507750px;}
.yb{bottom:654.577950px;}
.y162{bottom:655.006350px;}
.y11e{bottom:656.119650px;}
.y70{bottom:657.613350px;}
.y182{bottom:657.841350px;}
.y97{bottom:658.234350px;}
.yb3{bottom:658.612500px;}
.y4b{bottom:663.669150px;}
.y141{bottom:668.481450px;}
.y1a0{bottom:670.197750px;}
.y28{bottom:671.502750px;}
.yd2{bottom:671.867250px;}
.yf8{bottom:672.155100px;}
.y161{bottom:676.473600px;}
.y11d{bottom:676.491900px;}
.y6f{bottom:678.037350px;}
.y96{bottom:678.606600px;}
.y4a{bottom:683.920650px;}
.yb2{bottom:685.366950px;}
.ya{bottom:685.567950px;}
.y181{bottom:686.679600px;}
.y140{bottom:689.224200px;}
.y19f{bottom:689.697750px;}
.y27{bottom:691.497750px;}
.yd1{bottom:692.808750px;}
.yf7{bottom:693.113850px;}
.y11c{bottom:696.864150px;}
.y6e{bottom:698.461350px;}
.y95{bottom:698.978850px;}
.y49{bottom:704.172150px;}
.y160{bottom:706.445850px;}
.y180{bottom:707.012850px;}
.y9{bottom:708.052950px;}
.yb1{bottom:708.098400px;}
.y19e{bottom:709.197750px;}
.y26{bottom:711.492750px;}
.yd0{bottom:713.750250px;}
.yf6{bottom:714.072600px;}
.y11b{bottom:717.236400px;}
.y13f{bottom:718.471950px;}
.y6d{bottom:718.885350px;}
.y94{bottom:719.351100px;}
.y15f{bottom:727.913100px;}
.y19d{bottom:728.697750px;}
.y8{bottom:730.535550px;}
.yb0{bottom:730.830000px;}
.y25{bottom:731.487750px;}
.ycf{bottom:734.691750px;}
.yf5{bottom:735.031350px;}
.y17f{bottom:735.851100px;}
.y13e{bottom:739.214700px;}
.y6c{bottom:739.309350px;}
.y93{bottom:739.723350px;}
.y48{bottom:741.430050px;}
.y19c{bottom:748.197750px;}
.y24{bottom:751.482750px;}
.yf4{bottom:755.990100px;}
.y17e{bottom:756.184350px;}
.y15e{bottom:757.885350px;}
.y11a{bottom:758.860800px;}
.y6b{bottom:759.733350px;}
.y92{bottom:760.095600px;}
.y19b{bottom:767.697750px;}
.y13d{bottom:768.462450px;}
.y23{bottom:771.477750px;}
.yce{bottom:776.898000px;}
.yf3{bottom:776.948850px;}
.y15d{bottom:779.352600px;}
.y6a{bottom:780.157350px;}
.y91{bottom:780.467850px;}
.y7{bottom:782.771250px;}
.y17d{bottom:785.022600px;}
.y19a{bottom:787.197750px;}
.y22{bottom:791.472750px;}
.yf2{bottom:797.907600px;}
.y69{bottom:800.581350px;}
.y90{bottom:800.840100px;}
.y47{bottom:803.697750px;}
.y6{bottom:805.256250px;}
.y17c{bottom:805.355850px;}
.y199{bottom:806.697750px;}
.y15c{bottom:809.324850px;}
.y21{bottom:811.467750px;}
.yf1{bottom:818.866350px;}
.y13c{bottom:819.694350px;}
.y68{bottom:821.005350px;}
.y8f{bottom:821.212350px;}
.y46{bottom:824.697750px;}
.y198{bottom:826.197750px;}
.y5{bottom:827.741250px;}
.y15b{bottom:830.792100px;}
.y20{bottom:831.462750px;}
.y17b{bottom:834.194100px;}
.yf0{bottom:839.825100px;}
.ycd{bottom:839.876850px;}
.y13b{bottom:840.446100px;}
.y67{bottom:841.429350px;}
.y8e{bottom:841.584600px;}
.y45{bottom:845.697750px;}
.y1f{bottom:851.457750px;}
.y17a{bottom:854.527350px;}
.y4{bottom:858.731250px;}
.y15a{bottom:860.764350px;}
.yef{bottom:860.783850px;}
.ycc{bottom:860.818350px;}
.y13a{bottom:861.197850px;}
.y66{bottom:861.853350px;}
.y8d{bottom:861.956850px;}
.y44{bottom:865.197750px;}
.y1e{bottom:871.452750px;}
.y3{bottom:881.216250px;}
.yee{bottom:881.742600px;}
.ycb{bottom:881.759850px;}
.y139{bottom:881.949600px;}
.y159{bottom:882.231600px;}
.y65{bottom:882.277350px;}
.y8c{bottom:882.329100px;}
.y179{bottom:883.365600px;}
.y43{bottom:884.697750px;}
.y64{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1d{bottom:904.197750px;}
.y1c{bottom:948.189000px;}
.y1b{bottom:966.189000px;}
.h9{height:40.757812px;}
.h7{height:49.658203px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.hb{height:58.589355px;}
.hd{height:58.595355px;}
.hc{height:58.601355px;}
.h10{height:59.480355px;}
.h2{height:63.684082px;}
.h8{height:64.687500px;}
.h12{height:67.735275px;}
.h11{height:67.921875px;}
.h13{height:67.953675px;}
.ha{height:68.778809px;}
.h6{height:71.326172px;}
.he{height:74.390625px;}
.hf{height:74.429025px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:81.115650px;}
.x6{left:82.845600px;}
.x1{left:84.351750px;}
.x7{left:85.395600px;}
.xd{left:100.499100px;}
.x5{left:105.030600px;}
.x8{left:106.364250px;}
.xc{left:131.952450px;}
.xb{left:200.573250px;}
.xa{left:201.931200px;}
.x9{left:212.663850px;}
.x4{left:230.608200px;}
.x3{left:232.076250px;}
.x2{left:233.415450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.426667pt;}
.v3{vertical-align:13.471467pt;}
.v1{vertical-align:15.101333pt;}
.v4{vertical-align:18.676267pt;}
.ls61{letter-spacing:-5.488000pt;}
.ls5b{letter-spacing:-5.090667pt;}
.ls1f{letter-spacing:-3.618667pt;}
.ls51{letter-spacing:-3.312000pt;}
.ls45{letter-spacing:-3.250667pt;}
.ls3a{letter-spacing:-3.005333pt;}
.ls12{letter-spacing:-2.952000pt;}
.ls4d{letter-spacing:-2.882667pt;}
.ls47{letter-spacing:-2.821333pt;}
.ls16{letter-spacing:-2.576000pt;}
.ls52{letter-spacing:-2.514667pt;}
.ls3d{letter-spacing:-2.453333pt;}
.ls55{letter-spacing:-2.392000pt;}
.ls53{letter-spacing:-2.269333pt;}
.ls43{letter-spacing:-2.208000pt;}
.ls4e{letter-spacing:-2.024000pt;}
.ls3b{letter-spacing:-1.962667pt;}
.ls4c{letter-spacing:-1.901333pt;}
.ls13{letter-spacing:-1.874667pt;}
.ls17{letter-spacing:-1.778667pt;}
.ls54{letter-spacing:-1.717333pt;}
.ls44{letter-spacing:-1.656000pt;}
.ls49{letter-spacing:-1.533333pt;}
.ls5d{letter-spacing:-1.440000pt;}
.ls37{letter-spacing:-1.410667pt;}
.ls4a{letter-spacing:-1.349333pt;}
.ls46{letter-spacing:-1.288000pt;}
.ls8{letter-spacing:-1.248000pt;}
.ls48{letter-spacing:-1.165333pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls10{letter-spacing:-1.080000pt;}
.ls1e{letter-spacing:-1.042667pt;}
.ls62{letter-spacing:-0.914144pt;}
.ls20{letter-spacing:-0.797333pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls36{letter-spacing:-0.557333pt;}
.ls5c{letter-spacing:-0.506667pt;}
.ls1d{letter-spacing:-0.429333pt;}
.ls50{letter-spacing:-0.306667pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls42{letter-spacing:-0.245333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.152000pt;}
.ls11{letter-spacing:-0.122667pt;}
.ls4f{letter-spacing:-0.061333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.245333pt;}
.ls1b{letter-spacing:0.490667pt;}
.ls32{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.754400pt;}
.ls5{letter-spacing:0.784000pt;}
.ls33{letter-spacing:0.853333pt;}
.ls14{letter-spacing:0.936000pt;}
.ls31{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.317333pt;}
.ls3c{letter-spacing:1.349333pt;}
.ls35{letter-spacing:1.440000pt;}
.ls34{letter-spacing:1.546667pt;}
.ls3e{letter-spacing:1.594667pt;}
.ls6{letter-spacing:2.133333pt;}
.ls2d{letter-spacing:2.717067pt;}
.lsc{letter-spacing:3.733333pt;}
.ls0{letter-spacing:4.400000pt;}
.ls3f{letter-spacing:4.685867pt;}
.ls1a{letter-spacing:4.722667pt;}
.ls4b{letter-spacing:4.866667pt;}
.lsd{letter-spacing:5.120000pt;}
.ls1{letter-spacing:5.333333pt;}
.lsb{letter-spacing:5.440000pt;}
.ls2{letter-spacing:5.600000pt;}
.ls63{letter-spacing:5.666667pt;}
.ls5f{letter-spacing:6.104000pt;}
.ls41{letter-spacing:6.194667pt;}
.ls18{letter-spacing:6.317333pt;}
.ls30{letter-spacing:6.533333pt;}
.ls1c{letter-spacing:6.866667pt;}
.ls56{letter-spacing:6.918400pt;}
.ls60{letter-spacing:7.066667pt;}
.ls5e{letter-spacing:7.200000pt;}
.lse{letter-spacing:7.333333pt;}
.ls40{letter-spacing:7.400000pt;}
.ls57{letter-spacing:7.733333pt;}
.ls59{letter-spacing:8.513067pt;}
.ls58{letter-spacing:8.519200pt;}
.ls38{letter-spacing:8.648000pt;}
.ls19{letter-spacing:9.568000pt;}
.ls2f{letter-spacing:13.162133pt;}
.ls5a{letter-spacing:14.180267pt;}
.ls26{letter-spacing:71.146667pt;}
.ls29{letter-spacing:104.533333pt;}
.ls28{letter-spacing:142.198933pt;}
.ls2c{letter-spacing:143.664000pt;}
.ls22{letter-spacing:143.806933pt;}
.ls23{letter-spacing:144.082667pt;}
.ls24{letter-spacing:144.148800pt;}
.ls25{letter-spacing:144.428267pt;}
.ls27{letter-spacing:146.506667pt;}
.ls2a{letter-spacing:148.640000pt;}
.ls2b{letter-spacing:148.746667pt;}
.ws5c{word-spacing:-26.466667pt;}
.ws3a{word-spacing:-26.133333pt;}
.ws10{word-spacing:-26.066667pt;}
.ws61{word-spacing:-25.933333pt;}
.ws66{word-spacing:-25.800000pt;}
.ws1c{word-spacing:-25.600000pt;}
.ws23{word-spacing:-25.266667pt;}
.ws6a{word-spacing:-24.400000pt;}
.ws4a{word-spacing:-23.600000pt;}
.ws0{word-spacing:-23.133333pt;}
.ws62{word-spacing:-21.840000pt;}
.wsb{word-spacing:-20.426667pt;}
.ws69{word-spacing:-20.320000pt;}
.wsd{word-spacing:-20.106667pt;}
.ws11{word-spacing:-19.152000pt;}
.ws21{word-spacing:-19.080000pt;}
.ws5e{word-spacing:-18.792000pt;}
.ws14{word-spacing:-17.280000pt;}
.ws3b{word-spacing:-17.234667pt;}
.ws2{word-spacing:-17.120000pt;}
.ws36{word-spacing:-16.498667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws19{word-spacing:-15.149333pt;}
.ws4d{word-spacing:-15.088000pt;}
.ws13{word-spacing:-15.026667pt;}
.ws3d{word-spacing:-14.904000pt;}
.ws4e{word-spacing:-14.842667pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws20{word-spacing:-14.352000pt;}
.ws1e{word-spacing:-14.106667pt;}
.ws41{word-spacing:-13.861333pt;}
.ws64{word-spacing:-13.832000pt;}
.ws56{word-spacing:-13.800000pt;}
.ws32{word-spacing:-13.738667pt;}
.ws48{word-spacing:-13.616000pt;}
.ws3e{word-spacing:-13.493333pt;}
.ws1b{word-spacing:-13.370667pt;}
.ws3c{word-spacing:-13.186667pt;}
.wsc{word-spacing:-13.173333pt;}
.ws4c{word-spacing:-13.125333pt;}
.ws3f{word-spacing:-12.941333pt;}
.ws5d{word-spacing:-12.696000pt;}
.ws4f{word-spacing:-12.634667pt;}
.ws1a{word-spacing:-12.573333pt;}
.ws42{word-spacing:-12.328000pt;}
.ws4b{word-spacing:-12.266667pt;}
.ws35{word-spacing:-12.144000pt;}
.ws40{word-spacing:-11.898667pt;}
.ws1f{word-spacing:-11.530667pt;}
.ws12{word-spacing:-10.047811pt;}
.ws63{word-spacing:-9.174088pt;}
.ws68{word-spacing:-7.149912pt;}
.ws43{word-spacing:-6.194667pt;}
.ws65{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.wsf{word-spacing:-3.733333pt;}
.ws7{word-spacing:-2.133333pt;}
.ws22{word-spacing:-1.317333pt;}
.ws5{word-spacing:-1.120000pt;}
.ws18{word-spacing:-0.936000pt;}
.ws6{word-spacing:-0.784000pt;}
.ws4{word-spacing:0.000000pt;}
.ws52{word-spacing:0.061333pt;}
.ws16{word-spacing:0.122667pt;}
.ws37{word-spacing:0.152000pt;}
.ws8{word-spacing:0.160000pt;}
.ws44{word-spacing:0.245333pt;}
.wse{word-spacing:0.266667pt;}
.ws53{word-spacing:0.306667pt;}
.ws60{word-spacing:0.506667pt;}
.ws33{word-spacing:0.557333pt;}
.ws15{word-spacing:0.760000pt;}
.ws55{word-spacing:0.797333pt;}
.wsa{word-spacing:1.152000pt;}
.ws46{word-spacing:1.165333pt;}
.ws9{word-spacing:1.248000pt;}
.ws47{word-spacing:1.288000pt;}
.ws49{word-spacing:1.349333pt;}
.ws58{word-spacing:1.410667pt;}
.ws59{word-spacing:1.717333pt;}
.ws17{word-spacing:1.874667pt;}
.ws51{word-spacing:1.901333pt;}
.ws38{word-spacing:1.962667pt;}
.ws45{word-spacing:2.208000pt;}
.ws57{word-spacing:2.269333pt;}
.ws5b{word-spacing:2.392000pt;}
.ws39{word-spacing:2.453333pt;}
.ws50{word-spacing:2.821333pt;}
.ws54{word-spacing:3.312000pt;}
.ws5f{word-spacing:5.090667pt;}
.ws67{word-spacing:5.488000pt;}
.ws5a{word-spacing:8.034667pt;}
.ws34{word-spacing:13.186667pt;}
.ws28{word-spacing:76.906667pt;}
.ws24{word-spacing:82.240000pt;}
.ws29{word-spacing:120.453333pt;}
.ws2e{word-spacing:120.960000pt;}
.ws2f{word-spacing:121.173333pt;}
.ws2a{word-spacing:121.333333pt;}
.ws2d{word-spacing:122.773333pt;}
.ws2b{word-spacing:125.280000pt;}
.ws30{word-spacing:127.466667pt;}
.ws2c{word-spacing:127.680000pt;}
.ws25{word-spacing:128.160000pt;}
.ws26{word-spacing:128.586667pt;}
.ws31{word-spacing:130.506667pt;}
.ws27{word-spacing:130.613333pt;}
._2d{margin-left:-15.418933pt;}
._c{margin-left:-8.655467pt;}
._25{margin-left:-7.543200pt;}
._27{margin-left:-6.605600pt;}
._6{margin-left:-5.385067pt;}
._b{margin-left:-4.336000pt;}
._5{margin-left:-3.406400pt;}
._9{margin-left:-2.512000pt;}
._4{margin-left:-1.617600pt;}
._2{width:0.938667pt;}
._0{width:2.233067pt;}
._a{width:3.148533pt;}
._7{width:4.533333pt;}
._3{width:5.616000pt;}
._8{width:6.554667pt;}
._18{width:7.485333pt;}
._f{width:8.618667pt;}
._11{width:9.744000pt;}
._10{width:10.709333pt;}
._13{width:11.908800pt;}
._1c{width:12.848800pt;}
._1a{width:14.574133pt;}
._19{width:15.509600pt;}
._23{width:16.903467pt;}
._1d{width:18.282933pt;}
._24{width:19.653867pt;}
._17{width:21.204267pt;}
._16{width:22.157867pt;}
._26{width:23.852267pt;}
._2c{width:28.656000pt;}
._15{width:76.048000pt;}
._2b{width:82.047200pt;}
._20{width:128.564800pt;}
._21{width:137.920000pt;}
._22{width:146.293333pt;}
._12{width:231.653333pt;}
._28{width:432.360000pt;}
._2a{width:433.324267pt;}
._14{width:435.253333pt;}
._1e{width:436.200000pt;}
._1{width:438.880000pt;}
._2e{width:441.241067pt;}
._d{width:514.133333pt;}
._e{width:883.194667pt;}
._1b{width:885.528000pt;}
._1f{width:889.128000pt;}
._29{width:890.888000pt;}
.fsb{font-size:31.093333pt;}
.fsc{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8b{bottom:94.369200pt;}
.y42{bottom:94.418400pt;}
.y178{bottom:94.439467pt;}
.y119{bottom:94.460933pt;}
.y197{bottom:94.469067pt;}
.y113{bottom:94.470400pt;}
.yaf{bottom:94.481467pt;}
.y158{bottom:94.490267pt;}
.yca{bottom:94.544667pt;}
.y63{bottom:94.569867pt;}
.yed{bottom:94.619333pt;}
.y196{bottom:111.882400pt;}
.y41{bottom:112.191733pt;}
.y138{bottom:112.392133pt;}
.y8a{bottom:112.523867pt;}
.y118{bottom:112.569600pt;}
.y62{bottom:112.571200pt;}
.yae{bottom:112.590133pt;}
.yc9{bottom:112.653333pt;}
.y157{bottom:112.969733pt;}
.y112{bottom:113.100400pt;}
.yec{bottom:113.234000pt;}
.y177{bottom:113.521467pt;}
.y1b9{bottom:128.171333pt;}
.y195{bottom:129.295733pt;}
.y40{bottom:129.965067pt;}
.y137{bottom:130.500800pt;}
.y117{bottom:130.678267pt;}
.y89{bottom:130.678533pt;}
.yc8{bottom:130.762000pt;}
.y111{bottom:131.730400pt;}
.yeb{bottom:131.848667pt;}
.y156{bottom:138.967733pt;}
.y176{bottom:140.163467pt;}
.y61{bottom:141.909733pt;}
.y1b8{bottom:146.171333pt;}
.y194{bottom:146.709067pt;}
.y1a{bottom:147.161067pt;}
.y3f{bottom:147.738400pt;}
.y136{bottom:148.609467pt;}
.y116{bottom:148.786933pt;}
.y88{bottom:148.833200pt;}
.yc7{bottom:148.870667pt;}
.yad{bottom:149.589600pt;}
.y110{bottom:150.360400pt;}
.yea{bottom:150.463333pt;}
.y155{bottom:157.405733pt;}
.y175{bottom:159.245467pt;}
.y1b7{bottom:164.171333pt;}
.y3e{bottom:165.511733pt;}
.y135{bottom:166.718133pt;}
.y115{bottom:166.895600pt;}
.yc6{bottom:166.979333pt;}
.y87{bottom:166.987867pt;}
.y10f{bottom:168.990400pt;}
.ye9{bottom:169.078000pt;}
.y19{bottom:172.473067pt;}
.y60{bottom:174.581600pt;}
.y193{bottom:175.455733pt;}
.y154{bottom:175.843733pt;}
.y174{bottom:178.327467pt;}
.y1b6{bottom:182.171333pt;}
.y3d{bottom:183.285067pt;}
.y134{bottom:184.826800pt;}
.yc5{bottom:185.088000pt;}
.y86{bottom:185.142533pt;}
.y10e{bottom:187.620400pt;}
.ye8{bottom:187.692667pt;}
.y1b5{bottom:200.171333pt;}
.y3c{bottom:201.058400pt;}
.y153{bottom:201.841733pt;}
.y133{bottom:202.935467pt;}
.yc4{bottom:203.196667pt;}
.y85{bottom:203.297200pt;}
.y114{bottom:203.895067pt;}
.yac{bottom:204.815200pt;}
.y173{bottom:204.969467pt;}
.y10d{bottom:206.250400pt;}
.ye7{bottom:206.307333pt;}
.y18{bottom:216.658133pt;}
.y3b{bottom:218.831733pt;}
.y152{bottom:220.279733pt;}
.y132{bottom:221.044133pt;}
.yc3{bottom:221.305333pt;}
.y84{bottom:221.451867pt;}
.yab{bottom:222.923867pt;}
.y172{bottom:224.051467pt;}
.y10c{bottom:224.880400pt;}
.ye6{bottom:224.922000pt;}
.y192{bottom:226.872533pt;}
.y1b4{bottom:229.504667pt;}
.y5f{bottom:229.905467pt;}
.y3a{bottom:236.605067pt;}
.y131{bottom:239.152800pt;}
.yc2{bottom:239.414000pt;}
.y83{bottom:239.606533pt;}
.yaa{bottom:241.032533pt;}
.y171{bottom:243.133467pt;}
.y10b{bottom:243.510400pt;}
.ye5{bottom:243.536667pt;}
.y17{bottom:245.986133pt;}
.y151{bottom:246.277733pt;}
.y5e{bottom:247.906800pt;}
.y191{bottom:250.952533pt;}
.y39{bottom:254.378400pt;}
.y130{bottom:257.261467pt;}
.yc1{bottom:257.522667pt;}
.y82{bottom:257.761200pt;}
.ya9{bottom:259.141200pt;}
.y10a{bottom:262.140400pt;}
.ye4{bottom:262.151333pt;}
.y150{bottom:264.715733pt;}
.y5d{bottom:265.908133pt;}
.y1b3{bottom:266.398000pt;}
.y170{bottom:269.775467pt;}
.y38{bottom:272.151733pt;}
.y16{bottom:275.314133pt;}
.y12f{bottom:275.370133pt;}
.yc0{bottom:275.631333pt;}
.y81{bottom:275.915867pt;}
.ya8{bottom:277.249867pt;}
.ye3{bottom:280.766000pt;}
.y109{bottom:280.770400pt;}
.y1b2{bottom:283.731333pt;}
.y5c{bottom:283.909467pt;}
.y16f{bottom:288.857467pt;}
.y37{bottom:289.925067pt;}
.y14f{bottom:290.713733pt;}
.y12e{bottom:293.478800pt;}
.ybf{bottom:293.740000pt;}
.y190{bottom:293.918933pt;}
.y80{bottom:294.070533pt;}
.ya7{bottom:295.358533pt;}
.ye2{bottom:299.380667pt;}
.y108{bottom:299.400400pt;}
.y1b1{bottom:301.064667pt;}
.y5b{bottom:301.910800pt;}
.y15{bottom:304.642133pt;}
.y36{bottom:307.698400pt;}
.y14e{bottom:309.151733pt;}
.y12d{bottom:311.587467pt;}
.ybe{bottom:311.848667pt;}
.y18f{bottom:311.992933pt;}
.y7f{bottom:312.225200pt;}
.ya6{bottom:313.467200pt;}
.y16e{bottom:315.499467pt;}
.ye1{bottom:317.995333pt;}
.y107{bottom:318.030400pt;}
.y1b0{bottom:318.398000pt;}
.y5a{bottom:319.912133pt;}
.y35{bottom:325.471733pt;}
.y14d{bottom:327.589733pt;}
.y12c{bottom:329.696133pt;}
.ybd{bottom:329.957333pt;}
.y18e{bottom:330.066933pt;}
.y7e{bottom:330.379867pt;}
.ya5{bottom:331.575867pt;}
.y16d{bottom:334.581467pt;}
.y1af{bottom:335.731333pt;}
.ye0{bottom:336.610000pt;}
.y106{bottom:336.660400pt;}
.y59{bottom:337.913467pt;}
.y34{bottom:343.245067pt;}
.y14c{bottom:346.027733pt;}
.y12b{bottom:347.804800pt;}
.ybc{bottom:348.066000pt;}
.y7d{bottom:348.534533pt;}
.ya4{bottom:349.684533pt;}
.y1ae{bottom:353.064667pt;}
.ydf{bottom:355.224667pt;}
.y105{bottom:355.290400pt;}
.y18d{bottom:355.700933pt;}
.y58{bottom:355.914800pt;}
.y14{bottom:360.404133pt;}
.y16c{bottom:361.223467pt;}
.y12a{bottom:365.913467pt;}
.ybb{bottom:366.174667pt;}
.y7c{bottom:366.689200pt;}
.ya3{bottom:367.793200pt;}
.y1ad{bottom:370.398000pt;}
.y14b{bottom:372.025733pt;}
.y33{bottom:372.351733pt;}
.y18c{bottom:373.774933pt;}
.yde{bottom:373.839333pt;}
.y57{bottom:373.916133pt;}
.y104{bottom:373.920400pt;}
.y16b{bottom:380.305467pt;}
.y129{bottom:384.022133pt;}
.y7b{bottom:384.843867pt;}
.ya2{bottom:385.901867pt;}
.y1ac{bottom:387.731333pt;}
.y13{bottom:387.950800pt;}
.y56{bottom:391.917467pt;}
.ydd{bottom:392.454000pt;}
.y103{bottom:392.550400pt;}
.y14a{bottom:398.023733pt;}
.y18b{bottom:399.408933pt;}
.y128{bottom:402.130800pt;}
.y7a{bottom:402.998533pt;}
.yba{bottom:403.184667pt;}
.ya1{bottom:404.010533pt;}
.y1ab{bottom:405.064667pt;}
.y16a{bottom:406.947467pt;}
.y12{bottom:407.937467pt;}
.y55{bottom:409.918800pt;}
.ydc{bottom:411.068667pt;}
.y102{bottom:411.180400pt;}
.y149{bottom:416.461733pt;}
.y32{bottom:416.578400pt;}
.y18a{bottom:417.482933pt;}
.y127{bottom:420.239467pt;}
.y79{bottom:421.153200pt;}
.ya0{bottom:422.119200pt;}
.y1aa{bottom:422.398000pt;}
.y169{bottom:426.013067pt;}
.y54{bottom:427.920133pt;}
.y11{bottom:427.924133pt;}
.ydb{bottom:429.683333pt;}
.y101{bottom:429.810400pt;}
.y189{bottom:435.556933pt;}
.y31{bottom:435.685067pt;}
.y126{bottom:438.348133pt;}
.y78{bottom:439.307867pt;}
.y1a9{bottom:439.731333pt;}
.y9f{bottom:440.227867pt;}
.y148{bottom:442.459733pt;}
.y53{bottom:445.921467pt;}
.yda{bottom:448.298000pt;}
.y100{bottom:448.440400pt;}
.y168{bottom:452.655067pt;}
.y30{bottom:454.704667pt;}
.y10{bottom:455.470800pt;}
.y125{bottom:456.456800pt;}
.y1a8{bottom:457.064667pt;}
.y77{bottom:457.462533pt;}
.y9e{bottom:458.336533pt;}
.yb9{bottom:458.665067pt;}
.y147{bottom:460.897733pt;}
.y188{bottom:461.190933pt;}
.y52{bottom:463.922800pt;}
.yd9{bottom:466.912667pt;}
.yff{bottom:467.070400pt;}
.y167{bottom:471.737067pt;}
.y2f{bottom:472.478000pt;}
.y1a7{bottom:474.398000pt;}
.y124{bottom:474.565467pt;}
.yf{bottom:475.457467pt;}
.y76{bottom:475.617200pt;}
.y9d{bottom:476.445200pt;}
.yb8{bottom:476.773733pt;}
.y187{bottom:479.264933pt;}
.y146{bottom:479.335733pt;}
.y51{bottom:481.924133pt;}
.yd8{bottom:485.527333pt;}
.yfe{bottom:485.700400pt;}
.y2e{bottom:490.251333pt;}
.y166{bottom:490.819067pt;}
.y1a6{bottom:491.731333pt;}
.y123{bottom:492.674133pt;}
.y75{bottom:493.771867pt;}
.y9c{bottom:494.553867pt;}
.yb7{bottom:494.882400pt;}
.ye{bottom:495.442000pt;}
.y186{bottom:497.338933pt;}
.y50{bottom:499.925467pt;}
.yd7{bottom:504.142000pt;}
.yfd{bottom:504.330400pt;}
.y145{bottom:505.333733pt;}
.y2d{bottom:508.024667pt;}
.y1a5{bottom:509.064667pt;}
.y122{bottom:510.782800pt;}
.y74{bottom:511.926533pt;}
.y9b{bottom:512.662533pt;}
.yb6{bottom:512.991067pt;}
.y165{bottom:517.461067pt;}
.y4f{bottom:517.926800pt;}
.yd6{bottom:522.756667pt;}
.yfc{bottom:522.960400pt;}
.y185{bottom:522.972933pt;}
.y144{bottom:523.771733pt;}
.y2c{bottom:525.798000pt;}
.y1a4{bottom:526.398000pt;}
.y121{bottom:528.891467pt;}
.y73{bottom:530.081200pt;}
.y9a{bottom:530.771200pt;}
.yb5{bottom:531.099733pt;}
.y4e{bottom:535.928133pt;}
.y164{bottom:536.503867pt;}
.y184{bottom:541.039867pt;}
.yd5{bottom:541.371333pt;}
.yfb{bottom:541.590400pt;}
.yd{bottom:541.873733pt;}
.y2b{bottom:543.571333pt;}
.y1a3{bottom:543.731333pt;}
.y120{bottom:547.000133pt;}
.y72{bottom:548.235867pt;}
.y99{bottom:548.879867pt;}
.yb4{bottom:549.208400pt;}
.y143{bottom:549.769733pt;}
.y4d{bottom:553.929467pt;}
.yd4{bottom:559.986000pt;}
.yfa{bottom:560.219733pt;}
.y1a2{bottom:561.064667pt;}
.y2a{bottom:561.344667pt;}
.yc{bottom:561.860400pt;}
.y163{bottom:563.145867pt;}
.y11f{bottom:565.108800pt;}
.y71{bottom:566.390533pt;}
.y183{bottom:566.673867pt;}
.y98{bottom:566.988533pt;}
.y142{bottom:568.207733pt;}
.y4c{bottom:571.929467pt;}
.y1a1{bottom:578.398000pt;}
.yd3{bottom:578.600667pt;}
.yf9{bottom:578.841200pt;}
.y29{bottom:579.118000pt;}
.yb{bottom:581.847067pt;}
.y162{bottom:582.227867pt;}
.y11e{bottom:583.217467pt;}
.y70{bottom:584.545200pt;}
.y182{bottom:584.747867pt;}
.y97{bottom:585.097200pt;}
.yb3{bottom:585.433333pt;}
.y4b{bottom:589.928133pt;}
.y141{bottom:594.205733pt;}
.y1a0{bottom:595.731333pt;}
.y28{bottom:596.891333pt;}
.yd2{bottom:597.215333pt;}
.yf8{bottom:597.471200pt;}
.y161{bottom:601.309867pt;}
.y11d{bottom:601.326133pt;}
.y6f{bottom:602.699867pt;}
.y96{bottom:603.205867pt;}
.y4a{bottom:607.929467pt;}
.yb2{bottom:609.215067pt;}
.ya{bottom:609.393733pt;}
.y181{bottom:610.381867pt;}
.y140{bottom:612.643733pt;}
.y19f{bottom:613.064667pt;}
.y27{bottom:614.664667pt;}
.yd1{bottom:615.830000pt;}
.yf7{bottom:616.101200pt;}
.y11c{bottom:619.434800pt;}
.y6e{bottom:620.854533pt;}
.y95{bottom:621.314533pt;}
.y49{bottom:625.930800pt;}
.y160{bottom:627.951867pt;}
.y180{bottom:628.455867pt;}
.y9{bottom:629.380400pt;}
.yb1{bottom:629.420800pt;}
.y19e{bottom:630.398000pt;}
.y26{bottom:632.438000pt;}
.yd0{bottom:634.444667pt;}
.yf6{bottom:634.731200pt;}
.y11b{bottom:637.543467pt;}
.y13f{bottom:638.641733pt;}
.y6d{bottom:639.009200pt;}
.y94{bottom:639.423200pt;}
.y15f{bottom:647.033867pt;}
.y19d{bottom:647.731333pt;}
.y8{bottom:649.364933pt;}
.yb0{bottom:649.626667pt;}
.y25{bottom:650.211333pt;}
.ycf{bottom:653.059333pt;}
.yf5{bottom:653.361200pt;}
.y17f{bottom:654.089867pt;}
.y13e{bottom:657.079733pt;}
.y6c{bottom:657.163867pt;}
.y93{bottom:657.531867pt;}
.y48{bottom:659.048933pt;}
.y19c{bottom:665.064667pt;}
.y24{bottom:667.984667pt;}
.yf4{bottom:671.991200pt;}
.y17e{bottom:672.163867pt;}
.y15e{bottom:673.675867pt;}
.y11a{bottom:674.542933pt;}
.y6b{bottom:675.318533pt;}
.y92{bottom:675.640533pt;}
.y19b{bottom:682.398000pt;}
.y13d{bottom:683.077733pt;}
.y23{bottom:685.758000pt;}
.yce{bottom:690.576000pt;}
.yf3{bottom:690.621200pt;}
.y15d{bottom:692.757867pt;}
.y6a{bottom:693.473200pt;}
.y91{bottom:693.749200pt;}
.y7{bottom:695.796667pt;}
.y17d{bottom:697.797867pt;}
.y19a{bottom:699.731333pt;}
.y22{bottom:703.531333pt;}
.yf2{bottom:709.251200pt;}
.y69{bottom:711.627867pt;}
.y90{bottom:711.857867pt;}
.y47{bottom:714.398000pt;}
.y6{bottom:715.783333pt;}
.y17c{bottom:715.871867pt;}
.y199{bottom:717.064667pt;}
.y15c{bottom:719.399867pt;}
.y21{bottom:721.304667pt;}
.yf1{bottom:727.881200pt;}
.y13c{bottom:728.617200pt;}
.y68{bottom:729.782533pt;}
.y8f{bottom:729.966533pt;}
.y46{bottom:733.064667pt;}
.y198{bottom:734.398000pt;}
.y5{bottom:735.770000pt;}
.y15b{bottom:738.481867pt;}
.y20{bottom:739.078000pt;}
.y17b{bottom:741.505867pt;}
.yf0{bottom:746.511200pt;}
.ycd{bottom:746.557200pt;}
.y13b{bottom:747.063200pt;}
.y67{bottom:747.937200pt;}
.y8e{bottom:748.075200pt;}
.y45{bottom:751.731333pt;}
.y1f{bottom:756.851333pt;}
.y17a{bottom:759.579867pt;}
.y4{bottom:763.316667pt;}
.y15a{bottom:765.123867pt;}
.yef{bottom:765.141200pt;}
.ycc{bottom:765.171867pt;}
.y13a{bottom:765.509200pt;}
.y66{bottom:766.091867pt;}
.y8d{bottom:766.183867pt;}
.y44{bottom:769.064667pt;}
.y1e{bottom:774.624667pt;}
.y3{bottom:783.303333pt;}
.yee{bottom:783.771200pt;}
.ycb{bottom:783.786533pt;}
.y139{bottom:783.955200pt;}
.y159{bottom:784.205867pt;}
.y65{bottom:784.246533pt;}
.y8c{bottom:784.292533pt;}
.y179{bottom:785.213867pt;}
.y43{bottom:786.398000pt;}
.y64{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1d{bottom:803.731333pt;}
.y1c{bottom:842.834667pt;}
.y1b{bottom:858.834667pt;}
.h9{height:36.229167pt;}
.h7{height:44.140625pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.hb{height:52.079427pt;}
.hd{height:52.084760pt;}
.hc{height:52.090094pt;}
.h10{height:52.871427pt;}
.h2{height:56.608073pt;}
.h8{height:57.500000pt;}
.h12{height:60.209133pt;}
.h11{height:60.375000pt;}
.h13{height:60.403267pt;}
.ha{height:61.136719pt;}
.h6{height:63.401042pt;}
.he{height:66.125000pt;}
.hf{height:66.159133pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:72.102800pt;}
.x6{left:73.640533pt;}
.x1{left:74.979333pt;}
.x7{left:75.907200pt;}
.xd{left:89.332533pt;}
.x5{left:93.360533pt;}
.x8{left:94.546000pt;}
.xc{left:117.291067pt;}
.xb{left:178.287333pt;}
.xa{left:179.494400pt;}
.x9{left:189.034533pt;}
.x4{left:204.985067pt;}
.x3{left:206.290000pt;}
.x2{left:207.480400pt;}
}




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