
    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_c06483c90aeedaacf92c12f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9efc37381f2206f812d2cc6a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_615d49bfcaac63cd4b98dcc7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_02a7040ee0dc4509488623c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.004800px;}
.v3{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls22{letter-spacing:-0.486000px;}
.lsd{letter-spacing:-0.060000px;}
.ls23{letter-spacing:-0.054000px;}
.ls19{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.672000px;}
.ls8{letter-spacing:0.696000px;}
.lsf{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.810000px;}
.ls16{letter-spacing:0.816000px;}
.ls7{letter-spacing:0.960000px;}
.ls1a{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.200000px;}
.ls25{letter-spacing:1.242000px;}
.ls9{letter-spacing:1.260000px;}
.ls5{letter-spacing:1.320000px;}
.lse{letter-spacing:1.380000px;}
.ls20{letter-spacing:1.680000px;}
.lsb{letter-spacing:1.848000px;}
.lsa{letter-spacing:2.040000px;}
.ls1f{letter-spacing:2.052000px;}
.ls0{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.322000px;}
.ls1c{letter-spacing:2.640000px;}
.ls1b{letter-spacing:2.700000px;}
.ls24{letter-spacing:2.970000px;}
.lsc{letter-spacing:4.092000px;}
.ls3{letter-spacing:18.592800px;}
.ls4{letter-spacing:18.600000px;}
.ls18{letter-spacing:281.424000px;}
.ls10{letter-spacing:312.000000px;}
.ls11{letter-spacing:313.056000px;}
.ls12{letter-spacing:314.976000px;}
.ls15{letter-spacing:315.024000px;}
.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;}
}
.wsa2{word-spacing:-280.800000px;}
.ws98{word-spacing:-256.848000px;}
.wsbc{word-spacing:-17.700000px;}
.ws2b{word-spacing:-16.200000px;}
.wsdd{word-spacing:-14.580000px;}
.wsbd{word-spacing:-14.310000px;}
.ws6b{word-spacing:-7.500000px;}
.ws88{word-spacing:-7.260000px;}
.ws33{word-spacing:-7.140000px;}
.ws26{word-spacing:-7.080000px;}
.ws29{word-spacing:-7.020000px;}
.ws41{word-spacing:-6.960000px;}
.wsc8{word-spacing:-6.900000px;}
.wscd{word-spacing:-6.750000px;}
.ws93{word-spacing:-6.720000px;}
.ws68{word-spacing:-6.600000px;}
.wsc9{word-spacing:-6.540000px;}
.ws1d{word-spacing:-6.480000px;}
.ws43{word-spacing:-6.420000px;}
.ws8a{word-spacing:-6.360000px;}
.ws1e{word-spacing:-6.240000px;}
.ws74{word-spacing:-6.180000px;}
.ws1b{word-spacing:-6.120000px;}
.ws4b{word-spacing:-6.060000px;}
.wsa8{word-spacing:-6.000000px;}
.wsaa{word-spacing:-5.880000px;}
.wsd9{word-spacing:-5.832000px;}
.ws8c{word-spacing:-5.820000px;}
.ws24{word-spacing:-5.760000px;}
.ws3c{word-spacing:-5.700000px;}
.wse2{word-spacing:-5.670000px;}
.ws13{word-spacing:-5.400000px;}
.ws65{word-spacing:-5.220000px;}
.ws6a{word-spacing:-5.160000px;}
.ws7e{word-spacing:-5.040000px;}
.ws49{word-spacing:-4.980000px;}
.ws15{word-spacing:-4.860000px;}
.wsb6{word-spacing:-4.740000px;}
.ws60{word-spacing:-4.620000px;}
.ws91{word-spacing:-4.560000px;}
.ws12{word-spacing:-4.500000px;}
.ws38{word-spacing:-4.320000px;}
.ws23{word-spacing:-4.260000px;}
.ws6f{word-spacing:-4.200000px;}
.wsd7{word-spacing:-4.158000px;}
.ws32{word-spacing:-4.020000px;}
.ws5c{word-spacing:-3.840000px;}
.ws9{word-spacing:-3.780000px;}
.ws50{word-spacing:-3.720000px;}
.wsc7{word-spacing:-3.660000px;}
.ws8b{word-spacing:-3.600000px;}
.ws8f{word-spacing:-3.540000px;}
.ws3e{word-spacing:-3.480000px;}
.ws5f{word-spacing:-3.180000px;}
.ws82{word-spacing:-3.120000px;}
.ws31{word-spacing:-3.000000px;}
.ws16{word-spacing:-2.940000px;}
.ws7c{word-spacing:-2.820000px;}
.ws5d{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.580000px;}
.wsce{word-spacing:-2.538000px;}
.ws22{word-spacing:-2.520000px;}
.wse1{word-spacing:-2.430000px;}
.ws27{word-spacing:-2.400000px;}
.ws64{word-spacing:-2.340000px;}
.wscf{word-spacing:-2.268000px;}
.wsa9{word-spacing:-2.220000px;}
.ws83{word-spacing:-2.100000px;}
.ws40{word-spacing:-1.860000px;}
.wse0{word-spacing:-1.836000px;}
.wsab{word-spacing:-1.740000px;}
.ws18{word-spacing:-1.620000px;}
.wsd8{word-spacing:-1.566000px;}
.ws51{word-spacing:-1.560000px;}
.ws30{word-spacing:-1.500000px;}
.ws52{word-spacing:-1.440000px;}
.wsa{word-spacing:-1.380000px;}
.ws34{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.140000px;}
.wsd5{word-spacing:-1.134000px;}
.ws21{word-spacing:-1.080000px;}
.wsac{word-spacing:-1.020000px;}
.ws56{word-spacing:-0.840000px;}
.wsd2{word-spacing:-0.756000px;}
.ws90{word-spacing:-0.660000px;}
.ws75{word-spacing:-0.600000px;}
.wsae{word-spacing:-0.540000px;}
.ws80{word-spacing:-0.480000px;}
.ws87{word-spacing:-0.420000px;}
.wsca{word-spacing:-0.360000px;}
.ws6c{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.240000px;}
.ws2d{word-spacing:-0.180000px;}
.wsa0{word-spacing:-0.144000px;}
.ws9e{word-spacing:-0.096000px;}
.ws69{word-spacing:-0.060000px;}
.wsd0{word-spacing:-0.054000px;}
.wsa1{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:0.034800px;}
.ws2{word-spacing:0.048000px;}
.wsd3{word-spacing:0.054000px;}
.ws7{word-spacing:0.060000px;}
.ws72{word-spacing:0.066000px;}
.ws94{word-spacing:0.096000px;}
.ws5{word-spacing:0.108000px;}
.ws95{word-spacing:0.144000px;}
.wsdf{word-spacing:0.162000px;}
.ws11{word-spacing:0.180000px;}
.ws96{word-spacing:0.192000px;}
.ws76{word-spacing:0.240000px;}
.ws1{word-spacing:0.288000px;}
.wsbf{word-spacing:0.300000px;}
.wscb{word-spacing:0.324000px;}
.ws0{word-spacing:0.396000px;}
.wsad{word-spacing:0.420000px;}
.ws77{word-spacing:0.480000px;}
.wse3{word-spacing:0.486000px;}
.ws4{word-spacing:0.540000px;}
.wsa4{word-spacing:0.780000px;}
.ws2c{word-spacing:0.840000px;}
.wse4{word-spacing:0.864000px;}
.ws70{word-spacing:1.140000px;}
.ws58{word-spacing:1.200000px;}
.ws14{word-spacing:1.260000px;}
.wsc4{word-spacing:1.320000px;}
.wsd4{word-spacing:1.404000px;}
.ws3f{word-spacing:1.500000px;}
.wscc{word-spacing:1.728000px;}
.ws2f{word-spacing:1.740000px;}
.wsbe{word-spacing:1.800000px;}
.ws62{word-spacing:1.980000px;}
.wsdb{word-spacing:2.214000px;}
.ws79{word-spacing:2.220000px;}
.ws7a{word-spacing:2.460000px;}
.ws3{word-spacing:2.484000px;}
.wsb{word-spacing:2.520000px;}
.ws4f{word-spacing:2.640000px;}
.ws59{word-spacing:2.700000px;}
.ws84{word-spacing:2.820000px;}
.wsb2{word-spacing:2.880000px;}
.ws1c{word-spacing:2.940000px;}
.ws53{word-spacing:3.000000px;}
.wsaf{word-spacing:3.180000px;}
.ws19{word-spacing:3.240000px;}
.wsa7{word-spacing:3.300000px;}
.wsc5{word-spacing:3.540000px;}
.wsc6{word-spacing:3.894000px;}
.ws78{word-spacing:4.080000px;}
.wsd6{word-spacing:4.104000px;}
.ws6d{word-spacing:4.140000px;}
.wsd{word-spacing:4.260000px;}
.wsb5{word-spacing:4.740000px;}
.ws7d{word-spacing:4.860000px;}
.ws7b{word-spacing:5.040000px;}
.wsa5{word-spacing:5.100000px;}
.ws3a{word-spacing:5.160000px;}
.wsa6{word-spacing:5.400000px;}
.wse{word-spacing:5.520000px;}
.ws89{word-spacing:5.880000px;}
.ws45{word-spacing:6.240000px;}
.ws66{word-spacing:6.300000px;}
.ws85{word-spacing:6.360000px;}
.wsda{word-spacing:6.372000px;}
.ws4d{word-spacing:6.480000px;}
.ws5b{word-spacing:6.540000px;}
.ws63{word-spacing:6.600000px;}
.ws6e{word-spacing:6.660000px;}
.ws4a{word-spacing:6.780000px;}
.wsb0{word-spacing:6.900000px;}
.ws92{word-spacing:7.020000px;}
.ws4c{word-spacing:7.140000px;}
.wsc3{word-spacing:7.320000px;}
.ws20{word-spacing:7.740000px;}
.wsb1{word-spacing:7.920000px;}
.ws86{word-spacing:8.640000px;}
.ws36{word-spacing:8.820000px;}
.wsb3{word-spacing:8.940000px;}
.ws57{word-spacing:9.000000px;}
.ws3d{word-spacing:9.120000px;}
.wsb4{word-spacing:9.360000px;}
.ws7f{word-spacing:9.540000px;}
.ws71{word-spacing:9.720000px;}
.ws4e{word-spacing:9.840000px;}
.wsa3{word-spacing:9.960000px;}
.ws37{word-spacing:10.020000px;}
.wsf{word-spacing:10.440000px;}
.ws73{word-spacing:10.560000px;}
.ws46{word-spacing:10.620000px;}
.ws54{word-spacing:10.680000px;}
.ws3b{word-spacing:10.920000px;}
.ws67{word-spacing:11.340000px;}
.ws1a{word-spacing:11.460000px;}
.ws81{word-spacing:11.580000px;}
.wsc2{word-spacing:11.940000px;}
.ws55{word-spacing:12.000000px;}
.ws61{word-spacing:12.120000px;}
.ws44{word-spacing:12.360000px;}
.ws25{word-spacing:12.480000px;}
.ws39{word-spacing:12.600000px;}
.wsc0{word-spacing:12.660000px;}
.ws8e{word-spacing:13.140000px;}
.wsd1{word-spacing:13.500000px;}
.wsc1{word-spacing:13.620000px;}
.ws5e{word-spacing:13.740000px;}
.ws2e{word-spacing:13.860000px;}
.ws28{word-spacing:13.920000px;}
.ws42{word-spacing:14.220000px;}
.ws17{word-spacing:14.340000px;}
.ws8d{word-spacing:14.400000px;}
.ws5a{word-spacing:14.940000px;}
.ws35{word-spacing:15.000000px;}
.ws47{word-spacing:16.500000px;}
.ws48{word-spacing:39.468000px;}
.wsde{word-spacing:90.828000px;}
.wsdc{word-spacing:173.934000px;}
.wsb8{word-spacing:222.192000px;}
.wsb7{word-spacing:226.032000px;}
.ws9d{word-spacing:244.032000px;}
.wsb9{word-spacing:249.072000px;}
.wsba{word-spacing:249.168000px;}
.ws9b{word-spacing:249.984000px;}
.ws97{word-spacing:250.032000px;}
.ws99{word-spacing:250.560000px;}
.wsbb{word-spacing:251.280000px;}
.ws9a{word-spacing:276.960000px;}
.ws9c{word-spacing:301.584000px;}
.ws2a{word-spacing:1816.080000px;}
._2b{margin-left:-314.208000px;}
._3c{margin-left:-280.296000px;}
._29{margin-left:-33.024000px;}
._2a{margin-left:-14.688000px;}
._2{margin-left:-8.100000px;}
._1{margin-left:-5.940000px;}
._3{margin-left:-2.808000px;}
._0{margin-left:-1.728000px;}
._5{width:1.368000px;}
._4{width:2.640000px;}
._62{width:11.940000px;}
._3d{width:20.064000px;}
._3e{width:24.000000px;}
._3f{width:32.976000px;}
._68{width:81.738000px;}
._6f{width:112.752000px;}
._40{width:120.576000px;}
._6e{width:130.788000px;}
._6d{width:136.782000px;}
._57{width:139.968000px;}
._71{width:142.938000px;}
._73{width:148.932000px;}
._74{width:151.956000px;}
._18{width:157.968000px;}
._72{width:160.920000px;}
._59{width:166.944000px;}
._1a{width:169.968000px;}
._16{width:190.944000px;}
._17{width:193.968000px;}
._52{width:205.296000px;}
._4f{width:206.304000px;}
._56{width:208.272000px;}
._4d{width:209.664000px;}
._63{width:211.008000px;}
._61{width:212.784000px;}
._4c{width:213.984000px;}
._14{width:216.960000px;}
._48{width:222.672000px;}
._19{width:223.968000px;}
._58{width:226.944000px;}
._55{width:229.584000px;}
._1d{width:232.944000px;}
._5f{width:236.784000px;}
._c{width:240.192000px;}
._46{width:241.680000px;}
._25{width:250.512000px;}
._a{width:252.192000px;}
._b{width:255.168000px;}
._1b{width:258.144000px;}
._43{width:261.504000px;}
._2c{width:263.088000px;}
._47{width:265.728000px;}
._28{width:266.976000px;}
._1c{width:269.568000px;}
._2f{width:274.512000px;}
._41{width:275.568000px;}
._5a{width:277.488000px;}
._15{width:278.832000px;}
._39{width:280.224000px;}
._23{width:281.280000px;}
._36{width:287.808000px;}
._1e{width:289.056000px;}
._24{width:291.120000px;}
._27{width:292.704000px;}
._33{width:298.464000px;}
._32{width:302.256000px;}
._35{width:304.128000px;}
._3b{width:305.136000px;}
._69{width:308.448000px;}
._20{width:313.488000px;}
._31{width:314.592000px;}
._38{width:316.032000px;}
._21{width:317.328000px;}
._53{width:324.528000px;}
._22{width:333.552000px;}
._f{width:334.560000px;}
._5b{width:344.592000px;}
._5c{width:345.792000px;}
._60{width:347.040000px;}
._26{width:348.192000px;}
._44{width:349.200000px;}
._49{width:350.304000px;}
._30{width:356.880000px;}
._4a{width:362.256000px;}
._42{width:372.768000px;}
._37{width:373.776000px;}
._7d{width:381.510000px;}
._34{width:384.384000px;}
._6b{width:388.530000px;}
._5e{width:392.928000px;}
._13{width:396.096000px;}
._9{width:397.296000px;}
._12{width:401.520000px;}
._4b{width:403.056000px;}
._51{width:414.480000px;}
._77{width:417.474000px;}
._45{width:421.056000px;}
._11{width:424.896000px;}
._6c{width:428.760000px;}
._50{width:442.416000px;}
._8{width:453.456000px;}
._7{width:455.280000px;}
._6a{width:468.396000px;}
._54{width:472.704000px;}
._4e{width:478.896000px;}
._7f{width:490.698000px;}
._64{width:500.742000px;}
._7b{width:504.792000px;}
._10{width:508.320000px;}
._75{width:516.834000px;}
._7a{width:532.062000px;}
._65{width:537.138000px;}
._3a{width:544.752000px;}
._5d{width:556.128000px;}
._2e{width:557.280000px;}
._e{width:567.696000px;}
._1f{width:568.752000px;}
._d{width:574.320000px;}
._2d{width:581.328000px;}
._7e{width:609.822000px;}
._66{width:690.390000px;}
._67{width:717.390000px;}
._76{width:719.658000px;}
._80{width:746.064000px;}
._70{width:780.246000px;}
._7c{width:888.516000px;}
._81{width:915.246000px;}
._79{width:980.694000px;}
._78{width:1113.588000px;}
._6{width:1822.656000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.800000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:125.925000px;}
.y23{bottom:126.675000px;}
.y3{bottom:126.681000px;}
.y22{bottom:166.425000px;}
.y126{bottom:167.175000px;}
.y5a{bottom:170.175000px;}
.yc0{bottom:172.431000px;}
.yac{bottom:177.717000px;}
.y150{bottom:179.163000px;}
.y21{bottom:181.425000px;}
.yf4{bottom:181.467000px;}
.y59{bottom:185.175000px;}
.yab{bottom:190.461000px;}
.yf3{bottom:194.211000px;}
.y20{bottom:196.425000px;}
.ybf{bottom:196.431000px;}
.y10d{bottom:200.172000px;}
.y58{bottom:200.175000px;}
.y14f{bottom:200.911500px;}
.yaa{bottom:203.961000px;}
.yf2{bottom:206.955000px;}
.y1f{bottom:211.425000px;}
.y11f{bottom:213.672000px;}
.y57{bottom:215.175000px;}
.ybe{bottom:220.431000px;}
.y10c{bottom:222.676500px;}
.y14e{bottom:223.416000px;}
.y1e{bottom:226.425000px;}
.y56{bottom:230.175000px;}
.ya9{bottom:230.217000px;}
.yf1{bottom:233.199000px;}
.y11e{bottom:236.919000px;}
.y1d{bottom:241.425000px;}
.ya8{bottom:242.961000px;}
.y10b{bottom:244.425000px;}
.ybd{bottom:244.431000px;}
.y14d{bottom:245.164500px;}
.y55{bottom:245.175000px;}
.yf0{bottom:246.699000px;}
.y11d{bottom:250.419000px;}
.ya7{bottom:255.705000px;}
.y1c{bottom:256.425000px;}
.y67{bottom:257.925000px;}
.yef{bottom:259.455000px;}
.y54{bottom:260.175000px;}
.y14c{bottom:266.913000px;}
.ybc{bottom:268.431000px;}
.y1b{bottom:271.425000px;}
.y11c{bottom:272.923500px;}
.y53{bottom:275.175000px;}
.y10a{bottom:279.673500px;}
.ya6{bottom:281.961000px;}
.yee{bottom:285.699000px;}
.y11b{bottom:286.423500px;}
.y1a{bottom:286.425000px;}
.y14b{bottom:288.661500px;}
.y52{bottom:290.175000px;}
.ybb{bottom:292.431000px;}
.y109{bottom:293.173500px;}
.ya5{bottom:295.461000px;}
.yed{bottom:298.455000px;}
.y19{bottom:301.425000px;}
.y51{bottom:305.175000px;}
.ya4{bottom:308.205000px;}
.y11a{bottom:309.670500px;}
.y14a{bottom:311.166000px;}
.yec{bottom:311.955000px;}
.y108{bottom:314.922000px;}
.y18{bottom:316.425000px;}
.yba{bottom:316.431000px;}
.y50{bottom:320.175000px;}
.y119{bottom:323.170500px;}
.y107{bottom:328.422000px;}
.y17{bottom:331.425000px;}
.y149{bottom:332.914500px;}
.y66{bottom:332.925000px;}
.ya3{bottom:334.461000px;}
.y4f{bottom:335.175000px;}
.yeb{bottom:337.455000px;}
.yb9{bottom:340.431000px;}
.y118{bottom:345.675000px;}
.y16{bottom:346.425000px;}
.ya2{bottom:347.205000px;}
.y65{bottom:347.925000px;}
.y4e{bottom:350.175000px;}
.y106{bottom:350.926500px;}
.yea{bottom:350.955000px;}
.y148{bottom:354.663000px;}
.ya1{bottom:360.705000px;}
.y15{bottom:361.425000px;}
.y64{bottom:362.925000px;}
.ye9{bottom:363.699000px;}
.y105{bottom:364.426500px;}
.yb8{bottom:364.431000px;}
.y4d{bottom:365.175000px;}
.y117{bottom:368.922000px;}
.y14{bottom:376.425000px;}
.y147{bottom:377.167500px;}
.y63{bottom:377.925000px;}
.y4c{bottom:380.175000px;}
.y116{bottom:382.422000px;}
.y104{bottom:386.175000px;}
.ya0{bottom:386.205000px;}
.yb7{bottom:388.431000px;}
.ye8{bottom:389.955000px;}
.y13{bottom:391.425000px;}
.y4b{bottom:395.175000px;}
.y146{bottom:398.916000px;}
.y103{bottom:399.675000px;}
.y9f{bottom:399.705000px;}
.ye7{bottom:402.699000px;}
.y115{bottom:404.926500px;}
.y12{bottom:406.425000px;}
.y62{bottom:407.925000px;}
.y9e{bottom:412.449000px;}
.ye6{bottom:416.199000px;}
.y114{bottom:418.426500px;}
.y145{bottom:420.664500px;}
.y102{bottom:421.423500px;}
.y11{bottom:421.425000px;}
.y61{bottom:422.925000px;}
.y4a{bottom:422.928000px;}
.yb6{bottom:424.431000px;}
.y101{bottom:434.923500px;}
.y10{bottom:436.425000px;}
.y49{bottom:437.926500px;}
.y9d{bottom:438.705000px;}
.y113{bottom:441.673500px;}
.ye5{bottom:442.455000px;}
.y144{bottom:443.169000px;}
.yb5{bottom:448.431000px;}
.y79{bottom:451.425000px;}
.y9c{bottom:451.449000px;}
.y48{bottom:452.925000px;}
.y112{bottom:455.173500px;}
.ye4{bottom:455.199000px;}
.y100{bottom:457.428000px;}
.yf{bottom:464.175000px;}
.y143{bottom:464.917500px;}
.y9b{bottom:464.949000px;}
.y60{bottom:467.925000px;}
.ye3{bottom:467.943000px;}
.y111{bottom:468.673500px;}
.yff{bottom:470.928000px;}
.y110{bottom:482.173500px;}
.y5f{bottom:482.925000px;}
.y142{bottom:486.666000px;}
.y9a{bottom:491.205000px;}
.yfe{bottom:492.676500px;}
.ye2{bottom:494.199000px;}
.y78{bottom:496.425000px;}
.y5e{bottom:497.925000px;}
.y99{bottom:503.949000px;}
.y10f{bottom:504.678000px;}
.yb4{bottom:505.431000px;}
.yfd{bottom:506.176500px;}
.ye1{bottom:507.699000px;}
.y141{bottom:508.414500px;}
.y98{bottom:516.693000px;}
.y10e{bottom:518.178000px;}
.yfc{bottom:519.676500px;}
.ye0{bottom:520.443000px;}
.yb3{bottom:525.675000px;}
.y77{bottom:526.425000px;}
.y5d{bottom:527.925000px;}
.y140{bottom:530.919000px;}
.yfb{bottom:541.425000px;}
.y47{bottom:542.925000px;}
.y97{bottom:542.949000px;}
.ydf{bottom:546.699000px;}
.y13f{bottom:552.667500px;}
.y96{bottom:556.449000px;}
.y46{bottom:557.925000px;}
.yde{bottom:559.443000px;}
.y95{bottom:569.193000px;}
.yb2{bottom:572.175000px;}
.y45{bottom:572.925000px;}
.ydd{bottom:572.943000px;}
.y13e{bottom:574.416000px;}
.y76{bottom:586.425000px;}
.y44{bottom:587.925000px;}
.y94{bottom:595.449000px;}
.yb1{bottom:596.175000px;}
.y13d{bottom:596.920500px;}
.ydc{bottom:598.443000px;}
.y75{bottom:601.425000px;}
.y43{bottom:602.925000px;}
.y93{bottom:608.193000px;}
.y13c{bottom:610.420500px;}
.ydb{bottom:611.943000px;}
.y42{bottom:617.925000px;}
.y125{bottom:618.675000px;}
.yb0{bottom:620.175000px;}
.y92{bottom:621.693000px;}
.yda{bottom:624.687000px;}
.y13b{bottom:632.169000px;}
.y41{bottom:632.925000px;}
.y124{bottom:642.675000px;}
.yaf{bottom:644.175000px;}
.y91{bottom:647.193000px;}
.y40{bottom:647.925000px;}
.yd9{bottom:650.943000px;}
.y13a{bottom:653.917500px;}
.y90{bottom:660.693000px;}
.y3f{bottom:662.925000px;}
.yd8{bottom:664.443000px;}
.y123{bottom:666.675000px;}
.ye{bottom:671.175000px;}
.y8f{bottom:673.437000px;}
.y139{bottom:676.422000px;}
.yd7{bottom:677.187000px;}
.y3e{bottom:677.925000px;}
.yae{bottom:680.175000px;}
.yd{bottom:686.175000px;}
.y122{bottom:690.675000px;}
.y5c{bottom:692.925000px;}
.y8e{bottom:699.693000px;}
.yc{bottom:701.175000px;}
.yd6{bottom:703.443000px;}
.y3d{bottom:707.925000px;}
.y8d{bottom:712.437000px;}
.yb{bottom:716.175000px;}
.yd5{bottom:716.187000px;}
.y138{bottom:719.919000px;}
.y121{bottom:720.675000px;}
.y3c{bottom:722.925000px;}
.y8c{bottom:725.937000px;}
.yad{bottom:728.175000px;}
.yd4{bottom:729.687000px;}
.y3b{bottom:737.925000px;}
.y137{bottom:742.423500px;}
.ya{bottom:743.925000px;}
.y8b{bottom:752.193000px;}
.y3a{bottom:752.925000px;}
.yd3{bottom:755.187000px;}
.y136{bottom:764.172000px;}
.y8a{bottom:764.937000px;}
.y120{bottom:765.675000px;}
.y39{bottom:767.925000px;}
.yd2{bottom:768.687000px;}
.y89{bottom:777.681000px;}
.yd1{bottom:781.431000px;}
.y38{bottom:782.925000px;}
.y135{bottom:785.920500px;}
.y37{bottom:797.925000px;}
.yfa{bottom:800.175000px;}
.y88{bottom:803.937000px;}
.y134{bottom:807.669000px;}
.yd0{bottom:807.687000px;}
.y36{bottom:812.925000px;}
.yf9{bottom:815.175000px;}
.y87{bottom:817.437000px;}
.ycf{bottom:820.431000px;}
.y35{bottom:827.925000px;}
.y133{bottom:830.173500px;}
.yf8{bottom:830.175000px;}
.y86{bottom:830.181000px;}
.yce{bottom:833.931000px;}
.y34{bottom:842.925000px;}
.yf7{bottom:845.175000px;}
.y132{bottom:851.922000px;}
.y85{bottom:856.437000px;}
.y33{bottom:857.925000px;}
.yf6{bottom:860.175000px;}
.ycd{bottom:860.187000px;}
.y84{bottom:869.181000px;}
.y32{bottom:872.925000px;}
.ycc{bottom:872.931000px;}
.y131{bottom:873.670500px;}
.yf5{bottom:875.175000px;}
.y83{bottom:882.681000px;}
.ycb{bottom:885.675000px;}
.y5b{bottom:887.925000px;}
.y74{bottom:890.175000px;}
.y130{bottom:896.175000px;}
.y9{bottom:900.675000px;}
.y31{bottom:902.925000px;}
.y73{bottom:905.175000px;}
.y82{bottom:908.181000px;}
.yca{bottom:911.931000px;}
.y8{bottom:915.676200px;}
.y12f{bottom:917.923500px;}
.y30{bottom:917.925000px;}
.y72{bottom:920.175000px;}
.y81{bottom:921.681000px;}
.yc9{bottom:925.431000px;}
.y7{bottom:926.175000px;}
.y2f{bottom:932.925000px;}
.y80{bottom:934.425000px;}
.y71{bottom:935.175000px;}
.yc8{bottom:938.175000px;}
.y12e{bottom:939.672000px;}
.y2e{bottom:947.925000px;}
.y70{bottom:950.175000px;}
.y7f{bottom:960.681000px;}
.y2d{bottom:962.925000px;}
.yc7{bottom:964.431000px;}
.y6f{bottom:965.175000px;}
.y6{bottom:971.925000px;}
.y7e{bottom:973.425000px;}
.yc6{bottom:977.175000px;}
.y2c{bottom:977.925000px;}
.y6e{bottom:980.175000px;}
.y12d{bottom:983.925000px;}
.y7d{bottom:986.925000px;}
.yc5{bottom:990.675000px;}
.y2b{bottom:992.925000px;}
.y6d{bottom:995.175000px;}
.y5{bottom:998.925000px;}
.y12c{bottom:1005.673500px;}
.y2a{bottom:1007.925000px;}
.y6c{bottom:1010.175000px;}
.y12b{bottom:1019.173500px;}
.y29{bottom:1022.925000px;}
.y6b{bottom:1025.175000px;}
.y4{bottom:1025.925000px;}
.yc4{bottom:1029.675000px;}
.y12a{bottom:1032.673500px;}
.y28{bottom:1037.925000px;}
.y7c{bottom:1038.681000px;}
.y6a{bottom:1040.175000px;}
.yc3{bottom:1042.419000px;}
.y27{bottom:1052.925000px;}
.y129{bottom:1054.422000px;}
.y69{bottom:1055.175000px;}
.y26{bottom:1067.925000px;}
.y68{bottom:1070.175000px;}
.y128{bottom:1076.926500px;}
.yc2{bottom:1079.175000px;}
.y25{bottom:1082.925000px;}
.y7b{bottom:1084.425000px;}
.y24{bottom:1097.925000px;}
.y127{bottom:1098.675000px;}
.yc1{bottom:1099.419000px;}
.y7a{bottom:1099.425000px;}
.y1{bottom:1144.425000px;}
.h5{height:42.463950px;}
.h6{height:42.468750px;}
.h2{height:47.109375px;}
.ha{height:52.998047px;}
.h9{height:54.421875px;}
.h7{height:58.886719px;}
.h4{height:60.468750px;}
.h1{height:64.775391px;}
.h8{height:66.515625px;}
.h3{height:108.843750px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:84.750000px;}
.x14{left:102.003000px;}
.x9{left:106.488000px;}
.x8{left:112.488000px;}
.x1b{left:119.673000px;}
.x1c{left:126.423000px;}
.x17{left:169.960500px;}
.xc{left:245.706000px;}
.xe{left:251.706000px;}
.xf{left:254.706000px;}
.xd{left:257.706000px;}
.x12{left:285.744000px;}
.x5{left:292.500000px;}
.x13{left:323.688000px;}
.xb{left:330.450000px;}
.x7{left:337.500000px;}
.x19{left:349.956000px;}
.x6{left:354.000000px;}
.x18{left:414.459000px;}
.x16{left:416.700000px;}
.x11{left:422.250000px;}
.x10{left:424.494000px;}
.xa{left:426.450000px;}
.x4{left:429.000000px;}
.x3{left:463.500000px;}
.x15{left:480.705000px;}
.x1a{left:543.424500px;}
.x2{left:789.750000px;}
@media print{
.v2{vertical-align:-16.004267pt;}
.v3{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls22{letter-spacing:-0.432000pt;}
.lsd{letter-spacing:-0.053333pt;}
.ls23{letter-spacing:-0.048000pt;}
.ls19{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.597333pt;}
.ls8{letter-spacing:0.618667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.720000pt;}
.ls16{letter-spacing:0.725333pt;}
.ls7{letter-spacing:0.853333pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls25{letter-spacing:1.104000pt;}
.ls9{letter-spacing:1.120000pt;}
.ls5{letter-spacing:1.173333pt;}
.lse{letter-spacing:1.226667pt;}
.ls20{letter-spacing:1.493333pt;}
.lsb{letter-spacing:1.642667pt;}
.lsa{letter-spacing:1.813333pt;}
.ls1f{letter-spacing:1.824000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.064000pt;}
.ls1c{letter-spacing:2.346667pt;}
.ls1b{letter-spacing:2.400000pt;}
.ls24{letter-spacing:2.640000pt;}
.lsc{letter-spacing:3.637333pt;}
.ls3{letter-spacing:16.526933pt;}
.ls4{letter-spacing:16.533333pt;}
.ls18{letter-spacing:250.154667pt;}
.ls10{letter-spacing:277.333333pt;}
.ls11{letter-spacing:278.272000pt;}
.ls12{letter-spacing:279.978667pt;}
.ls15{letter-spacing:280.021333pt;}
.wsa2{word-spacing:-249.600000pt;}
.ws98{word-spacing:-228.309333pt;}
.wsbc{word-spacing:-15.733333pt;}
.ws2b{word-spacing:-14.400000pt;}
.wsdd{word-spacing:-12.960000pt;}
.wsbd{word-spacing:-12.720000pt;}
.ws6b{word-spacing:-6.666667pt;}
.ws88{word-spacing:-6.453333pt;}
.ws33{word-spacing:-6.346667pt;}
.ws26{word-spacing:-6.293333pt;}
.ws29{word-spacing:-6.240000pt;}
.ws41{word-spacing:-6.186667pt;}
.wsc8{word-spacing:-6.133333pt;}
.wscd{word-spacing:-6.000000pt;}
.ws93{word-spacing:-5.973333pt;}
.ws68{word-spacing:-5.866667pt;}
.wsc9{word-spacing:-5.813333pt;}
.ws1d{word-spacing:-5.760000pt;}
.ws43{word-spacing:-5.706667pt;}
.ws8a{word-spacing:-5.653333pt;}
.ws1e{word-spacing:-5.546667pt;}
.ws74{word-spacing:-5.493333pt;}
.ws1b{word-spacing:-5.440000pt;}
.ws4b{word-spacing:-5.386667pt;}
.wsa8{word-spacing:-5.333333pt;}
.wsaa{word-spacing:-5.226667pt;}
.wsd9{word-spacing:-5.184000pt;}
.ws8c{word-spacing:-5.173333pt;}
.ws24{word-spacing:-5.120000pt;}
.ws3c{word-spacing:-5.066667pt;}
.wse2{word-spacing:-5.040000pt;}
.ws13{word-spacing:-4.800000pt;}
.ws65{word-spacing:-4.640000pt;}
.ws6a{word-spacing:-4.586667pt;}
.ws7e{word-spacing:-4.480000pt;}
.ws49{word-spacing:-4.426667pt;}
.ws15{word-spacing:-4.320000pt;}
.wsb6{word-spacing:-4.213333pt;}
.ws60{word-spacing:-4.106667pt;}
.ws91{word-spacing:-4.053333pt;}
.ws12{word-spacing:-4.000000pt;}
.ws38{word-spacing:-3.840000pt;}
.ws23{word-spacing:-3.786667pt;}
.ws6f{word-spacing:-3.733333pt;}
.wsd7{word-spacing:-3.696000pt;}
.ws32{word-spacing:-3.573333pt;}
.ws5c{word-spacing:-3.413333pt;}
.ws9{word-spacing:-3.360000pt;}
.ws50{word-spacing:-3.306667pt;}
.wsc7{word-spacing:-3.253333pt;}
.ws8b{word-spacing:-3.200000pt;}
.ws8f{word-spacing:-3.146667pt;}
.ws3e{word-spacing:-3.093333pt;}
.ws5f{word-spacing:-2.826667pt;}
.ws82{word-spacing:-2.773333pt;}
.ws31{word-spacing:-2.666667pt;}
.ws16{word-spacing:-2.613333pt;}
.ws7c{word-spacing:-2.506667pt;}
.ws5d{word-spacing:-2.346667pt;}
.wsc{word-spacing:-2.293333pt;}
.wsce{word-spacing:-2.256000pt;}
.ws22{word-spacing:-2.240000pt;}
.wse1{word-spacing:-2.160000pt;}
.ws27{word-spacing:-2.133333pt;}
.ws64{word-spacing:-2.080000pt;}
.wscf{word-spacing:-2.016000pt;}
.wsa9{word-spacing:-1.973333pt;}
.ws83{word-spacing:-1.866667pt;}
.ws40{word-spacing:-1.653333pt;}
.wse0{word-spacing:-1.632000pt;}
.wsab{word-spacing:-1.546667pt;}
.ws18{word-spacing:-1.440000pt;}
.wsd8{word-spacing:-1.392000pt;}
.ws51{word-spacing:-1.386667pt;}
.ws30{word-spacing:-1.333333pt;}
.ws52{word-spacing:-1.280000pt;}
.wsa{word-spacing:-1.226667pt;}
.ws34{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.013333pt;}
.wsd5{word-spacing:-1.008000pt;}
.ws21{word-spacing:-0.960000pt;}
.wsac{word-spacing:-0.906667pt;}
.ws56{word-spacing:-0.746667pt;}
.wsd2{word-spacing:-0.672000pt;}
.ws90{word-spacing:-0.586667pt;}
.ws75{word-spacing:-0.533333pt;}
.wsae{word-spacing:-0.480000pt;}
.ws80{word-spacing:-0.426667pt;}
.ws87{word-spacing:-0.373333pt;}
.wsca{word-spacing:-0.320000pt;}
.ws6c{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.213333pt;}
.ws2d{word-spacing:-0.160000pt;}
.wsa0{word-spacing:-0.128000pt;}
.ws9e{word-spacing:-0.085333pt;}
.ws69{word-spacing:-0.053333pt;}
.wsd0{word-spacing:-0.048000pt;}
.wsa1{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:0.030933pt;}
.ws2{word-spacing:0.042667pt;}
.wsd3{word-spacing:0.048000pt;}
.ws7{word-spacing:0.053333pt;}
.ws72{word-spacing:0.058667pt;}
.ws94{word-spacing:0.085333pt;}
.ws5{word-spacing:0.096000pt;}
.ws95{word-spacing:0.128000pt;}
.wsdf{word-spacing:0.144000pt;}
.ws11{word-spacing:0.160000pt;}
.ws96{word-spacing:0.170667pt;}
.ws76{word-spacing:0.213333pt;}
.ws1{word-spacing:0.256000pt;}
.wsbf{word-spacing:0.266667pt;}
.wscb{word-spacing:0.288000pt;}
.ws0{word-spacing:0.352000pt;}
.wsad{word-spacing:0.373333pt;}
.ws77{word-spacing:0.426667pt;}
.wse3{word-spacing:0.432000pt;}
.ws4{word-spacing:0.480000pt;}
.wsa4{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.746667pt;}
.wse4{word-spacing:0.768000pt;}
.ws70{word-spacing:1.013333pt;}
.ws58{word-spacing:1.066667pt;}
.ws14{word-spacing:1.120000pt;}
.wsc4{word-spacing:1.173333pt;}
.wsd4{word-spacing:1.248000pt;}
.ws3f{word-spacing:1.333333pt;}
.wscc{word-spacing:1.536000pt;}
.ws2f{word-spacing:1.546667pt;}
.wsbe{word-spacing:1.600000pt;}
.ws62{word-spacing:1.760000pt;}
.wsdb{word-spacing:1.968000pt;}
.ws79{word-spacing:1.973333pt;}
.ws7a{word-spacing:2.186667pt;}
.ws3{word-spacing:2.208000pt;}
.wsb{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.346667pt;}
.ws59{word-spacing:2.400000pt;}
.ws84{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.613333pt;}
.ws53{word-spacing:2.666667pt;}
.wsaf{word-spacing:2.826667pt;}
.ws19{word-spacing:2.880000pt;}
.wsa7{word-spacing:2.933333pt;}
.wsc5{word-spacing:3.146667pt;}
.wsc6{word-spacing:3.461333pt;}
.ws78{word-spacing:3.626667pt;}
.wsd6{word-spacing:3.648000pt;}
.ws6d{word-spacing:3.680000pt;}
.wsd{word-spacing:3.786667pt;}
.wsb5{word-spacing:4.213333pt;}
.ws7d{word-spacing:4.320000pt;}
.ws7b{word-spacing:4.480000pt;}
.wsa5{word-spacing:4.533333pt;}
.ws3a{word-spacing:4.586667pt;}
.wsa6{word-spacing:4.800000pt;}
.wse{word-spacing:4.906667pt;}
.ws89{word-spacing:5.226667pt;}
.ws45{word-spacing:5.546667pt;}
.ws66{word-spacing:5.600000pt;}
.ws85{word-spacing:5.653333pt;}
.wsda{word-spacing:5.664000pt;}
.ws4d{word-spacing:5.760000pt;}
.ws5b{word-spacing:5.813333pt;}
.ws63{word-spacing:5.866667pt;}
.ws6e{word-spacing:5.920000pt;}
.ws4a{word-spacing:6.026667pt;}
.wsb0{word-spacing:6.133333pt;}
.ws92{word-spacing:6.240000pt;}
.ws4c{word-spacing:6.346667pt;}
.wsc3{word-spacing:6.506667pt;}
.ws20{word-spacing:6.880000pt;}
.wsb1{word-spacing:7.040000pt;}
.ws86{word-spacing:7.680000pt;}
.ws36{word-spacing:7.840000pt;}
.wsb3{word-spacing:7.946667pt;}
.ws57{word-spacing:8.000000pt;}
.ws3d{word-spacing:8.106667pt;}
.wsb4{word-spacing:8.320000pt;}
.ws7f{word-spacing:8.480000pt;}
.ws71{word-spacing:8.640000pt;}
.ws4e{word-spacing:8.746667pt;}
.wsa3{word-spacing:8.853333pt;}
.ws37{word-spacing:8.906667pt;}
.wsf{word-spacing:9.280000pt;}
.ws73{word-spacing:9.386667pt;}
.ws46{word-spacing:9.440000pt;}
.ws54{word-spacing:9.493333pt;}
.ws3b{word-spacing:9.706667pt;}
.ws67{word-spacing:10.080000pt;}
.ws1a{word-spacing:10.186667pt;}
.ws81{word-spacing:10.293333pt;}
.wsc2{word-spacing:10.613333pt;}
.ws55{word-spacing:10.666667pt;}
.ws61{word-spacing:10.773333pt;}
.ws44{word-spacing:10.986667pt;}
.ws25{word-spacing:11.093333pt;}
.ws39{word-spacing:11.200000pt;}
.wsc0{word-spacing:11.253333pt;}
.ws8e{word-spacing:11.680000pt;}
.wsd1{word-spacing:12.000000pt;}
.wsc1{word-spacing:12.106667pt;}
.ws5e{word-spacing:12.213333pt;}
.ws2e{word-spacing:12.320000pt;}
.ws28{word-spacing:12.373333pt;}
.ws42{word-spacing:12.640000pt;}
.ws17{word-spacing:12.746667pt;}
.ws8d{word-spacing:12.800000pt;}
.ws5a{word-spacing:13.280000pt;}
.ws35{word-spacing:13.333333pt;}
.ws47{word-spacing:14.666667pt;}
.ws48{word-spacing:35.082667pt;}
.wsde{word-spacing:80.736000pt;}
.wsdc{word-spacing:154.608000pt;}
.wsb8{word-spacing:197.504000pt;}
.wsb7{word-spacing:200.917333pt;}
.ws9d{word-spacing:216.917333pt;}
.wsb9{word-spacing:221.397333pt;}
.wsba{word-spacing:221.482667pt;}
.ws9b{word-spacing:222.208000pt;}
.ws97{word-spacing:222.250667pt;}
.ws99{word-spacing:222.720000pt;}
.wsbb{word-spacing:223.360000pt;}
.ws9a{word-spacing:246.186667pt;}
.ws9c{word-spacing:268.074667pt;}
.ws2a{word-spacing:1614.293333pt;}
._2b{margin-left:-279.296000pt;}
._3c{margin-left:-249.152000pt;}
._29{margin-left:-29.354667pt;}
._2a{margin-left:-13.056000pt;}
._2{margin-left:-7.200000pt;}
._1{margin-left:-5.280000pt;}
._3{margin-left:-2.496000pt;}
._0{margin-left:-1.536000pt;}
._5{width:1.216000pt;}
._4{width:2.346667pt;}
._62{width:10.613333pt;}
._3d{width:17.834667pt;}
._3e{width:21.333333pt;}
._3f{width:29.312000pt;}
._68{width:72.656000pt;}
._6f{width:100.224000pt;}
._40{width:107.178667pt;}
._6e{width:116.256000pt;}
._6d{width:121.584000pt;}
._57{width:124.416000pt;}
._71{width:127.056000pt;}
._73{width:132.384000pt;}
._74{width:135.072000pt;}
._18{width:140.416000pt;}
._72{width:143.040000pt;}
._59{width:148.394667pt;}
._1a{width:151.082667pt;}
._16{width:169.728000pt;}
._17{width:172.416000pt;}
._52{width:182.485333pt;}
._4f{width:183.381333pt;}
._56{width:185.130667pt;}
._4d{width:186.368000pt;}
._63{width:187.562667pt;}
._61{width:189.141333pt;}
._4c{width:190.208000pt;}
._14{width:192.853333pt;}
._48{width:197.930667pt;}
._19{width:199.082667pt;}
._58{width:201.728000pt;}
._55{width:204.074667pt;}
._1d{width:207.061333pt;}
._5f{width:210.474667pt;}
._c{width:213.504000pt;}
._46{width:214.826667pt;}
._25{width:222.677333pt;}
._a{width:224.170667pt;}
._b{width:226.816000pt;}
._1b{width:229.461333pt;}
._43{width:232.448000pt;}
._2c{width:233.856000pt;}
._47{width:236.202667pt;}
._28{width:237.312000pt;}
._1c{width:239.616000pt;}
._2f{width:244.010667pt;}
._41{width:244.949333pt;}
._5a{width:246.656000pt;}
._15{width:247.850667pt;}
._39{width:249.088000pt;}
._23{width:250.026667pt;}
._36{width:255.829333pt;}
._1e{width:256.938667pt;}
._24{width:258.773333pt;}
._27{width:260.181333pt;}
._33{width:265.301333pt;}
._32{width:268.672000pt;}
._35{width:270.336000pt;}
._3b{width:271.232000pt;}
._69{width:274.176000pt;}
._20{width:278.656000pt;}
._31{width:279.637333pt;}
._38{width:280.917333pt;}
._21{width:282.069333pt;}
._53{width:288.469333pt;}
._22{width:296.490667pt;}
._f{width:297.386667pt;}
._5b{width:306.304000pt;}
._5c{width:307.370667pt;}
._60{width:308.480000pt;}
._26{width:309.504000pt;}
._44{width:310.400000pt;}
._49{width:311.381333pt;}
._30{width:317.226667pt;}
._4a{width:322.005333pt;}
._42{width:331.349333pt;}
._37{width:332.245333pt;}
._7d{width:339.120000pt;}
._34{width:341.674667pt;}
._6b{width:345.360000pt;}
._5e{width:349.269333pt;}
._13{width:352.085333pt;}
._9{width:353.152000pt;}
._12{width:356.906667pt;}
._4b{width:358.272000pt;}
._51{width:368.426667pt;}
._77{width:371.088000pt;}
._45{width:374.272000pt;}
._11{width:377.685333pt;}
._6c{width:381.120000pt;}
._50{width:393.258667pt;}
._8{width:403.072000pt;}
._7{width:404.693333pt;}
._6a{width:416.352000pt;}
._54{width:420.181333pt;}
._4e{width:425.685333pt;}
._7f{width:436.176000pt;}
._64{width:445.104000pt;}
._7b{width:448.704000pt;}
._10{width:451.840000pt;}
._75{width:459.408000pt;}
._7a{width:472.944000pt;}
._65{width:477.456000pt;}
._3a{width:484.224000pt;}
._5d{width:494.336000pt;}
._2e{width:495.360000pt;}
._e{width:504.618667pt;}
._1f{width:505.557333pt;}
._d{width:510.506667pt;}
._2d{width:516.736000pt;}
._7e{width:542.064000pt;}
._66{width:613.680000pt;}
._67{width:637.680000pt;}
._76{width:639.696000pt;}
._80{width:663.168000pt;}
._70{width:693.552000pt;}
._7c{width:789.792000pt;}
._81{width:813.552000pt;}
._79{width:871.728000pt;}
._78{width:989.856000pt;}
._6{width:1620.138667pt;}
.fs4{font-size:30.933333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:111.933333pt;}
.y23{bottom:112.600000pt;}
.y3{bottom:112.605333pt;}
.y22{bottom:147.933333pt;}
.y126{bottom:148.600000pt;}
.y5a{bottom:151.266667pt;}
.yc0{bottom:153.272000pt;}
.yac{bottom:157.970667pt;}
.y150{bottom:159.256000pt;}
.y21{bottom:161.266667pt;}
.yf4{bottom:161.304000pt;}
.y59{bottom:164.600000pt;}
.yab{bottom:169.298667pt;}
.yf3{bottom:172.632000pt;}
.y20{bottom:174.600000pt;}
.ybf{bottom:174.605333pt;}
.y10d{bottom:177.930667pt;}
.y58{bottom:177.933333pt;}
.y14f{bottom:178.588000pt;}
.yaa{bottom:181.298667pt;}
.yf2{bottom:183.960000pt;}
.y1f{bottom:187.933333pt;}
.y11f{bottom:189.930667pt;}
.y57{bottom:191.266667pt;}
.ybe{bottom:195.938667pt;}
.y10c{bottom:197.934667pt;}
.y14e{bottom:198.592000pt;}
.y1e{bottom:201.266667pt;}
.y56{bottom:204.600000pt;}
.ya9{bottom:204.637333pt;}
.yf1{bottom:207.288000pt;}
.y11e{bottom:210.594667pt;}
.y1d{bottom:214.600000pt;}
.ya8{bottom:215.965333pt;}
.y10b{bottom:217.266667pt;}
.ybd{bottom:217.272000pt;}
.y14d{bottom:217.924000pt;}
.y55{bottom:217.933333pt;}
.yf0{bottom:219.288000pt;}
.y11d{bottom:222.594667pt;}
.ya7{bottom:227.293333pt;}
.y1c{bottom:227.933333pt;}
.y67{bottom:229.266667pt;}
.yef{bottom:230.626667pt;}
.y54{bottom:231.266667pt;}
.y14c{bottom:237.256000pt;}
.ybc{bottom:238.605333pt;}
.y1b{bottom:241.266667pt;}
.y11c{bottom:242.598667pt;}
.y53{bottom:244.600000pt;}
.y10a{bottom:248.598667pt;}
.ya6{bottom:250.632000pt;}
.yee{bottom:253.954667pt;}
.y11b{bottom:254.598667pt;}
.y1a{bottom:254.600000pt;}
.y14b{bottom:256.588000pt;}
.y52{bottom:257.933333pt;}
.ybb{bottom:259.938667pt;}
.y109{bottom:260.598667pt;}
.ya5{bottom:262.632000pt;}
.yed{bottom:265.293333pt;}
.y19{bottom:267.933333pt;}
.y51{bottom:271.266667pt;}
.ya4{bottom:273.960000pt;}
.y11a{bottom:275.262667pt;}
.y14a{bottom:276.592000pt;}
.yec{bottom:277.293333pt;}
.y108{bottom:279.930667pt;}
.y18{bottom:281.266667pt;}
.yba{bottom:281.272000pt;}
.y50{bottom:284.600000pt;}
.y119{bottom:287.262667pt;}
.y107{bottom:291.930667pt;}
.y17{bottom:294.600000pt;}
.y149{bottom:295.924000pt;}
.y66{bottom:295.933333pt;}
.ya3{bottom:297.298667pt;}
.y4f{bottom:297.933333pt;}
.yeb{bottom:299.960000pt;}
.yb9{bottom:302.605333pt;}
.y118{bottom:307.266667pt;}
.y16{bottom:307.933333pt;}
.ya2{bottom:308.626667pt;}
.y65{bottom:309.266667pt;}
.y4e{bottom:311.266667pt;}
.y106{bottom:311.934667pt;}
.yea{bottom:311.960000pt;}
.y148{bottom:315.256000pt;}
.ya1{bottom:320.626667pt;}
.y15{bottom:321.266667pt;}
.y64{bottom:322.600000pt;}
.ye9{bottom:323.288000pt;}
.y105{bottom:323.934667pt;}
.yb8{bottom:323.938667pt;}
.y4d{bottom:324.600000pt;}
.y117{bottom:327.930667pt;}
.y14{bottom:334.600000pt;}
.y147{bottom:335.260000pt;}
.y63{bottom:335.933333pt;}
.y4c{bottom:337.933333pt;}
.y116{bottom:339.930667pt;}
.y104{bottom:343.266667pt;}
.ya0{bottom:343.293333pt;}
.yb7{bottom:345.272000pt;}
.ye8{bottom:346.626667pt;}
.y13{bottom:347.933333pt;}
.y4b{bottom:351.266667pt;}
.y146{bottom:354.592000pt;}
.y103{bottom:355.266667pt;}
.y9f{bottom:355.293333pt;}
.ye7{bottom:357.954667pt;}
.y115{bottom:359.934667pt;}
.y12{bottom:361.266667pt;}
.y62{bottom:362.600000pt;}
.y9e{bottom:366.621333pt;}
.ye6{bottom:369.954667pt;}
.y114{bottom:371.934667pt;}
.y145{bottom:373.924000pt;}
.y102{bottom:374.598667pt;}
.y11{bottom:374.600000pt;}
.y61{bottom:375.933333pt;}
.y4a{bottom:375.936000pt;}
.yb6{bottom:377.272000pt;}
.y101{bottom:386.598667pt;}
.y10{bottom:387.933333pt;}
.y49{bottom:389.268000pt;}
.y9d{bottom:389.960000pt;}
.y113{bottom:392.598667pt;}
.ye5{bottom:393.293333pt;}
.y144{bottom:393.928000pt;}
.yb5{bottom:398.605333pt;}
.y79{bottom:401.266667pt;}
.y9c{bottom:401.288000pt;}
.y48{bottom:402.600000pt;}
.y112{bottom:404.598667pt;}
.ye4{bottom:404.621333pt;}
.y100{bottom:406.602667pt;}
.yf{bottom:412.600000pt;}
.y143{bottom:413.260000pt;}
.y9b{bottom:413.288000pt;}
.y60{bottom:415.933333pt;}
.ye3{bottom:415.949333pt;}
.y111{bottom:416.598667pt;}
.yff{bottom:418.602667pt;}
.y110{bottom:428.598667pt;}
.y5f{bottom:429.266667pt;}
.y142{bottom:432.592000pt;}
.y9a{bottom:436.626667pt;}
.yfe{bottom:437.934667pt;}
.ye2{bottom:439.288000pt;}
.y78{bottom:441.266667pt;}
.y5e{bottom:442.600000pt;}
.y99{bottom:447.954667pt;}
.y10f{bottom:448.602667pt;}
.yb4{bottom:449.272000pt;}
.yfd{bottom:449.934667pt;}
.ye1{bottom:451.288000pt;}
.y141{bottom:451.924000pt;}
.y98{bottom:459.282667pt;}
.y10e{bottom:460.602667pt;}
.yfc{bottom:461.934667pt;}
.ye0{bottom:462.616000pt;}
.yb3{bottom:467.266667pt;}
.y77{bottom:467.933333pt;}
.y5d{bottom:469.266667pt;}
.y140{bottom:471.928000pt;}
.yfb{bottom:481.266667pt;}
.y47{bottom:482.600000pt;}
.y97{bottom:482.621333pt;}
.ydf{bottom:485.954667pt;}
.y13f{bottom:491.260000pt;}
.y96{bottom:494.621333pt;}
.y46{bottom:495.933333pt;}
.yde{bottom:497.282667pt;}
.y95{bottom:505.949333pt;}
.yb2{bottom:508.600000pt;}
.y45{bottom:509.266667pt;}
.ydd{bottom:509.282667pt;}
.y13e{bottom:510.592000pt;}
.y76{bottom:521.266667pt;}
.y44{bottom:522.600000pt;}
.y94{bottom:529.288000pt;}
.yb1{bottom:529.933333pt;}
.y13d{bottom:530.596000pt;}
.ydc{bottom:531.949333pt;}
.y75{bottom:534.600000pt;}
.y43{bottom:535.933333pt;}
.y93{bottom:540.616000pt;}
.y13c{bottom:542.596000pt;}
.ydb{bottom:543.949333pt;}
.y42{bottom:549.266667pt;}
.y125{bottom:549.933333pt;}
.yb0{bottom:551.266667pt;}
.y92{bottom:552.616000pt;}
.yda{bottom:555.277333pt;}
.y13b{bottom:561.928000pt;}
.y41{bottom:562.600000pt;}
.y124{bottom:571.266667pt;}
.yaf{bottom:572.600000pt;}
.y91{bottom:575.282667pt;}
.y40{bottom:575.933333pt;}
.yd9{bottom:578.616000pt;}
.y13a{bottom:581.260000pt;}
.y90{bottom:587.282667pt;}
.y3f{bottom:589.266667pt;}
.yd8{bottom:590.616000pt;}
.y123{bottom:592.600000pt;}
.ye{bottom:596.600000pt;}
.y8f{bottom:598.610667pt;}
.y139{bottom:601.264000pt;}
.yd7{bottom:601.944000pt;}
.y3e{bottom:602.600000pt;}
.yae{bottom:604.600000pt;}
.yd{bottom:609.933333pt;}
.y122{bottom:613.933333pt;}
.y5c{bottom:615.933333pt;}
.y8e{bottom:621.949333pt;}
.yc{bottom:623.266667pt;}
.yd6{bottom:625.282667pt;}
.y3d{bottom:629.266667pt;}
.y8d{bottom:633.277333pt;}
.yb{bottom:636.600000pt;}
.yd5{bottom:636.610667pt;}
.y138{bottom:639.928000pt;}
.y121{bottom:640.600000pt;}
.y3c{bottom:642.600000pt;}
.y8c{bottom:645.277333pt;}
.yad{bottom:647.266667pt;}
.yd4{bottom:648.610667pt;}
.y3b{bottom:655.933333pt;}
.y137{bottom:659.932000pt;}
.ya{bottom:661.266667pt;}
.y8b{bottom:668.616000pt;}
.y3a{bottom:669.266667pt;}
.yd3{bottom:671.277333pt;}
.y136{bottom:679.264000pt;}
.y8a{bottom:679.944000pt;}
.y120{bottom:680.600000pt;}
.y39{bottom:682.600000pt;}
.yd2{bottom:683.277333pt;}
.y89{bottom:691.272000pt;}
.yd1{bottom:694.605333pt;}
.y38{bottom:695.933333pt;}
.y135{bottom:698.596000pt;}
.y37{bottom:709.266667pt;}
.yfa{bottom:711.266667pt;}
.y88{bottom:714.610667pt;}
.y134{bottom:717.928000pt;}
.yd0{bottom:717.944000pt;}
.y36{bottom:722.600000pt;}
.yf9{bottom:724.600000pt;}
.y87{bottom:726.610667pt;}
.ycf{bottom:729.272000pt;}
.y35{bottom:735.933333pt;}
.y133{bottom:737.932000pt;}
.yf8{bottom:737.933333pt;}
.y86{bottom:737.938667pt;}
.yce{bottom:741.272000pt;}
.y34{bottom:749.266667pt;}
.yf7{bottom:751.266667pt;}
.y132{bottom:757.264000pt;}
.y85{bottom:761.277333pt;}
.y33{bottom:762.600000pt;}
.yf6{bottom:764.600000pt;}
.ycd{bottom:764.610667pt;}
.y84{bottom:772.605333pt;}
.y32{bottom:775.933333pt;}
.ycc{bottom:775.938667pt;}
.y131{bottom:776.596000pt;}
.yf5{bottom:777.933333pt;}
.y83{bottom:784.605333pt;}
.ycb{bottom:787.266667pt;}
.y5b{bottom:789.266667pt;}
.y74{bottom:791.266667pt;}
.y130{bottom:796.600000pt;}
.y9{bottom:800.600000pt;}
.y31{bottom:802.600000pt;}
.y73{bottom:804.600000pt;}
.y82{bottom:807.272000pt;}
.yca{bottom:810.605333pt;}
.y8{bottom:813.934400pt;}
.y12f{bottom:815.932000pt;}
.y30{bottom:815.933333pt;}
.y72{bottom:817.933333pt;}
.y81{bottom:819.272000pt;}
.yc9{bottom:822.605333pt;}
.y7{bottom:823.266667pt;}
.y2f{bottom:829.266667pt;}
.y80{bottom:830.600000pt;}
.y71{bottom:831.266667pt;}
.yc8{bottom:833.933333pt;}
.y12e{bottom:835.264000pt;}
.y2e{bottom:842.600000pt;}
.y70{bottom:844.600000pt;}
.y7f{bottom:853.938667pt;}
.y2d{bottom:855.933333pt;}
.yc7{bottom:857.272000pt;}
.y6f{bottom:857.933333pt;}
.y6{bottom:863.933333pt;}
.y7e{bottom:865.266667pt;}
.yc6{bottom:868.600000pt;}
.y2c{bottom:869.266667pt;}
.y6e{bottom:871.266667pt;}
.y12d{bottom:874.600000pt;}
.y7d{bottom:877.266667pt;}
.yc5{bottom:880.600000pt;}
.y2b{bottom:882.600000pt;}
.y6d{bottom:884.600000pt;}
.y5{bottom:887.933333pt;}
.y12c{bottom:893.932000pt;}
.y2a{bottom:895.933333pt;}
.y6c{bottom:897.933333pt;}
.y12b{bottom:905.932000pt;}
.y29{bottom:909.266667pt;}
.y6b{bottom:911.266667pt;}
.y4{bottom:911.933333pt;}
.yc4{bottom:915.266667pt;}
.y12a{bottom:917.932000pt;}
.y28{bottom:922.600000pt;}
.y7c{bottom:923.272000pt;}
.y6a{bottom:924.600000pt;}
.yc3{bottom:926.594667pt;}
.y27{bottom:935.933333pt;}
.y129{bottom:937.264000pt;}
.y69{bottom:937.933333pt;}
.y26{bottom:949.266667pt;}
.y68{bottom:951.266667pt;}
.y128{bottom:957.268000pt;}
.yc2{bottom:959.266667pt;}
.y25{bottom:962.600000pt;}
.y7b{bottom:963.933333pt;}
.y24{bottom:975.933333pt;}
.y127{bottom:976.600000pt;}
.yc1{bottom:977.261333pt;}
.y7a{bottom:977.266667pt;}
.y1{bottom:1017.266667pt;}
.h5{height:37.745733pt;}
.h6{height:37.750000pt;}
.h2{height:41.875000pt;}
.ha{height:47.109375pt;}
.h9{height:48.375000pt;}
.h7{height:52.343750pt;}
.h4{height:53.750000pt;}
.h1{height:57.578125pt;}
.h8{height:59.125000pt;}
.h3{height:96.750000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:75.333333pt;}
.x14{left:90.669333pt;}
.x9{left:94.656000pt;}
.x8{left:99.989333pt;}
.x1b{left:106.376000pt;}
.x1c{left:112.376000pt;}
.x17{left:151.076000pt;}
.xc{left:218.405333pt;}
.xe{left:223.738667pt;}
.xf{left:226.405333pt;}
.xd{left:229.072000pt;}
.x12{left:253.994667pt;}
.x5{left:260.000000pt;}
.x13{left:287.722667pt;}
.xb{left:293.733333pt;}
.x7{left:300.000000pt;}
.x19{left:311.072000pt;}
.x6{left:314.666667pt;}
.x18{left:368.408000pt;}
.x16{left:370.400000pt;}
.x11{left:375.333333pt;}
.x10{left:377.328000pt;}
.xa{left:379.066667pt;}
.x4{left:381.333333pt;}
.x3{left:412.000000pt;}
.x15{left:427.293333pt;}
.x1a{left:483.044000pt;}
.x2{left:702.000000pt;}
}




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