
    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_e6a52d0536e2697b373808f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_e9a5a67dab232ea26e495915.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.980000;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_a47f3b4acb8561730669fe17.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_56ae8eb118a7a7d69bcd8a99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_709ca8557a2c5511f2428b19.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_eb81e0cfe1faa8fa0ad0be00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_acde30b4ee0ba07628523b4a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_376cc4f98cf9b99699876338.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985000;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_8136b05a07da0fa24486a6f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_ab2be146d1b5cbc126fd65f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_ab2be146d1b5cbc126fd65f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_8c306e32ac7701df84ca6685.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739258;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_98d6472616dc46e8e7dd8c1c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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:ffe;src:url('chunks/assets/font_d6f1c1cad72f8ea8099650d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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:fff;src:url('chunks/assets/font_334fa76ad2b27e01015679d3.woff2')format("woff");}.fff{font-family:fff;line-height:0.985000;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:ff10;src:url('chunks/assets/font_ebfe0858cf7f152a61909883.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.718750;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:ff11;src:url('chunks/assets/font_c4f5780e11b1d4f18cb48cd5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.750000;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.m2{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:-19.980000px;}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls3{letter-spacing:-4.472394px;}
.ls2{letter-spacing:-4.320000px;}
.ls5{letter-spacing:-2.880000px;}
.ls1{letter-spacing:-2.640000px;}
.ls8{letter-spacing:-2.484663px;}
.ls7{letter-spacing:-2.400000px;}
.lsb{letter-spacing:-1.987731px;}
.lsc{letter-spacing:-1.968852px;}
.lsa{letter-spacing:-1.920000px;}
.ls9{letter-spacing:-1.800000px;}
.ls13{letter-spacing:-1.714020px;}
.ls6{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.371216px;}
.ls18{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.240000px;}
.ls17{letter-spacing:-0.120000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000240px;}
.lsd{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.223872px;}
.ls1d{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.384000px;}
.ls15{letter-spacing:3.096000px;}
.ls1a{letter-spacing:3.749400px;}
.ls11{letter-spacing:4.216800px;}
.lse{letter-spacing:4.337400px;}
.ls19{letter-spacing:5.370000px;}
.ls1c{letter-spacing:11.545200px;}
.ls12{letter-spacing:18.487344px;}
.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;}
}
.wsea{word-spacing:-60.000000px;}
.ws96{word-spacing:-48.000000px;}
.ws3{word-spacing:-34.454910px;}
.wse9{word-spacing:-22.260000px;}
.ws1{word-spacing:-21.660000px;}
.ws2{word-spacing:-20.820000px;}
.wsf3{word-spacing:-17.328000px;}
.ws0{word-spacing:-16.800000px;}
.wsf4{word-spacing:-16.320000px;}
.wsf5{word-spacing:-15.840000px;}
.wsf2{word-spacing:-14.280000px;}
.ws16{word-spacing:-14.160000px;}
.ws37{word-spacing:-14.040000px;}
.wseb{word-spacing:-13.320000px;}
.wsc3{word-spacing:-12.840000px;}
.ws38{word-spacing:-11.616000px;}
.ws72{word-spacing:-11.232000px;}
.ws15{word-spacing:-8.185320px;}
.ws5c{word-spacing:-6.471300px;}
.wsf9{word-spacing:-4.869940px;}
.wsec{word-spacing:-4.260000px;}
.wsee{word-spacing:-4.020000px;}
.wsb3{word-spacing:-3.240000px;}
.ws1d{word-spacing:-3.120000px;}
.wsa8{word-spacing:-2.940000px;}
.wsc9{word-spacing:-2.880000px;}
.wsb9{word-spacing:-2.820000px;}
.ws44{word-spacing:-2.760000px;}
.wsca{word-spacing:-2.700000px;}
.ws94{word-spacing:-2.640000px;}
.ws22{word-spacing:-2.580000px;}
.ws95{word-spacing:-2.520000px;}
.ws5f{word-spacing:-2.460000px;}
.ws7d{word-spacing:-2.340000px;}
.ws90{word-spacing:-2.280000px;}
.ws8c{word-spacing:-2.220000px;}
.wsa2{word-spacing:-2.112000px;}
.ws23{word-spacing:-2.100000px;}
.ws3b{word-spacing:-2.040000px;}
.ws8a{word-spacing:-1.980000px;}
.wsdf{word-spacing:-1.920000px;}
.wsac{word-spacing:-1.860000px;}
.wsc6{word-spacing:-1.800000px;}
.ws79{word-spacing:-1.740000px;}
.ws2c{word-spacing:-1.680000px;}
.ws12{word-spacing:-1.632000px;}
.ws91{word-spacing:-1.620000px;}
.wsb2{word-spacing:-1.560000px;}
.wsb5{word-spacing:-1.536000px;}
.ws9b{word-spacing:-1.500000px;}
.ws3c{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.380000px;}
.ws30{word-spacing:-1.320000px;}
.ws76{word-spacing:-1.260000px;}
.ws5d{word-spacing:-1.200000px;}
.wscd{word-spacing:-1.140000px;}
.ws70{word-spacing:-1.080000px;}
.ws80{word-spacing:-1.020000px;}
.wsc5{word-spacing:-0.960000px;}
.ws77{word-spacing:-0.900000px;}
.wsc2{word-spacing:-0.864000px;}
.ws98{word-spacing:-0.840000px;}
.wsd0{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.720000px;}
.wsc1{word-spacing:-0.672000px;}
.wsa9{word-spacing:-0.660000px;}
.wsa6{word-spacing:-0.624000px;}
.ws66{word-spacing:-0.600000px;}
.ws73{word-spacing:-0.540000px;}
.ws6a{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.384000px;}
.ws4e{word-spacing:-0.360000px;}
.wsd9{word-spacing:-0.336000px;}
.wsbf{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.180000px;}
.ws31{word-spacing:-0.144000px;}
.wsb0{word-spacing:-0.120000px;}
.ws19{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws97{word-spacing:0.060000px;}
.ws89{word-spacing:0.120000px;}
.ws93{word-spacing:0.180000px;}
.ws8b{word-spacing:0.240000px;}
.ws9c{word-spacing:0.300000px;}
.ws78{word-spacing:0.360000px;}
.wsa5{word-spacing:0.384000px;}
.ws2d{word-spacing:0.420000px;}
.ws14{word-spacing:0.480000px;}
.ws68{word-spacing:0.540000px;}
.ws92{word-spacing:0.600000px;}
.wsd2{word-spacing:0.660000px;}
.ws69{word-spacing:0.720000px;}
.ws6d{word-spacing:0.780000px;}
.wsde{word-spacing:0.840000px;}
.ws28{word-spacing:0.900000px;}
.wsd7{word-spacing:0.960000px;}
.wsdb{word-spacing:1.008000px;}
.ws4f{word-spacing:1.020000px;}
.ws67{word-spacing:1.080000px;}
.wscf{word-spacing:1.140000px;}
.wsc4{word-spacing:1.200000px;}
.ws4d{word-spacing:1.260000px;}
.wsaf{word-spacing:1.320000px;}
.ws10{word-spacing:1.344000px;}
.ws5e{word-spacing:1.380000px;}
.ws42{word-spacing:1.440000px;}
.wsa4{word-spacing:1.488000px;}
.ws8d{word-spacing:1.500000px;}
.ws86{word-spacing:1.584000px;}
.wsb1{word-spacing:1.620000px;}
.wsf{word-spacing:1.632000px;}
.ws7b{word-spacing:1.680000px;}
.ws9d{word-spacing:1.714020px;}
.ws34{word-spacing:1.728000px;}
.ws6b{word-spacing:1.740000px;}
.ws48{word-spacing:1.860000px;}
.ws13{word-spacing:1.920000px;}
.ws6c{word-spacing:1.980000px;}
.wsda{word-spacing:2.016000px;}
.ws1e{word-spacing:2.040000px;}
.ws43{word-spacing:2.100000px;}
.ws2a{word-spacing:2.160000px;}
.ws1a{word-spacing:2.220000px;}
.ws7a{word-spacing:2.280000px;}
.ws56{word-spacing:2.304000px;}
.wsa0{word-spacing:2.340000px;}
.ws6{word-spacing:2.400000px;}
.wsa3{word-spacing:2.448000px;}
.ws84{word-spacing:2.460000px;}
.ws7{word-spacing:2.484663px;}
.wsab{word-spacing:2.520000px;}
.ws87{word-spacing:2.580000px;}
.ws35{word-spacing:2.640000px;}
.wsb7{word-spacing:2.700000px;}
.wsa7{word-spacing:2.736000px;}
.ws39{word-spacing:2.760000px;}
.wscc{word-spacing:2.820000px;}
.ws5{word-spacing:2.880000px;}
.ws6e{word-spacing:2.940000px;}
.wsa{word-spacing:3.000000px;}
.ws4a{word-spacing:3.120000px;}
.ws74{word-spacing:3.180000px;}
.ws4c{word-spacing:3.240000px;}
.ws36{word-spacing:3.264000px;}
.wsba{word-spacing:3.300000px;}
.ws21{word-spacing:3.360000px;}
.ws9f{word-spacing:3.420000px;}
.ws1f{word-spacing:3.480000px;}
.ws1b{word-spacing:3.540000px;}
.ws85{word-spacing:3.552000px;}
.wse8{word-spacing:3.600000px;}
.ws51{word-spacing:3.660000px;}
.ws81{word-spacing:3.720000px;}
.wse4{word-spacing:3.780000px;}
.ws58{word-spacing:3.840000px;}
.ws26{word-spacing:3.900000px;}
.ws11{word-spacing:3.936000px;}
.ws3a{word-spacing:3.960000px;}
.ws47{word-spacing:4.020000px;}
.ws62{word-spacing:4.080000px;}
.wscb{word-spacing:4.140000px;}
.ws64{word-spacing:4.200000px;}
.ws82{word-spacing:4.260000px;}
.wsd3{word-spacing:4.272000px;}
.ws3d{word-spacing:4.320000px;}
.ws7e{word-spacing:4.380000px;}
.ws52{word-spacing:4.440000px;}
.ws9{word-spacing:4.500000px;}
.wsd{word-spacing:4.512000px;}
.wsae{word-spacing:4.560000px;}
.wsb{word-spacing:4.620000px;}
.ws3e{word-spacing:4.680000px;}
.ws8{word-spacing:4.800000px;}
.ws40{word-spacing:4.860000px;}
.ws41{word-spacing:4.920000px;}
.wsb6{word-spacing:4.944000px;}
.ws8e{word-spacing:5.040000px;}
.ws6f{word-spacing:5.100000px;}
.wsdc{word-spacing:5.220000px;}
.ws2f{word-spacing:5.280000px;}
.ws9e{word-spacing:5.340000px;}
.wsd4{word-spacing:5.400000px;}
.ws57{word-spacing:5.424000px;}
.wsdd{word-spacing:5.460000px;}
.ws63{word-spacing:5.580000px;}
.wsd1{word-spacing:5.640000px;}
.ws5a{word-spacing:5.760000px;}
.wse{word-spacing:5.808000px;}
.ws7f{word-spacing:5.820000px;}
.wsc7{word-spacing:5.880000px;}
.ws8f{word-spacing:5.940000px;}
.ws20{word-spacing:6.120000px;}
.wsbb{word-spacing:6.180000px;}
.ws49{word-spacing:6.240000px;}
.ws83{word-spacing:6.300000px;}
.ws59{word-spacing:6.336000px;}
.ws27{word-spacing:6.360000px;}
.wse3{word-spacing:6.420000px;}
.ws2e{word-spacing:6.480000px;}
.ws24{word-spacing:6.540000px;}
.ws99{word-spacing:6.660000px;}
.ws45{word-spacing:6.720000px;}
.ws50{word-spacing:6.780000px;}
.wsf8{word-spacing:6.840000px;}
.wsaa{word-spacing:6.900000px;}
.ws17{word-spacing:6.960000px;}
.wsad{word-spacing:7.020000px;}
.wsc8{word-spacing:7.080000px;}
.wsd6{word-spacing:7.140000px;}
.ws61{word-spacing:7.200000px;}
.ws9a{word-spacing:7.500000px;}
.ws75{word-spacing:7.620000px;}
.ws65{word-spacing:7.920000px;}
.wse5{word-spacing:7.980000px;}
.ws2b{word-spacing:8.100000px;}
.wsd5{word-spacing:8.160000px;}
.wsce{word-spacing:8.220000px;}
.wsbc{word-spacing:8.280000px;}
.wsbe{word-spacing:8.700000px;}
.ws32{word-spacing:8.736000px;}
.wsbd{word-spacing:8.820000px;}
.ws33{word-spacing:8.832000px;}
.wsef{word-spacing:8.880000px;}
.wsed{word-spacing:9.060000px;}
.wse2{word-spacing:9.480000px;}
.ws18{word-spacing:9.540000px;}
.wsd8{word-spacing:9.900000px;}
.ws5b{word-spacing:10.032000px;}
.ws60{word-spacing:10.260000px;}
.ws4b{word-spacing:10.500000px;}
.wse6{word-spacing:10.512000px;}
.wse1{word-spacing:10.860000px;}
.ws7c{word-spacing:10.920000px;}
.wse0{word-spacing:11.100000px;}
.wsf1{word-spacing:11.520000px;}
.ws53{word-spacing:11.820000px;}
.wsb8{word-spacing:12.420000px;}
.ws1c{word-spacing:13.500000px;}
.wsf7{word-spacing:13.980000px;}
.wsc0{word-spacing:14.220000px;}
.wse7{word-spacing:15.060000px;}
.ws88{word-spacing:15.180000px;}
.wsf6{word-spacing:20.040000px;}
.wsb4{word-spacing:23.674464px;}
.ws71{word-spacing:26.416896px;}
.wsf0{word-spacing:35.700000px;}
.ws54{word-spacing:38.114208px;}
.wsc{word-spacing:38.561952px;}
._d{margin-left:-23.760000px;}
._c{margin-left:-21.420000px;}
._e{margin-left:-18.820200px;}
._11{margin-left:-16.020000px;}
._13{margin-left:-14.040000px;}
._f{margin-left:-11.304000px;}
._5{margin-left:-6.840000px;}
._3{margin-left:-5.040000px;}
._4{margin-left:-3.840000px;}
._1{margin-left:-2.760000px;}
._0{margin-left:-1.320000px;}
._6{width:1.200000px;}
._7{width:2.631534px;}
._8{width:3.676933px;}
._2{width:5.280000px;}
._b{width:6.300000px;}
._9{width:7.560000px;}
._a{width:8.880000px;}
._19{width:10.945800px;}
._10{width:13.560000px;}
._12{width:15.540000px;}
._15{width:17.178000px;}
._1d{width:18.840000px;}
._17{width:21.650400px;}
._1a{width:27.000000px;}
._18{width:32.520000px;}
._1b{width:34.080000px;}
._1c{width:35.820000px;}
._16{width:48.180000px;}
._14{width:63.840000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fs7{font-size:34.980000px;}
.fsb{font-size:41.776800px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:49.693267px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:62.116583px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:111.809850px;}
.fsa{font-size:196.885200px;}
.y0{bottom:0.000000px;}
.y29{bottom:14.849250px;}
.ybe{bottom:63.992100px;}
.y92{bottom:67.988100px;}
.y10e{bottom:77.456700px;}
.y91{bottom:78.392100px;}
.y119{bottom:81.452700px;}
.y90{bottom:82.388100px;}
.yf4{bottom:82.972350px;}
.y23{bottom:86.491950px;}
.yde{bottom:86.968350px;}
.y158{bottom:89.698800px;}
.y15a{bottom:91.607250px;}
.y122{bottom:91.663950px;}
.y151{bottom:91.701000px;}
.y1a0{bottom:91.706400px;}
.y8f{bottom:92.792100px;}
.y15c{bottom:93.429000px;}
.y5d{bottom:93.543300px;}
.y17f{bottom:94.988100px;}
.y10d{bottom:95.852700px;}
.y8e{bottom:96.788100px;}
.yf3{bottom:97.372350px;}
.yfb{bottom:99.992100px;}
.y22{bottom:100.891950px;}
.y1ac{bottom:102.047250px;}
.y157{bottom:104.098800px;}
.y8d{bottom:107.192100px;}
.y5c{bottom:107.943300px;}
.y159{bottom:109.607250px;}
.y121{bottom:109.663950px;}
.y19f{bottom:109.706400px;}
.y150{bottom:110.097000px;}
.y8c{bottom:111.188100px;}
.y5b{bottom:111.939300px;}
.yfa{bottom:114.392100px;}
.y21{bottom:115.291950px;}
.yf2{bottom:115.768500px;}
.y1ab{bottom:116.447250px;}
.y104{bottom:118.388100px;}
.y156{bottom:118.498800px;}
.y5a{bottom:122.343300px;}
.y1ad{bottom:122.587350px;}
.yf1{bottom:126.172500px;}
.y59{bottom:126.339300px;}
.ydd{bottom:127.437150px;}
.y10c{bottom:127.607250px;}
.y118{bottom:127.635600px;}
.y120{bottom:127.663950px;}
.y19e{bottom:127.706400px;}
.y20{bottom:129.691950px;}
.y1aa{bottom:130.847250px;}
.yf9{bottom:132.788100px;}
.y155{bottom:132.898800px;}
.y58{bottom:136.743300px;}
.yf0{bottom:140.572500px;}
.yf8{bottom:143.192100px;}
.y1f{bottom:144.091950px;}
.y1a9{bottom:145.247250px;}
.ydc{bottom:145.437150px;}
.y17e{bottom:145.550550px;}
.ybd{bottom:145.562550px;}
.y10b{bottom:145.607250px;}
.y117{bottom:145.635600px;}
.y11f{bottom:145.663950px;}
.y14f{bottom:145.678200px;}
.y19d{bottom:145.706400px;}
.y154{bottom:147.298800px;}
.y57{bottom:151.143300px;}
.yef{bottom:154.972500px;}
.y1e{bottom:158.491950px;}
.yf7{bottom:161.588100px;}
.y153{bottom:161.698800px;}
.ydb{bottom:163.437150px;}
.y17d{bottom:163.550550px;}
.y10a{bottom:163.607250px;}
.y116{bottom:163.635600px;}
.y11e{bottom:163.663950px;}
.y103{bottom:163.678050px;}
.y14e{bottom:163.678200px;}
.y19c{bottom:163.706400px;}
.y56{bottom:165.543300px;}
.yee{bottom:169.372500px;}
.yf6{bottom:171.992100px;}
.y1d{bottom:172.891950px;}
.y1a8{bottom:174.647250px;}
.y1c{bottom:176.887950px;}
.y55{bottom:179.943300px;}
.y152{bottom:180.094800px;}
.yda{bottom:181.437150px;}
.y17c{bottom:181.550550px;}
.ybc{bottom:181.590900px;}
.y8b{bottom:181.607250px;}
.y115{bottom:181.635600px;}
.y11d{bottom:181.663950px;}
.y102{bottom:181.678050px;}
.y14d{bottom:181.678200px;}
.y19b{bottom:181.706400px;}
.yed{bottom:187.768500px;}
.y1a7{bottom:189.047250px;}
.yf5{bottom:190.388100px;}
.y54{bottom:194.343300px;}
.y17b{bottom:199.550550px;}
.ybb{bottom:199.590900px;}
.y8a{bottom:199.607250px;}
.y114{bottom:199.635600px;}
.y11c{bottom:199.663950px;}
.y101{bottom:199.678050px;}
.y14c{bottom:199.678200px;}
.y19a{bottom:199.706400px;}
.yec{bottom:202.168350px;}
.y1a6{bottom:203.447250px;}
.y53{bottom:208.743300px;}
.yeb{bottom:212.572500px;}
.y82{bottom:212.739300px;}
.yd9{bottom:217.465500px;}
.y17a{bottom:217.550550px;}
.yba{bottom:217.590900px;}
.y89{bottom:217.607250px;}
.y113{bottom:217.635600px;}
.y11b{bottom:217.663950px;}
.y100{bottom:217.678050px;}
.y14b{bottom:217.678350px;}
.y199{bottom:217.706400px;}
.y1a5{bottom:217.847250px;}
.y52{bottom:223.143300px;}
.y51{bottom:227.139300px;}
.yea{bottom:230.968350px;}
.y1b{bottom:234.778800px;}
.y179{bottom:235.550550px;}
.yb9{bottom:235.590900px;}
.y88{bottom:235.607250px;}
.y112{bottom:235.635600px;}
.y11a{bottom:235.663950px;}
.yff{bottom:235.678050px;}
.y14a{bottom:235.678350px;}
.y198{bottom:235.706400px;}
.ye9{bottom:245.368350px;}
.y1a4{bottom:246.647250px;}
.y1a{bottom:252.778800px;}
.yd8{bottom:253.493850px;}
.y178{bottom:253.550550px;}
.yb8{bottom:253.590900px;}
.y87{bottom:253.607250px;}
.y111{bottom:253.635600px;}
.y81{bottom:253.663950px;}
.yfe{bottom:253.678050px;}
.y149{bottom:253.678350px;}
.y197{bottom:253.706400px;}
.y19{bottom:270.778800px;}
.yd7{bottom:271.493850px;}
.y177{bottom:271.550550px;}
.yb7{bottom:271.590900px;}
.y86{bottom:271.607250px;}
.y110{bottom:271.635600px;}
.y50{bottom:271.649700px;}
.y80{bottom:271.663950px;}
.yfd{bottom:271.678050px;}
.y148{bottom:271.678350px;}
.y196{bottom:271.706400px;}
.y1a3{bottom:275.447400px;}
.y18{bottom:288.778800px;}
.y176{bottom:289.550550px;}
.yb6{bottom:289.590900px;}
.y85{bottom:289.607250px;}
.y10f{bottom:289.635600px;}
.y4f{bottom:289.649700px;}
.y7f{bottom:289.663950px;}
.ye8{bottom:289.678050px;}
.y147{bottom:289.678350px;}
.y195{bottom:289.706400px;}
.y1a2{bottom:289.847400px;}
.y1a1{bottom:304.247400px;}
.y17{bottom:306.778800px;}
.yd6{bottom:307.522200px;}
.y175{bottom:307.550550px;}
.yb5{bottom:307.590900px;}
.y109{bottom:307.607250px;}
.y15b{bottom:307.635600px;}
.y4e{bottom:307.649700px;}
.y7e{bottom:307.663950px;}
.ye7{bottom:307.678050px;}
.y146{bottom:307.678350px;}
.y194{bottom:307.706400px;}
.y16{bottom:324.780000px;}
.yb4{bottom:325.590900px;}
.y108{bottom:325.607250px;}
.y84{bottom:325.635600px;}
.y4d{bottom:325.650900px;}
.y7d{bottom:325.663950px;}
.ye6{bottom:325.678050px;}
.y145{bottom:325.678350px;}
.y15d{bottom:325.679250px;}
.y193{bottom:325.706400px;}
.yd5{bottom:343.550550px;}
.y174{bottom:343.578900px;}
.yb3{bottom:343.590900px;}
.y107{bottom:343.607250px;}
.y83{bottom:343.635600px;}
.y7c{bottom:343.663950px;}
.ye5{bottom:343.678050px;}
.y144{bottom:343.678350px;}
.y192{bottom:343.706400px;}
.yd4{bottom:361.550550px;}
.y173{bottom:361.578900px;}
.yb2{bottom:361.590900px;}
.y106{bottom:361.607250px;}
.y4c{bottom:361.635600px;}
.y7b{bottom:361.663950px;}
.ye4{bottom:361.678050px;}
.y143{bottom:361.678350px;}
.y191{bottom:361.706400px;}
.yd3{bottom:379.550550px;}
.y172{bottom:379.578900px;}
.yb1{bottom:379.590900px;}
.y105{bottom:379.607250px;}
.y4b{bottom:379.635600px;}
.y7a{bottom:379.663950px;}
.ye3{bottom:379.678050px;}
.y142{bottom:379.678350px;}
.y190{bottom:379.706400px;}
.y15{bottom:382.830000px;}
.yd2{bottom:397.550550px;}
.y171{bottom:397.578900px;}
.yb0{bottom:397.590900px;}
.y4a{bottom:397.635600px;}
.y79{bottom:397.663950px;}
.ye2{bottom:397.678050px;}
.y141{bottom:397.678350px;}
.yfc{bottom:397.679250px;}
.y18f{bottom:397.706400px;}
.y14{bottom:400.830000px;}
.yd1{bottom:415.550550px;}
.y170{bottom:415.578900px;}
.yaf{bottom:415.590900px;}
.y49{bottom:415.635600px;}
.y78{bottom:415.663950px;}
.ye1{bottom:415.678050px;}
.y140{bottom:415.678350px;}
.y18e{bottom:415.706400px;}
.yd0{bottom:433.550550px;}
.y16f{bottom:433.578900px;}
.yae{bottom:433.590900px;}
.y48{bottom:433.635600px;}
.y77{bottom:433.663950px;}
.ye0{bottom:433.678050px;}
.y13f{bottom:433.678350px;}
.y18d{bottom:433.706400px;}
.ycf{bottom:451.550550px;}
.y16e{bottom:451.578900px;}
.yad{bottom:451.590900px;}
.y47{bottom:451.635600px;}
.y76{bottom:451.663950px;}
.y13e{bottom:451.678350px;}
.ydf{bottom:451.679250px;}
.y18c{bottom:451.706400px;}
.y13{bottom:452.845800px;}
.yce{bottom:469.550550px;}
.y16d{bottom:469.578900px;}
.yac{bottom:469.590900px;}
.y46{bottom:469.635600px;}
.y75{bottom:469.663950px;}
.y13d{bottom:469.678350px;}
.y18b{bottom:469.706400px;}
.y12{bottom:470.845800px;}
.ycd{bottom:487.550550px;}
.y16c{bottom:487.578900px;}
.yab{bottom:487.590900px;}
.y45{bottom:487.635600px;}
.y74{bottom:487.663950px;}
.y13c{bottom:487.679400px;}
.y18a{bottom:487.706400px;}
.y11{bottom:488.845800px;}
.ycc{bottom:505.550550px;}
.y16b{bottom:505.578900px;}
.yaa{bottom:505.590900px;}
.y44{bottom:505.635600px;}
.y73{bottom:505.663950px;}
.y189{bottom:505.706400px;}
.y10{bottom:506.845800px;}
.ycb{bottom:523.550550px;}
.y16a{bottom:523.578900px;}
.ya9{bottom:523.590900px;}
.y43{bottom:523.635600px;}
.y72{bottom:523.663950px;}
.y13b{bottom:523.664100px;}
.y188{bottom:523.706400px;}
.yf{bottom:524.845800px;}
.yca{bottom:541.550550px;}
.y169{bottom:541.578900px;}
.ya8{bottom:541.590900px;}
.y42{bottom:541.635600px;}
.y71{bottom:541.663950px;}
.y13a{bottom:541.664100px;}
.y187{bottom:541.707600px;}
.ye{bottom:542.845800px;}
.yc9{bottom:559.550550px;}
.y168{bottom:559.578900px;}
.ya7{bottom:559.590900px;}
.y41{bottom:559.635600px;}
.y70{bottom:559.663950px;}
.y139{bottom:559.664100px;}
.yd{bottom:560.845800px;}
.yc8{bottom:577.550550px;}
.y167{bottom:577.578900px;}
.y40{bottom:577.635600px;}
.y6f{bottom:577.663950px;}
.y138{bottom:577.664100px;}
.y186{bottom:577.692300px;}
.yc{bottom:578.845800px;}
.yc7{bottom:595.550550px;}
.y166{bottom:595.578900px;}
.ya6{bottom:595.619250px;}
.y3f{bottom:595.635600px;}
.y6e{bottom:595.663950px;}
.y137{bottom:595.664100px;}
.y185{bottom:595.693500px;}
.yb{bottom:596.845800px;}
.yc6{bottom:613.550550px;}
.y165{bottom:613.578900px;}
.ya5{bottom:613.619250px;}
.y3e{bottom:613.635600px;}
.y6d{bottom:613.663950px;}
.y136{bottom:613.664100px;}
.ya{bottom:614.845800px;}
.yc5{bottom:631.550550px;}
.y164{bottom:631.578900px;}
.ya4{bottom:631.619250px;}
.y3d{bottom:631.635600px;}
.y6c{bottom:631.663950px;}
.y135{bottom:631.664100px;}
.y184{bottom:631.678050px;}
.y9{bottom:632.845800px;}
.yc4{bottom:649.550550px;}
.ya3{bottom:649.619250px;}
.y3c{bottom:649.635600px;}
.y6b{bottom:649.663950px;}
.y134{bottom:649.664100px;}
.y183{bottom:649.678050px;}
.y8{bottom:650.845800px;}
.yc3{bottom:667.550550px;}
.y163{bottom:667.607250px;}
.ya2{bottom:667.619250px;}
.y3b{bottom:667.635600px;}
.y6a{bottom:667.663950px;}
.y133{bottom:667.664100px;}
.y182{bottom:667.678050px;}
.y162{bottom:685.607250px;}
.ya1{bottom:685.619250px;}
.y3a{bottom:685.635600px;}
.y69{bottom:685.663950px;}
.y132{bottom:685.664100px;}
.y181{bottom:685.678050px;}
.y7{bottom:702.861450px;}
.yc2{bottom:703.578900px;}
.y161{bottom:703.607250px;}
.ya0{bottom:703.619250px;}
.y39{bottom:703.635600px;}
.y68{bottom:703.663950px;}
.y131{bottom:703.664100px;}
.y180{bottom:703.679250px;}
.y6{bottom:721.513500px;}
.y160{bottom:721.607250px;}
.y9f{bottom:721.619250px;}
.y38{bottom:721.635600px;}
.y67{bottom:721.663950px;}
.y130{bottom:721.664100px;}
.yc1{bottom:739.607250px;}
.y9e{bottom:739.619250px;}
.y37{bottom:739.635600px;}
.y66{bottom:739.663950px;}
.y12f{bottom:739.664100px;}
.y5{bottom:740.165400px;}
.yc0{bottom:757.607250px;}
.y9d{bottom:757.619250px;}
.y36{bottom:757.635600px;}
.y65{bottom:757.663950px;}
.y12e{bottom:757.664100px;}
.ybf{bottom:775.607250px;}
.y9c{bottom:775.619250px;}
.y35{bottom:775.635600px;}
.y64{bottom:775.663950px;}
.y12d{bottom:775.664100px;}
.y4{bottom:778.773300px;}
.y9b{bottom:793.619250px;}
.y34{bottom:793.635600px;}
.y63{bottom:793.663950px;}
.y12c{bottom:793.664100px;}
.y3{bottom:811.173300px;}
.y9a{bottom:811.619250px;}
.y33{bottom:811.635600px;}
.y62{bottom:811.663950px;}
.y12b{bottom:811.664100px;}
.y32{bottom:829.635600px;}
.y61{bottom:829.663950px;}
.y12a{bottom:829.664100px;}
.y2{bottom:843.573450px;}
.y31{bottom:847.635600px;}
.y99{bottom:847.647600px;}
.y60{bottom:847.663950px;}
.y129{bottom:847.664100px;}
.y30{bottom:865.635600px;}
.y98{bottom:865.647600px;}
.y5f{bottom:865.663950px;}
.y128{bottom:865.664100px;}
.y15f{bottom:883.635600px;}
.y97{bottom:883.647600px;}
.y5e{bottom:883.663950px;}
.y127{bottom:883.664100px;}
.y1{bottom:884.477400px;}
.y15e{bottom:901.635600px;}
.y96{bottom:901.647600px;}
.y2f{bottom:901.663950px;}
.y126{bottom:901.664100px;}
.y95{bottom:919.647600px;}
.y2e{bottom:919.663950px;}
.y125{bottom:919.664100px;}
.y94{bottom:937.647600px;}
.y2d{bottom:937.663950px;}
.y124{bottom:937.664100px;}
.y93{bottom:955.648800px;}
.y2c{bottom:955.663950px;}
.y123{bottom:955.664100px;}
.y27{bottom:970.724400px;}
.y28{bottom:973.063500px;}
.y2a{bottom:974.030250px;}
.y26{bottom:985.124400px;}
.y25{bottom:999.524400px;}
.y2b{bottom:1011.472350px;}
.y24{bottom:1013.924400px;}
.hc{height:21.463728px;}
.h11{height:33.421440px;}
.hd{height:36.816000px;}
.h6{height:36.960000px;}
.he{height:38.263815px;}
.h13{height:44.400000px;}
.h12{height:44.940000px;}
.h9{height:45.000000px;}
.ha{height:46.020000px;}
.h7{height:46.200000px;}
.hb{height:46.809660px;}
.h8{height:47.829769px;}
.h2{height:49.500000px;}
.hf{height:49.747500px;}
.h5{height:55.440000px;}
.h3{height:81.000000px;}
.h4{height:83.857388px;}
.h10{height:157.508160px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:118.495500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.xc{left:-2.581500px;}
.x0{left:0.000000px;}
.x1{left:80.787450px;}
.x15{left:81.850350px;}
.x16{left:93.543300px;}
.x6{left:102.047250px;}
.xd{left:106.299150px;}
.x19{left:114.803100px;}
.x12{left:119.055150px;}
.x10{left:127.559100px;}
.x17{left:130.287450px;}
.x11{left:151.299150px;}
.x18{left:155.799150px;}
.x1e{left:193.535400px;}
.x4{left:239.443800px;}
.xe{left:247.741350px;}
.x7{left:299.613150px;}
.x2{left:307.261200px;}
.xa{left:350.228550px;}
.x1c{left:380.850450px;}
.x13{left:406.209300px;}
.x1f{left:430.610100px;}
.x1a{left:449.538150px;}
.x5{left:458.429400px;}
.x8{left:490.170600px;}
.x3{left:526.282500px;}
.x20{left:541.023300px;}
.x1b{left:543.028800px;}
.x14{left:547.651500px;}
.x9{left:583.661250px;}
.xb{left:593.200950px;}
.x1d{left:623.822850px;}
.xf{left:653.797050px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls3{letter-spacing:-3.975461pt;}
.ls2{letter-spacing:-3.840000pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls1{letter-spacing:-2.346667pt;}
.ls8{letter-spacing:-2.208590pt;}
.ls7{letter-spacing:-2.133333pt;}
.lsb{letter-spacing:-1.766872pt;}
.lsc{letter-spacing:-1.750091pt;}
.lsa{letter-spacing:-1.706667pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls13{letter-spacing:-1.523573pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-1.218859pt;}
.ls18{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000213pt;}
.lsd{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.198997pt;}
.ls1d{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.341333pt;}
.ls15{letter-spacing:2.752000pt;}
.ls1a{letter-spacing:3.332800pt;}
.ls11{letter-spacing:3.748267pt;}
.lse{letter-spacing:3.855467pt;}
.ls19{letter-spacing:4.773333pt;}
.ls1c{letter-spacing:10.262400pt;}
.ls12{letter-spacing:16.433195pt;}
.wsea{word-spacing:-53.333333pt;}
.ws96{word-spacing:-42.666667pt;}
.ws3{word-spacing:-30.626587pt;}
.wse9{word-spacing:-19.786667pt;}
.ws1{word-spacing:-19.253333pt;}
.ws2{word-spacing:-18.506667pt;}
.wsf3{word-spacing:-15.402667pt;}
.ws0{word-spacing:-14.933333pt;}
.wsf4{word-spacing:-14.506667pt;}
.wsf5{word-spacing:-14.080000pt;}
.wsf2{word-spacing:-12.693333pt;}
.ws16{word-spacing:-12.586667pt;}
.ws37{word-spacing:-12.480000pt;}
.wseb{word-spacing:-11.840000pt;}
.wsc3{word-spacing:-11.413333pt;}
.ws38{word-spacing:-10.325333pt;}
.ws72{word-spacing:-9.984000pt;}
.ws15{word-spacing:-7.275840pt;}
.ws5c{word-spacing:-5.752267pt;}
.wsf9{word-spacing:-4.328836pt;}
.wsec{word-spacing:-3.786667pt;}
.wsee{word-spacing:-3.573333pt;}
.wsb3{word-spacing:-2.880000pt;}
.ws1d{word-spacing:-2.773333pt;}
.wsa8{word-spacing:-2.613333pt;}
.wsc9{word-spacing:-2.560000pt;}
.wsb9{word-spacing:-2.506667pt;}
.ws44{word-spacing:-2.453333pt;}
.wsca{word-spacing:-2.400000pt;}
.ws94{word-spacing:-2.346667pt;}
.ws22{word-spacing:-2.293333pt;}
.ws95{word-spacing:-2.240000pt;}
.ws5f{word-spacing:-2.186667pt;}
.ws7d{word-spacing:-2.080000pt;}
.ws90{word-spacing:-2.026667pt;}
.ws8c{word-spacing:-1.973333pt;}
.wsa2{word-spacing:-1.877333pt;}
.ws23{word-spacing:-1.866667pt;}
.ws3b{word-spacing:-1.813333pt;}
.ws8a{word-spacing:-1.760000pt;}
.wsdf{word-spacing:-1.706667pt;}
.wsac{word-spacing:-1.653333pt;}
.wsc6{word-spacing:-1.600000pt;}
.ws79{word-spacing:-1.546667pt;}
.ws2c{word-spacing:-1.493333pt;}
.ws12{word-spacing:-1.450667pt;}
.ws91{word-spacing:-1.440000pt;}
.wsb2{word-spacing:-1.386667pt;}
.wsb5{word-spacing:-1.365333pt;}
.ws9b{word-spacing:-1.333333pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.226667pt;}
.ws30{word-spacing:-1.173333pt;}
.ws76{word-spacing:-1.120000pt;}
.ws5d{word-spacing:-1.066667pt;}
.wscd{word-spacing:-1.013333pt;}
.ws70{word-spacing:-0.960000pt;}
.ws80{word-spacing:-0.906667pt;}
.wsc5{word-spacing:-0.853333pt;}
.ws77{word-spacing:-0.800000pt;}
.wsc2{word-spacing:-0.768000pt;}
.ws98{word-spacing:-0.746667pt;}
.wsd0{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.640000pt;}
.wsc1{word-spacing:-0.597333pt;}
.wsa9{word-spacing:-0.586667pt;}
.wsa6{word-spacing:-0.554667pt;}
.ws66{word-spacing:-0.533333pt;}
.ws73{word-spacing:-0.480000pt;}
.ws6a{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.341333pt;}
.ws4e{word-spacing:-0.320000pt;}
.wsd9{word-spacing:-0.298667pt;}
.wsbf{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.160000pt;}
.ws31{word-spacing:-0.128000pt;}
.wsb0{word-spacing:-0.106667pt;}
.ws19{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws97{word-spacing:0.053333pt;}
.ws89{word-spacing:0.106667pt;}
.ws93{word-spacing:0.160000pt;}
.ws8b{word-spacing:0.213333pt;}
.ws9c{word-spacing:0.266667pt;}
.ws78{word-spacing:0.320000pt;}
.wsa5{word-spacing:0.341333pt;}
.ws2d{word-spacing:0.373333pt;}
.ws14{word-spacing:0.426667pt;}
.ws68{word-spacing:0.480000pt;}
.ws92{word-spacing:0.533333pt;}
.wsd2{word-spacing:0.586667pt;}
.ws69{word-spacing:0.640000pt;}
.ws6d{word-spacing:0.693333pt;}
.wsde{word-spacing:0.746667pt;}
.ws28{word-spacing:0.800000pt;}
.wsd7{word-spacing:0.853333pt;}
.wsdb{word-spacing:0.896000pt;}
.ws4f{word-spacing:0.906667pt;}
.ws67{word-spacing:0.960000pt;}
.wscf{word-spacing:1.013333pt;}
.wsc4{word-spacing:1.066667pt;}
.ws4d{word-spacing:1.120000pt;}
.wsaf{word-spacing:1.173333pt;}
.ws10{word-spacing:1.194667pt;}
.ws5e{word-spacing:1.226667pt;}
.ws42{word-spacing:1.280000pt;}
.wsa4{word-spacing:1.322667pt;}
.ws8d{word-spacing:1.333333pt;}
.ws86{word-spacing:1.408000pt;}
.wsb1{word-spacing:1.440000pt;}
.wsf{word-spacing:1.450667pt;}
.ws7b{word-spacing:1.493333pt;}
.ws9d{word-spacing:1.523573pt;}
.ws34{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.546667pt;}
.ws48{word-spacing:1.653333pt;}
.ws13{word-spacing:1.706667pt;}
.ws6c{word-spacing:1.760000pt;}
.wsda{word-spacing:1.792000pt;}
.ws1e{word-spacing:1.813333pt;}
.ws43{word-spacing:1.866667pt;}
.ws2a{word-spacing:1.920000pt;}
.ws1a{word-spacing:1.973333pt;}
.ws7a{word-spacing:2.026667pt;}
.ws56{word-spacing:2.048000pt;}
.wsa0{word-spacing:2.080000pt;}
.ws6{word-spacing:2.133333pt;}
.wsa3{word-spacing:2.176000pt;}
.ws84{word-spacing:2.186667pt;}
.ws7{word-spacing:2.208590pt;}
.wsab{word-spacing:2.240000pt;}
.ws87{word-spacing:2.293333pt;}
.ws35{word-spacing:2.346667pt;}
.wsb7{word-spacing:2.400000pt;}
.wsa7{word-spacing:2.432000pt;}
.ws39{word-spacing:2.453333pt;}
.wscc{word-spacing:2.506667pt;}
.ws5{word-spacing:2.560000pt;}
.ws6e{word-spacing:2.613333pt;}
.wsa{word-spacing:2.666667pt;}
.ws4a{word-spacing:2.773333pt;}
.ws74{word-spacing:2.826667pt;}
.ws4c{word-spacing:2.880000pt;}
.ws36{word-spacing:2.901333pt;}
.wsba{word-spacing:2.933333pt;}
.ws21{word-spacing:2.986667pt;}
.ws9f{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.093333pt;}
.ws1b{word-spacing:3.146667pt;}
.ws85{word-spacing:3.157333pt;}
.wse8{word-spacing:3.200000pt;}
.ws51{word-spacing:3.253333pt;}
.ws81{word-spacing:3.306667pt;}
.wse4{word-spacing:3.360000pt;}
.ws58{word-spacing:3.413333pt;}
.ws26{word-spacing:3.466667pt;}
.ws11{word-spacing:3.498667pt;}
.ws3a{word-spacing:3.520000pt;}
.ws47{word-spacing:3.573333pt;}
.ws62{word-spacing:3.626667pt;}
.wscb{word-spacing:3.680000pt;}
.ws64{word-spacing:3.733333pt;}
.ws82{word-spacing:3.786667pt;}
.wsd3{word-spacing:3.797333pt;}
.ws3d{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.893333pt;}
.ws52{word-spacing:3.946667pt;}
.ws9{word-spacing:4.000000pt;}
.wsd{word-spacing:4.010667pt;}
.wsae{word-spacing:4.053333pt;}
.wsb{word-spacing:4.106667pt;}
.ws3e{word-spacing:4.160000pt;}
.ws8{word-spacing:4.266667pt;}
.ws40{word-spacing:4.320000pt;}
.ws41{word-spacing:4.373333pt;}
.wsb6{word-spacing:4.394667pt;}
.ws8e{word-spacing:4.480000pt;}
.ws6f{word-spacing:4.533333pt;}
.wsdc{word-spacing:4.640000pt;}
.ws2f{word-spacing:4.693333pt;}
.ws9e{word-spacing:4.746667pt;}
.wsd4{word-spacing:4.800000pt;}
.ws57{word-spacing:4.821333pt;}
.wsdd{word-spacing:4.853333pt;}
.ws63{word-spacing:4.960000pt;}
.wsd1{word-spacing:5.013333pt;}
.ws5a{word-spacing:5.120000pt;}
.wse{word-spacing:5.162667pt;}
.ws7f{word-spacing:5.173333pt;}
.wsc7{word-spacing:5.226667pt;}
.ws8f{word-spacing:5.280000pt;}
.ws20{word-spacing:5.440000pt;}
.wsbb{word-spacing:5.493333pt;}
.ws49{word-spacing:5.546667pt;}
.ws83{word-spacing:5.600000pt;}
.ws59{word-spacing:5.632000pt;}
.ws27{word-spacing:5.653333pt;}
.wse3{word-spacing:5.706667pt;}
.ws2e{word-spacing:5.760000pt;}
.ws24{word-spacing:5.813333pt;}
.ws99{word-spacing:5.920000pt;}
.ws45{word-spacing:5.973333pt;}
.ws50{word-spacing:6.026667pt;}
.wsf8{word-spacing:6.080000pt;}
.wsaa{word-spacing:6.133333pt;}
.ws17{word-spacing:6.186667pt;}
.wsad{word-spacing:6.240000pt;}
.wsc8{word-spacing:6.293333pt;}
.wsd6{word-spacing:6.346667pt;}
.ws61{word-spacing:6.400000pt;}
.ws9a{word-spacing:6.666667pt;}
.ws75{word-spacing:6.773333pt;}
.ws65{word-spacing:7.040000pt;}
.wse5{word-spacing:7.093333pt;}
.ws2b{word-spacing:7.200000pt;}
.wsd5{word-spacing:7.253333pt;}
.wsce{word-spacing:7.306667pt;}
.wsbc{word-spacing:7.360000pt;}
.wsbe{word-spacing:7.733333pt;}
.ws32{word-spacing:7.765333pt;}
.wsbd{word-spacing:7.840000pt;}
.ws33{word-spacing:7.850667pt;}
.wsef{word-spacing:7.893333pt;}
.wsed{word-spacing:8.053333pt;}
.wse2{word-spacing:8.426667pt;}
.ws18{word-spacing:8.480000pt;}
.wsd8{word-spacing:8.800000pt;}
.ws5b{word-spacing:8.917333pt;}
.ws60{word-spacing:9.120000pt;}
.ws4b{word-spacing:9.333333pt;}
.wse6{word-spacing:9.344000pt;}
.wse1{word-spacing:9.653333pt;}
.ws7c{word-spacing:9.706667pt;}
.wse0{word-spacing:9.866667pt;}
.wsf1{word-spacing:10.240000pt;}
.ws53{word-spacing:10.506667pt;}
.wsb8{word-spacing:11.040000pt;}
.ws1c{word-spacing:12.000000pt;}
.wsf7{word-spacing:12.426667pt;}
.wsc0{word-spacing:12.640000pt;}
.wse7{word-spacing:13.386667pt;}
.ws88{word-spacing:13.493333pt;}
.wsf6{word-spacing:17.813333pt;}
.wsb4{word-spacing:21.043968pt;}
.ws71{word-spacing:23.481685pt;}
.wsf0{word-spacing:31.733333pt;}
.ws54{word-spacing:33.879296pt;}
.wsc{word-spacing:34.277291pt;}
._d{margin-left:-21.120000pt;}
._c{margin-left:-19.040000pt;}
._e{margin-left:-16.729067pt;}
._11{margin-left:-14.240000pt;}
._13{margin-left:-12.480000pt;}
._f{margin-left:-10.048000pt;}
._5{margin-left:-6.080000pt;}
._3{margin-left:-4.480000pt;}
._4{margin-left:-3.413333pt;}
._1{margin-left:-2.453333pt;}
._0{margin-left:-1.173333pt;}
._6{width:1.066667pt;}
._7{width:2.339141pt;}
._8{width:3.268385pt;}
._2{width:4.693333pt;}
._b{width:5.600000pt;}
._9{width:6.720000pt;}
._a{width:7.893333pt;}
._19{width:9.729600pt;}
._10{width:12.053333pt;}
._12{width:13.813333pt;}
._15{width:15.269333pt;}
._1d{width:16.746667pt;}
._17{width:19.244800pt;}
._1a{width:24.000000pt;}
._18{width:28.906667pt;}
._1b{width:30.293333pt;}
._1c{width:31.840000pt;}
._16{width:42.826667pt;}
._14{width:56.746667pt;}
.fs8{font-size:24.874667pt;}
.fs7{font-size:31.093333pt;}
.fsb{font-size:37.134933pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:44.171793pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:55.214741pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:99.386533pt;}
.fsa{font-size:175.009067pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:13.199333pt;}
.ybe{bottom:56.881867pt;}
.y92{bottom:60.433867pt;}
.y10e{bottom:68.850400pt;}
.y91{bottom:69.681867pt;}
.y119{bottom:72.402400pt;}
.y90{bottom:73.233867pt;}
.yf4{bottom:73.753200pt;}
.y23{bottom:76.881733pt;}
.yde{bottom:77.305200pt;}
.y158{bottom:79.732267pt;}
.y15a{bottom:81.428667pt;}
.y122{bottom:81.479067pt;}
.y151{bottom:81.512000pt;}
.y1a0{bottom:81.516800pt;}
.y8f{bottom:82.481867pt;}
.y15c{bottom:83.048000pt;}
.y5d{bottom:83.149600pt;}
.y17f{bottom:84.433867pt;}
.y10d{bottom:85.202400pt;}
.y8e{bottom:86.033867pt;}
.yf3{bottom:86.553200pt;}
.yfb{bottom:88.881867pt;}
.y22{bottom:89.681733pt;}
.y1ac{bottom:90.708667pt;}
.y157{bottom:92.532267pt;}
.y8d{bottom:95.281867pt;}
.y5c{bottom:95.949600pt;}
.y159{bottom:97.428667pt;}
.y121{bottom:97.479067pt;}
.y19f{bottom:97.516800pt;}
.y150{bottom:97.864000pt;}
.y8c{bottom:98.833867pt;}
.y5b{bottom:99.501600pt;}
.yfa{bottom:101.681867pt;}
.y21{bottom:102.481733pt;}
.yf2{bottom:102.905333pt;}
.y1ab{bottom:103.508667pt;}
.y104{bottom:105.233867pt;}
.y156{bottom:105.332267pt;}
.y5a{bottom:108.749600pt;}
.y1ad{bottom:108.966533pt;}
.yf1{bottom:112.153333pt;}
.y59{bottom:112.301600pt;}
.ydd{bottom:113.277467pt;}
.y10c{bottom:113.428667pt;}
.y118{bottom:113.453867pt;}
.y120{bottom:113.479067pt;}
.y19e{bottom:113.516800pt;}
.y20{bottom:115.281733pt;}
.y1aa{bottom:116.308667pt;}
.yf9{bottom:118.033867pt;}
.y155{bottom:118.132267pt;}
.y58{bottom:121.549600pt;}
.yf0{bottom:124.953333pt;}
.yf8{bottom:127.281867pt;}
.y1f{bottom:128.081733pt;}
.y1a9{bottom:129.108667pt;}
.ydc{bottom:129.277467pt;}
.y17e{bottom:129.378267pt;}
.ybd{bottom:129.388933pt;}
.y10b{bottom:129.428667pt;}
.y117{bottom:129.453867pt;}
.y11f{bottom:129.479067pt;}
.y14f{bottom:129.491733pt;}
.y19d{bottom:129.516800pt;}
.y154{bottom:130.932267pt;}
.y57{bottom:134.349600pt;}
.yef{bottom:137.753333pt;}
.y1e{bottom:140.881733pt;}
.yf7{bottom:143.633867pt;}
.y153{bottom:143.732267pt;}
.ydb{bottom:145.277467pt;}
.y17d{bottom:145.378267pt;}
.y10a{bottom:145.428667pt;}
.y116{bottom:145.453867pt;}
.y11e{bottom:145.479067pt;}
.y103{bottom:145.491600pt;}
.y14e{bottom:145.491733pt;}
.y19c{bottom:145.516800pt;}
.y56{bottom:147.149600pt;}
.yee{bottom:150.553333pt;}
.yf6{bottom:152.881867pt;}
.y1d{bottom:153.681733pt;}
.y1a8{bottom:155.242000pt;}
.y1c{bottom:157.233733pt;}
.y55{bottom:159.949600pt;}
.y152{bottom:160.084267pt;}
.yda{bottom:161.277467pt;}
.y17c{bottom:161.378267pt;}
.ybc{bottom:161.414133pt;}
.y8b{bottom:161.428667pt;}
.y115{bottom:161.453867pt;}
.y11d{bottom:161.479067pt;}
.y102{bottom:161.491600pt;}
.y14d{bottom:161.491733pt;}
.y19b{bottom:161.516800pt;}
.yed{bottom:166.905333pt;}
.y1a7{bottom:168.042000pt;}
.yf5{bottom:169.233867pt;}
.y54{bottom:172.749600pt;}
.y17b{bottom:177.378267pt;}
.ybb{bottom:177.414133pt;}
.y8a{bottom:177.428667pt;}
.y114{bottom:177.453867pt;}
.y11c{bottom:177.479067pt;}
.y101{bottom:177.491600pt;}
.y14c{bottom:177.491733pt;}
.y19a{bottom:177.516800pt;}
.yec{bottom:179.705200pt;}
.y1a6{bottom:180.842000pt;}
.y53{bottom:185.549600pt;}
.yeb{bottom:188.953333pt;}
.y82{bottom:189.101600pt;}
.yd9{bottom:193.302667pt;}
.y17a{bottom:193.378267pt;}
.yba{bottom:193.414133pt;}
.y89{bottom:193.428667pt;}
.y113{bottom:193.453867pt;}
.y11b{bottom:193.479067pt;}
.y100{bottom:193.491600pt;}
.y14b{bottom:193.491867pt;}
.y199{bottom:193.516800pt;}
.y1a5{bottom:193.642000pt;}
.y52{bottom:198.349600pt;}
.y51{bottom:201.901600pt;}
.yea{bottom:205.305200pt;}
.y1b{bottom:208.692267pt;}
.y179{bottom:209.378267pt;}
.yb9{bottom:209.414133pt;}
.y88{bottom:209.428667pt;}
.y112{bottom:209.453867pt;}
.y11a{bottom:209.479067pt;}
.yff{bottom:209.491600pt;}
.y14a{bottom:209.491867pt;}
.y198{bottom:209.516800pt;}
.ye9{bottom:218.105200pt;}
.y1a4{bottom:219.242000pt;}
.y1a{bottom:224.692267pt;}
.yd8{bottom:225.327867pt;}
.y178{bottom:225.378267pt;}
.yb8{bottom:225.414133pt;}
.y87{bottom:225.428667pt;}
.y111{bottom:225.453867pt;}
.y81{bottom:225.479067pt;}
.yfe{bottom:225.491600pt;}
.y149{bottom:225.491867pt;}
.y197{bottom:225.516800pt;}
.y19{bottom:240.692267pt;}
.yd7{bottom:241.327867pt;}
.y177{bottom:241.378267pt;}
.yb7{bottom:241.414133pt;}
.y86{bottom:241.428667pt;}
.y110{bottom:241.453867pt;}
.y50{bottom:241.466400pt;}
.y80{bottom:241.479067pt;}
.yfd{bottom:241.491600pt;}
.y148{bottom:241.491867pt;}
.y196{bottom:241.516800pt;}
.y1a3{bottom:244.842133pt;}
.y18{bottom:256.692267pt;}
.y176{bottom:257.378267pt;}
.yb6{bottom:257.414133pt;}
.y85{bottom:257.428667pt;}
.y10f{bottom:257.453867pt;}
.y4f{bottom:257.466400pt;}
.y7f{bottom:257.479067pt;}
.ye8{bottom:257.491600pt;}
.y147{bottom:257.491867pt;}
.y195{bottom:257.516800pt;}
.y1a2{bottom:257.642133pt;}
.y1a1{bottom:270.442133pt;}
.y17{bottom:272.692267pt;}
.yd6{bottom:273.353067pt;}
.y175{bottom:273.378267pt;}
.yb5{bottom:273.414133pt;}
.y109{bottom:273.428667pt;}
.y15b{bottom:273.453867pt;}
.y4e{bottom:273.466400pt;}
.y7e{bottom:273.479067pt;}
.ye7{bottom:273.491600pt;}
.y146{bottom:273.491867pt;}
.y194{bottom:273.516800pt;}
.y16{bottom:288.693333pt;}
.yb4{bottom:289.414133pt;}
.y108{bottom:289.428667pt;}
.y84{bottom:289.453867pt;}
.y4d{bottom:289.467467pt;}
.y7d{bottom:289.479067pt;}
.ye6{bottom:289.491600pt;}
.y145{bottom:289.491867pt;}
.y15d{bottom:289.492667pt;}
.y193{bottom:289.516800pt;}
.yd5{bottom:305.378267pt;}
.y174{bottom:305.403467pt;}
.yb3{bottom:305.414133pt;}
.y107{bottom:305.428667pt;}
.y83{bottom:305.453867pt;}
.y7c{bottom:305.479067pt;}
.ye5{bottom:305.491600pt;}
.y144{bottom:305.491867pt;}
.y192{bottom:305.516800pt;}
.yd4{bottom:321.378267pt;}
.y173{bottom:321.403467pt;}
.yb2{bottom:321.414133pt;}
.y106{bottom:321.428667pt;}
.y4c{bottom:321.453867pt;}
.y7b{bottom:321.479067pt;}
.ye4{bottom:321.491600pt;}
.y143{bottom:321.491867pt;}
.y191{bottom:321.516800pt;}
.yd3{bottom:337.378267pt;}
.y172{bottom:337.403467pt;}
.yb1{bottom:337.414133pt;}
.y105{bottom:337.428667pt;}
.y4b{bottom:337.453867pt;}
.y7a{bottom:337.479067pt;}
.ye3{bottom:337.491600pt;}
.y142{bottom:337.491867pt;}
.y190{bottom:337.516800pt;}
.y15{bottom:340.293333pt;}
.yd2{bottom:353.378267pt;}
.y171{bottom:353.403467pt;}
.yb0{bottom:353.414133pt;}
.y4a{bottom:353.453867pt;}
.y79{bottom:353.479067pt;}
.ye2{bottom:353.491600pt;}
.y141{bottom:353.491867pt;}
.yfc{bottom:353.492667pt;}
.y18f{bottom:353.516800pt;}
.y14{bottom:356.293333pt;}
.yd1{bottom:369.378267pt;}
.y170{bottom:369.403467pt;}
.yaf{bottom:369.414133pt;}
.y49{bottom:369.453867pt;}
.y78{bottom:369.479067pt;}
.ye1{bottom:369.491600pt;}
.y140{bottom:369.491867pt;}
.y18e{bottom:369.516800pt;}
.yd0{bottom:385.378267pt;}
.y16f{bottom:385.403467pt;}
.yae{bottom:385.414133pt;}
.y48{bottom:385.453867pt;}
.y77{bottom:385.479067pt;}
.ye0{bottom:385.491600pt;}
.y13f{bottom:385.491867pt;}
.y18d{bottom:385.516800pt;}
.ycf{bottom:401.378267pt;}
.y16e{bottom:401.403467pt;}
.yad{bottom:401.414133pt;}
.y47{bottom:401.453867pt;}
.y76{bottom:401.479067pt;}
.y13e{bottom:401.491867pt;}
.ydf{bottom:401.492667pt;}
.y18c{bottom:401.516800pt;}
.y13{bottom:402.529600pt;}
.yce{bottom:417.378267pt;}
.y16d{bottom:417.403467pt;}
.yac{bottom:417.414133pt;}
.y46{bottom:417.453867pt;}
.y75{bottom:417.479067pt;}
.y13d{bottom:417.491867pt;}
.y18b{bottom:417.516800pt;}
.y12{bottom:418.529600pt;}
.ycd{bottom:433.378267pt;}
.y16c{bottom:433.403467pt;}
.yab{bottom:433.414133pt;}
.y45{bottom:433.453867pt;}
.y74{bottom:433.479067pt;}
.y13c{bottom:433.492800pt;}
.y18a{bottom:433.516800pt;}
.y11{bottom:434.529600pt;}
.ycc{bottom:449.378267pt;}
.y16b{bottom:449.403467pt;}
.yaa{bottom:449.414133pt;}
.y44{bottom:449.453867pt;}
.y73{bottom:449.479067pt;}
.y189{bottom:449.516800pt;}
.y10{bottom:450.529600pt;}
.ycb{bottom:465.378267pt;}
.y16a{bottom:465.403467pt;}
.ya9{bottom:465.414133pt;}
.y43{bottom:465.453867pt;}
.y72{bottom:465.479067pt;}
.y13b{bottom:465.479200pt;}
.y188{bottom:465.516800pt;}
.yf{bottom:466.529600pt;}
.yca{bottom:481.378267pt;}
.y169{bottom:481.403467pt;}
.ya8{bottom:481.414133pt;}
.y42{bottom:481.453867pt;}
.y71{bottom:481.479067pt;}
.y13a{bottom:481.479200pt;}
.y187{bottom:481.517867pt;}
.ye{bottom:482.529600pt;}
.yc9{bottom:497.378267pt;}
.y168{bottom:497.403467pt;}
.ya7{bottom:497.414133pt;}
.y41{bottom:497.453867pt;}
.y70{bottom:497.479067pt;}
.y139{bottom:497.479200pt;}
.yd{bottom:498.529600pt;}
.yc8{bottom:513.378267pt;}
.y167{bottom:513.403467pt;}
.y40{bottom:513.453867pt;}
.y6f{bottom:513.479067pt;}
.y138{bottom:513.479200pt;}
.y186{bottom:513.504267pt;}
.yc{bottom:514.529600pt;}
.yc7{bottom:529.378267pt;}
.y166{bottom:529.403467pt;}
.ya6{bottom:529.439333pt;}
.y3f{bottom:529.453867pt;}
.y6e{bottom:529.479067pt;}
.y137{bottom:529.479200pt;}
.y185{bottom:529.505333pt;}
.yb{bottom:530.529600pt;}
.yc6{bottom:545.378267pt;}
.y165{bottom:545.403467pt;}
.ya5{bottom:545.439333pt;}
.y3e{bottom:545.453867pt;}
.y6d{bottom:545.479067pt;}
.y136{bottom:545.479200pt;}
.ya{bottom:546.529600pt;}
.yc5{bottom:561.378267pt;}
.y164{bottom:561.403467pt;}
.ya4{bottom:561.439333pt;}
.y3d{bottom:561.453867pt;}
.y6c{bottom:561.479067pt;}
.y135{bottom:561.479200pt;}
.y184{bottom:561.491600pt;}
.y9{bottom:562.529600pt;}
.yc4{bottom:577.378267pt;}
.ya3{bottom:577.439333pt;}
.y3c{bottom:577.453867pt;}
.y6b{bottom:577.479067pt;}
.y134{bottom:577.479200pt;}
.y183{bottom:577.491600pt;}
.y8{bottom:578.529600pt;}
.yc3{bottom:593.378267pt;}
.y163{bottom:593.428667pt;}
.ya2{bottom:593.439333pt;}
.y3b{bottom:593.453867pt;}
.y6a{bottom:593.479067pt;}
.y133{bottom:593.479200pt;}
.y182{bottom:593.491600pt;}
.y162{bottom:609.428667pt;}
.ya1{bottom:609.439333pt;}
.y3a{bottom:609.453867pt;}
.y69{bottom:609.479067pt;}
.y132{bottom:609.479200pt;}
.y181{bottom:609.491600pt;}
.y7{bottom:624.765733pt;}
.yc2{bottom:625.403467pt;}
.y161{bottom:625.428667pt;}
.ya0{bottom:625.439333pt;}
.y39{bottom:625.453867pt;}
.y68{bottom:625.479067pt;}
.y131{bottom:625.479200pt;}
.y180{bottom:625.492667pt;}
.y6{bottom:641.345333pt;}
.y160{bottom:641.428667pt;}
.y9f{bottom:641.439333pt;}
.y38{bottom:641.453867pt;}
.y67{bottom:641.479067pt;}
.y130{bottom:641.479200pt;}
.yc1{bottom:657.428667pt;}
.y9e{bottom:657.439333pt;}
.y37{bottom:657.453867pt;}
.y66{bottom:657.479067pt;}
.y12f{bottom:657.479200pt;}
.y5{bottom:657.924800pt;}
.yc0{bottom:673.428667pt;}
.y9d{bottom:673.439333pt;}
.y36{bottom:673.453867pt;}
.y65{bottom:673.479067pt;}
.y12e{bottom:673.479200pt;}
.ybf{bottom:689.428667pt;}
.y9c{bottom:689.439333pt;}
.y35{bottom:689.453867pt;}
.y64{bottom:689.479067pt;}
.y12d{bottom:689.479200pt;}
.y4{bottom:692.242933pt;}
.y9b{bottom:705.439333pt;}
.y34{bottom:705.453867pt;}
.y63{bottom:705.479067pt;}
.y12c{bottom:705.479200pt;}
.y3{bottom:721.042933pt;}
.y9a{bottom:721.439333pt;}
.y33{bottom:721.453867pt;}
.y62{bottom:721.479067pt;}
.y12b{bottom:721.479200pt;}
.y32{bottom:737.453867pt;}
.y61{bottom:737.479067pt;}
.y12a{bottom:737.479200pt;}
.y2{bottom:749.843067pt;}
.y31{bottom:753.453867pt;}
.y99{bottom:753.464533pt;}
.y60{bottom:753.479067pt;}
.y129{bottom:753.479200pt;}
.y30{bottom:769.453867pt;}
.y98{bottom:769.464533pt;}
.y5f{bottom:769.479067pt;}
.y128{bottom:769.479200pt;}
.y15f{bottom:785.453867pt;}
.y97{bottom:785.464533pt;}
.y5e{bottom:785.479067pt;}
.y127{bottom:785.479200pt;}
.y1{bottom:786.202133pt;}
.y15e{bottom:801.453867pt;}
.y96{bottom:801.464533pt;}
.y2f{bottom:801.479067pt;}
.y126{bottom:801.479200pt;}
.y95{bottom:817.464533pt;}
.y2e{bottom:817.479067pt;}
.y125{bottom:817.479200pt;}
.y94{bottom:833.464533pt;}
.y2d{bottom:833.479067pt;}
.y124{bottom:833.479200pt;}
.y93{bottom:849.465600pt;}
.y2c{bottom:849.479067pt;}
.y123{bottom:849.479200pt;}
.y27{bottom:862.866133pt;}
.y28{bottom:864.945333pt;}
.y2a{bottom:865.804667pt;}
.y26{bottom:875.666133pt;}
.y25{bottom:888.466133pt;}
.y2b{bottom:899.086533pt;}
.y24{bottom:901.266133pt;}
.hc{height:19.078869pt;}
.h11{height:29.707947pt;}
.hd{height:32.725333pt;}
.h6{height:32.853333pt;}
.he{height:34.012280pt;}
.h13{height:39.466667pt;}
.h12{height:39.946667pt;}
.h9{height:40.000000pt;}
.ha{height:40.906667pt;}
.h7{height:41.066667pt;}
.hb{height:41.608587pt;}
.h8{height:42.515350pt;}
.h2{height:44.000000pt;}
.hf{height:44.220000pt;}
.h5{height:49.280000pt;}
.h3{height:72.000000pt;}
.h4{height:74.539900pt;}
.h10{height:140.007253pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:105.329333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.xc{left:-2.294667pt;}
.x0{left:0.000000pt;}
.x1{left:71.811067pt;}
.x15{left:72.755867pt;}
.x16{left:83.149600pt;}
.x6{left:90.708667pt;}
.xd{left:94.488133pt;}
.x19{left:102.047200pt;}
.x12{left:105.826800pt;}
.x10{left:113.385867pt;}
.x17{left:115.811067pt;}
.x11{left:134.488133pt;}
.x18{left:138.488133pt;}
.x1e{left:172.031467pt;}
.x4{left:212.838933pt;}
.xe{left:220.214533pt;}
.x7{left:266.322800pt;}
.x2{left:273.121067pt;}
.xa{left:311.314267pt;}
.x1c{left:338.533733pt;}
.x13{left:361.074933pt;}
.x1f{left:382.764533pt;}
.x1a{left:399.589467pt;}
.x5{left:407.492800pt;}
.x8{left:435.707200pt;}
.x3{left:467.806667pt;}
.x20{left:480.909600pt;}
.x1b{left:482.692267pt;}
.x14{left:486.801333pt;}
.x9{left:518.810000pt;}
.xb{left:527.289733pt;}
.x1d{left:554.509200pt;}
.xf{left:581.152933pt;}
}




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