
    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_6888dc28592a694751d43fe8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_addc4989965627d97e0a290f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_993f1eb2825009aac7ecd660.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_ff83b662fadf98cc0fdc6f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_e43f63f3cbe3810e34d44742.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_dfa7e2812038245f17be89ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.483000;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_1c6db64fc8de38813d9c6953.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953000;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_5e91e61c4195c916b0fdf01e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a48d9e312ca71bdccbb4fddf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_355d1a69a40abdd9662004b8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690000;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_02b30db480b505f4e5583f62.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.714000;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_5b7032f2137f18e2a9d3dbdc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005000;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_2d3f575ea1498e0baa07a84e.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_3bd6b13dfa9af5b4b804e8b7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.027000;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.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-14.901582px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v7{vertical-align:3.402000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:23.462481px;}
.v2{vertical-align:26.399780px;}
.ls4{letter-spacing:-4.667933px;}
.ls7{letter-spacing:-0.940800px;}
.ls6{letter-spacing:-0.470400px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls5{letter-spacing:0.000034px;}
.ls8{letter-spacing:0.000053px;}
.ls9{letter-spacing:0.000070px;}
.lsb{letter-spacing:0.150130px;}
.lsc{letter-spacing:0.225194px;}
.lsd{letter-spacing:1.125972px;}
.lsa{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.ls1{letter-spacing:38.305822px;}
.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;}
}
.ws1{word-spacing:-21.216000px;}
.ws1c{word-spacing:-13.818000px;}
.ws1d{word-spacing:-13.347600px;}
.ws6b{word-spacing:-12.877200px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.wsc6{word-spacing:-12.310630px;}
.wsc5{word-spacing:-11.559982px;}
.wsc4{word-spacing:-10.659204px;}
.wsc3{word-spacing:-10.584140px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.wsb1{word-spacing:-9.855000px;}
.ws1b{word-spacing:-9.672600px;}
.wsb0{word-spacing:-9.315000px;}
.ws8{word-spacing:-9.198000px;}
.ws5{word-spacing:-6.898500px;}
.ws45{word-spacing:-6.468000px;}
.wsa2{word-spacing:-4.512000px;}
.ws7{word-spacing:-2.772000px;}
.wsc7{word-spacing:-1.876621px;}
.ws96{word-spacing:-0.588000px;}
.wsab{word-spacing:-0.176400px;}
.ws5c{word-spacing:-0.117600px;}
.ws1e{word-spacing:-0.041160px;}
.ws6{word-spacing:0.000000px;}
.wsb9{word-spacing:0.058800px;}
.ws14{word-spacing:0.117600px;}
.wsaa{word-spacing:0.235200px;}
.ws12{word-spacing:0.352800px;}
.wsb7{word-spacing:0.411600px;}
.wsbb{word-spacing:0.529200px;}
.wsba{word-spacing:0.588000px;}
.ws48{word-spacing:0.646800px;}
.ws11{word-spacing:0.823200px;}
.wsad{word-spacing:1.058400px;}
.ws15{word-spacing:1.234800px;}
.ws4b{word-spacing:1.352400px;}
.ws5f{word-spacing:1.411200px;}
.ws71{word-spacing:1.528800px;}
.ws61{word-spacing:1.587600px;}
.wsf{word-spacing:1.940400px;}
.ws7f{word-spacing:1.999200px;}
.ws30{word-spacing:2.058000px;}
.ws72{word-spacing:2.234400px;}
.ws93{word-spacing:2.410800px;}
.wsa3{word-spacing:2.469600px;}
.ws79{word-spacing:2.528400px;}
.ws3f{word-spacing:2.646000px;}
.wsb8{word-spacing:2.704800px;}
.ws6f{word-spacing:2.763600px;}
.ws73{word-spacing:3.057600px;}
.ws2d{word-spacing:3.175200px;}
.wsa8{word-spacing:3.234000px;}
.ws35{word-spacing:3.469200px;}
.ws57{word-spacing:3.586800px;}
.ws99{word-spacing:3.763200px;}
.ws5e{word-spacing:3.880800px;}
.ws80{word-spacing:3.939600px;}
.wsb3{word-spacing:3.998400px;}
.ws8a{word-spacing:4.057200px;}
.ws84{word-spacing:4.233600px;}
.ws8e{word-spacing:4.351200px;}
.ws1a{word-spacing:4.410000px;}
.ws37{word-spacing:4.468800px;}
.wsb2{word-spacing:4.586400px;}
.ws22{word-spacing:4.704000px;}
.wsae{word-spacing:4.762800px;}
.wsb6{word-spacing:4.821600px;}
.ws8c{word-spacing:4.939200px;}
.ws91{word-spacing:5.115600px;}
.ws5d{word-spacing:5.233200px;}
.wsa5{word-spacing:5.292000px;}
.ws32{word-spacing:5.350800px;}
.ws7a{word-spacing:5.409600px;}
.ws23{word-spacing:5.468400px;}
.ws69{word-spacing:5.527200px;}
.ws85{word-spacing:5.703600px;}
.ws52{word-spacing:5.762400px;}
.ws6d{word-spacing:5.821200px;}
.ws31{word-spacing:5.880000px;}
.wsc1{word-spacing:5.938800px;}
.ws70{word-spacing:5.997600px;}
.ws2e{word-spacing:6.056400px;}
.wsa6{word-spacing:6.115200px;}
.ws78{word-spacing:6.174000px;}
.ws55{word-spacing:6.232800px;}
.ws34{word-spacing:6.291600px;}
.ws59{word-spacing:6.350400px;}
.ws8f{word-spacing:6.409200px;}
.ws53{word-spacing:6.585600px;}
.wsac{word-spacing:6.703200px;}
.ws33{word-spacing:6.820800px;}
.ws10{word-spacing:6.879600px;}
.wsa{word-spacing:6.938400px;}
.ws54{word-spacing:6.997200px;}
.ws7d{word-spacing:7.056000px;}
.ws38{word-spacing:7.114800px;}
.wsa7{word-spacing:7.232400px;}
.ws49{word-spacing:7.350000px;}
.ws75{word-spacing:7.408800px;}
.ws56{word-spacing:7.467600px;}
.ws3d{word-spacing:7.526400px;}
.ws60{word-spacing:7.585200px;}
.wsb5{word-spacing:7.644000px;}
.ws58{word-spacing:7.761600px;}
.ws9b{word-spacing:7.879200px;}
.ws18{word-spacing:7.938000px;}
.wsbd{word-spacing:8.114400px;}
.wsc0{word-spacing:8.232000px;}
.ws2f{word-spacing:8.349600px;}
.wsaf{word-spacing:8.408400px;}
.ws92{word-spacing:8.702400px;}
.ws9c{word-spacing:8.820000px;}
.ws77{word-spacing:8.878800px;}
.ws88{word-spacing:9.055200px;}
.ws29{word-spacing:9.172800px;}
.ws3c{word-spacing:9.290400px;}
.ws24{word-spacing:9.466800px;}
.ws13{word-spacing:9.584400px;}
.ws8b{word-spacing:9.702000px;}
.ws3a{word-spacing:9.760800px;}
.ws4f{word-spacing:9.819600px;}
.wsbf{word-spacing:9.878400px;}
.wsbc{word-spacing:10.054800px;}
.ws76{word-spacing:10.113600px;}
.ws1f{word-spacing:10.172400px;}
.ws8d{word-spacing:10.231200px;}
.ws98{word-spacing:10.290000px;}
.ws67{word-spacing:10.407600px;}
.ws28{word-spacing:10.525200px;}
.ws9e{word-spacing:10.584000px;}
.ws41{word-spacing:10.819200px;}
.ws9a{word-spacing:10.878000px;}
.ws7b{word-spacing:11.054400px;}
.ws4e{word-spacing:11.172000px;}
.ws6e{word-spacing:11.230800px;}
.ws9d{word-spacing:11.348400px;}
.ws20{word-spacing:11.466000px;}
.ws17{word-spacing:11.583600px;}
.ws25{word-spacing:11.701200px;}
.ws36{word-spacing:11.760000px;}
.ws62{word-spacing:11.818800px;}
.ws74{word-spacing:11.995200px;}
.ws6c{word-spacing:12.171600px;}
.wsb4{word-spacing:12.465600px;}
.ws42{word-spacing:12.818400px;}
.wsd{word-spacing:12.936000px;}
.ws86{word-spacing:12.994800px;}
.ws2c{word-spacing:13.112400px;}
.ws87{word-spacing:13.230000px;}
.ws51{word-spacing:13.347600px;}
.wsa9{word-spacing:13.524000px;}
.ws46{word-spacing:13.641600px;}
.ws44{word-spacing:13.818000px;}
.ws9{word-spacing:13.876800px;}
.ws40{word-spacing:14.112000px;}
.ws5b{word-spacing:14.170800px;}
.wsc{word-spacing:14.288400px;}
.ws2a{word-spacing:14.464800px;}
.ws27{word-spacing:14.582400px;}
.ws94{word-spacing:14.700000px;}
.ws19{word-spacing:14.876400px;}
.ws2b{word-spacing:14.935200px;}
.ws21{word-spacing:14.994000px;}
.ws89{word-spacing:15.052800px;}
.ws97{word-spacing:15.229200px;}
.ws82{word-spacing:15.288000px;}
.ws95{word-spacing:15.699600px;}
.ws4a{word-spacing:15.758400px;}
.ws4c{word-spacing:15.817200px;}
.ws16{word-spacing:16.111200px;}
.ws81{word-spacing:16.346400px;}
.ws3b{word-spacing:16.522800px;}
.wse{word-spacing:16.699200px;}
.wsa0{word-spacing:16.875600px;}
.wsa1{word-spacing:17.052000px;}
.ws7c{word-spacing:17.522400px;}
.wsb{word-spacing:17.875200px;}
.ws3e{word-spacing:18.110400px;}
.ws4d{word-spacing:18.169200px;}
.ws9f{word-spacing:18.463200px;}
.ws83{word-spacing:18.639600px;}
.ws63{word-spacing:18.874800px;}
.ws90{word-spacing:18.933600px;}
.ws43{word-spacing:19.286400px;}
.ws66{word-spacing:19.345200px;}
.ws6a{word-spacing:19.521600px;}
.wsa4{word-spacing:19.580400px;}
.ws68{word-spacing:19.639200px;}
.ws50{word-spacing:19.992000px;}
.ws5a{word-spacing:20.638800px;}
.wsbe{word-spacing:20.874000px;}
.ws39{word-spacing:21.344400px;}
.ws7e{word-spacing:22.990800px;}
.ws26{word-spacing:23.402400px;}
.ws64{word-spacing:25.930800px;}
.ws47{word-spacing:26.460000px;}
.wsc2{word-spacing:28.694400px;}
.ws65{word-spacing:36.573600px;}
._13{margin-left:-33.050761px;}
._e{margin-left:-20.815200px;}
._f{margin-left:-18.407100px;}
._10{margin-left:-13.396200px;}
._16{margin-left:-7.411500px;}
._8{margin-left:-5.524500px;}
._d{margin-left:-4.187880px;}
._0{margin-left:-3.172807px;}
._6{margin-left:-2.075400px;}
._1{margin-left:-1.022400px;}
._3{width:1.650000px;}
._2{width:2.762370px;}
._7{width:4.404120px;}
._11{width:5.515440px;}
._b{width:6.541740px;}
._15{width:8.007000px;}
._a{width:9.103153px;}
._9{width:10.997880px;}
._14{width:12.705259px;}
._17{width:13.787400px;}
._5{width:15.060000px;}
._4{width:16.862390px;}
._c{width:18.380161px;}
._12{width:19.433400px;}
._19{width:22.727880px;}
._18{width:44.687880px;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:14.074549px;}
.fsb{font-size:31.500000px;}
.fse{font-size:36.000000px;}
.fs10{font-size:37.532410px;}
.fsf{font-size:39.900000px;}
.fsd{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:6.582488px;}
.y39{bottom:31.429504px;}
.y20{bottom:75.191250px;}
.y1f{bottom:87.192750px;}
.yfb{bottom:93.207000px;}
.y1e{bottom:99.194250px;}
.y190{bottom:99.342750px;}
.yd7{bottom:100.975952px;}
.y75{bottom:106.628095px;}
.ya7{bottom:106.664095px;}
.yfa{bottom:108.207000px;}
.y156{bottom:109.237953px;}
.y1d{bottom:111.195750px;}
.y18f{bottom:112.842750px;}
.y116{bottom:115.441795px;}
.y1a7{bottom:115.974000px;}
.yd6{bottom:118.968752px;}
.y155{bottom:122.737953px;}
.y1c{bottom:123.197250px;}
.yf9{bottom:123.207000px;}
.y74{bottom:124.620895px;}
.ya6{bottom:124.656895px;}
.y18e{bottom:126.342750px;}
.y115{bottom:133.470595px;}
.y1a5{bottom:133.764149px;}
.y108{bottom:134.198995px;}
.y154{bottom:136.237953px;}
.yd5{bottom:136.961552px;}
.yf8{bottom:138.207000px;}
.y18d{bottom:139.842750px;}
.y1a6{bottom:139.914000px;}
.y73{bottom:142.628095px;}
.ya5{bottom:142.649695px;}
.y114{bottom:151.463395px;}
.y1a2{bottom:151.773148px;}
.y107{bottom:152.191795px;}
.yf7{bottom:153.207000px;}
.y18c{bottom:153.342750px;}
.yd4{bottom:154.961552px;}
.y40{bottom:158.893639px;}
.y72{bottom:160.620895px;}
.ya4{bottom:160.642495px;}
.y36{bottom:164.984250px;}
.y18b{bottom:166.842750px;}
.y1a4{bottom:167.479649px;}
.y1a3{bottom:168.058205px;}
.yf6{bottom:168.207000px;}
.y1a0{bottom:168.927749px;}
.y113{bottom:169.456195px;}
.y106{bottom:170.198995px;}
.y3f{bottom:172.393639px;}
.yd3{bottom:172.961552px;}
.y153{bottom:175.241703px;}
.y71{bottom:178.620895px;}
.ya3{bottom:178.635295px;}
.y18a{bottom:180.342750px;}
.y35{bottom:182.977050px;}
.yf5{bottom:183.207000px;}
.y19f{bottom:184.824749px;}
.y1a1{bottom:185.888248px;}
.y3e{bottom:185.893639px;}
.y112{bottom:187.448995px;}
.y19d{bottom:187.776139px;}
.y105{bottom:188.191795px;}
.y189{bottom:193.842750px;}
.y152{bottom:194.737953px;}
.ya2{bottom:196.628095px;}
.yf4{bottom:198.207000px;}
.y34{bottom:200.969850px;}
.y19c{bottom:202.539139px;}
.y3d{bottom:203.893639px;}
.y19e{bottom:204.131400px;}
.y111{bottom:205.441795px;}
.y19a{bottom:205.759204px;}
.y104{bottom:206.220595px;}
.y188{bottom:207.342750px;}
.yd2{bottom:210.855161px;}
.ya1{bottom:214.620895px;}
.y70{bottom:214.635295px;}
.y3c{bottom:217.393639px;}
.y33{bottom:218.962650px;}
.y199{bottom:220.060204px;}
.y187{bottom:220.842750px;}
.y19b{bottom:221.440041px;}
.y110{bottom:223.448995px;}
.y197{bottom:223.765945px;}
.y103{bottom:224.213395px;}
.y3b{bottom:226.393639px;}
.yd1{bottom:228.847961px;}
.y151{bottom:232.237953px;}
.y6f{bottom:232.628095px;}
.y186{bottom:234.342750px;}
.y32{bottom:236.955450px;}
.y196{bottom:237.636445px;}
.y198{bottom:238.801346px;}
.y10f{bottom:241.441795px;}
.y193{bottom:241.768497px;}
.y195{bottom:241.773445px;}
.y102{bottom:242.206195px;}
.yd0{bottom:246.862361px;}
.y6e{bottom:250.620895px;}
.ya0{bottom:250.671295px;}
.y31{bottom:254.948250px;}
.y192{bottom:255.859497px;}
.y194{bottom:256.813042px;}
.y10e{bottom:259.487090px;}
.y101{bottom:260.198995px;}
.ycf{bottom:264.855161px;}
.y9f{bottom:268.664095px;}
.y6d{bottom:268.678495px;}
.y28{bottom:272.186708px;}
.y30{bottom:272.984250px;}
.y10d{bottom:277.479890px;}
.y100{bottom:278.191795px;}
.y1a8{bottom:282.343941px;}
.yce{bottom:282.855161px;}
.y9e{bottom:286.656895px;}
.y6c{bottom:286.671295px;}
.y27{bottom:290.179508px;}
.y2f{bottom:290.977050px;}
.y10c{bottom:295.472690px;}
.yff{bottom:296.191795px;}
.ycd{bottom:300.891161px;}
.y185{bottom:303.342750px;}
.y9d{bottom:304.649695px;}
.y6b{bottom:304.664095px;}
.y150{bottom:305.002353px;}
.y26{bottom:308.172308px;}
.y2e{bottom:308.969850px;}
.y10b{bottom:313.465490px;}
.ycc{bottom:318.883961px;}
.y9c{bottom:322.642495px;}
.y6a{bottom:322.656895px;}
.y14f{bottom:322.995153px;}
.y25{bottom:326.165108px;}
.y2d{bottom:326.962650px;}
.y10a{bottom:331.458290px;}
.yfe{bottom:332.198995px;}
.y184{bottom:334.842750px;}
.ycb{bottom:336.876761px;}
.y9b{bottom:340.635295px;}
.y69{bottom:340.649695px;}
.y14e{bottom:340.987953px;}
.y183{bottom:343.842750px;}
.y24{bottom:344.165108px;}
.y2c{bottom:344.955450px;}
.y109{bottom:349.451090px;}
.yfd{bottom:350.191795px;}
.yca{bottom:354.869561px;}
.y9a{bottom:358.628095px;}
.y68{bottom:358.642495px;}
.y14d{bottom:358.995153px;}
.y182{bottom:361.842750px;}
.y23{bottom:362.172308px;}
.y2b{bottom:362.948250px;}
.yfc{bottom:368.191795px;}
.y181{bottom:370.842728px;}
.yc9{bottom:372.862361px;}
.y99{bottom:376.620895px;}
.y67{bottom:376.635295px;}
.y14c{bottom:376.987953px;}
.y22{bottom:380.165108px;}
.y2a{bottom:380.981408px;}
.y180{bottom:384.342728px;}
.yc8{bottom:390.855161px;}
.y98{bottom:394.620895px;}
.y66{bottom:394.628095px;}
.y14b{bottom:394.987930px;}
.y17f{bottom:397.842728px;}
.y21{bottom:398.165085px;}
.y29{bottom:398.974208px;}
.y128{bottom:404.739761px;}
.yc7{bottom:408.855161px;}
.y17e{bottom:411.342728px;}
.y65{bottom:412.620895px;}
.y127{bottom:419.739761px;}
.y17d{bottom:424.842728px;}
.y120{bottom:425.919754px;}
.yc6{bottom:426.847961px;}
.y97{bottom:430.628095px;}
.y64{bottom:430.635295px;}
.y126{bottom:434.739761px;}
.y17c{bottom:438.342728px;}
.y11f{bottom:440.919754px;}
.yc5{bottom:444.862361px;}
.y63{bottom:448.628095px;}
.y96{bottom:448.642495px;}
.y14a{bottom:449.737930px;}
.y125{bottom:449.739761px;}
.y1b{bottom:450.815094px;}
.y17b{bottom:451.842728px;}
.y11e{bottom:455.919754px;}
.yc4{bottom:462.855161px;}
.y124{bottom:464.739761px;}
.y17a{bottom:465.342728px;}
.y62{bottom:466.620895px;}
.y95{bottom:466.635295px;}
.y149{bottom:467.737930px;}
.y11d{bottom:470.919754px;}
.y1a{bottom:473.315094px;}
.y179{bottom:478.842728px;}
.y123{bottom:479.739761px;}
.yc3{bottom:480.855161px;}
.y61{bottom:484.620895px;}
.y94{bottom:484.628095px;}
.y148{bottom:485.752330px;}
.y11c{bottom:485.919754px;}
.y19{bottom:491.315094px;}
.y178{bottom:492.342728px;}
.y122{bottom:494.739761px;}
.yc2{bottom:498.855161px;}
.y11b{bottom:500.919754px;}
.y60{bottom:502.620895px;}
.y147{bottom:503.745130px;}
.y177{bottom:505.842728px;}
.y18{bottom:509.315094px;}
.y121{bottom:509.739761px;}
.yc1{bottom:516.847961px;}
.y176{bottom:519.342728px;}
.y5f{bottom:520.620895px;}
.yf3{bottom:520.649695px;}
.y93{bottom:520.743341px;}
.y146{bottom:521.737930px;}
.y17{bottom:531.815094px;}
.yc0{bottom:534.847961px;}
.y175{bottom:537.342728px;}
.yf2{bottom:538.642495px;}
.y92{bottom:538.736141px;}
.y145{bottom:539.809930px;}
.y174{bottom:546.342773px;}
.y16{bottom:549.815094px;}
.ybf{bottom:552.862361px;}
.y5e{bottom:556.620895px;}
.yf1{bottom:556.635295px;}
.y91{bottom:556.728941px;}
.y144{bottom:557.802730px;}
.y15{bottom:567.815094px;}
.ybe{bottom:570.855161px;}
.y173{bottom:573.342773px;}
.yf0{bottom:574.628095px;}
.y5d{bottom:574.656895px;}
.y90{bottom:574.721741px;}
.y143{bottom:575.795530px;}
.y14{bottom:585.815094px;}
.y172{bottom:586.842773px;}
.ybd{bottom:588.847961px;}
.yef{bottom:592.620895px;}
.y5c{bottom:592.649695px;}
.y8f{bottom:592.714541px;}
.y142{bottom:593.788330px;}
.ybc{bottom:606.869561px;}
.y13{bottom:608.315094px;}
.yee{bottom:610.628095px;}
.y5b{bottom:610.642495px;}
.y8e{bottom:610.707341px;}
.y141{bottom:611.781130px;}
.y171{bottom:613.842773px;}
.ybb{bottom:624.862361px;}
.y12{bottom:626.315094px;}
.y170{bottom:627.342773px;}
.yed{bottom:628.620895px;}
.y5a{bottom:628.635295px;}
.y8d{bottom:628.700141px;}
.y140{bottom:629.773930px;}
.yba{bottom:642.855161px;}
.y11{bottom:644.315094px;}
.y59{bottom:646.628095px;}
.y8c{bottom:646.692941px;}
.yec{bottom:646.728941px;}
.y13f{bottom:647.766730px;}
.y16f{bottom:654.342773px;}
.yb9{bottom:660.847961px;}
.y10{bottom:662.315094px;}
.y58{bottom:664.620895px;}
.y8b{bottom:664.685741px;}
.yeb{bottom:664.721741px;}
.y13e{bottom:665.759530px;}
.y16e{bottom:667.842773px;}
.yb8{bottom:678.847961px;}
.y16d{bottom:681.342773px;}
.y57{bottom:682.635295px;}
.y8a{bottom:682.678541px;}
.yea{bottom:682.714541px;}
.y13d{bottom:683.752330px;}
.yf{bottom:684.815094px;}
.y16c{bottom:694.842773px;}
.y56{bottom:700.628095px;}
.y89{bottom:700.671341px;}
.ye9{bottom:700.707341px;}
.y13c{bottom:701.745130px;}
.ye{bottom:702.815094px;}
.yb7{bottom:716.734360px;}
.y55{bottom:718.620895px;}
.y88{bottom:718.664141px;}
.ye8{bottom:718.700141px;}
.y13b{bottom:719.737930px;}
.yd{bottom:720.815094px;}
.y16b{bottom:721.842773px;}
.yb6{bottom:734.734360px;}
.y16a{bottom:735.342773px;}
.y54{bottom:736.620895px;}
.y87{bottom:736.656941px;}
.ye7{bottom:736.692941px;}
.y13a{bottom:737.773976px;}
.yc{bottom:738.815094px;}
.y169{bottom:748.842773px;}
.yb5{bottom:752.748714px;}
.y53{bottom:754.628141px;}
.y86{bottom:754.649741px;}
.ye6{bottom:754.685741px;}
.y139{bottom:755.766776px;}
.yb{bottom:756.815094px;}
.y1ac{bottom:762.342773px;}
.y1c0{bottom:766.842773px;}
.yb4{bottom:770.741514px;}
.y52{bottom:772.620941px;}
.y85{bottom:772.642541px;}
.ye5{bottom:772.678541px;}
.y138{bottom:773.759576px;}
.ya{bottom:774.815094px;}
.y168{bottom:775.842773px;}
.y1bf{bottom:780.342773px;}
.yb3{bottom:788.734314px;}
.y167{bottom:789.342773px;}
.y84{bottom:790.635341px;}
.y51{bottom:790.649741px;}
.ye4{bottom:790.671341px;}
.y137{bottom:791.752376px;}
.y1be{bottom:793.842773px;}
.y9{bottom:797.315094px;}
.y166{bottom:802.842773px;}
.yb2{bottom:806.734314px;}
.y83{bottom:808.628141px;}
.y50{bottom:808.642541px;}
.ye3{bottom:808.664141px;}
.y136{bottom:809.745176px;}
.y165{bottom:816.342773px;}
.y11a{bottom:823.880219px;}
.y82{bottom:826.620941px;}
.y4f{bottom:826.635341px;}
.ye2{bottom:826.656941px;}
.y135{bottom:827.737976px;}
.y1bd{bottom:829.842765px;}
.y1ab{bottom:829.842773px;}
.y119{bottom:838.880219px;}
.y1bc{bottom:843.342765px;}
.y164{bottom:843.342773px;}
.y4e{bottom:844.628141px;}
.ye1{bottom:844.649741px;}
.y81{bottom:844.671341px;}
.y134{bottom:845.759576px;}
.y118{bottom:853.880219px;}
.y1bb{bottom:856.842765px;}
.y163{bottom:856.842773px;}
.y8{bottom:861.548112px;}
.y4d{bottom:862.620941px;}
.ye0{bottom:862.642541px;}
.y80{bottom:862.664141px;}
.y133{bottom:863.752376px;}
.y117{bottom:868.880219px;}
.y1ba{bottom:870.342765px;}
.y162{bottom:870.342773px;}
.y4c{bottom:880.620941px;}
.ydf{bottom:880.635341px;}
.y7f{bottom:880.656941px;}
.yb1{bottom:880.671341px;}
.y132{bottom:881.745176px;}
.y7{bottom:882.548112px;}
.y1b9{bottom:883.842765px;}
.y161{bottom:883.842773px;}
.y1b8{bottom:897.342765px;}
.y160{bottom:897.342773px;}
.yde{bottom:898.628141px;}
.y4b{bottom:898.635341px;}
.y7e{bottom:898.649741px;}
.yb0{bottom:898.664141px;}
.y131{bottom:899.737976px;}
.y6{bottom:903.552612px;}
.y1b7{bottom:910.842765px;}
.y15f{bottom:910.842773px;}
.ydd{bottom:916.620941px;}
.y4a{bottom:916.628141px;}
.y7d{bottom:916.642541px;}
.yaf{bottom:916.656941px;}
.y130{bottom:917.759576px;}
.y1b6{bottom:924.342765px;}
.y15e{bottom:924.342773px;}
.y49{bottom:934.620941px;}
.y7c{bottom:934.635341px;}
.yae{bottom:934.649741px;}
.y12f{bottom:935.752376px;}
.y1b5{bottom:937.842765px;}
.y1aa{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y1b4{bottom:951.342765px;}
.y15d{bottom:951.342773px;}
.y7b{bottom:952.628141px;}
.y48{bottom:952.635341px;}
.yad{bottom:952.642541px;}
.y12e{bottom:953.745176px;}
.y1b3{bottom:964.842765px;}
.y15c{bottom:964.842773px;}
.ydc{bottom:970.620941px;}
.y47{bottom:970.628141px;}
.yac{bottom:970.635341px;}
.y7a{bottom:970.649995px;}
.y12d{bottom:971.737976px;}
.y1b2{bottom:978.342765px;}
.y15b{bottom:978.342773px;}
.y4{bottom:978.553528px;}
.y46{bottom:988.620941px;}
.yab{bottom:988.628141px;}
.y79{bottom:988.642795px;}
.ydb{bottom:988.650132px;}
.y12c{bottom:989.737976px;}
.y1b1{bottom:991.842765px;}
.y15a{bottom:991.842773px;}
.y1b0{bottom:1005.342765px;}
.y159{bottom:1005.342773px;}
.yaa{bottom:1006.620941px;}
.y45{bottom:1006.635341px;}
.y78{bottom:1006.635595px;}
.yda{bottom:1006.642932px;}
.y12b{bottom:1007.752376px;}
.y1af{bottom:1018.842765px;}
.y1a9{bottom:1018.842773px;}
.y44{bottom:1024.628141px;}
.y77{bottom:1024.628395px;}
.yd9{bottom:1024.635732px;}
.y12a{bottom:1025.745176px;}
.y1ae{bottom:1032.342765px;}
.y158{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y37{bottom:1035.750183px;}
.y43{bottom:1042.620941px;}
.y76{bottom:1042.621195px;}
.yd8{bottom:1042.628532px;}
.y129{bottom:1043.737976px;}
.y1ad{bottom:1045.842765px;}
.y157{bottom:1045.842773px;}
.y38{bottom:1083.800995px;}
.y2{bottom:1112.297079px;}
.ya8{bottom:1126.524628px;}
.y41{bottom:1126.524719px;}
.y191{bottom:1126.920719px;}
.y1{bottom:1126.925079px;}
.ya9{bottom:1127.300079px;}
.y42{bottom:1127.304719px;}
.h24{height:10.640359px;}
.h1f{height:27.540000px;}
.h10{height:27.814500px;}
.h23{height:28.374502px;}
.h1d{height:29.988000px;}
.h21{height:30.324000px;}
.h22{height:30.523500px;}
.h1e{height:32.130000px;}
.h20{height:35.532000px;}
.hb{height:37.086000px;}
.hf{height:39.735000px;}
.h18{height:42.384000px;}
.h1c{height:42.840000px;}
.h1a{height:43.740000px;}
.h3{height:45.696000px;}
.h11{height:45.744000px;}
.h1b{height:45.814500px;}
.h19{height:46.656000px;}
.h2{height:47.232000px;}
.h17{height:47.472000px;}
.hd{height:52.262999px;}
.ha{height:52.980000px;}
.h12{height:53.654399px;}
.hc{height:55.860000px;}
.h9{height:58.320000px;}
.h8{height:61.120200px;}
.h15{height:62.504948px;}
.h16{height:62.535681px;}
.h13{height:62.564481px;}
.h14{height:62.621989px;}
.h6{height:67.194379px;}
.h7{height:67.212379px;}
.he{height:74.395176px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:238.258507px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:2.444825px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xb{left:97.039352px;}
.x18{left:107.539352px;}
.x8{left:134.921722px;}
.x4{left:270.817497px;}
.x5{left:457.092894px;}
.xd{left:466.649094px;}
.xc{left:469.088240px;}
.x15{left:475.906036px;}
.x14{left:476.938660px;}
.xe{left:479.586594px;}
.xf{left:483.529633px;}
.x13{left:487.660338px;}
.x10{left:490.386133px;}
.x11{left:493.103989px;}
.x7{left:572.474991px;}
.x16{left:602.660385px;}
.x17{left:603.814636px;}
.x12{left:660.952332px;}
.x6{left:694.929886px;}
.xa{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-13.245850pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v7{vertical-align:3.024000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:20.855538pt;}
.v2{vertical-align:23.466471pt;}
.ls4{letter-spacing:-4.149273pt;}
.ls7{letter-spacing:-0.836267pt;}
.ls6{letter-spacing:-0.418133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls5{letter-spacing:0.000030pt;}
.ls8{letter-spacing:0.000047pt;}
.ls9{letter-spacing:0.000062pt;}
.lsb{letter-spacing:0.133449pt;}
.lsc{letter-spacing:0.200173pt;}
.lsd{letter-spacing:1.000864pt;}
.lsa{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1{letter-spacing:34.049619pt;}
.ws1{word-spacing:-18.858667pt;}
.ws1c{word-spacing:-12.282667pt;}
.ws1d{word-spacing:-11.864533pt;}
.ws6b{word-spacing:-11.446400pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.wsc6{word-spacing:-10.942783pt;}
.wsc5{word-spacing:-10.275540pt;}
.wsc4{word-spacing:-9.474848pt;}
.wsc3{word-spacing:-9.408124pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.wsb1{word-spacing:-8.760000pt;}
.ws1b{word-spacing:-8.597867pt;}
.wsb0{word-spacing:-8.280000pt;}
.ws8{word-spacing:-8.176000pt;}
.ws5{word-spacing:-6.132000pt;}
.ws45{word-spacing:-5.749333pt;}
.wsa2{word-spacing:-4.010667pt;}
.ws7{word-spacing:-2.464000pt;}
.wsc7{word-spacing:-1.668107pt;}
.ws96{word-spacing:-0.522667pt;}
.wsab{word-spacing:-0.156800pt;}
.ws5c{word-spacing:-0.104533pt;}
.ws1e{word-spacing:-0.036587pt;}
.ws6{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.052267pt;}
.ws14{word-spacing:0.104533pt;}
.wsaa{word-spacing:0.209067pt;}
.ws12{word-spacing:0.313600pt;}
.wsb7{word-spacing:0.365867pt;}
.wsbb{word-spacing:0.470400pt;}
.wsba{word-spacing:0.522667pt;}
.ws48{word-spacing:0.574933pt;}
.ws11{word-spacing:0.731733pt;}
.wsad{word-spacing:0.940800pt;}
.ws15{word-spacing:1.097600pt;}
.ws4b{word-spacing:1.202133pt;}
.ws5f{word-spacing:1.254400pt;}
.ws71{word-spacing:1.358933pt;}
.ws61{word-spacing:1.411200pt;}
.wsf{word-spacing:1.724800pt;}
.ws7f{word-spacing:1.777067pt;}
.ws30{word-spacing:1.829333pt;}
.ws72{word-spacing:1.986133pt;}
.ws93{word-spacing:2.142933pt;}
.wsa3{word-spacing:2.195200pt;}
.ws79{word-spacing:2.247467pt;}
.ws3f{word-spacing:2.352000pt;}
.wsb8{word-spacing:2.404267pt;}
.ws6f{word-spacing:2.456533pt;}
.ws73{word-spacing:2.717867pt;}
.ws2d{word-spacing:2.822400pt;}
.wsa8{word-spacing:2.874667pt;}
.ws35{word-spacing:3.083733pt;}
.ws57{word-spacing:3.188267pt;}
.ws99{word-spacing:3.345067pt;}
.ws5e{word-spacing:3.449600pt;}
.ws80{word-spacing:3.501867pt;}
.wsb3{word-spacing:3.554133pt;}
.ws8a{word-spacing:3.606400pt;}
.ws84{word-spacing:3.763200pt;}
.ws8e{word-spacing:3.867733pt;}
.ws1a{word-spacing:3.920000pt;}
.ws37{word-spacing:3.972267pt;}
.wsb2{word-spacing:4.076800pt;}
.ws22{word-spacing:4.181333pt;}
.wsae{word-spacing:4.233600pt;}
.wsb6{word-spacing:4.285867pt;}
.ws8c{word-spacing:4.390400pt;}
.ws91{word-spacing:4.547200pt;}
.ws5d{word-spacing:4.651733pt;}
.wsa5{word-spacing:4.704000pt;}
.ws32{word-spacing:4.756267pt;}
.ws7a{word-spacing:4.808533pt;}
.ws23{word-spacing:4.860800pt;}
.ws69{word-spacing:4.913067pt;}
.ws85{word-spacing:5.069867pt;}
.ws52{word-spacing:5.122133pt;}
.ws6d{word-spacing:5.174400pt;}
.ws31{word-spacing:5.226667pt;}
.wsc1{word-spacing:5.278933pt;}
.ws70{word-spacing:5.331200pt;}
.ws2e{word-spacing:5.383467pt;}
.wsa6{word-spacing:5.435733pt;}
.ws78{word-spacing:5.488000pt;}
.ws55{word-spacing:5.540267pt;}
.ws34{word-spacing:5.592533pt;}
.ws59{word-spacing:5.644800pt;}
.ws8f{word-spacing:5.697067pt;}
.ws53{word-spacing:5.853867pt;}
.wsac{word-spacing:5.958400pt;}
.ws33{word-spacing:6.062933pt;}
.ws10{word-spacing:6.115200pt;}
.wsa{word-spacing:6.167467pt;}
.ws54{word-spacing:6.219733pt;}
.ws7d{word-spacing:6.272000pt;}
.ws38{word-spacing:6.324267pt;}
.wsa7{word-spacing:6.428800pt;}
.ws49{word-spacing:6.533333pt;}
.ws75{word-spacing:6.585600pt;}
.ws56{word-spacing:6.637867pt;}
.ws3d{word-spacing:6.690133pt;}
.ws60{word-spacing:6.742400pt;}
.wsb5{word-spacing:6.794667pt;}
.ws58{word-spacing:6.899200pt;}
.ws9b{word-spacing:7.003733pt;}
.ws18{word-spacing:7.056000pt;}
.wsbd{word-spacing:7.212800pt;}
.wsc0{word-spacing:7.317333pt;}
.ws2f{word-spacing:7.421867pt;}
.wsaf{word-spacing:7.474133pt;}
.ws92{word-spacing:7.735467pt;}
.ws9c{word-spacing:7.840000pt;}
.ws77{word-spacing:7.892267pt;}
.ws88{word-spacing:8.049067pt;}
.ws29{word-spacing:8.153600pt;}
.ws3c{word-spacing:8.258133pt;}
.ws24{word-spacing:8.414933pt;}
.ws13{word-spacing:8.519467pt;}
.ws8b{word-spacing:8.624000pt;}
.ws3a{word-spacing:8.676267pt;}
.ws4f{word-spacing:8.728533pt;}
.wsbf{word-spacing:8.780800pt;}
.wsbc{word-spacing:8.937600pt;}
.ws76{word-spacing:8.989867pt;}
.ws1f{word-spacing:9.042133pt;}
.ws8d{word-spacing:9.094400pt;}
.ws98{word-spacing:9.146667pt;}
.ws67{word-spacing:9.251200pt;}
.ws28{word-spacing:9.355733pt;}
.ws9e{word-spacing:9.408000pt;}
.ws41{word-spacing:9.617067pt;}
.ws9a{word-spacing:9.669333pt;}
.ws7b{word-spacing:9.826133pt;}
.ws4e{word-spacing:9.930667pt;}
.ws6e{word-spacing:9.982933pt;}
.ws9d{word-spacing:10.087467pt;}
.ws20{word-spacing:10.192000pt;}
.ws17{word-spacing:10.296533pt;}
.ws25{word-spacing:10.401067pt;}
.ws36{word-spacing:10.453333pt;}
.ws62{word-spacing:10.505600pt;}
.ws74{word-spacing:10.662400pt;}
.ws6c{word-spacing:10.819200pt;}
.wsb4{word-spacing:11.080533pt;}
.ws42{word-spacing:11.394133pt;}
.wsd{word-spacing:11.498667pt;}
.ws86{word-spacing:11.550933pt;}
.ws2c{word-spacing:11.655467pt;}
.ws87{word-spacing:11.760000pt;}
.ws51{word-spacing:11.864533pt;}
.wsa9{word-spacing:12.021333pt;}
.ws46{word-spacing:12.125867pt;}
.ws44{word-spacing:12.282667pt;}
.ws9{word-spacing:12.334933pt;}
.ws40{word-spacing:12.544000pt;}
.ws5b{word-spacing:12.596267pt;}
.wsc{word-spacing:12.700800pt;}
.ws2a{word-spacing:12.857600pt;}
.ws27{word-spacing:12.962133pt;}
.ws94{word-spacing:13.066667pt;}
.ws19{word-spacing:13.223467pt;}
.ws2b{word-spacing:13.275733pt;}
.ws21{word-spacing:13.328000pt;}
.ws89{word-spacing:13.380267pt;}
.ws97{word-spacing:13.537067pt;}
.ws82{word-spacing:13.589333pt;}
.ws95{word-spacing:13.955200pt;}
.ws4a{word-spacing:14.007467pt;}
.ws4c{word-spacing:14.059733pt;}
.ws16{word-spacing:14.321067pt;}
.ws81{word-spacing:14.530133pt;}
.ws3b{word-spacing:14.686933pt;}
.wse{word-spacing:14.843733pt;}
.wsa0{word-spacing:15.000533pt;}
.wsa1{word-spacing:15.157333pt;}
.ws7c{word-spacing:15.575467pt;}
.wsb{word-spacing:15.889067pt;}
.ws3e{word-spacing:16.098133pt;}
.ws4d{word-spacing:16.150400pt;}
.ws9f{word-spacing:16.411733pt;}
.ws83{word-spacing:16.568533pt;}
.ws63{word-spacing:16.777600pt;}
.ws90{word-spacing:16.829867pt;}
.ws43{word-spacing:17.143467pt;}
.ws66{word-spacing:17.195733pt;}
.ws6a{word-spacing:17.352533pt;}
.wsa4{word-spacing:17.404800pt;}
.ws68{word-spacing:17.457067pt;}
.ws50{word-spacing:17.770667pt;}
.ws5a{word-spacing:18.345600pt;}
.wsbe{word-spacing:18.554667pt;}
.ws39{word-spacing:18.972800pt;}
.ws7e{word-spacing:20.436267pt;}
.ws26{word-spacing:20.802133pt;}
.ws64{word-spacing:23.049600pt;}
.ws47{word-spacing:23.520000pt;}
.wsc2{word-spacing:25.506133pt;}
.ws65{word-spacing:32.509867pt;}
._13{margin-left:-29.378454pt;}
._e{margin-left:-18.502400pt;}
._f{margin-left:-16.361867pt;}
._10{margin-left:-11.907733pt;}
._16{margin-left:-6.588000pt;}
._8{margin-left:-4.910667pt;}
._d{margin-left:-3.722560pt;}
._0{margin-left:-2.820273pt;}
._6{margin-left:-1.844800pt;}
._1{margin-left:-0.908800pt;}
._3{width:1.466667pt;}
._2{width:2.455440pt;}
._7{width:3.914773pt;}
._11{width:4.902613pt;}
._b{width:5.814880pt;}
._15{width:7.117333pt;}
._a{width:8.091692pt;}
._9{width:9.775894pt;}
._14{width:11.293564pt;}
._17{width:12.255467pt;}
._5{width:13.386667pt;}
._4{width:14.988791pt;}
._c{width:16.337921pt;}
._12{width:17.274133pt;}
._19{width:20.202560pt;}
._18{width:39.722560pt;}
.fs11{font-size:12.510710pt;}
.fsb{font-size:28.000000pt;}
.fse{font-size:32.000000pt;}
.fs10{font-size:33.362142pt;}
.fsf{font-size:35.466667pt;}
.fsd{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:5.851101pt;}
.y39{bottom:27.937337pt;}
.y20{bottom:66.836667pt;}
.y1f{bottom:77.504667pt;}
.yfb{bottom:82.850667pt;}
.y1e{bottom:88.172667pt;}
.y190{bottom:88.304667pt;}
.yd7{bottom:89.756401pt;}
.y75{bottom:94.780529pt;}
.ya7{bottom:94.812529pt;}
.yfa{bottom:96.184000pt;}
.y156{bottom:97.100403pt;}
.y1d{bottom:98.840667pt;}
.y18f{bottom:100.304667pt;}
.y116{bottom:102.614929pt;}
.y1a7{bottom:103.088000pt;}
.yd6{bottom:105.750001pt;}
.y155{bottom:109.100403pt;}
.y1c{bottom:109.508667pt;}
.yf9{bottom:109.517333pt;}
.y74{bottom:110.774129pt;}
.ya6{bottom:110.806129pt;}
.y18e{bottom:112.304667pt;}
.y115{bottom:118.640529pt;}
.y1a5{bottom:118.901465pt;}
.y108{bottom:119.287996pt;}
.y154{bottom:121.100403pt;}
.yd5{bottom:121.743601pt;}
.yf8{bottom:122.850667pt;}
.y18d{bottom:124.304667pt;}
.y1a6{bottom:124.368000pt;}
.y73{bottom:126.780529pt;}
.ya5{bottom:126.799729pt;}
.y114{bottom:134.634129pt;}
.y1a2{bottom:134.909465pt;}
.y107{bottom:135.281596pt;}
.yf7{bottom:136.184000pt;}
.y18c{bottom:136.304667pt;}
.yd4{bottom:137.743601pt;}
.y40{bottom:141.238790pt;}
.y72{bottom:142.774129pt;}
.ya4{bottom:142.793329pt;}
.y36{bottom:146.652667pt;}
.y18b{bottom:148.304667pt;}
.y1a4{bottom:148.870799pt;}
.y1a3{bottom:149.385071pt;}
.yf6{bottom:149.517333pt;}
.y1a0{bottom:150.157999pt;}
.y113{bottom:150.627729pt;}
.y106{bottom:151.287996pt;}
.y3f{bottom:153.238790pt;}
.yd3{bottom:153.743601pt;}
.y153{bottom:155.770403pt;}
.y71{bottom:158.774129pt;}
.ya3{bottom:158.786929pt;}
.y18a{bottom:160.304667pt;}
.y35{bottom:162.646267pt;}
.yf5{bottom:162.850667pt;}
.y19f{bottom:164.288666pt;}
.y1a1{bottom:165.233999pt;}
.y3e{bottom:165.238790pt;}
.y112{bottom:166.621329pt;}
.y19d{bottom:166.912123pt;}
.y105{bottom:167.281596pt;}
.y189{bottom:172.304667pt;}
.y152{bottom:173.100403pt;}
.ya2{bottom:174.780529pt;}
.yf4{bottom:176.184000pt;}
.y34{bottom:178.639867pt;}
.y19c{bottom:180.034790pt;}
.y3d{bottom:181.238790pt;}
.y19e{bottom:181.450133pt;}
.y111{bottom:182.614929pt;}
.y19a{bottom:182.897070pt;}
.y104{bottom:183.307196pt;}
.y188{bottom:184.304667pt;}
.yd2{bottom:187.426810pt;}
.ya1{bottom:190.774129pt;}
.y70{bottom:190.786929pt;}
.y3c{bottom:193.238790pt;}
.y33{bottom:194.633467pt;}
.y199{bottom:195.609070pt;}
.y187{bottom:196.304667pt;}
.y19b{bottom:196.835592pt;}
.y110{bottom:198.621329pt;}
.y197{bottom:198.903062pt;}
.y103{bottom:199.300796pt;}
.y3b{bottom:201.238790pt;}
.yd1{bottom:203.420410pt;}
.y151{bottom:206.433736pt;}
.y6f{bottom:206.780529pt;}
.y186{bottom:208.304667pt;}
.y32{bottom:210.627067pt;}
.y196{bottom:211.232396pt;}
.y198{bottom:212.267863pt;}
.y10f{bottom:214.614929pt;}
.y193{bottom:214.905331pt;}
.y195{bottom:214.909729pt;}
.y102{bottom:215.294396pt;}
.yd0{bottom:219.433210pt;}
.y6e{bottom:222.774129pt;}
.ya0{bottom:222.818929pt;}
.y31{bottom:226.620667pt;}
.y192{bottom:227.430664pt;}
.y194{bottom:228.278259pt;}
.y10e{bottom:230.655191pt;}
.y101{bottom:231.287996pt;}
.ycf{bottom:235.426810pt;}
.y9f{bottom:238.812529pt;}
.y6d{bottom:238.825329pt;}
.y28{bottom:241.943740pt;}
.y30{bottom:242.652667pt;}
.y10d{bottom:246.648791pt;}
.y100{bottom:247.281596pt;}
.y1a8{bottom:250.972392pt;}
.yce{bottom:251.426810pt;}
.y9e{bottom:254.806129pt;}
.y6c{bottom:254.818929pt;}
.y27{bottom:257.937340pt;}
.y2f{bottom:258.646267pt;}
.y10c{bottom:262.642391pt;}
.yff{bottom:263.281596pt;}
.ycd{bottom:267.458810pt;}
.y185{bottom:269.638000pt;}
.y9d{bottom:270.799729pt;}
.y6b{bottom:270.812529pt;}
.y150{bottom:271.113203pt;}
.y26{bottom:273.930940pt;}
.y2e{bottom:274.639867pt;}
.y10b{bottom:278.635991pt;}
.ycc{bottom:283.452410pt;}
.y9c{bottom:286.793329pt;}
.y6a{bottom:286.806129pt;}
.y14f{bottom:287.106803pt;}
.y25{bottom:289.924540pt;}
.y2d{bottom:290.633467pt;}
.y10a{bottom:294.629591pt;}
.yfe{bottom:295.287996pt;}
.y184{bottom:297.638000pt;}
.ycb{bottom:299.446010pt;}
.y9b{bottom:302.786929pt;}
.y69{bottom:302.799729pt;}
.y14e{bottom:303.100403pt;}
.y183{bottom:305.638000pt;}
.y24{bottom:305.924540pt;}
.y2c{bottom:306.627067pt;}
.y109{bottom:310.623191pt;}
.yfd{bottom:311.281596pt;}
.yca{bottom:315.439610pt;}
.y9a{bottom:318.780529pt;}
.y68{bottom:318.793329pt;}
.y14d{bottom:319.106803pt;}
.y182{bottom:321.638000pt;}
.y23{bottom:321.930940pt;}
.y2b{bottom:322.620667pt;}
.yfc{bottom:327.281596pt;}
.y181{bottom:329.637980pt;}
.yc9{bottom:331.433210pt;}
.y99{bottom:334.774129pt;}
.y67{bottom:334.786929pt;}
.y14c{bottom:335.100403pt;}
.y22{bottom:337.924540pt;}
.y2a{bottom:338.650140pt;}
.y180{bottom:341.637980pt;}
.yc8{bottom:347.426810pt;}
.y98{bottom:350.774129pt;}
.y66{bottom:350.780529pt;}
.y14b{bottom:351.100382pt;}
.y17f{bottom:353.637980pt;}
.y21{bottom:353.924520pt;}
.y29{bottom:354.643740pt;}
.y128{bottom:359.768677pt;}
.yc7{bottom:363.426810pt;}
.y17e{bottom:365.637980pt;}
.y65{bottom:366.774129pt;}
.y127{bottom:373.102010pt;}
.y17d{bottom:377.637980pt;}
.y120{bottom:378.595337pt;}
.yc6{bottom:379.420410pt;}
.y97{bottom:382.780529pt;}
.y64{bottom:382.786929pt;}
.y126{bottom:386.435343pt;}
.y17c{bottom:389.637980pt;}
.y11f{bottom:391.928670pt;}
.yc5{bottom:395.433210pt;}
.y63{bottom:398.780529pt;}
.y96{bottom:398.793329pt;}
.y14a{bottom:399.767049pt;}
.y125{bottom:399.768677pt;}
.y1b{bottom:400.724528pt;}
.y17b{bottom:401.637980pt;}
.y11e{bottom:405.262004pt;}
.yc4{bottom:411.426810pt;}
.y124{bottom:413.102010pt;}
.y17a{bottom:413.637980pt;}
.y62{bottom:414.774129pt;}
.y95{bottom:414.786929pt;}
.y149{bottom:415.767049pt;}
.y11d{bottom:418.595337pt;}
.y1a{bottom:420.724528pt;}
.y179{bottom:425.637980pt;}
.y123{bottom:426.435343pt;}
.yc3{bottom:427.426810pt;}
.y61{bottom:430.774129pt;}
.y94{bottom:430.780529pt;}
.y148{bottom:431.779849pt;}
.y11c{bottom:431.928670pt;}
.y19{bottom:436.724528pt;}
.y178{bottom:437.637980pt;}
.y122{bottom:439.768677pt;}
.yc2{bottom:443.426810pt;}
.y11b{bottom:445.262004pt;}
.y60{bottom:446.774129pt;}
.y147{bottom:447.773449pt;}
.y177{bottom:449.637980pt;}
.y18{bottom:452.724528pt;}
.y121{bottom:453.102010pt;}
.yc1{bottom:459.420410pt;}
.y176{bottom:461.637980pt;}
.y5f{bottom:462.774129pt;}
.yf3{bottom:462.799729pt;}
.y93{bottom:462.882970pt;}
.y146{bottom:463.767049pt;}
.y17{bottom:472.724528pt;}
.yc0{bottom:475.420410pt;}
.y175{bottom:477.637980pt;}
.yf2{bottom:478.793329pt;}
.y92{bottom:478.876570pt;}
.y145{bottom:479.831049pt;}
.y174{bottom:485.638021pt;}
.y16{bottom:488.724528pt;}
.ybf{bottom:491.433210pt;}
.y5e{bottom:494.774129pt;}
.yf1{bottom:494.786929pt;}
.y91{bottom:494.870170pt;}
.y144{bottom:495.824649pt;}
.y15{bottom:504.724528pt;}
.ybe{bottom:507.426810pt;}
.y173{bottom:509.638021pt;}
.yf0{bottom:510.780529pt;}
.y5d{bottom:510.806129pt;}
.y90{bottom:510.863770pt;}
.y143{bottom:511.818249pt;}
.y14{bottom:520.724528pt;}
.y172{bottom:521.638021pt;}
.ybd{bottom:523.420410pt;}
.yef{bottom:526.774129pt;}
.y5c{bottom:526.799729pt;}
.y8f{bottom:526.857370pt;}
.y142{bottom:527.811849pt;}
.ybc{bottom:539.439610pt;}
.y13{bottom:540.724528pt;}
.yee{bottom:542.780529pt;}
.y5b{bottom:542.793329pt;}
.y8e{bottom:542.850970pt;}
.y141{bottom:543.805449pt;}
.y171{bottom:545.638021pt;}
.ybb{bottom:555.433210pt;}
.y12{bottom:556.724528pt;}
.y170{bottom:557.638021pt;}
.yed{bottom:558.774129pt;}
.y5a{bottom:558.786929pt;}
.y8d{bottom:558.844570pt;}
.y140{bottom:559.799049pt;}
.yba{bottom:571.426810pt;}
.y11{bottom:572.724528pt;}
.y59{bottom:574.780529pt;}
.y8c{bottom:574.838170pt;}
.yec{bottom:574.870170pt;}
.y13f{bottom:575.792649pt;}
.y16f{bottom:581.638021pt;}
.yb9{bottom:587.420410pt;}
.y10{bottom:588.724528pt;}
.y58{bottom:590.774129pt;}
.y8b{bottom:590.831770pt;}
.yeb{bottom:590.863770pt;}
.y13e{bottom:591.786249pt;}
.y16e{bottom:593.638021pt;}
.yb8{bottom:603.420410pt;}
.y16d{bottom:605.638021pt;}
.y57{bottom:606.786929pt;}
.y8a{bottom:606.825370pt;}
.yea{bottom:606.857370pt;}
.y13d{bottom:607.779849pt;}
.yf{bottom:608.724528pt;}
.y16c{bottom:617.638021pt;}
.y56{bottom:622.780529pt;}
.y89{bottom:622.818970pt;}
.ye9{bottom:622.850970pt;}
.y13c{bottom:623.773449pt;}
.ye{bottom:624.724528pt;}
.yb7{bottom:637.097209pt;}
.y55{bottom:638.774129pt;}
.y88{bottom:638.812570pt;}
.ye8{bottom:638.844570pt;}
.y13b{bottom:639.767049pt;}
.yd{bottom:640.724528pt;}
.y16b{bottom:641.638021pt;}
.yb6{bottom:653.097209pt;}
.y16a{bottom:653.638021pt;}
.y54{bottom:654.774129pt;}
.y87{bottom:654.806170pt;}
.ye7{bottom:654.838170pt;}
.y13a{bottom:655.799090pt;}
.yc{bottom:656.724528pt;}
.y169{bottom:665.638021pt;}
.yb5{bottom:669.109968pt;}
.y53{bottom:670.780570pt;}
.y86{bottom:670.799770pt;}
.ye6{bottom:670.831770pt;}
.y139{bottom:671.792690pt;}
.yb{bottom:672.724528pt;}
.y1ac{bottom:677.638021pt;}
.y1c0{bottom:681.638021pt;}
.yb4{bottom:685.103568pt;}
.y52{bottom:686.774170pt;}
.y85{bottom:686.793370pt;}
.ye5{bottom:686.825370pt;}
.y138{bottom:687.786290pt;}
.ya{bottom:688.724528pt;}
.y168{bottom:689.638021pt;}
.y1bf{bottom:693.638021pt;}
.yb3{bottom:701.097168pt;}
.y167{bottom:701.638021pt;}
.y84{bottom:702.786970pt;}
.y51{bottom:702.799770pt;}
.ye4{bottom:702.818970pt;}
.y137{bottom:703.779890pt;}
.y1be{bottom:705.638021pt;}
.y9{bottom:708.724528pt;}
.y166{bottom:713.638021pt;}
.yb2{bottom:717.097168pt;}
.y83{bottom:718.780570pt;}
.y50{bottom:718.793370pt;}
.ye3{bottom:718.812570pt;}
.y136{bottom:719.773490pt;}
.y165{bottom:725.638021pt;}
.y11a{bottom:732.337972pt;}
.y82{bottom:734.774170pt;}
.y4f{bottom:734.786970pt;}
.ye2{bottom:734.806170pt;}
.y135{bottom:735.767090pt;}
.y1bd{bottom:737.638013pt;}
.y1ab{bottom:737.638021pt;}
.y119{bottom:745.671305pt;}
.y1bc{bottom:749.638013pt;}
.y164{bottom:749.638021pt;}
.y4e{bottom:750.780570pt;}
.ye1{bottom:750.799770pt;}
.y81{bottom:750.818970pt;}
.y134{bottom:751.786290pt;}
.y118{bottom:759.004639pt;}
.y1bb{bottom:761.638013pt;}
.y163{bottom:761.638021pt;}
.y8{bottom:765.820544pt;}
.y4d{bottom:766.774170pt;}
.ye0{bottom:766.793370pt;}
.y80{bottom:766.812570pt;}
.y133{bottom:767.779890pt;}
.y117{bottom:772.337972pt;}
.y1ba{bottom:773.638013pt;}
.y162{bottom:773.638021pt;}
.y4c{bottom:782.774170pt;}
.ydf{bottom:782.786970pt;}
.y7f{bottom:782.806170pt;}
.yb1{bottom:782.818970pt;}
.y132{bottom:783.773490pt;}
.y7{bottom:784.487211pt;}
.y1b9{bottom:785.638013pt;}
.y161{bottom:785.638021pt;}
.y1b8{bottom:797.638013pt;}
.y160{bottom:797.638021pt;}
.yde{bottom:798.780570pt;}
.y4b{bottom:798.786970pt;}
.y7e{bottom:798.799770pt;}
.yb0{bottom:798.812570pt;}
.y131{bottom:799.767090pt;}
.y6{bottom:803.157878pt;}
.y1b7{bottom:809.638013pt;}
.y15f{bottom:809.638021pt;}
.ydd{bottom:814.774170pt;}
.y4a{bottom:814.780570pt;}
.y7d{bottom:814.793370pt;}
.yaf{bottom:814.806170pt;}
.y130{bottom:815.786290pt;}
.y1b6{bottom:821.638013pt;}
.y15e{bottom:821.638021pt;}
.y49{bottom:830.774170pt;}
.y7c{bottom:830.786970pt;}
.yae{bottom:830.799770pt;}
.y12f{bottom:831.779890pt;}
.y1b5{bottom:833.638013pt;}
.y1aa{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y1b4{bottom:845.638013pt;}
.y15d{bottom:845.638021pt;}
.y7b{bottom:846.780570pt;}
.y48{bottom:846.786970pt;}
.yad{bottom:846.793370pt;}
.y12e{bottom:847.773490pt;}
.y1b3{bottom:857.638013pt;}
.y15c{bottom:857.638021pt;}
.ydc{bottom:862.774170pt;}
.y47{bottom:862.780570pt;}
.yac{bottom:862.786970pt;}
.y7a{bottom:862.799996pt;}
.y12d{bottom:863.767090pt;}
.y1b2{bottom:869.638013pt;}
.y15b{bottom:869.638021pt;}
.y4{bottom:869.825358pt;}
.y46{bottom:878.774170pt;}
.yab{bottom:878.780570pt;}
.y79{bottom:878.793596pt;}
.ydb{bottom:878.800117pt;}
.y12c{bottom:879.767090pt;}
.y1b1{bottom:881.638013pt;}
.y15a{bottom:881.638021pt;}
.y1b0{bottom:893.638013pt;}
.y159{bottom:893.638021pt;}
.yaa{bottom:894.774170pt;}
.y45{bottom:894.786970pt;}
.y78{bottom:894.787196pt;}
.yda{bottom:894.793717pt;}
.y12b{bottom:895.779890pt;}
.y1af{bottom:905.638013pt;}
.y1a9{bottom:905.638021pt;}
.y44{bottom:910.780570pt;}
.y77{bottom:910.780796pt;}
.yd9{bottom:910.787317pt;}
.y12a{bottom:911.773490pt;}
.y1ae{bottom:917.638013pt;}
.y158{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y37{bottom:920.666829pt;}
.y43{bottom:926.774170pt;}
.y76{bottom:926.774396pt;}
.yd8{bottom:926.780917pt;}
.y129{bottom:927.767090pt;}
.y1ad{bottom:929.638013pt;}
.y157{bottom:929.638021pt;}
.y38{bottom:963.378662pt;}
.y2{bottom:988.708515pt;}
.ya8{bottom:1001.355225pt;}
.y41{bottom:1001.355306pt;}
.y191{bottom:1001.707306pt;}
.y1{bottom:1001.711182pt;}
.ya9{bottom:1002.044515pt;}
.y42{bottom:1002.048639pt;}
.h24{height:9.458097pt;}
.h1f{height:24.480000pt;}
.h10{height:24.724000pt;}
.h23{height:25.221780pt;}
.h1d{height:26.656000pt;}
.h21{height:26.954667pt;}
.h22{height:27.132000pt;}
.h1e{height:28.560000pt;}
.h20{height:31.584000pt;}
.hb{height:32.965333pt;}
.hf{height:35.320000pt;}
.h18{height:37.674667pt;}
.h1c{height:38.080000pt;}
.h1a{height:38.880000pt;}
.h3{height:40.618667pt;}
.h11{height:40.661333pt;}
.h1b{height:40.724000pt;}
.h19{height:41.472000pt;}
.h2{height:41.984000pt;}
.h17{height:42.197333pt;}
.hd{height:46.455999pt;}
.ha{height:47.093333pt;}
.h12{height:47.692799pt;}
.hc{height:49.653333pt;}
.h9{height:51.840000pt;}
.h8{height:54.329067pt;}
.h15{height:55.559954pt;}
.h16{height:55.587272pt;}
.h13{height:55.612872pt;}
.h14{height:55.663990pt;}
.h6{height:59.728337pt;}
.h7{height:59.744337pt;}
.he{height:66.129045pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:211.785339pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:2.173178pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xb{left:86.257202pt;}
.x18{left:95.590535pt;}
.x8{left:119.930420pt;}
.x4{left:240.726664pt;}
.x5{left:406.304795pt;}
.xd{left:414.799194pt;}
.xc{left:416.967325pt;}
.x15{left:423.027588pt;}
.x14{left:423.945475pt;}
.xe{left:426.299194pt;}
.xf{left:429.804118pt;}
.x13{left:433.475856pt;}
.x10{left:435.898785pt;}
.x11{left:438.314657pt;}
.x7{left:508.866659pt;}
.x16{left:535.698120pt;}
.x17{left:536.724121pt;}
.x12{left:587.513184pt;}
.x6{left:617.715454pt;}
.xa{left:669.671183pt;}
}




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