
    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_f1c7a63424b0e4fc0b144ca5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.212000;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_8513a3063d8a78bf74980f22.woff')format("woff");}.ff2{font-family:ff2;line-height:0.830000;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_d47a4efd231accb10e81266e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_4c5a12739517987f9e70f3cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.197000;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_fe616aea6d2f386086a666e7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_31a164fbdf9f6db310804622.woff')format("woff");}.ff6{font-family:ff6;line-height:1.076000;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_2ad9bc2b8741c6d6805411e9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.212000;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_4970e8025a2515eec0de40b2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.204000;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_a72801489d986e5cf064538f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.197000;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_e3cae2f495d65813b7a41ac8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.019724;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_ff74c2540232691a649d2e57.woff')format("woff");}.ffb{font-family:ffb;line-height:1.204000;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);}
.v1{vertical-align:-32.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.693400px;}
.v3{vertical-align:32.399400px;}
.v4{vertical-align:62.365200px;}
.v5{vertical-align:80.347200px;}
.ls1{letter-spacing:-2.400000px;}
.ls30{letter-spacing:-1.620000px;}
.ls3{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.054000px;}
.ls2a{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.162000px;}
.ls15{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.221400px;}
.ls16{letter-spacing:0.237600px;}
.ls10{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.351000px;}
.ls2d{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.486000px;}
.ls8{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.567000px;}
.ls9{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.702000px;}
.ls32{letter-spacing:0.756000px;}
.ls1d{letter-spacing:0.810000px;}
.lsa{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.891000px;}
.ls24{letter-spacing:0.918000px;}
.lsb{letter-spacing:0.972000px;}
.ls2b{letter-spacing:1.026000px;}
.ls1c{letter-spacing:1.080000px;}
.ls33{letter-spacing:1.134000px;}
.ls18{letter-spacing:1.188000px;}
.ls5{letter-spacing:1.242000px;}
.ls19{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.350000px;}
.ls29{letter-spacing:1.404000px;}
.ls1f{letter-spacing:1.566000px;}
.ls17{letter-spacing:1.593000px;}
.lsc{letter-spacing:1.755000px;}
.ls31{letter-spacing:1.770600px;}
.ls20{letter-spacing:1.782000px;}
.ls1b{letter-spacing:1.836000px;}
.ls22{letter-spacing:1.890000px;}
.ls26{letter-spacing:2.052000px;}
.ls25{letter-spacing:2.322000px;}
.lsd{letter-spacing:2.538000px;}
.ls11{letter-spacing:2.700000px;}
.ls1e{letter-spacing:2.754000px;}
.lse{letter-spacing:2.862000px;}
.ls12{letter-spacing:2.970000px;}
.ls27{letter-spacing:3.348000px;}
.ls28{letter-spacing:3.780000px;}
.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;}
}
.wsc5{word-spacing:-19.872000px;}
.wsa5{word-spacing:-19.062000px;}
.wsa4{word-spacing:-18.954000px;}
.ws2f{word-spacing:-17.880000px;}
.wsdd{word-spacing:-17.874000px;}
.wsa2{word-spacing:-17.442000px;}
.wsc3{word-spacing:-17.172000px;}
.wsc6{word-spacing:-17.064000px;}
.wsde{word-spacing:-16.956000px;}
.wsa3{word-spacing:-16.686000px;}
.wsc7{word-spacing:-16.470000px;}
.wsa6{word-spacing:-16.308000px;}
.wsa1{word-spacing:-16.092000px;}
.wsc4{word-spacing:-14.472000px;}
.ws4{word-spacing:-9.300000px;}
.ws13{word-spacing:-6.960000px;}
.ws9{word-spacing:-6.240000px;}
.ws70{word-spacing:-4.440000px;}
.ws5f{word-spacing:-3.960000px;}
.wsd2{word-spacing:-3.348000px;}
.ws45{word-spacing:-3.060000px;}
.ws1f{word-spacing:-3.000000px;}
.ws8f{word-spacing:-2.880000px;}
.ws40{word-spacing:-2.820000px;}
.ws47{word-spacing:-2.760000px;}
.wsba{word-spacing:-2.700000px;}
.ws1b{word-spacing:-2.580000px;}
.wsb7{word-spacing:-2.538000px;}
.ws41{word-spacing:-2.520000px;}
.ws4a{word-spacing:-2.400000px;}
.ws95{word-spacing:-2.280000px;}
.ws71{word-spacing:-2.220000px;}
.ws39{word-spacing:-2.100000px;}
.ws5e{word-spacing:-2.040000px;}
.ws91{word-spacing:-1.920000px;}
.ws3b{word-spacing:-1.800000px;}
.ws73{word-spacing:-1.680000px;}
.wsd6{word-spacing:-1.566000px;}
.wsd5{word-spacing:-1.404000px;}
.ws2d{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.260000px;}
.wsae{word-spacing:-1.242000px;}
.ws43{word-spacing:-1.140000px;}
.ws53{word-spacing:-1.020000px;}
.wsca{word-spacing:-0.972000px;}
.wsdc{word-spacing:-0.918000px;}
.wsda{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.780000px;}
.wse1{word-spacing:-0.756000px;}
.ws1d{word-spacing:-0.660000px;}
.ws5b{word-spacing:-0.540000px;}
.ws3c{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.420000px;}
.wsa9{word-spacing:-0.378000px;}
.ws2c{word-spacing:-0.360000px;}
.wsdb{word-spacing:-0.324000px;}
.ws52{word-spacing:-0.300000px;}
.ws74{word-spacing:-0.240000px;}
.wsc1{word-spacing:-0.216000px;}
.wsd8{word-spacing:-0.108000px;}
.wsa{word-spacing:-0.060000px;}
.wsd7{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws9f{word-spacing:0.060000px;}
.ws38{word-spacing:0.120000px;}
.wsbe{word-spacing:0.162000px;}
.ws9c{word-spacing:0.180000px;}
.ws4e{word-spacing:0.240000px;}
.wsb3{word-spacing:0.270000px;}
.ws8a{word-spacing:0.300000px;}
.wsab{word-spacing:0.324000px;}
.wscf{word-spacing:0.378000px;}
.ws6c{word-spacing:0.420000px;}
.ws9a{word-spacing:0.480000px;}
.wsbc{word-spacing:0.486000px;}
.ws37{word-spacing:0.540000px;}
.wsb0{word-spacing:0.594000px;}
.ws27{word-spacing:0.600000px;}
.wsaf{word-spacing:0.648000px;}
.wsbb{word-spacing:0.756000px;}
.wse0{word-spacing:0.810000px;}
.wsb1{word-spacing:0.864000px;}
.ws18{word-spacing:0.900000px;}
.wsb2{word-spacing:0.918000px;}
.ws93{word-spacing:0.960000px;}
.wsbd{word-spacing:0.972000px;}
.wsd9{word-spacing:1.026000px;}
.wsa0{word-spacing:1.080000px;}
.wsc9{word-spacing:1.134000px;}
.wsa8{word-spacing:1.140000px;}
.ws2b{word-spacing:1.200000px;}
.wsac{word-spacing:1.242000px;}
.ws35{word-spacing:1.260000px;}
.ws4b{word-spacing:1.320000px;}
.wsc0{word-spacing:1.350000px;}
.ws62{word-spacing:1.380000px;}
.wsad{word-spacing:1.404000px;}
.ws1c{word-spacing:1.500000px;}
.ws9b{word-spacing:1.560000px;}
.wsbf{word-spacing:1.566000px;}
.wscc{word-spacing:1.620000px;}
.wsb{word-spacing:1.680000px;}
.wsb4{word-spacing:1.728000px;}
.ws4d{word-spacing:1.740000px;}
.wscd{word-spacing:1.782000px;}
.ws8d{word-spacing:1.800000px;}
.wsc2{word-spacing:1.836000px;}
.ws99{word-spacing:1.860000px;}
.ws3a{word-spacing:1.920000px;}
.wsce{word-spacing:1.944000px;}
.ws21{word-spacing:1.980000px;}
.wsd1{word-spacing:1.998000px;}
.ws49{word-spacing:2.040000px;}
.ws32{word-spacing:2.160000px;}
.wsd0{word-spacing:2.322000px;}
.ws42{word-spacing:2.580000px;}
.wsb5{word-spacing:2.592000px;}
.wsb8{word-spacing:2.646000px;}
.ws57{word-spacing:2.700000px;}
.wscb{word-spacing:2.808000px;}
.ws3e{word-spacing:2.820000px;}
.wsb6{word-spacing:2.862000px;}
.ws34{word-spacing:2.880000px;}
.ws33{word-spacing:3.000000px;}
.wsb9{word-spacing:3.024000px;}
.ws61{word-spacing:3.060000px;}
.ws2{word-spacing:3.120000px;}
.ws8b{word-spacing:3.180000px;}
.ws36{word-spacing:3.240000px;}
.ws48{word-spacing:3.300000px;}
.ws6e{word-spacing:3.360000px;}
.wsd4{word-spacing:3.402000px;}
.ws6{word-spacing:3.420000px;}
.ws58{word-spacing:3.480000px;}
.ws1e{word-spacing:3.600000px;}
.ws55{word-spacing:3.660000px;}
.wsd3{word-spacing:3.726000px;}
.ws5d{word-spacing:3.840000px;}
.ws23{word-spacing:3.900000px;}
.ws3d{word-spacing:3.960000px;}
.ws11{word-spacing:4.020000px;}
.ws4c{word-spacing:4.080000px;}
.ws98{word-spacing:4.140000px;}
.ws3f{word-spacing:4.260000px;}
.ws60{word-spacing:4.380000px;}
.ws25{word-spacing:4.440000px;}
.ws8c{word-spacing:4.500000px;}
.ws31{word-spacing:4.560000px;}
.ws29{word-spacing:4.620000px;}
.ws5c{word-spacing:4.800000px;}
.ws5{word-spacing:4.980000px;}
.ws96{word-spacing:5.100000px;}
.ws64{word-spacing:5.220000px;}
.ws17{word-spacing:5.280000px;}
.ws59{word-spacing:5.340000px;}
.ws97{word-spacing:5.400000px;}
.ws9d{word-spacing:5.520000px;}
.ws63{word-spacing:5.580000px;}
.ws6f{word-spacing:5.880000px;}
.ws75{word-spacing:5.940000px;}
.ws28{word-spacing:6.060000px;}
.ws56{word-spacing:6.240000px;}
.ws90{word-spacing:6.360000px;}
.ws9e{word-spacing:6.540000px;}
.ws94{word-spacing:6.660000px;}
.ws22{word-spacing:6.840000px;}
.ws26{word-spacing:6.900000px;}
.ws44{word-spacing:7.020000px;}
.ws72{word-spacing:7.200000px;}
.ws5a{word-spacing:7.260000px;}
.ws7{word-spacing:7.980000px;}
.ws6d{word-spacing:8.040000px;}
.ws4f{word-spacing:8.100000px;}
.ws19{word-spacing:8.400000px;}
.ws16{word-spacing:8.460000px;}
.ws51{word-spacing:8.580000px;}
.ws24{word-spacing:8.760000px;}
.ws8e{word-spacing:8.880000px;}
.ws46{word-spacing:9.180000px;}
.ws8{word-spacing:9.240000px;}
.wsf{word-spacing:9.786000px;}
.wsd{word-spacing:10.980000px;}
.ws15{word-spacing:11.520000px;}
.ws14{word-spacing:11.640000px;}
.ws10{word-spacing:12.600000px;}
.ws1a{word-spacing:12.840000px;}
.wsc{word-spacing:13.980000px;}
.ws12{word-spacing:15.600000px;}
.ws3{word-spacing:19.200000px;}
.ws77{word-spacing:90.304200px;}
.ws7a{word-spacing:128.265600px;}
.ws84{word-spacing:229.301400px;}
.ws76{word-spacing:230.673600px;}
.ws82{word-spacing:231.569400px;}
.ws88{word-spacing:246.392400px;}
.ws86{word-spacing:253.655400px;}
.ws7e{word-spacing:257.327400px;}
.ws79{word-spacing:261.809400px;}
.ws80{word-spacing:262.132800px;}
.ws7c{word-spacing:264.346800px;}
.ws81{word-spacing:265.815000px;}
.ws67{word-spacing:284.402400px;}
.ws87{word-spacing:288.252600px;}
.ws83{word-spacing:288.360000px;}
.ws85{word-spacing:288.927000px;}
.ws65{word-spacing:289.676400px;}
.ws69{word-spacing:294.310800px;}
.ws7b{word-spacing:301.050600px;}
.ws68{word-spacing:301.668000px;}
.ws6a{word-spacing:321.999600px;}
.ws78{word-spacing:322.299600px;}
.ws7f{word-spacing:323.109600px;}
.ws7d{word-spacing:331.641600px;}
.ws66{word-spacing:343.315800px;}
.wsc8{word-spacing:2480.274000px;}
.wsdf{word-spacing:2496.906000px;}
.ws6b{word-spacing:2497.176000px;}
.ws92{word-spacing:2497.392000px;}
.wsa7{word-spacing:2497.446000px;}
.ws30{word-spacing:2497.500000px;}
.ws50{word-spacing:2497.554000px;}
.ws2e{word-spacing:2499.660000px;}
.wse{word-spacing:2500.416000px;}
.ws89{word-spacing:2501.982000px;}
.ws1{word-spacing:2514.186000px;}
._0{margin-left:-9.786000px;}
._1{margin-left:-5.460000px;}
._3f{margin-left:-3.137400px;}
._3d{margin-left:-1.197000px;}
._17{width:1.206000px;}
._3c{width:2.574000px;}
._41{width:4.004400px;}
._3e{width:5.353800px;}
._40{width:6.892200px;}
._16{width:21.919200px;}
._15{width:37.219200px;}
._12{width:106.506000px;}
._18{width:110.670000px;}
._35{width:275.913000px;}
._21{width:278.719800px;}
._32{width:286.092600px;}
._3b{width:303.858000px;}
._34{width:313.514400px;}
._2c{width:314.631000px;}
._1a{width:315.745800px;}
._37{width:319.923000px;}
._24{width:321.192000px;}
._1b{width:328.628400px;}
._28{width:330.238200px;}
._39{width:331.603800px;}
._2f{width:337.014600px;}
._26{width:339.163800px;}
._22{width:346.480800px;}
._2e{width:347.965800px;}
._1c{width:352.870800px;}
._1f{width:357.463800px;}
._1d{width:359.637000px;}
._2a{width:363.436800px;}
._20{width:380.934000px;}
._1e{width:387.981600px;}
._31{width:418.446000px;}
._36{width:424.746600px;}
._2d{width:434.844600px;}
._3a{width:438.624600px;}
._33{width:440.028000px;}
._38{width:442.377600px;}
._25{width:443.809200px;}
._19{width:450.556800px;}
._27{width:452.502600px;}
._29{width:458.955000px;}
._2b{width:461.088600px;}
._23{width:467.541600px;}
._30{width:475.209600px;}
._14{width:492.120000px;}
._4{width:507.618000px;}
._6{width:518.148000px;}
._13{width:676.422000px;}
._3{width:1044.432000px;}
._7{width:1063.980000px;}
._2{width:1180.836000px;}
._5{width:1182.348000px;}
._8{width:1219.608000px;}
._9{width:1348.182000px;}
._a{width:1359.900000px;}
._e{width:1608.030000px;}
._f{width:1625.256000px;}
._10{width:1626.498000px;}
._11{width:1640.376000px;}
._b{width:1642.968000px;}
._c{width:1644.912000px;}
._d{width:1646.208000px;}
.fc3{color:rgb(112,111,111);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(40,138,180);}
.fc0{color:rgb(58,122,140);}
.fs7{font-size:31.482000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:29.184000px;}
.y2{bottom:44.184000px;}
.y1{bottom:68.472750px;}
.y195{bottom:131.710200px;}
.y109{bottom:141.137400px;}
.y13a{bottom:141.374700px;}
.y194{bottom:147.910200px;}
.ya7{bottom:156.224700px;}
.y108{bottom:159.137400px;}
.y139{bottom:159.374700px;}
.y193{bottom:164.110200px;}
.y24{bottom:165.926250px;}
.y165{bottom:168.275400px;}
.ycf{bottom:169.008900px;}
.ya6{bottom:174.224700px;}
.y107{bottom:177.137400px;}
.y23{bottom:183.926250px;}
.y164{bottom:184.475400px;}
.y5c{bottom:185.710200px;}
.y138{bottom:185.878500px;}
.yce{bottom:187.008900px;}
.y192{bottom:188.814150px;}
.ya5{bottom:192.224700px;}
.y163{bottom:200.675400px;}
.y22{bottom:201.926250px;}
.y106{bottom:203.641350px;}
.y5b{bottom:203.710200px;}
.ycd{bottom:205.008900px;}
.y191{bottom:205.014150px;}
.y77{bottom:210.968700px;}
.ya4{bottom:218.728500px;}
.y21{bottom:219.926250px;}
.y105{bottom:221.641350px;}
.y5a{bottom:221.710200px;}
.y162{bottom:225.379350px;}
.y190{bottom:229.718100px;}
.ycc{bottom:231.512850px;}
.ya3{bottom:236.728500px;}
.y20{bottom:237.926250px;}
.y104{bottom:239.641350px;}
.y59{bottom:239.710200px;}
.y137{bottom:241.494300px;}
.y161{bottom:241.579350px;}
.y18f{bottom:245.918100px;}
.ycb{bottom:249.512850px;}
.ya2{bottom:254.728500px;}
.y76{bottom:255.507600px;}
.y1f{bottom:255.926250px;}
.y103{bottom:257.641350px;}
.y58{bottom:257.710200px;}
.y160{bottom:257.779350px;}
.y136{bottom:259.494300px;}
.y18e{bottom:262.118100px;}
.yca{bottom:267.512850px;}
.ya1{bottom:272.728500px;}
.y1e{bottom:273.926250px;}
.y102{bottom:275.641350px;}
.y57{bottom:275.710200px;}
.y135{bottom:277.494300px;}
.y15f{bottom:282.483300px;}
.yc9{bottom:285.512850px;}
.y75{bottom:286.690200px;}
.y18d{bottom:286.822050px;}
.ya0{bottom:290.728500px;}
.y1d{bottom:291.926250px;}
.y56{bottom:293.710200px;}
.y134{bottom:295.494300px;}
.y15e{bottom:298.683300px;}
.y101{bottom:302.145300px;}
.yc8{bottom:303.512850px;}
.y9f{bottom:308.728500px;}
.y1c{bottom:309.926250px;}
.y18c{bottom:311.526000px;}
.y55{bottom:311.710200px;}
.ye1{bottom:313.891800px;}
.y15d{bottom:314.883300px;}
.y74{bottom:317.872950px;}
.y100{bottom:320.145300px;}
.yc7{bottom:321.512850px;}
.y133{bottom:321.998250px;}
.y9e{bottom:326.728500px;}
.y18b{bottom:327.725850px;}
.y1b{bottom:327.926250px;}
.y54{bottom:329.710200px;}
.ye0{bottom:331.891800px;}
.yff{bottom:338.145300px;}
.yc6{bottom:339.512850px;}
.y15c{bottom:339.587250px;}
.y132{bottom:339.998250px;}
.y9d{bottom:344.728650px;}
.y1a{bottom:345.926250px;}
.y53{bottom:347.710200px;}
.y73{bottom:349.055700px;}
.ydf{bottom:349.891800px;}
.y18a{bottom:352.429950px;}
.y15b{bottom:355.787250px;}
.yfe{bottom:356.145300px;}
.yc5{bottom:357.512850px;}
.y131{bottom:357.998250px;}
.y9c{bottom:362.728650px;}
.y19{bottom:363.926250px;}
.y52{bottom:365.710200px;}
.yde{bottom:367.891800px;}
.y189{bottom:368.629950px;}
.yfd{bottom:374.145300px;}
.yc4{bottom:375.512850px;}
.y130{bottom:375.998250px;}
.y72{bottom:380.238300px;}
.y15a{bottom:380.491200px;}
.y18{bottom:381.926250px;}
.y51{bottom:383.710200px;}
.ydd{bottom:385.891800px;}
.y9b{bottom:389.232450px;}
.yfc{bottom:392.145300px;}
.y188{bottom:393.333900px;}
.yc3{bottom:393.512850px;}
.y12f{bottom:393.998250px;}
.y159{bottom:396.691200px;}
.y17{bottom:399.926250px;}
.y50{bottom:401.710200px;}
.ydc{bottom:403.891800px;}
.y9a{bottom:407.232450px;}
.y187{bottom:409.533900px;}
.yfb{bottom:410.145300px;}
.y71{bottom:411.421050px;}
.yc2{bottom:411.512850px;}
.y12e{bottom:411.998250px;}
.y4f{bottom:419.710200px;}
.y158{bottom:421.395150px;}
.y99{bottom:425.232450px;}
.y186{bottom:425.733900px;}
.y16{bottom:426.430200px;}
.yfa{bottom:428.145300px;}
.yc1{bottom:429.512850px;}
.y12d{bottom:429.998250px;}
.y157{bottom:437.595000px;}
.y4e{bottom:437.710200px;}
.y70{bottom:442.603800px;}
.y98{bottom:443.232450px;}
.y12c{bottom:447.998250px;}
.y185{bottom:450.437700px;}
.yf9{bottom:454.649250px;}
.yc0{bottom:456.016800px;}
.ydb{bottom:456.282450px;}
.y97{bottom:461.232450px;}
.y156{bottom:462.298950px;}
.y4d{bottom:464.214150px;}
.y12b{bottom:465.998250px;}
.y184{bottom:466.637850px;}
.yda{bottom:471.873900px;}
.y6f{bottom:473.786550px;}
.y15{bottom:474.193950px;}
.y155{bottom:478.499100px;}
.y4c{bottom:482.214150px;}
.y183{bottom:482.837700px;}
.y12a{bottom:483.998250px;}
.y96{bottom:487.736400px;}
.ybf{bottom:494.624700px;}
.y14{bottom:494.645850px;}
.y154{bottom:494.698950px;}
.y4b{bottom:500.214150px;}
.y129{bottom:501.998250px;}
.y6e{bottom:504.969150px;}
.y182{bottom:507.541650px;}
.ybe{bottom:512.624700px;}
.y13{bottom:515.097900px;}
.y4a{bottom:518.214150px;}
.yd9{bottom:518.647950px;}
.y153{bottom:519.402900px;}
.y128{bottom:519.998250px;}
.y181{bottom:523.741650px;}
.y95{bottom:526.344300px;}
.ybd{bottom:530.624700px;}
.yd8{bottom:534.239250px;}
.y152{bottom:535.602900px;}
.y6d{bottom:536.151900px;}
.y49{bottom:536.214150px;}
.y12{bottom:537.349800px;}
.y127{bottom:537.998250px;}
.y94{bottom:544.344300px;}
.y180{bottom:548.445600px;}
.ybc{bottom:548.624700px;}
.yf8{bottom:551.743200px;}
.y48{bottom:554.214150px;}
.y126{bottom:555.998250px;}
.y151{bottom:560.306850px;}
.y93{bottom:562.344300px;}
.y17f{bottom:564.645600px;}
.ybb{bottom:566.624700px;}
.y6c{bottom:567.334650px;}
.y47{bottom:572.214150px;}
.y125{bottom:573.998250px;}
.yf5{bottom:574.825950px;}
.y150{bottom:576.506850px;}
.y92{bottom:580.344300px;}
.y17e{bottom:580.845600px;}
.yd7{bottom:581.013300px;}
.yba{bottom:584.624700px;}
.y11{bottom:588.713550px;}
.yf4{bottom:591.025950px;}
.y124{bottom:591.998250px;}
.y14f{bottom:592.706850px;}
.yd6{bottom:596.604750px;}
.y91{bottom:598.344300px;}
.yf7{bottom:598.517250px;}
.y6b{bottom:598.517400px;}
.y46{bottom:598.718100px;}
.yb9{bottom:602.624700px;}
.y17d{bottom:605.549550px;}
.y10{bottom:609.165600px;}
.yf6{bottom:614.108700px;}
.y90{bottom:616.344300px;}
.y14e{bottom:617.410800px;}
.y123{bottom:618.502200px;}
.yb8{bottom:620.624700px;}
.y17c{bottom:621.749550px;}
.yf{bottom:629.617500px;}
.y6a{bottom:629.700000px;}
.y14d{bottom:633.610800px;}
.y8f{bottom:634.344300px;}
.y122{bottom:636.502200px;}
.y45{bottom:637.326000px;}
.y17b{bottom:637.949550px;}
.yb7{bottom:638.624700px;}
.yd4{bottom:643.378800px;}
.yd3{bottom:651.478800px;}
.ye{bottom:651.869550px;}
.y8e{bottom:652.344300px;}
.y121{bottom:654.502200px;}
.yb6{bottom:656.624700px;}
.y14c{bottom:658.314750px;}
.yd5{bottom:659.578650px;}
.yf3{bottom:660.882600px;}
.y69{bottom:660.882750px;}
.y17a{bottom:662.653500px;}
.y120{bottom:672.502200px;}
.y14b{bottom:674.514750px;}
.yf2{bottom:676.474050px;}
.y8d{bottom:678.848250px;}
.yb5{bottom:683.128650px;}
.y179{bottom:687.357450px;}
.y11f{bottom:690.502200px;}
.y14a{bottom:690.714750px;}
.y68{bottom:692.065500px;}
.y8c{bottom:696.848250px;}
.yef{bottom:699.556800px;}
.yd{bottom:703.233300px;}
.y178{bottom:703.557450px;}
.yd2{bottom:703.892400px;}
.y11e{bottom:708.502200px;}
.y8b{bottom:714.848250px;}
.y149{bottom:715.418700px;}
.yee{bottom:715.756650px;}
.yb4{bottom:721.736400px;}
.y44{bottom:722.705400px;}
.yf1{bottom:723.248100px;}
.yc{bottom:723.685200px;}
.y11d{bottom:726.502200px;}
.y177{bottom:728.261400px;}
.y148{bottom:731.618700px;}
.y8a{bottom:732.848250px;}
.yf0{bottom:738.839400px;}
.y67{bottom:739.448250px;}
.yd1{bottom:741.352200px;}
.yb{bottom:744.137250px;}
.y176{bottom:744.461400px;}
.y11c{bottom:744.502200px;}
.y43{bottom:747.409350px;}
.yb3{bottom:748.240350px;}
.y147{bottom:756.322650px;}
.y89{bottom:759.352200px;}
.y11b{bottom:762.502200px;}
.yb2{bottom:766.240350px;}
.ya{bottom:766.389150px;}
.y175{bottom:769.165350px;}
.y66{bottom:770.630850px;}
.y146{bottom:772.522650px;}
.y42{bottom:776.365350px;}
.y88{bottom:777.352200px;}
.yb1{bottom:784.240350px;}
.yed{bottom:785.613600px;}
.y11a{bottom:789.006150px;}
.y174{bottom:793.869300px;}
.y41{bottom:794.365350px;}
.y87{bottom:795.352200px;}
.y145{bottom:797.226600px;}
.yec{bottom:801.205050px;}
.y65{bottom:801.813600px;}
.y119{bottom:807.006150px;}
.y9{bottom:809.249100px;}
.y173{bottom:810.069300px;}
.yb0{bottom:810.744300px;}
.y40{bottom:812.365350px;}
.y86{bottom:813.352200px;}
.y144{bottom:813.426600px;}
.y118{bottom:825.006150px;}
.yaf{bottom:828.744300px;}
.y3f{bottom:830.365350px;}
.yd0{bottom:831.352200px;}
.ye9{bottom:832.387800px;}
.y64{bottom:832.996350px;}
.y172{bottom:834.773250px;}
.y8{bottom:836.249100px;}
.y143{bottom:838.130550px;}
.y85{bottom:839.856150px;}
.yeb{bottom:847.978950px;}
.y3e{bottom:848.365350px;}
.y171{bottom:850.973250px;}
.y117{bottom:851.509950px;}
.y142{bottom:854.330550px;}
.yae{bottom:855.248250px;}
.y84{bottom:857.856150px;}
.y7{bottom:863.249100px;}
.yea{bottom:863.570400px;}
.y63{bottom:864.178950px;}
.y3d{bottom:866.365350px;}
.y170{bottom:867.173250px;}
.y116{bottom:869.509950px;}
.y141{bottom:870.530400px;}
.y83{bottom:875.856150px;}
.yad{bottom:881.752200px;}
.y3c{bottom:884.365350px;}
.y115{bottom:887.509950px;}
.y16f{bottom:891.877200px;}
.y82{bottom:893.856150px;}
.y140{bottom:895.234500px;}
.y62{bottom:895.361700px;}
.y3b{bottom:902.365350px;}
.y6{bottom:903.005100px;}
.y114{bottom:905.509950px;}
.y16e{bottom:908.077200px;}
.ye8{bottom:910.344600px;}
.y13f{bottom:911.434500px;}
.y81{bottom:911.856150px;}
.yac{bottom:920.360100px;}
.y3a{bottom:920.365350px;}
.y113{bottom:923.509950px;}
.y16d{bottom:924.277200px;}
.ye7{bottom:925.935900px;}
.y61{bottom:926.544450px;}
.y13e{bottom:927.634500px;}
.y80{bottom:929.856150px;}
.y5{bottom:930.005100px;}
.yab{bottom:938.360100px;}
.y39{bottom:938.365350px;}
.y112{bottom:941.509950px;}
.y7f{bottom:947.856150px;}
.y16c{bottom:948.981150px;}
.y13d{bottom:952.338450px;}
.yaa{bottom:956.360100px;}
.y38{bottom:956.365350px;}
.y4{bottom:957.005100px;}
.ye4{bottom:957.118650px;}
.y60{bottom:957.727050px;}
.y111{bottom:959.509950px;}
.y16b{bottom:965.181000px;}
.y7e{bottom:965.856150px;}
.y13c{bottom:968.538450px;}
.ye6{bottom:972.709950px;}
.ya9{bottom:974.360100px;}
.y37{bottom:974.365350px;}
.y110{bottom:977.509950px;}
.y16a{bottom:981.381000px;}
.y7d{bottom:983.856150px;}
.ye5{bottom:988.301400px;}
.y5f{bottom:988.909950px;}
.ya8{bottom:992.360100px;}
.y36{bottom:992.365350px;}
.y10f{bottom:995.509950px;}
.y13b{bottom:1001.746200px;}
.y169{bottom:1006.084950px;}
.y7c{bottom:1010.360100px;}
.y10e{bottom:1013.509950px;}
.y35{bottom:1018.869300px;}
.y5e{bottom:1020.092550px;}
.y168{bottom:1022.284950px;}
.y7b{bottom:1028.360100px;}
.y10d{bottom:1031.509950px;}
.ye3{bottom:1035.075300px;}
.y196{bottom:1038.485100px;}
.y2e{bottom:1042.915800px;}
.y7a{bottom:1046.360100px;}
.y167{bottom:1046.988900px;}
.y5d{bottom:1051.275300px;}
.y2d{bottom:1057.315950px;}
.y10c{bottom:1058.014050px;}
.y166{bottom:1063.189050px;}
.y79{bottom:1064.360100px;}
.y34{bottom:1070.884950px;}
.y2c{bottom:1071.715800px;}
.y10b{bottom:1076.014050px;}
.ye2{bottom:1079.389050px;}
.y2b{bottom:1086.115950px;}
.y78{bottom:1090.864050px;}
.y10a{bottom:1094.014050px;}
.y33{bottom:1095.588900px;}
.y2a{bottom:1100.515800px;}
.y29{bottom:1114.915800px;}
.y28{bottom:1129.315800px;}
.y2f{bottom:1134.707850px;}
.y27{bottom:1143.715800px;}
.y30{bottom:1151.716650px;}
.y26{bottom:1158.115800px;}
.y25{bottom:1172.515800px;}
.y31{bottom:1180.812300px;}
.y32{bottom:1197.820200px;}
.h3{height:33.912000px;}
.hc{height:38.808000px;}
.hb{height:39.564000px;}
.hd{height:43.254000px;}
.ha{height:44.832000px;}
.h9{height:45.216000px;}
.h8{height:48.060000px;}
.hf{height:49.896000px;}
.h2{height:50.868000px;}
.h10{height:54.317423px;}
.h7{height:56.520000px;}
.he{height:57.672000px;}
.h6{height:67.824000px;}
.h5{height:73.920000px;}
.h11{height:82.295400px;}
.h4{height:88.704000px;}
.h12{height:113.233200px;}
.h13{height:113.233800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:89.291250px;}
.x1{left:91.417350px;}
.x2{left:93.499950px;}
.x12{left:97.795200px;}
.x19{left:108.684900px;}
.x23{left:110.551200px;}
.x1e{left:113.976900px;}
.x17{left:119.055150px;}
.xd{left:131.811000px;}
.x18{left:140.314950px;}
.x10{left:230.756850px;}
.x21{left:259.369950px;}
.x15{left:274.603800px;}
.xf{left:298.626900px;}
.x13{left:326.942700px;}
.x16{left:333.933600px;}
.x22{left:335.905500px;}
.x14{left:348.009000px;}
.xe{left:349.102500px;}
.x1d{left:352.913400px;}
.x1f{left:377.459250px;}
.x11{left:381.556200px;}
.x20{left:435.796500px;}
.x1a{left:447.531150px;}
.xb{left:530.884800px;}
.x6{left:534.651150px;}
.x8{left:548.474100px;}
.x1b{left:576.536250px;}
.xa{left:589.495950px;}
.x4{left:610.232100px;}
.x5{left:639.779700px;}
.x1c{left:673.869300px;}
.x7{left:679.477500px;}
.x9{left:688.616850px;}
.xc{left:694.138050px;}
@media print{
.v1{vertical-align:-28.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.727467pt;}
.v3{vertical-align:28.799467pt;}
.v4{vertical-align:55.435733pt;}
.v5{vertical-align:71.419733pt;}
.ls1{letter-spacing:-2.133333pt;}
.ls30{letter-spacing:-1.440000pt;}
.ls3{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.048000pt;}
.ls2a{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.144000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.196800pt;}
.ls16{letter-spacing:0.211200pt;}
.ls10{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.312000pt;}
.ls2d{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.432000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.504000pt;}
.ls9{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.624000pt;}
.ls32{letter-spacing:0.672000pt;}
.ls1d{letter-spacing:0.720000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.792000pt;}
.ls24{letter-spacing:0.816000pt;}
.lsb{letter-spacing:0.864000pt;}
.ls2b{letter-spacing:0.912000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls33{letter-spacing:1.008000pt;}
.ls18{letter-spacing:1.056000pt;}
.ls5{letter-spacing:1.104000pt;}
.ls19{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.200000pt;}
.ls29{letter-spacing:1.248000pt;}
.ls1f{letter-spacing:1.392000pt;}
.ls17{letter-spacing:1.416000pt;}
.lsc{letter-spacing:1.560000pt;}
.ls31{letter-spacing:1.573867pt;}
.ls20{letter-spacing:1.584000pt;}
.ls1b{letter-spacing:1.632000pt;}
.ls22{letter-spacing:1.680000pt;}
.ls26{letter-spacing:1.824000pt;}
.ls25{letter-spacing:2.064000pt;}
.lsd{letter-spacing:2.256000pt;}
.ls11{letter-spacing:2.400000pt;}
.ls1e{letter-spacing:2.448000pt;}
.lse{letter-spacing:2.544000pt;}
.ls12{letter-spacing:2.640000pt;}
.ls27{letter-spacing:2.976000pt;}
.ls28{letter-spacing:3.360000pt;}
.wsc5{word-spacing:-17.664000pt;}
.wsa5{word-spacing:-16.944000pt;}
.wsa4{word-spacing:-16.848000pt;}
.ws2f{word-spacing:-15.893333pt;}
.wsdd{word-spacing:-15.888000pt;}
.wsa2{word-spacing:-15.504000pt;}
.wsc3{word-spacing:-15.264000pt;}
.wsc6{word-spacing:-15.168000pt;}
.wsde{word-spacing:-15.072000pt;}
.wsa3{word-spacing:-14.832000pt;}
.wsc7{word-spacing:-14.640000pt;}
.wsa6{word-spacing:-14.496000pt;}
.wsa1{word-spacing:-14.304000pt;}
.wsc4{word-spacing:-12.864000pt;}
.ws4{word-spacing:-8.266667pt;}
.ws13{word-spacing:-6.186667pt;}
.ws9{word-spacing:-5.546667pt;}
.ws70{word-spacing:-3.946667pt;}
.ws5f{word-spacing:-3.520000pt;}
.wsd2{word-spacing:-2.976000pt;}
.ws45{word-spacing:-2.720000pt;}
.ws1f{word-spacing:-2.666667pt;}
.ws8f{word-spacing:-2.560000pt;}
.ws40{word-spacing:-2.506667pt;}
.ws47{word-spacing:-2.453333pt;}
.wsba{word-spacing:-2.400000pt;}
.ws1b{word-spacing:-2.293333pt;}
.wsb7{word-spacing:-2.256000pt;}
.ws41{word-spacing:-2.240000pt;}
.ws4a{word-spacing:-2.133333pt;}
.ws95{word-spacing:-2.026667pt;}
.ws71{word-spacing:-1.973333pt;}
.ws39{word-spacing:-1.866667pt;}
.ws5e{word-spacing:-1.813333pt;}
.ws91{word-spacing:-1.706667pt;}
.ws3b{word-spacing:-1.600000pt;}
.ws73{word-spacing:-1.493333pt;}
.wsd6{word-spacing:-1.392000pt;}
.wsd5{word-spacing:-1.248000pt;}
.ws2d{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.120000pt;}
.wsae{word-spacing:-1.104000pt;}
.ws43{word-spacing:-1.013333pt;}
.ws53{word-spacing:-0.906667pt;}
.wsca{word-spacing:-0.864000pt;}
.wsdc{word-spacing:-0.816000pt;}
.wsda{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.693333pt;}
.wse1{word-spacing:-0.672000pt;}
.ws1d{word-spacing:-0.586667pt;}
.ws5b{word-spacing:-0.480000pt;}
.ws3c{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.373333pt;}
.wsa9{word-spacing:-0.336000pt;}
.ws2c{word-spacing:-0.320000pt;}
.wsdb{word-spacing:-0.288000pt;}
.ws52{word-spacing:-0.266667pt;}
.ws74{word-spacing:-0.213333pt;}
.wsc1{word-spacing:-0.192000pt;}
.wsd8{word-spacing:-0.096000pt;}
.wsa{word-spacing:-0.053333pt;}
.wsd7{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.053333pt;}
.ws38{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.144000pt;}
.ws9c{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.213333pt;}
.wsb3{word-spacing:0.240000pt;}
.ws8a{word-spacing:0.266667pt;}
.wsab{word-spacing:0.288000pt;}
.wscf{word-spacing:0.336000pt;}
.ws6c{word-spacing:0.373333pt;}
.ws9a{word-spacing:0.426667pt;}
.wsbc{word-spacing:0.432000pt;}
.ws37{word-spacing:0.480000pt;}
.wsb0{word-spacing:0.528000pt;}
.ws27{word-spacing:0.533333pt;}
.wsaf{word-spacing:0.576000pt;}
.wsbb{word-spacing:0.672000pt;}
.wse0{word-spacing:0.720000pt;}
.wsb1{word-spacing:0.768000pt;}
.ws18{word-spacing:0.800000pt;}
.wsb2{word-spacing:0.816000pt;}
.ws93{word-spacing:0.853333pt;}
.wsbd{word-spacing:0.864000pt;}
.wsd9{word-spacing:0.912000pt;}
.wsa0{word-spacing:0.960000pt;}
.wsc9{word-spacing:1.008000pt;}
.wsa8{word-spacing:1.013333pt;}
.ws2b{word-spacing:1.066667pt;}
.wsac{word-spacing:1.104000pt;}
.ws35{word-spacing:1.120000pt;}
.ws4b{word-spacing:1.173333pt;}
.wsc0{word-spacing:1.200000pt;}
.ws62{word-spacing:1.226667pt;}
.wsad{word-spacing:1.248000pt;}
.ws1c{word-spacing:1.333333pt;}
.ws9b{word-spacing:1.386667pt;}
.wsbf{word-spacing:1.392000pt;}
.wscc{word-spacing:1.440000pt;}
.wsb{word-spacing:1.493333pt;}
.wsb4{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.546667pt;}
.wscd{word-spacing:1.584000pt;}
.ws8d{word-spacing:1.600000pt;}
.wsc2{word-spacing:1.632000pt;}
.ws99{word-spacing:1.653333pt;}
.ws3a{word-spacing:1.706667pt;}
.wsce{word-spacing:1.728000pt;}
.ws21{word-spacing:1.760000pt;}
.wsd1{word-spacing:1.776000pt;}
.ws49{word-spacing:1.813333pt;}
.ws32{word-spacing:1.920000pt;}
.wsd0{word-spacing:2.064000pt;}
.ws42{word-spacing:2.293333pt;}
.wsb5{word-spacing:2.304000pt;}
.wsb8{word-spacing:2.352000pt;}
.ws57{word-spacing:2.400000pt;}
.wscb{word-spacing:2.496000pt;}
.ws3e{word-spacing:2.506667pt;}
.wsb6{word-spacing:2.544000pt;}
.ws34{word-spacing:2.560000pt;}
.ws33{word-spacing:2.666667pt;}
.wsb9{word-spacing:2.688000pt;}
.ws61{word-spacing:2.720000pt;}
.ws2{word-spacing:2.773333pt;}
.ws8b{word-spacing:2.826667pt;}
.ws36{word-spacing:2.880000pt;}
.ws48{word-spacing:2.933333pt;}
.ws6e{word-spacing:2.986667pt;}
.wsd4{word-spacing:3.024000pt;}
.ws6{word-spacing:3.040000pt;}
.ws58{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.200000pt;}
.ws55{word-spacing:3.253333pt;}
.wsd3{word-spacing:3.312000pt;}
.ws5d{word-spacing:3.413333pt;}
.ws23{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.520000pt;}
.ws11{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.626667pt;}
.ws98{word-spacing:3.680000pt;}
.ws3f{word-spacing:3.786667pt;}
.ws60{word-spacing:3.893333pt;}
.ws25{word-spacing:3.946667pt;}
.ws8c{word-spacing:4.000000pt;}
.ws31{word-spacing:4.053333pt;}
.ws29{word-spacing:4.106667pt;}
.ws5c{word-spacing:4.266667pt;}
.ws5{word-spacing:4.426667pt;}
.ws96{word-spacing:4.533333pt;}
.ws64{word-spacing:4.640000pt;}
.ws17{word-spacing:4.693333pt;}
.ws59{word-spacing:4.746667pt;}
.ws97{word-spacing:4.800000pt;}
.ws9d{word-spacing:4.906667pt;}
.ws63{word-spacing:4.960000pt;}
.ws6f{word-spacing:5.226667pt;}
.ws75{word-spacing:5.280000pt;}
.ws28{word-spacing:5.386667pt;}
.ws56{word-spacing:5.546667pt;}
.ws90{word-spacing:5.653333pt;}
.ws9e{word-spacing:5.813333pt;}
.ws94{word-spacing:5.920000pt;}
.ws22{word-spacing:6.080000pt;}
.ws26{word-spacing:6.133333pt;}
.ws44{word-spacing:6.240000pt;}
.ws72{word-spacing:6.400000pt;}
.ws5a{word-spacing:6.453333pt;}
.ws7{word-spacing:7.093333pt;}
.ws6d{word-spacing:7.146667pt;}
.ws4f{word-spacing:7.200000pt;}
.ws19{word-spacing:7.466667pt;}
.ws16{word-spacing:7.520000pt;}
.ws51{word-spacing:7.626667pt;}
.ws24{word-spacing:7.786667pt;}
.ws8e{word-spacing:7.893333pt;}
.ws46{word-spacing:8.160000pt;}
.ws8{word-spacing:8.213333pt;}
.wsf{word-spacing:8.698667pt;}
.wsd{word-spacing:9.760000pt;}
.ws15{word-spacing:10.240000pt;}
.ws14{word-spacing:10.346667pt;}
.ws10{word-spacing:11.200000pt;}
.ws1a{word-spacing:11.413333pt;}
.wsc{word-spacing:12.426667pt;}
.ws12{word-spacing:13.866667pt;}
.ws3{word-spacing:17.066667pt;}
.ws77{word-spacing:80.270400pt;}
.ws7a{word-spacing:114.013867pt;}
.ws84{word-spacing:203.823467pt;}
.ws76{word-spacing:205.043200pt;}
.ws82{word-spacing:205.839467pt;}
.ws88{word-spacing:219.015467pt;}
.ws86{word-spacing:225.471467pt;}
.ws7e{word-spacing:228.735467pt;}
.ws79{word-spacing:232.719467pt;}
.ws80{word-spacing:233.006933pt;}
.ws7c{word-spacing:234.974933pt;}
.ws81{word-spacing:236.280000pt;}
.ws67{word-spacing:252.802133pt;}
.ws87{word-spacing:256.224533pt;}
.ws83{word-spacing:256.320000pt;}
.ws85{word-spacing:256.824000pt;}
.ws65{word-spacing:257.490133pt;}
.ws69{word-spacing:261.609600pt;}
.ws7b{word-spacing:267.600533pt;}
.ws68{word-spacing:268.149333pt;}
.ws6a{word-spacing:286.221867pt;}
.ws78{word-spacing:286.488533pt;}
.ws7f{word-spacing:287.208533pt;}
.ws7d{word-spacing:294.792533pt;}
.ws66{word-spacing:305.169600pt;}
.wsc8{word-spacing:2204.688000pt;}
.wsdf{word-spacing:2219.472000pt;}
.ws6b{word-spacing:2219.712000pt;}
.ws92{word-spacing:2219.904000pt;}
.wsa7{word-spacing:2219.952000pt;}
.ws30{word-spacing:2220.000000pt;}
.ws50{word-spacing:2220.048000pt;}
.ws2e{word-spacing:2221.920000pt;}
.wse{word-spacing:2222.592000pt;}
.ws89{word-spacing:2223.984000pt;}
.ws1{word-spacing:2234.832000pt;}
._0{margin-left:-8.698667pt;}
._1{margin-left:-4.853333pt;}
._3f{margin-left:-2.788800pt;}
._3d{margin-left:-1.064000pt;}
._17{width:1.072000pt;}
._3c{width:2.288000pt;}
._41{width:3.559467pt;}
._3e{width:4.758933pt;}
._40{width:6.126400pt;}
._16{width:19.483733pt;}
._15{width:33.083733pt;}
._12{width:94.672000pt;}
._18{width:98.373333pt;}
._35{width:245.256000pt;}
._21{width:247.750933pt;}
._32{width:254.304533pt;}
._3b{width:270.096000pt;}
._34{width:278.679467pt;}
._2c{width:279.672000pt;}
._1a{width:280.662933pt;}
._37{width:284.376000pt;}
._24{width:285.504000pt;}
._1b{width:292.114133pt;}
._28{width:293.545067pt;}
._39{width:294.758933pt;}
._2f{width:299.568533pt;}
._26{width:301.478933pt;}
._22{width:307.982933pt;}
._2e{width:309.302933pt;}
._1c{width:313.662933pt;}
._1f{width:317.745600pt;}
._1d{width:319.677333pt;}
._2a{width:323.054933pt;}
._20{width:338.608000pt;}
._1e{width:344.872533pt;}
._31{width:371.952000pt;}
._36{width:377.552533pt;}
._2d{width:386.528533pt;}
._3a{width:389.888533pt;}
._33{width:391.136000pt;}
._38{width:393.224533pt;}
._25{width:394.497067pt;}
._19{width:400.494933pt;}
._27{width:402.224533pt;}
._29{width:407.960000pt;}
._2b{width:409.856533pt;}
._23{width:415.592533pt;}
._30{width:422.408533pt;}
._14{width:437.440000pt;}
._4{width:451.216000pt;}
._6{width:460.576000pt;}
._13{width:601.264000pt;}
._3{width:928.384000pt;}
._7{width:945.760000pt;}
._2{width:1049.632000pt;}
._5{width:1050.976000pt;}
._8{width:1084.096000pt;}
._9{width:1198.384000pt;}
._a{width:1208.800000pt;}
._e{width:1429.360000pt;}
._f{width:1444.672000pt;}
._10{width:1445.776000pt;}
._11{width:1458.112000pt;}
._b{width:1460.416000pt;}
._c{width:1462.144000pt;}
._d{width:1463.296000pt;}
.fs7{font-size:27.984000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:25.941333pt;}
.y2{bottom:39.274667pt;}
.y1{bottom:60.864667pt;}
.y195{bottom:117.075733pt;}
.y109{bottom:125.455467pt;}
.y13a{bottom:125.666400pt;}
.y194{bottom:131.475733pt;}
.ya7{bottom:138.866400pt;}
.y108{bottom:141.455467pt;}
.y139{bottom:141.666400pt;}
.y193{bottom:145.875733pt;}
.y24{bottom:147.490000pt;}
.y165{bottom:149.578133pt;}
.ycf{bottom:150.230133pt;}
.ya6{bottom:154.866400pt;}
.y107{bottom:157.455467pt;}
.y23{bottom:163.490000pt;}
.y164{bottom:163.978133pt;}
.y5c{bottom:165.075733pt;}
.y138{bottom:165.225333pt;}
.yce{bottom:166.230133pt;}
.y192{bottom:167.834800pt;}
.ya5{bottom:170.866400pt;}
.y163{bottom:178.378133pt;}
.y22{bottom:179.490000pt;}
.y106{bottom:181.014533pt;}
.y5b{bottom:181.075733pt;}
.ycd{bottom:182.230133pt;}
.y191{bottom:182.234800pt;}
.y77{bottom:187.527733pt;}
.ya4{bottom:194.425333pt;}
.y21{bottom:195.490000pt;}
.y105{bottom:197.014533pt;}
.y5a{bottom:197.075733pt;}
.y162{bottom:200.337200pt;}
.y190{bottom:204.193867pt;}
.ycc{bottom:205.789200pt;}
.ya3{bottom:210.425333pt;}
.y20{bottom:211.490000pt;}
.y104{bottom:213.014533pt;}
.y59{bottom:213.075733pt;}
.y137{bottom:214.661600pt;}
.y161{bottom:214.737200pt;}
.y18f{bottom:218.593867pt;}
.ycb{bottom:221.789200pt;}
.ya2{bottom:226.425333pt;}
.y76{bottom:227.117867pt;}
.y1f{bottom:227.490000pt;}
.y103{bottom:229.014533pt;}
.y58{bottom:229.075733pt;}
.y160{bottom:229.137200pt;}
.y136{bottom:230.661600pt;}
.y18e{bottom:232.993867pt;}
.yca{bottom:237.789200pt;}
.ya1{bottom:242.425333pt;}
.y1e{bottom:243.490000pt;}
.y102{bottom:245.014533pt;}
.y57{bottom:245.075733pt;}
.y135{bottom:246.661600pt;}
.y15f{bottom:251.096267pt;}
.yc9{bottom:253.789200pt;}
.y75{bottom:254.835733pt;}
.y18d{bottom:254.952933pt;}
.ya0{bottom:258.425333pt;}
.y1d{bottom:259.490000pt;}
.y56{bottom:261.075733pt;}
.y134{bottom:262.661600pt;}
.y15e{bottom:265.496267pt;}
.y101{bottom:268.573600pt;}
.yc8{bottom:269.789200pt;}
.y9f{bottom:274.425333pt;}
.y1c{bottom:275.490000pt;}
.y18c{bottom:276.912000pt;}
.y55{bottom:277.075733pt;}
.ye1{bottom:279.014933pt;}
.y15d{bottom:279.896267pt;}
.y74{bottom:282.553733pt;}
.y100{bottom:284.573600pt;}
.yc7{bottom:285.789200pt;}
.y133{bottom:286.220667pt;}
.y9e{bottom:290.425333pt;}
.y18b{bottom:291.311867pt;}
.y1b{bottom:291.490000pt;}
.y54{bottom:293.075733pt;}
.ye0{bottom:295.014933pt;}
.yff{bottom:300.573600pt;}
.yc6{bottom:301.789200pt;}
.y15c{bottom:301.855333pt;}
.y132{bottom:302.220667pt;}
.y9d{bottom:306.425467pt;}
.y1a{bottom:307.490000pt;}
.y53{bottom:309.075733pt;}
.y73{bottom:310.271733pt;}
.ydf{bottom:311.014933pt;}
.y18a{bottom:313.271067pt;}
.y15b{bottom:316.255333pt;}
.yfe{bottom:316.573600pt;}
.yc5{bottom:317.789200pt;}
.y131{bottom:318.220667pt;}
.y9c{bottom:322.425467pt;}
.y19{bottom:323.490000pt;}
.y52{bottom:325.075733pt;}
.yde{bottom:327.014933pt;}
.y189{bottom:327.671067pt;}
.yfd{bottom:332.573600pt;}
.yc4{bottom:333.789200pt;}
.y130{bottom:334.220667pt;}
.y72{bottom:337.989600pt;}
.y15a{bottom:338.214400pt;}
.y18{bottom:339.490000pt;}
.y51{bottom:341.075733pt;}
.ydd{bottom:343.014933pt;}
.y9b{bottom:345.984400pt;}
.yfc{bottom:348.573600pt;}
.y188{bottom:349.630133pt;}
.yc3{bottom:349.789200pt;}
.y12f{bottom:350.220667pt;}
.y159{bottom:352.614400pt;}
.y17{bottom:355.490000pt;}
.y50{bottom:357.075733pt;}
.ydc{bottom:359.014933pt;}
.y9a{bottom:361.984400pt;}
.y187{bottom:364.030133pt;}
.yfb{bottom:364.573600pt;}
.y71{bottom:365.707600pt;}
.yc2{bottom:365.789200pt;}
.y12e{bottom:366.220667pt;}
.y4f{bottom:373.075733pt;}
.y158{bottom:374.573467pt;}
.y99{bottom:377.984400pt;}
.y186{bottom:378.430133pt;}
.y16{bottom:379.049067pt;}
.yfa{bottom:380.573600pt;}
.yc1{bottom:381.789200pt;}
.y12d{bottom:382.220667pt;}
.y157{bottom:388.973333pt;}
.y4e{bottom:389.075733pt;}
.y70{bottom:393.425600pt;}
.y98{bottom:393.984400pt;}
.y12c{bottom:398.220667pt;}
.y185{bottom:400.389067pt;}
.yf9{bottom:404.132667pt;}
.yc0{bottom:405.348267pt;}
.ydb{bottom:405.584400pt;}
.y97{bottom:409.984400pt;}
.y156{bottom:410.932400pt;}
.y4d{bottom:412.634800pt;}
.y12b{bottom:414.220667pt;}
.y184{bottom:414.789200pt;}
.yda{bottom:419.443467pt;}
.y6f{bottom:421.143600pt;}
.y15{bottom:421.505733pt;}
.y155{bottom:425.332533pt;}
.y4c{bottom:428.634800pt;}
.y183{bottom:429.189067pt;}
.y12a{bottom:430.220667pt;}
.y96{bottom:433.543467pt;}
.ybf{bottom:439.666400pt;}
.y14{bottom:439.685200pt;}
.y154{bottom:439.732400pt;}
.y4b{bottom:444.634800pt;}
.y129{bottom:446.220667pt;}
.y6e{bottom:448.861467pt;}
.y182{bottom:451.148133pt;}
.ybe{bottom:455.666400pt;}
.y13{bottom:457.864800pt;}
.y4a{bottom:460.634800pt;}
.yd9{bottom:461.020400pt;}
.y153{bottom:461.691467pt;}
.y128{bottom:462.220667pt;}
.y181{bottom:465.548133pt;}
.y95{bottom:467.861600pt;}
.ybd{bottom:471.666400pt;}
.yd8{bottom:474.879333pt;}
.y152{bottom:476.091467pt;}
.y6d{bottom:476.579467pt;}
.y49{bottom:476.634800pt;}
.y12{bottom:477.644267pt;}
.y127{bottom:478.220667pt;}
.y94{bottom:483.861600pt;}
.y180{bottom:487.507200pt;}
.ybc{bottom:487.666400pt;}
.yf8{bottom:490.438400pt;}
.y48{bottom:492.634800pt;}
.y126{bottom:494.220667pt;}
.y151{bottom:498.050533pt;}
.y93{bottom:499.861600pt;}
.y17f{bottom:501.907200pt;}
.ybb{bottom:503.666400pt;}
.y6c{bottom:504.297467pt;}
.y47{bottom:508.634800pt;}
.y125{bottom:510.220667pt;}
.yf5{bottom:510.956400pt;}
.y150{bottom:512.450533pt;}
.y92{bottom:515.861600pt;}
.y17e{bottom:516.307200pt;}
.yd7{bottom:516.456267pt;}
.yba{bottom:519.666400pt;}
.y11{bottom:523.300933pt;}
.yf4{bottom:525.356400pt;}
.y124{bottom:526.220667pt;}
.y14f{bottom:526.850533pt;}
.yd6{bottom:530.315333pt;}
.y91{bottom:531.861600pt;}
.yf7{bottom:532.015333pt;}
.y6b{bottom:532.015467pt;}
.y46{bottom:532.193867pt;}
.yb9{bottom:535.666400pt;}
.y17d{bottom:538.266267pt;}
.y10{bottom:541.480533pt;}
.yf6{bottom:545.874400pt;}
.y90{bottom:547.861600pt;}
.y14e{bottom:548.809600pt;}
.y123{bottom:549.779733pt;}
.yb8{bottom:551.666400pt;}
.y17c{bottom:552.666267pt;}
.yf{bottom:559.660000pt;}
.y6a{bottom:559.733333pt;}
.y14d{bottom:563.209600pt;}
.y8f{bottom:563.861600pt;}
.y122{bottom:565.779733pt;}
.y45{bottom:566.512000pt;}
.y17b{bottom:567.066267pt;}
.yb7{bottom:567.666400pt;}
.yd4{bottom:571.892267pt;}
.yd3{bottom:579.092267pt;}
.ye{bottom:579.439600pt;}
.y8e{bottom:579.861600pt;}
.y121{bottom:581.779733pt;}
.yb6{bottom:583.666400pt;}
.y14c{bottom:585.168667pt;}
.yd5{bottom:586.292133pt;}
.yf3{bottom:587.451200pt;}
.y69{bottom:587.451333pt;}
.y17a{bottom:589.025333pt;}
.y120{bottom:597.779733pt;}
.y14b{bottom:599.568667pt;}
.yf2{bottom:601.310267pt;}
.y8d{bottom:603.420667pt;}
.yb5{bottom:607.225467pt;}
.y179{bottom:610.984400pt;}
.y11f{bottom:613.779733pt;}
.y14a{bottom:613.968667pt;}
.y68{bottom:615.169333pt;}
.y8c{bottom:619.420667pt;}
.yef{bottom:621.828267pt;}
.yd{bottom:625.096267pt;}
.y178{bottom:625.384400pt;}
.yd2{bottom:625.682133pt;}
.y11e{bottom:629.779733pt;}
.y8b{bottom:635.420667pt;}
.y149{bottom:635.927733pt;}
.yee{bottom:636.228133pt;}
.yb4{bottom:641.543467pt;}
.y44{bottom:642.404800pt;}
.yf1{bottom:642.887200pt;}
.yc{bottom:643.275733pt;}
.y11d{bottom:645.779733pt;}
.y177{bottom:647.343467pt;}
.y148{bottom:650.327733pt;}
.y8a{bottom:651.420667pt;}
.yf0{bottom:656.746133pt;}
.y67{bottom:657.287333pt;}
.yd1{bottom:658.979733pt;}
.yb{bottom:661.455333pt;}
.y176{bottom:661.743467pt;}
.y11c{bottom:661.779733pt;}
.y43{bottom:664.363867pt;}
.yb3{bottom:665.102533pt;}
.y147{bottom:672.286800pt;}
.y89{bottom:674.979733pt;}
.y11b{bottom:677.779733pt;}
.yb2{bottom:681.102533pt;}
.ya{bottom:681.234800pt;}
.y175{bottom:683.702533pt;}
.y66{bottom:685.005200pt;}
.y146{bottom:686.686800pt;}
.y42{bottom:690.102533pt;}
.y88{bottom:690.979733pt;}
.yb1{bottom:697.102533pt;}
.yed{bottom:698.323200pt;}
.y11a{bottom:701.338800pt;}
.y174{bottom:705.661600pt;}
.y41{bottom:706.102533pt;}
.y87{bottom:706.979733pt;}
.y145{bottom:708.645867pt;}
.yec{bottom:712.182267pt;}
.y65{bottom:712.723200pt;}
.y119{bottom:717.338800pt;}
.y9{bottom:719.332533pt;}
.y173{bottom:720.061600pt;}
.yb0{bottom:720.661600pt;}
.y40{bottom:722.102533pt;}
.y86{bottom:722.979733pt;}
.y144{bottom:723.045867pt;}
.y118{bottom:733.338800pt;}
.yaf{bottom:736.661600pt;}
.y3f{bottom:738.102533pt;}
.yd0{bottom:738.979733pt;}
.ye9{bottom:739.900267pt;}
.y64{bottom:740.441200pt;}
.y172{bottom:742.020667pt;}
.y8{bottom:743.332533pt;}
.y143{bottom:745.004933pt;}
.y85{bottom:746.538800pt;}
.yeb{bottom:753.759067pt;}
.y3e{bottom:754.102533pt;}
.y171{bottom:756.420667pt;}
.y117{bottom:756.897733pt;}
.y142{bottom:759.404933pt;}
.yae{bottom:760.220667pt;}
.y84{bottom:762.538800pt;}
.y7{bottom:767.332533pt;}
.yea{bottom:767.618133pt;}
.y63{bottom:768.159067pt;}
.y3d{bottom:770.102533pt;}
.y170{bottom:770.820667pt;}
.y116{bottom:772.897733pt;}
.y141{bottom:773.804800pt;}
.y83{bottom:778.538800pt;}
.yad{bottom:783.779733pt;}
.y3c{bottom:786.102533pt;}
.y115{bottom:788.897733pt;}
.y16f{bottom:792.779733pt;}
.y82{bottom:794.538800pt;}
.y140{bottom:795.764000pt;}
.y62{bottom:795.877067pt;}
.y3b{bottom:802.102533pt;}
.y6{bottom:802.671200pt;}
.y114{bottom:804.897733pt;}
.y16e{bottom:807.179733pt;}
.ye8{bottom:809.195200pt;}
.y13f{bottom:810.164000pt;}
.y81{bottom:810.538800pt;}
.yac{bottom:818.097867pt;}
.y3a{bottom:818.102533pt;}
.y113{bottom:820.897733pt;}
.y16d{bottom:821.579733pt;}
.ye7{bottom:823.054133pt;}
.y61{bottom:823.595067pt;}
.y13e{bottom:824.564000pt;}
.y80{bottom:826.538800pt;}
.y5{bottom:826.671200pt;}
.yab{bottom:834.097867pt;}
.y39{bottom:834.102533pt;}
.y112{bottom:836.897733pt;}
.y7f{bottom:842.538800pt;}
.y16c{bottom:843.538800pt;}
.y13d{bottom:846.523067pt;}
.yaa{bottom:850.097867pt;}
.y38{bottom:850.102533pt;}
.y4{bottom:850.671200pt;}
.ye4{bottom:850.772133pt;}
.y60{bottom:851.312933pt;}
.y111{bottom:852.897733pt;}
.y16b{bottom:857.938667pt;}
.y7e{bottom:858.538800pt;}
.y13c{bottom:860.923067pt;}
.ye6{bottom:864.631067pt;}
.ya9{bottom:866.097867pt;}
.y37{bottom:866.102533pt;}
.y110{bottom:868.897733pt;}
.y16a{bottom:872.338667pt;}
.y7d{bottom:874.538800pt;}
.ye5{bottom:878.490133pt;}
.y5f{bottom:879.031067pt;}
.ya8{bottom:882.097867pt;}
.y36{bottom:882.102533pt;}
.y10f{bottom:884.897733pt;}
.y13b{bottom:890.441067pt;}
.y169{bottom:894.297733pt;}
.y7c{bottom:898.097867pt;}
.y10e{bottom:900.897733pt;}
.y35{bottom:905.661600pt;}
.y5e{bottom:906.748933pt;}
.y168{bottom:908.697733pt;}
.y7b{bottom:914.097867pt;}
.y10d{bottom:916.897733pt;}
.ye3{bottom:920.066933pt;}
.y196{bottom:923.097867pt;}
.y2e{bottom:927.036267pt;}
.y7a{bottom:930.097867pt;}
.y167{bottom:930.656800pt;}
.y5d{bottom:934.466933pt;}
.y2d{bottom:939.836400pt;}
.y10c{bottom:940.456933pt;}
.y166{bottom:945.056933pt;}
.y79{bottom:946.097867pt;}
.y34{bottom:951.897733pt;}
.y2c{bottom:952.636267pt;}
.y10b{bottom:956.456933pt;}
.ye2{bottom:959.456933pt;}
.y2b{bottom:965.436400pt;}
.y78{bottom:969.656933pt;}
.y10a{bottom:972.456933pt;}
.y33{bottom:973.856800pt;}
.y2a{bottom:978.236267pt;}
.y29{bottom:991.036267pt;}
.y28{bottom:1003.836267pt;}
.y2f{bottom:1008.629200pt;}
.y27{bottom:1016.636267pt;}
.y30{bottom:1023.748133pt;}
.y26{bottom:1029.436267pt;}
.y25{bottom:1042.236267pt;}
.y31{bottom:1049.610933pt;}
.y32{bottom:1064.729067pt;}
.h3{height:30.144000pt;}
.hc{height:34.496000pt;}
.hb{height:35.168000pt;}
.hd{height:38.448000pt;}
.ha{height:39.850667pt;}
.h9{height:40.192000pt;}
.h8{height:42.720000pt;}
.hf{height:44.352000pt;}
.h2{height:45.216000pt;}
.h10{height:48.282154pt;}
.h7{height:50.240000pt;}
.he{height:51.264000pt;}
.h6{height:60.288000pt;}
.h5{height:65.706667pt;}
.h11{height:73.151467pt;}
.h4{height:78.848000pt;}
.h12{height:100.651733pt;}
.h13{height:100.652267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:79.370000pt;}
.x1{left:81.259867pt;}
.x2{left:83.111067pt;}
.x12{left:86.929067pt;}
.x19{left:96.608800pt;}
.x23{left:98.267733pt;}
.x1e{left:101.312800pt;}
.x17{left:105.826800pt;}
.xd{left:117.165333pt;}
.x18{left:124.724400pt;}
.x10{left:205.117200pt;}
.x21{left:230.551067pt;}
.x15{left:244.092267pt;}
.xf{left:265.446133pt;}
.x13{left:290.615733pt;}
.x16{left:296.829867pt;}
.x22{left:298.582667pt;}
.x14{left:309.341333pt;}
.xe{left:310.313333pt;}
.x1d{left:313.700800pt;}
.x1f{left:335.519333pt;}
.x11{left:339.161067pt;}
.x20{left:387.374667pt;}
.x1a{left:397.805467pt;}
.xb{left:471.897600pt;}
.x6{left:475.245467pt;}
.x8{left:487.532533pt;}
.x1b{left:512.476667pt;}
.xa{left:523.996400pt;}
.x4{left:542.428533pt;}
.x5{left:568.693067pt;}
.x1c{left:598.994933pt;}
.x7{left:603.980000pt;}
.x9{left:612.103867pt;}
.xc{left:617.011600pt;}
}




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