
    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_8c5e0b0aa8d11c49c792d9e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_82d894945a71d9a8cd58cfa1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_8a36af63cc2a2555acdaa5e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_ae6f1c8962221dc39cf16a38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;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_571e378b47523854448a22b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_6b250928e35cf7771528d811.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.485000;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_e911d1aceeb67f54a1d2170c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_2e5e66f759adc44d1dfa5e10.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_cf332acc64bff0248c56e181.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.509000;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_9060a36ea3d41e8a72774365.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_706d944fd651311fe1e3f82a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;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_d6858bc73ba8ca54081f1972.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bbe4a805ea21c223211a3c59.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b62a617c30255a3a9c46cbf0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.579000;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_2b620c63667702831a29f01a.woff2')format("woff");}.fff{font-family:fff;line-height:0.774000;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_d15084509fe77ca2dffbce4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684000;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_71eb15bf18cbaca8e0fd0d29.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.674000;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_a9f6b8b6b71de9f012484426.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.728000;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_3e8cfd557b7d166372ea147f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.106000;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_a58afef344dcbc080982cebe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.959000;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_dbb9651103617c140533212f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.068000;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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.906009px;}
.ls13{letter-spacing:-0.876009px;}
.ls10{letter-spacing:-0.846008px;}
.lsf{letter-spacing:-0.840008px;}
.ls14{letter-spacing:-0.822008px;}
.lse{letter-spacing:-0.810008px;}
.ls11{letter-spacing:-0.786008px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.017100px;}
.ls1a{letter-spacing:0.038400px;}
.ls18{letter-spacing:0.060001px;}
.lsb{letter-spacing:0.072001px;}
.ls1c{letter-spacing:0.144001px;}
.ls4{letter-spacing:0.171000px;}
.ls5{letter-spacing:0.174002px;}
.ls6{letter-spacing:0.186002px;}
.ls1d{letter-spacing:0.191998px;}
.lsc{letter-spacing:0.354004px;}
.ls17{letter-spacing:0.402004px;}
.ls9{letter-spacing:10.243072px;}
.ls15{letter-spacing:12.990130px;}
.lsd{letter-spacing:13.098131px;}
.ls16{letter-spacing:13.326133px;}
.ls8{letter-spacing:13.452135px;}
.ls1b{letter-spacing:13.487831px;}
.ls19{letter-spacing:13.492631px;}
.ls1{letter-spacing:20.783740px;}
.ls2{letter-spacing:20.788540px;}
.ls0{letter-spacing:21.124536px;}
.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;}
}
.ws52{word-spacing:-13.158132px;}
.ws2f{word-spacing:-10.291071px;}
.wsc2{word-spacing:-0.071999px;}
.ws1d{word-spacing:-0.060001px;}
.ws16{word-spacing:-0.057000px;}
.ws4{word-spacing:-0.054000px;}
.wsb{word-spacing:-0.047999px;}
.ws4d{word-spacing:0.000000px;}
.ws5c{word-spacing:0.780008px;}
.ws5d{word-spacing:0.786008px;}
.ws34{word-spacing:9.556681px;}
.ws32{word-spacing:9.633480px;}
.wsed{word-spacing:9.643079px;}
.ws47{word-spacing:9.647879px;}
.ws3c{word-spacing:9.657479px;}
.ws4a{word-spacing:9.705479px;}
.ws45{word-spacing:9.715079px;}
.ws49{word-spacing:9.719879px;}
.ws36{word-spacing:9.739078px;}
.wsf1{word-spacing:9.763078px;}
.wsba{word-spacing:9.782278px;}
.ws35{word-spacing:9.796678px;}
.ws46{word-spacing:9.806277px;}
.ws8{word-spacing:9.820677px;}
.ws31{word-spacing:9.825477px;}
.ws4c{word-spacing:9.844677px;}
.ws3e{word-spacing:9.849477px;}
.wsdb{word-spacing:9.859077px;}
.ws3b{word-spacing:9.873477px;}
.ws39{word-spacing:9.883076px;}
.ws3a{word-spacing:9.892676px;}
.wsd7{word-spacing:9.897476px;}
.wsc7{word-spacing:9.902276px;}
.ws7a{word-spacing:9.916676px;}
.ws41{word-spacing:9.921476px;}
.ws7b{word-spacing:9.926276px;}
.wse7{word-spacing:9.931076px;}
.wscd{word-spacing:9.935876px;}
.wsdf{word-spacing:9.945476px;}
.ws38{word-spacing:9.950276px;}
.wse1{word-spacing:9.964675px;}
.wsef{word-spacing:9.969475px;}
.wse9{word-spacing:9.974275px;}
.ws44{word-spacing:9.979075px;}
.wsdc{word-spacing:9.983875px;}
.wsd1{word-spacing:9.988675px;}
.wsee{word-spacing:10.003075px;}
.ws37{word-spacing:10.007875px;}
.ws9{word-spacing:10.012675px;}
.ws79{word-spacing:10.036675px;}
.ws40{word-spacing:10.046274px;}
.wsa{word-spacing:10.051074px;}
.wsd4{word-spacing:10.055874px;}
.wsc8{word-spacing:10.060674px;}
.ws43{word-spacing:10.079874px;}
.wsdd{word-spacing:10.089474px;}
.wse2{word-spacing:10.099074px;}
.ws48{word-spacing:10.103874px;}
.wsb8{word-spacing:10.118274px;}
.wsb9{word-spacing:10.123073px;}
.wscf{word-spacing:10.127873px;}
.wsec{word-spacing:10.132673px;}
.wsd2{word-spacing:10.137473px;}
.ws78{word-spacing:10.142273px;}
.wseb{word-spacing:10.151873px;}
.wse4{word-spacing:10.161473px;}
.wscc{word-spacing:10.171073px;}
.ws2e{word-spacing:10.175873px;}
.ws30{word-spacing:10.180673px;}
.wsd0{word-spacing:10.195073px;}
.wsca{word-spacing:10.199873px;}
.wse8{word-spacing:10.204672px;}
.ws33{word-spacing:10.209472px;}
.wsd9{word-spacing:10.228672px;}
.wsd8{word-spacing:10.233472px;}
.ws4b{word-spacing:10.238272px;}
.wsde{word-spacing:10.267072px;}
.ws92{word-spacing:10.271872px;}
.wsd3{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.wse5{word-spacing:10.300671px;}
.wse6{word-spacing:10.304438px;}
.wsea{word-spacing:10.319871px;}
.wsda{word-spacing:10.329471px;}
.wsd6{word-spacing:10.339071px;}
.wse3{word-spacing:10.343871px;}
.wse0{word-spacing:10.348671px;}
.wsc9{word-spacing:10.353471px;}
.wsb7{word-spacing:10.387070px;}
.ws3f{word-spacing:10.425470px;}
.ws42{word-spacing:10.444669px;}
.ws3d{word-spacing:10.463869px;}
.wsce{word-spacing:10.468669px;}
.ws7{word-spacing:10.497469px;}
.wscb{word-spacing:10.535868px;}
.wsf0{word-spacing:10.564668px;}
.ws64{word-spacing:11.424114px;}
.ws66{word-spacing:11.448114px;}
.ws8b{word-spacing:11.598116px;}
.ws5{word-spacing:11.647800px;}
.ws3{word-spacing:11.728800px;}
.ws6{word-spacing:11.896200px;}
.ws82{word-spacing:12.078121px;}
.ws86{word-spacing:12.090121px;}
.ws60{word-spacing:12.114121px;}
.ws80{word-spacing:12.174122px;}
.ws8f{word-spacing:12.222122px;}
.ws62{word-spacing:12.258123px;}
.ws87{word-spacing:12.270123px;}
.ws8d{word-spacing:12.288123px;}
.ws7e{word-spacing:12.312123px;}
.ws10{word-spacing:12.351900px;}
.wse{word-spacing:12.357600px;}
.ws8e{word-spacing:12.360124px;}
.ws5f{word-spacing:12.372124px;}
.ws25{word-spacing:12.396124px;}
.ws8a{word-spacing:12.414124px;}
.ws7f{word-spacing:12.420124px;}
.wsd{word-spacing:12.443100px;}
.ws12{word-spacing:12.448800px;}
.ws83{word-spacing:12.450125px;}
.wsb3{word-spacing:12.456125px;}
.ws81{word-spacing:12.504125px;}
.ws85{word-spacing:12.510125px;}
.ws11{word-spacing:12.517200px;}
.ws88{word-spacing:12.534125px;}
.ws26{word-spacing:12.540125px;}
.ws18{word-spacing:12.545700px;}
.wsc{word-spacing:12.614100px;}
.ws8c{word-spacing:12.618126px;}
.ws14{word-spacing:12.665400px;}
.ws89{word-spacing:12.672127px;}
.wsac{word-spacing:12.695841px;}
.ws13{word-spacing:12.699600px;}
.wsf{word-spacing:12.762300px;}
.ws84{word-spacing:12.798128px;}
.wsa1{word-spacing:12.834128px;}
.ws17{word-spacing:12.853500px;}
.wsb0{word-spacing:12.888129px;}
.ws99{word-spacing:12.900129px;}
.ws1a{word-spacing:12.906129px;}
.ws15{word-spacing:12.910500px;}
.ws6e{word-spacing:12.936129px;}
.wsb5{word-spacing:12.960130px;}
.wsa2{word-spacing:12.972130px;}
.ws59{word-spacing:12.978130px;}
.wsbd{word-spacing:12.984130px;}
.wsae{word-spacing:12.988638px;}
.ws23{word-spacing:12.990130px;}
.ws6c{word-spacing:12.996130px;}
.wsc0{word-spacing:13.002130px;}
.ws98{word-spacing:13.008130px;}
.wsc1{word-spacing:13.014130px;}
.wsc3{word-spacing:13.020130px;}
.ws1b{word-spacing:13.026130px;}
.ws2b{word-spacing:13.038130px;}
.ws1f{word-spacing:13.044130px;}
.ws51{word-spacing:13.050130px;}
.ws91{word-spacing:13.056131px;}
.ws53{word-spacing:13.062131px;}
.ws56{word-spacing:13.068131px;}
.ws4e{word-spacing:13.080131px;}
.wsa4{word-spacing:13.084636px;}
.ws76{word-spacing:13.092131px;}
.ws28{word-spacing:13.098131px;}
.wsab{word-spacing:13.103836px;}
.ws20{word-spacing:13.104131px;}
.ws1c{word-spacing:13.110131px;}
.ws96{word-spacing:13.116131px;}
.wsaf{word-spacing:13.118236px;}
.ws6a{word-spacing:13.128131px;}
.ws6f{word-spacing:13.134131px;}
.ws54{word-spacing:13.152132px;}
.wsc5{word-spacing:13.158132px;}
.ws70{word-spacing:13.176132px;}
.wsbb{word-spacing:13.182132px;}
.wsad{word-spacing:13.185435px;}
.ws9c{word-spacing:13.188132px;}
.ws95{word-spacing:13.194132px;}
.ws74{word-spacing:13.200132px;}
.ws9b{word-spacing:13.206132px;}
.ws7c{word-spacing:13.212132px;}
.ws24{word-spacing:13.218132px;}
.wsa3{word-spacing:13.219035px;}
.ws50{word-spacing:13.224132px;}
.ws29{word-spacing:13.236132px;}
.ws9f{word-spacing:13.242132px;}
.ws9a{word-spacing:13.248132px;}
.ws27{word-spacing:13.254133px;}
.wsb4{word-spacing:13.272133px;}
.wsa0{word-spacing:13.284133px;}
.ws21{word-spacing:13.290133px;}
.wsa5{word-spacing:13.291034px;}
.ws93{word-spacing:13.296133px;}
.wsbe{word-spacing:13.302133px;}
.ws7d{word-spacing:13.308133px;}
.ws77{word-spacing:13.314133px;}
.ws6d{word-spacing:13.320133px;}
.ws9e{word-spacing:13.326133px;}
.ws9d{word-spacing:13.332133px;}
.ws71{word-spacing:13.338133px;}
.wsb1{word-spacing:13.350134px;}
.ws55{word-spacing:13.368134px;}
.ws1e{word-spacing:13.374134px;}
.ws73{word-spacing:13.380134px;}
.ws4f{word-spacing:13.386134px;}
.ws22{word-spacing:13.392134px;}
.wsb6{word-spacing:13.398134px;}
.ws72{word-spacing:13.410134px;}
.ws68{word-spacing:13.416134px;}
.ws69{word-spacing:13.422134px;}
.ws58{word-spacing:13.434134px;}
.ws2a{word-spacing:13.440134px;}
.ws6b{word-spacing:13.446134px;}
.ws2c{word-spacing:13.452135px;}
.ws57{word-spacing:13.470135px;}
.ws75{word-spacing:13.494135px;}
.ws19{word-spacing:13.506135px;}
.ws63{word-spacing:13.518135px;}
.ws97{word-spacing:13.530135px;}
.ws94{word-spacing:13.560136px;}
.wsb2{word-spacing:13.692137px;}
.ws2d{word-spacing:13.722137px;}
.wsbc{word-spacing:13.788138px;}
.ws67{word-spacing:13.902139px;}
.ws5e{word-spacing:13.944139px;}
.ws5a{word-spacing:13.998140px;}
.ws65{word-spacing:14.040140px;}
.ws5b{word-spacing:14.136141px;}
.ws61{word-spacing:14.184142px;}
.wsc4{word-spacing:15.523071px;}
.wsbf{word-spacing:15.631070px;}
.ws90{word-spacing:15.652670px;}
.ws1{word-spacing:26.040130px;}
.ws2{word-spacing:26.280131px;}
.wsc6{word-spacing:59.821652px;}
.wsd5{word-spacing:59.860052px;}
.wsaa{word-spacing:113.979375px;}
.wsa8{word-spacing:121.961675px;}
.wsa6{word-spacing:140.475044px;}
.wsa9{word-spacing:238.782615px;}
.wsa7{word-spacing:322.800765px;}
._d{margin-left:-12.047700px;}
._9{margin-left:-4.631942px;}
._b{margin-left:-3.523156px;}
._c{margin-left:-2.361570px;}
._2{margin-left:-1.228785px;}
._3{width:1.060200px;}
._1{width:9.441482px;}
._a{width:11.131061px;}
._6{width:12.480125px;}
._4{width:13.668600px;}
._5{width:14.688147px;}
._e{width:16.257397px;}
._f{width:20.860539px;}
._0{width:27.168136px;}
._7{width:46.545018px;}
._13{width:54.464919px;}
._23{width:83.034162px;}
._1a{width:92.442044px;}
._1e{width:98.009975px;}
._14{width:105.977875px;}
._1c{width:110.969813px;}
._1f{width:114.363370px;}
._15{width:140.859039px;}
._22{width:180.016950px;}
._25{width:185.498481px;}
._19{width:206.512619px;}
._21{width:211.994150px;}
._1d{width:220.000450px;}
._18{width:238.489819px;}
._24{width:269.857427px;}
._1b{width:285.802827px;}
._26{width:296.353096px;}
._17{width:322.848764px;}
._20{width:343.291709px;}
._16{width:369.787378px;}
._12{width:554.983463px;}
._10{width:697.959275px;}
._11{width:1198.823415px;}
._8{width:1808.938988px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y26{bottom:54.000000px;}
.y74{bottom:124.491540px;}
.y25{bottom:124.492965px;}
.y91{bottom:124.497210px;}
.y113{bottom:124.497600px;}
.y43{bottom:124.503964px;}
.y14d{bottom:130.109465px;}
.y112{bottom:138.784621px;}
.y42{bottom:141.001358px;}
.y7e{bottom:142.268880px;}
.ycb{bottom:143.546287px;}
.y73{bottom:143.966234px;}
.y24{bottom:143.967660px;}
.y90{bottom:143.971904px;}
.y14c{bottom:144.311287px;}
.ye8{bottom:148.128435px;}
.y41{bottom:157.498751px;}
.y111{bottom:158.257978px;}
.y14b{bottom:158.598309px;}
.y7d{bottom:161.743575px;}
.y72{bottom:163.524930px;}
.y23{bottom:163.526355px;}
.y8f{bottom:163.530600px;}
.ye7{bottom:167.603130px;}
.yca{bottom:170.503950px;}
.y110{bottom:172.459800px;}
.y40{bottom:173.996145px;}
.yc9{bottom:175.861350px;}
.y14a{bottom:178.072865px;}
.y7c{bottom:181.302270px;}
.y71{bottom:182.999625px;}
.y22{bottom:183.001050px;}
.ye6{bottom:187.077825px;}
.yc8{bottom:188.531471px;}
.y8e{bottom:188.957400px;}
.y3f{bottom:190.493539px;}
.y149{bottom:192.359887px;}
.y10f{bottom:192.784200px;}
.y7b{bottom:200.776965px;}
.y70{bottom:202.474319px;}
.y21{bottom:202.475745px;}
.yc7{bottom:206.560045px;}
.ye5{bottom:206.636520px;}
.y3e{bottom:206.990933px;}
.y148{bottom:211.833243px;}
.y7a{bottom:220.251660px;}
.y6f{bottom:222.033015px;}
.y20{bottom:222.034440px;}
.y3d{bottom:223.488327px;}
.ye4{bottom:226.111215px;}
.y147{bottom:226.120265px;}
.yc6{bottom:235.388485px;}
.y10e{bottom:237.344460px;}
.y79{bottom:239.810355px;}
.y3c{bottom:239.985720px;}
.y6e{bottom:241.507710px;}
.y1f{bottom:241.509135px;}
.y8d{bottom:243.972811px;}
.ye3{bottom:245.585910px;}
.y146{bottom:245.593621px;}
.yc3{bottom:254.182284px;}
.yc5{bottom:254.182650px;}
.y3b{bottom:256.483114px;}
.y10d{bottom:256.819154px;}
.y78{bottom:259.285050px;}
.yc4{bottom:259.540050px;}
.y145{bottom:259.795444px;}
.y6d{bottom:260.982404px;}
.y1e{bottom:260.983830px;}
.y8c{bottom:263.447505px;}
.ye2{bottom:265.144605px;}
.yc0{bottom:272.889581px;}
.yc2{bottom:272.891250px;}
.y3a{bottom:272.980508px;}
.y144{bottom:274.082465px;}
.y10c{bottom:276.377850px;}
.yc1{bottom:278.248650px;}
.y6c{bottom:280.457099px;}
.y1d{bottom:280.458525px;}
.y8b{bottom:282.922200px;}
.ye1{bottom:284.619300px;}
.y80{bottom:291.260391px;}
.ybf{bottom:291.682546px;}
.y143{bottom:293.555822px;}
.y39{bottom:298.492189px;}
.y6b{bottom:300.015795px;}
.y1c{bottom:300.017220px;}
.y10b{bottom:301.804650px;}
.y8a{bottom:302.480896px;}
.ye0{bottom:304.093995px;}
.y142{bottom:307.842843px;}
.ybe{bottom:310.391513px;}
.y7f{bottom:314.560500px;}
.y38{bottom:314.989583px;}
.y6a{bottom:319.490490px;}
.y1b{bottom:319.491915px;}
.y89{bottom:321.955590px;}
.y141{bottom:322.044666px;}
.ydf{bottom:323.568690px;}
.ybd{bottom:329.185678px;}
.y69{bottom:338.965184px;}
.y1a{bottom:338.966610px;}
.y37{bottom:340.501264px;}
.y88{bottom:341.430285px;}
.y140{bottom:341.603221px;}
.yde{bottom:343.127385px;}
.y10a{bottom:346.449315px;}
.ybc{bottom:347.894644px;}
.y13f{bottom:355.805044px;}
.y36{bottom:356.998658px;}
.y68{bottom:358.523880px;}
.y19{bottom:358.525305px;}
.y87{bottom:360.904980px;}
.ydd{bottom:362.602080px;}
.y109{bottom:365.924010px;}
.ybb{bottom:366.688809px;}
.y35{bottom:373.496051px;}
.y13e{bottom:375.363599px;}
.y67{bottom:377.998575px;}
.y18{bottom:378.000000px;}
.y86{bottom:380.463675px;}
.ydc{bottom:382.076775px;}
.y108{bottom:385.398704px;}
.yba{bottom:389.139328px;}
.y13d{bottom:389.565422px;}
.y34{bottom:389.993445px;}
.y66{bottom:397.473269px;}
.y85{bottom:399.938370px;}
.ydb{bottom:401.635470px;}
.y17{bottom:403.511700px;}
.y13c{bottom:403.852443px;}
.y107{bottom:404.957400px;}
.y33{bottom:406.490839px;}
.yb9{bottom:414.906606px;}
.y65{bottom:417.031965px;}
.y84{bottom:419.413065px;}
.yda{bottom:421.110165px;}
.y32{bottom:422.988233px;}
.y13b{bottom:423.325800px;}
.y106{bottom:430.384200px;}
.y64{bottom:436.506660px;}
.y13a{bottom:437.612821px;}
.y83{bottom:438.971761px;}
.yb8{bottom:439.398300px;}
.yd9{bottom:440.584860px;}
.y31{bottom:448.499914px;}
.y139{bottom:451.814643px;}
.y63{bottom:455.981354px;}
.y82{bottom:458.446455px;}
.yd8{bottom:460.143555px;}
.y138{bottom:471.287447px;}
.y30{bottom:474.011595px;}
.y62{bottom:475.540050px;}
.y81{bottom:477.921150px;}
.yd7{bottom:479.618250px;}
.y105{bottom:484.041525px;}
.y137{bottom:485.574469px;}
.yd6{bottom:499.092945px;}
.y2f{bottom:499.523276px;}
.y136{bottom:499.861490px;}
.y61{bottom:500.966700px;}
.y16{bottom:503.435550px;}
.y104{bottom:503.516220px;}
.yb7{bottom:507.088665px;}
.y94{bottom:509.980219px;}
.yd5{bottom:518.651640px;}
.y135{bottom:519.334847px;}
.y103{bottom:522.990915px;}
.y15{bottom:524.440050px;}
.y2e{bottom:525.034957px;}
.yb6{bottom:526.647361px;}
.y93{bottom:533.196329px;}
.y134{bottom:533.621868px;}
.yd4{bottom:538.126335px;}
.y2d{bottom:541.532351px;}
.y102{bottom:542.549611px;}
.y14{bottom:545.444550px;}
.yb5{bottom:546.122055px;}
.y92{bottom:547.483350px;}
.y133{bottom:553.095225px;}
.y60{bottom:554.107320px;}
.yd3{bottom:557.601030px;}
.y101{bottom:562.024305px;}
.yb4{bottom:565.596750px;}
.yb2{bottom:565.597154px;}
.y13{bottom:566.449050px;}
.y2c{bottom:567.044032px;}
.y132{bottom:567.297047px;}
.yb3{bottom:572.314800px;}
.y5f{bottom:573.582015px;}
.yd2{bottom:577.075725px;}
.y100{bottom:581.499000px;}
.y131{bottom:581.584069px;}
.y2b{bottom:583.541426px;}
.yaf{bottom:585.148590px;}
.yb1{bottom:585.155850px;}
.y12{bottom:587.453550px;}
.yb0{bottom:591.788850px;}
.y5e{bottom:593.056710px;}
.yd1{bottom:596.634420px;}
.y2a{bottom:600.038820px;}
.y130{bottom:601.057425px;}
.yae{bottom:604.623285px;}
.yff{bottom:607.010850px;}
.y11{bottom:608.458050px;}
.y5d{bottom:612.615405px;}
.y12f{bottom:615.344447px;}
.yd0{bottom:616.109115px;}
.y29{bottom:616.536213px;}
.yad{bottom:624.097980px;}
.y10{bottom:629.462550px;}
.y12e{bottom:629.546269px;}
.y5c{bottom:632.090100px;}
.y28{bottom:633.033607px;}
.ycf{bottom:635.583810px;}
.yac{bottom:643.656675px;}
.y12d{bottom:649.104825px;}
.yf{bottom:650.467050px;}
.yfe{bottom:651.564254px;}
.y5b{bottom:651.564795px;}
.yce{bottom:655.142505px;}
.y27{bottom:657.609300px;}
.yab{bottom:663.131370px;}
.y12c{bottom:663.306647px;}
.yfd{bottom:671.122950px;}
.y5a{bottom:671.123490px;}
.ye{bottom:671.471550px;}
.ycd{bottom:674.617200px;}
.yaa{bottom:682.606065px;}
.y12b{bottom:682.865203px;}
.yfc{bottom:690.597645px;}
.y59{bottom:690.598185px;}
.yd{bottom:692.476050px;}
.y12a{bottom:697.067025px;}
.ycc{bottom:700.129050px;}
.ya9{bottom:702.080760px;}
.yfb{bottom:710.072340px;}
.y58{bottom:710.072880px;}
.yc{bottom:713.480550px;}
.y129{bottom:716.540382px;}
.ya8{bottom:721.639455px;}
.yfa{bottom:729.631035px;}
.y57{bottom:729.631575px;}
.y128{bottom:730.827403px;}
.yb{bottom:734.485050px;}
.ya7{bottom:741.114150px;}
.y15e{bottom:741.286472px;}
.y127{bottom:745.114425px;}
.yeb{bottom:748.261669px;}
.yf9{bottom:749.105730px;}
.y56{bottom:749.106270px;}
.ya{bottom:755.489550px;}
.y15d{bottom:755.573494px;}
.ya6{bottom:760.588845px;}
.y126{bottom:764.587781px;}
.yf8{bottom:768.580425px;}
.y55{bottom:768.580965px;}
.yea{bottom:771.561778px;}
.y15c{bottom:775.048050px;}
.y125{bottom:778.789604px;}
.ya5{bottom:780.147540px;}
.ye9{bottom:785.763600px;}
.yf7{bottom:788.055119px;}
.y54{bottom:788.055660px;}
.y9{bottom:788.484900px;}
.y15b{bottom:789.335072px;}
.y124{bottom:798.348159px;}
.ya4{bottom:799.622235px;}
.y15a{bottom:803.622093px;}
.yf6{bottom:807.613815px;}
.y53{bottom:807.614355px;}
.y123{bottom:812.549982px;}
.ya3{bottom:819.096930px;}
.y159{bottom:823.095450px;}
.yf5{bottom:827.088510px;}
.y52{bottom:827.089050px;}
.y122{bottom:832.108537px;}
.y158{bottom:837.297272px;}
.ya2{bottom:838.655625px;}
.y121{bottom:846.310360px;}
.yf4{bottom:846.563204px;}
.y51{bottom:846.563745px;}
.y8{bottom:851.499862px;}
.y157{bottom:856.855828px;}
.ya1{bottom:858.130320px;}
.y120{bottom:860.597381px;}
.yf3{bottom:866.121900px;}
.y50{bottom:866.122440px;}
.y156{bottom:871.057650px;}
.ya0{bottom:877.605015px;}
.y11f{bottom:880.071938px;}
.y7{bottom:881.433488px;}
.y155{bottom:885.344672px;}
.yf2{bottom:885.596595px;}
.y4f{bottom:885.597135px;}
.y11e{bottom:894.358959px;}
.y6{bottom:896.484900px;}
.y9f{bottom:897.079710px;}
.y154{bottom:904.818028px;}
.yf1{bottom:905.071290px;}
.y4e{bottom:905.071830px;}
.y11d{bottom:913.833516px;}
.y9e{bottom:916.638405px;}
.y153{bottom:919.105050px;}
.y4{bottom:923.442300px;}
.yf0{bottom:924.629985px;}
.y4d{bottom:924.630525px;}
.y11c{bottom:928.120537px;}
.y5{bottom:929.480100px;}
.y152{bottom:933.306872px;}
.y9b{bottom:936.111825px;}
.y9d{bottom:936.113100px;}
.y9c{bottom:942.746250px;}
.yef{bottom:944.104680px;}
.y4c{bottom:944.105220px;}
.y11b{bottom:947.593894px;}
.y151{bottom:952.865428px;}
.y9a{bottom:955.586519px;}
.y3{bottom:960.943762px;}
.y11a{bottom:961.795716px;}
.yee{bottom:963.579375px;}
.y4b{bottom:963.579915px;}
.y150{bottom:967.067250px;}
.y99{bottom:975.145215px;}
.y119{bottom:981.354272px;}
.yed{bottom:983.138070px;}
.y4a{bottom:983.138611px;}
.y98{bottom:994.619910px;}
.y118{bottom:995.556094px;}
.y2{bottom:998.446950px;}
.y14f{bottom:1000.827628px;}
.yec{bottom:1002.612765px;}
.y49{bottom:1002.613305px;}
.y97{bottom:1014.094604px;}
.y117{bottom:1015.114650px;}
.y46{bottom:1022.087460px;}
.y48{bottom:1022.088000px;}
.y47{bottom:1028.806050px;}
.y116{bottom:1029.316472px;}
.y96{bottom:1033.653300px;}
.y14e{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y45{bottom:1041.562154px;}
.y77{bottom:1046.574793px;}
.y115{bottom:1048.789829px;}
.y95{bottom:1059.079950px;}
.y44{bottom:1061.120850px;}
.y76{bottom:1063.072186px;}
.y114{bottom:1063.076850px;}
.y75{bottom:1118.692500px;}
.h4{height:26.528462px;}
.ha{height:28.477152px;}
.hd{height:28.827495px;}
.h9{height:34.943563px;}
.hb{height:35.375558px;}
.h3{height:39.798000px;}
.h8{height:42.720427px;}
.he{height:42.840428px;}
.h1{height:43.247459px;}
.hf{height:43.249670px;}
.h6{height:51.357000px;}
.h7{height:53.063558px;}
.hc{height:64.871459px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:54.000000px;}
.x1a{left:62.333850px;}
.xb{left:71.433000px;}
.x15{left:102.982188px;}
.x16{left:270.169950px;}
.x1{left:300.018750px;}
.x1b{left:306.651900px;}
.x9{left:317.963429px;}
.x1c{left:331.483190px;}
.x17{left:350.957400px;}
.x2{left:402.491250px;}
.x3{left:408.103800px;}
.x13{left:441.439200px;}
.x14{left:450.113250px;}
.x4{left:525.543150px;}
.x5{left:531.155700px;}
.xf{left:567.807750px;}
.x10{left:576.566700px;}
.x6{left:633.543150px;}
.x7{left:639.070650px;}
.x18{left:678.869100px;}
.xe{left:685.332150px;}
.x19{left:759.656550px;}
.x11{left:761.357250px;}
.x8{left:765.184050px;}
.x12{left:766.799700px;}
.xc{left:791.036100px;}
.xd{left:803.706900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.805341pt;}
.ls13{letter-spacing:-0.778674pt;}
.ls10{letter-spacing:-0.752008pt;}
.lsf{letter-spacing:-0.746674pt;}
.ls14{letter-spacing:-0.730674pt;}
.lse{letter-spacing:-0.720007pt;}
.ls11{letter-spacing:-0.698674pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.015200pt;}
.ls1a{letter-spacing:0.034133pt;}
.ls18{letter-spacing:0.053334pt;}
.lsb{letter-spacing:0.064001pt;}
.ls1c{letter-spacing:0.128001pt;}
.ls4{letter-spacing:0.152000pt;}
.ls5{letter-spacing:0.154668pt;}
.ls6{letter-spacing:0.165335pt;}
.ls1d{letter-spacing:0.170665pt;}
.lsc{letter-spacing:0.314670pt;}
.ls17{letter-spacing:0.357337pt;}
.ls9{letter-spacing:9.104953pt;}
.ls15{letter-spacing:11.546782pt;}
.lsd{letter-spacing:11.642783pt;}
.ls16{letter-spacing:11.845452pt;}
.ls8{letter-spacing:11.957453pt;}
.ls1b{letter-spacing:11.989183pt;}
.ls19{letter-spacing:11.993450pt;}
.ls1{letter-spacing:18.474436pt;}
.ls2{letter-spacing:18.478702pt;}
.ls0{letter-spacing:18.777365pt;}
.ws52{word-spacing:-11.696117pt;}
.ws2f{word-spacing:-9.147619pt;}
.wsc2{word-spacing:-0.063999pt;}
.ws1d{word-spacing:-0.053334pt;}
.ws16{word-spacing:-0.050667pt;}
.ws4{word-spacing:-0.048000pt;}
.wsb{word-spacing:-0.042666pt;}
.ws4d{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.693340pt;}
.ws5d{word-spacing:0.698674pt;}
.ws34{word-spacing:8.494827pt;}
.ws32{word-spacing:8.563093pt;}
.wsed{word-spacing:8.571626pt;}
.ws47{word-spacing:8.575893pt;}
.ws3c{word-spacing:8.584426pt;}
.ws4a{word-spacing:8.627092pt;}
.ws45{word-spacing:8.635625pt;}
.ws49{word-spacing:8.639892pt;}
.ws36{word-spacing:8.656958pt;}
.wsf1{word-spacing:8.678292pt;}
.wsba{word-spacing:8.695358pt;}
.ws35{word-spacing:8.708158pt;}
.ws46{word-spacing:8.716691pt;}
.ws8{word-spacing:8.729491pt;}
.ws31{word-spacing:8.733757pt;}
.ws4c{word-spacing:8.750824pt;}
.ws3e{word-spacing:8.755091pt;}
.wsdb{word-spacing:8.763624pt;}
.ws3b{word-spacing:8.776424pt;}
.ws39{word-spacing:8.784957pt;}
.ws3a{word-spacing:8.793490pt;}
.wsd7{word-spacing:8.797757pt;}
.wsc7{word-spacing:8.802023pt;}
.ws7a{word-spacing:8.814823pt;}
.ws41{word-spacing:8.819090pt;}
.ws7b{word-spacing:8.823356pt;}
.wse7{word-spacing:8.827623pt;}
.wscd{word-spacing:8.831890pt;}
.wsdf{word-spacing:8.840423pt;}
.ws38{word-spacing:8.844689pt;}
.wse1{word-spacing:8.857489pt;}
.wsef{word-spacing:8.861756pt;}
.wse9{word-spacing:8.866023pt;}
.ws44{word-spacing:8.870289pt;}
.wsdc{word-spacing:8.874556pt;}
.wsd1{word-spacing:8.878822pt;}
.wsee{word-spacing:8.891622pt;}
.ws37{word-spacing:8.895889pt;}
.ws9{word-spacing:8.900155pt;}
.ws79{word-spacing:8.921488pt;}
.ws40{word-spacing:8.930022pt;}
.wsa{word-spacing:8.934288pt;}
.wsd4{word-spacing:8.938555pt;}
.wsc8{word-spacing:8.942822pt;}
.ws43{word-spacing:8.959888pt;}
.wsdd{word-spacing:8.968421pt;}
.wse2{word-spacing:8.976954pt;}
.ws48{word-spacing:8.981221pt;}
.wsb8{word-spacing:8.994021pt;}
.wsb9{word-spacing:8.998288pt;}
.wscf{word-spacing:9.002554pt;}
.wsec{word-spacing:9.006821pt;}
.wsd2{word-spacing:9.011087pt;}
.ws78{word-spacing:9.015354pt;}
.wseb{word-spacing:9.023887pt;}
.wse4{word-spacing:9.032420pt;}
.wscc{word-spacing:9.040954pt;}
.ws2e{word-spacing:9.045220pt;}
.ws30{word-spacing:9.049487pt;}
.wsd0{word-spacing:9.062287pt;}
.wsca{word-spacing:9.066553pt;}
.wse8{word-spacing:9.070820pt;}
.ws33{word-spacing:9.075087pt;}
.wsd9{word-spacing:9.092153pt;}
.wsd8{word-spacing:9.096420pt;}
.ws4b{word-spacing:9.100686pt;}
.wsde{word-spacing:9.126286pt;}
.ws92{word-spacing:9.130553pt;}
.wsd3{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.wse5{word-spacing:9.156152pt;}
.wse6{word-spacing:9.159500pt;}
.wsea{word-spacing:9.173219pt;}
.wsda{word-spacing:9.181752pt;}
.wsd6{word-spacing:9.190285pt;}
.wse3{word-spacing:9.194552pt;}
.wse0{word-spacing:9.198818pt;}
.wsc9{word-spacing:9.203085pt;}
.wsb7{word-spacing:9.232951pt;}
.ws3f{word-spacing:9.267084pt;}
.ws42{word-spacing:9.284151pt;}
.ws3d{word-spacing:9.301217pt;}
.wsce{word-spacing:9.305484pt;}
.ws7{word-spacing:9.331083pt;}
.wscb{word-spacing:9.365216pt;}
.wsf0{word-spacing:9.390816pt;}
.ws64{word-spacing:10.154768pt;}
.ws66{word-spacing:10.176102pt;}
.ws8b{word-spacing:10.309436pt;}
.ws5{word-spacing:10.353600pt;}
.ws3{word-spacing:10.425600pt;}
.ws6{word-spacing:10.574400pt;}
.ws82{word-spacing:10.736107pt;}
.ws86{word-spacing:10.746774pt;}
.ws60{word-spacing:10.768108pt;}
.ws80{word-spacing:10.821442pt;}
.ws8f{word-spacing:10.864109pt;}
.ws62{word-spacing:10.896109pt;}
.ws87{word-spacing:10.906776pt;}
.ws8d{word-spacing:10.922776pt;}
.ws7e{word-spacing:10.944109pt;}
.ws10{word-spacing:10.979467pt;}
.wse{word-spacing:10.984533pt;}
.ws8e{word-spacing:10.986777pt;}
.ws5f{word-spacing:10.997443pt;}
.ws25{word-spacing:11.018777pt;}
.ws8a{word-spacing:11.034777pt;}
.ws7f{word-spacing:11.040110pt;}
.wsd{word-spacing:11.060533pt;}
.ws12{word-spacing:11.065600pt;}
.ws83{word-spacing:11.066777pt;}
.wsb3{word-spacing:11.072111pt;}
.ws81{word-spacing:11.114778pt;}
.ws85{word-spacing:11.120111pt;}
.ws11{word-spacing:11.126400pt;}
.ws88{word-spacing:11.141445pt;}
.ws26{word-spacing:11.146778pt;}
.ws18{word-spacing:11.151733pt;}
.wsc{word-spacing:11.212533pt;}
.ws8c{word-spacing:11.216112pt;}
.ws14{word-spacing:11.258133pt;}
.ws89{word-spacing:11.264113pt;}
.wsac{word-spacing:11.285192pt;}
.ws13{word-spacing:11.288533pt;}
.wsf{word-spacing:11.344267pt;}
.ws84{word-spacing:11.376114pt;}
.wsa1{word-spacing:11.408114pt;}
.ws17{word-spacing:11.425333pt;}
.wsb0{word-spacing:11.456115pt;}
.ws99{word-spacing:11.466781pt;}
.ws1a{word-spacing:11.472115pt;}
.ws15{word-spacing:11.476000pt;}
.ws6e{word-spacing:11.498782pt;}
.wsb5{word-spacing:11.520115pt;}
.wsa2{word-spacing:11.530782pt;}
.ws59{word-spacing:11.536115pt;}
.wsbd{word-spacing:11.541449pt;}
.wsae{word-spacing:11.545456pt;}
.ws23{word-spacing:11.546782pt;}
.ws6c{word-spacing:11.552116pt;}
.wsc0{word-spacing:11.557449pt;}
.ws98{word-spacing:11.562782pt;}
.wsc1{word-spacing:11.568116pt;}
.wsc3{word-spacing:11.573449pt;}
.ws1b{word-spacing:11.578782pt;}
.ws2b{word-spacing:11.589449pt;}
.ws1f{word-spacing:11.594783pt;}
.ws51{word-spacing:11.600116pt;}
.ws91{word-spacing:11.605449pt;}
.ws53{word-spacing:11.610783pt;}
.ws56{word-spacing:11.616116pt;}
.ws4e{word-spacing:11.626783pt;}
.wsa4{word-spacing:11.630788pt;}
.ws76{word-spacing:11.637450pt;}
.ws28{word-spacing:11.642783pt;}
.wsab{word-spacing:11.647854pt;}
.ws20{word-spacing:11.648116pt;}
.ws1c{word-spacing:11.653450pt;}
.ws96{word-spacing:11.658783pt;}
.wsaf{word-spacing:11.660654pt;}
.ws6a{word-spacing:11.669450pt;}
.ws6f{word-spacing:11.674783pt;}
.ws54{word-spacing:11.690784pt;}
.wsc5{word-spacing:11.696117pt;}
.ws70{word-spacing:11.712117pt;}
.wsbb{word-spacing:11.717451pt;}
.wsad{word-spacing:11.720387pt;}
.ws9c{word-spacing:11.722784pt;}
.ws95{word-spacing:11.728117pt;}
.ws74{word-spacing:11.733451pt;}
.ws9b{word-spacing:11.738784pt;}
.ws7c{word-spacing:11.744117pt;}
.ws24{word-spacing:11.749451pt;}
.wsa3{word-spacing:11.750253pt;}
.ws50{word-spacing:11.754784pt;}
.ws29{word-spacing:11.765451pt;}
.ws9f{word-spacing:11.770784pt;}
.ws9a{word-spacing:11.776118pt;}
.ws27{word-spacing:11.781451pt;}
.wsb4{word-spacing:11.797451pt;}
.wsa0{word-spacing:11.808118pt;}
.ws21{word-spacing:11.813451pt;}
.wsa5{word-spacing:11.814252pt;}
.ws93{word-spacing:11.818785pt;}
.wsbe{word-spacing:11.824118pt;}
.ws7d{word-spacing:11.829452pt;}
.ws77{word-spacing:11.834785pt;}
.ws6d{word-spacing:11.840118pt;}
.ws9e{word-spacing:11.845452pt;}
.ws9d{word-spacing:11.850785pt;}
.ws71{word-spacing:11.856119pt;}
.wsb1{word-spacing:11.866785pt;}
.ws55{word-spacing:11.882785pt;}
.ws1e{word-spacing:11.888119pt;}
.ws73{word-spacing:11.893452pt;}
.ws4f{word-spacing:11.898786pt;}
.ws22{word-spacing:11.904119pt;}
.wsb6{word-spacing:11.909452pt;}
.ws72{word-spacing:11.920119pt;}
.ws68{word-spacing:11.925453pt;}
.ws69{word-spacing:11.930786pt;}
.ws58{word-spacing:11.941453pt;}
.ws2a{word-spacing:11.946786pt;}
.ws6b{word-spacing:11.952120pt;}
.ws2c{word-spacing:11.957453pt;}
.ws57{word-spacing:11.973453pt;}
.ws75{word-spacing:11.994787pt;}
.ws19{word-spacing:12.005453pt;}
.ws63{word-spacing:12.016120pt;}
.ws97{word-spacing:12.026787pt;}
.ws94{word-spacing:12.053454pt;}
.wsb2{word-spacing:12.170788pt;}
.ws2d{word-spacing:12.197455pt;}
.wsbc{word-spacing:12.256123pt;}
.ws67{word-spacing:12.357457pt;}
.ws5e{word-spacing:12.394791pt;}
.ws5a{word-spacing:12.442791pt;}
.ws65{word-spacing:12.480125pt;}
.ws5b{word-spacing:12.565459pt;}
.ws61{word-spacing:12.608126pt;}
.wsc4{word-spacing:13.798285pt;}
.wsbf{word-spacing:13.894284pt;}
.ws90{word-spacing:13.913484pt;}
.ws1{word-spacing:23.146782pt;}
.ws2{word-spacing:23.360117pt;}
.wsc6{word-spacing:53.174802pt;}
.wsd5{word-spacing:53.208935pt;}
.wsaa{word-spacing:101.315000pt;}
.wsa8{word-spacing:108.410378pt;}
.wsa6{word-spacing:124.866706pt;}
.wsa9{word-spacing:212.251213pt;}
.wsa7{word-spacing:286.934013pt;}
._d{margin-left:-10.709067pt;}
._9{margin-left:-4.117282pt;}
._b{margin-left:-3.131694pt;}
._c{margin-left:-2.099174pt;}
._2{margin-left:-1.092253pt;}
._3{width:0.942400pt;}
._1{width:8.392428pt;}
._a{width:9.894276pt;}
._6{width:11.093444pt;}
._4{width:12.149867pt;}
._5{width:13.056131pt;}
._e{width:14.451019pt;}
._f{width:18.542702pt;}
._0{width:24.149454pt;}
._7{width:41.373349pt;}
._13{width:48.413261pt;}
._23{width:73.808144pt;}
._1a{width:82.170706pt;}
._1e{width:87.119978pt;}
._14{width:94.202556pt;}
._1c{width:98.639834pt;}
._1f{width:101.656329pt;}
._15{width:125.208035pt;}
._22{width:160.015066pt;}
._25{width:164.887539pt;}
._19{width:183.566772pt;}
._21{width:188.439244pt;}
._1d{width:195.555956pt;}
._18{width:211.990950pt;}
._24{width:239.873268pt;}
._1b{width:254.046958pt;}
._26{width:263.424974pt;}
._17{width:286.976679pt;}
._20{width:305.148186pt;}
._16{width:328.699891pt;}
._12{width:493.318633pt;}
._10{width:620.408245pt;}
._11{width:1065.620813pt;}
._8{width:1607.945767pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:48.000000pt;}
.y74{bottom:110.659146pt;}
.y25{bottom:110.660413pt;}
.y91{bottom:110.664186pt;}
.y113{bottom:110.664533pt;}
.y43{bottom:110.670190pt;}
.y14d{bottom:115.652858pt;}
.y112{bottom:123.364108pt;}
.y42{bottom:125.334540pt;}
.y7e{bottom:126.461227pt;}
.ycb{bottom:127.596700pt;}
.y73{bottom:127.969986pt;}
.y24{bottom:127.971253pt;}
.y90{bottom:127.975026pt;}
.y14c{bottom:128.276700pt;}
.ye8{bottom:131.669720pt;}
.y41{bottom:139.998890pt;}
.y111{bottom:140.673758pt;}
.y14b{bottom:140.976274pt;}
.y7d{bottom:143.772066pt;}
.y72{bottom:145.355493pt;}
.y23{bottom:145.356760pt;}
.y8f{bottom:145.360533pt;}
.ye7{bottom:148.980560pt;}
.yca{bottom:151.559067pt;}
.y110{bottom:153.297600pt;}
.y40{bottom:154.663240pt;}
.yc9{bottom:156.321200pt;}
.y14a{bottom:158.286991pt;}
.y7c{bottom:161.157573pt;}
.y71{bottom:162.666333pt;}
.y22{bottom:162.667600pt;}
.ye6{bottom:166.291400pt;}
.yc8{bottom:167.583529pt;}
.y8e{bottom:167.962133pt;}
.y3f{bottom:169.327590pt;}
.y149{bottom:170.986566pt;}
.y10f{bottom:171.363733pt;}
.y7b{bottom:178.468413pt;}
.y70{bottom:179.977173pt;}
.y21{bottom:179.978440pt;}
.yc7{bottom:183.608929pt;}
.ye5{bottom:183.676907pt;}
.y3e{bottom:183.991940pt;}
.y148{bottom:188.296216pt;}
.y7a{bottom:195.779253pt;}
.y6f{bottom:197.362680pt;}
.y20{bottom:197.363947pt;}
.y3d{bottom:198.656290pt;}
.ye4{bottom:200.987747pt;}
.y147{bottom:200.995791pt;}
.yc6{bottom:209.234209pt;}
.y10e{bottom:210.972853pt;}
.y79{bottom:213.164760pt;}
.y3c{bottom:213.320640pt;}
.y6e{bottom:214.673520pt;}
.y1f{bottom:214.674787pt;}
.y8d{bottom:216.864720pt;}
.ye3{bottom:218.298586pt;}
.y146{bottom:218.305441pt;}
.yc3{bottom:225.939808pt;}
.yc5{bottom:225.940133pt;}
.y3b{bottom:227.984990pt;}
.y10d{bottom:228.283693pt;}
.y78{bottom:230.475600pt;}
.yc4{bottom:230.702267pt;}
.y145{bottom:230.929283pt;}
.y6d{bottom:231.984360pt;}
.y1e{bottom:231.985627pt;}
.y8c{bottom:234.175560pt;}
.ye2{bottom:235.684094pt;}
.yc0{bottom:242.568517pt;}
.yc2{bottom:242.570000pt;}
.y3a{bottom:242.649340pt;}
.y144{bottom:243.628858pt;}
.y10c{bottom:245.669200pt;}
.yc1{bottom:247.332133pt;}
.y6c{bottom:249.295199pt;}
.y1d{bottom:249.296466pt;}
.y8b{bottom:251.486400pt;}
.ye1{bottom:252.994933pt;}
.y80{bottom:258.898126pt;}
.ybf{bottom:259.273375pt;}
.y143{bottom:260.938508pt;}
.y39{bottom:265.326390pt;}
.y6b{bottom:266.680706pt;}
.y1c{bottom:266.681973pt;}
.y10b{bottom:268.270800pt;}
.y8a{bottom:268.871907pt;}
.ye0{bottom:270.305773pt;}
.y142{bottom:273.638083pt;}
.ybe{bottom:275.903567pt;}
.y7f{bottom:279.609333pt;}
.y38{bottom:279.990740pt;}
.y6a{bottom:283.991546pt;}
.y1b{bottom:283.992813pt;}
.y89{bottom:286.182747pt;}
.y141{bottom:286.261925pt;}
.ydf{bottom:287.616613pt;}
.ybd{bottom:292.609491pt;}
.y69{bottom:301.302386pt;}
.y1a{bottom:301.303653pt;}
.y37{bottom:302.667790pt;}
.y88{bottom:303.493587pt;}
.y140{bottom:303.647308pt;}
.yde{bottom:305.002120pt;}
.y10a{bottom:307.954947pt;}
.ybc{bottom:309.239683pt;}
.y13f{bottom:316.271150pt;}
.y36{bottom:317.332140pt;}
.y68{bottom:318.687893pt;}
.y19{bottom:318.689160pt;}
.y87{bottom:320.804427pt;}
.ydd{bottom:322.312960pt;}
.y109{bottom:325.265786pt;}
.ybb{bottom:325.945608pt;}
.y35{bottom:331.996490pt;}
.y13e{bottom:333.656533pt;}
.y67{bottom:335.998733pt;}
.y18{bottom:336.000000pt;}
.y86{bottom:338.189934pt;}
.ydc{bottom:339.623800pt;}
.y108{bottom:342.576626pt;}
.yba{bottom:345.901625pt;}
.y13d{bottom:346.280375pt;}
.y34{bottom:346.660840pt;}
.y66{bottom:353.309573pt;}
.y85{bottom:355.500773pt;}
.ydb{bottom:357.009307pt;}
.y17{bottom:358.677067pt;}
.y13c{bottom:358.979949pt;}
.y107{bottom:359.962133pt;}
.y33{bottom:361.325190pt;}
.yb9{bottom:368.805872pt;}
.y65{bottom:370.695080pt;}
.y84{bottom:372.811613pt;}
.yda{bottom:374.320147pt;}
.y32{bottom:375.989540pt;}
.y13b{bottom:376.289600pt;}
.y106{bottom:382.563733pt;}
.y64{bottom:388.005920pt;}
.y13a{bottom:388.989174pt;}
.y83{bottom:390.197120pt;}
.yb8{bottom:390.576267pt;}
.yd9{bottom:391.630986pt;}
.y31{bottom:398.666590pt;}
.y139{bottom:401.613016pt;}
.y63{bottom:405.316759pt;}
.y82{bottom:407.507960pt;}
.yd8{bottom:409.016494pt;}
.y138{bottom:418.922176pt;}
.y30{bottom:421.343640pt;}
.y62{bottom:422.702267pt;}
.y81{bottom:424.818800pt;}
.yd7{bottom:426.327333pt;}
.y105{bottom:430.259134pt;}
.y137{bottom:431.621750pt;}
.yd6{bottom:443.638173pt;}
.y2f{bottom:444.020690pt;}
.y136{bottom:444.321325pt;}
.y61{bottom:445.303733pt;}
.y16{bottom:447.498267pt;}
.y104{bottom:447.569973pt;}
.yb7{bottom:450.745480pt;}
.y94{bottom:453.315750pt;}
.yd5{bottom:461.023680pt;}
.y135{bottom:461.630975pt;}
.y103{bottom:464.880813pt;}
.y15{bottom:466.168933pt;}
.y2e{bottom:466.697740pt;}
.yb6{bottom:468.130987pt;}
.y93{bottom:473.952292pt;}
.y134{bottom:474.330550pt;}
.yd4{bottom:478.334520pt;}
.y2d{bottom:481.362090pt;}
.y102{bottom:482.266320pt;}
.y14{bottom:484.839600pt;}
.yb5{bottom:485.441827pt;}
.y92{bottom:486.651867pt;}
.y133{bottom:491.640200pt;}
.y60{bottom:492.539840pt;}
.yd3{bottom:495.645360pt;}
.y101{bottom:499.577160pt;}
.yb4{bottom:502.752667pt;}
.yb2{bottom:502.753026pt;}
.y13{bottom:503.510267pt;}
.y2c{bottom:504.039140pt;}
.y132{bottom:504.264042pt;}
.yb3{bottom:508.724267pt;}
.y5f{bottom:509.850680pt;}
.yd2{bottom:512.956200pt;}
.y100{bottom:516.888000pt;}
.y131{bottom:516.963617pt;}
.y2b{bottom:518.703490pt;}
.yaf{bottom:520.132080pt;}
.yb1{bottom:520.138533pt;}
.y12{bottom:522.180933pt;}
.yb0{bottom:526.034533pt;}
.y5e{bottom:527.161520pt;}
.yd1{bottom:530.341707pt;}
.y2a{bottom:533.367840pt;}
.y130{bottom:534.273267pt;}
.yae{bottom:537.442920pt;}
.yff{bottom:539.565200pt;}
.y11{bottom:540.851600pt;}
.y5d{bottom:544.547027pt;}
.y12f{bottom:546.972842pt;}
.yd0{bottom:547.652547pt;}
.y29{bottom:548.032190pt;}
.yad{bottom:554.753760pt;}
.y10{bottom:559.522267pt;}
.y12e{bottom:559.596684pt;}
.y5c{bottom:561.857867pt;}
.y28{bottom:562.696540pt;}
.ycf{bottom:564.963386pt;}
.yac{bottom:572.139267pt;}
.y12d{bottom:576.982066pt;}
.yf{bottom:578.192933pt;}
.yfe{bottom:579.168226pt;}
.y5b{bottom:579.168706pt;}
.yce{bottom:582.348894pt;}
.y27{bottom:584.541600pt;}
.yab{bottom:589.450107pt;}
.y12c{bottom:589.605909pt;}
.yfd{bottom:596.553733pt;}
.y5a{bottom:596.554214pt;}
.ye{bottom:596.863600pt;}
.ycd{bottom:599.659733pt;}
.yaa{bottom:606.760947pt;}
.y12b{bottom:606.991291pt;}
.yfc{bottom:613.864573pt;}
.y59{bottom:613.865053pt;}
.yd{bottom:615.534267pt;}
.y12a{bottom:619.615133pt;}
.ycc{bottom:622.336933pt;}
.ya9{bottom:624.071786pt;}
.yfb{bottom:631.175413pt;}
.y58{bottom:631.175893pt;}
.yc{bottom:634.204933pt;}
.y129{bottom:636.924784pt;}
.ya8{bottom:641.457294pt;}
.yfa{bottom:648.560920pt;}
.y57{bottom:648.561400pt;}
.y128{bottom:649.624358pt;}
.yb{bottom:652.875600pt;}
.ya7{bottom:658.768133pt;}
.y15e{bottom:658.921309pt;}
.y127{bottom:662.323933pt;}
.yeb{bottom:665.121483pt;}
.yf9{bottom:665.871760pt;}
.y56{bottom:665.872240pt;}
.ya{bottom:671.546267pt;}
.y15d{bottom:671.620883pt;}
.ya6{bottom:676.078973pt;}
.y126{bottom:679.633583pt;}
.yf8{bottom:683.182600pt;}
.y55{bottom:683.183080pt;}
.yea{bottom:685.832691pt;}
.y15c{bottom:688.931600pt;}
.y125{bottom:692.257425pt;}
.ya5{bottom:693.464480pt;}
.ye9{bottom:698.456533pt;}
.yf7{bottom:700.493439pt;}
.y54{bottom:700.493920pt;}
.y9{bottom:700.875467pt;}
.y15b{bottom:701.631175pt;}
.y124{bottom:709.642808pt;}
.ya4{bottom:710.775320pt;}
.y15a{bottom:714.330750pt;}
.yf6{bottom:717.878947pt;}
.y53{bottom:717.879427pt;}
.y123{bottom:722.266650pt;}
.ya3{bottom:728.086160pt;}
.y159{bottom:731.640400pt;}
.yf5{bottom:735.189786pt;}
.y52{bottom:735.190267pt;}
.y122{bottom:739.652033pt;}
.y158{bottom:744.264242pt;}
.ya2{bottom:745.471667pt;}
.y121{bottom:752.275875pt;}
.yf4{bottom:752.500626pt;}
.y51{bottom:752.501106pt;}
.y8{bottom:756.888767pt;}
.y157{bottom:761.649625pt;}
.ya1{bottom:762.782507pt;}
.y120{bottom:764.975450pt;}
.yf3{bottom:769.886133pt;}
.y50{bottom:769.886614pt;}
.y156{bottom:774.273467pt;}
.ya0{bottom:780.093347pt;}
.y11f{bottom:782.286167pt;}
.y7{bottom:783.496434pt;}
.y155{bottom:786.973041pt;}
.yf2{bottom:787.196973pt;}
.y4f{bottom:787.197453pt;}
.y11e{bottom:794.985741pt;}
.y6{bottom:796.875467pt;}
.y9f{bottom:797.404186pt;}
.y154{bottom:804.282692pt;}
.yf1{bottom:804.507813pt;}
.y4e{bottom:804.508293pt;}
.y11d{bottom:812.296458pt;}
.y9e{bottom:814.789694pt;}
.y153{bottom:816.982266pt;}
.y4{bottom:820.837600pt;}
.yf0{bottom:821.893320pt;}
.y4d{bottom:821.893800pt;}
.y11c{bottom:824.996033pt;}
.y5{bottom:826.204533pt;}
.y152{bottom:829.606109pt;}
.y9b{bottom:832.099400pt;}
.y9d{bottom:832.100533pt;}
.y9c{bottom:837.996667pt;}
.yef{bottom:839.204160pt;}
.y4c{bottom:839.204640pt;}
.y11b{bottom:842.305683pt;}
.y151{bottom:846.991491pt;}
.y9a{bottom:849.410239pt;}
.y3{bottom:854.172233pt;}
.y11a{bottom:854.929525pt;}
.yee{bottom:856.515000pt;}
.y4b{bottom:856.515480pt;}
.y150{bottom:859.615333pt;}
.y99{bottom:866.795747pt;}
.y119{bottom:872.314908pt;}
.yed{bottom:873.900507pt;}
.y4a{bottom:873.900987pt;}
.y98{bottom:884.106586pt;}
.y118{bottom:884.938750pt;}
.y2{bottom:887.508400pt;}
.y14f{bottom:889.624558pt;}
.yec{bottom:891.211347pt;}
.y49{bottom:891.211827pt;}
.y97{bottom:901.417426pt;}
.y117{bottom:902.324133pt;}
.y46{bottom:908.522186pt;}
.y48{bottom:908.522667pt;}
.y47{bottom:914.494267pt;}
.y116{bottom:914.947975pt;}
.y96{bottom:918.802933pt;}
.y14e{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y45{bottom:925.833026pt;}
.y77{bottom:930.288705pt;}
.y115{bottom:932.257625pt;}
.y95{bottom:941.404400pt;}
.y44{bottom:943.218533pt;}
.y76{bottom:944.953055pt;}
.y114{bottom:944.957200pt;}
.y75{bottom:994.393333pt;}
.h4{height:23.580855pt;}
.ha{height:25.313024pt;}
.hd{height:25.624440pt;}
.h9{height:31.060945pt;}
.hb{height:31.444940pt;}
.h3{height:35.376000pt;}
.h8{height:37.973713pt;}
.he{height:38.080381pt;}
.h1{height:38.442186pt;}
.hf{height:38.444151pt;}
.h6{height:45.650667pt;}
.h7{height:47.167607pt;}
.hc{height:57.663519pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:48.000000pt;}
.x1a{left:55.407867pt;}
.xb{left:63.496000pt;}
.x15{left:91.539722pt;}
.x16{left:240.151067pt;}
.x1{left:266.683333pt;}
.x1b{left:272.579467pt;}
.x9{left:282.634160pt;}
.x1c{left:294.651724pt;}
.x17{left:311.962133pt;}
.x2{left:357.770000pt;}
.x3{left:362.758933pt;}
.x13{left:392.390400pt;}
.x14{left:400.100667pt;}
.x4{left:467.149467pt;}
.x5{left:472.138400pt;}
.xf{left:504.718000pt;}
.x10{left:512.503733pt;}
.x6{left:563.149467pt;}
.x7{left:568.062800pt;}
.x18{left:603.439200pt;}
.xe{left:609.184133pt;}
.x19{left:675.250267pt;}
.x11{left:676.762000pt;}
.x8{left:680.163600pt;}
.x12{left:681.599733pt;}
.xc{left:703.143200pt;}
.xd{left:714.406133pt;}
}




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