
    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_5f6a02b284b78f2ed7b083d9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_e110f6618067faa1688aedfe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_106b8a863c8fefc887993af6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_6afc05e3990f56e1445d7be8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_af15f48537d28d08f5c70809.woff')format("woff");}.ff5{font-family:ff5;line-height:1.124512;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_d7a4e51dbfa8c57f41e5de9a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.057129;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d4dd484492b01b05a0a41db6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.124512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.980000px;}
.v5{vertical-align:-13.980000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.980000px;}
.v2{vertical-align:17.106000px;}
.ls29{letter-spacing:-5.934000px;}
.ls5{letter-spacing:-5.832000px;}
.ls3e{letter-spacing:-5.727000px;}
.ls1f{letter-spacing:-4.968000px;}
.ls19{letter-spacing:-3.225000px;}
.ls21{letter-spacing:-3.174000px;}
.ls2f{letter-spacing:-3.036000px;}
.ls2e{letter-spacing:-2.898000px;}
.ls3d{letter-spacing:-2.850000px;}
.ls53{letter-spacing:-2.484000px;}
.ls4d{letter-spacing:-2.346000px;}
.ls11{letter-spacing:-2.280000px;}
.ls28{letter-spacing:-2.277000px;}
.ls4e{letter-spacing:-2.208000px;}
.ls54{letter-spacing:-2.139000px;}
.ls5c{letter-spacing:-2.070000px;}
.ls62{letter-spacing:-2.001000px;}
.ls4{letter-spacing:-1.944000px;}
.ls2c{letter-spacing:-1.932000px;}
.lsb{letter-spacing:-1.920000px;}
.ls2a{letter-spacing:-1.794000px;}
.ls6{letter-spacing:-1.764000px;}
.ls4f{letter-spacing:-1.725000px;}
.ls41{letter-spacing:-1.656000px;}
.ls60{letter-spacing:-1.518000px;}
.ls1e{letter-spacing:-1.449000px;}
.ls6c{letter-spacing:-1.386000px;}
.ls1d{letter-spacing:-1.380000px;}
.ls22{letter-spacing:-1.311000px;}
.ls7d{letter-spacing:-1.260000px;}
.ls23{letter-spacing:-1.242000px;}
.ls84{letter-spacing:-1.200000px;}
.ls37{letter-spacing:-1.173000px;}
.ls40{letter-spacing:-1.080000px;}
.ls73{letter-spacing:-1.071000px;}
.ls43{letter-spacing:-1.035000px;}
.ls7e{letter-spacing:-1.008000px;}
.ls55{letter-spacing:-0.966000px;}
.ls79{letter-spacing:-0.945000px;}
.ls59{letter-spacing:-0.900000px;}
.ls56{letter-spacing:-0.897000px;}
.ls8{letter-spacing:-0.840000px;}
.ls26{letter-spacing:-0.828000px;}
.ls77{letter-spacing:-0.819000px;}
.ls3a{letter-spacing:-0.810000px;}
.ls88{letter-spacing:-0.780000px;}
.ls1c{letter-spacing:-0.759000px;}
.lsa{letter-spacing:-0.720000px;}
.ls75{letter-spacing:-0.693000px;}
.ls27{letter-spacing:-0.690000px;}
.ls72{letter-spacing:-0.630000px;}
.ls34{letter-spacing:-0.621000px;}
.ls86{letter-spacing:-0.600000px;}
.ls63{letter-spacing:-0.552000px;}
.ls38{letter-spacing:-0.540000px;}
.ls7a{letter-spacing:-0.504000px;}
.ls2d{letter-spacing:-0.483000px;}
.ls5a{letter-spacing:-0.480000px;}
.ls39{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.420000px;}
.ls65{letter-spacing:-0.414000px;}
.ls31{letter-spacing:-0.378000px;}
.ls3{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.345000px;}
.ls6d{letter-spacing:-0.315000px;}
.lsd{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.138000px;}
.ls67{letter-spacing:-0.069000px;}
.ls78{letter-spacing:-0.063000px;}
.ls5b{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.004500px;}
.ls16{letter-spacing:0.087690px;}
.ls50{letter-spacing:0.162000px;}
.ls81{letter-spacing:0.450000px;}
.ls30{letter-spacing:0.621000px;}
.ls48{letter-spacing:0.675000px;}
.ls68{letter-spacing:0.690000px;}
.ls20{letter-spacing:0.759000px;}
.ls42{letter-spacing:0.828000px;}
.ls49{letter-spacing:0.900000px;}
.ls64{letter-spacing:0.966000px;}
.ls25{letter-spacing:1.104000px;}
.ls6e{letter-spacing:1.134000px;}
.ls87{letter-spacing:1.140000px;}
.ls35{letter-spacing:1.173000px;}
.ls7f{letter-spacing:1.197000px;}
.ls3c{letter-spacing:1.210500px;}
.ls12{letter-spacing:1.259280px;}
.ls1b{letter-spacing:1.344000px;}
.ls17{letter-spacing:1.449000px;}
.ls2b{letter-spacing:1.587000px;}
.ls57{letter-spacing:1.725000px;}
.ls3f{letter-spacing:1.794000px;}
.ls4c{letter-spacing:1.863000px;}
.ls9{letter-spacing:1.920000px;}
.ls66{letter-spacing:2.032500px;}
.ls18{letter-spacing:2.400000px;}
.ls15{letter-spacing:3.450000px;}
.ls74{letter-spacing:3.465000px;}
.ls61{letter-spacing:3.588000px;}
.ls52{letter-spacing:3.657000px;}
.ls13{letter-spacing:3.696000px;}
.lse{letter-spacing:4.200000px;}
.ls83{letter-spacing:4.260000px;}
.ls85{letter-spacing:4.740000px;}
.ls5f{letter-spacing:5.382000px;}
.ls7{letter-spacing:5.760000px;}
.lsf{letter-spacing:5.880000px;}
.ls76{letter-spacing:5.985000px;}
.ls1a{letter-spacing:6.000000px;}
.ls6f{letter-spacing:6.111000px;}
.ls33{letter-spacing:6.272100px;}
.ls71{letter-spacing:6.300000px;}
.ls44{letter-spacing:6.417000px;}
.ls7c{letter-spacing:6.426000px;}
.ls2{letter-spacing:7.260000px;}
.ls45{letter-spacing:7.314000px;}
.ls70{letter-spacing:7.497000px;}
.ls69{letter-spacing:8.004000px;}
.ls7b{letter-spacing:8.190000px;}
.ls82{letter-spacing:8.640000px;}
.ls6b{letter-spacing:8.820000px;}
.ls5e{letter-spacing:9.177000px;}
.ls47{letter-spacing:504.784200px;}
.ls80{letter-spacing:504.986400px;}
.ls5d{letter-spacing:505.421400px;}
.ls6a{letter-spacing:505.451400px;}
.ls51{letter-spacing:505.721400px;}
.ls3b{letter-spacing:514.221000px;}
.ls14{letter-spacing:514.588800px;}
.ls46{letter-spacing:990.024000px;}
.ls58{letter-spacing:990.522000px;}
.ls0{letter-spacing:993.144000px;}
.ls32{letter-spacing:997.194000px;}
.ls4a{letter-spacing:999.174000px;}
.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;}
}
.ws75{word-spacing:-26.523000px;}
.ws8c{word-spacing:-25.500000px;}
.ws6{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws47{word-spacing:-21.750000px;}
.ws8b{word-spacing:-21.525000px;}
.ws3e{word-spacing:-21.183000px;}
.ws5a{word-spacing:-21.114000px;}
.ws68{word-spacing:-21.075000px;}
.ws1{word-spacing:-20.844000px;}
.ws54{word-spacing:-20.775000px;}
.ws1c{word-spacing:-19.389000px;}
.ws2{word-spacing:-18.984000px;}
.ws59{word-spacing:-18.906000px;}
.ws1d{word-spacing:-18.699000px;}
.ws3d{word-spacing:-18.225000px;}
.ws49{word-spacing:-18.078000px;}
.ws14{word-spacing:-17.850000px;}
.ws80{word-spacing:-17.325000px;}
.ws1a{word-spacing:-17.043000px;}
.ws6b{word-spacing:-16.905000px;}
.ws1b{word-spacing:-16.698000px;}
.ws0{word-spacing:-16.500000px;}
.ws6a{word-spacing:-16.491000px;}
.ws1e{word-spacing:-16.353000px;}
.ws57{word-spacing:-16.215000px;}
.ws5e{word-spacing:-16.146000px;}
.ws4d{word-spacing:-15.870000px;}
.ws19{word-spacing:-15.801000px;}
.ws4c{word-spacing:-15.732000px;}
.ws16{word-spacing:-15.663000px;}
.ws17{word-spacing:-15.594000px;}
.ws40{word-spacing:-15.387000px;}
.ws4b{word-spacing:-15.318000px;}
.ws58{word-spacing:-15.249000px;}
.ws76{word-spacing:-15.246000px;}
.ws1f{word-spacing:-15.111000px;}
.ws69{word-spacing:-15.042000px;}
.ws56{word-spacing:-14.904000px;}
.ws64{word-spacing:-14.760000px;}
.ws7e{word-spacing:-14.742000px;}
.ws4a{word-spacing:-14.697000px;}
.ws7f{word-spacing:-14.616000px;}
.ws55{word-spacing:-14.559000px;}
.ws77{word-spacing:-14.490000px;}
.ws7{word-spacing:-14.400000px;}
.ws63{word-spacing:-14.340000px;}
.ws5{word-spacing:-14.100000px;}
.ws4{word-spacing:-13.980000px;}
.ws65{word-spacing:-13.920000px;}
.ws3f{word-spacing:-13.740000px;}
.ws4e{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.146000px;}
.ws4f{word-spacing:-12.906000px;}
.ws18{word-spacing:-11.303787px;}
.ws8{word-spacing:-11.088660px;}
.ws86{word-spacing:-8.190000px;}
.ws74{word-spacing:-8.004000px;}
.ws7b{word-spacing:-7.497000px;}
.ws46{word-spacing:-7.314000px;}
.wsa{word-spacing:-7.260000px;}
.ws87{word-spacing:-6.426000px;}
.ws45{word-spacing:-6.417000px;}
.ws7c{word-spacing:-6.300000px;}
.ws7a{word-spacing:-6.111000px;}
.ws21{word-spacing:-6.000000px;}
.ws82{word-spacing:-5.985000px;}
.ws6c{word-spacing:-5.382000px;}
.ws8f{word-spacing:-4.740000px;}
.ws8d{word-spacing:-4.260000px;}
.ws10{word-spacing:-4.200000px;}
.ws13{word-spacing:-3.696000px;}
.ws6e{word-spacing:-3.588000px;}
.ws20{word-spacing:-2.400000px;}
.wsc{word-spacing:-1.920000px;}
.ws50{word-spacing:-1.863000px;}
.ws72{word-spacing:-1.794000px;}
.ws2d{word-spacing:-1.587000px;}
.ws8a{word-spacing:-1.197000px;}
.ws37{word-spacing:-1.173000px;}
.ws91{word-spacing:-1.140000px;}
.ws79{word-spacing:-1.134000px;}
.ws27{word-spacing:-1.104000px;}
.ws6f{word-spacing:-0.966000px;}
.ws48{word-spacing:-0.900000px;}
.ws43{word-spacing:-0.828000px;}
.ws24{word-spacing:-0.759000px;}
.ws73{word-spacing:-0.690000px;}
.ws32{word-spacing:-0.621000px;}
.ws9{word-spacing:0.000000px;}
.ws84{word-spacing:0.063000px;}
.ws71{word-spacing:0.069000px;}
.ws38{word-spacing:0.138000px;}
.wse{word-spacing:0.240000px;}
.wsf{word-spacing:0.300000px;}
.ws42{word-spacing:0.345000px;}
.ws33{word-spacing:0.378000px;}
.ws70{word-spacing:0.414000px;}
.ws12{word-spacing:0.420000px;}
.ws3b{word-spacing:0.432000px;}
.ws2e{word-spacing:0.483000px;}
.ws85{word-spacing:0.504000px;}
.ws3a{word-spacing:0.540000px;}
.ws90{word-spacing:0.600000px;}
.ws35{word-spacing:0.621000px;}
.ws7d{word-spacing:0.630000px;}
.ws34{word-spacing:0.660000px;}
.ws36{word-spacing:0.690000px;}
.ws81{word-spacing:0.693000px;}
.ws22{word-spacing:0.759000px;}
.ws92{word-spacing:0.780000px;}
.ws3c{word-spacing:0.810000px;}
.ws83{word-spacing:0.819000px;}
.ws28{word-spacing:0.828000px;}
.ws5d{word-spacing:0.897000px;}
.ws5c{word-spacing:0.966000px;}
.ws89{word-spacing:1.008000px;}
.ws44{word-spacing:1.035000px;}
.ws39{word-spacing:1.173000px;}
.ws8e{word-spacing:1.200000px;}
.ws30{word-spacing:1.242000px;}
.ws88{word-spacing:1.260000px;}
.ws26{word-spacing:1.311000px;}
.ws2b{word-spacing:1.380000px;}
.ws78{word-spacing:1.386000px;}
.ws66{word-spacing:1.449000px;}
.ws6d{word-spacing:1.518000px;}
.ws2c{word-spacing:1.794000px;}
.wsd{word-spacing:1.920000px;}
.ws52{word-spacing:1.932000px;}
.wsb{word-spacing:1.944000px;}
.ws67{word-spacing:2.070000px;}
.ws51{word-spacing:2.208000px;}
.ws29{word-spacing:2.277000px;}
.ws11{word-spacing:2.280000px;}
.ws5b{word-spacing:2.346000px;}
.ws2f{word-spacing:2.898000px;}
.ws31{word-spacing:3.036000px;}
.ws25{word-spacing:3.174000px;}
.ws23{word-spacing:4.968000px;}
.ws41{word-spacing:5.727000px;}
.ws2a{word-spacing:5.934000px;}
.ws53{word-spacing:8.153838px;}
.ws60{word-spacing:506.880000px;}
.ws61{word-spacing:512.694000px;}
.ws62{word-spacing:520.452000px;}
.ws5f{word-spacing:671.712000px;}
._1c{margin-left:-19.371000px;}
._20{margin-left:-11.492700px;}
._9{margin-left:-10.141200px;}
._c{margin-left:-8.826000px;}
._5{margin-left:-7.776000px;}
._18{margin-left:-6.705000px;}
._d{margin-left:-5.672700px;}
._e{margin-left:-4.603200px;}
._8{margin-left:-3.592200px;}
._b{margin-left:-2.536800px;}
._3{margin-left:-1.254000px;}
._2{width:1.001700px;}
._1{width:2.400000px;}
._a{width:4.193100px;}
._4{width:5.244000px;}
._16{width:6.251400px;}
._6{width:7.260000px;}
._7{width:9.036000px;}
._10{width:10.341600px;}
._17{width:11.475600px;}
._1d{width:12.528300px;}
._1e{width:13.718700px;}
._12{width:15.333900px;}
._13{width:17.019000px;}
._15{width:20.424000px;}
._1f{width:23.670000px;}
._19{width:35.291322px;}
._14{width:43.445160px;}
._f{width:71.400000px;}
._1a{width:73.259100px;}
._11{width:253.008000px;}
._1b{width:275.365500px;}
._0{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.ye4{bottom:106.165500px;}
.y126{bottom:106.251750px;}
.y66{bottom:106.290000px;}
.y86{bottom:106.296450px;}
.y1d{bottom:106.304100px;}
.y41{bottom:109.294800px;}
.y87{bottom:111.942750px;}
.y88{bottom:111.947550px;}
.ybd{bottom:116.379000px;}
.y65{bottom:123.543000px;}
.y85{bottom:126.544950px;}
.ye3{bottom:126.589500px;}
.y125{bottom:127.530000px;}
.ya0{bottom:127.798200px;}
.y1c{bottom:128.144100px;}
.ybc{bottom:136.630500px;}
.y64{bottom:140.796000px;}
.ye2{bottom:147.013500px;}
.y9f{bottom:148.046700px;}
.yad{bottom:150.735000px;}
.y108{bottom:153.273750px;}
.ybb{bottom:156.882000px;}
.y124{bottom:157.313250px;}
.y63{bottom:161.044500px;}
.y9e{bottom:166.554000px;}
.ye1{bottom:167.437500px;}
.y9d{bottom:169.549500px;}
.yac{bottom:170.986500px;}
.y1b{bottom:171.268500px;}
.y84{bottom:172.341000px;}
.y107{bottom:174.094500px;}
.y40{bottom:175.344000px;}
.yba{bottom:177.133500px;}
.y123{bottom:178.591500px;}
.ye0{bottom:187.861500px;}
.y9c{bottom:191.050500px;}
.yab{bottom:191.238000px;}
.y1a{bottom:191.608500px;}
.y83{bottom:192.592500px;}
.y106{bottom:194.915250px;}
.y3f{bottom:197.389500px;}
.y122{bottom:199.869750px;}
.y62{bottom:204.801000px;}
.ydf{bottom:208.285500px;}
.yaa{bottom:211.489500px;}
.y19{bottom:211.948500px;}
.y82{bottom:212.844000px;}
.y105{bottom:215.736000px;}
.y3e{bottom:219.333000px;}
.yb9{bottom:225.442500px;}
.y61{bottom:225.949500px;}
.yde{bottom:228.709500px;}
.y121{bottom:229.653000px;}
.ya9{bottom:231.741000px;}
.y18{bottom:232.288500px;}
.y81{bottom:233.095500px;}
.y104{bottom:236.556750px;}
.y3d{bottom:241.378500px;}
.y60{bottom:247.098000px;}
.yb8{bottom:248.167500px;}
.ydd{bottom:249.133500px;}
.ya8{bottom:251.992500px;}
.y9b{bottom:251.998500px;}
.y17{bottom:252.627000px;}
.y80{bottom:253.347000px;}
.y15b{bottom:255.829500px;}
.y103{bottom:257.377500px;}
.y120{bottom:259.436250px;}
.y3c{bottom:263.424000px;}
.y5f{bottom:268.246500px;}
.ydc{bottom:269.557500px;}
.yb7{bottom:270.892500px;}
.ya7{bottom:272.244000px;}
.y9a{bottom:272.250000px;}
.y16{bottom:272.967000px;}
.y7f{bottom:273.598500px;}
.y15a{bottom:276.079500px;}
.y102{bottom:278.198250px;}
.y3b{bottom:285.469500px;}
.y11f{bottom:289.219500px;}
.y5e{bottom:289.395000px;}
.ydb{bottom:289.981500px;}
.ya6{bottom:292.495500px;}
.y99{bottom:292.501500px;}
.yb6{bottom:293.617500px;}
.y7e{bottom:293.850000px;}
.y13f{bottom:295.276500px;}
.y159{bottom:296.329500px;}
.y101{bottom:299.019000px;}
.y15{bottom:306.072000px;}
.y3a{bottom:307.515000px;}
.yda{bottom:310.405500px;}
.y11e{bottom:310.497750px;}
.y5d{bottom:310.543500px;}
.ya5{bottom:312.747000px;}
.y7d{bottom:314.098500px;}
.y13e{bottom:315.531000px;}
.yb5{bottom:316.342500px;}
.y158{bottom:316.579500px;}
.y100{bottom:319.839750px;}
.y39{bottom:329.560500px;}
.yd9{bottom:330.829500px;}
.y5c{bottom:331.692000px;}
.ya4{bottom:332.998500px;}
.y98{bottom:333.001500px;}
.y7c{bottom:334.350000px;}
.yb4{bottom:339.067500px;}
.y11d{bottom:340.281000px;}
.yff{bottom:340.541250px;}
.y13d{bottom:344.290500px;}
.y157{bottom:349.579500px;}
.yd8{bottom:351.253500px;}
.y38{bottom:351.606000px;}
.y5b{bottom:352.840500px;}
.ya3{bottom:353.250000px;}
.y7b{bottom:354.601500px;}
.y14{bottom:356.187000px;}
.yfe{bottom:361.362000px;}
.y11c{bottom:361.559250px;}
.yb3{bottom:361.792500px;}
.y13c{bottom:364.545000px;}
.yd7{bottom:371.677500px;}
.ya2{bottom:373.501500px;}
.y37{bottom:373.651500px;}
.y5a{bottom:373.989000px;}
.y13{bottom:378.027000px;}
.yfd{bottom:382.182750px;}
.yb2{bottom:384.517500px;}
.y156{bottom:391.084500px;}
.y11b{bottom:391.342500px;}
.yd6{bottom:392.101500px;}
.y13b{bottom:393.304500px;}
.y7a{bottom:395.101500px;}
.y59{bottom:395.137500px;}
.y36{bottom:395.697000px;}
.yfc{bottom:403.003500px;}
.y155{bottom:410.584500px;}
.yd5{bottom:412.525500px;}
.y11a{bottom:412.620750px;}
.y13a{bottom:413.559000px;}
.ya1{bottom:415.351500px;}
.y58{bottom:416.286000px;}
.y35{bottom:417.742500px;}
.y12{bottom:421.150500px;}
.yfb{bottom:423.824250px;}
.y154{bottom:430.084500px;}
.yd4{bottom:432.949500px;}
.y119{bottom:433.899000px;}
.yb1{bottom:434.248500px;}
.y57{bottom:437.434500px;}
.y34{bottom:439.788000px;}
.y11{bottom:441.490500px;}
.y139{bottom:442.318500px;}
.yfa{bottom:444.645000px;}
.y153{bottom:449.584500px;}
.yd3{bottom:453.373500px;}
.yb0{bottom:454.500000px;}
.y56{bottom:458.583000px;}
.y10{bottom:461.830500px;}
.y33{bottom:461.833500px;}
.y138{bottom:462.573000px;}
.y118{bottom:463.682250px;}
.yf9{bottom:465.465750px;}
.y152{bottom:469.084500px;}
.yd2{bottom:473.797500px;}
.yaf{bottom:474.751500px;}
.y97{bottom:476.101500px;}
.y55{bottom:479.731500px;}
.yf{bottom:482.170500px;}
.y32{bottom:483.879000px;}
.y117{bottom:484.960500px;}
.yf8{bottom:486.286500px;}
.y151{bottom:488.584500px;}
.y137{bottom:491.332500px;}
.yd1{bottom:494.221500px;}
.y54{bottom:500.880000px;}
.ye{bottom:502.510500px;}
.y31{bottom:505.924500px;}
.yf7{bottom:507.107250px;}
.y150{bottom:508.084500px;}
.y136{bottom:511.587000px;}
.yd0{bottom:514.645500px;}
.y116{bottom:514.743750px;}
.yae{bottom:515.251500px;}
.y79{bottom:516.601500px;}
.y53{bottom:522.028500px;}
.yd{bottom:522.850500px;}
.y14f{bottom:527.584500px;}
.yf6{bottom:527.928000px;}
.y30{bottom:527.970000px;}
.ycf{bottom:535.069500px;}
.y115{bottom:536.022000px;}
.y78{bottom:538.174500px;}
.y135{bottom:540.346500px;}
.y52{bottom:543.177000px;}
.y14e{bottom:547.084500px;}
.yf5{bottom:548.748750px;}
.y2f{bottom:550.015500px;}
.yce{bottom:555.493500px;}
.yc{bottom:555.955500px;}
.y114{bottom:557.300250px;}
.y77{bottom:558.426000px;}
.y134{bottom:560.601000px;}
.y51{bottom:564.325500px;}
.y14d{bottom:566.584500px;}
.yf4{bottom:569.569500px;}
.y2e{bottom:572.061000px;}
.ycd{bottom:575.917500px;}
.y76{bottom:578.677500px;}
.y133{bottom:580.855500px;}
.y50{bottom:585.474000px;}
.y14c{bottom:586.084500px;}
.y113{bottom:587.083500px;}
.yf3{bottom:590.390250px;}
.y2d{bottom:594.106500px;}
.ycc{bottom:596.341500px;}
.y75{bottom:598.929000px;}
.y96{bottom:598.938000px;}
.y14b{bottom:605.584500px;}
.y4f{bottom:606.622500px;}
.y112{bottom:608.361750px;}
.y132{bottom:609.615000px;}
.yf2{bottom:611.211000px;}
.yb{bottom:614.566500px;}
.y2c{bottom:616.152000px;}
.ycb{bottom:616.765500px;}
.y74{bottom:619.180500px;}
.y95{bottom:619.189500px;}
.y14a{bottom:625.084500px;}
.y4e{bottom:627.771000px;}
.yf1{bottom:632.031750px;}
.yca{bottom:637.189500px;}
.y111{bottom:638.145000px;}
.y2b{bottom:638.197500px;}
.y131{bottom:638.374500px;}
.y73{bottom:639.432000px;}
.y94{bottom:639.441000px;}
.ya{bottom:642.412500px;}
.y149{bottom:644.584500px;}
.y4d{bottom:648.919500px;}
.yf0{bottom:652.852500px;}
.yc9{bottom:657.613500px;}
.y72{bottom:659.683500px;}
.y93{bottom:659.692500px;}
.y2a{bottom:660.243000px;}
.y148{bottom:664.084500px;}
.y130{bottom:667.134000px;}
.y4c{bottom:670.068000px;}
.yef{bottom:673.673250px;}
.yc8{bottom:678.037500px;}
.y71{bottom:679.935000px;}
.y92{bottom:679.944000px;}
.y29{bottom:682.288500px;}
.y147{bottom:683.584500px;}
.y12f{bottom:687.388500px;}
.y4b{bottom:691.216500px;}
.y9{bottom:691.516500px;}
.yee{bottom:694.494000px;}
.yc7{bottom:698.461500px;}
.y70{bottom:700.186500px;}
.y91{bottom:700.195500px;}
.y146{bottom:703.084500px;}
.y28{bottom:704.325000px;}
.y4a{bottom:712.365000px;}
.yed{bottom:715.314750px;}
.y12e{bottom:716.148000px;}
.yc6{bottom:718.885500px;}
.y6f{bottom:720.438000px;}
.y90{bottom:720.447000px;}
.y145{bottom:722.584500px;}
.y8{bottom:723.862500px;}
.y27{bottom:726.370500px;}
.y110{bottom:732.547500px;}
.y49{bottom:733.513500px;}
.yec{bottom:736.135500px;}
.y12d{bottom:736.402500px;}
.yc5{bottom:739.309500px;}
.y6e{bottom:740.689500px;}
.y8f{bottom:740.698500px;}
.y144{bottom:742.089000px;}
.y26{bottom:748.383000px;}
.y10f{bottom:753.816750px;}
.y48{bottom:754.662000px;}
.y12c{bottom:756.657000px;}
.yeb{bottom:756.956250px;}
.yc4{bottom:759.733500px;}
.y6d{bottom:760.941000px;}
.y8e{bottom:760.950000px;}
.y143{bottom:761.589000px;}
.y25{bottom:770.428500px;}
.y10e{bottom:775.086000px;}
.y47{bottom:775.810500px;}
.yea{bottom:777.777000px;}
.yc3{bottom:780.157500px;}
.y6c{bottom:781.192500px;}
.y8d{bottom:781.200000px;}
.y12b{bottom:785.416500px;}
.y7{bottom:785.989500px;}
.y24{bottom:792.474000px;}
.y142{bottom:793.839000px;}
.y10d{bottom:796.355250px;}
.y46{bottom:796.959000px;}
.ye9{bottom:798.597750px;}
.yc2{bottom:800.581500px;}
.y6b{bottom:801.444000px;}
.y8c{bottom:801.450000px;}
.y6{bottom:807.829500px;}
.y12a{bottom:814.176000px;}
.y23{bottom:814.519500px;}
.y10c{bottom:817.624500px;}
.y45{bottom:818.107500px;}
.ye8{bottom:819.418500px;}
.yc1{bottom:821.005500px;}
.y6a{bottom:821.695500px;}
.y8b{bottom:821.697000px;}
.y5{bottom:829.669500px;}
.y22{bottom:836.565000px;}
.y10b{bottom:838.893750px;}
.y44{bottom:839.256000px;}
.ye7{bottom:840.239250px;}
.yc0{bottom:841.429500px;}
.y69{bottom:841.947000px;}
.y8a{bottom:841.948500px;}
.y129{bottom:842.935500px;}
.y4{bottom:851.509500px;}
.y21{bottom:858.610500px;}
.y10a{bottom:860.163000px;}
.y43{bottom:860.404500px;}
.ye6{bottom:861.060000px;}
.ybf{bottom:861.853500px;}
.y68{bottom:862.198500px;}
.y89{bottom:862.200000px;}
.y128{bottom:863.190000px;}
.y141{bottom:873.201000px;}
.y20{bottom:880.656000px;}
.y109{bottom:881.432250px;}
.y42{bottom:881.553000px;}
.y3{bottom:881.854500px;}
.ye5{bottom:881.880750px;}
.ybe{bottom:882.277500px;}
.y67{bottom:882.450000px;}
.y127{bottom:883.444500px;}
.y140{bottom:900.207000px;}
.y1f{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1e{bottom:948.189000px;}
.h18{height:26.732030px;}
.h11{height:34.872492px;}
.ha{height:41.648438px;}
.h13{height:46.854492px;}
.h10{height:48.530695px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.hb{height:59.869629px;}
.h16{height:59.875629px;}
.h17{height:59.887629px;}
.hd{height:60.001629px;}
.hf{height:60.277629px;}
.h12{height:60.512695px;}
.h2{height:65.075684px;}
.h15{height:67.217128px;}
.h9{height:67.236328px;}
.h1a{height:70.598145px;}
.h14{height:70.664062px;}
.h8{height:72.884766px;}
.hc{height:77.321777px;}
.he{height:77.357777px;}
.h19{height:77.798777px;}
.h5{height:93.708984px;}
.h7{height:94.130859px;}
.h6{height:121.025391px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.214250px;}
.xc{left:83.682750px;}
.x1{left:85.039350px;}
.xe{left:93.324300px;}
.x9{left:104.957250px;}
.x5{left:106.035000px;}
.xa{left:107.298000px;}
.xd{left:108.512700px;}
.x10{left:121.193100px;}
.xb{left:123.150750px;}
.x8{left:130.401000px;}
.x7{left:131.595150px;}
.x4{left:230.001000px;}
.x3{left:232.218000px;}
.x2{left:233.344500px;}
.xf{left:297.519300px;}
@media print{
.v3{vertical-align:-15.093333pt;}
.v5{vertical-align:-12.426667pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.426667pt;}
.v2{vertical-align:15.205333pt;}
.ls29{letter-spacing:-5.274667pt;}
.ls5{letter-spacing:-5.184000pt;}
.ls3e{letter-spacing:-5.090667pt;}
.ls1f{letter-spacing:-4.416000pt;}
.ls19{letter-spacing:-2.866667pt;}
.ls21{letter-spacing:-2.821333pt;}
.ls2f{letter-spacing:-2.698667pt;}
.ls2e{letter-spacing:-2.576000pt;}
.ls3d{letter-spacing:-2.533333pt;}
.ls53{letter-spacing:-2.208000pt;}
.ls4d{letter-spacing:-2.085333pt;}
.ls11{letter-spacing:-2.026667pt;}
.ls28{letter-spacing:-2.024000pt;}
.ls4e{letter-spacing:-1.962667pt;}
.ls54{letter-spacing:-1.901333pt;}
.ls5c{letter-spacing:-1.840000pt;}
.ls62{letter-spacing:-1.778667pt;}
.ls4{letter-spacing:-1.728000pt;}
.ls2c{letter-spacing:-1.717333pt;}
.lsb{letter-spacing:-1.706667pt;}
.ls2a{letter-spacing:-1.594667pt;}
.ls6{letter-spacing:-1.568000pt;}
.ls4f{letter-spacing:-1.533333pt;}
.ls41{letter-spacing:-1.472000pt;}
.ls60{letter-spacing:-1.349333pt;}
.ls1e{letter-spacing:-1.288000pt;}
.ls6c{letter-spacing:-1.232000pt;}
.ls1d{letter-spacing:-1.226667pt;}
.ls22{letter-spacing:-1.165333pt;}
.ls7d{letter-spacing:-1.120000pt;}
.ls23{letter-spacing:-1.104000pt;}
.ls84{letter-spacing:-1.066667pt;}
.ls37{letter-spacing:-1.042667pt;}
.ls40{letter-spacing:-0.960000pt;}
.ls73{letter-spacing:-0.952000pt;}
.ls43{letter-spacing:-0.920000pt;}
.ls7e{letter-spacing:-0.896000pt;}
.ls55{letter-spacing:-0.858667pt;}
.ls79{letter-spacing:-0.840000pt;}
.ls59{letter-spacing:-0.800000pt;}
.ls56{letter-spacing:-0.797333pt;}
.ls8{letter-spacing:-0.746667pt;}
.ls26{letter-spacing:-0.736000pt;}
.ls77{letter-spacing:-0.728000pt;}
.ls3a{letter-spacing:-0.720000pt;}
.ls88{letter-spacing:-0.693333pt;}
.ls1c{letter-spacing:-0.674667pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls75{letter-spacing:-0.616000pt;}
.ls27{letter-spacing:-0.613333pt;}
.ls72{letter-spacing:-0.560000pt;}
.ls34{letter-spacing:-0.552000pt;}
.ls86{letter-spacing:-0.533333pt;}
.ls63{letter-spacing:-0.490667pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls7a{letter-spacing:-0.448000pt;}
.ls2d{letter-spacing:-0.429333pt;}
.ls5a{letter-spacing:-0.426667pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls65{letter-spacing:-0.368000pt;}
.ls31{letter-spacing:-0.336000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.306667pt;}
.ls6d{letter-spacing:-0.280000pt;}
.lsd{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.122667pt;}
.ls67{letter-spacing:-0.061333pt;}
.ls78{letter-spacing:-0.056000pt;}
.ls5b{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.004000pt;}
.ls16{letter-spacing:0.077947pt;}
.ls50{letter-spacing:0.144000pt;}
.ls81{letter-spacing:0.400000pt;}
.ls30{letter-spacing:0.552000pt;}
.ls48{letter-spacing:0.600000pt;}
.ls68{letter-spacing:0.613333pt;}
.ls20{letter-spacing:0.674667pt;}
.ls42{letter-spacing:0.736000pt;}
.ls49{letter-spacing:0.800000pt;}
.ls64{letter-spacing:0.858667pt;}
.ls25{letter-spacing:0.981333pt;}
.ls6e{letter-spacing:1.008000pt;}
.ls87{letter-spacing:1.013333pt;}
.ls35{letter-spacing:1.042667pt;}
.ls7f{letter-spacing:1.064000pt;}
.ls3c{letter-spacing:1.076000pt;}
.ls12{letter-spacing:1.119360pt;}
.ls1b{letter-spacing:1.194667pt;}
.ls17{letter-spacing:1.288000pt;}
.ls2b{letter-spacing:1.410667pt;}
.ls57{letter-spacing:1.533333pt;}
.ls3f{letter-spacing:1.594667pt;}
.ls4c{letter-spacing:1.656000pt;}
.ls9{letter-spacing:1.706667pt;}
.ls66{letter-spacing:1.806667pt;}
.ls18{letter-spacing:2.133333pt;}
.ls15{letter-spacing:3.066667pt;}
.ls74{letter-spacing:3.080000pt;}
.ls61{letter-spacing:3.189333pt;}
.ls52{letter-spacing:3.250667pt;}
.ls13{letter-spacing:3.285333pt;}
.lse{letter-spacing:3.733333pt;}
.ls83{letter-spacing:3.786667pt;}
.ls85{letter-spacing:4.213333pt;}
.ls5f{letter-spacing:4.784000pt;}
.ls7{letter-spacing:5.120000pt;}
.lsf{letter-spacing:5.226667pt;}
.ls76{letter-spacing:5.320000pt;}
.ls1a{letter-spacing:5.333333pt;}
.ls6f{letter-spacing:5.432000pt;}
.ls33{letter-spacing:5.575200pt;}
.ls71{letter-spacing:5.600000pt;}
.ls44{letter-spacing:5.704000pt;}
.ls7c{letter-spacing:5.712000pt;}
.ls2{letter-spacing:6.453333pt;}
.ls45{letter-spacing:6.501333pt;}
.ls70{letter-spacing:6.664000pt;}
.ls69{letter-spacing:7.114667pt;}
.ls7b{letter-spacing:7.280000pt;}
.ls82{letter-spacing:7.680000pt;}
.ls6b{letter-spacing:7.840000pt;}
.ls5e{letter-spacing:8.157333pt;}
.ls47{letter-spacing:448.697067pt;}
.ls80{letter-spacing:448.876800pt;}
.ls5d{letter-spacing:449.263467pt;}
.ls6a{letter-spacing:449.290133pt;}
.ls51{letter-spacing:449.530133pt;}
.ls3b{letter-spacing:457.085333pt;}
.ls14{letter-spacing:457.412267pt;}
.ls46{letter-spacing:880.021333pt;}
.ls58{letter-spacing:880.464000pt;}
.ls0{letter-spacing:882.794667pt;}
.ls32{letter-spacing:886.394667pt;}
.ls4a{letter-spacing:888.154667pt;}
.ws75{word-spacing:-23.576000pt;}
.ws8c{word-spacing:-22.666667pt;}
.ws6{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws47{word-spacing:-19.333333pt;}
.ws8b{word-spacing:-19.133333pt;}
.ws3e{word-spacing:-18.829333pt;}
.ws5a{word-spacing:-18.768000pt;}
.ws68{word-spacing:-18.733333pt;}
.ws1{word-spacing:-18.528000pt;}
.ws54{word-spacing:-18.466667pt;}
.ws1c{word-spacing:-17.234667pt;}
.ws2{word-spacing:-16.874667pt;}
.ws59{word-spacing:-16.805333pt;}
.ws1d{word-spacing:-16.621333pt;}
.ws3d{word-spacing:-16.200000pt;}
.ws49{word-spacing:-16.069333pt;}
.ws14{word-spacing:-15.866667pt;}
.ws80{word-spacing:-15.400000pt;}
.ws1a{word-spacing:-15.149333pt;}
.ws6b{word-spacing:-15.026667pt;}
.ws1b{word-spacing:-14.842667pt;}
.ws0{word-spacing:-14.666667pt;}
.ws6a{word-spacing:-14.658667pt;}
.ws1e{word-spacing:-14.536000pt;}
.ws57{word-spacing:-14.413333pt;}
.ws5e{word-spacing:-14.352000pt;}
.ws4d{word-spacing:-14.106667pt;}
.ws19{word-spacing:-14.045333pt;}
.ws4c{word-spacing:-13.984000pt;}
.ws16{word-spacing:-13.922667pt;}
.ws17{word-spacing:-13.861333pt;}
.ws40{word-spacing:-13.677333pt;}
.ws4b{word-spacing:-13.616000pt;}
.ws58{word-spacing:-13.554667pt;}
.ws76{word-spacing:-13.552000pt;}
.ws1f{word-spacing:-13.432000pt;}
.ws69{word-spacing:-13.370667pt;}
.ws56{word-spacing:-13.248000pt;}
.ws64{word-spacing:-13.120000pt;}
.ws7e{word-spacing:-13.104000pt;}
.ws4a{word-spacing:-13.064000pt;}
.ws7f{word-spacing:-12.992000pt;}
.ws55{word-spacing:-12.941333pt;}
.ws77{word-spacing:-12.880000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws63{word-spacing:-12.746667pt;}
.ws5{word-spacing:-12.533333pt;}
.ws4{word-spacing:-12.426667pt;}
.ws65{word-spacing:-12.373333pt;}
.ws3f{word-spacing:-12.213333pt;}
.ws4e{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.685333pt;}
.ws4f{word-spacing:-11.472000pt;}
.ws18{word-spacing:-10.047811pt;}
.ws8{word-spacing:-9.856587pt;}
.ws86{word-spacing:-7.280000pt;}
.ws74{word-spacing:-7.114667pt;}
.ws7b{word-spacing:-6.664000pt;}
.ws46{word-spacing:-6.501333pt;}
.wsa{word-spacing:-6.453333pt;}
.ws87{word-spacing:-5.712000pt;}
.ws45{word-spacing:-5.704000pt;}
.ws7c{word-spacing:-5.600000pt;}
.ws7a{word-spacing:-5.432000pt;}
.ws21{word-spacing:-5.333333pt;}
.ws82{word-spacing:-5.320000pt;}
.ws6c{word-spacing:-4.784000pt;}
.ws8f{word-spacing:-4.213333pt;}
.ws8d{word-spacing:-3.786667pt;}
.ws10{word-spacing:-3.733333pt;}
.ws13{word-spacing:-3.285333pt;}
.ws6e{word-spacing:-3.189333pt;}
.ws20{word-spacing:-2.133333pt;}
.wsc{word-spacing:-1.706667pt;}
.ws50{word-spacing:-1.656000pt;}
.ws72{word-spacing:-1.594667pt;}
.ws2d{word-spacing:-1.410667pt;}
.ws8a{word-spacing:-1.064000pt;}
.ws37{word-spacing:-1.042667pt;}
.ws91{word-spacing:-1.013333pt;}
.ws79{word-spacing:-1.008000pt;}
.ws27{word-spacing:-0.981333pt;}
.ws6f{word-spacing:-0.858667pt;}
.ws48{word-spacing:-0.800000pt;}
.ws43{word-spacing:-0.736000pt;}
.ws24{word-spacing:-0.674667pt;}
.ws73{word-spacing:-0.613333pt;}
.ws32{word-spacing:-0.552000pt;}
.ws9{word-spacing:0.000000pt;}
.ws84{word-spacing:0.056000pt;}
.ws71{word-spacing:0.061333pt;}
.ws38{word-spacing:0.122667pt;}
.wse{word-spacing:0.213333pt;}
.wsf{word-spacing:0.266667pt;}
.ws42{word-spacing:0.306667pt;}
.ws33{word-spacing:0.336000pt;}
.ws70{word-spacing:0.368000pt;}
.ws12{word-spacing:0.373333pt;}
.ws3b{word-spacing:0.384000pt;}
.ws2e{word-spacing:0.429333pt;}
.ws85{word-spacing:0.448000pt;}
.ws3a{word-spacing:0.480000pt;}
.ws90{word-spacing:0.533333pt;}
.ws35{word-spacing:0.552000pt;}
.ws7d{word-spacing:0.560000pt;}
.ws34{word-spacing:0.586667pt;}
.ws36{word-spacing:0.613333pt;}
.ws81{word-spacing:0.616000pt;}
.ws22{word-spacing:0.674667pt;}
.ws92{word-spacing:0.693333pt;}
.ws3c{word-spacing:0.720000pt;}
.ws83{word-spacing:0.728000pt;}
.ws28{word-spacing:0.736000pt;}
.ws5d{word-spacing:0.797333pt;}
.ws5c{word-spacing:0.858667pt;}
.ws89{word-spacing:0.896000pt;}
.ws44{word-spacing:0.920000pt;}
.ws39{word-spacing:1.042667pt;}
.ws8e{word-spacing:1.066667pt;}
.ws30{word-spacing:1.104000pt;}
.ws88{word-spacing:1.120000pt;}
.ws26{word-spacing:1.165333pt;}
.ws2b{word-spacing:1.226667pt;}
.ws78{word-spacing:1.232000pt;}
.ws66{word-spacing:1.288000pt;}
.ws6d{word-spacing:1.349333pt;}
.ws2c{word-spacing:1.594667pt;}
.wsd{word-spacing:1.706667pt;}
.ws52{word-spacing:1.717333pt;}
.wsb{word-spacing:1.728000pt;}
.ws67{word-spacing:1.840000pt;}
.ws51{word-spacing:1.962667pt;}
.ws29{word-spacing:2.024000pt;}
.ws11{word-spacing:2.026667pt;}
.ws5b{word-spacing:2.085333pt;}
.ws2f{word-spacing:2.576000pt;}
.ws31{word-spacing:2.698667pt;}
.ws25{word-spacing:2.821333pt;}
.ws23{word-spacing:4.416000pt;}
.ws41{word-spacing:5.090667pt;}
.ws2a{word-spacing:5.274667pt;}
.ws53{word-spacing:7.247856pt;}
.ws60{word-spacing:450.560000pt;}
.ws61{word-spacing:455.728000pt;}
.ws62{word-spacing:462.624000pt;}
.ws5f{word-spacing:597.077333pt;}
._1c{margin-left:-17.218667pt;}
._20{margin-left:-10.215733pt;}
._9{margin-left:-9.014400pt;}
._c{margin-left:-7.845333pt;}
._5{margin-left:-6.912000pt;}
._18{margin-left:-5.960000pt;}
._d{margin-left:-5.042400pt;}
._e{margin-left:-4.091733pt;}
._8{margin-left:-3.193067pt;}
._b{margin-left:-2.254933pt;}
._3{margin-left:-1.114667pt;}
._2{width:0.890400pt;}
._1{width:2.133333pt;}
._a{width:3.727200pt;}
._4{width:4.661333pt;}
._16{width:5.556800pt;}
._6{width:6.453333pt;}
._7{width:8.032000pt;}
._10{width:9.192533pt;}
._17{width:10.200533pt;}
._1d{width:11.136267pt;}
._1e{width:12.194400pt;}
._12{width:13.630133pt;}
._13{width:15.128000pt;}
._15{width:18.154667pt;}
._1f{width:21.040000pt;}
._19{width:31.370064pt;}
._14{width:38.617920pt;}
._f{width:63.466667pt;}
._1a{width:65.119200pt;}
._11{width:224.896000pt;}
._1b{width:244.769333pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.ye4{bottom:94.369333pt;}
.y126{bottom:94.446000pt;}
.y66{bottom:94.480000pt;}
.y86{bottom:94.485733pt;}
.y1d{bottom:94.492533pt;}
.y41{bottom:97.150933pt;}
.y87{bottom:99.504667pt;}
.y88{bottom:99.508933pt;}
.ybd{bottom:103.448000pt;}
.y65{bottom:109.816000pt;}
.y85{bottom:112.484400pt;}
.ye3{bottom:112.524000pt;}
.y125{bottom:113.360000pt;}
.ya0{bottom:113.598400pt;}
.y1c{bottom:113.905867pt;}
.ybc{bottom:121.449333pt;}
.y64{bottom:125.152000pt;}
.ye2{bottom:130.678667pt;}
.y9f{bottom:131.597067pt;}
.yad{bottom:133.986667pt;}
.y108{bottom:136.243333pt;}
.ybb{bottom:139.450667pt;}
.y124{bottom:139.834000pt;}
.y63{bottom:143.150667pt;}
.y9e{bottom:148.048000pt;}
.ye1{bottom:148.833333pt;}
.y9d{bottom:150.710667pt;}
.yac{bottom:151.988000pt;}
.y1b{bottom:152.238667pt;}
.y84{bottom:153.192000pt;}
.y107{bottom:154.750667pt;}
.y40{bottom:155.861333pt;}
.yba{bottom:157.452000pt;}
.y123{bottom:158.748000pt;}
.ye0{bottom:166.988000pt;}
.y9c{bottom:169.822667pt;}
.yab{bottom:169.989333pt;}
.y1a{bottom:170.318667pt;}
.y83{bottom:171.193333pt;}
.y106{bottom:173.258000pt;}
.y3f{bottom:175.457333pt;}
.y122{bottom:177.662000pt;}
.y62{bottom:182.045333pt;}
.ydf{bottom:185.142667pt;}
.yaa{bottom:187.990667pt;}
.y19{bottom:188.398667pt;}
.y82{bottom:189.194667pt;}
.y105{bottom:191.765333pt;}
.y3e{bottom:194.962667pt;}
.yb9{bottom:200.393333pt;}
.y61{bottom:200.844000pt;}
.yde{bottom:203.297333pt;}
.y121{bottom:204.136000pt;}
.ya9{bottom:205.992000pt;}
.y18{bottom:206.478667pt;}
.y81{bottom:207.196000pt;}
.y104{bottom:210.272667pt;}
.y3d{bottom:214.558667pt;}
.y60{bottom:219.642667pt;}
.yb8{bottom:220.593333pt;}
.ydd{bottom:221.452000pt;}
.ya8{bottom:223.993333pt;}
.y9b{bottom:223.998667pt;}
.y17{bottom:224.557333pt;}
.y80{bottom:225.197333pt;}
.y15b{bottom:227.404000pt;}
.y103{bottom:228.780000pt;}
.y120{bottom:230.610000pt;}
.y3c{bottom:234.154667pt;}
.y5f{bottom:238.441333pt;}
.ydc{bottom:239.606667pt;}
.yb7{bottom:240.793333pt;}
.ya7{bottom:241.994667pt;}
.y9a{bottom:242.000000pt;}
.y16{bottom:242.637333pt;}
.y7f{bottom:243.198667pt;}
.y15a{bottom:245.404000pt;}
.y102{bottom:247.287333pt;}
.y3b{bottom:253.750667pt;}
.y11f{bottom:257.084000pt;}
.y5e{bottom:257.240000pt;}
.ydb{bottom:257.761333pt;}
.ya6{bottom:259.996000pt;}
.y99{bottom:260.001333pt;}
.yb6{bottom:260.993333pt;}
.y7e{bottom:261.200000pt;}
.y13f{bottom:262.468000pt;}
.y159{bottom:263.404000pt;}
.y101{bottom:265.794667pt;}
.y15{bottom:272.064000pt;}
.y3a{bottom:273.346667pt;}
.yda{bottom:275.916000pt;}
.y11e{bottom:275.998000pt;}
.y5d{bottom:276.038667pt;}
.ya5{bottom:277.997333pt;}
.y7d{bottom:279.198667pt;}
.y13e{bottom:280.472000pt;}
.yb5{bottom:281.193333pt;}
.y158{bottom:281.404000pt;}
.y100{bottom:284.302000pt;}
.y39{bottom:292.942667pt;}
.yd9{bottom:294.070667pt;}
.y5c{bottom:294.837333pt;}
.ya4{bottom:295.998667pt;}
.y98{bottom:296.001333pt;}
.y7c{bottom:297.200000pt;}
.yb4{bottom:301.393333pt;}
.y11d{bottom:302.472000pt;}
.yff{bottom:302.703333pt;}
.y13d{bottom:306.036000pt;}
.y157{bottom:310.737333pt;}
.yd8{bottom:312.225333pt;}
.y38{bottom:312.538667pt;}
.y5b{bottom:313.636000pt;}
.ya3{bottom:314.000000pt;}
.y7b{bottom:315.201333pt;}
.y14{bottom:316.610667pt;}
.yfe{bottom:321.210667pt;}
.y11c{bottom:321.386000pt;}
.yb3{bottom:321.593333pt;}
.y13c{bottom:324.040000pt;}
.yd7{bottom:330.380000pt;}
.ya2{bottom:332.001333pt;}
.y37{bottom:332.134667pt;}
.y5a{bottom:332.434667pt;}
.y13{bottom:336.024000pt;}
.yfd{bottom:339.718000pt;}
.yb2{bottom:341.793333pt;}
.y156{bottom:347.630667pt;}
.y11b{bottom:347.860000pt;}
.yd6{bottom:348.534667pt;}
.y13b{bottom:349.604000pt;}
.y7a{bottom:351.201333pt;}
.y59{bottom:351.233333pt;}
.y36{bottom:351.730667pt;}
.yfc{bottom:358.225333pt;}
.y155{bottom:364.964000pt;}
.yd5{bottom:366.689333pt;}
.y11a{bottom:366.774000pt;}
.y13a{bottom:367.608000pt;}
.ya1{bottom:369.201333pt;}
.y58{bottom:370.032000pt;}
.y35{bottom:371.326667pt;}
.y12{bottom:374.356000pt;}
.yfb{bottom:376.732667pt;}
.y154{bottom:382.297333pt;}
.yd4{bottom:384.844000pt;}
.y119{bottom:385.688000pt;}
.yb1{bottom:385.998667pt;}
.y57{bottom:388.830667pt;}
.y34{bottom:390.922667pt;}
.y11{bottom:392.436000pt;}
.y139{bottom:393.172000pt;}
.yfa{bottom:395.240000pt;}
.y153{bottom:399.630667pt;}
.yd3{bottom:402.998667pt;}
.yb0{bottom:404.000000pt;}
.y56{bottom:407.629333pt;}
.y10{bottom:410.516000pt;}
.y33{bottom:410.518667pt;}
.y138{bottom:411.176000pt;}
.y118{bottom:412.162000pt;}
.yf9{bottom:413.747333pt;}
.y152{bottom:416.964000pt;}
.yd2{bottom:421.153333pt;}
.yaf{bottom:422.001333pt;}
.y97{bottom:423.201333pt;}
.y55{bottom:426.428000pt;}
.yf{bottom:428.596000pt;}
.y32{bottom:430.114667pt;}
.y117{bottom:431.076000pt;}
.yf8{bottom:432.254667pt;}
.y151{bottom:434.297333pt;}
.y137{bottom:436.740000pt;}
.yd1{bottom:439.308000pt;}
.y54{bottom:445.226667pt;}
.ye{bottom:446.676000pt;}
.y31{bottom:449.710667pt;}
.yf7{bottom:450.762000pt;}
.y150{bottom:451.630667pt;}
.y136{bottom:454.744000pt;}
.yd0{bottom:457.462667pt;}
.y116{bottom:457.550000pt;}
.yae{bottom:458.001333pt;}
.y79{bottom:459.201333pt;}
.y53{bottom:464.025333pt;}
.yd{bottom:464.756000pt;}
.y14f{bottom:468.964000pt;}
.yf6{bottom:469.269333pt;}
.y30{bottom:469.306667pt;}
.ycf{bottom:475.617333pt;}
.y115{bottom:476.464000pt;}
.y78{bottom:478.377333pt;}
.y135{bottom:480.308000pt;}
.y52{bottom:482.824000pt;}
.y14e{bottom:486.297333pt;}
.yf5{bottom:487.776667pt;}
.y2f{bottom:488.902667pt;}
.yce{bottom:493.772000pt;}
.yc{bottom:494.182667pt;}
.y114{bottom:495.378000pt;}
.y77{bottom:496.378667pt;}
.y134{bottom:498.312000pt;}
.y51{bottom:501.622667pt;}
.y14d{bottom:503.630667pt;}
.yf4{bottom:506.284000pt;}
.y2e{bottom:508.498667pt;}
.ycd{bottom:511.926667pt;}
.y76{bottom:514.380000pt;}
.y133{bottom:516.316000pt;}
.y50{bottom:520.421333pt;}
.y14c{bottom:520.964000pt;}
.y113{bottom:521.852000pt;}
.yf3{bottom:524.791333pt;}
.y2d{bottom:528.094667pt;}
.ycc{bottom:530.081333pt;}
.y75{bottom:532.381333pt;}
.y96{bottom:532.389333pt;}
.y14b{bottom:538.297333pt;}
.y4f{bottom:539.220000pt;}
.y112{bottom:540.766000pt;}
.y132{bottom:541.880000pt;}
.yf2{bottom:543.298667pt;}
.yb{bottom:546.281333pt;}
.y2c{bottom:547.690667pt;}
.ycb{bottom:548.236000pt;}
.y74{bottom:550.382667pt;}
.y95{bottom:550.390667pt;}
.y14a{bottom:555.630667pt;}
.y4e{bottom:558.018667pt;}
.yf1{bottom:561.806000pt;}
.yca{bottom:566.390667pt;}
.y111{bottom:567.240000pt;}
.y2b{bottom:567.286667pt;}
.y131{bottom:567.444000pt;}
.y73{bottom:568.384000pt;}
.y94{bottom:568.392000pt;}
.ya{bottom:571.033333pt;}
.y149{bottom:572.964000pt;}
.y4d{bottom:576.817333pt;}
.yf0{bottom:580.313333pt;}
.yc9{bottom:584.545333pt;}
.y72{bottom:586.385333pt;}
.y93{bottom:586.393333pt;}
.y2a{bottom:586.882667pt;}
.y148{bottom:590.297333pt;}
.y130{bottom:593.008000pt;}
.y4c{bottom:595.616000pt;}
.yef{bottom:598.820667pt;}
.yc8{bottom:602.700000pt;}
.y71{bottom:604.386667pt;}
.y92{bottom:604.394667pt;}
.y29{bottom:606.478667pt;}
.y147{bottom:607.630667pt;}
.y12f{bottom:611.012000pt;}
.y4b{bottom:614.414667pt;}
.y9{bottom:614.681333pt;}
.yee{bottom:617.328000pt;}
.yc7{bottom:620.854667pt;}
.y70{bottom:622.388000pt;}
.y91{bottom:622.396000pt;}
.y146{bottom:624.964000pt;}
.y28{bottom:626.066667pt;}
.y4a{bottom:633.213333pt;}
.yed{bottom:635.835333pt;}
.y12e{bottom:636.576000pt;}
.yc6{bottom:639.009333pt;}
.y6f{bottom:640.389333pt;}
.y90{bottom:640.397333pt;}
.y145{bottom:642.297333pt;}
.y8{bottom:643.433333pt;}
.y27{bottom:645.662667pt;}
.y110{bottom:651.153333pt;}
.y49{bottom:652.012000pt;}
.yec{bottom:654.342667pt;}
.y12d{bottom:654.580000pt;}
.yc5{bottom:657.164000pt;}
.y6e{bottom:658.390667pt;}
.y8f{bottom:658.398667pt;}
.y144{bottom:659.634667pt;}
.y26{bottom:665.229333pt;}
.y10f{bottom:670.059333pt;}
.y48{bottom:670.810667pt;}
.y12c{bottom:672.584000pt;}
.yeb{bottom:672.850000pt;}
.yc4{bottom:675.318667pt;}
.y6d{bottom:676.392000pt;}
.y8e{bottom:676.400000pt;}
.y143{bottom:676.968000pt;}
.y25{bottom:684.825333pt;}
.y10e{bottom:688.965333pt;}
.y47{bottom:689.609333pt;}
.yea{bottom:691.357333pt;}
.yc3{bottom:693.473333pt;}
.y6c{bottom:694.393333pt;}
.y8d{bottom:694.400000pt;}
.y12b{bottom:698.148000pt;}
.y7{bottom:698.657333pt;}
.y24{bottom:704.421333pt;}
.y142{bottom:705.634667pt;}
.y10d{bottom:707.871333pt;}
.y46{bottom:708.408000pt;}
.ye9{bottom:709.864667pt;}
.yc2{bottom:711.628000pt;}
.y6b{bottom:712.394667pt;}
.y8c{bottom:712.400000pt;}
.y6{bottom:718.070667pt;}
.y12a{bottom:723.712000pt;}
.y23{bottom:724.017333pt;}
.y10c{bottom:726.777333pt;}
.y45{bottom:727.206667pt;}
.ye8{bottom:728.372000pt;}
.yc1{bottom:729.782667pt;}
.y6a{bottom:730.396000pt;}
.y8b{bottom:730.397333pt;}
.y5{bottom:737.484000pt;}
.y22{bottom:743.613333pt;}
.y10b{bottom:745.683333pt;}
.y44{bottom:746.005333pt;}
.ye7{bottom:746.879333pt;}
.yc0{bottom:747.937333pt;}
.y69{bottom:748.397333pt;}
.y8a{bottom:748.398667pt;}
.y129{bottom:749.276000pt;}
.y4{bottom:756.897333pt;}
.y21{bottom:763.209333pt;}
.y10a{bottom:764.589333pt;}
.y43{bottom:764.804000pt;}
.ye6{bottom:765.386667pt;}
.ybf{bottom:766.092000pt;}
.y68{bottom:766.398667pt;}
.y89{bottom:766.400000pt;}
.y128{bottom:767.280000pt;}
.y141{bottom:776.178667pt;}
.y20{bottom:782.805333pt;}
.y109{bottom:783.495333pt;}
.y42{bottom:783.602667pt;}
.y3{bottom:783.870667pt;}
.ye5{bottom:783.894000pt;}
.ybe{bottom:784.246667pt;}
.y67{bottom:784.400000pt;}
.y127{bottom:785.284000pt;}
.y140{bottom:800.184000pt;}
.y1f{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1e{bottom:842.834667pt;}
.h18{height:23.761805pt;}
.h11{height:30.997771pt;}
.ha{height:37.020833pt;}
.h13{height:41.648438pt;}
.h10{height:43.138396pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.hb{height:53.217448pt;}
.h16{height:53.222781pt;}
.h17{height:53.233448pt;}
.hd{height:53.334781pt;}
.hf{height:53.580115pt;}
.h12{height:53.789062pt;}
.h2{height:57.845052pt;}
.h15{height:59.748558pt;}
.h9{height:59.765625pt;}
.h1a{height:62.753906pt;}
.h14{height:62.812500pt;}
.h8{height:64.786458pt;}
.hc{height:68.730469pt;}
.he{height:68.762469pt;}
.h19{height:69.154469pt;}
.h5{height:83.296875pt;}
.h7{height:83.671875pt;}
.h6{height:107.578125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.079333pt;}
.xc{left:74.384667pt;}
.x1{left:75.590533pt;}
.xe{left:82.954933pt;}
.x9{left:93.295333pt;}
.x5{left:94.253333pt;}
.xa{left:95.376000pt;}
.xd{left:96.455733pt;}
.x10{left:107.727200pt;}
.xb{left:109.467333pt;}
.x8{left:115.912000pt;}
.x7{left:116.973467pt;}
.x4{left:204.445333pt;}
.x3{left:206.416000pt;}
.x2{left:207.417333pt;}
.xf{left:264.461600pt;}
}




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