
    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_3fbb01f8acb858d4e02c5031.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_f9fca69f3e8248e758e4cbfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_d42fcbdb71640f1cb8874626.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_a892469db572a5ebb1b829e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_a9c99c1731f70f11fd09a676.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6f8e566b274bb052aad1398c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bb41eb76bd02fc7966b7afc8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_15e71017f70d9372dcce5697.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_551f46ec709862b2ee8f6731.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_968870bfef3a9288f39e2b11.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8b091b5df5a3aeb7587242ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.109000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_78aef662cf8460a5820b4fd1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8b091b5df5a3aeb7587242ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.109000;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;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.840000px;}
.v1{vertical-align:19.800000px;}
.ls5{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.480000px;}
.ls6{letter-spacing:173.316000px;}
.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;}
}
.ws8a{word-spacing:-182.490000px;}
.ws3b{word-spacing:-16.680000px;}
.ws0{word-spacing:-13.986000px;}
.ws3c{word-spacing:-11.008800px;}
.ws6b{word-spacing:-10.008000px;}
.ws61{word-spacing:-5.940000px;}
.ws7d{word-spacing:-3.720000px;}
.ws96{word-spacing:-3.360000px;}
.ws97{word-spacing:-3.300000px;}
.ws60{word-spacing:-3.060000px;}
.ws98{word-spacing:-2.940000px;}
.ws6e{word-spacing:-2.820000px;}
.ws49{word-spacing:-2.760000px;}
.wsab{word-spacing:-2.580000px;}
.ws69{word-spacing:-2.544000px;}
.wsf6{word-spacing:-2.352000px;}
.wsa{word-spacing:-2.340000px;}
.wsd5{word-spacing:-2.256000px;}
.wsd{word-spacing:-2.220000px;}
.wsdc{word-spacing:-2.208000px;}
.ws90{word-spacing:-2.160000px;}
.wsf9{word-spacing:-2.112000px;}
.ws22{word-spacing:-2.100000px;}
.ws6{word-spacing:-2.040000px;}
.wsc6{word-spacing:-2.016000px;}
.ws6c{word-spacing:-1.920000px;}
.wsd2{word-spacing:-1.872000px;}
.wsbd{word-spacing:-1.860000px;}
.wsae{word-spacing:-1.776000px;}
.wsa8{word-spacing:-1.680000px;}
.wse0{word-spacing:-1.584000px;}
.ws7e{word-spacing:-1.560000px;}
.ws84{word-spacing:-1.488000px;}
.ws7b{word-spacing:-1.440000px;}
.wsc7{word-spacing:-1.344000px;}
.wsb7{word-spacing:-1.320000px;}
.wscb{word-spacing:-1.248000px;}
.wsa5{word-spacing:-1.200000px;}
.ws5b{word-spacing:-1.080000px;}
.wsd7{word-spacing:-1.056000px;}
.wse2{word-spacing:-1.008000px;}
.wsb2{word-spacing:-0.960000px;}
.wsd6{word-spacing:-0.912000px;}
.wse7{word-spacing:-0.864000px;}
.ws9c{word-spacing:-0.840000px;}
.ws75{word-spacing:-0.780000px;}
.wsd8{word-spacing:-0.720000px;}
.wsc3{word-spacing:-0.576000px;}
.ws52{word-spacing:-0.540000px;}
.wsc1{word-spacing:-0.528000px;}
.wsf0{word-spacing:-0.480000px;}
.wse1{word-spacing:-0.432000px;}
.ws62{word-spacing:-0.420000px;}
.ws77{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.300000px;}
.ws63{word-spacing:-0.240000px;}
.wsf5{word-spacing:-0.144000px;}
.ws9e{word-spacing:-0.120000px;}
.wsc4{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.wscf{word-spacing:0.048000px;}
.ws6f{word-spacing:0.060000px;}
.ws4e{word-spacing:0.120000px;}
.ws2{word-spacing:0.180000px;}
.ws86{word-spacing:0.192000px;}
.ws3{word-spacing:0.240000px;}
.wsf3{word-spacing:0.336000px;}
.ws21{word-spacing:0.360000px;}
.ws56{word-spacing:0.420000px;}
.ws53{word-spacing:0.480000px;}
.ws38{word-spacing:0.540000px;}
.ws83{word-spacing:0.576000px;}
.wsbc{word-spacing:0.600000px;}
.wsf2{word-spacing:0.624000px;}
.ws2c{word-spacing:0.780000px;}
.wsd3{word-spacing:0.864000px;}
.ws10{word-spacing:0.900000px;}
.wsaf{word-spacing:0.912000px;}
.wsa7{word-spacing:0.960000px;}
.ws35{word-spacing:1.020000px;}
.ws74{word-spacing:1.080000px;}
.wsec{word-spacing:1.104000px;}
.ws26{word-spacing:1.200000px;}
.wsaa{word-spacing:1.260000px;}
.wsfa{word-spacing:1.296000px;}
.ws25{word-spacing:1.320000px;}
.wse8{word-spacing:1.344000px;}
.ws31{word-spacing:1.380000px;}
.ws8{word-spacing:1.440000px;}
.ws65{word-spacing:1.620000px;}
.ws51{word-spacing:1.680000px;}
.wsf4{word-spacing:1.728000px;}
.ws4b{word-spacing:1.740000px;}
.wsc2{word-spacing:1.776000px;}
.ws16{word-spacing:1.860000px;}
.ws87{word-spacing:1.872000px;}
.wsbf{word-spacing:1.980000px;}
.wsc8{word-spacing:2.064000px;}
.ws88{word-spacing:2.160000px;}
.wsbb{word-spacing:2.280000px;}
.ws3a{word-spacing:2.340000px;}
.wsa1{word-spacing:2.400000px;}
.wscd{word-spacing:2.496000px;}
.wsa9{word-spacing:2.520000px;}
.ws55{word-spacing:2.580000px;}
.wsc9{word-spacing:2.688000px;}
.wsc0{word-spacing:2.700000px;}
.wsee{word-spacing:2.736000px;}
.wsa0{word-spacing:2.760000px;}
.ws6d{word-spacing:2.820000px;}
.wsed{word-spacing:2.832000px;}
.wsb{word-spacing:2.880000px;}
.wsde{word-spacing:2.928000px;}
.ws95{word-spacing:2.940000px;}
.wsea{word-spacing:2.976000px;}
.ws9{word-spacing:3.000000px;}
.ws50{word-spacing:3.060000px;}
.wse9{word-spacing:3.072000px;}
.ws7{word-spacing:3.120000px;}
.wsd4{word-spacing:3.168000px;}
.ws93{word-spacing:3.180000px;}
.ws68{word-spacing:3.300000px;}
.ws8f{word-spacing:3.360000px;}
.ws1e{word-spacing:3.480000px;}
.ws3d{word-spacing:3.540000px;}
.wsb9{word-spacing:3.600000px;}
.wsce{word-spacing:3.648000px;}
.ws94{word-spacing:3.660000px;}
.ws41{word-spacing:3.720000px;}
.ws9a{word-spacing:3.780000px;}
.ws8c{word-spacing:3.840000px;}
.wsb8{word-spacing:3.900000px;}
.ws5a{word-spacing:3.960000px;}
.ws79{word-spacing:4.080000px;}
.ws4{word-spacing:4.128000px;}
.ws1f{word-spacing:4.140000px;}
.ws5{word-spacing:4.224000px;}
.ws1c{word-spacing:4.260000px;}
.ws67{word-spacing:4.380000px;}
.wseb{word-spacing:4.512000px;}
.ws4d{word-spacing:4.560000px;}
.ws11{word-spacing:4.680000px;}
.ws7c{word-spacing:4.800000px;}
.wsef{word-spacing:4.848000px;}
.ws28{word-spacing:4.920000px;}
.wsf{word-spacing:4.980000px;}
.ws36{word-spacing:5.100000px;}
.ws66{word-spacing:5.160000px;}
.wsd9{word-spacing:5.184000px;}
.wsd1{word-spacing:5.232000px;}
.ws78{word-spacing:5.280000px;}
.wsc5{word-spacing:5.328000px;}
.ws2e{word-spacing:5.340000px;}
.wsdf{word-spacing:5.424000px;}
.wsb6{word-spacing:5.460000px;}
.ws4c{word-spacing:5.520000px;}
.wsf1{word-spacing:5.568000px;}
.ws24{word-spacing:5.580000px;}
.ws3f{word-spacing:5.640000px;}
.ws92{word-spacing:5.700000px;}
.wsdb{word-spacing:5.808000px;}
.ws3e{word-spacing:5.820000px;}
.ws32{word-spacing:5.880000px;}
.ws71{word-spacing:5.940000px;}
.ws57{word-spacing:6.000000px;}
.wscc{word-spacing:6.048000px;}
.ws9b{word-spacing:6.060000px;}
.ws14{word-spacing:6.120000px;}
.wsca{word-spacing:6.192000px;}
.ws43{word-spacing:6.360000px;}
.ws4a{word-spacing:6.420000px;}
.wse{word-spacing:6.480000px;}
.ws29{word-spacing:6.540000px;}
.ws27{word-spacing:6.780000px;}
.wse6{word-spacing:6.816000px;}
.ws80{word-spacing:6.840000px;}
.wsf8{word-spacing:6.864000px;}
.ws2d{word-spacing:7.020000px;}
.wse3{word-spacing:7.056000px;}
.ws8d{word-spacing:7.080000px;}
.ws1b{word-spacing:7.200000px;}
.wsb0{word-spacing:7.248000px;}
.ws58{word-spacing:7.320000px;}
.ws44{word-spacing:7.380000px;}
.ws2f{word-spacing:7.440000px;}
.ws9d{word-spacing:7.620000px;}
.ws5d{word-spacing:7.740000px;}
.ws17{word-spacing:7.860000px;}
.ws37{word-spacing:7.920000px;}
.ws39{word-spacing:8.220000px;}
.ws82{word-spacing:8.280000px;}
.ws73{word-spacing:8.340000px;}
.ws81{word-spacing:8.400000px;}
.wsa2{word-spacing:8.460000px;}
.ws5e{word-spacing:8.520000px;}
.ws47{word-spacing:8.580000px;}
.wsc{word-spacing:8.640000px;}
.ws64{word-spacing:8.700000px;}
.ws19{word-spacing:8.760000px;}
.ws20{word-spacing:8.940000px;}
.ws5f{word-spacing:9.000000px;}
.ws8e{word-spacing:9.060000px;}
.ws30{word-spacing:9.300000px;}
.wsba{word-spacing:9.420000px;}
.ws1d{word-spacing:9.600000px;}
.wsf7{word-spacing:9.648000px;}
.ws15{word-spacing:9.840000px;}
.ws13{word-spacing:10.020000px;}
.wsdd{word-spacing:10.032000px;}
.wsd0{word-spacing:10.272000px;}
.ws23{word-spacing:10.320000px;}
.wsda{word-spacing:10.368000px;}
.ws46{word-spacing:10.620000px;}
.wse4{word-spacing:10.800000px;}
.ws6a{word-spacing:10.896000px;}
.ws99{word-spacing:10.980000px;}
.ws18{word-spacing:11.160000px;}
.wsad{word-spacing:11.280000px;}
.wsb4{word-spacing:11.400000px;}
.ws4f{word-spacing:11.460000px;}
.ws7a{word-spacing:11.700000px;}
.ws2b{word-spacing:11.760000px;}
.wsa3{word-spacing:11.820000px;}
.ws33{word-spacing:12.000000px;}
.wsbe{word-spacing:12.120000px;}
.ws48{word-spacing:12.180000px;}
.ws34{word-spacing:12.360000px;}
.ws7f{word-spacing:12.420000px;}
.ws72{word-spacing:12.480000px;}
.ws42{word-spacing:12.840000px;}
.wsb3{word-spacing:12.900000px;}
.ws9f{word-spacing:13.140000px;}
.ws12{word-spacing:13.560000px;}
.ws40{word-spacing:14.160000px;}
.ws54{word-spacing:14.280000px;}
.wsa6{word-spacing:14.820000px;}
.ws76{word-spacing:14.880000px;}
.ws91{word-spacing:15.000000px;}
.wsb5{word-spacing:15.300000px;}
.ws59{word-spacing:16.500000px;}
.wse5{word-spacing:16.704000px;}
.wsb1{word-spacing:16.896000px;}
.wsa4{word-spacing:17.160000px;}
.ws5c{word-spacing:18.060000px;}
.ws45{word-spacing:18.840000px;}
.ws1a{word-spacing:19.020000px;}
.ws70{word-spacing:19.680000px;}
.wsac{word-spacing:19.740000px;}
.ws85{word-spacing:41.664000px;}
.ws8b{word-spacing:145.794000px;}
.ws89{word-spacing:299.280000px;}
._54{margin-left:-28.704000px;}
._5{margin-left:-12.000000px;}
._6{margin-left:-8.820000px;}
._4{margin-left:-5.771400px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._3d{width:1.200000px;}
._2a{width:14.496000px;}
._8{width:31.200000px;}
._15{width:35.774400px;}
._47{width:40.320000px;}
._14{width:41.649600px;}
._45{width:45.312000px;}
._53{width:46.800000px;}
._2f{width:49.118400px;}
._43{width:50.592000px;}
._3f{width:62.592000px;}
._4f{width:73.488000px;}
._44{width:79.248000px;}
._46{width:81.264000px;}
._49{width:85.344000px;}
._48{width:88.320000px;}
._4b{width:91.344000px;}
._51{width:92.592000px;}
._52{width:100.560000px;}
._1c{width:115.872000px;}
._4d{width:119.280000px;}
._4a{width:121.344000px;}
._50{width:124.224000px;}
._4e{width:140.592000px;}
._4c{width:142.896000px;}
._10{width:155.904000px;}
._2c{width:162.624000px;}
._a{width:183.168000px;}
._42{width:193.632000px;}
._e{width:195.936000px;}
._41{width:206.544000px;}
._c{width:209.280000px;}
._1f{width:235.968000px;}
._34{width:257.616000px;}
._12{width:260.208000px;}
._d{width:274.798800px;}
._36{width:284.304000px;}
._1a{width:294.864000px;}
._30{width:299.280000px;}
._32{width:325.968000px;}
._16{width:330.542400px;}
._25{width:341.150400px;}
._19{width:345.456000px;}
._2e{width:352.656000px;}
._17{width:357.134400px;}
._11{width:363.410400px;}
._31{width:370.574400px;}
._b{width:381.516000px;}
._23{width:407.774400px;}
._f{width:409.488000px;}
._38{width:421.118400px;}
._37{width:468.192000px;}
._22{width:481.536000px;}
._1b{width:485.150400px;}
._24{width:503.822400px;}
._1e{width:509.198400px;}
._39{width:517.166400px;}
._13{width:518.880000px;}
._3a{width:547.584000px;}
._20{width:562.526400px;}
._26{width:575.918400px;}
._3c{width:619.632000px;}
._3e{width:625.632000px;}
._21{width:630.912000px;}
._3b{width:638.256000px;}
._27{width:639.902400px;}
._9{width:646.896000px;}
._28{width:647.966400px;}
._33{width:651.648000px;}
._2d{width:654.240000px;}
._35{width:662.256000px;}
._18{width:663.902400px;}
._1d{width:671.966400px;}
._29{width:688.272000px;}
._40{width:704.256000px;}
._7{width:708.960000px;}
._2b{width:753.648000px;}
._3{width:2061.102000px;}
.fc4{color:rgb(238,38,41);}
.fc3{color:rgb(187,38,24);}
.fc2{color:rgb(17,62,116);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.000000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:39.600000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:37.503600px;}
.y1e{bottom:55.275600px;}
.y2{bottom:67.597501px;}
.y1d{bottom:68.775600px;}
.y1c{bottom:82.275600px;}
.y1{bottom:84.097501px;}
.y8b{bottom:103.181100px;}
.y76{bottom:103.181250px;}
.y120{bottom:103.927050px;}
.ye3{bottom:107.681100px;}
.y11f{bottom:117.427050px;}
.y42{bottom:121.181100px;}
.y75{bottom:121.181250px;}
.y11e{bottom:130.927050px;}
.ye2{bottom:134.681100px;}
.y41{bottom:139.181100px;}
.y74{bottom:139.181250px;}
.ye1{bottom:148.181100px;}
.y11d{bottom:148.699050px;}
.y40{bottom:157.181100px;}
.y73{bottom:157.181250px;}
.ye0{bottom:161.681100px;}
.y11c{bottom:162.199050px;}
.y3f{bottom:175.181100px;}
.y72{bottom:175.181250px;}
.y11b{bottom:175.699050px;}
.y11a{bottom:189.199050px;}
.y3e{bottom:193.181100px;}
.y71{bottom:193.181250px;}
.y119{bottom:202.699050px;}
.y3d{bottom:211.181100px;}
.y70{bottom:211.181250px;}
.y118{bottom:220.471050px;}
.y3c{bottom:229.181100px;}
.y6f{bottom:229.181250px;}
.y117{bottom:233.971050px;}
.ydd{bottom:244.026150px;}
.y3b{bottom:247.181100px;}
.y6e{bottom:247.181250px;}
.y116{bottom:247.471050px;}
.y3a{bottom:265.181100px;}
.y6d{bottom:265.181250px;}
.y115{bottom:265.243050px;}
.y8a{bottom:268.181100px;}
.y114{bottom:278.743050px;}
.y39{bottom:283.181100px;}
.y6c{bottom:283.181250px;}
.y89{bottom:286.181100px;}
.y113{bottom:292.243050px;}
.y38{bottom:301.181100px;}
.y6b{bottom:301.181250px;}
.y112{bottom:310.015050px;}
.y37{bottom:319.181100px;}
.y6a{bottom:319.181250px;}
.y111{bottom:323.515050px;}
.y36{bottom:337.181100px;}
.y69{bottom:337.181250px;}
.y110{bottom:341.287050px;}
.y13{bottom:354.772501px;}
.y10f{bottom:354.787050px;}
.y35{bottom:355.181100px;}
.y68{bottom:355.181250px;}
.y10e{bottom:368.287050px;}
.y34{bottom:373.181100px;}
.y67{bottom:373.181250px;}
.y10d{bottom:386.059050px;}
.y33{bottom:391.181100px;}
.y66{bottom:391.181250px;}
.y10c{bottom:399.559050px;}
.y32{bottom:409.181100px;}
.y65{bottom:409.181250px;}
.y10b{bottom:413.059050px;}
.y12{bottom:419.122501px;}
.y31{bottom:427.181100px;}
.y64{bottom:427.181250px;}
.y10a{bottom:430.831050px;}
.y109{bottom:444.331050px;}
.y30{bottom:445.181100px;}
.y63{bottom:445.181250px;}
.y77{bottom:448.181250px;}
.y108{bottom:457.831050px;}
.y2f{bottom:463.181100px;}
.y62{bottom:463.181250px;}
.y107{bottom:475.603050px;}
.y2e{bottom:481.181100px;}
.y61{bottom:481.181250px;}
.y11{bottom:486.403500px;}
.yc8{bottom:488.681100px;}
.y106{bottom:489.103050px;}
.y2d{bottom:499.181100px;}
.y60{bottom:499.181250px;}
.y105{bottom:502.603050px;}
.y104{bottom:516.103050px;}
.y2c{bottom:517.181100px;}
.y5f{bottom:517.181250px;}
.y103{bottom:533.875050px;}
.y2b{bottom:535.181100px;}
.y5e{bottom:535.181250px;}
.yb1{bottom:536.136300px;}
.yb0{bottom:545.676300px;}
.y102{bottom:547.375050px;}
.y10{bottom:547.822501px;}
.y2a{bottom:553.181100px;}
.y5d{bottom:553.181250px;}
.yaf{bottom:559.176300px;}
.y101{bottom:560.875050px;}
.y29{bottom:571.181100px;}
.y5c{bottom:571.181250px;}
.y100{bottom:574.375050px;}
.yae{bottom:576.636300px;}
.yff{bottom:587.875050px;}
.y28{bottom:589.181100px;}
.y5b{bottom:589.181250px;}
.yad{bottom:590.136300px;}
.yfe{bottom:601.375050px;}
.y27{bottom:607.181100px;}
.y5a{bottom:607.181250px;}
.yac{bottom:613.176300px;}
.yf{bottom:615.103500px;}
.yfd{bottom:619.169100px;}
.y26{bottom:625.181100px;}
.y59{bottom:625.181250px;}
.yab{bottom:626.676300px;}
.yfc{bottom:632.669100px;}
.yaa{bottom:640.176300px;}
.y25{bottom:643.181100px;}
.y58{bottom:643.181250px;}
.yfb{bottom:646.169100px;}
.ye{bottom:649.453501px;}
.y8c{bottom:650.681100px;}
.ya9{bottom:653.676300px;}
.yfa{bottom:659.669100px;}
.y24{bottom:661.181100px;}
.y57{bottom:661.181250px;}
.yd{bottom:664.453501px;}
.ya8{bottom:667.176300px;}
.yf9{bottom:677.441100px;}
.y23{bottom:679.181100px;}
.y56{bottom:679.181250px;}
.yc{bottom:679.453500px;}
.ya7{bottom:680.676300px;}
.yf8{bottom:690.941100px;}
.y153{bottom:691.692150px;}
.y139{bottom:693.252150px;}
.ya6{bottom:694.176300px;}
.y22{bottom:697.181100px;}
.y55{bottom:697.181250px;}
.yf7{bottom:704.441100px;}
.y152{bottom:705.192150px;}
.ya5{bottom:707.676300px;}
.y138{bottom:711.396150px;}
.y21{bottom:715.181100px;}
.y54{bottom:715.181250px;}
.yf6{bottom:717.941100px;}
.y151{bottom:718.692150px;}
.ya4{bottom:721.176300px;}
.y137{bottom:724.896150px;}
.y20{bottom:733.181100px;}
.y53{bottom:733.181250px;}
.yc7{bottom:734.676150px;}
.ya3{bottom:734.676300px;}
.yf5{bottom:735.713100px;}
.y150{bottom:736.464150px;}
.y136{bottom:743.040150px;}
.yd3{bottom:743.664150px;}
.ya2{bottom:748.176300px;}
.yf4{bottom:749.213100px;}
.y14f{bottom:749.964150px;}
.yce{bottom:751.181100px;}
.y52{bottom:751.181250px;}
.y135{bottom:756.540150px;}
.yd2{bottom:757.164150px;}
.yb{bottom:761.241002px;}
.yc6{bottom:761.676150px;}
.ya1{bottom:761.676300px;}
.yf3{bottom:762.713100px;}
.y14e{bottom:763.464150px;}
.ycd{bottom:769.181100px;}
.y51{bottom:769.181250px;}
.y134{bottom:770.040150px;}
.yd1{bottom:770.664150px;}
.yc5{bottom:775.176150px;}
.ya0{bottom:775.176300px;}
.y7a{bottom:775.447200px;}
.y14d{bottom:776.964150px;}
.yf2{bottom:780.485100px;}
.yd0{bottom:784.164150px;}
.ycc{bottom:787.181100px;}
.y133{bottom:788.184150px;}
.yc4{bottom:788.676150px;}
.y9f{bottom:788.676300px;}
.y79{bottom:788.947200px;}
.ya{bottom:791.630994px;}
.yf1{bottom:793.985100px;}
.y50{bottom:794.681250px;}
.y14c{bottom:794.736150px;}
.ycf{bottom:797.664150px;}
.y132{bottom:801.684150px;}
.yc3{bottom:802.176150px;}
.y9e{bottom:802.176300px;}
.y78{bottom:802.447200px;}
.ycb{bottom:805.181100px;}
.yf0{bottom:807.485100px;}
.y14b{bottom:808.236150px;}
.y9{bottom:809.691006px;}
.ydc{bottom:814.570500px;}
.y131{bottom:815.184150px;}
.yc2{bottom:815.676150px;}
.y9c{bottom:815.676300px;}
.ydb{bottom:818.834700px;}
.y9d{bottom:819.636300px;}
.y14a{bottom:821.736150px;}
.yca{bottom:823.181100px;}
.yef{bottom:825.257100px;}
.y8{bottom:828.215993px;}
.y130{bottom:828.684150px;}
.yc1{bottom:829.176150px;}
.y9b{bottom:829.176300px;}
.yda{bottom:829.953300px;}
.y88{bottom:833.567850px;}
.y149{bottom:835.236150px;}
.yee{bottom:838.757100px;}
.yd9{bottom:841.066050px;}
.yc9{bottom:841.181100px;}
.yc0{bottom:842.676150px;}
.y9a{bottom:842.676300px;}
.y87{bottom:845.447850px;}
.y12f{bottom:846.828150px;}
.yed{bottom:852.257100px;}
.y148{bottom:853.008150px;}
.ybf{bottom:856.176150px;}
.y99{bottom:856.176300px;}
.y86{bottom:857.327850px;}
.y4f{bottom:859.181100px;}
.y12e{bottom:860.328150px;}
.y147{bottom:866.508150px;}
.ybe{bottom:869.676150px;}
.y98{bottom:869.676300px;}
.yec{bottom:870.029100px;}
.y85{bottom:872.177850px;}
.y4e{bottom:877.181100px;}
.y12d{bottom:878.472150px;}
.y7{bottom:881.115002px;}
.yd8{bottom:881.466300px;}
.ybd{bottom:883.176150px;}
.y97{bottom:883.176300px;}
.y1b{bottom:883.336650px;}
.yeb{bottom:883.529100px;}
.y146{bottom:884.280150px;}
.y12c{bottom:891.972150px;}
.y4d{bottom:895.181100px;}
.ybc{bottom:896.676150px;}
.y96{bottom:896.676300px;}
.y1a{bottom:896.836650px;}
.y145{bottom:897.780150px;}
.yea{bottom:901.301100px;}
.y81{bottom:903.685950px;}
.y12b{bottom:905.472150px;}
.ybb{bottom:910.176150px;}
.y95{bottom:910.176300px;}
.y19{bottom:910.336650px;}
.y144{bottom:911.280150px;}
.y4c{bottom:913.181100px;}
.ye9{bottom:914.801100px;}
.y80{bottom:915.565950px;}
.yd7{bottom:921.866550px;}
.y12a{bottom:923.616150px;}
.yba{bottom:923.676150px;}
.y94{bottom:923.676300px;}
.y7f{bottom:927.445950px;}
.y18{bottom:927.796650px;}
.ye8{bottom:928.301100px;}
.y143{bottom:929.052150px;}
.y4b{bottom:931.181100px;}
.y129{bottom:937.116150px;}
.y93{bottom:937.176300px;}
.y6{bottom:938.779498px;}
.y142{bottom:942.552150px;}
.y4a{bottom:949.181100px;}
.yb9{bottom:950.676150px;}
.y128{bottom:955.260150px;}
.y141{bottom:956.052150px;}
.y84{bottom:959.531850px;}
.yd6{bottom:962.266800px;}
.yb8{bottom:964.176150px;}
.y92{bottom:964.176300px;}
.y49{bottom:967.181100px;}
.y127{bottom:968.760150px;}
.y140{bottom:969.552150px;}
.y5{bottom:970.279498px;}
.y83{bottom:971.411850px;}
.y17{bottom:976.596450px;}
.yb7{bottom:977.676150px;}
.y91{bottom:977.676300px;}
.y126{bottom:982.260150px;}
.ye7{bottom:982.301100px;}
.y82{bottom:983.291850px;}
.y48{bottom:985.181100px;}
.y13f{bottom:987.324150px;}
.yb6{bottom:991.176150px;}
.ye6{bottom:995.801100px;}
.y125{bottom:1000.404150px;}
.y13e{bottom:1000.824150px;}
.yd5{bottom:1002.667050px;}
.y47{bottom:1003.181100px;}
.y124{bottom:1013.904150px;}
.y13d{bottom:1014.324150px;}
.y7e{bottom:1016.367750px;}
.yb5{bottom:1018.176150px;}
.y90{bottom:1018.176300px;}
.y46{bottom:1021.181100px;}
.ydf{bottom:1021.481250px;}
.y16{bottom:1027.360350px;}
.y7d{bottom:1028.247750px;}
.yde{bottom:1030.556250px;}
.yb4{bottom:1031.676150px;}
.y8f{bottom:1031.676300px;}
.y123{bottom:1032.048150px;}
.y13c{bottom:1032.096150px;}
.y4{bottom:1035.546001px;}
.ye5{bottom:1036.301100px;}
.y45{bottom:1039.181100px;}
.y7c{bottom:1040.127750px;}
.yd4{bottom:1043.067300px;}
.yb3{bottom:1045.176150px;}
.y8e{bottom:1045.176300px;}
.y122{bottom:1045.548150px;}
.y13b{bottom:1045.596150px;}
.ye4{bottom:1049.801100px;}
.y7b{bottom:1052.007750px;}
.y15{bottom:1054.360350px;}
.y44{bottom:1057.181100px;}
.yb2{bottom:1058.676150px;}
.y8d{bottom:1058.676300px;}
.y121{bottom:1059.048150px;}
.y13a{bottom:1059.096150px;}
.y14{bottom:1106.928450px;}
.y43{bottom:1107.217800px;}
.y3{bottom:1165.122003px;}
.h18{height:25.848000px;}
.h19{height:29.832000px;}
.he{height:32.544000px;}
.h11{height:33.600000px;}
.hb{height:35.376000px;}
.h16{height:35.798400px;}
.h4{height:36.726562px;}
.h2{height:41.317383px;}
.h17{height:41.688000px;}
.h12{height:42.000000px;}
.h10{height:43.392000px;}
.h15{height:43.860000px;}
.h8{height:45.000000px;}
.h7{height:45.908203px;}
.hf{height:48.384000px;}
.h13{height:54.240000px;}
.h6{height:55.089844px;}
.h14{height:59.664000px;}
.hd{height:60.480000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.hc{height:86.784000px;}
.h1a{height:253.737000px;}
.ha{height:1190.250000px;}
.h9{height:1190.551500px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w4{width:250.935000px;}
.w2{width:914.173500px;}
.w3{width:914.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x1e{left:8.264400px;}
.x6{left:76.535400px;}
.x9{left:80.787450px;}
.xb{left:89.285400px;}
.xa{left:93.537450px;}
.x16{left:123.862800px;}
.x1d{left:138.189000px;}
.x18{left:144.457050px;}
.x4{left:145.650000px;}
.x19{left:149.044050px;}
.x1a{left:153.631050px;}
.x1b{left:162.070800px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x2{left:236.066995px;}
.x1c{left:245.239350px;}
.x1{left:293.590494px;}
.x7{left:467.716500px;}
.x17{left:471.964500px;}
.x8{left:480.466500px;}
.x1f{left:525.207150px;}
.x14{left:562.960200px;}
.xe{left:570.499800px;}
.x10{left:576.311100px;}
.xd{left:585.161700px;}
.xc{left:605.605200px;}
.xf{left:629.751300px;}
.x15{left:663.553950px;}
.x12{left:669.371100px;}
.x11{left:677.261400px;}
.x13{left:683.082600px;}
@media print{
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.080000pt;}
.v1{vertical-align:17.600000pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.426667pt;}
.ls6{letter-spacing:154.058667pt;}
.ws8a{word-spacing:-162.213333pt;}
.ws3b{word-spacing:-14.826667pt;}
.ws0{word-spacing:-12.432000pt;}
.ws3c{word-spacing:-9.785600pt;}
.ws6b{word-spacing:-8.896000pt;}
.ws61{word-spacing:-5.280000pt;}
.ws7d{word-spacing:-3.306667pt;}
.ws96{word-spacing:-2.986667pt;}
.ws97{word-spacing:-2.933333pt;}
.ws60{word-spacing:-2.720000pt;}
.ws98{word-spacing:-2.613333pt;}
.ws6e{word-spacing:-2.506667pt;}
.ws49{word-spacing:-2.453333pt;}
.wsab{word-spacing:-2.293333pt;}
.ws69{word-spacing:-2.261333pt;}
.wsf6{word-spacing:-2.090667pt;}
.wsa{word-spacing:-2.080000pt;}
.wsd5{word-spacing:-2.005333pt;}
.wsd{word-spacing:-1.973333pt;}
.wsdc{word-spacing:-1.962667pt;}
.ws90{word-spacing:-1.920000pt;}
.wsf9{word-spacing:-1.877333pt;}
.ws22{word-spacing:-1.866667pt;}
.ws6{word-spacing:-1.813333pt;}
.wsc6{word-spacing:-1.792000pt;}
.ws6c{word-spacing:-1.706667pt;}
.wsd2{word-spacing:-1.664000pt;}
.wsbd{word-spacing:-1.653333pt;}
.wsae{word-spacing:-1.578667pt;}
.wsa8{word-spacing:-1.493333pt;}
.wse0{word-spacing:-1.408000pt;}
.ws7e{word-spacing:-1.386667pt;}
.ws84{word-spacing:-1.322667pt;}
.ws7b{word-spacing:-1.280000pt;}
.wsc7{word-spacing:-1.194667pt;}
.wsb7{word-spacing:-1.173333pt;}
.wscb{word-spacing:-1.109333pt;}
.wsa5{word-spacing:-1.066667pt;}
.ws5b{word-spacing:-0.960000pt;}
.wsd7{word-spacing:-0.938667pt;}
.wse2{word-spacing:-0.896000pt;}
.wsb2{word-spacing:-0.853333pt;}
.wsd6{word-spacing:-0.810667pt;}
.wse7{word-spacing:-0.768000pt;}
.ws9c{word-spacing:-0.746667pt;}
.ws75{word-spacing:-0.693333pt;}
.wsd8{word-spacing:-0.640000pt;}
.wsc3{word-spacing:-0.512000pt;}
.ws52{word-spacing:-0.480000pt;}
.wsc1{word-spacing:-0.469333pt;}
.wsf0{word-spacing:-0.426667pt;}
.wse1{word-spacing:-0.384000pt;}
.ws62{word-spacing:-0.373333pt;}
.ws77{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws63{word-spacing:-0.213333pt;}
.wsf5{word-spacing:-0.128000pt;}
.ws9e{word-spacing:-0.106667pt;}
.wsc4{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.wscf{word-spacing:0.042667pt;}
.ws6f{word-spacing:0.053333pt;}
.ws4e{word-spacing:0.106667pt;}
.ws2{word-spacing:0.160000pt;}
.ws86{word-spacing:0.170667pt;}
.ws3{word-spacing:0.213333pt;}
.wsf3{word-spacing:0.298667pt;}
.ws21{word-spacing:0.320000pt;}
.ws56{word-spacing:0.373333pt;}
.ws53{word-spacing:0.426667pt;}
.ws38{word-spacing:0.480000pt;}
.ws83{word-spacing:0.512000pt;}
.wsbc{word-spacing:0.533333pt;}
.wsf2{word-spacing:0.554667pt;}
.ws2c{word-spacing:0.693333pt;}
.wsd3{word-spacing:0.768000pt;}
.ws10{word-spacing:0.800000pt;}
.wsaf{word-spacing:0.810667pt;}
.wsa7{word-spacing:0.853333pt;}
.ws35{word-spacing:0.906667pt;}
.ws74{word-spacing:0.960000pt;}
.wsec{word-spacing:0.981333pt;}
.ws26{word-spacing:1.066667pt;}
.wsaa{word-spacing:1.120000pt;}
.wsfa{word-spacing:1.152000pt;}
.ws25{word-spacing:1.173333pt;}
.wse8{word-spacing:1.194667pt;}
.ws31{word-spacing:1.226667pt;}
.ws8{word-spacing:1.280000pt;}
.ws65{word-spacing:1.440000pt;}
.ws51{word-spacing:1.493333pt;}
.wsf4{word-spacing:1.536000pt;}
.ws4b{word-spacing:1.546667pt;}
.wsc2{word-spacing:1.578667pt;}
.ws16{word-spacing:1.653333pt;}
.ws87{word-spacing:1.664000pt;}
.wsbf{word-spacing:1.760000pt;}
.wsc8{word-spacing:1.834667pt;}
.ws88{word-spacing:1.920000pt;}
.wsbb{word-spacing:2.026667pt;}
.ws3a{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.133333pt;}
.wscd{word-spacing:2.218667pt;}
.wsa9{word-spacing:2.240000pt;}
.ws55{word-spacing:2.293333pt;}
.wsc9{word-spacing:2.389333pt;}
.wsc0{word-spacing:2.400000pt;}
.wsee{word-spacing:2.432000pt;}
.wsa0{word-spacing:2.453333pt;}
.ws6d{word-spacing:2.506667pt;}
.wsed{word-spacing:2.517333pt;}
.wsb{word-spacing:2.560000pt;}
.wsde{word-spacing:2.602667pt;}
.ws95{word-spacing:2.613333pt;}
.wsea{word-spacing:2.645333pt;}
.ws9{word-spacing:2.666667pt;}
.ws50{word-spacing:2.720000pt;}
.wse9{word-spacing:2.730667pt;}
.ws7{word-spacing:2.773333pt;}
.wsd4{word-spacing:2.816000pt;}
.ws93{word-spacing:2.826667pt;}
.ws68{word-spacing:2.933333pt;}
.ws8f{word-spacing:2.986667pt;}
.ws1e{word-spacing:3.093333pt;}
.ws3d{word-spacing:3.146667pt;}
.wsb9{word-spacing:3.200000pt;}
.wsce{word-spacing:3.242667pt;}
.ws94{word-spacing:3.253333pt;}
.ws41{word-spacing:3.306667pt;}
.ws9a{word-spacing:3.360000pt;}
.ws8c{word-spacing:3.413333pt;}
.wsb8{word-spacing:3.466667pt;}
.ws5a{word-spacing:3.520000pt;}
.ws79{word-spacing:3.626667pt;}
.ws4{word-spacing:3.669333pt;}
.ws1f{word-spacing:3.680000pt;}
.ws5{word-spacing:3.754667pt;}
.ws1c{word-spacing:3.786667pt;}
.ws67{word-spacing:3.893333pt;}
.wseb{word-spacing:4.010667pt;}
.ws4d{word-spacing:4.053333pt;}
.ws11{word-spacing:4.160000pt;}
.ws7c{word-spacing:4.266667pt;}
.wsef{word-spacing:4.309333pt;}
.ws28{word-spacing:4.373333pt;}
.wsf{word-spacing:4.426667pt;}
.ws36{word-spacing:4.533333pt;}
.ws66{word-spacing:4.586667pt;}
.wsd9{word-spacing:4.608000pt;}
.wsd1{word-spacing:4.650667pt;}
.ws78{word-spacing:4.693333pt;}
.wsc5{word-spacing:4.736000pt;}
.ws2e{word-spacing:4.746667pt;}
.wsdf{word-spacing:4.821333pt;}
.wsb6{word-spacing:4.853333pt;}
.ws4c{word-spacing:4.906667pt;}
.wsf1{word-spacing:4.949333pt;}
.ws24{word-spacing:4.960000pt;}
.ws3f{word-spacing:5.013333pt;}
.ws92{word-spacing:5.066667pt;}
.wsdb{word-spacing:5.162667pt;}
.ws3e{word-spacing:5.173333pt;}
.ws32{word-spacing:5.226667pt;}
.ws71{word-spacing:5.280000pt;}
.ws57{word-spacing:5.333333pt;}
.wscc{word-spacing:5.376000pt;}
.ws9b{word-spacing:5.386667pt;}
.ws14{word-spacing:5.440000pt;}
.wsca{word-spacing:5.504000pt;}
.ws43{word-spacing:5.653333pt;}
.ws4a{word-spacing:5.706667pt;}
.wse{word-spacing:5.760000pt;}
.ws29{word-spacing:5.813333pt;}
.ws27{word-spacing:6.026667pt;}
.wse6{word-spacing:6.058667pt;}
.ws80{word-spacing:6.080000pt;}
.wsf8{word-spacing:6.101333pt;}
.ws2d{word-spacing:6.240000pt;}
.wse3{word-spacing:6.272000pt;}
.ws8d{word-spacing:6.293333pt;}
.ws1b{word-spacing:6.400000pt;}
.wsb0{word-spacing:6.442667pt;}
.ws58{word-spacing:6.506667pt;}
.ws44{word-spacing:6.560000pt;}
.ws2f{word-spacing:6.613333pt;}
.ws9d{word-spacing:6.773333pt;}
.ws5d{word-spacing:6.880000pt;}
.ws17{word-spacing:6.986667pt;}
.ws37{word-spacing:7.040000pt;}
.ws39{word-spacing:7.306667pt;}
.ws82{word-spacing:7.360000pt;}
.ws73{word-spacing:7.413333pt;}
.ws81{word-spacing:7.466667pt;}
.wsa2{word-spacing:7.520000pt;}
.ws5e{word-spacing:7.573333pt;}
.ws47{word-spacing:7.626667pt;}
.wsc{word-spacing:7.680000pt;}
.ws64{word-spacing:7.733333pt;}
.ws19{word-spacing:7.786667pt;}
.ws20{word-spacing:7.946667pt;}
.ws5f{word-spacing:8.000000pt;}
.ws8e{word-spacing:8.053333pt;}
.ws30{word-spacing:8.266667pt;}
.wsba{word-spacing:8.373333pt;}
.ws1d{word-spacing:8.533333pt;}
.wsf7{word-spacing:8.576000pt;}
.ws15{word-spacing:8.746667pt;}
.ws13{word-spacing:8.906667pt;}
.wsdd{word-spacing:8.917333pt;}
.wsd0{word-spacing:9.130667pt;}
.ws23{word-spacing:9.173333pt;}
.wsda{word-spacing:9.216000pt;}
.ws46{word-spacing:9.440000pt;}
.wse4{word-spacing:9.600000pt;}
.ws6a{word-spacing:9.685333pt;}
.ws99{word-spacing:9.760000pt;}
.ws18{word-spacing:9.920000pt;}
.wsad{word-spacing:10.026667pt;}
.wsb4{word-spacing:10.133333pt;}
.ws4f{word-spacing:10.186667pt;}
.ws7a{word-spacing:10.400000pt;}
.ws2b{word-spacing:10.453333pt;}
.wsa3{word-spacing:10.506667pt;}
.ws33{word-spacing:10.666667pt;}
.wsbe{word-spacing:10.773333pt;}
.ws48{word-spacing:10.826667pt;}
.ws34{word-spacing:10.986667pt;}
.ws7f{word-spacing:11.040000pt;}
.ws72{word-spacing:11.093333pt;}
.ws42{word-spacing:11.413333pt;}
.wsb3{word-spacing:11.466667pt;}
.ws9f{word-spacing:11.680000pt;}
.ws12{word-spacing:12.053333pt;}
.ws40{word-spacing:12.586667pt;}
.ws54{word-spacing:12.693333pt;}
.wsa6{word-spacing:13.173333pt;}
.ws76{word-spacing:13.226667pt;}
.ws91{word-spacing:13.333333pt;}
.wsb5{word-spacing:13.600000pt;}
.ws59{word-spacing:14.666667pt;}
.wse5{word-spacing:14.848000pt;}
.wsb1{word-spacing:15.018667pt;}
.wsa4{word-spacing:15.253333pt;}
.ws5c{word-spacing:16.053333pt;}
.ws45{word-spacing:16.746667pt;}
.ws1a{word-spacing:16.906667pt;}
.ws70{word-spacing:17.493333pt;}
.wsac{word-spacing:17.546667pt;}
.ws85{word-spacing:37.034667pt;}
.ws8b{word-spacing:129.594667pt;}
.ws89{word-spacing:266.026667pt;}
._54{margin-left:-25.514667pt;}
._5{margin-left:-10.666667pt;}
._6{margin-left:-7.840000pt;}
._4{margin-left:-5.130133pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._3d{width:1.066667pt;}
._2a{width:12.885333pt;}
._8{width:27.733333pt;}
._15{width:31.799467pt;}
._47{width:35.840000pt;}
._14{width:37.021867pt;}
._45{width:40.277333pt;}
._53{width:41.600000pt;}
._2f{width:43.660800pt;}
._43{width:44.970667pt;}
._3f{width:55.637333pt;}
._4f{width:65.322667pt;}
._44{width:70.442667pt;}
._46{width:72.234667pt;}
._49{width:75.861333pt;}
._48{width:78.506667pt;}
._4b{width:81.194667pt;}
._51{width:82.304000pt;}
._52{width:89.386667pt;}
._1c{width:102.997333pt;}
._4d{width:106.026667pt;}
._4a{width:107.861333pt;}
._50{width:110.421333pt;}
._4e{width:124.970667pt;}
._4c{width:127.018667pt;}
._10{width:138.581333pt;}
._2c{width:144.554667pt;}
._a{width:162.816000pt;}
._42{width:172.117333pt;}
._e{width:174.165333pt;}
._41{width:183.594667pt;}
._c{width:186.026667pt;}
._1f{width:209.749333pt;}
._34{width:228.992000pt;}
._12{width:231.296000pt;}
._d{width:244.265600pt;}
._36{width:252.714667pt;}
._1a{width:262.101333pt;}
._30{width:266.026667pt;}
._32{width:289.749333pt;}
._16{width:293.815467pt;}
._25{width:303.244800pt;}
._19{width:307.072000pt;}
._2e{width:313.472000pt;}
._17{width:317.452800pt;}
._11{width:323.031467pt;}
._31{width:329.399467pt;}
._b{width:339.125333pt;}
._23{width:362.466133pt;}
._f{width:363.989333pt;}
._38{width:374.327467pt;}
._37{width:416.170667pt;}
._22{width:428.032000pt;}
._1b{width:431.244800pt;}
._24{width:447.842133pt;}
._1e{width:452.620800pt;}
._39{width:459.703467pt;}
._13{width:461.226667pt;}
._3a{width:486.741333pt;}
._20{width:500.023467pt;}
._26{width:511.927467pt;}
._3c{width:550.784000pt;}
._3e{width:556.117333pt;}
._21{width:560.810667pt;}
._3b{width:567.338667pt;}
._27{width:568.802133pt;}
._9{width:575.018667pt;}
._28{width:575.970133pt;}
._33{width:579.242667pt;}
._2d{width:581.546667pt;}
._35{width:588.672000pt;}
._18{width:590.135467pt;}
._1d{width:597.303467pt;}
._29{width:611.797333pt;}
._40{width:626.005333pt;}
._7{width:630.186667pt;}
._2b{width:669.909333pt;}
._3{width:1832.090667pt;}
.fsb{font-size:29.333333pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:35.200000pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:33.336533pt;}
.y1e{bottom:49.133867pt;}
.y2{bottom:60.086668pt;}
.y1d{bottom:61.133867pt;}
.y1c{bottom:73.133867pt;}
.y1{bottom:74.753335pt;}
.y8b{bottom:91.716533pt;}
.y76{bottom:91.716667pt;}
.y120{bottom:92.379600pt;}
.ye3{bottom:95.716533pt;}
.y11f{bottom:104.379600pt;}
.y42{bottom:107.716533pt;}
.y75{bottom:107.716667pt;}
.y11e{bottom:116.379600pt;}
.ye2{bottom:119.716533pt;}
.y41{bottom:123.716533pt;}
.y74{bottom:123.716667pt;}
.ye1{bottom:131.716533pt;}
.y11d{bottom:132.176933pt;}
.y40{bottom:139.716533pt;}
.y73{bottom:139.716667pt;}
.ye0{bottom:143.716533pt;}
.y11c{bottom:144.176933pt;}
.y3f{bottom:155.716533pt;}
.y72{bottom:155.716667pt;}
.y11b{bottom:156.176933pt;}
.y11a{bottom:168.176933pt;}
.y3e{bottom:171.716533pt;}
.y71{bottom:171.716667pt;}
.y119{bottom:180.176933pt;}
.y3d{bottom:187.716533pt;}
.y70{bottom:187.716667pt;}
.y118{bottom:195.974267pt;}
.y3c{bottom:203.716533pt;}
.y6f{bottom:203.716667pt;}
.y117{bottom:207.974267pt;}
.ydd{bottom:216.912133pt;}
.y3b{bottom:219.716533pt;}
.y6e{bottom:219.716667pt;}
.y116{bottom:219.974267pt;}
.y3a{bottom:235.716533pt;}
.y6d{bottom:235.716667pt;}
.y115{bottom:235.771600pt;}
.y8a{bottom:238.383200pt;}
.y114{bottom:247.771600pt;}
.y39{bottom:251.716533pt;}
.y6c{bottom:251.716667pt;}
.y89{bottom:254.383200pt;}
.y113{bottom:259.771600pt;}
.y38{bottom:267.716533pt;}
.y6b{bottom:267.716667pt;}
.y112{bottom:275.568933pt;}
.y37{bottom:283.716533pt;}
.y6a{bottom:283.716667pt;}
.y111{bottom:287.568933pt;}
.y36{bottom:299.716533pt;}
.y69{bottom:299.716667pt;}
.y110{bottom:303.366267pt;}
.y13{bottom:315.353334pt;}
.y10f{bottom:315.366267pt;}
.y35{bottom:315.716533pt;}
.y68{bottom:315.716667pt;}
.y10e{bottom:327.366267pt;}
.y34{bottom:331.716533pt;}
.y67{bottom:331.716667pt;}
.y10d{bottom:343.163600pt;}
.y33{bottom:347.716533pt;}
.y66{bottom:347.716667pt;}
.y10c{bottom:355.163600pt;}
.y32{bottom:363.716533pt;}
.y65{bottom:363.716667pt;}
.y10b{bottom:367.163600pt;}
.y12{bottom:372.553334pt;}
.y31{bottom:379.716533pt;}
.y64{bottom:379.716667pt;}
.y10a{bottom:382.960933pt;}
.y109{bottom:394.960933pt;}
.y30{bottom:395.716533pt;}
.y63{bottom:395.716667pt;}
.y77{bottom:398.383333pt;}
.y108{bottom:406.960933pt;}
.y2f{bottom:411.716533pt;}
.y62{bottom:411.716667pt;}
.y107{bottom:422.758267pt;}
.y2e{bottom:427.716533pt;}
.y61{bottom:427.716667pt;}
.y11{bottom:432.358667pt;}
.yc8{bottom:434.383200pt;}
.y106{bottom:434.758267pt;}
.y2d{bottom:443.716533pt;}
.y60{bottom:443.716667pt;}
.y105{bottom:446.758267pt;}
.y104{bottom:458.758267pt;}
.y2c{bottom:459.716533pt;}
.y5f{bottom:459.716667pt;}
.y103{bottom:474.555600pt;}
.y2b{bottom:475.716533pt;}
.y5e{bottom:475.716667pt;}
.yb1{bottom:476.565600pt;}
.yb0{bottom:485.045600pt;}
.y102{bottom:486.555600pt;}
.y10{bottom:486.953334pt;}
.y2a{bottom:491.716533pt;}
.y5d{bottom:491.716667pt;}
.yaf{bottom:497.045600pt;}
.y101{bottom:498.555600pt;}
.y29{bottom:507.716533pt;}
.y5c{bottom:507.716667pt;}
.y100{bottom:510.555600pt;}
.yae{bottom:512.565600pt;}
.yff{bottom:522.555600pt;}
.y28{bottom:523.716533pt;}
.y5b{bottom:523.716667pt;}
.yad{bottom:524.565600pt;}
.yfe{bottom:534.555600pt;}
.y27{bottom:539.716533pt;}
.y5a{bottom:539.716667pt;}
.yac{bottom:545.045600pt;}
.yf{bottom:546.758667pt;}
.yfd{bottom:550.372533pt;}
.y26{bottom:555.716533pt;}
.y59{bottom:555.716667pt;}
.yab{bottom:557.045600pt;}
.yfc{bottom:562.372533pt;}
.yaa{bottom:569.045600pt;}
.y25{bottom:571.716533pt;}
.y58{bottom:571.716667pt;}
.yfb{bottom:574.372533pt;}
.ye{bottom:577.292001pt;}
.y8c{bottom:578.383200pt;}
.ya9{bottom:581.045600pt;}
.yfa{bottom:586.372533pt;}
.y24{bottom:587.716533pt;}
.y57{bottom:587.716667pt;}
.yd{bottom:590.625335pt;}
.ya8{bottom:593.045600pt;}
.yf9{bottom:602.169867pt;}
.y23{bottom:603.716533pt;}
.y56{bottom:603.716667pt;}
.yc{bottom:603.958667pt;}
.ya7{bottom:605.045600pt;}
.yf8{bottom:614.169867pt;}
.y153{bottom:614.837467pt;}
.y139{bottom:616.224133pt;}
.ya6{bottom:617.045600pt;}
.y22{bottom:619.716533pt;}
.y55{bottom:619.716667pt;}
.yf7{bottom:626.169867pt;}
.y152{bottom:626.837467pt;}
.ya5{bottom:629.045600pt;}
.y138{bottom:632.352133pt;}
.y21{bottom:635.716533pt;}
.y54{bottom:635.716667pt;}
.yf6{bottom:638.169867pt;}
.y151{bottom:638.837467pt;}
.ya4{bottom:641.045600pt;}
.y137{bottom:644.352133pt;}
.y20{bottom:651.716533pt;}
.y53{bottom:651.716667pt;}
.yc7{bottom:653.045467pt;}
.ya3{bottom:653.045600pt;}
.yf5{bottom:653.967200pt;}
.y150{bottom:654.634800pt;}
.y136{bottom:660.480133pt;}
.yd3{bottom:661.034800pt;}
.ya2{bottom:665.045600pt;}
.yf4{bottom:665.967200pt;}
.y14f{bottom:666.634800pt;}
.yce{bottom:667.716533pt;}
.y52{bottom:667.716667pt;}
.y135{bottom:672.480133pt;}
.yd2{bottom:673.034800pt;}
.yb{bottom:676.658668pt;}
.yc6{bottom:677.045467pt;}
.ya1{bottom:677.045600pt;}
.yf3{bottom:677.967200pt;}
.y14e{bottom:678.634800pt;}
.ycd{bottom:683.716533pt;}
.y51{bottom:683.716667pt;}
.y134{bottom:684.480133pt;}
.yd1{bottom:685.034800pt;}
.yc5{bottom:689.045467pt;}
.ya0{bottom:689.045600pt;}
.y7a{bottom:689.286400pt;}
.y14d{bottom:690.634800pt;}
.yf2{bottom:693.764533pt;}
.yd0{bottom:697.034800pt;}
.ycc{bottom:699.716533pt;}
.y133{bottom:700.608133pt;}
.yc4{bottom:701.045467pt;}
.y9f{bottom:701.045600pt;}
.y79{bottom:701.286400pt;}
.ya{bottom:703.671994pt;}
.yf1{bottom:705.764533pt;}
.y50{bottom:706.383333pt;}
.y14c{bottom:706.432133pt;}
.ycf{bottom:709.034800pt;}
.y132{bottom:712.608133pt;}
.yc3{bottom:713.045467pt;}
.y9e{bottom:713.045600pt;}
.y78{bottom:713.286400pt;}
.ycb{bottom:715.716533pt;}
.yf0{bottom:717.764533pt;}
.y14b{bottom:718.432133pt;}
.y9{bottom:719.725339pt;}
.ydc{bottom:724.062667pt;}
.y131{bottom:724.608133pt;}
.yc2{bottom:725.045467pt;}
.y9c{bottom:725.045600pt;}
.ydb{bottom:727.853067pt;}
.y9d{bottom:728.565600pt;}
.y14a{bottom:730.432133pt;}
.yca{bottom:731.716533pt;}
.yef{bottom:733.561867pt;}
.y8{bottom:736.191993pt;}
.y130{bottom:736.608133pt;}
.yc1{bottom:737.045467pt;}
.y9b{bottom:737.045600pt;}
.yda{bottom:737.736267pt;}
.y88{bottom:740.949200pt;}
.y149{bottom:742.432133pt;}
.yee{bottom:745.561867pt;}
.yd9{bottom:747.614267pt;}
.yc9{bottom:747.716533pt;}
.yc0{bottom:749.045467pt;}
.y9a{bottom:749.045600pt;}
.y87{bottom:751.509200pt;}
.y12f{bottom:752.736133pt;}
.yed{bottom:757.561867pt;}
.y148{bottom:758.229467pt;}
.ybf{bottom:761.045467pt;}
.y99{bottom:761.045600pt;}
.y86{bottom:762.069200pt;}
.y4f{bottom:763.716533pt;}
.y12e{bottom:764.736133pt;}
.y147{bottom:770.229467pt;}
.ybe{bottom:773.045467pt;}
.y98{bottom:773.045600pt;}
.yec{bottom:773.359200pt;}
.y85{bottom:775.269200pt;}
.y4e{bottom:779.716533pt;}
.y12d{bottom:780.864133pt;}
.y7{bottom:783.213335pt;}
.yd8{bottom:783.525600pt;}
.ybd{bottom:785.045467pt;}
.y97{bottom:785.045600pt;}
.y1b{bottom:785.188133pt;}
.yeb{bottom:785.359200pt;}
.y146{bottom:786.026800pt;}
.y12c{bottom:792.864133pt;}
.y4d{bottom:795.716533pt;}
.ybc{bottom:797.045467pt;}
.y96{bottom:797.045600pt;}
.y1a{bottom:797.188133pt;}
.y145{bottom:798.026800pt;}
.yea{bottom:801.156533pt;}
.y81{bottom:803.276400pt;}
.y12b{bottom:804.864133pt;}
.ybb{bottom:809.045467pt;}
.y95{bottom:809.045600pt;}
.y19{bottom:809.188133pt;}
.y144{bottom:810.026800pt;}
.y4c{bottom:811.716533pt;}
.ye9{bottom:813.156533pt;}
.y80{bottom:813.836400pt;}
.yd7{bottom:819.436933pt;}
.y12a{bottom:820.992133pt;}
.yba{bottom:821.045467pt;}
.y94{bottom:821.045600pt;}
.y7f{bottom:824.396400pt;}
.y18{bottom:824.708133pt;}
.ye8{bottom:825.156533pt;}
.y143{bottom:825.824133pt;}
.y4b{bottom:827.716533pt;}
.y129{bottom:832.992133pt;}
.y93{bottom:833.045600pt;}
.y6{bottom:834.470665pt;}
.y142{bottom:837.824133pt;}
.y4a{bottom:843.716533pt;}
.yb9{bottom:845.045467pt;}
.y128{bottom:849.120133pt;}
.y141{bottom:849.824133pt;}
.y84{bottom:852.917200pt;}
.yd6{bottom:855.348267pt;}
.yb8{bottom:857.045467pt;}
.y92{bottom:857.045600pt;}
.y49{bottom:859.716533pt;}
.y127{bottom:861.120133pt;}
.y140{bottom:861.824133pt;}
.y5{bottom:862.470665pt;}
.y83{bottom:863.477200pt;}
.y17{bottom:868.085733pt;}
.yb7{bottom:869.045467pt;}
.y91{bottom:869.045600pt;}
.y126{bottom:873.120133pt;}
.ye7{bottom:873.156533pt;}
.y82{bottom:874.037200pt;}
.y48{bottom:875.716533pt;}
.y13f{bottom:877.621467pt;}
.yb6{bottom:881.045467pt;}
.ye6{bottom:885.156533pt;}
.y125{bottom:889.248133pt;}
.y13e{bottom:889.621467pt;}
.yd5{bottom:891.259600pt;}
.y47{bottom:891.716533pt;}
.y124{bottom:901.248133pt;}
.y13d{bottom:901.621467pt;}
.y7e{bottom:903.438000pt;}
.yb5{bottom:905.045467pt;}
.y90{bottom:905.045600pt;}
.y46{bottom:907.716533pt;}
.ydf{bottom:907.983333pt;}
.y16{bottom:913.209200pt;}
.y7d{bottom:913.998000pt;}
.yde{bottom:916.050000pt;}
.yb4{bottom:917.045467pt;}
.y8f{bottom:917.045600pt;}
.y123{bottom:917.376133pt;}
.y13c{bottom:917.418800pt;}
.y4{bottom:920.485335pt;}
.ye5{bottom:921.156533pt;}
.y45{bottom:923.716533pt;}
.y7c{bottom:924.558000pt;}
.yd4{bottom:927.170933pt;}
.yb3{bottom:929.045467pt;}
.y8e{bottom:929.045600pt;}
.y122{bottom:929.376133pt;}
.y13b{bottom:929.418800pt;}
.ye4{bottom:933.156533pt;}
.y7b{bottom:935.118000pt;}
.y15{bottom:937.209200pt;}
.y44{bottom:939.716533pt;}
.yb2{bottom:941.045467pt;}
.y8d{bottom:941.045600pt;}
.y121{bottom:941.376133pt;}
.y13a{bottom:941.418800pt;}
.y14{bottom:983.936400pt;}
.y43{bottom:984.193600pt;}
.y3{bottom:1035.664002pt;}
.h18{height:22.976000pt;}
.h19{height:26.517333pt;}
.he{height:28.928000pt;}
.h11{height:29.866667pt;}
.hb{height:31.445333pt;}
.h16{height:31.820800pt;}
.h4{height:32.645833pt;}
.h2{height:36.726562pt;}
.h17{height:37.056000pt;}
.h12{height:37.333333pt;}
.h10{height:38.570667pt;}
.h15{height:38.986667pt;}
.h8{height:40.000000pt;}
.h7{height:40.807292pt;}
.hf{height:43.008000pt;}
.h13{height:48.213333pt;}
.h6{height:48.968750pt;}
.h14{height:53.034667pt;}
.hd{height:53.760000pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.hc{height:77.141333pt;}
.h1a{height:225.544000pt;}
.ha{height:1058.000000pt;}
.h9{height:1058.268000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w4{width:223.053333pt;}
.w2{width:812.598667pt;}
.w3{width:812.666667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.346133pt;}
.x6{left:68.031467pt;}
.x9{left:71.811067pt;}
.xb{left:79.364800pt;}
.xa{left:83.144400pt;}
.x16{left:110.100267pt;}
.x1d{left:122.834667pt;}
.x18{left:128.406267pt;}
.x4{left:129.466667pt;}
.x19{left:132.483600pt;}
.x1a{left:136.560933pt;}
.x1b{left:144.062933pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x2{left:209.837329pt;}
.x1c{left:217.990533pt;}
.x1{left:260.969328pt;}
.x7{left:415.748000pt;}
.x17{left:419.524000pt;}
.x8{left:427.081333pt;}
.x1f{left:466.850800pt;}
.x14{left:500.409067pt;}
.xe{left:507.110933pt;}
.x10{left:512.276533pt;}
.xd{left:520.143733pt;}
.xc{left:538.315733pt;}
.xf{left:559.778933pt;}
.x15{left:589.825733pt;}
.x12{left:594.996533pt;}
.x11{left:602.010133pt;}
.x13{left:607.184533pt;}
}




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