
    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_04f6e6016c145ee5881d0926.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_d98330b014750cf27432cd84.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_83b4b55e3d596575cd290e63.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_60558b42b7f8d0b57d46f856.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.364258;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_ebf5782a61cd76081384b339.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.036000px;}
.ls2d{letter-spacing:-1.296000px;}
.ls13{letter-spacing:-1.242000px;}
.ls10{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.918000px;}
.ls2c{letter-spacing:-0.810000px;}
.ls1e{letter-spacing:-0.702000px;}
.lsf{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.486000px;}
.lse{letter-spacing:-0.378000px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.108000px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.162000px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.761400px;}
.ls35{letter-spacing:0.901800px;}
.ls24{letter-spacing:0.918000px;}
.ls38{letter-spacing:1.620000px;}
.ls39{letter-spacing:2.322000px;}
.ls30{letter-spacing:3.078000px;}
.ls8{letter-spacing:3.504600px;}
.ls34{letter-spacing:3.769200px;}
.ls17{letter-spacing:3.780000px;}
.ls9{letter-spacing:4.482000px;}
.lsa{letter-spacing:4.563000px;}
.ls28{letter-spacing:5.221800px;}
.ls27{letter-spacing:5.238000px;}
.ls37{letter-spacing:5.940000px;}
.ls15{letter-spacing:6.642000px;}
.ls2f{letter-spacing:6.658200px;}
.ls1b{letter-spacing:7.398000px;}
.ls21{letter-spacing:8.100000px;}
.ls26{letter-spacing:8.802000px;}
.ls25{letter-spacing:9.558000px;}
.ls6{letter-spacing:10.243800px;}
.ls5{letter-spacing:10.260000px;}
.ls4{letter-spacing:10.962000px;}
.ls33{letter-spacing:11.718000px;}
.ls32{letter-spacing:11.728800px;}
.ls29{letter-spacing:13.089600px;}
.ls7{letter-spacing:13.122000px;}
.ls3a{letter-spacing:13.878000px;}
.ls16{letter-spacing:15.282000px;}
.ls31{letter-spacing:18.198000px;}
.ls2a{letter-spacing:20.892600px;}
.ls2b{letter-spacing:21.060000px;}
.ls18{letter-spacing:24.678000px;}
.ls20{letter-spacing:25.326000px;}
.ls19{letter-spacing:28.242000px;}
.ls3b{letter-spacing:28.263600px;}
.ls3{letter-spacing:29.646000px;}
.ls36{letter-spacing:32.562000px;}
.ls1a{letter-spacing:33.318000px;}
.ls1f{letter-spacing:40.500000px;}
.ls22{letter-spacing:41.239800px;}
.ls1c{letter-spacing:62.100000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-13.878000px;}
.ws4{word-spacing:-13.716000px;}
.ws71{word-spacing:-13.662000px;}
.ws43{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws44{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.284000px;}
.ws5{word-spacing:-13.122000px;}
.ws72{word-spacing:-13.014000px;}
.ws45{word-spacing:-12.906000px;}
.wsb1{word-spacing:-12.690000px;}
.ws0{word-spacing:-9.000000px;}
.ws3b{word-spacing:-3.078000px;}
.ws7a{word-spacing:-2.808000px;}
.ws25{word-spacing:-2.484000px;}
.ws1d{word-spacing:-2.376000px;}
.ws42{word-spacing:-2.106000px;}
.ws70{word-spacing:-1.782000px;}
.ws20{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.350000px;}
.ws1a{word-spacing:-1.026000px;}
.wsa{word-spacing:-0.918000px;}
.ws91{word-spacing:-0.756000px;}
.wse{word-spacing:-0.702000px;}
.ws12{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.378000px;}
.wsd{word-spacing:-0.324000px;}
.ws9{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.162000px;}
.ws27{word-spacing:-0.108000px;}
.ws95{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.054000px;}
.ws36{word-spacing:0.108000px;}
.ws4c{word-spacing:0.162000px;}
.ws1e{word-spacing:0.216000px;}
.ws24{word-spacing:0.270000px;}
.ws6{word-spacing:0.288000px;}
.ws8{word-spacing:0.378000px;}
.ws16{word-spacing:0.540000px;}
.ws1b{word-spacing:0.594000px;}
.ws6e{word-spacing:0.702000px;}
.ws5d{word-spacing:0.810000px;}
.ws4d{word-spacing:0.918000px;}
.ws84{word-spacing:1.026000px;}
.ws21{word-spacing:1.080000px;}
.ws15{word-spacing:1.134000px;}
.ws2d{word-spacing:1.242000px;}
.ws79{word-spacing:1.296000px;}
.wsa6{word-spacing:1.512000px;}
.ws17{word-spacing:1.836000px;}
.ws11{word-spacing:1.944000px;}
.ws22{word-spacing:2.214000px;}
.ws1c{word-spacing:2.538000px;}
.ws10{word-spacing:2.700000px;}
.ws7f{word-spacing:2.970000px;}
.wsf{word-spacing:3.294000px;}
.ws19{word-spacing:3.402000px;}
.wsbc{word-spacing:3.618000px;}
.wsa4{word-spacing:3.672000px;}
.wsce{word-spacing:3.888000px;}
.ws18{word-spacing:3.996000px;}
.ws41{word-spacing:4.104000px;}
.ws59{word-spacing:4.374000px;}
.ws3f{word-spacing:4.482000px;}
.ws5a{word-spacing:4.590000px;}
.ws3e{word-spacing:4.698000px;}
.ws40{word-spacing:4.860000px;}
.ws13{word-spacing:5.130000px;}
.ws14{word-spacing:5.454000px;}
.ws55{word-spacing:5.562000px;}
.ws9f{word-spacing:5.616000px;}
.ws54{word-spacing:5.832000px;}
.wsa0{word-spacing:5.940000px;}
.ws1f{word-spacing:6.156000px;}
.ws3a{word-spacing:6.264000px;}
.ws49{word-spacing:6.534000px;}
.ws48{word-spacing:6.858000px;}
.ws69{word-spacing:7.020000px;}
.ws6c{word-spacing:7.290000px;}
.wsb6{word-spacing:7.506000px;}
.ws31{word-spacing:7.614000px;}
.ws77{word-spacing:7.722000px;}
.ws60{word-spacing:7.992000px;}
.ws75{word-spacing:8.208000px;}
.ws23{word-spacing:8.316000px;}
.ws89{word-spacing:8.424000px;}
.wsa7{word-spacing:8.802000px;}
.wsb7{word-spacing:8.910000px;}
.ws86{word-spacing:9.018000px;}
.ws57{word-spacing:9.180000px;}
.wsb8{word-spacing:9.396000px;}
.ws37{word-spacing:9.450000px;}
.wsc3{word-spacing:9.666000px;}
.ws87{word-spacing:9.774000px;}
.ws28{word-spacing:9.882000px;}
.ws6f{word-spacing:10.152000px;}
.ws29{word-spacing:10.260000px;}
.ws2a{word-spacing:10.476000px;}
.ws82{word-spacing:10.584000px;}
.wsc6{word-spacing:10.800000px;}
.ws26{word-spacing:11.178000px;}
.ws80{word-spacing:11.340000px;}
.ws78{word-spacing:11.610000px;}
.ws53{word-spacing:11.934000px;}
.ws63{word-spacing:12.042000px;}
.ws8c{word-spacing:12.636000px;}
.ws46{word-spacing:12.744000px;}
.ws94{word-spacing:13.014000px;}
.ws3c{word-spacing:13.338000px;}
.ws8a{word-spacing:13.500000px;}
.wsc5{word-spacing:13.716000px;}
.wsc4{word-spacing:13.986000px;}
.ws76{word-spacing:14.094000px;}
.wsc1{word-spacing:14.202000px;}
.wsaa{word-spacing:14.472000px;}
.ws7e{word-spacing:14.796000px;}
.ws64{word-spacing:14.904000px;}
.ws2f{word-spacing:15.174000px;}
.ws30{word-spacing:15.498000px;}
.wsa5{word-spacing:15.660000px;}
.wsc8{word-spacing:16.146000px;}
.wsc9{word-spacing:16.254000px;}
.wsa8{word-spacing:16.362000px;}
.wsca{word-spacing:16.416000px;}
.ws8d{word-spacing:16.632000px;}
.wscb{word-spacing:16.848000px;}
.ws62{word-spacing:16.956000px;}
.ws34{word-spacing:17.064000px;}
.wsa3{word-spacing:17.334000px;}
.ws58{word-spacing:17.658000px;}
.ws4f{word-spacing:17.820000px;}
.ws8f{word-spacing:18.414000px;}
.ws9d{word-spacing:18.522000px;}
.ws73{word-spacing:18.792000px;}
.ws93{word-spacing:19.116000px;}
.wsc2{word-spacing:19.224000px;}
.wsaf{word-spacing:19.278000px;}
.wsc7{word-spacing:19.710000px;}
.ws7d{word-spacing:19.818000px;}
.ws38{word-spacing:19.980000px;}
.ws8e{word-spacing:20.250000px;}
.wsa1{word-spacing:20.574000px;}
.ws92{word-spacing:20.682000px;}
.wsb9{word-spacing:20.898000px;}
.ws96{word-spacing:20.952000px;}
.ws85{word-spacing:21.276000px;}
.wsb3{word-spacing:21.384000px;}
.ws97{word-spacing:21.438000px;}
.wsbb{word-spacing:21.870000px;}
.ws9a{word-spacing:21.978000px;}
.ws4e{word-spacing:22.140000px;}
.ws74{word-spacing:22.734000px;}
.ws56{word-spacing:22.842000px;}
.wsc0{word-spacing:23.058000px;}
.ws98{word-spacing:23.112000px;}
.ws2b{word-spacing:23.436000px;}
.ws81{word-spacing:23.544000px;}
.ws51{word-spacing:24.138000px;}
.ws52{word-spacing:24.300000px;}
.ws5b{word-spacing:24.570000px;}
.ws50{word-spacing:25.002000px;}
.ws5c{word-spacing:25.596000px;}
.wsb4{word-spacing:25.704000px;}
.ws61{word-spacing:26.298000px;}
.wsab{word-spacing:26.460000px;}
.wscd{word-spacing:26.730000px;}
.wsba{word-spacing:27.162000px;}
.ws8b{word-spacing:27.432000px;}
.ws9c{word-spacing:27.756000px;}
.ws5e{word-spacing:27.864000px;}
.ws5f{word-spacing:28.458000px;}
.ws67{word-spacing:28.890000px;}
.ws66{word-spacing:29.214000px;}
.ws65{word-spacing:30.024000px;}
.ws47{word-spacing:30.618000px;}
.wsad{word-spacing:30.780000px;}
.wsae{word-spacing:31.158000px;}
.wsac{word-spacing:31.374000px;}
.wsb5{word-spacing:31.698000px;}
.ws39{word-spacing:32.076000px;}
.wsa9{word-spacing:32.184000px;}
.ws9e{word-spacing:32.778000px;}
.ws35{word-spacing:33.642000px;}
.ws68{word-spacing:34.236000px;}
.wscf{word-spacing:34.344000px;}
.ws32{word-spacing:34.938000px;}
.ws88{word-spacing:36.504000px;}
.wsa2{word-spacing:37.260000px;}
.wsbe{word-spacing:38.664000px;}
.wsbd{word-spacing:39.258000px;}
.ws99{word-spacing:39.420000px;}
.ws7c{word-spacing:39.690000px;}
.ws90{word-spacing:40.014000px;}
.ws7b{word-spacing:40.716000px;}
.ws83{word-spacing:40.824000px;}
.wsb0{word-spacing:41.418000px;}
.ws9b{word-spacing:41.580000px;}
.wsbf{word-spacing:42.336000px;}
.ws4b{word-spacing:42.876000px;}
.ws6d{word-spacing:42.984000px;}
.ws33{word-spacing:46.170000px;}
.wscc{word-spacing:46.494000px;}
.ws2c{word-spacing:57.996000px;}
.ws6b{word-spacing:61.722000px;}
.ws6a{word-spacing:62.316000px;}
.ws4a{word-spacing:74.358000px;}
.wsb2{word-spacing:103.464000px;}
._13{margin-left:-3.996000px;}
._6{margin-left:-2.916000px;}
._1{margin-left:-1.350000px;}
._0{width:1.296000px;}
._7{width:2.322000px;}
._d{width:3.672000px;}
._8{width:4.968000px;}
._11{width:6.372000px;}
._9{width:7.614000px;}
._4{width:9.342000px;}
._2{width:10.584000px;}
._b{width:11.880000px;}
._f{width:17.496000px;}
._e{width:18.576000px;}
._10{width:19.704600px;}
._c{width:23.328000px;}
._12{width:27.000000px;}
._5{width:31.914000px;}
._3{width:33.750000px;}
._a{width:40.824000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:2.526000px;}
.y51{bottom:16.926000px;}
.y53{bottom:35.760095px;}
.yb8{bottom:109.291500px;}
.y132{bottom:111.100500px;}
.y42{bottom:111.933000px;}
.y107{bottom:118.971000px;}
.y1f9{bottom:119.119500px;}
.y86{bottom:120.078000px;}
.y169{bottom:123.169500px;}
.yb7{bottom:124.776000px;}
.y131{bottom:126.585000px;}
.y41{bottom:127.417500px;}
.y4f{bottom:127.741500px;}
.yc6{bottom:130.891500px;}
.y17a{bottom:132.619500px;}
.y85{bottom:132.673500px;}
.y106{bottom:134.455500px;}
.y1f8{bottom:134.604000px;}
.y168{bottom:138.829500px;}
.y4e{bottom:140.337000px;}
.yb6{bottom:140.436000px;}
.y130{bottom:142.069500px;}
.y40{bottom:142.902000px;}
.yc5{bottom:146.376000px;}
.y179{bottom:148.104000px;}
.y105{bottom:149.940000px;}
.y1f7{bottom:150.088500px;}
.y167{bottom:154.314000px;}
.yb5{bottom:155.920500px;}
.y12f{bottom:157.729500px;}
.y3f{bottom:158.386500px;}
.yc4{bottom:158.971500px;}
.y1b9{bottom:163.372500px;}
.y178{bottom:163.588500px;}
.y104{bottom:165.424500px;}
.y1f6{bottom:165.573000px;}
.y166{bottom:169.798500px;}
.yb4{bottom:171.405000px;}
.y3e{bottom:174.046500px;}
.y1b8{bottom:178.857000px;}
.y177{bottom:179.073000px;}
.y103{bottom:181.084500px;}
.y1f5{bottom:181.233000px;}
.y165{bottom:185.283000px;}
.y12e{bottom:186.714000px;}
.yb3{bottom:186.889500px;}
.y3d{bottom:189.531000px;}
.y1b7{bottom:194.517000px;}
.y176{bottom:194.733000px;}
.y102{bottom:196.569000px;}
.y1f4{bottom:196.717500px;}
.y164{bottom:200.943000px;}
.y12d{bottom:202.198500px;}
.yb2{bottom:202.549500px;}
.y3c{bottom:205.015500px;}
.y1b6{bottom:210.001500px;}
.y175{bottom:210.217500px;}
.y101{bottom:212.053500px;}
.y1f3{bottom:212.202000px;}
.y163{bottom:216.427500px;}
.y12c{bottom:217.683000px;}
.yb1{bottom:218.034000px;}
.y3b{bottom:220.500000px;}
.y1b5{bottom:225.486000px;}
.y174{bottom:225.702000px;}
.y100{bottom:227.538000px;}
.y1f2{bottom:227.686500px;}
.y162{bottom:231.912000px;}
.y12b{bottom:233.343000px;}
.yb0{bottom:233.518500px;}
.y3a{bottom:236.160000px;}
.y1b4{bottom:240.970500px;}
.y173{bottom:241.186500px;}
.yff{bottom:243.198000px;}
.y1f1{bottom:243.346500px;}
.y12a{bottom:245.938500px;}
.y161{bottom:247.396500px;}
.yaf{bottom:249.003000px;}
.y39{bottom:251.644500px;}
.y1b3{bottom:256.630500px;}
.y172{bottom:256.846500px;}
.yfe{bottom:258.682500px;}
.y1f0{bottom:258.831000px;}
.y160{bottom:262.881000px;}
.yae{bottom:264.663000px;}
.y38{bottom:267.129000px;}
.y1b2{bottom:272.115000px;}
.y171{bottom:272.331000px;}
.yfd{bottom:274.167000px;}
.y1ef{bottom:274.315500px;}
.y15f{bottom:278.541000px;}
.yad{bottom:280.147500px;}
.y37{bottom:282.613500px;}
.y1b1{bottom:287.599500px;}
.y170{bottom:287.815500px;}
.yfc{bottom:289.651500px;}
.y1ee{bottom:289.800000px;}
.y15e{bottom:294.025500px;}
.yac{bottom:295.632000px;}
.y36{bottom:298.273500px;}
.y1b0{bottom:303.084000px;}
.y16f{bottom:303.300000px;}
.y1ed{bottom:305.460000px;}
.y15d{bottom:309.510000px;}
.y35{bottom:313.758000px;}
.y1af{bottom:318.744000px;}
.yfb{bottom:318.811500px;}
.y16e{bottom:318.960000px;}
.y1ec{bottom:320.944500px;}
.y15c{bottom:324.994500px;}
.y34{bottom:329.242500px;}
.y1ae{bottom:334.228500px;}
.yfa{bottom:334.296000px;}
.y16d{bottom:334.444500px;}
.y1eb{bottom:336.429000px;}
.y15b{bottom:340.654500px;}
.y33{bottom:344.727000px;}
.y1ad{bottom:349.713000px;}
.yf9{bottom:349.780500px;}
.y16c{bottom:349.929000px;}
.y1ea{bottom:351.913500px;}
.y15a{bottom:353.250000px;}
.y32{bottom:360.387000px;}
.y1ac{bottom:365.197500px;}
.yf8{bottom:365.265000px;}
.y16b{bottom:365.413500px;}
.y1e9{bottom:367.573500px;}
.y31{bottom:375.871500px;}
.y1ab{bottom:380.857500px;}
.yf7{bottom:380.925000px;}
.y16a{bottom:381.073500px;}
.y1e8{bottom:383.058000px;}
.y30{bottom:391.356000px;}
.y1aa{bottom:396.342000px;}
.yf6{bottom:396.409500px;}
.y84{bottom:396.558000px;}
.y129{bottom:397.314000px;}
.y1e7{bottom:398.542500px;}
.y4d{bottom:404.761500px;}
.y2f{bottom:406.840500px;}
.y1a9{bottom:411.826500px;}
.yf5{bottom:411.894000px;}
.y83{bottom:412.042500px;}
.y128{bottom:412.798500px;}
.y1e6{bottom:414.027000px;}
.y4c{bottom:420.246000px;}
.y2e{bottom:422.325000px;}
.y1a8{bottom:427.311000px;}
.yf4{bottom:427.378500px;}
.y82{bottom:427.527000px;}
.y127{bottom:428.283000px;}
.y1e5{bottom:429.511500px;}
.y4b{bottom:435.730500px;}
.y2d{bottom:437.985000px;}
.y1a7{bottom:442.795500px;}
.yf3{bottom:442.863000px;}
.y81{bottom:443.011500px;}
.y126{bottom:443.943000px;}
.y1e4{bottom:445.171500px;}
.y4a{bottom:451.390500px;}
.y2c{bottom:453.469500px;}
.y1a6{bottom:458.455500px;}
.yf2{bottom:458.523000px;}
.y80{bottom:458.671500px;}
.y125{bottom:459.427500px;}
.y1e3{bottom:460.656000px;}
.y49{bottom:466.875000px;}
.y2b{bottom:468.954000px;}
.y211{bottom:471.955500px;}
.y1a5{bottom:473.940000px;}
.yf1{bottom:474.007500px;}
.y7f{bottom:474.156000px;}
.y124{bottom:474.912000px;}
.y1e2{bottom:476.140500px;}
.y48{bottom:482.359500px;}
.y2a{bottom:484.438500px;}
.y210{bottom:487.440000px;}
.y1a4{bottom:489.424500px;}
.yf0{bottom:489.492000px;}
.y7e{bottom:489.640500px;}
.y123{bottom:490.396500px;}
.y1e1{bottom:491.625000px;}
.y47{bottom:497.844000px;}
.y29{bottom:500.098500px;}
.y20f{bottom:502.924500px;}
.y1a3{bottom:504.909000px;}
.yef{bottom:504.976500px;}
.y7d{bottom:505.125000px;}
.y122{bottom:506.056500px;}
.y1e0{bottom:507.285000px;}
.y46{bottom:513.504000px;}
.y28{bottom:515.583000px;}
.y20e{bottom:518.409000px;}
.y1a2{bottom:520.569000px;}
.yee{bottom:520.636500px;}
.y7c{bottom:520.785000px;}
.y121{bottom:521.541000px;}
.y1df{bottom:522.769500px;}
.y45{bottom:528.988500px;}
.y27{bottom:531.067500px;}
.y20d{bottom:534.069000px;}
.y1a1{bottom:536.053500px;}
.yed{bottom:536.121000px;}
.y7b{bottom:536.269500px;}
.y120{bottom:537.025500px;}
.y1de{bottom:538.254000px;}
.y44{bottom:544.473000px;}
.y20c{bottom:549.553500px;}
.y159{bottom:549.634500px;}
.y1a0{bottom:551.538000px;}
.yec{bottom:551.605500px;}
.y7a{bottom:551.754000px;}
.y11f{bottom:552.510000px;}
.y1dd{bottom:553.738500px;}
.y43{bottom:559.957500px;}
.y26{bottom:560.052000px;}
.y20b{bottom:565.038000px;}
.y158{bottom:565.119000px;}
.y19f{bottom:567.022500px;}
.yab{bottom:567.076500px;}
.yeb{bottom:567.090000px;}
.y79{bottom:567.238500px;}
.y11e{bottom:567.994500px;}
.y1dc{bottom:569.398500px;}
.y25{bottom:575.712000px;}
.y20a{bottom:580.522500px;}
.y157{bottom:580.603500px;}
.y19e{bottom:582.682500px;}
.yaa{bottom:582.736500px;}
.yea{bottom:582.750000px;}
.y78{bottom:582.898500px;}
.y11d{bottom:583.654500px;}
.y1db{bottom:584.883000px;}
.y24{bottom:591.196500px;}
.y209{bottom:596.182500px;}
.y156{bottom:596.263500px;}
.y19d{bottom:598.167000px;}
.ya9{bottom:598.221000px;}
.ye9{bottom:598.234500px;}
.y77{bottom:598.383000px;}
.y11c{bottom:599.139000px;}
.y1da{bottom:600.367500px;}
.y23{bottom:606.681000px;}
.y208{bottom:611.667000px;}
.y155{bottom:611.748000px;}
.y19c{bottom:613.651500px;}
.ya8{bottom:613.705500px;}
.ye8{bottom:613.719000px;}
.y76{bottom:613.867500px;}
.y11b{bottom:614.623500px;}
.y1d9{bottom:615.852000px;}
.y22{bottom:622.165500px;}
.y207{bottom:627.151500px;}
.y154{bottom:627.232500px;}
.y19b{bottom:629.136000px;}
.ya7{bottom:629.190000px;}
.ye7{bottom:629.203500px;}
.y75{bottom:629.352000px;}
.y11a{bottom:630.108000px;}
.y1d8{bottom:631.512000px;}
.y21{bottom:637.825500px;}
.y206{bottom:642.636000px;}
.y153{bottom:642.717000px;}
.y19a{bottom:644.796000px;}
.ya6{bottom:644.850000px;}
.ye6{bottom:644.863500px;}
.yc3{bottom:645.012000px;}
.y119{bottom:645.768000px;}
.y1d7{bottom:646.996500px;}
.y20{bottom:653.310000px;}
.y205{bottom:658.296000px;}
.y152{bottom:658.377000px;}
.y74{bottom:658.512000px;}
.y199{bottom:660.280500px;}
.ya5{bottom:660.334500px;}
.ye5{bottom:660.348000px;}
.yc2{bottom:660.496500px;}
.y118{bottom:661.252500px;}
.y1d6{bottom:662.481000px;}
.y1f{bottom:668.794500px;}
.y204{bottom:673.780500px;}
.y151{bottom:673.861500px;}
.y73{bottom:673.996500px;}
.y198{bottom:675.765000px;}
.ye4{bottom:675.832500px;}
.yc1{bottom:675.981000px;}
.y117{bottom:676.737000px;}
.y1d5{bottom:677.965500px;}
.y1e{bottom:684.279000px;}
.y203{bottom:689.265000px;}
.ya4{bottom:689.319000px;}
.y150{bottom:689.346000px;}
.y72{bottom:689.481000px;}
.y197{bottom:691.249500px;}
.yc0{bottom:691.465500px;}
.y116{bottom:692.221500px;}
.y1d4{bottom:693.625500px;}
.y1d{bottom:699.939000px;}
.y202{bottom:704.749500px;}
.ya3{bottom:704.803500px;}
.ye3{bottom:704.817000px;}
.y14f{bottom:704.830500px;}
.y71{bottom:704.965500px;}
.y196{bottom:706.909500px;}
.ybf{bottom:707.125500px;}
.y115{bottom:707.881500px;}
.y1d3{bottom:709.110000px;}
.y1c{bottom:715.423500px;}
.y201{bottom:720.409500px;}
.ya2{bottom:720.463500px;}
.ye2{bottom:720.477000px;}
.y14e{bottom:720.490500px;}
.y70{bottom:720.625500px;}
.y195{bottom:722.394000px;}
.ybe{bottom:722.610000px;}
.y114{bottom:723.366000px;}
.y1d2{bottom:724.594500px;}
.y1b{bottom:730.908000px;}
.y200{bottom:735.894000px;}
.ya1{bottom:735.948000px;}
.ye1{bottom:735.961500px;}
.y14d{bottom:735.975000px;}
.y6f{bottom:736.110000px;}
.y194{bottom:737.878500px;}
.ybd{bottom:738.094500px;}
.y113{bottom:738.850500px;}
.y1d1{bottom:740.079000px;}
.y1a{bottom:746.392500px;}
.y1ff{bottom:751.378500px;}
.ya0{bottom:751.432500px;}
.ye0{bottom:751.446000px;}
.y14c{bottom:751.459500px;}
.y6e{bottom:751.594500px;}
.y193{bottom:753.363000px;}
.ybc{bottom:753.579000px;}
.y112{bottom:754.335000px;}
.y1d0{bottom:755.739000px;}
.y19{bottom:762.052500px;}
.y1fe{bottom:766.863000px;}
.y9f{bottom:766.917000px;}
.ydf{bottom:766.930500px;}
.y14b{bottom:766.944000px;}
.y6d{bottom:767.079000px;}
.y192{bottom:769.023000px;}
.ybb{bottom:769.239000px;}
.y111{bottom:769.995000px;}
.y1cf{bottom:771.223500px;}
.y18{bottom:777.537000px;}
.y1fd{bottom:782.523000px;}
.y9e{bottom:782.577000px;}
.yde{bottom:782.590500px;}
.y14a{bottom:782.604000px;}
.y6c{bottom:782.739000px;}
.y191{bottom:784.507500px;}
.yba{bottom:784.723500px;}
.y110{bottom:785.479500px;}
.y1ce{bottom:786.708000px;}
.y17{bottom:793.021500px;}
.y1fc{bottom:798.007500px;}
.y9d{bottom:798.061500px;}
.ydd{bottom:798.075000px;}
.y149{bottom:798.088500px;}
.y6b{bottom:798.223500px;}
.y190{bottom:799.992000px;}
.yb9{bottom:800.208000px;}
.y10f{bottom:800.964000px;}
.y1cd{bottom:802.192500px;}
.y16{bottom:808.506000px;}
.y1fb{bottom:813.492000px;}
.y9c{bottom:813.546000px;}
.ydc{bottom:813.559500px;}
.y148{bottom:813.573000px;}
.y6a{bottom:813.708000px;}
.y18f{bottom:815.476500px;}
.y10e{bottom:816.448500px;}
.y1cc{bottom:817.852500px;}
.y15{bottom:824.166000px;}
.y1fa{bottom:828.976500px;}
.y9b{bottom:829.030500px;}
.ydb{bottom:829.044000px;}
.y147{bottom:829.057500px;}
.y69{bottom:829.192500px;}
.y10d{bottom:832.108500px;}
.y14{bottom:839.650500px;}
.y18e{bottom:844.636500px;}
.y9a{bottom:844.690500px;}
.yda{bottom:844.704000px;}
.y146{bottom:844.717500px;}
.y68{bottom:844.852500px;}
.y1cb{bottom:846.837000px;}
.y10c{bottom:847.593000px;}
.y13{bottom:855.135000px;}
.y18d{bottom:860.121000px;}
.y99{bottom:860.175000px;}
.yd9{bottom:860.188500px;}
.y145{bottom:860.202000px;}
.y67{bottom:860.337000px;}
.y1ca{bottom:862.321500px;}
.y10b{bottom:863.077500px;}
.y12{bottom:870.619500px;}
.y18c{bottom:875.605500px;}
.y98{bottom:875.659500px;}
.yd8{bottom:875.673000px;}
.y144{bottom:875.686500px;}
.y66{bottom:875.821500px;}
.y1c9{bottom:877.806000px;}
.y10a{bottom:878.562000px;}
.y11{bottom:886.279500px;}
.y18b{bottom:891.090000px;}
.y97{bottom:891.144000px;}
.yd7{bottom:891.157500px;}
.y143{bottom:891.171000px;}
.y65{bottom:891.306000px;}
.y1c8{bottom:893.466000px;}
.y109{bottom:894.222000px;}
.y10{bottom:901.764000px;}
.y18a{bottom:906.750000px;}
.y96{bottom:906.804000px;}
.yd6{bottom:906.817500px;}
.y142{bottom:906.831000px;}
.y64{bottom:906.966000px;}
.y1c7{bottom:908.950500px;}
.y108{bottom:909.706500px;}
.yf{bottom:917.248500px;}
.y189{bottom:922.234500px;}
.y95{bottom:922.288500px;}
.yd5{bottom:922.302000px;}
.y141{bottom:922.315500px;}
.y63{bottom:922.450500px;}
.y1c6{bottom:924.435000px;}
.ye{bottom:932.733000px;}
.y188{bottom:937.719000px;}
.y94{bottom:937.773000px;}
.yd4{bottom:937.786500px;}
.y140{bottom:937.800000px;}
.y62{bottom:937.935000px;}
.y1c5{bottom:939.919500px;}
.yd{bottom:948.393000px;}
.y187{bottom:953.203500px;}
.y93{bottom:953.257500px;}
.yd3{bottom:953.271000px;}
.y13f{bottom:953.284500px;}
.y61{bottom:953.419500px;}
.y1c4{bottom:955.404000px;}
.yc{bottom:963.877500px;}
.y186{bottom:968.688000px;}
.y92{bottom:968.742000px;}
.yd2{bottom:968.755500px;}
.y13e{bottom:968.769000px;}
.y60{bottom:968.904000px;}
.y1c3{bottom:971.064000px;}
.yb{bottom:979.362000px;}
.y185{bottom:984.348000px;}
.y91{bottom:984.402000px;}
.yd1{bottom:984.415500px;}
.y13d{bottom:984.429000px;}
.y5f{bottom:984.564000px;}
.y1c2{bottom:986.548500px;}
.ya{bottom:994.846500px;}
.y184{bottom:999.832500px;}
.y90{bottom:999.886500px;}
.yd0{bottom:999.900000px;}
.y13c{bottom:999.913500px;}
.y5e{bottom:1000.048500px;}
.y1c1{bottom:1002.033000px;}
.y9{bottom:1010.331000px;}
.y183{bottom:1015.317000px;}
.y8f{bottom:1015.371000px;}
.ycf{bottom:1015.384500px;}
.y13b{bottom:1015.398000px;}
.y5d{bottom:1015.533000px;}
.y1c0{bottom:1017.517500px;}
.y8{bottom:1025.991000px;}
.y182{bottom:1030.801500px;}
.y8e{bottom:1030.855500px;}
.yce{bottom:1030.869000px;}
.y13a{bottom:1030.882500px;}
.y5c{bottom:1031.017500px;}
.y1bf{bottom:1033.177500px;}
.y7{bottom:1041.475500px;}
.y181{bottom:1046.461500px;}
.y8d{bottom:1046.515500px;}
.ycd{bottom:1046.529000px;}
.y139{bottom:1046.542500px;}
.y5b{bottom:1046.677500px;}
.y1be{bottom:1048.662000px;}
.y6{bottom:1061.460000px;}
.y180{bottom:1061.946000px;}
.y8c{bottom:1062.000000px;}
.ycc{bottom:1062.013500px;}
.y138{bottom:1062.027000px;}
.y5a{bottom:1062.162000px;}
.y1bd{bottom:1064.146500px;}
.y5{bottom:1076.940000px;}
.y17f{bottom:1077.430500px;}
.y8b{bottom:1077.484500px;}
.ycb{bottom:1077.498000px;}
.y137{bottom:1077.511500px;}
.y59{bottom:1077.646500px;}
.y1bc{bottom:1079.631000px;}
.y4{bottom:1088.095500px;}
.y17e{bottom:1092.915000px;}
.y8a{bottom:1092.969000px;}
.yca{bottom:1092.982500px;}
.y136{bottom:1092.996000px;}
.y58{bottom:1093.131000px;}
.y1bb{bottom:1095.291000px;}
.y3{bottom:1103.571000px;}
.y17d{bottom:1108.575000px;}
.y89{bottom:1108.629000px;}
.yc9{bottom:1108.642500px;}
.y135{bottom:1108.656000px;}
.y57{bottom:1108.791000px;}
.y1ba{bottom:1110.775500px;}
.y2{bottom:1119.055500px;}
.y17c{bottom:1124.059500px;}
.y88{bottom:1124.113500px;}
.yc8{bottom:1124.127000px;}
.y134{bottom:1124.140500px;}
.y56{bottom:1124.275500px;}
.y1{bottom:1135.620000px;}
.y17b{bottom:1139.544000px;}
.y87{bottom:1139.598000px;}
.yc7{bottom:1139.611500px;}
.y133{bottom:1139.625000px;}
.y55{bottom:1139.760000px;}
.y50{bottom:1193.939722px;}
.y54{bottom:1246.139850px;}
.h5{height:25.013672px;}
.h7{height:29.040150px;}
.h6{height:36.597656px;}
.h9{height:37.494141px;}
.h3{height:37.520508px;}
.h4{height:43.049672px;}
.h2{height:48.796875px;}
.h8{height:49.898438px;}
.h1{height:1258.500000px;}
.h0{height:1258.740000px;}
.w4{width:26.695500px;}
.w3{width:551.578500px;}
.w2{width:666.346500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:5.025000px;}
.xf{left:26.695500px;}
.x1{left:84.960000px;}
.xa{left:113.316765px;}
.x17{left:136.449000px;}
.x16{left:146.857500px;}
.x4{left:157.680000px;}
.xd{left:164.059500px;}
.xc{left:170.700760px;}
.x19{left:183.064500px;}
.x13{left:187.897500px;}
.x11{left:189.693000px;}
.x5{left:205.020000px;}
.x1b{left:206.280000px;}
.x6{left:211.869000px;}
.x1c{left:227.691000px;}
.x3{left:235.800000px;}
.x10{left:259.177500px;}
.x12{left:433.597500px;}
.x2{left:445.684500px;}
.x7{left:459.351000px;}
.x15{left:490.311000px;}
.x9{left:498.946500px;}
.x18{left:510.871500px;}
.x14{left:585.162000px;}
.x1a{left:590.764500px;}
.xe{left:781.244843px;}
.x8{left:808.002000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.032000pt;}
.ls2d{letter-spacing:-1.152000pt;}
.ls13{letter-spacing:-1.104000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.816000pt;}
.ls2c{letter-spacing:-0.720000pt;}
.ls1e{letter-spacing:-0.624000pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.432000pt;}
.lse{letter-spacing:-0.336000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.144000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.676800pt;}
.ls35{letter-spacing:0.801600pt;}
.ls24{letter-spacing:0.816000pt;}
.ls38{letter-spacing:1.440000pt;}
.ls39{letter-spacing:2.064000pt;}
.ls30{letter-spacing:2.736000pt;}
.ls8{letter-spacing:3.115200pt;}
.ls34{letter-spacing:3.350400pt;}
.ls17{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.984000pt;}
.lsa{letter-spacing:4.056000pt;}
.ls28{letter-spacing:4.641600pt;}
.ls27{letter-spacing:4.656000pt;}
.ls37{letter-spacing:5.280000pt;}
.ls15{letter-spacing:5.904000pt;}
.ls2f{letter-spacing:5.918400pt;}
.ls1b{letter-spacing:6.576000pt;}
.ls21{letter-spacing:7.200000pt;}
.ls26{letter-spacing:7.824000pt;}
.ls25{letter-spacing:8.496000pt;}
.ls6{letter-spacing:9.105600pt;}
.ls5{letter-spacing:9.120000pt;}
.ls4{letter-spacing:9.744000pt;}
.ls33{letter-spacing:10.416000pt;}
.ls32{letter-spacing:10.425600pt;}
.ls29{letter-spacing:11.635200pt;}
.ls7{letter-spacing:11.664000pt;}
.ls3a{letter-spacing:12.336000pt;}
.ls16{letter-spacing:13.584000pt;}
.ls31{letter-spacing:16.176000pt;}
.ls2a{letter-spacing:18.571200pt;}
.ls2b{letter-spacing:18.720000pt;}
.ls18{letter-spacing:21.936000pt;}
.ls20{letter-spacing:22.512000pt;}
.ls19{letter-spacing:25.104000pt;}
.ls3b{letter-spacing:25.123200pt;}
.ls3{letter-spacing:26.352000pt;}
.ls36{letter-spacing:28.944000pt;}
.ls1a{letter-spacing:29.616000pt;}
.ls1f{letter-spacing:36.000000pt;}
.ls22{letter-spacing:36.657600pt;}
.ls1c{letter-spacing:55.200000pt;}
.ws3{word-spacing:-12.336000pt;}
.ws4{word-spacing:-12.192000pt;}
.ws71{word-spacing:-12.144000pt;}
.ws43{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws44{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.808000pt;}
.ws5{word-spacing:-11.664000pt;}
.ws72{word-spacing:-11.568000pt;}
.ws45{word-spacing:-11.472000pt;}
.wsb1{word-spacing:-11.280000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws3b{word-spacing:-2.736000pt;}
.ws7a{word-spacing:-2.496000pt;}
.ws25{word-spacing:-2.208000pt;}
.ws1d{word-spacing:-2.112000pt;}
.ws42{word-spacing:-1.872000pt;}
.ws70{word-spacing:-1.584000pt;}
.ws20{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.200000pt;}
.ws1a{word-spacing:-0.912000pt;}
.wsa{word-spacing:-0.816000pt;}
.ws91{word-spacing:-0.672000pt;}
.wse{word-spacing:-0.624000pt;}
.ws12{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.336000pt;}
.wsd{word-spacing:-0.288000pt;}
.ws9{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.144000pt;}
.ws27{word-spacing:-0.096000pt;}
.ws95{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.048000pt;}
.ws36{word-spacing:0.096000pt;}
.ws4c{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws24{word-spacing:0.240000pt;}
.ws6{word-spacing:0.256000pt;}
.ws8{word-spacing:0.336000pt;}
.ws16{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.528000pt;}
.ws6e{word-spacing:0.624000pt;}
.ws5d{word-spacing:0.720000pt;}
.ws4d{word-spacing:0.816000pt;}
.ws84{word-spacing:0.912000pt;}
.ws21{word-spacing:0.960000pt;}
.ws15{word-spacing:1.008000pt;}
.ws2d{word-spacing:1.104000pt;}
.ws79{word-spacing:1.152000pt;}
.wsa6{word-spacing:1.344000pt;}
.ws17{word-spacing:1.632000pt;}
.ws11{word-spacing:1.728000pt;}
.ws22{word-spacing:1.968000pt;}
.ws1c{word-spacing:2.256000pt;}
.ws10{word-spacing:2.400000pt;}
.ws7f{word-spacing:2.640000pt;}
.wsf{word-spacing:2.928000pt;}
.ws19{word-spacing:3.024000pt;}
.wsbc{word-spacing:3.216000pt;}
.wsa4{word-spacing:3.264000pt;}
.wsce{word-spacing:3.456000pt;}
.ws18{word-spacing:3.552000pt;}
.ws41{word-spacing:3.648000pt;}
.ws59{word-spacing:3.888000pt;}
.ws3f{word-spacing:3.984000pt;}
.ws5a{word-spacing:4.080000pt;}
.ws3e{word-spacing:4.176000pt;}
.ws40{word-spacing:4.320000pt;}
.ws13{word-spacing:4.560000pt;}
.ws14{word-spacing:4.848000pt;}
.ws55{word-spacing:4.944000pt;}
.ws9f{word-spacing:4.992000pt;}
.ws54{word-spacing:5.184000pt;}
.wsa0{word-spacing:5.280000pt;}
.ws1f{word-spacing:5.472000pt;}
.ws3a{word-spacing:5.568000pt;}
.ws49{word-spacing:5.808000pt;}
.ws48{word-spacing:6.096000pt;}
.ws69{word-spacing:6.240000pt;}
.ws6c{word-spacing:6.480000pt;}
.wsb6{word-spacing:6.672000pt;}
.ws31{word-spacing:6.768000pt;}
.ws77{word-spacing:6.864000pt;}
.ws60{word-spacing:7.104000pt;}
.ws75{word-spacing:7.296000pt;}
.ws23{word-spacing:7.392000pt;}
.ws89{word-spacing:7.488000pt;}
.wsa7{word-spacing:7.824000pt;}
.wsb7{word-spacing:7.920000pt;}
.ws86{word-spacing:8.016000pt;}
.ws57{word-spacing:8.160000pt;}
.wsb8{word-spacing:8.352000pt;}
.ws37{word-spacing:8.400000pt;}
.wsc3{word-spacing:8.592000pt;}
.ws87{word-spacing:8.688000pt;}
.ws28{word-spacing:8.784000pt;}
.ws6f{word-spacing:9.024000pt;}
.ws29{word-spacing:9.120000pt;}
.ws2a{word-spacing:9.312000pt;}
.ws82{word-spacing:9.408000pt;}
.wsc6{word-spacing:9.600000pt;}
.ws26{word-spacing:9.936000pt;}
.ws80{word-spacing:10.080000pt;}
.ws78{word-spacing:10.320000pt;}
.ws53{word-spacing:10.608000pt;}
.ws63{word-spacing:10.704000pt;}
.ws8c{word-spacing:11.232000pt;}
.ws46{word-spacing:11.328000pt;}
.ws94{word-spacing:11.568000pt;}
.ws3c{word-spacing:11.856000pt;}
.ws8a{word-spacing:12.000000pt;}
.wsc5{word-spacing:12.192000pt;}
.wsc4{word-spacing:12.432000pt;}
.ws76{word-spacing:12.528000pt;}
.wsc1{word-spacing:12.624000pt;}
.wsaa{word-spacing:12.864000pt;}
.ws7e{word-spacing:13.152000pt;}
.ws64{word-spacing:13.248000pt;}
.ws2f{word-spacing:13.488000pt;}
.ws30{word-spacing:13.776000pt;}
.wsa5{word-spacing:13.920000pt;}
.wsc8{word-spacing:14.352000pt;}
.wsc9{word-spacing:14.448000pt;}
.wsa8{word-spacing:14.544000pt;}
.wsca{word-spacing:14.592000pt;}
.ws8d{word-spacing:14.784000pt;}
.wscb{word-spacing:14.976000pt;}
.ws62{word-spacing:15.072000pt;}
.ws34{word-spacing:15.168000pt;}
.wsa3{word-spacing:15.408000pt;}
.ws58{word-spacing:15.696000pt;}
.ws4f{word-spacing:15.840000pt;}
.ws8f{word-spacing:16.368000pt;}
.ws9d{word-spacing:16.464000pt;}
.ws73{word-spacing:16.704000pt;}
.ws93{word-spacing:16.992000pt;}
.wsc2{word-spacing:17.088000pt;}
.wsaf{word-spacing:17.136000pt;}
.wsc7{word-spacing:17.520000pt;}
.ws7d{word-spacing:17.616000pt;}
.ws38{word-spacing:17.760000pt;}
.ws8e{word-spacing:18.000000pt;}
.wsa1{word-spacing:18.288000pt;}
.ws92{word-spacing:18.384000pt;}
.wsb9{word-spacing:18.576000pt;}
.ws96{word-spacing:18.624000pt;}
.ws85{word-spacing:18.912000pt;}
.wsb3{word-spacing:19.008000pt;}
.ws97{word-spacing:19.056000pt;}
.wsbb{word-spacing:19.440000pt;}
.ws9a{word-spacing:19.536000pt;}
.ws4e{word-spacing:19.680000pt;}
.ws74{word-spacing:20.208000pt;}
.ws56{word-spacing:20.304000pt;}
.wsc0{word-spacing:20.496000pt;}
.ws98{word-spacing:20.544000pt;}
.ws2b{word-spacing:20.832000pt;}
.ws81{word-spacing:20.928000pt;}
.ws51{word-spacing:21.456000pt;}
.ws52{word-spacing:21.600000pt;}
.ws5b{word-spacing:21.840000pt;}
.ws50{word-spacing:22.224000pt;}
.ws5c{word-spacing:22.752000pt;}
.wsb4{word-spacing:22.848000pt;}
.ws61{word-spacing:23.376000pt;}
.wsab{word-spacing:23.520000pt;}
.wscd{word-spacing:23.760000pt;}
.wsba{word-spacing:24.144000pt;}
.ws8b{word-spacing:24.384000pt;}
.ws9c{word-spacing:24.672000pt;}
.ws5e{word-spacing:24.768000pt;}
.ws5f{word-spacing:25.296000pt;}
.ws67{word-spacing:25.680000pt;}
.ws66{word-spacing:25.968000pt;}
.ws65{word-spacing:26.688000pt;}
.ws47{word-spacing:27.216000pt;}
.wsad{word-spacing:27.360000pt;}
.wsae{word-spacing:27.696000pt;}
.wsac{word-spacing:27.888000pt;}
.wsb5{word-spacing:28.176000pt;}
.ws39{word-spacing:28.512000pt;}
.wsa9{word-spacing:28.608000pt;}
.ws9e{word-spacing:29.136000pt;}
.ws35{word-spacing:29.904000pt;}
.ws68{word-spacing:30.432000pt;}
.wscf{word-spacing:30.528000pt;}
.ws32{word-spacing:31.056000pt;}
.ws88{word-spacing:32.448000pt;}
.wsa2{word-spacing:33.120000pt;}
.wsbe{word-spacing:34.368000pt;}
.wsbd{word-spacing:34.896000pt;}
.ws99{word-spacing:35.040000pt;}
.ws7c{word-spacing:35.280000pt;}
.ws90{word-spacing:35.568000pt;}
.ws7b{word-spacing:36.192000pt;}
.ws83{word-spacing:36.288000pt;}
.wsb0{word-spacing:36.816000pt;}
.ws9b{word-spacing:36.960000pt;}
.wsbf{word-spacing:37.632000pt;}
.ws4b{word-spacing:38.112000pt;}
.ws6d{word-spacing:38.208000pt;}
.ws33{word-spacing:41.040000pt;}
.wscc{word-spacing:41.328000pt;}
.ws2c{word-spacing:51.552000pt;}
.ws6b{word-spacing:54.864000pt;}
.ws6a{word-spacing:55.392000pt;}
.ws4a{word-spacing:66.096000pt;}
.wsb2{word-spacing:91.968000pt;}
._13{margin-left:-3.552000pt;}
._6{margin-left:-2.592000pt;}
._1{margin-left:-1.200000pt;}
._0{width:1.152000pt;}
._7{width:2.064000pt;}
._d{width:3.264000pt;}
._8{width:4.416000pt;}
._11{width:5.664000pt;}
._9{width:6.768000pt;}
._4{width:8.304000pt;}
._2{width:9.408000pt;}
._b{width:10.560000pt;}
._f{width:15.552000pt;}
._e{width:16.512000pt;}
._10{width:17.515200pt;}
._c{width:20.736000pt;}
._12{width:24.000000pt;}
._5{width:28.368000pt;}
._3{width:30.000000pt;}
._a{width:36.288000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.245333pt;}
.y51{bottom:15.045333pt;}
.y53{bottom:31.786751pt;}
.yb8{bottom:97.148000pt;}
.y132{bottom:98.756000pt;}
.y42{bottom:99.496000pt;}
.y107{bottom:105.752000pt;}
.y1f9{bottom:105.884000pt;}
.y86{bottom:106.736000pt;}
.y169{bottom:109.484000pt;}
.yb7{bottom:110.912000pt;}
.y131{bottom:112.520000pt;}
.y41{bottom:113.260000pt;}
.y4f{bottom:113.548000pt;}
.yc6{bottom:116.348000pt;}
.y17a{bottom:117.884000pt;}
.y85{bottom:117.932000pt;}
.y106{bottom:119.516000pt;}
.y1f8{bottom:119.648000pt;}
.y168{bottom:123.404000pt;}
.y4e{bottom:124.744000pt;}
.yb6{bottom:124.832000pt;}
.y130{bottom:126.284000pt;}
.y40{bottom:127.024000pt;}
.yc5{bottom:130.112000pt;}
.y179{bottom:131.648000pt;}
.y105{bottom:133.280000pt;}
.y1f7{bottom:133.412000pt;}
.y167{bottom:137.168000pt;}
.yb5{bottom:138.596000pt;}
.y12f{bottom:140.204000pt;}
.y3f{bottom:140.788000pt;}
.yc4{bottom:141.308000pt;}
.y1b9{bottom:145.220000pt;}
.y178{bottom:145.412000pt;}
.y104{bottom:147.044000pt;}
.y1f6{bottom:147.176000pt;}
.y166{bottom:150.932000pt;}
.yb4{bottom:152.360000pt;}
.y3e{bottom:154.708000pt;}
.y1b8{bottom:158.984000pt;}
.y177{bottom:159.176000pt;}
.y103{bottom:160.964000pt;}
.y1f5{bottom:161.096000pt;}
.y165{bottom:164.696000pt;}
.y12e{bottom:165.968000pt;}
.yb3{bottom:166.124000pt;}
.y3d{bottom:168.472000pt;}
.y1b7{bottom:172.904000pt;}
.y176{bottom:173.096000pt;}
.y102{bottom:174.728000pt;}
.y1f4{bottom:174.860000pt;}
.y164{bottom:178.616000pt;}
.y12d{bottom:179.732000pt;}
.yb2{bottom:180.044000pt;}
.y3c{bottom:182.236000pt;}
.y1b6{bottom:186.668000pt;}
.y175{bottom:186.860000pt;}
.y101{bottom:188.492000pt;}
.y1f3{bottom:188.624000pt;}
.y163{bottom:192.380000pt;}
.y12c{bottom:193.496000pt;}
.yb1{bottom:193.808000pt;}
.y3b{bottom:196.000000pt;}
.y1b5{bottom:200.432000pt;}
.y174{bottom:200.624000pt;}
.y100{bottom:202.256000pt;}
.y1f2{bottom:202.388000pt;}
.y162{bottom:206.144000pt;}
.y12b{bottom:207.416000pt;}
.yb0{bottom:207.572000pt;}
.y3a{bottom:209.920000pt;}
.y1b4{bottom:214.196000pt;}
.y173{bottom:214.388000pt;}
.yff{bottom:216.176000pt;}
.y1f1{bottom:216.308000pt;}
.y12a{bottom:218.612000pt;}
.y161{bottom:219.908000pt;}
.yaf{bottom:221.336000pt;}
.y39{bottom:223.684000pt;}
.y1b3{bottom:228.116000pt;}
.y172{bottom:228.308000pt;}
.yfe{bottom:229.940000pt;}
.y1f0{bottom:230.072000pt;}
.y160{bottom:233.672000pt;}
.yae{bottom:235.256000pt;}
.y38{bottom:237.448000pt;}
.y1b2{bottom:241.880000pt;}
.y171{bottom:242.072000pt;}
.yfd{bottom:243.704000pt;}
.y1ef{bottom:243.836000pt;}
.y15f{bottom:247.592000pt;}
.yad{bottom:249.020000pt;}
.y37{bottom:251.212000pt;}
.y1b1{bottom:255.644000pt;}
.y170{bottom:255.836000pt;}
.yfc{bottom:257.468000pt;}
.y1ee{bottom:257.600000pt;}
.y15e{bottom:261.356000pt;}
.yac{bottom:262.784000pt;}
.y36{bottom:265.132000pt;}
.y1b0{bottom:269.408000pt;}
.y16f{bottom:269.600000pt;}
.y1ed{bottom:271.520000pt;}
.y15d{bottom:275.120000pt;}
.y35{bottom:278.896000pt;}
.y1af{bottom:283.328000pt;}
.yfb{bottom:283.388000pt;}
.y16e{bottom:283.520000pt;}
.y1ec{bottom:285.284000pt;}
.y15c{bottom:288.884000pt;}
.y34{bottom:292.660000pt;}
.y1ae{bottom:297.092000pt;}
.yfa{bottom:297.152000pt;}
.y16d{bottom:297.284000pt;}
.y1eb{bottom:299.048000pt;}
.y15b{bottom:302.804000pt;}
.y33{bottom:306.424000pt;}
.y1ad{bottom:310.856000pt;}
.yf9{bottom:310.916000pt;}
.y16c{bottom:311.048000pt;}
.y1ea{bottom:312.812000pt;}
.y15a{bottom:314.000000pt;}
.y32{bottom:320.344000pt;}
.y1ac{bottom:324.620000pt;}
.yf8{bottom:324.680000pt;}
.y16b{bottom:324.812000pt;}
.y1e9{bottom:326.732000pt;}
.y31{bottom:334.108000pt;}
.y1ab{bottom:338.540000pt;}
.yf7{bottom:338.600000pt;}
.y16a{bottom:338.732000pt;}
.y1e8{bottom:340.496000pt;}
.y30{bottom:347.872000pt;}
.y1aa{bottom:352.304000pt;}
.yf6{bottom:352.364000pt;}
.y84{bottom:352.496000pt;}
.y129{bottom:353.168000pt;}
.y1e7{bottom:354.260000pt;}
.y4d{bottom:359.788000pt;}
.y2f{bottom:361.636000pt;}
.y1a9{bottom:366.068000pt;}
.yf5{bottom:366.128000pt;}
.y83{bottom:366.260000pt;}
.y128{bottom:366.932000pt;}
.y1e6{bottom:368.024000pt;}
.y4c{bottom:373.552000pt;}
.y2e{bottom:375.400000pt;}
.y1a8{bottom:379.832000pt;}
.yf4{bottom:379.892000pt;}
.y82{bottom:380.024000pt;}
.y127{bottom:380.696000pt;}
.y1e5{bottom:381.788000pt;}
.y4b{bottom:387.316000pt;}
.y2d{bottom:389.320000pt;}
.y1a7{bottom:393.596000pt;}
.yf3{bottom:393.656000pt;}
.y81{bottom:393.788000pt;}
.y126{bottom:394.616000pt;}
.y1e4{bottom:395.708000pt;}
.y4a{bottom:401.236000pt;}
.y2c{bottom:403.084000pt;}
.y1a6{bottom:407.516000pt;}
.yf2{bottom:407.576000pt;}
.y80{bottom:407.708000pt;}
.y125{bottom:408.380000pt;}
.y1e3{bottom:409.472000pt;}
.y49{bottom:415.000000pt;}
.y2b{bottom:416.848000pt;}
.y211{bottom:419.516000pt;}
.y1a5{bottom:421.280000pt;}
.yf1{bottom:421.340000pt;}
.y7f{bottom:421.472000pt;}
.y124{bottom:422.144000pt;}
.y1e2{bottom:423.236000pt;}
.y48{bottom:428.764000pt;}
.y2a{bottom:430.612000pt;}
.y210{bottom:433.280000pt;}
.y1a4{bottom:435.044000pt;}
.yf0{bottom:435.104000pt;}
.y7e{bottom:435.236000pt;}
.y123{bottom:435.908000pt;}
.y1e1{bottom:437.000000pt;}
.y47{bottom:442.528000pt;}
.y29{bottom:444.532000pt;}
.y20f{bottom:447.044000pt;}
.y1a3{bottom:448.808000pt;}
.yef{bottom:448.868000pt;}
.y7d{bottom:449.000000pt;}
.y122{bottom:449.828000pt;}
.y1e0{bottom:450.920000pt;}
.y46{bottom:456.448000pt;}
.y28{bottom:458.296000pt;}
.y20e{bottom:460.808000pt;}
.y1a2{bottom:462.728000pt;}
.yee{bottom:462.788000pt;}
.y7c{bottom:462.920000pt;}
.y121{bottom:463.592000pt;}
.y1df{bottom:464.684000pt;}
.y45{bottom:470.212000pt;}
.y27{bottom:472.060000pt;}
.y20d{bottom:474.728000pt;}
.y1a1{bottom:476.492000pt;}
.yed{bottom:476.552000pt;}
.y7b{bottom:476.684000pt;}
.y120{bottom:477.356000pt;}
.y1de{bottom:478.448000pt;}
.y44{bottom:483.976000pt;}
.y20c{bottom:488.492000pt;}
.y159{bottom:488.564000pt;}
.y1a0{bottom:490.256000pt;}
.yec{bottom:490.316000pt;}
.y7a{bottom:490.448000pt;}
.y11f{bottom:491.120000pt;}
.y1dd{bottom:492.212000pt;}
.y43{bottom:497.740000pt;}
.y26{bottom:497.824000pt;}
.y20b{bottom:502.256000pt;}
.y158{bottom:502.328000pt;}
.y19f{bottom:504.020000pt;}
.yab{bottom:504.068000pt;}
.yeb{bottom:504.080000pt;}
.y79{bottom:504.212000pt;}
.y11e{bottom:504.884000pt;}
.y1dc{bottom:506.132000pt;}
.y25{bottom:511.744000pt;}
.y20a{bottom:516.020000pt;}
.y157{bottom:516.092000pt;}
.y19e{bottom:517.940000pt;}
.yaa{bottom:517.988000pt;}
.yea{bottom:518.000000pt;}
.y78{bottom:518.132000pt;}
.y11d{bottom:518.804000pt;}
.y1db{bottom:519.896000pt;}
.y24{bottom:525.508000pt;}
.y209{bottom:529.940000pt;}
.y156{bottom:530.012000pt;}
.y19d{bottom:531.704000pt;}
.ya9{bottom:531.752000pt;}
.ye9{bottom:531.764000pt;}
.y77{bottom:531.896000pt;}
.y11c{bottom:532.568000pt;}
.y1da{bottom:533.660000pt;}
.y23{bottom:539.272000pt;}
.y208{bottom:543.704000pt;}
.y155{bottom:543.776000pt;}
.y19c{bottom:545.468000pt;}
.ya8{bottom:545.516000pt;}
.ye8{bottom:545.528000pt;}
.y76{bottom:545.660000pt;}
.y11b{bottom:546.332000pt;}
.y1d9{bottom:547.424000pt;}
.y22{bottom:553.036000pt;}
.y207{bottom:557.468000pt;}
.y154{bottom:557.540000pt;}
.y19b{bottom:559.232000pt;}
.ya7{bottom:559.280000pt;}
.ye7{bottom:559.292000pt;}
.y75{bottom:559.424000pt;}
.y11a{bottom:560.096000pt;}
.y1d8{bottom:561.344000pt;}
.y21{bottom:566.956000pt;}
.y206{bottom:571.232000pt;}
.y153{bottom:571.304000pt;}
.y19a{bottom:573.152000pt;}
.ya6{bottom:573.200000pt;}
.ye6{bottom:573.212000pt;}
.yc3{bottom:573.344000pt;}
.y119{bottom:574.016000pt;}
.y1d7{bottom:575.108000pt;}
.y20{bottom:580.720000pt;}
.y205{bottom:585.152000pt;}
.y152{bottom:585.224000pt;}
.y74{bottom:585.344000pt;}
.y199{bottom:586.916000pt;}
.ya5{bottom:586.964000pt;}
.ye5{bottom:586.976000pt;}
.yc2{bottom:587.108000pt;}
.y118{bottom:587.780000pt;}
.y1d6{bottom:588.872000pt;}
.y1f{bottom:594.484000pt;}
.y204{bottom:598.916000pt;}
.y151{bottom:598.988000pt;}
.y73{bottom:599.108000pt;}
.y198{bottom:600.680000pt;}
.ye4{bottom:600.740000pt;}
.yc1{bottom:600.872000pt;}
.y117{bottom:601.544000pt;}
.y1d5{bottom:602.636000pt;}
.y1e{bottom:608.248000pt;}
.y203{bottom:612.680000pt;}
.ya4{bottom:612.728000pt;}
.y150{bottom:612.752000pt;}
.y72{bottom:612.872000pt;}
.y197{bottom:614.444000pt;}
.yc0{bottom:614.636000pt;}
.y116{bottom:615.308000pt;}
.y1d4{bottom:616.556000pt;}
.y1d{bottom:622.168000pt;}
.y202{bottom:626.444000pt;}
.ya3{bottom:626.492000pt;}
.ye3{bottom:626.504000pt;}
.y14f{bottom:626.516000pt;}
.y71{bottom:626.636000pt;}
.y196{bottom:628.364000pt;}
.ybf{bottom:628.556000pt;}
.y115{bottom:629.228000pt;}
.y1d3{bottom:630.320000pt;}
.y1c{bottom:635.932000pt;}
.y201{bottom:640.364000pt;}
.ya2{bottom:640.412000pt;}
.ye2{bottom:640.424000pt;}
.y14e{bottom:640.436000pt;}
.y70{bottom:640.556000pt;}
.y195{bottom:642.128000pt;}
.ybe{bottom:642.320000pt;}
.y114{bottom:642.992000pt;}
.y1d2{bottom:644.084000pt;}
.y1b{bottom:649.696000pt;}
.y200{bottom:654.128000pt;}
.ya1{bottom:654.176000pt;}
.ye1{bottom:654.188000pt;}
.y14d{bottom:654.200000pt;}
.y6f{bottom:654.320000pt;}
.y194{bottom:655.892000pt;}
.ybd{bottom:656.084000pt;}
.y113{bottom:656.756000pt;}
.y1d1{bottom:657.848000pt;}
.y1a{bottom:663.460000pt;}
.y1ff{bottom:667.892000pt;}
.ya0{bottom:667.940000pt;}
.ye0{bottom:667.952000pt;}
.y14c{bottom:667.964000pt;}
.y6e{bottom:668.084000pt;}
.y193{bottom:669.656000pt;}
.ybc{bottom:669.848000pt;}
.y112{bottom:670.520000pt;}
.y1d0{bottom:671.768000pt;}
.y19{bottom:677.380000pt;}
.y1fe{bottom:681.656000pt;}
.y9f{bottom:681.704000pt;}
.ydf{bottom:681.716000pt;}
.y14b{bottom:681.728000pt;}
.y6d{bottom:681.848000pt;}
.y192{bottom:683.576000pt;}
.ybb{bottom:683.768000pt;}
.y111{bottom:684.440000pt;}
.y1cf{bottom:685.532000pt;}
.y18{bottom:691.144000pt;}
.y1fd{bottom:695.576000pt;}
.y9e{bottom:695.624000pt;}
.yde{bottom:695.636000pt;}
.y14a{bottom:695.648000pt;}
.y6c{bottom:695.768000pt;}
.y191{bottom:697.340000pt;}
.yba{bottom:697.532000pt;}
.y110{bottom:698.204000pt;}
.y1ce{bottom:699.296000pt;}
.y17{bottom:704.908000pt;}
.y1fc{bottom:709.340000pt;}
.y9d{bottom:709.388000pt;}
.ydd{bottom:709.400000pt;}
.y149{bottom:709.412000pt;}
.y6b{bottom:709.532000pt;}
.y190{bottom:711.104000pt;}
.yb9{bottom:711.296000pt;}
.y10f{bottom:711.968000pt;}
.y1cd{bottom:713.060000pt;}
.y16{bottom:718.672000pt;}
.y1fb{bottom:723.104000pt;}
.y9c{bottom:723.152000pt;}
.ydc{bottom:723.164000pt;}
.y148{bottom:723.176000pt;}
.y6a{bottom:723.296000pt;}
.y18f{bottom:724.868000pt;}
.y10e{bottom:725.732000pt;}
.y1cc{bottom:726.980000pt;}
.y15{bottom:732.592000pt;}
.y1fa{bottom:736.868000pt;}
.y9b{bottom:736.916000pt;}
.ydb{bottom:736.928000pt;}
.y147{bottom:736.940000pt;}
.y69{bottom:737.060000pt;}
.y10d{bottom:739.652000pt;}
.y14{bottom:746.356000pt;}
.y18e{bottom:750.788000pt;}
.y9a{bottom:750.836000pt;}
.yda{bottom:750.848000pt;}
.y146{bottom:750.860000pt;}
.y68{bottom:750.980000pt;}
.y1cb{bottom:752.744000pt;}
.y10c{bottom:753.416000pt;}
.y13{bottom:760.120000pt;}
.y18d{bottom:764.552000pt;}
.y99{bottom:764.600000pt;}
.yd9{bottom:764.612000pt;}
.y145{bottom:764.624000pt;}
.y67{bottom:764.744000pt;}
.y1ca{bottom:766.508000pt;}
.y10b{bottom:767.180000pt;}
.y12{bottom:773.884000pt;}
.y18c{bottom:778.316000pt;}
.y98{bottom:778.364000pt;}
.yd8{bottom:778.376000pt;}
.y144{bottom:778.388000pt;}
.y66{bottom:778.508000pt;}
.y1c9{bottom:780.272000pt;}
.y10a{bottom:780.944000pt;}
.y11{bottom:787.804000pt;}
.y18b{bottom:792.080000pt;}
.y97{bottom:792.128000pt;}
.yd7{bottom:792.140000pt;}
.y143{bottom:792.152000pt;}
.y65{bottom:792.272000pt;}
.y1c8{bottom:794.192000pt;}
.y109{bottom:794.864000pt;}
.y10{bottom:801.568000pt;}
.y18a{bottom:806.000000pt;}
.y96{bottom:806.048000pt;}
.yd6{bottom:806.060000pt;}
.y142{bottom:806.072000pt;}
.y64{bottom:806.192000pt;}
.y1c7{bottom:807.956000pt;}
.y108{bottom:808.628000pt;}
.yf{bottom:815.332000pt;}
.y189{bottom:819.764000pt;}
.y95{bottom:819.812000pt;}
.yd5{bottom:819.824000pt;}
.y141{bottom:819.836000pt;}
.y63{bottom:819.956000pt;}
.y1c6{bottom:821.720000pt;}
.ye{bottom:829.096000pt;}
.y188{bottom:833.528000pt;}
.y94{bottom:833.576000pt;}
.yd4{bottom:833.588000pt;}
.y140{bottom:833.600000pt;}
.y62{bottom:833.720000pt;}
.y1c5{bottom:835.484000pt;}
.yd{bottom:843.016000pt;}
.y187{bottom:847.292000pt;}
.y93{bottom:847.340000pt;}
.yd3{bottom:847.352000pt;}
.y13f{bottom:847.364000pt;}
.y61{bottom:847.484000pt;}
.y1c4{bottom:849.248000pt;}
.yc{bottom:856.780000pt;}
.y186{bottom:861.056000pt;}
.y92{bottom:861.104000pt;}
.yd2{bottom:861.116000pt;}
.y13e{bottom:861.128000pt;}
.y60{bottom:861.248000pt;}
.y1c3{bottom:863.168000pt;}
.yb{bottom:870.544000pt;}
.y185{bottom:874.976000pt;}
.y91{bottom:875.024000pt;}
.yd1{bottom:875.036000pt;}
.y13d{bottom:875.048000pt;}
.y5f{bottom:875.168000pt;}
.y1c2{bottom:876.932000pt;}
.ya{bottom:884.308000pt;}
.y184{bottom:888.740000pt;}
.y90{bottom:888.788000pt;}
.yd0{bottom:888.800000pt;}
.y13c{bottom:888.812000pt;}
.y5e{bottom:888.932000pt;}
.y1c1{bottom:890.696000pt;}
.y9{bottom:898.072000pt;}
.y183{bottom:902.504000pt;}
.y8f{bottom:902.552000pt;}
.ycf{bottom:902.564000pt;}
.y13b{bottom:902.576000pt;}
.y5d{bottom:902.696000pt;}
.y1c0{bottom:904.460000pt;}
.y8{bottom:911.992000pt;}
.y182{bottom:916.268000pt;}
.y8e{bottom:916.316000pt;}
.yce{bottom:916.328000pt;}
.y13a{bottom:916.340000pt;}
.y5c{bottom:916.460000pt;}
.y1bf{bottom:918.380000pt;}
.y7{bottom:925.756000pt;}
.y181{bottom:930.188000pt;}
.y8d{bottom:930.236000pt;}
.ycd{bottom:930.248000pt;}
.y139{bottom:930.260000pt;}
.y5b{bottom:930.380000pt;}
.y1be{bottom:932.144000pt;}
.y6{bottom:943.520000pt;}
.y180{bottom:943.952000pt;}
.y8c{bottom:944.000000pt;}
.ycc{bottom:944.012000pt;}
.y138{bottom:944.024000pt;}
.y5a{bottom:944.144000pt;}
.y1bd{bottom:945.908000pt;}
.y5{bottom:957.280000pt;}
.y17f{bottom:957.716000pt;}
.y8b{bottom:957.764000pt;}
.ycb{bottom:957.776000pt;}
.y137{bottom:957.788000pt;}
.y59{bottom:957.908000pt;}
.y1bc{bottom:959.672000pt;}
.y4{bottom:967.196000pt;}
.y17e{bottom:971.480000pt;}
.y8a{bottom:971.528000pt;}
.yca{bottom:971.540000pt;}
.y136{bottom:971.552000pt;}
.y58{bottom:971.672000pt;}
.y1bb{bottom:973.592000pt;}
.y3{bottom:980.952000pt;}
.y17d{bottom:985.400000pt;}
.y89{bottom:985.448000pt;}
.yc9{bottom:985.460000pt;}
.y135{bottom:985.472000pt;}
.y57{bottom:985.592000pt;}
.y1ba{bottom:987.356000pt;}
.y2{bottom:994.716000pt;}
.y17c{bottom:999.164000pt;}
.y88{bottom:999.212000pt;}
.yc8{bottom:999.224000pt;}
.y134{bottom:999.236000pt;}
.y56{bottom:999.356000pt;}
.y1{bottom:1009.440000pt;}
.y17b{bottom:1012.928000pt;}
.y87{bottom:1012.976000pt;}
.yc7{bottom:1012.988000pt;}
.y133{bottom:1013.000000pt;}
.y55{bottom:1013.120000pt;}
.y50{bottom:1061.279753pt;}
.y54{bottom:1107.679867pt;}
.h5{height:22.234375pt;}
.h7{height:25.813467pt;}
.h6{height:32.531250pt;}
.h9{height:33.328125pt;}
.h3{height:33.351562pt;}
.h4{height:38.266375pt;}
.h2{height:43.375000pt;}
.h8{height:44.354167pt;}
.h1{height:1118.666667pt;}
.h0{height:1118.880000pt;}
.w4{width:23.729333pt;}
.w3{width:490.292000pt;}
.w2{width:592.308000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.466667pt;}
.xf{left:23.729333pt;}
.x1{left:75.520000pt;}
.xa{left:100.726013pt;}
.x17{left:121.288000pt;}
.x16{left:130.540000pt;}
.x4{left:140.160000pt;}
.xd{left:145.830667pt;}
.xc{left:151.734009pt;}
.x19{left:162.724000pt;}
.x13{left:167.020000pt;}
.x11{left:168.616000pt;}
.x5{left:182.240000pt;}
.x1b{left:183.360000pt;}
.x6{left:188.328000pt;}
.x1c{left:202.392000pt;}
.x3{left:209.600000pt;}
.x10{left:230.380000pt;}
.x12{left:385.420000pt;}
.x2{left:396.164000pt;}
.x7{left:408.312000pt;}
.x15{left:435.832000pt;}
.x9{left:443.508000pt;}
.x18{left:454.108000pt;}
.x14{left:520.144000pt;}
.x1a{left:525.124000pt;}
.xe{left:694.439860pt;}
.x8{left:718.224000pt;}
}




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