
    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_601a997c1299b2ca11ceda2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_fd8df8bb36e0b92a5d8ddf5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_0ee243668b64c7b3cdb51dd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_ba76f2ba68c3b4ee5a47436c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_cbfe40e80f1c43305dc86f5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_4f9a33c64ad38b15504bfd33.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_112a5af1ac196e58c71e5fd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.744000;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_7e6c9a524f21aee7c2857219.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.753000;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_e0a986983a69f65ef1826b9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_31a40614a24fe486f06106ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984000;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_839cac106871bf9d9c4607dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7e9c91e962041c9cea9604d7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e0a986983a69f65ef1826b9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3133171dd8785de701a32dc8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904785;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.fff{font-family:fff;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_839cac106871bf9d9c4607dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.981000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_31a40614a24fe486f06106ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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:ff12;src:url('chunks/assets/font_e0a986983a69f65ef1826b9c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011000;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:ff13;src:url('chunks/assets/font_d8ceb4524dc51ff4a24b79fd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984000;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:ff14;src:url('chunks/assets/font_c88c19f28864af0e207a6b4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.719000;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:ff15;src:url('chunks/assets/font_7e9c91e962041c9cea9604d7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.929000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.988000px;}
.v3{vertical-align:19.920000px;}
.v1{vertical-align:32.400000px;}
.ls5{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-1.026000px;}
.ls28{letter-spacing:-0.330000px;}
.ls2a{letter-spacing:-0.214500px;}
.ls29{letter-spacing:-0.132000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.060000px;}
.ls23{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.099000px;}
.ls8{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.198000px;}
.ls15{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.216600px;}
.ls14{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.243000px;}
.ls1f{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.270000px;}
.ls27{letter-spacing:0.297000px;}
.ls1{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.396000px;}
.ls17{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.495000px;}
.ls9{letter-spacing:0.528000px;}
.ls22{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.570000px;}
.lsf{letter-spacing:0.594000px;}
.ls1e{letter-spacing:0.643200px;}
.ls24{letter-spacing:0.726000px;}
.ls2b{letter-spacing:0.780000px;}
.ls25{letter-spacing:0.792000px;}
.ls26{letter-spacing:0.840000px;}
.ls30{letter-spacing:0.858000px;}
.ls19{letter-spacing:0.990000px;}
.ls1b{letter-spacing:1.056000px;}
.ls1d{letter-spacing:1.122000px;}
.ls1a{letter-spacing:1.188000px;}
.ls1c{letter-spacing:1.287000px;}
.ls2e{letter-spacing:1.320000px;}
.ls13{letter-spacing:1.380000px;}
.ls32{letter-spacing:2.310000px;}
.ls18{letter-spacing:4.554000px;}
.ls31{letter-spacing:2038.568400px;}
.lse{letter-spacing:2071.568400px;}
.ls2d{letter-spacing:2134.018800px;}
.ls6{letter-spacing:2167.018800px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws16{word-spacing:-16.500000px;}
.ws75{word-spacing:-13.860000px;}
.ws38{word-spacing:-12.750000px;}
.ws3{word-spacing:-10.314000px;}
.ws17{word-spacing:-9.009000px;}
.ws8d{word-spacing:-8.794500px;}
.ws9d{word-spacing:-8.190000px;}
.ws5{word-spacing:-7.371000px;}
.wsaa{word-spacing:-1.320000px;}
.ws5d{word-spacing:-1.056000px;}
.ws5a{word-spacing:-0.990000px;}
.wsb0{word-spacing:-0.858000px;}
.wsa0{word-spacing:-0.780000px;}
.ws1d{word-spacing:-0.660000px;}
.wsb6{word-spacing:-0.396000px;}
.ws8a{word-spacing:-0.330000px;}
.ws62{word-spacing:-0.264000px;}
.ws2b{word-spacing:-0.198000px;}
.ws3c{word-spacing:-0.132000px;}
.ws2{word-spacing:-0.081000px;}
.ws86{word-spacing:-0.066000px;}
.ws15{word-spacing:-0.054000px;}
.ws61{word-spacing:-0.049500px;}
.ws6{word-spacing:0.000000px;}
.wsa5{word-spacing:0.054000px;}
.ws89{word-spacing:0.132000px;}
.ws35{word-spacing:0.162000px;}
.ws1e{word-spacing:0.180000px;}
.ws67{word-spacing:0.198000px;}
.ws49{word-spacing:0.216000px;}
.wsa3{word-spacing:0.240000px;}
.ws57{word-spacing:0.264000px;}
.ws45{word-spacing:0.270000px;}
.ws93{word-spacing:0.330000px;}
.ws9c{word-spacing:0.378000px;}
.ws32{word-spacing:0.432000px;}
.ws74{word-spacing:0.486000px;}
.ws9a{word-spacing:0.540000px;}
.ws64{word-spacing:0.594000px;}
.ws36{word-spacing:0.648000px;}
.ws84{word-spacing:0.660000px;}
.ws65{word-spacing:0.726000px;}
.ws7d{word-spacing:0.780000px;}
.ws2d{word-spacing:0.792000px;}
.wsa6{word-spacing:0.810000px;}
.ws73{word-spacing:0.864000px;}
.ws7c{word-spacing:0.900000px;}
.ws22{word-spacing:0.960000px;}
.ws68{word-spacing:0.990000px;}
.ws4{word-spacing:1.026000px;}
.ws25{word-spacing:1.056000px;}
.wsc{word-spacing:1.080000px;}
.ws88{word-spacing:1.122000px;}
.ws76{word-spacing:1.188000px;}
.ws34{word-spacing:1.242000px;}
.ws69{word-spacing:1.254000px;}
.ws48{word-spacing:1.296000px;}
.wsae{word-spacing:1.320000px;}
.wsad{word-spacing:1.386000px;}
.ws5e{word-spacing:1.452000px;}
.wsa8{word-spacing:1.458000px;}
.ws3b{word-spacing:1.518000px;}
.ws70{word-spacing:1.716000px;}
.ws7a{word-spacing:1.740000px;}
.ws98{word-spacing:1.782000px;}
.ws7b{word-spacing:1.800000px;}
.ws14{word-spacing:1.836000px;}
.wsb2{word-spacing:1.848000px;}
.wsac{word-spacing:1.914000px;}
.ws7{word-spacing:1.920000px;}
.ws72{word-spacing:1.944000px;}
.ws1b{word-spacing:1.980000px;}
.wsf{word-spacing:1.998000px;}
.ws54{word-spacing:2.046000px;}
.wsa7{word-spacing:2.052000px;}
.ws81{word-spacing:2.106000px;}
.ws4b{word-spacing:2.112000px;}
.ws6f{word-spacing:2.178000px;}
.ws4c{word-spacing:2.244000px;}
.ws4a{word-spacing:2.310000px;}
.ws24{word-spacing:2.376000px;}
.ws80{word-spacing:2.442000px;}
.ws96{word-spacing:2.484000px;}
.ws8b{word-spacing:2.508000px;}
.ws31{word-spacing:2.538000px;}
.wsb7{word-spacing:2.574000px;}
.ws2f{word-spacing:2.592000px;}
.ws4d{word-spacing:2.640000px;}
.ws33{word-spacing:2.646000px;}
.ws56{word-spacing:2.706000px;}
.ws82{word-spacing:2.772000px;}
.ws5b{word-spacing:2.838000px;}
.ws41{word-spacing:2.904000px;}
.ws37{word-spacing:2.970000px;}
.ws6b{word-spacing:3.036000px;}
.ws10{word-spacing:3.078000px;}
.ws6d{word-spacing:3.102000px;}
.ws42{word-spacing:3.168000px;}
.ws83{word-spacing:3.180000px;}
.ws99{word-spacing:3.186000px;}
.ws26{word-spacing:3.234000px;}
.ws6e{word-spacing:3.300000px;}
.wsaf{word-spacing:3.366000px;}
.ws92{word-spacing:3.432000px;}
.ws4e{word-spacing:3.498000px;}
.ws3a{word-spacing:3.564000px;}
.ws43{word-spacing:3.600000px;}
.ws44{word-spacing:3.618000px;}
.ws28{word-spacing:3.630000px;}
.ws46{word-spacing:3.672000px;}
.ws6a{word-spacing:3.696000px;}
.ws2e{word-spacing:3.726000px;}
.ws19{word-spacing:3.762000px;}
.wsb{word-spacing:3.780000px;}
.ws77{word-spacing:3.828000px;}
.ws39{word-spacing:3.894000px;}
.wse{word-spacing:3.942000px;}
.ws4f{word-spacing:3.960000px;}
.wsa1{word-spacing:4.020000px;}
.ws53{word-spacing:4.026000px;}
.wsb4{word-spacing:4.050000px;}
.ws20{word-spacing:4.080000px;}
.ws1c{word-spacing:4.158000px;}
.wsb9{word-spacing:4.224000px;}
.wsd{word-spacing:4.266000px;}
.ws60{word-spacing:4.290000px;}
.ws47{word-spacing:4.320000px;}
.ws40{word-spacing:4.356000px;}
.ws5f{word-spacing:4.422000px;}
.ws85{word-spacing:4.440000px;}
.ws7f{word-spacing:4.488000px;}
.ws71{word-spacing:4.536000px;}
.ws52{word-spacing:4.554000px;}
.ws97{word-spacing:4.590000px;}
.ws27{word-spacing:4.620000px;}
.ws9b{word-spacing:4.644000px;}
.ws21{word-spacing:4.680000px;}
.ws8c{word-spacing:4.686000px;}
.ws78{word-spacing:4.752000px;}
.ws13{word-spacing:4.806000px;}
.ws3f{word-spacing:4.818000px;}
.ws5c{word-spacing:4.884000px;}
.ws7e{word-spacing:4.920000px;}
.ws9e{word-spacing:4.950000px;}
.ws30{word-spacing:4.968000px;}
.ws8e{word-spacing:5.016000px;}
.wsa9{word-spacing:5.076000px;}
.ws87{word-spacing:5.082000px;}
.ws91{word-spacing:5.148000px;}
.wsb5{word-spacing:5.238000px;}
.ws8f{word-spacing:5.280000px;}
.ws11{word-spacing:5.292000px;}
.ws58{word-spacing:5.346000px;}
.wsa2{word-spacing:5.400000px;}
.wsa4{word-spacing:5.412000px;}
.ws12{word-spacing:5.454000px;}
.ws95{word-spacing:5.478000px;}
.ws29{word-spacing:5.610000px;}
.wsa{word-spacing:5.670000px;}
.ws63{word-spacing:5.676000px;}
.ws66{word-spacing:5.742000px;}
.ws3d{word-spacing:5.808000px;}
.ws9f{word-spacing:5.874000px;}
.ws55{word-spacing:5.940000px;}
.ws2a{word-spacing:6.006000px;}
.ws2c{word-spacing:6.138000px;}
.ws3e{word-spacing:6.204000px;}
.ws1f{word-spacing:6.300000px;}
.wsab{word-spacing:6.336000px;}
.ws51{word-spacing:6.402000px;}
.ws59{word-spacing:6.468000px;}
.ws23{word-spacing:6.534000px;}
.ws50{word-spacing:6.600000px;}
.ws6c{word-spacing:6.666000px;}
.ws94{word-spacing:6.732000px;}
.wsb1{word-spacing:6.798000px;}
.ws79{word-spacing:6.864000px;}
.ws1a{word-spacing:6.930000px;}
.wsb8{word-spacing:7.722000px;}
.ws8{word-spacing:10.656000px;}
.ws18{word-spacing:12.750000px;}
.ws9{word-spacing:13.344000px;}
.ws90{word-spacing:27.504000px;}
.wsb3{word-spacing:84.708000px;}
._10{margin-left:-27.504000px;}
._3{margin-left:-24.000000px;}
._4{margin-left:-22.700400px;}
._f{margin-left:-21.186000px;}
._13{margin-left:-2.310000px;}
._a{margin-left:-1.023000px;}
._2{width:1.920000px;}
._b{width:4.422000px;}
._c{width:5.748000px;}
._9{width:7.062000px;}
._1{width:11.472000px;}
._0{width:13.344000px;}
._e{width:27.504000px;}
._11{width:33.911400px;}
._12{width:37.794600px;}
._8{width:47.843400px;}
._7{width:50.112000px;}
._d{width:51.732000px;}
._5{width:53.837400px;}
._6{width:84.708000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.100000px;}
.fsf{font-size:39.000000px;}
.fsc{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:49.500000px;}
.fsa{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:70.200000px;}
.fse{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y10a{bottom:138.191700px;}
.y197{bottom:138.200550px;}
.y5e{bottom:138.203550px;}
.y8a{bottom:138.203700px;}
.ye0{bottom:138.215700px;}
.y1bb{bottom:138.664350px;}
.y131{bottom:139.054950px;}
.yb8{bottom:139.388850px;}
.y7{bottom:140.316450px;}
.y156{bottom:142.238550px;}
.y6{bottom:153.108450px;}
.y196{bottom:154.184550px;}
.y5d{bottom:154.187550px;}
.y89{bottom:154.187700px;}
.ydf{bottom:154.199700px;}
.y155{bottom:154.226550px;}
.y109{bottom:158.225700px;}
.y1ba{bottom:159.454350px;}
.y130{bottom:159.844950px;}
.yb7{bottom:160.178850px;}
.y195{bottom:170.168550px;}
.y5c{bottom:170.171550px;}
.y88{bottom:170.171700px;}
.yde{bottom:170.183700px;}
.y154{bottom:170.210550px;}
.y5{bottom:172.279800px;}
.y1b9{bottom:180.244350px;}
.y12f{bottom:180.634950px;}
.yb6{bottom:180.968850px;}
.y194{bottom:186.152550px;}
.y5b{bottom:186.155550px;}
.y87{bottom:186.155700px;}
.ydd{bottom:186.167700px;}
.y153{bottom:186.194550px;}
.y12e{bottom:201.424950px;}
.yb5{bottom:201.758850px;}
.y193{bottom:202.136550px;}
.y5a{bottom:202.139550px;}
.y86{bottom:202.139700px;}
.ydc{bottom:202.151700px;}
.y152{bottom:202.178550px;}
.y4{bottom:210.619800px;}
.y1b8{bottom:212.089350px;}
.y108{bottom:213.245400px;}
.ydb{bottom:218.135700px;}
.y151{bottom:218.162550px;}
.y59{bottom:222.173550px;}
.y85{bottom:222.173700px;}
.y12d{bottom:222.214950px;}
.yb4{bottom:222.548850px;}
.y3{bottom:223.411800px;}
.y1b7{bottom:232.879350px;}
.y107{bottom:234.035400px;}
.y179{bottom:234.113700px;}
.y84{bottom:234.119700px;}
.y58{bottom:234.143550px;}
.y150{bottom:234.146550px;}
.y2{bottom:242.587800px;}
.y12c{bottom:243.004950px;}
.yb3{bottom:243.338850px;}
.y83{bottom:250.103700px;}
.y57{bottom:250.127550px;}
.y14f{bottom:250.130550px;}
.y178{bottom:254.147550px;}
.y106{bottom:254.825400px;}
.y12b{bottom:263.794950px;}
.yb2{bottom:264.128850px;}
.y1b6{bottom:264.724350px;}
.y1c7{bottom:265.929750px;}
.y82{bottom:266.087700px;}
.y56{bottom:266.111550px;}
.y14e{bottom:266.114550px;}
.y105{bottom:275.615400px;}
.y55{bottom:282.095550px;}
.y14d{bottom:282.098550px;}
.yb1{bottom:284.918850px;}
.y1b5{bottom:285.514350px;}
.y81{bottom:286.121700px;}
.y12a{bottom:294.979950px;}
.y104{bottom:296.405400px;}
.y1c6{bottom:297.114750px;}
.y2d{bottom:297.640800px;}
.y80{bottom:298.073700px;}
.y54{bottom:298.079550px;}
.y14c{bottom:298.082550px;}
.y192{bottom:298.794150px;}
.yb0{bottom:305.708850px;}
.y177{bottom:306.760200px;}
.y7f{bottom:314.057700px;}
.y53{bottom:314.063550px;}
.y14b{bottom:314.066550px;}
.y129{bottom:315.769950px;}
.y103{bottom:317.195400px;}
.y1b4{bottom:317.359350px;}
.y2c{bottom:317.674800px;}
.y191{bottom:319.584150px;}
.yaf{bottom:326.498850px;}
.y176{bottom:327.550200px;}
.y1c5{bottom:328.299750px;}
.y7e{bottom:330.041700px;}
.y52{bottom:330.047550px;}
.y14a{bottom:330.050550px;}
.y128{bottom:336.559950px;}
.y102{bottom:337.985400px;}
.y1b3{bottom:338.149350px;}
.y190{bottom:340.374150px;}
.y7d{bottom:346.025700px;}
.y51{bottom:346.031550px;}
.y149{bottom:346.034550px;}
.yae{bottom:347.288850px;}
.y175{bottom:348.340200px;}
.yda{bottom:357.174750px;}
.y127{bottom:357.349950px;}
.y101{bottom:358.775400px;}
.y7c{bottom:362.009700px;}
.y50{bottom:362.015550px;}
.y148{bottom:362.018550px;}
.yad{bottom:368.078850px;}
.y174{bottom:369.130200px;}
.y1b2{bottom:369.994350px;}
.y18f{bottom:371.559150px;}
.y1c4{bottom:374.362500px;}
.yd9{bottom:377.964750px;}
.y4f{bottom:377.999550px;}
.y147{bottom:378.002550px;}
.y126{bottom:378.139950px;}
.y7b{bottom:382.043700px;}
.yac{bottom:388.868850px;}
.y173{bottom:389.920200px;}
.y1b1{bottom:390.784350px;}
.y18e{bottom:392.349150px;}
.y4e{bottom:393.983550px;}
.y146{bottom:393.986550px;}
.yd8{bottom:398.754750px;}
.y125{bottom:398.929950px;}
.y100{bottom:400.359300px;}
.yab{bottom:409.658850px;}
.y145{bottom:409.970550px;}
.y172{bottom:410.710200px;}
.y4d{bottom:414.017550px;}
.yff{bottom:417.954300px;}
.yd7{bottom:419.544750px;}
.y124{bottom:419.719950px;}
.y1b0{bottom:422.629350px;}
.y144{bottom:430.004550px;}
.yaa{bottom:430.448850px;}
.y171{bottom:431.500200px;}
.yfe{bottom:435.549300px;}
.y18d{bottom:438.411900px;}
.y1c3{bottom:440.282850px;}
.yd6{bottom:440.334750px;}
.y123{bottom:440.509950px;}
.y1af{bottom:443.419350px;}
.y7a{bottom:445.871700px;}
.ya9{bottom:451.238850px;}
.y170{bottom:452.290200px;}
.yfd{bottom:453.144300px;}
.y1c2{bottom:461.072850px;}
.yd5{bottom:461.124750px;}
.y122{bottom:461.299950px;}
.y4c{bottom:461.451750px;}
.y79{bottom:463.466700px;}
.yfc{bottom:470.739300px;}
.ya8{bottom:472.028850px;}
.y16f{bottom:473.080200px;}
.y1ae{bottom:475.264350px;}
.y78{bottom:481.061700px;}
.y1c1{bottom:481.862850px;}
.yd4{bottom:481.914750px;}
.y121{bottom:482.089950px;}
.y4b{bottom:482.241750px;}
.yfb{bottom:488.334300px;}
.ya7{bottom:492.818850px;}
.y16e{bottom:493.870200px;}
.y143{bottom:494.554650px;}
.y1ad{bottom:496.054350px;}
.y77{bottom:498.656700px;}
.yd3{bottom:502.704750px;}
.y120{bottom:502.879950px;}
.y4a{bottom:503.031750px;}
.yfa{bottom:505.929300px;}
.y1c0{bottom:513.047850px;}
.ya6{bottom:513.608850px;}
.y16d{bottom:514.660200px;}
.y142{bottom:515.344650px;}
.y76{bottom:516.251700px;}
.y1ac{bottom:516.844350px;}
.y18c{bottom:523.442850px;}
.yd2{bottom:523.494750px;}
.y11f{bottom:523.669950px;}
.y1bf{bottom:533.837850px;}
.y75{bottom:533.846700px;}
.y49{bottom:534.186750px;}
.y16c{bottom:535.450200px;}
.y141{bottom:536.134650px;}
.y18b{bottom:544.232850px;}
.yf9{bottom:544.236000px;}
.yd1{bottom:544.284750px;}
.y11e{bottom:544.459950px;}
.y1ab{bottom:548.689350px;}
.ya5{bottom:549.710850px;}
.y74{bottom:551.441700px;}
.y48{bottom:554.976750px;}
.y16b{bottom:556.240200px;}
.y140{bottom:556.924650px;}
.y18a{bottom:565.022850px;}
.yf8{bottom:565.026000px;}
.yd0{bottom:565.074750px;}
.y11d{bottom:565.249950px;}
.y1aa{bottom:569.479350px;}
.ya4{bottom:570.500850px;}
.y47{bottom:575.766750px;}
.y16a{bottom:577.030200px;}
.y13f{bottom:577.714650px;}
.y189{bottom:585.812850px;}
.yf7{bottom:585.816000px;}
.ycf{bottom:585.864750px;}
.y11c{bottom:586.039950px;}
.y2b{bottom:588.799200px;}
.y24{bottom:588.817500px;}
.y73{bottom:589.822200px;}
.ya3{bottom:591.290850px;}
.y46{bottom:596.556750px;}
.y169{bottom:597.820200px;}
.y13e{bottom:598.504650px;}
.y1a9{bottom:601.324350px;}
.y2a{bottom:604.783200px;}
.y23{bottom:604.801500px;}
.y188{bottom:606.602850px;}
.yf6{bottom:606.606000px;}
.yce{bottom:606.654750px;}
.y11b{bottom:606.829950px;}
.y72{bottom:610.612200px;}
.ya2{bottom:612.080850px;}
.y1be{bottom:616.997850px;}
.y45{bottom:617.346750px;}
.y168{bottom:618.610200px;}
.y13d{bottom:619.294650px;}
.y29{bottom:620.767200px;}
.y22{bottom:620.785500px;}
.y1a8{bottom:622.114350px;}
.y187{bottom:627.392850px;}
.ycd{bottom:627.444750px;}
.y11a{bottom:627.619950px;}
.ya1{bottom:632.870850px;}
.y28{bottom:636.751200px;}
.y21{bottom:636.769500px;}
.y1bd{bottom:637.787850px;}
.yf5{bottom:637.791000px;}
.y44{bottom:638.136750px;}
.y167{bottom:639.400200px;}
.y13c{bottom:640.084650px;}
.y1a7{bottom:642.904350px;}
.y186{bottom:648.182850px;}
.y119{bottom:648.409950px;}
.y27{bottom:652.735200px;}
.y20{bottom:652.753500px;}
.ya0{bottom:653.660850px;}
.y71{bottom:656.675100px;}
.yf4{bottom:658.581000px;}
.ycc{bottom:658.629750px;}
.y43{bottom:658.926750px;}
.y13b{bottom:660.874650px;}
.y26{bottom:668.719200px;}
.y185{bottom:668.972850px;}
.y9f{bottom:674.450850px;}
.y1a6{bottom:674.749350px;}
.y1f{bottom:676.729500px;}
.yf3{bottom:679.371000px;}
.ycb{bottom:679.419750px;}
.y42{bottom:679.716750px;}
.y166{bottom:680.981100px;}
.y13a{bottom:681.664650px;}
.y25{bottom:684.703200px;}
.y184{bottom:689.762850px;}
.y9e{bottom:695.240850px;}
.y1a5{bottom:695.539350px;}
.y118{bottom:696.598800px;}
.y165{bottom:698.576100px;}
.yf2{bottom:700.161000px;}
.yca{bottom:700.209750px;}
.y41{bottom:700.506750px;}
.y139{bottom:702.454650px;}
.y183{bottom:710.552850px;}
.y9d{bottom:716.030850px;}
.y164{bottom:716.171100px;}
.y1bc{bottom:720.947850px;}
.yf1{bottom:720.951000px;}
.yc9{bottom:720.999750px;}
.y40{bottom:721.296750px;}
.y138{bottom:723.244650px;}
.y1a4{bottom:727.384350px;}
.y17{bottom:729.136500px;}
.y182{bottom:731.342850px;}
.y163{bottom:733.766100px;}
.y9c{bottom:736.820850px;}
.y1e{bottom:737.128500px;}
.yc8{bottom:741.737850px;}
.yf0{bottom:741.741000px;}
.y70{bottom:741.770550px;}
.y3f{bottom:742.086750px;}
.y137{bottom:744.034650px;}
.y16{bottom:745.120500px;}
.y1a3{bottom:748.174350px;}
.y162{bottom:751.364100px;}
.y181{bottom:752.132850px;}
.y1d{bottom:753.112500px;}
.y9b{bottom:757.610850px;}
.y15{bottom:761.104500px;}
.yc7{bottom:762.527850px;}
.yef{bottom:762.531000px;}
.y6f{bottom:762.560550px;}
.y136{bottom:764.824650px;}
.y161{bottom:768.959100px;}
.y1a2{bottom:768.964350px;}
.y1c{bottom:769.096500px;}
.y180{bottom:772.922850px;}
.y117{bottom:774.507450px;}
.y14{bottom:777.088500px;}
.y9a{bottom:778.400850px;}
.y3e{bottom:779.422350px;}
.yc6{bottom:783.317850px;}
.yee{bottom:783.321000px;}
.y6e{bottom:783.350550px;}
.y1b{bottom:785.080500px;}
.y135{bottom:785.614650px;}
.y160{bottom:786.554100px;}
.y13{bottom:793.072500px;}
.y17f{bottom:793.712850px;}
.y116{bottom:795.297450px;}
.y3d{bottom:797.017350px;}
.y99{bottom:799.190850px;}
.y1a1{bottom:800.809350px;}
.y1a{bottom:801.064500px;}
.yc5{bottom:804.107850px;}
.yed{bottom:804.111000px;}
.y6d{bottom:804.140550px;}
.y134{bottom:806.404650px;}
.y12{bottom:809.056500px;}
.y17e{bottom:814.502850px;}
.y3c{bottom:814.612350px;}
.y115{bottom:816.087450px;}
.y19{bottom:817.048500px;}
.y98{bottom:819.980850px;}
.y1a0{bottom:821.599350px;}
.yc4{bottom:824.897850px;}
.y15f{bottom:824.899350px;}
.yec{bottom:824.901000px;}
.y6c{bottom:824.930550px;}
.y11{bottom:825.040500px;}
.y3b{bottom:832.207350px;}
.y18{bottom:833.032500px;}
.y17d{bottom:835.292850px;}
.y114{bottom:836.877450px;}
.y97{bottom:840.770850px;}
.yc3{bottom:845.687850px;}
.y15e{bottom:845.689350px;}
.yeb{bottom:845.691000px;}
.y6b{bottom:845.720550px;}
.y10{bottom:849.016500px;}
.y3a{bottom:849.802350px;}
.y133{bottom:852.467400px;}
.y19f{bottom:853.444350px;}
.y17c{bottom:856.082850px;}
.y96{bottom:861.560850px;}
.yc2{bottom:866.477850px;}
.y15d{bottom:866.479350px;}
.yea{bottom:866.481000px;}
.y39{bottom:867.397350px;}
.y17b{bottom:876.872850px;}
.y6a{bottom:876.878850px;}
.y113{bottom:878.461350px;}
.y95{bottom:882.350850px;}
.y38{bottom:884.992350px;}
.y19e{bottom:885.289350px;}
.yc1{bottom:887.267850px;}
.ye9{bottom:887.271000px;}
.y112{bottom:896.056350px;}
.y17a{bottom:897.662850px;}
.y15c{bottom:897.664350px;}
.y69{bottom:897.668850px;}
.y37{bottom:902.587350px;}
.y94{bottom:903.140850px;}
.y19d{bottom:906.079350px;}
.yc0{bottom:908.057850px;}
.ye8{bottom:908.061000px;}
.y111{bottom:913.651350px;}
.y132{bottom:918.452850px;}
.y15b{bottom:918.454350px;}
.y68{bottom:918.458850px;}
.y19c{bottom:926.869350px;}
.ybf{bottom:928.847850px;}
.ye7{bottom:928.851000px;}
.y110{bottom:931.246350px;}
.y36{bottom:936.702150px;}
.y93{bottom:939.242850px;}
.y15a{bottom:939.244350px;}
.y67{bottom:939.248850px;}
.y10f{bottom:948.841350px;}
.ybe{bottom:949.637850px;}
.ye6{bottom:949.641000px;}
.yf{bottom:955.521300px;}
.y35{bottom:957.492150px;}
.y19b{bottom:958.714350px;}
.y92{bottom:960.032850px;}
.y159{bottom:960.034350px;}
.y66{bottom:960.038850px;}
.y10e{bottom:966.436350px;}
.ybd{bottom:970.427850px;}
.ye5{bottom:970.431000px;}
.ye{bottom:976.299150px;}
.y34{bottom:978.282150px;}
.y91{bottom:980.822850px;}
.y158{bottom:980.824350px;}
.y65{bottom:980.828850px;}
.y10d{bottom:984.031350px;}
.y19a{bottom:990.559350px;}
.ybc{bottom:991.217850px;}
.ye4{bottom:991.221000px;}
.y33{bottom:999.072150px;}
.y90{bottom:1001.612850px;}
.y157{bottom:1001.614350px;}
.y64{bottom:1001.618850px;}
.y199{bottom:1011.349350px;}
.ybb{bottom:1012.007850px;}
.ye3{bottom:1012.011000px;}
.y32{bottom:1019.862150px;}
.yd{bottom:1020.693150px;}
.y8f{bottom:1022.402850px;}
.y10c{bottom:1022.404350px;}
.y63{bottom:1022.408850px;}
.y198{bottom:1032.139350px;}
.yba{bottom:1032.797850px;}
.ye2{bottom:1032.801000px;}
.y31{bottom:1040.652150px;}
.y8e{bottom:1043.192850px;}
.y10b{bottom:1043.194350px;}
.y62{bottom:1043.198850px;}
.yb9{bottom:1053.587850px;}
.ye1{bottom:1053.591000px;}
.y30{bottom:1061.442150px;}
.y8d{bottom:1063.982850px;}
.y61{bottom:1063.984350px;}
.yc{bottom:1065.078000px;}
.y8c{bottom:1084.772850px;}
.y60{bottom:1084.774350px;}
.yb{bottom:1097.478000px;}
.y2f{bottom:1103.253000px;}
.y8b{bottom:1105.562850px;}
.y5f{bottom:1105.564350px;}
.ya{bottom:1162.740450px;}
.y2e{bottom:1172.229900px;}
.y9{bottom:1193.880450px;}
.y8{bottom:1207.380450px;}
.hc{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.hd{height:40.545000px;}
.ha{height:41.256000px;}
.hb{height:42.930000px;}
.h2{height:45.342773px;}
.h9{height:47.700000px;}
.h1a{height:48.993000px;}
.hf{height:52.470000px;}
.h16{height:52.677600px;}
.h15{height:53.899500px;}
.h17{height:53.917500px;}
.h12{height:53.923500px;}
.h11{height:53.945700px;}
.h14{height:53.981700px;}
.h13{height:54.012300px;}
.h10{height:54.025500px;}
.h19{height:54.085500px;}
.h1b{height:54.098100px;}
.h18{height:55.008000px;}
.he{height:59.592000px;}
.h7{height:64.512000px;}
.h8{height:66.780000px;}
.h5{height:78.624000px;}
.h6{height:88.209000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x12{left:86.972550px;}
.xb{left:93.730800px;}
.xf{left:106.304400px;}
.x14{left:108.241650px;}
.x2{left:110.551350px;}
.x15{left:136.057500px;}
.x16{left:137.990550px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.x11{left:153.070800px;}
.x13{left:155.011950px;}
.x8{left:235.317150px;}
.xc{left:242.549700px;}
.xe{left:316.517850px;}
.xd{left:318.152850px;}
.x7{left:410.812800px;}
.x6{left:415.143900px;}
.xa{left:500.962650px;}
.x9{left:648.975150px;}
.x10{left:716.240700px;}
.x5{left:733.915650px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.989333pt;}
.v3{vertical-align:17.706667pt;}
.v1{vertical-align:28.800000pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.912000pt;}
.ls28{letter-spacing:-0.293333pt;}
.ls2a{letter-spacing:-0.190667pt;}
.ls29{letter-spacing:-0.117333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls23{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.088000pt;}
.ls8{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.176000pt;}
.ls15{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.192533pt;}
.ls14{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.216000pt;}
.ls1f{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.240000pt;}
.ls27{letter-spacing:0.264000pt;}
.ls1{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.352000pt;}
.ls17{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.440000pt;}
.ls9{letter-spacing:0.469333pt;}
.ls22{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.506667pt;}
.lsf{letter-spacing:0.528000pt;}
.ls1e{letter-spacing:0.571733pt;}
.ls24{letter-spacing:0.645333pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls25{letter-spacing:0.704000pt;}
.ls26{letter-spacing:0.746667pt;}
.ls30{letter-spacing:0.762667pt;}
.ls19{letter-spacing:0.880000pt;}
.ls1b{letter-spacing:0.938667pt;}
.ls1d{letter-spacing:0.997333pt;}
.ls1a{letter-spacing:1.056000pt;}
.ls1c{letter-spacing:1.144000pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls13{letter-spacing:1.226667pt;}
.ls32{letter-spacing:2.053333pt;}
.ls18{letter-spacing:4.048000pt;}
.ls31{letter-spacing:1812.060800pt;}
.lse{letter-spacing:1841.394133pt;}
.ls2d{letter-spacing:1896.905600pt;}
.ls6{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws16{word-spacing:-14.666667pt;}
.ws75{word-spacing:-12.320000pt;}
.ws38{word-spacing:-11.333333pt;}
.ws3{word-spacing:-9.168000pt;}
.ws17{word-spacing:-8.008000pt;}
.ws8d{word-spacing:-7.817333pt;}
.ws9d{word-spacing:-7.280000pt;}
.ws5{word-spacing:-6.552000pt;}
.wsaa{word-spacing:-1.173333pt;}
.ws5d{word-spacing:-0.938667pt;}
.ws5a{word-spacing:-0.880000pt;}
.wsb0{word-spacing:-0.762667pt;}
.wsa0{word-spacing:-0.693333pt;}
.ws1d{word-spacing:-0.586667pt;}
.wsb6{word-spacing:-0.352000pt;}
.ws8a{word-spacing:-0.293333pt;}
.ws62{word-spacing:-0.234667pt;}
.ws2b{word-spacing:-0.176000pt;}
.ws3c{word-spacing:-0.117333pt;}
.ws2{word-spacing:-0.072000pt;}
.ws86{word-spacing:-0.058667pt;}
.ws15{word-spacing:-0.048000pt;}
.ws61{word-spacing:-0.044000pt;}
.ws6{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.048000pt;}
.ws89{word-spacing:0.117333pt;}
.ws35{word-spacing:0.144000pt;}
.ws1e{word-spacing:0.160000pt;}
.ws67{word-spacing:0.176000pt;}
.ws49{word-spacing:0.192000pt;}
.wsa3{word-spacing:0.213333pt;}
.ws57{word-spacing:0.234667pt;}
.ws45{word-spacing:0.240000pt;}
.ws93{word-spacing:0.293333pt;}
.ws9c{word-spacing:0.336000pt;}
.ws32{word-spacing:0.384000pt;}
.ws74{word-spacing:0.432000pt;}
.ws9a{word-spacing:0.480000pt;}
.ws64{word-spacing:0.528000pt;}
.ws36{word-spacing:0.576000pt;}
.ws84{word-spacing:0.586667pt;}
.ws65{word-spacing:0.645333pt;}
.ws7d{word-spacing:0.693333pt;}
.ws2d{word-spacing:0.704000pt;}
.wsa6{word-spacing:0.720000pt;}
.ws73{word-spacing:0.768000pt;}
.ws7c{word-spacing:0.800000pt;}
.ws22{word-spacing:0.853333pt;}
.ws68{word-spacing:0.880000pt;}
.ws4{word-spacing:0.912000pt;}
.ws25{word-spacing:0.938667pt;}
.wsc{word-spacing:0.960000pt;}
.ws88{word-spacing:0.997333pt;}
.ws76{word-spacing:1.056000pt;}
.ws34{word-spacing:1.104000pt;}
.ws69{word-spacing:1.114667pt;}
.ws48{word-spacing:1.152000pt;}
.wsae{word-spacing:1.173333pt;}
.wsad{word-spacing:1.232000pt;}
.ws5e{word-spacing:1.290667pt;}
.wsa8{word-spacing:1.296000pt;}
.ws3b{word-spacing:1.349333pt;}
.ws70{word-spacing:1.525333pt;}
.ws7a{word-spacing:1.546667pt;}
.ws98{word-spacing:1.584000pt;}
.ws7b{word-spacing:1.600000pt;}
.ws14{word-spacing:1.632000pt;}
.wsb2{word-spacing:1.642667pt;}
.wsac{word-spacing:1.701333pt;}
.ws7{word-spacing:1.706667pt;}
.ws72{word-spacing:1.728000pt;}
.ws1b{word-spacing:1.760000pt;}
.wsf{word-spacing:1.776000pt;}
.ws54{word-spacing:1.818667pt;}
.wsa7{word-spacing:1.824000pt;}
.ws81{word-spacing:1.872000pt;}
.ws4b{word-spacing:1.877333pt;}
.ws6f{word-spacing:1.936000pt;}
.ws4c{word-spacing:1.994667pt;}
.ws4a{word-spacing:2.053333pt;}
.ws24{word-spacing:2.112000pt;}
.ws80{word-spacing:2.170667pt;}
.ws96{word-spacing:2.208000pt;}
.ws8b{word-spacing:2.229333pt;}
.ws31{word-spacing:2.256000pt;}
.wsb7{word-spacing:2.288000pt;}
.ws2f{word-spacing:2.304000pt;}
.ws4d{word-spacing:2.346667pt;}
.ws33{word-spacing:2.352000pt;}
.ws56{word-spacing:2.405333pt;}
.ws82{word-spacing:2.464000pt;}
.ws5b{word-spacing:2.522667pt;}
.ws41{word-spacing:2.581333pt;}
.ws37{word-spacing:2.640000pt;}
.ws6b{word-spacing:2.698667pt;}
.ws10{word-spacing:2.736000pt;}
.ws6d{word-spacing:2.757333pt;}
.ws42{word-spacing:2.816000pt;}
.ws83{word-spacing:2.826667pt;}
.ws99{word-spacing:2.832000pt;}
.ws26{word-spacing:2.874667pt;}
.ws6e{word-spacing:2.933333pt;}
.wsaf{word-spacing:2.992000pt;}
.ws92{word-spacing:3.050667pt;}
.ws4e{word-spacing:3.109333pt;}
.ws3a{word-spacing:3.168000pt;}
.ws43{word-spacing:3.200000pt;}
.ws44{word-spacing:3.216000pt;}
.ws28{word-spacing:3.226667pt;}
.ws46{word-spacing:3.264000pt;}
.ws6a{word-spacing:3.285333pt;}
.ws2e{word-spacing:3.312000pt;}
.ws19{word-spacing:3.344000pt;}
.wsb{word-spacing:3.360000pt;}
.ws77{word-spacing:3.402667pt;}
.ws39{word-spacing:3.461333pt;}
.wse{word-spacing:3.504000pt;}
.ws4f{word-spacing:3.520000pt;}
.wsa1{word-spacing:3.573333pt;}
.ws53{word-spacing:3.578667pt;}
.wsb4{word-spacing:3.600000pt;}
.ws20{word-spacing:3.626667pt;}
.ws1c{word-spacing:3.696000pt;}
.wsb9{word-spacing:3.754667pt;}
.wsd{word-spacing:3.792000pt;}
.ws60{word-spacing:3.813333pt;}
.ws47{word-spacing:3.840000pt;}
.ws40{word-spacing:3.872000pt;}
.ws5f{word-spacing:3.930667pt;}
.ws85{word-spacing:3.946667pt;}
.ws7f{word-spacing:3.989333pt;}
.ws71{word-spacing:4.032000pt;}
.ws52{word-spacing:4.048000pt;}
.ws97{word-spacing:4.080000pt;}
.ws27{word-spacing:4.106667pt;}
.ws9b{word-spacing:4.128000pt;}
.ws21{word-spacing:4.160000pt;}
.ws8c{word-spacing:4.165333pt;}
.ws78{word-spacing:4.224000pt;}
.ws13{word-spacing:4.272000pt;}
.ws3f{word-spacing:4.282667pt;}
.ws5c{word-spacing:4.341333pt;}
.ws7e{word-spacing:4.373333pt;}
.ws9e{word-spacing:4.400000pt;}
.ws30{word-spacing:4.416000pt;}
.ws8e{word-spacing:4.458667pt;}
.wsa9{word-spacing:4.512000pt;}
.ws87{word-spacing:4.517333pt;}
.ws91{word-spacing:4.576000pt;}
.wsb5{word-spacing:4.656000pt;}
.ws8f{word-spacing:4.693333pt;}
.ws11{word-spacing:4.704000pt;}
.ws58{word-spacing:4.752000pt;}
.wsa2{word-spacing:4.800000pt;}
.wsa4{word-spacing:4.810667pt;}
.ws12{word-spacing:4.848000pt;}
.ws95{word-spacing:4.869333pt;}
.ws29{word-spacing:4.986667pt;}
.wsa{word-spacing:5.040000pt;}
.ws63{word-spacing:5.045333pt;}
.ws66{word-spacing:5.104000pt;}
.ws3d{word-spacing:5.162667pt;}
.ws9f{word-spacing:5.221333pt;}
.ws55{word-spacing:5.280000pt;}
.ws2a{word-spacing:5.338667pt;}
.ws2c{word-spacing:5.456000pt;}
.ws3e{word-spacing:5.514667pt;}
.ws1f{word-spacing:5.600000pt;}
.wsab{word-spacing:5.632000pt;}
.ws51{word-spacing:5.690667pt;}
.ws59{word-spacing:5.749333pt;}
.ws23{word-spacing:5.808000pt;}
.ws50{word-spacing:5.866667pt;}
.ws6c{word-spacing:5.925333pt;}
.ws94{word-spacing:5.984000pt;}
.wsb1{word-spacing:6.042667pt;}
.ws79{word-spacing:6.101333pt;}
.ws1a{word-spacing:6.160000pt;}
.wsb8{word-spacing:6.864000pt;}
.ws8{word-spacing:9.472000pt;}
.ws18{word-spacing:11.333333pt;}
.ws9{word-spacing:11.861333pt;}
.ws90{word-spacing:24.448000pt;}
.wsb3{word-spacing:75.296000pt;}
._10{margin-left:-24.448000pt;}
._3{margin-left:-21.333333pt;}
._4{margin-left:-20.178133pt;}
._f{margin-left:-18.832000pt;}
._13{margin-left:-2.053333pt;}
._a{margin-left:-0.909333pt;}
._2{width:1.706667pt;}
._b{width:3.930667pt;}
._c{width:5.109333pt;}
._9{width:6.277333pt;}
._1{width:10.197333pt;}
._0{width:11.861333pt;}
._e{width:24.448000pt;}
._11{width:30.143467pt;}
._12{width:33.595200pt;}
._8{width:42.527467pt;}
._7{width:44.544000pt;}
._d{width:45.984000pt;}
._5{width:47.855467pt;}
._6{width:75.296000pt;}
.fs9{font-size:31.200000pt;}
.fsf{font-size:34.666667pt;}
.fsc{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:44.000000pt;}
.fsa{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:62.400000pt;}
.fse{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y10a{bottom:122.837067pt;}
.y197{bottom:122.844933pt;}
.y5e{bottom:122.847600pt;}
.y8a{bottom:122.847733pt;}
.ye0{bottom:122.858400pt;}
.y1bb{bottom:123.257200pt;}
.y131{bottom:123.604400pt;}
.yb8{bottom:123.901200pt;}
.y7{bottom:124.725733pt;}
.y156{bottom:126.434267pt;}
.y6{bottom:136.096400pt;}
.y196{bottom:137.052933pt;}
.y5d{bottom:137.055600pt;}
.y89{bottom:137.055733pt;}
.ydf{bottom:137.066400pt;}
.y155{bottom:137.090267pt;}
.y109{bottom:140.645067pt;}
.y1ba{bottom:141.737200pt;}
.y130{bottom:142.084400pt;}
.yb7{bottom:142.381200pt;}
.y195{bottom:151.260933pt;}
.y5c{bottom:151.263600pt;}
.y88{bottom:151.263733pt;}
.yde{bottom:151.274400pt;}
.y154{bottom:151.298267pt;}
.y5{bottom:153.137600pt;}
.y1b9{bottom:160.217200pt;}
.y12f{bottom:160.564400pt;}
.yb6{bottom:160.861200pt;}
.y194{bottom:165.468933pt;}
.y5b{bottom:165.471600pt;}
.y87{bottom:165.471733pt;}
.ydd{bottom:165.482400pt;}
.y153{bottom:165.506267pt;}
.y12e{bottom:179.044400pt;}
.yb5{bottom:179.341200pt;}
.y193{bottom:179.676933pt;}
.y5a{bottom:179.679600pt;}
.y86{bottom:179.679733pt;}
.ydc{bottom:179.690400pt;}
.y152{bottom:179.714267pt;}
.y4{bottom:187.217600pt;}
.y1b8{bottom:188.523867pt;}
.y108{bottom:189.551467pt;}
.ydb{bottom:193.898400pt;}
.y151{bottom:193.922267pt;}
.y59{bottom:197.487600pt;}
.y85{bottom:197.487733pt;}
.y12d{bottom:197.524400pt;}
.yb4{bottom:197.821200pt;}
.y3{bottom:198.588267pt;}
.y1b7{bottom:207.003867pt;}
.y107{bottom:208.031467pt;}
.y179{bottom:208.101067pt;}
.y84{bottom:208.106400pt;}
.y58{bottom:208.127600pt;}
.y150{bottom:208.130267pt;}
.y2{bottom:215.633600pt;}
.y12c{bottom:216.004400pt;}
.yb3{bottom:216.301200pt;}
.y83{bottom:222.314400pt;}
.y57{bottom:222.335600pt;}
.y14f{bottom:222.338267pt;}
.y178{bottom:225.908933pt;}
.y106{bottom:226.511467pt;}
.y12b{bottom:234.484400pt;}
.yb2{bottom:234.781200pt;}
.y1b6{bottom:235.310533pt;}
.y1c7{bottom:236.382000pt;}
.y82{bottom:236.522400pt;}
.y56{bottom:236.543600pt;}
.y14e{bottom:236.546267pt;}
.y105{bottom:244.991467pt;}
.y55{bottom:250.751600pt;}
.y14d{bottom:250.754267pt;}
.yb1{bottom:253.261200pt;}
.y1b5{bottom:253.790533pt;}
.y81{bottom:254.330400pt;}
.y12a{bottom:262.204400pt;}
.y104{bottom:263.471467pt;}
.y1c6{bottom:264.102000pt;}
.y2d{bottom:264.569600pt;}
.y80{bottom:264.954400pt;}
.y54{bottom:264.959600pt;}
.y14c{bottom:264.962267pt;}
.y192{bottom:265.594800pt;}
.yb0{bottom:271.741200pt;}
.y177{bottom:272.675733pt;}
.y7f{bottom:279.162400pt;}
.y53{bottom:279.167600pt;}
.y14b{bottom:279.170267pt;}
.y129{bottom:280.684400pt;}
.y103{bottom:281.951467pt;}
.y1b4{bottom:282.097200pt;}
.y2c{bottom:282.377600pt;}
.y191{bottom:284.074800pt;}
.yaf{bottom:290.221200pt;}
.y176{bottom:291.155733pt;}
.y1c5{bottom:291.822000pt;}
.y7e{bottom:293.370400pt;}
.y52{bottom:293.375600pt;}
.y14a{bottom:293.378267pt;}
.y128{bottom:299.164400pt;}
.y102{bottom:300.431467pt;}
.y1b3{bottom:300.577200pt;}
.y190{bottom:302.554800pt;}
.y7d{bottom:307.578400pt;}
.y51{bottom:307.583600pt;}
.y149{bottom:307.586267pt;}
.yae{bottom:308.701200pt;}
.y175{bottom:309.635733pt;}
.yda{bottom:317.488667pt;}
.y127{bottom:317.644400pt;}
.y101{bottom:318.911467pt;}
.y7c{bottom:321.786400pt;}
.y50{bottom:321.791600pt;}
.y148{bottom:321.794267pt;}
.yad{bottom:327.181200pt;}
.y174{bottom:328.115733pt;}
.y1b2{bottom:328.883867pt;}
.y18f{bottom:330.274800pt;}
.y1c4{bottom:332.766667pt;}
.yd9{bottom:335.968667pt;}
.y4f{bottom:335.999600pt;}
.y147{bottom:336.002267pt;}
.y126{bottom:336.124400pt;}
.y7b{bottom:339.594400pt;}
.yac{bottom:345.661200pt;}
.y173{bottom:346.595733pt;}
.y1b1{bottom:347.363867pt;}
.y18e{bottom:348.754800pt;}
.y4e{bottom:350.207600pt;}
.y146{bottom:350.210267pt;}
.yd8{bottom:354.448667pt;}
.y125{bottom:354.604400pt;}
.y100{bottom:355.874933pt;}
.yab{bottom:364.141200pt;}
.y145{bottom:364.418267pt;}
.y172{bottom:365.075733pt;}
.y4d{bottom:368.015600pt;}
.yff{bottom:371.514933pt;}
.yd7{bottom:372.928667pt;}
.y124{bottom:373.084400pt;}
.y1b0{bottom:375.670533pt;}
.y144{bottom:382.226267pt;}
.yaa{bottom:382.621200pt;}
.y171{bottom:383.555733pt;}
.yfe{bottom:387.154933pt;}
.y18d{bottom:389.699467pt;}
.y1c3{bottom:391.362533pt;}
.yd6{bottom:391.408667pt;}
.y123{bottom:391.564400pt;}
.y1af{bottom:394.150533pt;}
.y7a{bottom:396.330400pt;}
.ya9{bottom:401.101200pt;}
.y170{bottom:402.035733pt;}
.yfd{bottom:402.794933pt;}
.y1c2{bottom:409.842533pt;}
.yd5{bottom:409.888667pt;}
.y122{bottom:410.044400pt;}
.y4c{bottom:410.179333pt;}
.y79{bottom:411.970400pt;}
.yfc{bottom:418.434933pt;}
.ya8{bottom:419.581200pt;}
.y16f{bottom:420.515733pt;}
.y1ae{bottom:422.457200pt;}
.y78{bottom:427.610400pt;}
.y1c1{bottom:428.322533pt;}
.yd4{bottom:428.368667pt;}
.y121{bottom:428.524400pt;}
.y4b{bottom:428.659333pt;}
.yfb{bottom:434.074933pt;}
.ya7{bottom:438.061200pt;}
.y16e{bottom:438.995733pt;}
.y143{bottom:439.604133pt;}
.y1ad{bottom:440.937200pt;}
.y77{bottom:443.250400pt;}
.yd3{bottom:446.848667pt;}
.y120{bottom:447.004400pt;}
.y4a{bottom:447.139333pt;}
.yfa{bottom:449.714933pt;}
.y1c0{bottom:456.042533pt;}
.ya6{bottom:456.541200pt;}
.y16d{bottom:457.475733pt;}
.y142{bottom:458.084133pt;}
.y76{bottom:458.890400pt;}
.y1ac{bottom:459.417200pt;}
.y18c{bottom:465.282533pt;}
.yd2{bottom:465.328667pt;}
.y11f{bottom:465.484400pt;}
.y1bf{bottom:474.522533pt;}
.y75{bottom:474.530400pt;}
.y49{bottom:474.832667pt;}
.y16c{bottom:475.955733pt;}
.y141{bottom:476.564133pt;}
.y18b{bottom:483.762533pt;}
.yf9{bottom:483.765333pt;}
.yd1{bottom:483.808667pt;}
.y11e{bottom:483.964400pt;}
.y1ab{bottom:487.723867pt;}
.ya5{bottom:488.631867pt;}
.y74{bottom:490.170400pt;}
.y48{bottom:493.312667pt;}
.y16b{bottom:494.435733pt;}
.y140{bottom:495.044133pt;}
.y18a{bottom:502.242533pt;}
.yf8{bottom:502.245333pt;}
.yd0{bottom:502.288667pt;}
.y11d{bottom:502.444400pt;}
.y1aa{bottom:506.203867pt;}
.ya4{bottom:507.111867pt;}
.y47{bottom:511.792667pt;}
.y16a{bottom:512.915733pt;}
.y13f{bottom:513.524133pt;}
.y189{bottom:520.722533pt;}
.yf7{bottom:520.725333pt;}
.ycf{bottom:520.768667pt;}
.y11c{bottom:520.924400pt;}
.y2b{bottom:523.377067pt;}
.y24{bottom:523.393333pt;}
.y73{bottom:524.286400pt;}
.ya3{bottom:525.591867pt;}
.y46{bottom:530.272667pt;}
.y169{bottom:531.395733pt;}
.y13e{bottom:532.004133pt;}
.y1a9{bottom:534.510533pt;}
.y2a{bottom:537.585067pt;}
.y23{bottom:537.601333pt;}
.y188{bottom:539.202533pt;}
.yf6{bottom:539.205333pt;}
.yce{bottom:539.248667pt;}
.y11b{bottom:539.404400pt;}
.y72{bottom:542.766400pt;}
.ya2{bottom:544.071867pt;}
.y1be{bottom:548.442533pt;}
.y45{bottom:548.752667pt;}
.y168{bottom:549.875733pt;}
.y13d{bottom:550.484133pt;}
.y29{bottom:551.793067pt;}
.y22{bottom:551.809333pt;}
.y1a8{bottom:552.990533pt;}
.y187{bottom:557.682533pt;}
.ycd{bottom:557.728667pt;}
.y11a{bottom:557.884400pt;}
.ya1{bottom:562.551867pt;}
.y28{bottom:566.001067pt;}
.y21{bottom:566.017333pt;}
.y1bd{bottom:566.922533pt;}
.yf5{bottom:566.925333pt;}
.y44{bottom:567.232667pt;}
.y167{bottom:568.355733pt;}
.y13c{bottom:568.964133pt;}
.y1a7{bottom:571.470533pt;}
.y186{bottom:576.162533pt;}
.y119{bottom:576.364400pt;}
.y27{bottom:580.209067pt;}
.y20{bottom:580.225333pt;}
.ya0{bottom:581.031867pt;}
.y71{bottom:583.711200pt;}
.yf4{bottom:585.405333pt;}
.ycc{bottom:585.448667pt;}
.y43{bottom:585.712667pt;}
.y13b{bottom:587.444133pt;}
.y26{bottom:594.417067pt;}
.y185{bottom:594.642533pt;}
.y9f{bottom:599.511867pt;}
.y1a6{bottom:599.777200pt;}
.y1f{bottom:601.537333pt;}
.yf3{bottom:603.885333pt;}
.ycb{bottom:603.928667pt;}
.y42{bottom:604.192667pt;}
.y166{bottom:605.316533pt;}
.y13a{bottom:605.924133pt;}
.y25{bottom:608.625067pt;}
.y184{bottom:613.122533pt;}
.y9e{bottom:617.991867pt;}
.y1a5{bottom:618.257200pt;}
.y118{bottom:619.198933pt;}
.y165{bottom:620.956533pt;}
.yf2{bottom:622.365333pt;}
.yca{bottom:622.408667pt;}
.y41{bottom:622.672667pt;}
.y139{bottom:624.404133pt;}
.y183{bottom:631.602533pt;}
.y9d{bottom:636.471867pt;}
.y164{bottom:636.596533pt;}
.y1bc{bottom:640.842533pt;}
.yf1{bottom:640.845333pt;}
.yc9{bottom:640.888667pt;}
.y40{bottom:641.152667pt;}
.y138{bottom:642.884133pt;}
.y1a4{bottom:646.563867pt;}
.y17{bottom:648.121333pt;}
.y182{bottom:650.082533pt;}
.y163{bottom:652.236533pt;}
.y9c{bottom:654.951867pt;}
.y1e{bottom:655.225333pt;}
.yc8{bottom:659.322533pt;}
.yf0{bottom:659.325333pt;}
.y70{bottom:659.351600pt;}
.y3f{bottom:659.632667pt;}
.y137{bottom:661.364133pt;}
.y16{bottom:662.329333pt;}
.y1a3{bottom:665.043867pt;}
.y162{bottom:667.879200pt;}
.y181{bottom:668.562533pt;}
.y1d{bottom:669.433333pt;}
.y9b{bottom:673.431867pt;}
.y15{bottom:676.537333pt;}
.yc7{bottom:677.802533pt;}
.yef{bottom:677.805333pt;}
.y6f{bottom:677.831600pt;}
.y136{bottom:679.844133pt;}
.y161{bottom:683.519200pt;}
.y1a2{bottom:683.523867pt;}
.y1c{bottom:683.641333pt;}
.y180{bottom:687.042533pt;}
.y117{bottom:688.451067pt;}
.y14{bottom:690.745333pt;}
.y9a{bottom:691.911867pt;}
.y3e{bottom:692.819867pt;}
.yc6{bottom:696.282533pt;}
.yee{bottom:696.285333pt;}
.y6e{bottom:696.311600pt;}
.y1b{bottom:697.849333pt;}
.y135{bottom:698.324133pt;}
.y160{bottom:699.159200pt;}
.y13{bottom:704.953333pt;}
.y17f{bottom:705.522533pt;}
.y116{bottom:706.931067pt;}
.y3d{bottom:708.459867pt;}
.y99{bottom:710.391867pt;}
.y1a1{bottom:711.830533pt;}
.y1a{bottom:712.057333pt;}
.yc5{bottom:714.762533pt;}
.yed{bottom:714.765333pt;}
.y6d{bottom:714.791600pt;}
.y134{bottom:716.804133pt;}
.y12{bottom:719.161333pt;}
.y17e{bottom:724.002533pt;}
.y3c{bottom:724.099867pt;}
.y115{bottom:725.411067pt;}
.y19{bottom:726.265333pt;}
.y98{bottom:728.871867pt;}
.y1a0{bottom:730.310533pt;}
.yc4{bottom:733.242533pt;}
.y15f{bottom:733.243867pt;}
.yec{bottom:733.245333pt;}
.y6c{bottom:733.271600pt;}
.y11{bottom:733.369333pt;}
.y3b{bottom:739.739867pt;}
.y18{bottom:740.473333pt;}
.y17d{bottom:742.482533pt;}
.y114{bottom:743.891067pt;}
.y97{bottom:747.351867pt;}
.yc3{bottom:751.722533pt;}
.y15e{bottom:751.723867pt;}
.yeb{bottom:751.725333pt;}
.y6b{bottom:751.751600pt;}
.y10{bottom:754.681333pt;}
.y3a{bottom:755.379867pt;}
.y133{bottom:757.748800pt;}
.y19f{bottom:758.617200pt;}
.y17c{bottom:760.962533pt;}
.y96{bottom:765.831867pt;}
.yc2{bottom:770.202533pt;}
.y15d{bottom:770.203867pt;}
.yea{bottom:770.205333pt;}
.y39{bottom:771.019867pt;}
.y17b{bottom:779.442533pt;}
.y6a{bottom:779.447867pt;}
.y113{bottom:780.854533pt;}
.y95{bottom:784.311867pt;}
.y38{bottom:786.659867pt;}
.y19e{bottom:786.923867pt;}
.yc1{bottom:788.682533pt;}
.ye9{bottom:788.685333pt;}
.y112{bottom:796.494533pt;}
.y17a{bottom:797.922533pt;}
.y15c{bottom:797.923867pt;}
.y69{bottom:797.927867pt;}
.y37{bottom:802.299867pt;}
.y94{bottom:802.791867pt;}
.y19d{bottom:805.403867pt;}
.yc0{bottom:807.162533pt;}
.ye8{bottom:807.165333pt;}
.y111{bottom:812.134533pt;}
.y132{bottom:816.402533pt;}
.y15b{bottom:816.403867pt;}
.y68{bottom:816.407867pt;}
.y19c{bottom:823.883867pt;}
.ybf{bottom:825.642533pt;}
.ye7{bottom:825.645333pt;}
.y110{bottom:827.774533pt;}
.y36{bottom:832.624133pt;}
.y93{bottom:834.882533pt;}
.y15a{bottom:834.883867pt;}
.y67{bottom:834.887867pt;}
.y10f{bottom:843.414533pt;}
.ybe{bottom:844.122533pt;}
.ye6{bottom:844.125333pt;}
.yf{bottom:849.352267pt;}
.y35{bottom:851.104133pt;}
.y19b{bottom:852.190533pt;}
.y92{bottom:853.362533pt;}
.y159{bottom:853.363867pt;}
.y66{bottom:853.367867pt;}
.y10e{bottom:859.054533pt;}
.ybd{bottom:862.602533pt;}
.ye5{bottom:862.605333pt;}
.ye{bottom:867.821467pt;}
.y34{bottom:869.584133pt;}
.y91{bottom:871.842533pt;}
.y158{bottom:871.843867pt;}
.y65{bottom:871.847867pt;}
.y10d{bottom:874.694533pt;}
.y19a{bottom:880.497200pt;}
.ybc{bottom:881.082533pt;}
.ye4{bottom:881.085333pt;}
.y33{bottom:888.064133pt;}
.y90{bottom:890.322533pt;}
.y157{bottom:890.323867pt;}
.y64{bottom:890.327867pt;}
.y199{bottom:898.977200pt;}
.ybb{bottom:899.562533pt;}
.ye3{bottom:899.565333pt;}
.y32{bottom:906.544133pt;}
.yd{bottom:907.282800pt;}
.y8f{bottom:908.802533pt;}
.y10c{bottom:908.803867pt;}
.y63{bottom:908.807867pt;}
.y198{bottom:917.457200pt;}
.yba{bottom:918.042533pt;}
.ye2{bottom:918.045333pt;}
.y31{bottom:925.024133pt;}
.y8e{bottom:927.282533pt;}
.y10b{bottom:927.283867pt;}
.y62{bottom:927.287867pt;}
.yb9{bottom:936.522533pt;}
.ye1{bottom:936.525333pt;}
.y30{bottom:943.504133pt;}
.y8d{bottom:945.762533pt;}
.y61{bottom:945.763867pt;}
.yc{bottom:946.736000pt;}
.y8c{bottom:964.242533pt;}
.y60{bottom:964.243867pt;}
.yb{bottom:975.536000pt;}
.y2f{bottom:980.669333pt;}
.y8b{bottom:982.722533pt;}
.y5f{bottom:982.723867pt;}
.ya{bottom:1033.547067pt;}
.y2e{bottom:1041.982133pt;}
.y9{bottom:1061.227067pt;}
.y8{bottom:1073.227067pt;}
.hc{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.hd{height:36.040000pt;}
.ha{height:36.672000pt;}
.hb{height:38.160000pt;}
.h2{height:40.304688pt;}
.h9{height:42.400000pt;}
.h1a{height:43.549333pt;}
.hf{height:46.640000pt;}
.h16{height:46.824533pt;}
.h15{height:47.910667pt;}
.h17{height:47.926667pt;}
.h12{height:47.932000pt;}
.h11{height:47.951733pt;}
.h14{height:47.983733pt;}
.h13{height:48.010933pt;}
.h10{height:48.022667pt;}
.h19{height:48.076000pt;}
.h1b{height:48.087200pt;}
.h18{height:48.896000pt;}
.he{height:52.970667pt;}
.h7{height:57.344000pt;}
.h8{height:59.360000pt;}
.h5{height:69.888000pt;}
.h6{height:78.408000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x12{left:77.308933pt;}
.xb{left:83.316267pt;}
.xf{left:94.492800pt;}
.x14{left:96.214800pt;}
.x2{left:98.267867pt;}
.x15{left:120.940000pt;}
.x16{left:122.658267pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.x11{left:136.062933pt;}
.x13{left:137.788400pt;}
.x8{left:209.170800pt;}
.xc{left:215.599733pt;}
.xe{left:281.349200pt;}
.xd{left:282.802533pt;}
.x7{left:365.166933pt;}
.x6{left:369.016800pt;}
.xa{left:445.300133pt;}
.x9{left:576.866800pt;}
.x10{left:636.658400pt;}
.x5{left:652.369467pt;}
}




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