
    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_f31a72c058a54968c5143923.woff')format("woff");}.ff1{font-family:ff1;line-height:1.063500;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_a0991701331e1b2c298835e3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.063500;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_b4fa2d6a1f325657a9052f35.woff')format("woff");}.ff3{font-family:ff3;line-height:1.017000;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_9bc94cdb280043d23cee915b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_86b4671f4f6e84047dc75f7d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_6894b9722ee395f733614474.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_978f35e039e3e749623e65bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_402a98e7dc3efa46588b3576.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_1b433f8fa8bd3958367e75a5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_ddbced261739cad5908e1ef3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_c53463c9563394727c595524.woff')format("woff");}.ffb{font-family:ffb;line-height:1.148000;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_1dfc3b305b24f35f9ff02da4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.925000;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_4ebf0436526d7ddaaa2eeba7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.140667;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_4f01019b0111706e01d92e54.woff')format("woff");}.ffe{font-family:ffe;line-height:1.017000;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_d5335781df6252daa3d68a5c.woff')format("woff");}.fff{font-family:fff;line-height:0.942383;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_407a390fafc8b1a01fc15cc9.woff')format("woff");}.ff10{font-family:ff10;line-height:1.005371;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_93b5a10edf2a92424851f235.woff')format("woff");}.ff11{font-family:ff11;line-height:1.005371;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_70e368f6394e2ed5de3a83b2.woff')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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_a02ffa7f265338d97eb693bf.woff')format("woff");}.ff13{font-family:ff13;line-height:1.172852;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_916588468d5454410521a9e8.woff')format("woff");}.ff14{font-family:ff14;line-height:1.010000;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_bce6d852e6291b7be70612b7.woff')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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:ff16;src:url('chunks/assets/font_d2dc393b7b966a155ba2d6e1.woff')format("woff");}.ff16{font-family:ff16;line-height:0.781738;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:ff17;src:url('chunks/assets/font_32c45c5e614aafd476171985.woff')format("woff");}.ff17{font-family:ff17;line-height:1.172852;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:ff18;src:url('chunks/assets/font_5542e71850663ef4eb75a082.woff')format("woff");}.ff18{font-family:ff18;line-height:1.005371;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:ff19;src:url('chunks/assets/font_e9ffe21c793553c4de711296.woff')format("woff");}.ff19{font-family:ff19;line-height:1.201172;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.249333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249333,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-16.500000px;}
.v5{vertical-align:-5.280000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.550000px;}
.v6{vertical-align:15.300000px;}
.v7{vertical-align:17.100000px;}
.v2{vertical-align:19.831329px;}
.v4{vertical-align:25.920000px;}
.v1{vertical-align:45.180000px;}
.ls1e{letter-spacing:-2.694000px;}
.ls20{letter-spacing:-2.610000px;}
.ls8{letter-spacing:-1.524000px;}
.ls29{letter-spacing:-1.338000px;}
.ls30{letter-spacing:-1.314000px;}
.ls25{letter-spacing:-1.278000px;}
.ls26{letter-spacing:-1.110000px;}
.ls28{letter-spacing:-0.846000px;}
.ls19{letter-spacing:-0.119400px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.047580px;}
.ls7{letter-spacing:0.154050px;}
.ls9{letter-spacing:0.384600px;}
.ls35{letter-spacing:0.387600px;}
.ls6{letter-spacing:0.479316px;}
.ls31{letter-spacing:0.494400px;}
.ls1f{letter-spacing:0.508200px;}
.lsf{letter-spacing:0.534600px;}
.ls32{letter-spacing:0.580200px;}
.ls3{letter-spacing:0.618000px;}
.ls13{letter-spacing:0.768000px;}
.ls14{letter-spacing:0.918000px;}
.ls33{letter-spacing:1.242000px;}
.ls36{letter-spacing:1.332000px;}
.ls15{letter-spacing:1.470000px;}
.ls23{letter-spacing:1.794000px;}
.ls22{letter-spacing:2.454000px;}
.ls24{letter-spacing:2.538000px;}
.ls37{letter-spacing:2.736000px;}
.ls34{letter-spacing:2.988000px;}
.ls38{letter-spacing:3.096000px;}
.ls2a{letter-spacing:16.147500px;}
.ls17{letter-spacing:16.203000px;}
.ls18{letter-spacing:16.290000px;}
.ls21{letter-spacing:16.470000px;}
.ls5{letter-spacing:18.165724px;}
.ls11{letter-spacing:22.278600px;}
.ls3b{letter-spacing:25.041300px;}
.ls1{letter-spacing:34.926000px;}
.ls12{letter-spacing:39.728100px;}
.lsa{letter-spacing:39.769200px;}
.ls4{letter-spacing:39.912600px;}
.lse{letter-spacing:39.949200px;}
.ls0{letter-spacing:45.276000px;}
.ls1b{letter-spacing:56.497500px;}
.ls1a{letter-spacing:56.550000px;}
.lsb{letter-spacing:92.520000px;}
.lsc{letter-spacing:92.572500px;}
.ls2b{letter-spacing:97.147500px;}
.ls2f{letter-spacing:97.215000px;}
.ls39{letter-spacing:97.245000px;}
.ls2e{letter-spacing:97.267500px;}
.ls3a{letter-spacing:97.297500px;}
.ls2d{letter-spacing:101.970000px;}
.ls2c{letter-spacing:102.022500px;}
.ls3d{letter-spacing:103.575000px;}
.ls16{letter-spacing:103.597500px;}
.ls3c{letter-spacing:103.627500px;}
.lsd{letter-spacing:105.172500px;}
.ls10{letter-spacing:136.927500px;}
.ls1c{letter-spacing:138.472500px;}
.ls1d{letter-spacing:138.525000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws48{word-spacing:-71.042850px;}
.ws4{word-spacing:-40.115400px;}
.ws52{word-spacing:-40.073700px;}
.ws2{word-spacing:-35.064900px;}
.ws10{word-spacing:-33.860400px;}
.ws0{word-spacing:-33.484800px;}
.ws1{word-spacing:-33.446400px;}
.ws38{word-spacing:-29.560950px;}
.ws4a{word-spacing:-27.705000px;}
.ws40{word-spacing:-27.636000px;}
.wsc{word-spacing:-26.354400px;}
.ws1b{word-spacing:-26.280450px;}
.ws2a{word-spacing:-25.061700px;}
.ws2c{word-spacing:-24.609000px;}
.ws3d{word-spacing:-24.475800px;}
.ws3c{word-spacing:-24.441900px;}
.ws14{word-spacing:-24.230400px;}
.ws8{word-spacing:-23.876787px;}
.wsb{word-spacing:-23.810700px;}
.ws9{word-spacing:-23.620965px;}
.ws4c{word-spacing:-23.424900px;}
.ws19{word-spacing:-22.988250px;}
.ws1f{word-spacing:-22.440300px;}
.ws2d{word-spacing:-22.269000px;}
.ws21{word-spacing:-21.942900px;}
.ws12{word-spacing:-21.926400px;}
.ws20{word-spacing:-21.906450px;}
.ws51{word-spacing:-21.390900px;}
.wsa{word-spacing:-20.859274px;}
.ws11{word-spacing:-20.592300px;}
.wsf{word-spacing:-20.442300px;}
.ws50{word-spacing:-20.373900px;}
.ws1a{word-spacing:-20.283750px;}
.wsd{word-spacing:-20.057700px;}
.ws5{word-spacing:-20.016000px;}
.ws39{word-spacing:-19.356900px;}
.wse{word-spacing:-18.533700px;}
.ws13{word-spacing:-18.470400px;}
.ws16{word-spacing:-17.555700px;}
.ws17{word-spacing:-17.514000px;}
.ws1e{word-spacing:-17.496000px;}
.ws32{word-spacing:-17.043000px;}
.ws4e{word-spacing:-16.305900px;}
.ws23{word-spacing:-16.304700px;}
.ws22{word-spacing:-16.263000px;}
.ws3a{word-spacing:-15.249000px;}
.ws34{word-spacing:-15.210000px;}
.ws24{word-spacing:-15.053700px;}
.ws1c{word-spacing:-15.014400px;}
.ws4d{word-spacing:-14.271900px;}
.ws3b{word-spacing:-13.911000px;}
.ws25{word-spacing:-12.551700px;}
.ws29{word-spacing:-12.510000px;}
.ws4b{word-spacing:-7.533900px;}
.ws41{word-spacing:-7.408800px;}
.ws47{word-spacing:-6.997050px;}
.ws3f{word-spacing:-2.870400px;}
.ws1d{word-spacing:-1.776000px;}
.ws49{word-spacing:-0.753900px;}
.ws3e{word-spacing:-0.570000px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:0.354000px;}
.ws44{word-spacing:0.444000px;}
.ws42{word-spacing:1.284000px;}
.ws18{word-spacing:1.730250px;}
.ws15{word-spacing:1.941900px;}
.ws2f{word-spacing:2.301000px;}
.ws46{word-spacing:2.806950px;}
.ws6{word-spacing:5.950589px;}
.ws7{word-spacing:5.990999px;}
.ws45{word-spacing:19.380300px;}
.ws33{word-spacing:36.333000px;}
.ws31{word-spacing:36.420300px;}
.ws36{word-spacing:41.234910px;}
.ws35{word-spacing:48.050700px;}
.ws37{word-spacing:52.101000px;}
.ws30{word-spacing:95.865000px;}
.ws2e{word-spacing:95.952300px;}
.ws27{word-spacing:119.796150px;}
.ws26{word-spacing:129.722700px;}
.ws2b{word-spacing:225.871200px;}
.ws28{word-spacing:329.769150px;}
.ws4f{word-spacing:347.620200px;}
._3{margin-left:-5.034450px;}
._2{margin-left:-3.879000px;}
._6{margin-left:-2.867850px;}
._0{margin-left:-1.745550px;}
._1{width:1.619100px;}
._4{width:3.038100px;}
._7{width:4.408800px;}
._9{width:5.797200px;}
._11{width:14.104950px;}
._10{width:16.447500px;}
._f{width:19.194750px;}
._19{width:22.448400px;}
._15{width:23.929050px;}
._b{width:24.967350px;}
._16{width:26.501850px;}
._14{width:28.426350px;}
._8{width:31.023300px;}
._12{width:37.011150px;}
._13{width:38.385600px;}
._5{width:44.561400px;}
._18{width:46.020000px;}
._17{width:47.072550px;}
._1a{width:49.836600px;}
._a{width:79.585500px;}
._c{width:243.325350px;}
._d{width:489.729450px;}
._e{width:1780.780650px;}
.fc8{color:rgb(23,54,93);}
.fc7{color:rgb(0,64,99);}
.fc4{color:transparent;}
.fc5{color:rgb(232,18,31);}
.fc1{color:rgb(0,151,167);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(42,42,42);}
.fc2{color:rgb(84,84,84);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:43.987087px;}
.fs20{font-size:45.000000px;}
.fs1f{font-size:45.150000px;}
.fs1e{font-size:54.150000px;}
.fs1b{font-size:58.500000px;}
.fs1a{font-size:58.650000px;}
.fs15{font-size:63.000000px;}
.fs16{font-size:63.150000px;}
.fs9{font-size:66.392661px;}
.fs22{font-size:67.500000px;}
.fs21{font-size:67.650000px;}
.fs8{font-size:72.000000px;}
.fs12{font-size:72.150000px;}
.fse{font-size:75.304237px;}
.fsd{font-size:75.658621px;}
.fs1d{font-size:81.150000px;}
.fsc{font-size:85.274241px;}
.fsf{font-size:85.650000px;}
.fs13{font-size:85.800000px;}
.fs18{font-size:90.150000px;}
.fs19{font-size:90.300000px;}
.fs5{font-size:94.650000px;}
.fs11{font-size:94.800000px;}
.fs24{font-size:103.650000px;}
.fs1c{font-size:108.150000px;}
.fs23{font-size:108.300000px;}
.fs6{font-size:121.650000px;}
.fs10{font-size:121.800000px;}
.fs3{font-size:130.650000px;}
.fs2{font-size:130.800000px;}
.fs7{font-size:144.150000px;}
.fs4{font-size:144.300000px;}
.fs17{font-size:148.650000px;}
.fs14{font-size:162.300000px;}
.fsa{font-size:170.435078px;}
.fs1{font-size:193.800000px;}
.fs0{font-size:193.950000px;}
.y11{bottom:-119.769979px;}
.yf{bottom:-110.912742px;}
.y21{bottom:-78.596465px;}
.y20{bottom:-58.156777px;}
.y1f{bottom:-37.659206px;}
.y1e{bottom:-17.249051px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.277934px;}
.y15{bottom:5.682547px;}
.y34{bottom:8.212500px;}
.yf0{bottom:10.387500px;}
.y159{bottom:11.662500px;}
.y125{bottom:11.700000px;}
.y16c{bottom:11.850000px;}
.y32{bottom:13.237500px;}
.y13b{bottom:16.125000px;}
.y30{bottom:16.875000px;}
.y14e{bottom:17.212500px;}
.y26{bottom:17.925000px;}
.y29{bottom:18.375000px;}
.y15a{bottom:18.862500px;}
.y6d{bottom:20.437500px;}
.yfe{bottom:20.850000px;}
.y127{bottom:22.050000px;}
.y14a{bottom:25.125000px;}
.yb{bottom:26.850000px;}
.y28{bottom:27.712500px;}
.y17f{bottom:27.937500px;}
.y14{bottom:28.673209px;}
.y17d{bottom:30.262500px;}
.y5{bottom:31.087500px;}
.y113{bottom:31.425000px;}
.y55{bottom:32.062500px;}
.y114{bottom:34.387500px;}
.y6e{bottom:34.800000px;}
.yef{bottom:36.337500px;}
.y23{bottom:37.050000px;}
.yc9{bottom:37.312500px;}
.y132{bottom:38.100000px;}
.y124{bottom:38.775000px;}
.y31{bottom:39.150000px;}
.y126{bottom:40.087500px;}
.y14f{bottom:40.425000px;}
.ya7{bottom:46.237500px;}
.yfd{bottom:46.762500px;}
.y16b{bottom:47.812500px;}
.y35{bottom:48.337500px;}
.yc8{bottom:51.862500px;}
.y47{bottom:55.575000px;}
.y54{bottom:57.975000px;}
.y13f{bottom:58.125000px;}
.y17c{bottom:60.675000px;}
.yee{bottom:61.125000px;}
.y18{bottom:63.745413px;}
.ya6{bottom:65.400000px;}
.y123{bottom:65.812500px;}
.y4{bottom:67.162500px;}
.ya8{bottom:70.537500px;}
.yaf{bottom:74.437500px;}
.yfc{bottom:76.087500px;}
.y1b{bottom:77.234449px;}
.y53{bottom:82.762500px;}
.ye{bottom:84.375000px;}
.ya5{bottom:84.562500px;}
.y112{bottom:85.987500px;}
.yed{bottom:87.037500px;}
.y13e{bottom:87.412500px;}
.y70{bottom:88.725000px;}
.y17b{bottom:91.125000px;}
.y122{bottom:92.850000px;}
.y92{bottom:94.612500px;}
.yae{bottom:95.850000px;}
.y1a{bottom:100.225702px;}
.yb5{bottom:101.175000px;}
.ya4{bottom:102.600000px;}
.y165{bottom:103.125000px;}
.y102{bottom:104.250000px;}
.y43{bottom:104.437500px;}
.yec{bottom:111.825000px;}
.yca{bottom:115.387500px;}
.y13d{bottom:115.575000px;}
.yad{bottom:117.262500px;}
.y71{bottom:118.612500px;}
.y17a{bottom:120.412500px;}
.y91{bottom:121.650000px;}
.y111{bottom:122.062500px;}
.y164{bottom:122.287500px;}
.ybd{bottom:122.775000px;}
.y19{bottom:123.219317px;}
.y2a{bottom:126.600000px;}
.y42{bottom:126.975000px;}
.ycc{bottom:130.387500px;}
.y131{bottom:132.975000px;}
.y52{bottom:133.500000px;}
.yfb{bottom:133.575000px;}
.ybc{bottom:136.275000px;}
.yeb{bottom:136.612500px;}
.y110{bottom:140.100000px;}
.y13c{bottom:144.900000px;}
.y121{bottom:146.962500px;}
.y41{bottom:148.387500px;}
.ybf{bottom:148.575000px;}
.y90{bottom:148.725000px;}
.y87{bottom:150.405000px;}
.y179{bottom:150.855000px;}
.y149{bottom:151.530000px;}
.yc7{bottom:153.600000px;}
.y10f{bottom:158.145000px;}
.y51{bottom:158.280000px;}
.yfa{bottom:161.745000px;}
.y72{bottom:162.480000px;}
.yea{bottom:162.555000px;}
.ye9{bottom:163.500000px;}
.ybe{bottom:165.495000px;}
.y130{bottom:165.675000px;}
.ya2{bottom:169.095000px;}
.y120{bottom:174.000000px;}
.y8f{bottom:175.755000px;}
.y86{bottom:177.495000px;}
.y178{bottom:181.275000px;}
.y158{bottom:181.875000px;}
.y148{bottom:184.200000px;}
.ya1{bottom:188.250000px;}
.y61{bottom:188.655000px;}
.y101{bottom:191.055000px;}
.y6c{bottom:191.100000px;}
.y10e{bottom:194.220000px;}
.ye8{bottom:196.200000px;}
.ybb{bottom:196.500000px;}
.ya3{bottom:196.530000px;}
.y12f{bottom:198.375000px;}
.y13{bottom:200.108832px;}
.y40{bottom:200.250000px;}
.y8e{bottom:202.800000px;}
.y8{bottom:207.075000px;}
.ya0{bottom:207.405000px;}
.y50{bottom:208.995000px;}
.y74{bottom:210.000000px;}
.yba{bottom:210.030000px;}
.y177{bottom:211.725000px;}
.y60{bottom:213.495000px;}
.y166{bottom:214.275000px;}
.y157{bottom:214.575000px;}
.y6b{bottom:215.880000px;}
.y147{bottom:216.900000px;}
.yf9{bottom:220.350000px;}
.ye7{bottom:220.980000px;}
.y3f{bottom:221.655000px;}
.y12{bottom:223.096541px;}
.y9f{bottom:223.200000px;}
.y161{bottom:224.775000px;}
.y11f{bottom:225.870000px;}
.y22{bottom:227.821661px;}
.ycb{bottom:227.955000px;}
.y73{bottom:228.030000px;}
.y12e{bottom:231.045000px;}
.y13a{bottom:232.125000px;}
.y10d{bottom:232.545000px;}
.y4f{bottom:233.820000px;}
.y17{bottom:237.579034px;}
.y5f{bottom:239.400000px;}
.y176{bottom:242.145000px;}
.y7{bottom:244.275000px;}
.yac{bottom:244.725000px;}
.y6a{bottom:246.345000px;}
.y156{bottom:247.275000px;}
.yf8{bottom:248.505000px;}
.y146{bottom:249.570000px;}
.yc6{bottom:250.530000px;}
.y11e{bottom:250.650000px;}
.yb9{bottom:250.695000px;}
.y163{bottom:252.675000px;}
.y10c{bottom:252.825000px;}
.ye6{bottom:253.695000px;}
.yb4{bottom:257.445000px;}
.y85{bottom:260.895000px;}
.yd9{bottom:263.475000px;}
.y12d{bottom:263.745000px;}
.y5e{bottom:264.195000px;}
.y139{bottom:264.825000px;}
.y75{bottom:265.650000px;}
.yab{bottom:266.130000px;}
.yb8{bottom:266.475000px;}
.yc5{bottom:267.450000px;}
.yc4{bottom:269.175000px;}
.y69{bottom:271.125000px;}
.y162{bottom:271.830000px;}
.y175{bottom:272.595000px;}
.y58{bottom:273.000000px;}
.y160{bottom:273.225000px;}
.y3e{bottom:273.495000px;}
.y46{bottom:276.420000px;}
.y11d{bottom:276.570000px;}
.yf7{bottom:277.830000px;}
.ye5{bottom:279.600000px;}
.y155{bottom:279.945000px;}
.y145{bottom:281.145000px;}
.yd8{bottom:282.645000px;}
.yc3{bottom:282.720000px;}
.y76{bottom:283.620000px;}
.y4e{bottom:284.520000px;}
.y6{bottom:287.100000px;}
.y84{bottom:287.925000px;}
.y9d{bottom:290.145000px;}
.y8d{bottom:291.300000px;}
.y1c{bottom:292.189608px;}
.y3d{bottom:294.945000px;}
.yc2{bottom:296.250000px;}
.y68{bottom:297.030000px;}
.y138{bottom:297.495000px;}
.y57{bottom:297.780000px;}
.yb7{bottom:300.945000px;}
.yd7{bottom:301.800000px;}
.y174{bottom:303.000000px;}
.yf6{bottom:306.000000px;}
.y9c{bottom:309.300000px;}
.yc1{bottom:309.750000px;}
.y10b{bottom:310.275000px;}
.y4d{bottom:310.425000px;}
.y154{bottom:311.520000px;}
.ye4{bottom:313.425000px;}
.y144{bottom:313.845000px;}
.y5d{bottom:314.925000px;}
.y83{bottom:314.955000px;}
.yd0{bottom:315.075000px;}
.y16a{bottom:315.345000px;}
.y3c{bottom:316.350000px;}
.yb6{bottom:317.850000px;}
.y8c{bottom:318.375000px;}
.y9e{bottom:318.495000px;}
.yd6{bottom:319.845000px;}
.y15f{bottom:321.705000px;}
.yb2{bottom:323.070000px;}
.y56{bottom:323.700000px;}
.y67{bottom:326.370000px;}
.yc0{bottom:327.945000px;}
.y12c{bottom:327.975000px;}
.y10a{bottom:328.320000px;}
.y9b{bottom:328.455000px;}
.y137{bottom:329.070000px;}
.y173{bottom:333.450000px;}
.y11b{bottom:334.200000px;}
.yf5{bottom:335.325000px;}
.y169{bottom:337.875000px;}
.y5c{bottom:339.720000px;}
.y82{bottom:342.030000px;}
.y153{bottom:344.175000px;}
.y8b{bottom:345.405000px;}
.y2e{bottom:345.945000px;}
.y9a{bottom:346.500000px;}
.ydf{bottom:348.975000px;}
.y66{bottom:355.650000px;}
.y78{bottom:357.780000px;}
.y168{bottom:359.295000px;}
.y4c{bottom:360.045000px;}
.y12b{bottom:360.675000px;}
.y136{bottom:361.770000px;}
.y172{bottom:362.745000px;}
.y100{bottom:363.495000px;}
.y109{bottom:364.395000px;}
.y5b{bottom:365.625000px;}
.y7e{bottom:366.225000px;}
.y15e{bottom:369.030000px;}
.y81{bottom:369.075000px;}
.y3b{bottom:369.300000px;}
.y77{bottom:369.345000px;}
.y3{bottom:371.625000px;}
.y8a{bottom:372.450000px;}
.yde{bottom:373.770000px;}
.y152{bottom:376.875000px;}
.yd4{bottom:377.250000px;}
.y143{bottom:379.200000px;}
.y11a{bottom:380.655000px;}
.y167{bottom:380.700000px;}
.y65{bottom:381.570000px;}
.y2d{bottom:381.975000px;}
.y108{bottom:382.425000px;}
.y7d{bottom:385.380000px;}
.y4b{bottom:385.950000px;}
.y5a{bottom:390.420000px;}
.y3a{bottom:390.720000px;}
.yd3{bottom:391.005000px;}
.y7a{bottom:392.100000px;}
.yf4{bottom:392.820000px;}
.y171{bottom:393.195000px;}
.ycd{bottom:393.225000px;}
.y12a{bottom:393.345000px;}
.yaa{bottom:393.825000px;}
.y135{bottom:394.425000px;}
.y89{bottom:399.525000px;}
.ydd{bottom:399.675000px;}
.y119{bottom:399.825000px;}
.y98{bottom:402.375000px;}
.y7c{bottom:404.550000px;}
.ye3{bottom:406.950000px;}
.yd2{bottom:409.050000px;}
.y79{bottom:410.130000px;}
.y142{bottom:411.870000px;}
.y16{bottom:414.440275px;}
.ya9{bottom:415.245000px;}
.y107{bottom:418.500000px;}
.y7b{bottom:418.530000px;}
.y14d{bottom:419.700000px;}
.y97{bottom:421.530000px;}
.yff{bottom:422.100000px;}
.y170{bottom:423.600000px;}
.ydc{bottom:424.500000px;}
.y80{bottom:425.445000px;}
.yd1{bottom:425.970000px;}
.y129{bottom:426.030000px;}
.y15d{bottom:426.525000px;}
.y88{bottom:426.570000px;}
.y134{bottom:427.125000px;}
.y2{bottom:430.245000px;}
.ycf{bottom:431.100000px;}
.y64{bottom:431.175000px;}
.y99{bottom:436.380000px;}
.y106{bottom:436.530000px;}
.y4a{bottom:436.695000px;}
.ye2{bottom:439.650000px;}
.y96{bottom:440.700000px;}
.y59{bottom:441.150000px;}
.y151{bottom:442.245000px;}
.y39{bottom:442.575000px;}
.y118{bottom:443.175000px;}
.y141{bottom:444.570000px;}
.y14c{bottom:449.025000px;}
.yce{bottom:449.130000px;}
.yf3{bottom:450.255000px;}
.ydb{bottom:450.405000px;}
.y10{bottom:450.658320px;}
.y63{bottom:451.470000px;}
.y27{bottom:452.325000px;}
.y16f{bottom:454.050000px;}
.y2c{bottom:454.125000px;}
.yb1{bottom:455.070000px;}
.y45{bottom:456.075000px;}
.y128{bottom:458.700000px;}
.y133{bottom:459.780000px;}
.y95{bottom:459.870000px;}
.y38{bottom:463.995000px;}
.ye1{bottom:464.445000px;}
.y117{bottom:465.720000px;}
.y105{bottom:473.700000px;}
.y150{bottom:474.945000px;}
.y94{bottom:477.900000px;}
.yf2{bottom:479.595000px;}
.y15c{bottom:480.600000px;}
.y44{bottom:480.870000px;}
.y16e{bottom:484.470000px;}
.y37{bottom:485.400000px;}
.y49{bottom:486.255000px;}
.y1{bottom:487.725000px;}
.yb3{bottom:488.370000px;}
.y2b{bottom:490.200000px;}
.y104{bottom:493.995000px;}
.y33{bottom:496.650000px;}
.ye0{bottom:498.255000px;}
.y116{bottom:505.095000px;}
.y14b{bottom:506.505000px;}
.y25{bottom:506.775000px;}
.y36{bottom:506.820000px;}
.y7f{bottom:507.945000px;}
.ya{bottom:508.155000px;}
.y48{bottom:512.175000px;}
.y16d{bottom:514.905000px;}
.y62{bottom:521.025000px;}
.y140{bottom:529.095000px;}
.yd{bottom:539.550000px;}
.y24{bottom:540.600000px;}
.y6f{bottom:541.695000px;}
.yc{bottom:543.900000px;}
.y93{bottom:545.925000px;}
.yd5{bottom:546.300000px;}
.yb0{bottom:546.405000px;}
.y103{bottom:546.600000px;}
.yf1{bottom:547.425000px;}
.yda{bottom:549.675000px;}
.y15b{bottom:551.655000px;}
.y9{bottom:552.120000px;}
.y17e{bottom:558.870000px;}
.y2f{bottom:562.095000px;}
.y11c{bottom:563.745000px;}
.y115{bottom:565.155000px;}
.h39{height:32.893066px;}
.h38{height:33.002710px;}
.h3b{height:33.837891px;}
.h3c{height:33.950684px;}
.h37{height:40.718262px;}
.h35{height:43.989258px;}
.h36{height:44.102051px;}
.h47{height:44.760498px;}
.h46{height:44.875269px;}
.h1f{height:47.373047px;}
.h21{height:47.485840px;}
.h2d{height:48.672000px;}
.h2c{height:48.796800px;}
.h3a{height:49.250684px;}
.hc{height:49.794496px;}
.h4b{height:51.613770px;}
.h45{height:51.646729px;}
.h4c{height:51.728467px;}
.h48{height:51.761499px;}
.ha{height:52.628906px;}
.h15{height:52.738550px;}
.he{height:52.821644px;}
.h18{height:54.140625px;}
.h17{height:54.253418px;}
.h11{height:56.478178px;}
.h10{height:56.743966px;}
.h24{height:57.582000px;}
.h20{height:58.923047px;}
.h32{height:59.317163px;}
.h1c{height:60.028800px;}
.h3e{height:61.202051px;}
.h12{height:62.606470px;}
.h19{height:62.716113px;}
.h56{height:62.810815px;}
.h30{height:62.928000px;}
.h2f{height:63.059100px;}
.hf{height:63.955680px;}
.h43{height:64.404785px;}
.h40{height:65.408496px;}
.h42{height:65.533960px;}
.h5a{height:65.895776px;}
.h3d{height:67.788574px;}
.h14{height:69.294727px;}
.h1a{height:71.260800px;}
.h57{height:71.613281px;}
.h58{height:71.762476px;}
.h41{height:72.420190px;}
.h44{height:72.534961px;}
.h22{height:73.405840px;}
.h1b{height:74.858100px;}
.h4e{height:75.004800px;}
.h4f{height:75.129600px;}
.h23{height:78.342000px;}
.h1d{height:78.748800px;}
.h33{height:78.791100px;}
.h34{height:78.922200px;}
.h29{height:82.397100px;}
.h28{height:82.487250px;}
.h2a{height:82.534200px;}
.h27{height:82.667550px;}
.h4d{height:82.696729px;}
.h49{height:85.189966px;}
.h26{height:86.604750px;}
.h16{height:88.920923px;}
.h13{height:89.030566px;}
.h59{height:89.665796px;}
.h52{height:94.141626px;}
.h53{height:94.290820px;}
.h2e{height:94.523100px;}
.h3f{height:98.355469px;}
.h4a{height:102.490125px;}
.h55{height:103.093286px;}
.h7{height:106.322100px;}
.h50{height:107.569116px;}
.h51{height:107.718311px;}
.h8{height:108.394043px;}
.h9{height:108.506836px;}
.h4{height:108.700800px;}
.h3{height:108.825600px;}
.h54{height:110.737573px;}
.h31{height:114.319200px;}
.h2b{height:125.987100px;}
.h6{height:126.118200px;}
.hd{height:127.826309px;}
.h5{height:127.904100px;}
.h25{height:136.014750px;}
.h1e{height:148.342200px;}
.h2{height:169.381200px;}
.h1{height:169.512300px;}
.hb{height:432.000000px;}
.h0{height:607.500000px;}
.w2{width:1033.875000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x10{left:14.857362px;}
.x11{left:18.921901px;}
.xc{left:38.250000px;}
.x94{left:44.587484px;}
.x12{left:46.091872px;}
.x25{left:47.962484px;}
.x1f{left:49.912484px;}
.x7e{left:51.599984px;}
.x1e{left:53.174984px;}
.x28{left:55.912484px;}
.x7a{left:58.124984px;}
.x2d{left:60.974984px;}
.x30{left:66.937484px;}
.x33{left:68.287484px;}
.xb{left:71.587484px;}
.x84{left:74.249984px;}
.x9{left:78.074984px;}
.x26{left:81.749984px;}
.x23{left:83.699984px;}
.x39{left:86.887484px;}
.x3f{left:90.074984px;}
.x7f{left:92.137484px;}
.x2e{left:94.762484px;}
.x6e{left:97.424984px;}
.x97{left:99.787484px;}
.x7b{left:101.662484px;}
.x85{left:103.649984px;}
.x80{left:105.637484px;}
.x83{left:109.762484px;}
.x98{left:121.949984px;}
.x40{left:123.862484px;}
.x17{left:136.026570px;}
.x18{left:139.655202px;}
.x8f{left:143.399984px;}
.x16{left:151.672100px;}
.x5e{left:159.149984px;}
.x15{left:160.331335px;}
.x9d{left:162.074984px;}
.x5f{left:165.749984px;}
.x31{left:169.679984px;}
.x7c{left:172.424984px;}
.x5a{left:174.854984px;}
.x4e{left:182.024984px;}
.x22{left:185.429984px;}
.xe{left:189.077639px;}
.x5{left:191.954984px;}
.x4f{left:197.144984px;}
.x2{left:208.124984px;}
.x4{left:213.149984px;}
.x4b{left:219.404984px;}
.x21{left:226.799984px;}
.x1{left:232.619984px;}
.x6{left:249.419984px;}
.x32{left:256.244984px;}
.xf{left:265.502753px;}
.x99{left:292.124984px;}
.x5c{left:301.424984px;}
.x5d{left:304.154984px;}
.x3a{left:306.749984px;}
.x3{left:310.004984px;}
.x5b{left:315.299984px;}
.x9b{left:317.219984px;}
.x9c{left:340.544984px;}
.x4c{left:341.744984px;}
.x27{left:344.324984px;}
.x4a{left:345.494984px;}
.x6c{left:346.904984px;}
.x4d{left:352.469984px;}
.x3b{left:355.424984px;}
.x2f{left:361.274984px;}
.x96{left:369.599984px;}
.x8{left:374.024984px;}
.x38{left:375.494984px;}
.x1a{left:382.420099px;}
.x92{left:387.299984px;}
.x9a{left:388.754984px;}
.x35{left:391.904984px;}
.x19{left:398.949224px;}
.x24{left:403.154984px;}
.x95{left:408.524984px;}
.x1b{left:409.564150px;}
.x1c{left:412.756875px;}
.x82{left:413.969984px;}
.x1d{left:415.469984px;}
.x93{left:431.504984px;}
.x6a{left:446.369984px;}
.x62{left:457.124984px;}
.x63{left:463.619984px;}
.x66{left:465.299984px;}
.x6b{left:466.919984px;}
.x6d{left:474.974984px;}
.x7{left:493.124984px;}
.x34{left:498.674984px;}
.x2b{left:551.369984px;}
.x37{left:554.744984px;}
.x7d{left:574.619984px;}
.x20{left:596.069984px;}
.x36{left:604.094984px;}
.x48{left:621.674984px;}
.x43{left:628.874984px;}
.x45{left:630.749984px;}
.x44{left:634.799984px;}
.x60{left:641.474984px;}
.x41{left:642.779984px;}
.x64{left:646.349984px;}
.x65{left:647.819984px;}
.x42{left:650.924984px;}
.x29{left:657.149984px;}
.x46{left:660.404984px;}
.x69{left:673.499984px;}
.x61{left:680.099984px;}
.x87{left:686.849984px;}
.x2a{left:697.694984px;}
.x8d{left:701.969984px;}
.x47{left:703.499984px;}
.x88{left:704.699984px;}
.x8a{left:707.504984px;}
.x57{left:710.219984px;}
.x8c{left:714.629984px;}
.x89{left:725.324984px;}
.x2c{left:731.504984px;}
.x8b{left:741.569984px;}
.x8e{left:743.744984px;}
.x91{left:758.204984px;}
.x14{left:771.107835px;}
.x49{left:783.374984px;}
.x81{left:784.649984px;}
.x86{left:787.169984px;}
.x74{left:789.194984px;}
.x90{left:790.319984px;}
.x55{left:792.974984px;}
.x13{left:795.353693px;}
.x51{left:796.799984px;}
.x78{left:800.954984px;}
.x53{left:803.204984px;}
.x75{left:806.444984px;}
.x76{left:808.244984px;}
.x52{left:809.849984px;}
.x79{left:811.454984px;}
.x73{left:816.794984px;}
.x77{left:820.004984px;}
.xa{left:821.099984px;}
.xd{left:824.429873px;}
.x58{left:826.124984px;}
.x50{left:827.399984px;}
.x54{left:839.129984px;}
.x59{left:848.369984px;}
.x68{left:849.629984px;}
.x67{left:853.874984px;}
.x3d{left:908.324984px;}
.x3e{left:924.749984px;}
.x3c{left:940.424984px;}
.x56{left:963.224984px;}
.x72{left:975.719984px;}
.x6f{left:977.399984px;}
.x71{left:980.099984px;}
.x70{left:992.294984px;}
@media print{
.v8{vertical-align:-14.666667pt;}
.v5{vertical-align:-4.693333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.266667pt;}
.v6{vertical-align:13.600000pt;}
.v7{vertical-align:15.200000pt;}
.v2{vertical-align:17.627848pt;}
.v4{vertical-align:23.040000pt;}
.v1{vertical-align:40.160000pt;}
.ls1e{letter-spacing:-2.394667pt;}
.ls20{letter-spacing:-2.320000pt;}
.ls8{letter-spacing:-1.354667pt;}
.ls29{letter-spacing:-1.189333pt;}
.ls30{letter-spacing:-1.168000pt;}
.ls25{letter-spacing:-1.136000pt;}
.ls26{letter-spacing:-0.986667pt;}
.ls28{letter-spacing:-0.752000pt;}
.ls19{letter-spacing:-0.106133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.042293pt;}
.ls7{letter-spacing:0.136933pt;}
.ls9{letter-spacing:0.341867pt;}
.ls35{letter-spacing:0.344533pt;}
.ls6{letter-spacing:0.426059pt;}
.ls31{letter-spacing:0.439467pt;}
.ls1f{letter-spacing:0.451733pt;}
.lsf{letter-spacing:0.475200pt;}
.ls32{letter-spacing:0.515733pt;}
.ls3{letter-spacing:0.549333pt;}
.ls13{letter-spacing:0.682667pt;}
.ls14{letter-spacing:0.816000pt;}
.ls33{letter-spacing:1.104000pt;}
.ls36{letter-spacing:1.184000pt;}
.ls15{letter-spacing:1.306667pt;}
.ls23{letter-spacing:1.594667pt;}
.ls22{letter-spacing:2.181333pt;}
.ls24{letter-spacing:2.256000pt;}
.ls37{letter-spacing:2.432000pt;}
.ls34{letter-spacing:2.656000pt;}
.ls38{letter-spacing:2.752000pt;}
.ls2a{letter-spacing:14.353333pt;}
.ls17{letter-spacing:14.402667pt;}
.ls18{letter-spacing:14.480000pt;}
.ls21{letter-spacing:14.640000pt;}
.ls5{letter-spacing:16.147310pt;}
.ls11{letter-spacing:19.803200pt;}
.ls3b{letter-spacing:22.258933pt;}
.ls1{letter-spacing:31.045333pt;}
.ls12{letter-spacing:35.313867pt;}
.lsa{letter-spacing:35.350400pt;}
.ls4{letter-spacing:35.477867pt;}
.lse{letter-spacing:35.510400pt;}
.ls0{letter-spacing:40.245333pt;}
.ls1b{letter-spacing:50.220000pt;}
.ls1a{letter-spacing:50.266667pt;}
.lsb{letter-spacing:82.240000pt;}
.lsc{letter-spacing:82.286667pt;}
.ls2b{letter-spacing:86.353333pt;}
.ls2f{letter-spacing:86.413333pt;}
.ls39{letter-spacing:86.440000pt;}
.ls2e{letter-spacing:86.460000pt;}
.ls3a{letter-spacing:86.486667pt;}
.ls2d{letter-spacing:90.640000pt;}
.ls2c{letter-spacing:90.686667pt;}
.ls3d{letter-spacing:92.066667pt;}
.ls16{letter-spacing:92.086667pt;}
.ls3c{letter-spacing:92.113333pt;}
.lsd{letter-spacing:93.486667pt;}
.ls10{letter-spacing:121.713333pt;}
.ls1c{letter-spacing:123.086667pt;}
.ls1d{letter-spacing:123.133333pt;}
.ws48{word-spacing:-63.149200pt;}
.ws4{word-spacing:-35.658133pt;}
.ws52{word-spacing:-35.621067pt;}
.ws2{word-spacing:-31.168800pt;}
.ws10{word-spacing:-30.098133pt;}
.ws0{word-spacing:-29.764267pt;}
.ws1{word-spacing:-29.730133pt;}
.ws38{word-spacing:-26.276400pt;}
.ws4a{word-spacing:-24.626667pt;}
.ws40{word-spacing:-24.565333pt;}
.wsc{word-spacing:-23.426133pt;}
.ws1b{word-spacing:-23.360400pt;}
.ws2a{word-spacing:-22.277067pt;}
.ws2c{word-spacing:-21.874667pt;}
.ws3d{word-spacing:-21.756267pt;}
.ws3c{word-spacing:-21.726133pt;}
.ws14{word-spacing:-21.538133pt;}
.ws8{word-spacing:-21.223811pt;}
.wsb{word-spacing:-21.165067pt;}
.ws9{word-spacing:-20.996413pt;}
.ws4c{word-spacing:-20.822133pt;}
.ws19{word-spacing:-20.434000pt;}
.ws1f{word-spacing:-19.946933pt;}
.ws2d{word-spacing:-19.794667pt;}
.ws21{word-spacing:-19.504800pt;}
.ws12{word-spacing:-19.490133pt;}
.ws20{word-spacing:-19.472400pt;}
.ws51{word-spacing:-19.014133pt;}
.wsa{word-spacing:-18.541577pt;}
.ws11{word-spacing:-18.304267pt;}
.wsf{word-spacing:-18.170933pt;}
.ws50{word-spacing:-18.110133pt;}
.ws1a{word-spacing:-18.030000pt;}
.wsd{word-spacing:-17.829067pt;}
.ws5{word-spacing:-17.792000pt;}
.ws39{word-spacing:-17.206133pt;}
.wse{word-spacing:-16.474400pt;}
.ws13{word-spacing:-16.418133pt;}
.ws16{word-spacing:-15.605067pt;}
.ws17{word-spacing:-15.568000pt;}
.ws1e{word-spacing:-15.552000pt;}
.ws32{word-spacing:-15.149333pt;}
.ws4e{word-spacing:-14.494133pt;}
.ws23{word-spacing:-14.493067pt;}
.ws22{word-spacing:-14.456000pt;}
.ws3a{word-spacing:-13.554667pt;}
.ws34{word-spacing:-13.520000pt;}
.ws24{word-spacing:-13.381067pt;}
.ws1c{word-spacing:-13.346133pt;}
.ws4d{word-spacing:-12.686133pt;}
.ws3b{word-spacing:-12.365333pt;}
.ws25{word-spacing:-11.157067pt;}
.ws29{word-spacing:-11.120000pt;}
.ws4b{word-spacing:-6.696800pt;}
.ws41{word-spacing:-6.585600pt;}
.ws47{word-spacing:-6.219600pt;}
.ws3f{word-spacing:-2.551467pt;}
.ws1d{word-spacing:-1.578667pt;}
.ws49{word-spacing:-0.670133pt;}
.ws3e{word-spacing:-0.506667pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:0.314667pt;}
.ws44{word-spacing:0.394667pt;}
.ws42{word-spacing:1.141333pt;}
.ws18{word-spacing:1.538000pt;}
.ws15{word-spacing:1.726133pt;}
.ws2f{word-spacing:2.045333pt;}
.ws46{word-spacing:2.495067pt;}
.ws6{word-spacing:5.289413pt;}
.ws7{word-spacing:5.325332pt;}
.ws45{word-spacing:17.226933pt;}
.ws33{word-spacing:32.296000pt;}
.ws31{word-spacing:32.373600pt;}
.ws36{word-spacing:36.653253pt;}
.ws35{word-spacing:42.711733pt;}
.ws37{word-spacing:46.312000pt;}
.ws30{word-spacing:85.213333pt;}
.ws2e{word-spacing:85.290933pt;}
.ws27{word-spacing:106.485467pt;}
.ws26{word-spacing:115.309067pt;}
.ws2b{word-spacing:200.774400pt;}
.ws28{word-spacing:293.128133pt;}
.ws4f{word-spacing:308.995733pt;}
._3{margin-left:-4.475067pt;}
._2{margin-left:-3.448000pt;}
._6{margin-left:-2.549200pt;}
._0{margin-left:-1.551600pt;}
._1{width:1.439200pt;}
._4{width:2.700533pt;}
._7{width:3.918933pt;}
._9{width:5.153067pt;}
._11{width:12.537733pt;}
._10{width:14.620000pt;}
._f{width:17.062000pt;}
._19{width:19.954133pt;}
._15{width:21.270267pt;}
._b{width:22.193200pt;}
._16{width:23.557200pt;}
._14{width:25.267867pt;}
._8{width:27.576267pt;}
._12{width:32.898800pt;}
._13{width:34.120533pt;}
._5{width:39.610133pt;}
._18{width:40.906667pt;}
._17{width:41.842267pt;}
._1a{width:44.299200pt;}
._a{width:70.742667pt;}
._c{width:216.289200pt;}
._d{width:435.315067pt;}
._e{width:1582.916133pt;}
.fsb{font-size:39.099633pt;}
.fs20{font-size:40.000000pt;}
.fs1f{font-size:40.133333pt;}
.fs1e{font-size:48.133333pt;}
.fs1b{font-size:52.000000pt;}
.fs1a{font-size:52.133333pt;}
.fs15{font-size:56.000000pt;}
.fs16{font-size:56.133333pt;}
.fs9{font-size:59.015699pt;}
.fs22{font-size:60.000000pt;}
.fs21{font-size:60.133333pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:64.133333pt;}
.fse{font-size:66.937100pt;}
.fsd{font-size:67.252108pt;}
.fs1d{font-size:72.133333pt;}
.fsc{font-size:75.799325pt;}
.fsf{font-size:76.133333pt;}
.fs13{font-size:76.266667pt;}
.fs18{font-size:80.133333pt;}
.fs19{font-size:80.266667pt;}
.fs5{font-size:84.133333pt;}
.fs11{font-size:84.266667pt;}
.fs24{font-size:92.133333pt;}
.fs1c{font-size:96.133333pt;}
.fs23{font-size:96.266667pt;}
.fs6{font-size:108.133333pt;}
.fs10{font-size:108.266667pt;}
.fs3{font-size:116.133333pt;}
.fs2{font-size:116.266667pt;}
.fs7{font-size:128.133333pt;}
.fs4{font-size:128.266667pt;}
.fs17{font-size:132.133333pt;}
.fs14{font-size:144.266667pt;}
.fsa{font-size:151.497847pt;}
.fs1{font-size:172.266667pt;}
.fs0{font-size:172.400000pt;}
.y11{bottom:-106.462204pt;}
.yf{bottom:-98.589104pt;}
.y21{bottom:-69.863524pt;}
.y20{bottom:-51.694913pt;}
.y1f{bottom:-33.474850pt;}
.y1e{bottom:-15.332489pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.913719pt;}
.y15{bottom:5.051153pt;}
.y34{bottom:7.300000pt;}
.yf0{bottom:9.233333pt;}
.y159{bottom:10.366667pt;}
.y125{bottom:10.400000pt;}
.y16c{bottom:10.533333pt;}
.y32{bottom:11.766667pt;}
.y13b{bottom:14.333333pt;}
.y30{bottom:15.000000pt;}
.y14e{bottom:15.300000pt;}
.y26{bottom:15.933333pt;}
.y29{bottom:16.333333pt;}
.y15a{bottom:16.766667pt;}
.y6d{bottom:18.166667pt;}
.yfe{bottom:18.533333pt;}
.y127{bottom:19.600000pt;}
.y14a{bottom:22.333333pt;}
.yb{bottom:23.866667pt;}
.y28{bottom:24.633333pt;}
.y17f{bottom:24.833333pt;}
.y14{bottom:25.487297pt;}
.y17d{bottom:26.900000pt;}
.y5{bottom:27.633333pt;}
.y113{bottom:27.933333pt;}
.y55{bottom:28.500000pt;}
.y114{bottom:30.566667pt;}
.y6e{bottom:30.933333pt;}
.yef{bottom:32.300000pt;}
.y23{bottom:32.933333pt;}
.yc9{bottom:33.166667pt;}
.y132{bottom:33.866667pt;}
.y124{bottom:34.466667pt;}
.y31{bottom:34.800000pt;}
.y126{bottom:35.633333pt;}
.y14f{bottom:35.933333pt;}
.ya7{bottom:41.100000pt;}
.yfd{bottom:41.566667pt;}
.y16b{bottom:42.500000pt;}
.y35{bottom:42.966667pt;}
.yc8{bottom:46.100000pt;}
.y47{bottom:49.400000pt;}
.y54{bottom:51.533333pt;}
.y13f{bottom:51.666667pt;}
.y17c{bottom:53.933333pt;}
.yee{bottom:54.333333pt;}
.y18{bottom:56.662589pt;}
.ya6{bottom:58.133333pt;}
.y123{bottom:58.500000pt;}
.y4{bottom:59.700000pt;}
.ya8{bottom:62.700000pt;}
.yaf{bottom:66.166667pt;}
.yfc{bottom:67.633333pt;}
.y1b{bottom:68.652844pt;}
.y53{bottom:73.566667pt;}
.ye{bottom:75.000000pt;}
.ya5{bottom:75.166667pt;}
.y112{bottom:76.433333pt;}
.yed{bottom:77.366667pt;}
.y13e{bottom:77.700000pt;}
.y70{bottom:78.866667pt;}
.y17b{bottom:81.000000pt;}
.y122{bottom:82.533333pt;}
.y92{bottom:84.100000pt;}
.yae{bottom:85.200000pt;}
.y1a{bottom:89.089513pt;}
.yb5{bottom:89.933333pt;}
.ya4{bottom:91.200000pt;}
.y165{bottom:91.666667pt;}
.y102{bottom:92.666667pt;}
.y43{bottom:92.833333pt;}
.yec{bottom:99.400000pt;}
.yca{bottom:102.566667pt;}
.y13d{bottom:102.733333pt;}
.yad{bottom:104.233333pt;}
.y71{bottom:105.433333pt;}
.y17a{bottom:107.033333pt;}
.y91{bottom:108.133333pt;}
.y111{bottom:108.500000pt;}
.y164{bottom:108.700000pt;}
.ybd{bottom:109.133333pt;}
.y19{bottom:109.528282pt;}
.y2a{bottom:112.533333pt;}
.y42{bottom:112.866667pt;}
.ycc{bottom:115.900000pt;}
.y131{bottom:118.200000pt;}
.y52{bottom:118.666667pt;}
.yfb{bottom:118.733333pt;}
.ybc{bottom:121.133333pt;}
.yeb{bottom:121.433333pt;}
.y110{bottom:124.533333pt;}
.y13c{bottom:128.800000pt;}
.y121{bottom:130.633333pt;}
.y41{bottom:131.900000pt;}
.ybf{bottom:132.066667pt;}
.y90{bottom:132.200000pt;}
.y87{bottom:133.693333pt;}
.y179{bottom:134.093333pt;}
.y149{bottom:134.693333pt;}
.yc7{bottom:136.533333pt;}
.y10f{bottom:140.573333pt;}
.y51{bottom:140.693333pt;}
.yfa{bottom:143.773333pt;}
.y72{bottom:144.426667pt;}
.yea{bottom:144.493333pt;}
.ye9{bottom:145.333333pt;}
.ybe{bottom:147.106667pt;}
.y130{bottom:147.266667pt;}
.ya2{bottom:150.306667pt;}
.y120{bottom:154.666667pt;}
.y8f{bottom:156.226667pt;}
.y86{bottom:157.773333pt;}
.y178{bottom:161.133333pt;}
.y158{bottom:161.666667pt;}
.y148{bottom:163.733333pt;}
.ya1{bottom:167.333333pt;}
.y61{bottom:167.693333pt;}
.y101{bottom:169.826667pt;}
.y6c{bottom:169.866667pt;}
.y10e{bottom:172.640000pt;}
.ye8{bottom:174.400000pt;}
.ybb{bottom:174.666667pt;}
.ya3{bottom:174.693333pt;}
.y12f{bottom:176.333333pt;}
.y13{bottom:177.874517pt;}
.y40{bottom:178.000000pt;}
.y8e{bottom:180.266667pt;}
.y8{bottom:184.066667pt;}
.ya0{bottom:184.360000pt;}
.y50{bottom:185.773333pt;}
.y74{bottom:186.666667pt;}
.yba{bottom:186.693333pt;}
.y177{bottom:188.200000pt;}
.y60{bottom:189.773333pt;}
.y166{bottom:190.466667pt;}
.y157{bottom:190.733333pt;}
.y6b{bottom:191.893333pt;}
.y147{bottom:192.800000pt;}
.yf9{bottom:195.866667pt;}
.ye7{bottom:196.426667pt;}
.y3f{bottom:197.026667pt;}
.y12{bottom:198.308036pt;}
.y9f{bottom:198.400000pt;}
.y161{bottom:199.800000pt;}
.y11f{bottom:200.773333pt;}
.y22{bottom:202.508143pt;}
.ycb{bottom:202.626667pt;}
.y73{bottom:202.693333pt;}
.y12e{bottom:205.373333pt;}
.y13a{bottom:206.333333pt;}
.y10d{bottom:206.706667pt;}
.y4f{bottom:207.840000pt;}
.y17{bottom:211.181363pt;}
.y5f{bottom:212.800000pt;}
.y176{bottom:215.240000pt;}
.y7{bottom:217.133333pt;}
.yac{bottom:217.533333pt;}
.y6a{bottom:218.973333pt;}
.y156{bottom:219.800000pt;}
.yf8{bottom:220.893333pt;}
.y146{bottom:221.840000pt;}
.yc6{bottom:222.693333pt;}
.y11e{bottom:222.800000pt;}
.yb9{bottom:222.840000pt;}
.y163{bottom:224.600000pt;}
.y10c{bottom:224.733333pt;}
.ye6{bottom:225.506667pt;}
.yb4{bottom:228.840000pt;}
.y85{bottom:231.906667pt;}
.yd9{bottom:234.200000pt;}
.y12d{bottom:234.440000pt;}
.y5e{bottom:234.840000pt;}
.y139{bottom:235.400000pt;}
.y75{bottom:236.133333pt;}
.yab{bottom:236.560000pt;}
.yb8{bottom:236.866667pt;}
.yc5{bottom:237.733333pt;}
.yc4{bottom:239.266667pt;}
.y69{bottom:241.000000pt;}
.y162{bottom:241.626667pt;}
.y175{bottom:242.306667pt;}
.y58{bottom:242.666667pt;}
.y160{bottom:242.866667pt;}
.y3e{bottom:243.106667pt;}
.y46{bottom:245.706667pt;}
.y11d{bottom:245.840000pt;}
.yf7{bottom:246.960000pt;}
.ye5{bottom:248.533333pt;}
.y155{bottom:248.840000pt;}
.y145{bottom:249.906667pt;}
.yd8{bottom:251.240000pt;}
.yc3{bottom:251.306667pt;}
.y76{bottom:252.106667pt;}
.y4e{bottom:252.906667pt;}
.y6{bottom:255.200000pt;}
.y84{bottom:255.933333pt;}
.y9d{bottom:257.906667pt;}
.y8d{bottom:258.933333pt;}
.y1c{bottom:259.724096pt;}
.y3d{bottom:262.173333pt;}
.yc2{bottom:263.333333pt;}
.y68{bottom:264.026667pt;}
.y138{bottom:264.440000pt;}
.y57{bottom:264.693333pt;}
.yb7{bottom:267.506667pt;}
.yd7{bottom:268.266667pt;}
.y174{bottom:269.333333pt;}
.yf6{bottom:272.000000pt;}
.y9c{bottom:274.933333pt;}
.yc1{bottom:275.333333pt;}
.y10b{bottom:275.800000pt;}
.y4d{bottom:275.933333pt;}
.y154{bottom:276.906667pt;}
.ye4{bottom:278.600000pt;}
.y144{bottom:278.973333pt;}
.y5d{bottom:279.933333pt;}
.y83{bottom:279.960000pt;}
.yd0{bottom:280.066667pt;}
.y16a{bottom:280.306667pt;}
.y3c{bottom:281.200000pt;}
.yb6{bottom:282.533333pt;}
.y8c{bottom:283.000000pt;}
.y9e{bottom:283.106667pt;}
.yd6{bottom:284.306667pt;}
.y15f{bottom:285.960000pt;}
.yb2{bottom:287.173333pt;}
.y56{bottom:287.733333pt;}
.y67{bottom:290.106667pt;}
.yc0{bottom:291.506667pt;}
.y12c{bottom:291.533333pt;}
.y10a{bottom:291.840000pt;}
.y9b{bottom:291.960000pt;}
.y137{bottom:292.506667pt;}
.y173{bottom:296.400000pt;}
.y11b{bottom:297.066667pt;}
.yf5{bottom:298.066667pt;}
.y169{bottom:300.333333pt;}
.y5c{bottom:301.973333pt;}
.y82{bottom:304.026667pt;}
.y153{bottom:305.933333pt;}
.y8b{bottom:307.026667pt;}
.y2e{bottom:307.506667pt;}
.y9a{bottom:308.000000pt;}
.ydf{bottom:310.200000pt;}
.y66{bottom:316.133333pt;}
.y78{bottom:318.026667pt;}
.y168{bottom:319.373333pt;}
.y4c{bottom:320.040000pt;}
.y12b{bottom:320.600000pt;}
.y136{bottom:321.573333pt;}
.y172{bottom:322.440000pt;}
.y100{bottom:323.106667pt;}
.y109{bottom:323.906667pt;}
.y5b{bottom:325.000000pt;}
.y7e{bottom:325.533333pt;}
.y15e{bottom:328.026667pt;}
.y81{bottom:328.066667pt;}
.y3b{bottom:328.266667pt;}
.y77{bottom:328.306667pt;}
.y3{bottom:330.333333pt;}
.y8a{bottom:331.066667pt;}
.yde{bottom:332.240000pt;}
.y152{bottom:335.000000pt;}
.yd4{bottom:335.333333pt;}
.y143{bottom:337.066667pt;}
.y11a{bottom:338.360000pt;}
.y167{bottom:338.400000pt;}
.y65{bottom:339.173333pt;}
.y2d{bottom:339.533333pt;}
.y108{bottom:339.933333pt;}
.y7d{bottom:342.560000pt;}
.y4b{bottom:343.066667pt;}
.y5a{bottom:347.040000pt;}
.y3a{bottom:347.306667pt;}
.yd3{bottom:347.560000pt;}
.y7a{bottom:348.533333pt;}
.yf4{bottom:349.173333pt;}
.y171{bottom:349.506667pt;}
.ycd{bottom:349.533333pt;}
.y12a{bottom:349.640000pt;}
.yaa{bottom:350.066667pt;}
.y135{bottom:350.600000pt;}
.y89{bottom:355.133333pt;}
.ydd{bottom:355.266667pt;}
.y119{bottom:355.400000pt;}
.y98{bottom:357.666667pt;}
.y7c{bottom:359.600000pt;}
.ye3{bottom:361.733333pt;}
.yd2{bottom:363.600000pt;}
.y79{bottom:364.560000pt;}
.y142{bottom:366.106667pt;}
.y16{bottom:368.391356pt;}
.ya9{bottom:369.106667pt;}
.y107{bottom:372.000000pt;}
.y7b{bottom:372.026667pt;}
.y14d{bottom:373.066667pt;}
.y97{bottom:374.693333pt;}
.yff{bottom:375.200000pt;}
.y170{bottom:376.533333pt;}
.ydc{bottom:377.333333pt;}
.y80{bottom:378.173333pt;}
.yd1{bottom:378.640000pt;}
.y129{bottom:378.693333pt;}
.y15d{bottom:379.133333pt;}
.y88{bottom:379.173333pt;}
.y134{bottom:379.666667pt;}
.y2{bottom:382.440000pt;}
.ycf{bottom:383.200000pt;}
.y64{bottom:383.266667pt;}
.y99{bottom:387.893333pt;}
.y106{bottom:388.026667pt;}
.y4a{bottom:388.173333pt;}
.ye2{bottom:390.800000pt;}
.y96{bottom:391.733333pt;}
.y59{bottom:392.133333pt;}
.y151{bottom:393.106667pt;}
.y39{bottom:393.400000pt;}
.y118{bottom:393.933333pt;}
.y141{bottom:395.173333pt;}
.y14c{bottom:399.133333pt;}
.yce{bottom:399.226667pt;}
.yf3{bottom:400.226667pt;}
.ydb{bottom:400.360000pt;}
.y10{bottom:400.585173pt;}
.y63{bottom:401.306667pt;}
.y27{bottom:402.066667pt;}
.y16f{bottom:403.600000pt;}
.y2c{bottom:403.666667pt;}
.yb1{bottom:404.506667pt;}
.y45{bottom:405.400000pt;}
.y128{bottom:407.733333pt;}
.y133{bottom:408.693333pt;}
.y95{bottom:408.773333pt;}
.y38{bottom:412.440000pt;}
.ye1{bottom:412.840000pt;}
.y117{bottom:413.973333pt;}
.y105{bottom:421.066667pt;}
.y150{bottom:422.173333pt;}
.y94{bottom:424.800000pt;}
.yf2{bottom:426.306667pt;}
.y15c{bottom:427.200000pt;}
.y44{bottom:427.440000pt;}
.y16e{bottom:430.640000pt;}
.y37{bottom:431.466667pt;}
.y49{bottom:432.226667pt;}
.y1{bottom:433.533333pt;}
.yb3{bottom:434.106667pt;}
.y2b{bottom:435.733333pt;}
.y104{bottom:439.106667pt;}
.y33{bottom:441.466667pt;}
.ye0{bottom:442.893333pt;}
.y116{bottom:448.973333pt;}
.y14b{bottom:450.226667pt;}
.y25{bottom:450.466667pt;}
.y36{bottom:450.506667pt;}
.y7f{bottom:451.506667pt;}
.ya{bottom:451.693333pt;}
.y48{bottom:455.266667pt;}
.y16d{bottom:457.693333pt;}
.y62{bottom:463.133333pt;}
.y140{bottom:470.306667pt;}
.yd{bottom:479.600000pt;}
.y24{bottom:480.533333pt;}
.y6f{bottom:481.506667pt;}
.yc{bottom:483.466667pt;}
.y93{bottom:485.266667pt;}
.yd5{bottom:485.600000pt;}
.yb0{bottom:485.693333pt;}
.y103{bottom:485.866667pt;}
.yf1{bottom:486.600000pt;}
.yda{bottom:488.600000pt;}
.y15b{bottom:490.360000pt;}
.y9{bottom:490.773333pt;}
.y17e{bottom:496.773333pt;}
.y2f{bottom:499.640000pt;}
.y11c{bottom:501.106667pt;}
.y115{bottom:502.360000pt;}
.h39{height:29.238281pt;}
.h38{height:29.335742pt;}
.h3b{height:30.078125pt;}
.h3c{height:30.178385pt;}
.h37{height:36.194010pt;}
.h35{height:39.101562pt;}
.h36{height:39.201823pt;}
.h47{height:39.787109pt;}
.h46{height:39.889128pt;}
.h1f{height:42.109375pt;}
.h21{height:42.209635pt;}
.h2d{height:43.264000pt;}
.h2c{height:43.374933pt;}
.h3a{height:43.778385pt;}
.hc{height:44.261774pt;}
.h4b{height:45.878906pt;}
.h45{height:45.908203pt;}
.h4c{height:45.980859pt;}
.h48{height:46.010221pt;}
.ha{height:46.781250pt;}
.h15{height:46.878711pt;}
.he{height:46.952572pt;}
.h18{height:48.125000pt;}
.h17{height:48.225260pt;}
.h11{height:50.202825pt;}
.h10{height:50.439081pt;}
.h24{height:51.184000pt;}
.h20{height:52.376042pt;}
.h32{height:52.726367pt;}
.h1c{height:53.358933pt;}
.h3e{height:54.401823pt;}
.h12{height:55.650195pt;}
.h19{height:55.747656pt;}
.h56{height:55.831836pt;}
.h30{height:55.936000pt;}
.h2f{height:56.052533pt;}
.hf{height:56.849494pt;}
.h43{height:57.248698pt;}
.h40{height:58.140885pt;}
.h42{height:58.252409pt;}
.h5a{height:58.574023pt;}
.h3d{height:60.256510pt;}
.h14{height:61.595312pt;}
.h1a{height:63.342933pt;}
.h57{height:63.656250pt;}
.h58{height:63.788867pt;}
.h41{height:64.373503pt;}
.h44{height:64.475521pt;}
.h22{height:65.249635pt;}
.h1b{height:66.540533pt;}
.h4e{height:66.670933pt;}
.h4f{height:66.781867pt;}
.h23{height:69.637333pt;}
.h1d{height:69.998933pt;}
.h33{height:70.036533pt;}
.h34{height:70.153067pt;}
.h29{height:73.241867pt;}
.h28{height:73.322000pt;}
.h2a{height:73.363733pt;}
.h27{height:73.482267pt;}
.h4d{height:73.508203pt;}
.h49{height:75.724414pt;}
.h26{height:76.982000pt;}
.h16{height:79.040820pt;}
.h13{height:79.138281pt;}
.h59{height:79.702930pt;}
.h52{height:83.681445pt;}
.h53{height:83.814063pt;}
.h2e{height:84.020533pt;}
.h3f{height:87.427083pt;}
.h4a{height:91.102333pt;}
.h55{height:91.638477pt;}
.h7{height:94.508533pt;}
.h50{height:95.616992pt;}
.h51{height:95.749609pt;}
.h8{height:96.350260pt;}
.h9{height:96.450521pt;}
.h4{height:96.622933pt;}
.h3{height:96.733867pt;}
.h54{height:98.433398pt;}
.h31{height:101.617067pt;}
.h2b{height:111.988533pt;}
.h6{height:112.105067pt;}
.hd{height:113.623386pt;}
.h5{height:113.692533pt;}
.h25{height:120.902000pt;}
.h1e{height:131.859733pt;}
.h2{height:150.561067pt;}
.h1{height:150.677600pt;}
.hb{height:384.000000pt;}
.h0{height:540.000000pt;}
.w2{width:919.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x10{left:13.206544pt;}
.x11{left:16.819468pt;}
.xc{left:34.000000pt;}
.x94{left:39.633319pt;}
.x12{left:40.970553pt;}
.x25{left:42.633319pt;}
.x1f{left:44.366652pt;}
.x7e{left:45.866652pt;}
.x1e{left:47.266652pt;}
.x28{left:49.699986pt;}
.x7a{left:51.666652pt;}
.x2d{left:54.199986pt;}
.x30{left:59.499986pt;}
.x33{left:60.699986pt;}
.xb{left:63.633319pt;}
.x84{left:65.999986pt;}
.x9{left:69.399986pt;}
.x26{left:72.666652pt;}
.x23{left:74.399986pt;}
.x39{left:77.233319pt;}
.x3f{left:80.066652pt;}
.x7f{left:81.899986pt;}
.x2e{left:84.233319pt;}
.x6e{left:86.599986pt;}
.x97{left:88.699986pt;}
.x7b{left:90.366652pt;}
.x85{left:92.133319pt;}
.x80{left:93.899986pt;}
.x83{left:97.566652pt;}
.x98{left:108.399986pt;}
.x40{left:110.099986pt;}
.x17{left:120.912507pt;}
.x18{left:124.137957pt;}
.x8f{left:127.466652pt;}
.x16{left:134.819644pt;}
.x5e{left:141.466652pt;}
.x15{left:142.516742pt;}
.x9d{left:144.066652pt;}
.x5f{left:147.333319pt;}
.x31{left:150.826652pt;}
.x7c{left:153.266652pt;}
.x5a{left:155.426652pt;}
.x4e{left:161.799986pt;}
.x22{left:164.826652pt;}
.xe{left:168.069013pt;}
.x5{left:170.626652pt;}
.x4f{left:175.239986pt;}
.x2{left:184.999986pt;}
.x4{left:189.466652pt;}
.x4b{left:195.026652pt;}
.x21{left:201.599986pt;}
.x1{left:206.773319pt;}
.x6{left:221.706652pt;}
.x32{left:227.773319pt;}
.xf{left:236.002447pt;}
.x99{left:259.666652pt;}
.x5c{left:267.933319pt;}
.x5d{left:270.359986pt;}
.x3a{left:272.666652pt;}
.x3{left:275.559986pt;}
.x5b{left:280.266652pt;}
.x9b{left:281.973319pt;}
.x9c{left:302.706652pt;}
.x4c{left:303.773319pt;}
.x27{left:306.066652pt;}
.x4a{left:307.106652pt;}
.x6c{left:308.359986pt;}
.x4d{left:313.306652pt;}
.x3b{left:315.933319pt;}
.x2f{left:321.133319pt;}
.x96{left:328.533319pt;}
.x8{left:332.466652pt;}
.x38{left:333.773319pt;}
.x1a{left:339.928977pt;}
.x92{left:344.266652pt;}
.x9a{left:345.559986pt;}
.x35{left:348.359986pt;}
.x19{left:354.621532pt;}
.x24{left:358.359986pt;}
.x95{left:363.133319pt;}
.x1b{left:364.057022pt;}
.x1c{left:366.895000pt;}
.x82{left:367.973319pt;}
.x1d{left:369.306652pt;}
.x93{left:383.559986pt;}
.x6a{left:396.773319pt;}
.x62{left:406.333319pt;}
.x63{left:412.106652pt;}
.x66{left:413.599986pt;}
.x6b{left:415.039986pt;}
.x6d{left:422.199986pt;}
.x7{left:438.333319pt;}
.x34{left:443.266652pt;}
.x2b{left:490.106652pt;}
.x37{left:493.106652pt;}
.x7d{left:510.773319pt;}
.x20{left:529.839986pt;}
.x36{left:536.973319pt;}
.x48{left:552.599986pt;}
.x43{left:558.999986pt;}
.x45{left:560.666652pt;}
.x44{left:564.266652pt;}
.x60{left:570.199986pt;}
.x41{left:571.359986pt;}
.x64{left:574.533319pt;}
.x65{left:575.839986pt;}
.x42{left:578.599986pt;}
.x29{left:584.133319pt;}
.x46{left:587.026652pt;}
.x69{left:598.666652pt;}
.x61{left:604.533319pt;}
.x87{left:610.533319pt;}
.x2a{left:620.173319pt;}
.x8d{left:623.973319pt;}
.x47{left:625.333319pt;}
.x88{left:626.399986pt;}
.x8a{left:628.893319pt;}
.x57{left:631.306652pt;}
.x8c{left:635.226652pt;}
.x89{left:644.733319pt;}
.x2c{left:650.226652pt;}
.x8b{left:659.173319pt;}
.x8e{left:661.106652pt;}
.x91{left:673.959986pt;}
.x14{left:685.429186pt;}
.x49{left:696.333319pt;}
.x81{left:697.466652pt;}
.x86{left:699.706652pt;}
.x74{left:701.506652pt;}
.x90{left:702.506652pt;}
.x55{left:704.866652pt;}
.x13{left:706.981060pt;}
.x51{left:708.266652pt;}
.x78{left:711.959986pt;}
.x53{left:713.959986pt;}
.x75{left:716.839986pt;}
.x76{left:718.439986pt;}
.x52{left:719.866652pt;}
.x79{left:721.293319pt;}
.x73{left:726.039986pt;}
.x77{left:728.893319pt;}
.xa{left:729.866652pt;}
.xd{left:732.826554pt;}
.x58{left:734.333319pt;}
.x50{left:735.466652pt;}
.x54{left:745.893319pt;}
.x59{left:754.106652pt;}
.x68{left:755.226652pt;}
.x67{left:758.999986pt;}
.x3d{left:807.399986pt;}
.x3e{left:821.999986pt;}
.x3c{left:835.933319pt;}
.x56{left:856.199986pt;}
.x72{left:867.306652pt;}
.x6f{left:868.799986pt;}
.x71{left:871.199986pt;}
.x70{left:882.039986pt;}
}




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