
    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_215175595840ddecbd5a8ec6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731000;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_c11a8f8960daf4fa0f3a1f0d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.918500;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_e3297987a7a51d1073ef7943.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_b8c98a9572097949e2e93512.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923500;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_6835e782401a92cd35b3e360.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_4a6f9ad831661e5ef4155b39.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_5986dbb0661ead05e5658cfc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_f98d224ee7ffca9cd77b687f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.220703;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_4c490485f21f2f09aed4ef9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.315918;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_2af57560c460012f86e698fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.318848;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_d9c1a456c59cae6d0905d90b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.338867;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_d9637e107a223280ec907d45.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.361816;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_699dd0b157a6c95be8cde8d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_6dbe063096d33fe684ec1f66.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b712c2dda72f3289b2608da9.woff2')format("woff");}.fff{font-family:fff;line-height:1.053223;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_09e31e6fbb1966791a5062af.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_13abf261bc37b58fc3bd200a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.241699;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_11ac4f56c775865b4f5d86d6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_675e1adbb259bbe83d2ab2d5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;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_49f9b9af563d6e1759d785de.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.372070;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_352661f558bee30b40b7d590.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.401855;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_456bfb93a7f3b68fecf61780.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.766602;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;}
.m1{transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181818,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-75.183101px;}
.v2{vertical-align:-16.878000px;}
.v4{vertical-align:-13.511340px;}
.v6{vertical-align:-1.501260px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.511340px;}
.v3{vertical-align:16.878000px;}
.v1{vertical-align:37.488000px;}
.ls34{letter-spacing:-2.251890px;}
.ls1c{letter-spacing:-0.990832px;}
.ls31{letter-spacing:-0.876736px;}
.ls2f{letter-spacing:-0.750630px;}
.ls20{letter-spacing:-0.636534px;}
.ls2e{letter-spacing:-0.468393px;}
.lsf{letter-spacing:-0.441370px;}
.ls1d{letter-spacing:-0.417350px;}
.ls10{letter-spacing:-0.384323px;}
.ls2c{letter-spacing:-0.336282px;}
.ls29{letter-spacing:-0.201169px;}
.ls1a{letter-spacing:-0.075063px;}
.ls26{letter-spacing:-0.024020px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls1e{letter-spacing:0.126106px;}
.ls32{letter-spacing:0.246207px;}
.ls23{letter-spacing:0.402338px;}
.ls11{letter-spacing:0.411345px;}
.ls25{letter-spacing:0.516433px;}
.ls1b{letter-spacing:0.624524px;}
.ls2a{letter-spacing:0.732615px;}
.ls24{letter-spacing:0.744625px;}
.ls30{letter-spacing:0.750630px;}
.lsa{letter-spacing:0.762640px;}
.ls22{letter-spacing:1.116937px;}
.ls2b{letter-spacing:1.405179px;}
.ls13{letter-spacing:2.263900px;}
.ls16{letter-spacing:2.777331px;}
.ls3{letter-spacing:2.984947px;}
.ls5{letter-spacing:2.990052px;}
.ls2{letter-spacing:2.992152px;}
.ls12{letter-spacing:3.765160px;}
.ls19{letter-spacing:3.798188px;}
.ls17{letter-spacing:5.266420px;}
.ls33{letter-spacing:6.545494px;}
.ls8{letter-spacing:6.767680px;}
.ls1f{letter-spacing:6.947831px;}
.ls9{letter-spacing:8.268940px;}
.ls15{letter-spacing:9.770200px;}
.ls14{letter-spacing:11.211410px;}
.lsc{letter-spacing:11.271460px;}
.lsd{letter-spacing:11.451611px;}
.ls0{letter-spacing:12.705423px;}
.lse{letter-spacing:12.772720px;}
.ls1{letter-spacing:13.975965px;}
.lsb{letter-spacing:17.276500px;}
.ls21{letter-spacing:20.279020px;}
.ls18{letter-spacing:20.792451px;}
.ls4{letter-spacing:22.033224px;}
.ls2d{letter-spacing:79.716906px;}
.ls28{letter-spacing:848.662278px;}
.ls27{letter-spacing:1754.774774px;}
.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;}
}
.ws29{word-spacing:-63.052920px;}
.ws2c{word-spacing:-48.745912px;}
.ws2a{word-spacing:-48.469680px;}
.ws2d{word-spacing:-45.725377px;}
.ws2b{word-spacing:-45.479170px;}
.ws30{word-spacing:-44.905689px;}
.ws39{word-spacing:-20.795454px;}
.ws33{word-spacing:-18.531553px;}
.ws34{word-spacing:-17.991100px;}
.ws32{word-spacing:-14.994585px;}
.ws2e{word-spacing:-14.928529px;}
.ws25{word-spacing:-14.661305px;}
.ws26{word-spacing:-14.249960px;}
.ws1{word-spacing:-14.059653px;}
.ws35{word-spacing:-14.048791px;}
.ws21{word-spacing:-14.040000px;}
.ws2f{word-spacing:-13.832610px;}
.ws24{word-spacing:-13.808589px;}
.ws31{word-spacing:-13.613426px;}
.ws22{word-spacing:-13.560000px;}
.ws0{word-spacing:-12.781503px;}
.ws36{word-spacing:-11.589727px;}
.ws37{word-spacing:-10.857112px;}
.ws38{word-spacing:-10.520830px;}
.wsf{word-spacing:-0.123951px;}
.wse{word-spacing:-0.086077px;}
.ws28{word-spacing:-0.065455px;}
.ws3{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.054887px;}
.ws23{word-spacing:0.000000px;}
.ws20{word-spacing:12.194253px;}
.ws1d{word-spacing:13.055024px;}
.ws2{word-spacing:13.927715px;}
.ws1c{word-spacing:14.154898px;}
.ws6{word-spacing:14.465695px;}
.ws16{word-spacing:14.884124px;}
.ws8{word-spacing:15.238662px;}
.ws7{word-spacing:15.242778px;}
.ws15{word-spacing:15.661207px;}
.ws1f{word-spacing:16.306825px;}
.ws27{word-spacing:16.690923px;}
.ws19{word-spacing:16.737168px;}
.ws14{word-spacing:17.155597px;}
.ws17{word-spacing:18.889090px;}
.ws1b{word-spacing:19.187968px;}
.ws1a{word-spacing:19.247743px;}
.ws13{word-spacing:20.144377px;}
.ws18{word-spacing:20.981236px;}
.wsd{word-spacing:21.949686px;}
.wsc{word-spacing:21.952159px;}
.ws12{word-spacing:22.834279px;}
.ws10{word-spacing:22.953830px;}
.ws5{word-spacing:24.996761px;}
.ws11{word-spacing:25.464406px;}
.wsb{word-spacing:26.339562px;}
.wsa{word-spacing:35.995516px;}
.ws1e{word-spacing:47.773131px;}
.ws4{word-spacing:71.425846px;}
._1{margin-left:-14.143342px;}
._0{margin-left:-12.781503px;}
._9{margin-left:-11.106841px;}
._6{margin-left:-7.083555px;}
._8{margin-left:-5.017518px;}
._17{margin-left:-3.971416px;}
._7{margin-left:-2.951481px;}
._2{margin-left:-1.494390px;}
._3{width:1.434614px;}
._5{width:2.988780px;}
._e{width:4.262202px;}
._c{width:5.776037px;}
._4{width:7.531726px;}
._d{width:8.672659px;}
._15{width:10.407640px;}
._14{width:11.805909px;}
._16{width:12.859518px;}
._11{width:15.692442px;}
._f{width:16.874753px;}
._10{width:17.882281px;}
._1a{width:19.409018px;}
._13{width:20.744301px;}
._12{width:22.065245px;}
._1e{width:23.266527px;}
._2f{width:24.398203px;}
._1c{width:25.977803px;}
._1d{width:27.040832px;}
._25{width:28.764457px;}
._26{width:30.659099px;}
._3b{width:36.312069px;}
._3a{width:37.478727px;}
._39{width:38.588387px;}
._35{width:40.615496px;}
._34{width:42.812933px;}
._b{width:47.000117px;}
._33{width:49.326264px;}
._32{width:50.801773px;}
._38{width:56.454379px;}
._36{width:57.945633px;}
._37{width:58.946470px;}
._a{width:63.522821px;}
._46{width:66.530428px;}
._44{width:68.349365px;}
._45{width:70.147600px;}
._29{width:72.258646px;}
._27{width:74.213287px;}
._28{width:75.685794px;}
._40{width:77.141471px;}
._3f{width:79.131415px;}
._41{width:97.747629px;}
._43{width:99.434455px;}
._42{width:100.758886px;}
._2d{width:123.284061px;}
._2e{width:124.634056px;}
._3e{width:133.530797px;}
._3c{width:134.744090px;}
._3d{width:135.809120px;}
._2b{width:154.921024px;}
._2a{width:156.308189px;}
._2c{width:158.288712px;}
._31{width:169.527419px;}
._30{width:171.437612px;}
._21{width:376.741197px;}
._20{width:378.065308px;}
._19{width:621.941669px;}
._23{width:848.662278px;}
._22{width:1369.011004px;}
._24{width:2347.838664px;}
._1f{width:2349.740664px;}
._18{width:2385.802332px;}
._1b{width:2387.656777px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(52,110,146);}
.fc2{color:rgb(15,175,173);}
.fc5{color:rgb(102,102,102);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(49,49,49);}
.fc8{color:rgb(0,0,10);}
.fc0{color:rgb(245,152,26);}
.fs11{font-size:45.037800px;}
.fsa{font-size:47.820600px;}
.fs13{font-size:48.040320px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:54.886554px;}
.fs2{font-size:59.775600px;}
.fsb{font-size:60.000000px;}
.fsf{font-size:63.052920px;}
.fs10{font-size:65.454600px;}
.fsd{font-size:66.000000px;}
.fs12{font-size:66.055440px;}
.fse{font-size:72.060480px;}
.fs7{font-size:72.304200px;}
.fs0{font-size:76.080374px;}
.fs1{font-size:83.688412px;}
.fs8{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs9{font-size:123.951000px;}
.fs6{font-size:148.741800px;}
.fs3{font-size:295.148124px;}
.y3f{bottom:-2.274600px;}
.y0{bottom:0.000000px;}
.y40{bottom:0.327000px;}
.y182{bottom:3.362822px;}
.y178{bottom:3.377835px;}
.y187{bottom:3.392848px;}
.y1b4{bottom:3.407860px;}
.y197{bottom:3.422873px;}
.y17c{bottom:3.753150px;}
.y2{bottom:8.183829px;}
.y167{bottom:8.256930px;}
.y165{bottom:8.632245px;}
.y24e{bottom:9.007560px;}
.y249{bottom:9.367862px;}
.y245{bottom:9.382875px;}
.yf8{bottom:10.118492px;}
.yf6{bottom:10.133505px;}
.yfb{bottom:10.163530px;}
.y11c{bottom:10.493807px;}
.yf4{bottom:10.508820px;}
.y3e{bottom:17.075400px;}
.y1{bottom:26.737807px;}
.y24b{bottom:33.027720px;}
.y256{bottom:33.057745px;}
.y246{bottom:33.403035px;}
.y3d{bottom:36.425400px;}
.y5{bottom:37.545000px;}
.y3c{bottom:54.968400px;}
.y4{bottom:55.477500px;}
.y76{bottom:64.513500px;}
.y3{bottom:73.410000px;}
.y3b{bottom:74.318400px;}
.y3a{bottom:94.700400px;}
.y97{bottom:111.881401px;}
.y74{bottom:112.632031px;}
.y39{bottom:113.825400px;}
.y279{bottom:114.133291px;}
.yc1{bottom:114.508606px;}
.y149{bottom:119.012386px;}
.y1e6{bottom:120.465331px;}
.y1af{bottom:121.215961px;}
.y226{bottom:123.467851px;}
.y130{bottom:123.516166px;}
.y15a{bottom:123.891481px;}
.y148{bottom:125.392741px;}
.y96{bottom:131.397781px;}
.y73{bottom:131.773096px;}
.y278{bottom:133.274356px;}
.yc0{bottom:133.649671px;}
.ye6{bottom:138.153451px;}
.y225{bottom:139.231081px;}
.y1e5{bottom:139.606396px;}
.y1eb{bottom:139.981711px;}
.y1ae{bottom:140.732341px;}
.y12f{bottom:142.657231px;}
.y159{bottom:143.032546px;}
.y147{bottom:144.533806px;}
.y161{bottom:145.659751px;}
.y95{bottom:150.531340px;}
.y72{bottom:150.921668px;}
.y277{bottom:152.422928px;}
.ybf{bottom:152.798243px;}
.y224{bottom:154.986805px;}
.ye5{bottom:157.287010px;}
.y1e4{bottom:158.739955px;}
.y1ea{bottom:159.115270px;}
.y1ad{bottom:159.865900px;}
.y12e{bottom:161.805803px;}
.y146{bottom:164.042680px;}
.y116{bottom:164.808323px;}
.y94{bottom:169.687418px;}
.y71{bottom:170.423035px;}
.y223{bottom:170.750035px;}
.y276{bottom:171.939308px;}
.ybe{bottom:172.314623px;}
.y158{bottom:176.067773px;}
.ye4{bottom:176.803390px;}
.y1e3{bottom:177.881020px;}
.y1ac{bottom:179.006965px;}
.y1e9{bottom:180.556540px;}
.y12d{bottom:181.322183px;}
.y145{bottom:183.198758px;}
.y115{bottom:184.309690px;}
.y37{bottom:185.796000px;}
.y222{bottom:186.513265px;}
.y93{bottom:189.203798px;}
.y70{bottom:189.579113px;}
.y275{bottom:191.065360px;}
.y176{bottom:191.831003px;}
.ye3{bottom:195.959468px;}
.y1e2{bottom:197.022085px;}
.y160{bottom:197.821030px;}
.y1ab{bottom:198.148030px;}
.y36{bottom:200.142000px;}
.y221{bottom:202.276495px;}
.y144{bottom:202.339823px;}
.y114{bottom:203.465768px;}
.y92{bottom:208.374888px;}
.y6f{bottom:208.750203px;}
.y274{bottom:210.251463px;}
.ybd{bottom:211.002093px;}
.ye2{bottom:215.130558px;}
.y1e1{bottom:216.208188px;}
.y35{bottom:216.537000px;}
.y1aa{bottom:217.334133px;}
.y220{bottom:218.084763px;}
.y1e8{bottom:218.133078px;}
.y12c{bottom:218.508393px;}
.y143{bottom:221.886228px;}
.y113{bottom:222.636858px;}
.y91{bottom:227.515953px;}
.y6e{bottom:228.266583px;}
.y175{bottom:229.392528px;}
.ybc{bottom:230.143158px;}
.y21f{bottom:233.847993px;}
.ye1{bottom:234.271623px;}
.y1e0{bottom:235.349253px;}
.y1a9{bottom:236.475198px;}
.y34{bottom:237.286500px;}
.y12b{bottom:237.649458px;}
.y142{bottom:241.027293px;}
.y112{bottom:242.153238px;}
.y90{bottom:246.657018px;}
.y6d{bottom:247.407648px;}
.y174{bottom:248.533593px;}
.y273{bottom:248.908908px;}
.ybb{bottom:249.284223px;}
.y21e{bottom:249.611223px;}
.ye0{bottom:253.788003px;}
.y1df{bottom:254.490318px;}
.y1e7{bottom:254.913948px;}
.y1a8{bottom:255.616263px;}
.y12a{bottom:256.790523px;}
.y141{bottom:260.168358px;}
.y111{bottom:261.294303px;}
.y21d{bottom:265.374453px;}
.y8f{bottom:266.173398px;}
.y6c{bottom:266.548713px;}
.y173{bottom:267.674658px;}
.y272{bottom:268.049973px;}
.yba{bottom:268.800603px;}
.y33{bottom:272.850000px;}
.ydf{bottom:272.929068px;}
.y1de{bottom:273.631383px;}
.y1a7{bottom:274.757328px;}
.y129{bottom:276.306903px;}
.y140{bottom:279.309423px;}
.y110{bottom:280.435368px;}
.y21c{bottom:281.137683px;}
.y8e{bottom:285.314463px;}
.y6b{bottom:285.689778px;}
.y271{bottom:287.191038px;}
.yb9{bottom:287.941668px;}
.y32{bottom:290.782500px;}
.yde{bottom:292.070133px;}
.y1dd{bottom:292.772448px;}
.y1a6{bottom:293.898393px;}
.y128{bottom:295.447968px;}
.y21b{bottom:296.900913px;}
.y13f{bottom:298.825803px;}
.y10f{bottom:299.576433px;}
.y172{bottom:300.702378px;}
.yfc{bottom:301.780008px;}
.y6a{bottom:305.206158px;}
.y270{bottom:306.332103px;}
.yb8{bottom:307.082733px;}
.y31{bottom:308.715000px;}
.ydd{bottom:311.211198px;}
.y1dc{bottom:311.913513px;}
.y1a5{bottom:313.039458px;}
.y127{bottom:314.589033px;}
.y13e{bottom:317.966868px;}
.y10e{bottom:319.092813px;}
.y8d{bottom:323.971908px;}
.y69{bottom:324.347223px;}
.y26f{bottom:325.848483px;}
.yb7{bottom:326.223798px;}
.y30{bottom:326.647500px;}
.y21a{bottom:328.802688px;}
.yfa{bottom:330.303948px;}
.ydc{bottom:330.727578px;}
.y1db{bottom:331.054578px;}
.y1a4{bottom:332.180523px;}
.y13d{bottom:337.152971px;}
.y10d{bottom:338.278916px;}
.y8c{bottom:343.142998px;}
.y68{bottom:343.518313px;}
.y2f{bottom:344.581500px;}
.y219{bottom:344.610956px;}
.y26e{bottom:345.034586px;}
.yb6{bottom:345.785216px;}
.y126{bottom:347.661791px;}
.ydb{bottom:349.898668px;}
.y1da{bottom:350.240681px;}
.y1a3{bottom:351.366626px;}
.y163{bottom:355.918721px;}
.y13c{bottom:356.279023px;}
.y10c{bottom:357.419981px;}
.yf9{bottom:358.872926px;}
.y218{bottom:360.374186px;}
.y2e{bottom:362.514000px;}
.y67{bottom:362.674391px;}
.y26d{bottom:364.175651px;}
.yb5{bottom:365.676911px;}
.yda{bottom:369.054746px;}
.y1d9{bottom:369.381746px;}
.y1a2{bottom:370.507691px;}
.y13b{bottom:375.810416px;}
.y217{bottom:376.137416px;}
.y10b{bottom:376.546033px;}
.y2d{bottom:380.446500px;}
.y8b{bottom:381.815456px;}
.y66{bottom:382.190771px;}
.y26c{bottom:383.301703px;}
.yf7{bottom:387.396866px;}
.yb4{bottom:387.820496px;}
.y1d{bottom:388.174500px;}
.yd9{bottom:388.195811px;}
.y1d8{bottom:388.522811px;}
.y1a1{bottom:389.648756px;}
.y216{bottom:391.900646px;}
.y13a{bottom:394.951481px;}
.y10a{bottom:396.077426px;}
.y2c{bottom:398.379000px;}
.y8a{bottom:400.956521px;}
.y65{bottom:401.331836px;}
.y26b{bottom:402.833096px;}
.y1c{bottom:406.107000px;}
.yb3{bottom:406.961561px;}
.y215{bottom:407.663876px;}
.yd8{bottom:407.712191px;}
.y1d7{bottom:408.039191px;}
.y153{bottom:408.087506px;}
.y1a0{bottom:408.789821px;}
.y139{bottom:414.092546px;}
.y109{bottom:415.218491px;}
.yf5{bottom:415.920806px;}
.y2b{bottom:416.311500px;}
.y64{bottom:420.472901px;}
.y26a{bottom:421.974161px;}
.y214{bottom:423.427106px;}
.y1b{bottom:424.039500px;}
.yb2{bottom:426.477941px;}
.yd7{bottom:426.853256px;}
.y1d6{bottom:427.180256px;}
.y152{bottom:427.228571px;}
.y19f{bottom:427.930886px;}
.y138{bottom:433.233611px;}
.y2a{bottom:434.244000px;}
.y108{bottom:434.359556px;}
.y213{bottom:439.190336px;}
.y89{bottom:439.613966px;}
.y63{bottom:439.989281px;}
.y269{bottom:441.115226px;}
.yf3{bottom:445.570691px;}
.yb1{bottom:445.619006px;}
.yd6{bottom:445.994321px;}
.y1d5{bottom:446.321321px;}
.y151{bottom:446.369636px;}
.y19e{bottom:447.447266px;}
.y29{bottom:452.176500px;}
.y137{bottom:452.749991px;}
.y107{bottom:453.875936px;}
.y212{bottom:454.953566px;}
.y88{bottom:458.785056px;}
.y62{bottom:459.160371px;}
.y268{bottom:460.661631px;}
.yb0{bottom:464.790096px;}
.y1d4{bottom:465.492411px;}
.yd5{bottom:465.540726px;}
.y19d{bottom:466.618356px;}
.y28{bottom:470.110500px;}
.y211{bottom:470.746821px;}
.y136{bottom:471.921081px;}
.y106{bottom:473.047026px;}
.y87{bottom:477.926121px;}
.y61{bottom:478.301436px;}
.y267{bottom:479.802696px;}
.yaf{bottom:483.931161px;}
.y1d3{bottom:484.633476px;}
.yd4{bottom:484.681791px;}
.y19c{bottom:485.759421px;}
.y210{bottom:486.510051px;}
.y150{bottom:487.308996px;}
.y27{bottom:488.043000px;}
.y135{bottom:491.062146px;}
.y1a{bottom:491.787000px;}
.y105{bottom:492.188091px;}
.yf2{bottom:497.067186px;}
.y60{bottom:497.442501px;}
.y266{bottom:498.943761px;}
.y15f{bottom:501.195651px;}
.y20f{bottom:502.273281px;}
.yae{bottom:503.447541px;}
.y1d2{bottom:503.774541px;}
.yd3{bottom:503.822856px;}
.y19b{bottom:504.900486px;}
.y26{bottom:505.975500px;}
.y19{bottom:509.721000px;}
.y134{bottom:510.578526px;}
.y104{bottom:511.329156px;}
.yf1{bottom:516.208251px;}
.y86{bottom:516.583566px;}
.y5f{bottom:516.958881px;}
.y20e{bottom:518.036511px;}
.y265{bottom:518.084826px;}
.yad{bottom:522.588606px;}
.y1d1{bottom:522.915606px;}
.yd2{bottom:522.963921px;}
.y19a{bottom:524.041551px;}
.y18{bottom:527.653500px;}
.y133{bottom:529.719591px;}
.y103{bottom:530.845536px;}
.y25{bottom:531.477000px;}
.y20d{bottom:533.799741px;}
.yf0{bottom:535.349316px;}
.y5e{bottom:536.099946px;}
.y264{bottom:537.601206px;}
.y15e{bottom:538.727151px;}
.yac{bottom:541.729671px;}
.y1d0{bottom:542.056671px;}
.yd1{bottom:542.480301px;}
.y199{bottom:543.182616px;}
.y17{bottom:545.586000px;}
.y14f{bottom:548.860656px;}
.y20c{bottom:549.562971px;}
.y102{bottom:549.986601px;}
.y5d{bottom:555.241011px;}
.y263{bottom:556.742271px;}
.y15d{bottom:557.868216px;}
.yab{bottom:560.870736px;}
.y1cf{bottom:561.197736px;}
.yd0{bottom:561.621366px;}
.y198{bottom:562.323681px;}
.y16{bottom:563.518500px;}
.y20b{bottom:565.701516px;}
.y252{bottom:568.001721px;}
.y14e{bottom:568.377036px;}
.y101{bottom:569.127666px;}
.y132{bottom:570.253611px;}
.y5c{bottom:574.382076px;}
.y262{bottom:575.883336px;}
.y15c{bottom:577.384596px;}
.y1ce{bottom:580.338801px;}
.yaa{bottom:580.387116px;}
.ycf{bottom:580.762431px;}
.y15{bottom:581.451000px;}
.y196{bottom:581.464746px;}
.y251{bottom:586.812509px;}
.y14d{bottom:587.563139px;}
.yef{bottom:593.568179px;}
.y5b{bottom:593.943494px;}
.y261{bottom:595.069439px;}
.y20a{bottom:597.273014px;}
.y24{bottom:598.006500px;}
.y1cd{bottom:599.524904px;}
.ya9{bottom:599.573219px;}
.yce{bottom:599.948534px;}
.y195{bottom:600.650849px;}
.y100{bottom:606.328889px;}
.y14c{bottom:606.704204px;}
.y15b{bottom:610.457354px;}
.yee{bottom:612.709244px;}
.y209{bottom:613.036244px;}
.y5a{bottom:613.084559px;}
.y260{bottom:614.585819px;}
.y1cc{bottom:618.665969px;}
.ya8{bottom:618.714284px;}
.ycd{bottom:619.464914px;}
.y194{bottom:619.791914px;}
.y14{bottom:622.228232px;}
.y157{bottom:625.094639px;}
.yff{bottom:625.845269px;}
.y208{bottom:628.799474px;}
.yed{bottom:631.850309px;}
.y59{bottom:632.225624px;}
.y25f{bottom:633.726884px;}
.y23f{bottom:635.603459px;}
.y1cb{bottom:637.807034px;}
.ya7{bottom:638.230664px;}
.ycc{bottom:638.605979px;}
.y193{bottom:638.932979px;}
.y13{bottom:640.024500px;}
.y23{bottom:641.538000px;}
.y156{bottom:644.235704px;}
.y207{bottom:644.562704px;}
.yfe{bottom:644.986334px;}
.y125{bottom:649.865429px;}
.y58{bottom:651.366689px;}
.y25e{bottom:652.867949px;}
.y250{bottom:653.945579px;}
.y23e{bottom:654.369209px;}
.y16b{bottom:655.495154px;}
.y1ca{bottom:656.948099px;}
.ya6{bottom:657.371729px;}
.ycb{bottom:657.747044px;}
.y192{bottom:658.074044px;}
.y206{bottom:660.325934px;}
.yfd{bottom:663.001454px;}
.y155{bottom:663.376769px;}
.y14b{bottom:666.754604px;}
.yec{bottom:670.507754px;}
.y23d{bottom:670.834754px;}
.y57{bottom:670.883069px;}
.y25d{bottom:672.384329px;}
.y1c9{bottom:676.089164px;}
.ya5{bottom:676.512794px;}
.y191{bottom:677.215109px;}
.yca{bottom:677.263424px;}
.y12{bottom:680.664000px;}
.y124{bottom:681.718889px;}
.y131{bottom:684.394409px;}
.y22{bottom:686.856000px;}
.yeb{bottom:689.648819px;}
.y56{bottom:690.024134px;}
.y25c{bottom:691.525394px;}
.y205{bottom:691.852394px;}
.y16a{bottom:693.026654px;}
.y23c{bottom:693.728969px;}
.y1c8{bottom:695.230229px;}
.ya4{bottom:695.653859px;}
.y190{bottom:696.356174px;}
.yc9{bottom:696.404489px;}
.y11{bottom:698.596500px;}
.y171{bottom:704.286104px;}
.y204{bottom:707.645649px;}
.y24f{bottom:708.396279px;}
.y55{bottom:709.195224px;}
.y166{bottom:709.522224px;}
.y123{bottom:710.272854px;}
.y25b{bottom:710.696484px;}
.y169{bottom:712.197744px;}
.y1c7{bottom:714.776634px;}
.y23b{bottom:715.151949px;}
.y18f{bottom:715.527264px;}
.yc8{bottom:715.575579px;}
.y10{bottom:716.529000px;}
.y21{bottom:717.843000px;}
.y203{bottom:723.408879px;}
.y170{bottom:723.832509px;}
.yea{bottom:728.336289px;}
.y54{bottom:728.711604px;}
.y25a{bottom:729.837549px;}
.y1c6{bottom:733.917699px;}
.yf{bottom:734.461500px;}
.y18e{bottom:734.668329px;}
.ya3{bottom:734.716644px;}
.y23a{bottom:736.920219px;}
.y122{bottom:738.796794px;}
.y202{bottom:739.172109px;}
.y16f{bottom:742.973574px;}
.ye9{bottom:747.477354px;}
.y53{bottom:747.852669px;}
.ye{bottom:752.395500px;}
.y1c5{bottom:753.058764px;}
.ya2{bottom:753.857709px;}
.y18d{bottom:754.184709px;}
.yc7{bottom:754.233024px;}
.y201{bottom:754.935339px;}
.y239{bottom:759.439119px;}
.y168{bottom:761.364009px;}
.ye8{bottom:766.618419px;}
.y52{bottom:766.993734px;}
.y121{bottom:767.320734px;}
.y24d{bottom:768.821994px;}
.yd{bottom:770.328000px;}
.y200{bottom:770.698569px;}
.y259{bottom:770.746884px;}
.y20{bottom:771.538500px;}
.y1c4{bottom:772.199829px;}
.ya1{bottom:772.998774px;}
.y18c{bottom:773.325774px;}
.yc6{bottom:773.374089px;}
.y162{bottom:775.625979px;}
.y16e{bottom:776.001294px;}
.y238{bottom:782.333334px;}
.y51{bottom:786.134799px;}
.y1ff{bottom:786.461799px;}
.yc{bottom:788.260500px;}
.y1c3{bottom:791.340894px;}
.ya0{bottom:792.139839px;}
.y18b{bottom:792.466839px;}
.yc5{bottom:792.515154px;}
.y120{bottom:795.844674px;}
.y1fe{bottom:802.225029px;}
.y237{bottom:804.101604px;}
.y50{bottom:805.651179px;}
.yb{bottom:806.193000px;}
.y14a{bottom:807.903069px;}
.y1c2{bottom:810.481959px;}
.y18a{bottom:811.607904px;}
.y9f{bottom:811.656219px;}
.y1f{bottom:816.160500px;}
.y1fd{bottom:818.363574px;}
.y4f{bottom:824.792244px;}
.y11f{bottom:825.869874px;}
.y236{bottom:826.620504px;}
.y1c1{bottom:829.623024px;}
.y189{bottom:830.778994px;}
.y9e{bottom:830.842322px;}
.yc4{bottom:831.202624px;}
.y258{bottom:831.953254px;}
.y1fc{bottom:834.156829px;}
.y4e{bottom:843.963334px;}
.y85{bottom:846.215224px;}
.ya{bottom:846.832500px;}
.y235{bottom:848.418799px;}
.y1c0{bottom:848.794114px;}
.y188{bottom:849.920059px;}
.y9d{bottom:849.968374px;}
.yc3{bottom:850.343689px;}
.y24c{bottom:855.237797px;}
.y1e{bottom:860.784000px;}
.y4d{bottom:863.104399px;}
.y9{bottom:864.765000px;}
.y1fb{bottom:865.683289px;}
.y1bf{bottom:867.935179px;}
.y186{bottom:869.061124px;}
.y9c{bottom:869.109439px;}
.yc2{bottom:869.484754px;}
.y234{bottom:869.811754px;}
.y24a{bottom:873.564904px;}
.y1fa{bottom:881.446519px;}
.y4c{bottom:882.620779px;}
.y1ed{bottom:886.749244px;}
.y1be{bottom:887.076244px;}
.y11e{bottom:887.499874px;}
.y185{bottom:888.202189px;}
.y84{bottom:888.625819px;}
.y233{bottom:891.580024px;}
.y1f9{bottom:897.209749px;}
.y257{bottom:901.713529px;}
.y4b{bottom:901.761844px;}
.y8{bottom:905.406000px;}
.y11d{bottom:905.841994px;}
.y1bd{bottom:906.217309px;}
.y184{bottom:907.343254px;}
.y9b{bottom:907.766884px;}
.y83{bottom:908.142199px;}
.y1f8{bottom:912.972979px;}
.y4a{bottom:920.902909px;}
.y1bc{bottom:925.358374px;}
.y1ec{bottom:925.782004px;}
.y183{bottom:926.484319px;}
.y9a{bottom:926.907949px;}
.y82{bottom:927.283264px;}
.y248{bottom:927.625277px;}
.y1f7{bottom:928.736209px;}
.y255{bottom:931.003112px;}
.y11b{bottom:934.380947px;}
.y232{bottom:935.882207px;}
.y38{bottom:938.850600px;}
.y49{bottom:940.419289px;}
.y1bb{bottom:944.514452px;}
.y181{bottom:945.640397px;}
.y81{bottom:946.424329px;}
.y247{bottom:958.055817px;}
.y231{bottom:958.806447px;}
.y48{bottom:959.605392px;}
.y1f6{bottom:960.307707px;}
.y11a{bottom:963.310227px;}
.y1ba{bottom:963.685542px;}
.y180{bottom:964.811487px;}
.y99{bottom:965.610432px;}
.y80{bottom:965.985747px;}
.y1f5{bottom:976.070937px;}
.y47{bottom:978.746457px;}
.y230{bottom:981.325347px;}
.y1b9{bottom:982.826607px;}
.y17f{bottom:983.952552px;}
.y98{bottom:984.751497px;}
.y7f{bottom:985.126812px;}
.y244{bottom:988.456332px;}
.y119{bottom:991.834167px;}
.y46{bottom:997.887522px;}
.y1b8{bottom:1001.967672px;}
.y17e{bottom:1003.093617px;}
.y22f{bottom:1004.219562px;}
.y7e{bottom:1004.267877px;}
.y1f4{bottom:1007.597397px;}
.y254{bottom:1013.227122px;}
.y45{bottom:1017.403902px;}
.ye7{bottom:1019.655792px;}
.y118{bottom:1020.358107px;}
.y1b7{bottom:1021.484052px;}
.y17d{bottom:1022.234682px;}
.y1f3{bottom:1023.360627px;}
.y7d{bottom:1023.408942px;}
.y22e{bottom:1027.113777px;}
.y44{bottom:1036.544967px;}
.y1f2{bottom:1039.123857px;}
.y1b6{bottom:1040.625117px;}
.y22b{bottom:1041.048747px;}
.y17b{bottom:1041.375747px;}
.y7c{bottom:1042.925322px;}
.y253{bottom:1043.627637px;}
.y117{bottom:1050.007992px;}
.y1f1{bottom:1054.887087px;}
.y43{bottom:1055.686032px;}
.y1b5{bottom:1059.766182px;}
.y17a{bottom:1060.892127px;}
.y7b{bottom:1062.066387px;}
.y243{bottom:1063.567647px;}
.y1f0{bottom:1071.025632px;}
.y22d{bottom:1072.902207px;}
.y42{bottom:1074.827097px;}
.y7{bottom:1075.396500px;}
.y1b3{bottom:1078.907247px;}
.y179{bottom:1080.063217px;}
.y7a{bottom:1081.237477px;}
.y242{bottom:1082.738737px;}
.y1ef{bottom:1086.818887px;}
.y22a{bottom:1089.869722px;}
.y22c{bottom:1095.451132px;}
.y1b2{bottom:1098.078337px;}
.y177{bottom:1099.204282px;}
.y79{bottom:1100.378542px;}
.y241{bottom:1101.879802px;}
.y1ee{bottom:1102.582117px;}
.y229{bottom:1108.211842px;}
.y41{bottom:1115.766457px;}
.y164{bottom:1116.468772px;}
.y1b1{bottom:1117.219402px;}
.y78{bottom:1119.894922px;}
.y6{bottom:1122.196500px;}
.y16c{bottom:1122.849127px;}
.y228{bottom:1123.975072px;}
.y1b0{bottom:1136.360467px;}
.y154{bottom:1136.784097px;}
.y16d{bottom:1137.159412px;}
.y240{bottom:1138.660672px;}
.y77{bottom:1139.035987px;}
.y227{bottom:1139.738302px;}
.y75{bottom:1181.584500px;}
.h32{height:14.622272px;}
.h2d{height:14.637285px;}
.h31{height:14.659804px;}
.h33{height:14.674816px;}
.h30{height:15.012600px;}
.h34{height:15.035119px;}
.h3b{height:20.642325px;}
.h3d{height:20.679856px;}
.h36{height:21.017640px;}
.h3c{height:21.055171px;}
.h39{height:21.768270px;}
.h37{height:21.805801px;}
.h38{height:22.143585px;}
.h3a{height:22.166104px;}
.h2b{height:25.521420px;}
.h29{height:25.896735px;}
.h20{height:28.523940px;}
.h22{height:28.561471px;}
.h27{height:28.899255px;}
.h25{height:28.921774px;}
.h1e{height:28.936786px;}
.h3f{height:29.274570px;}
.h40{height:29.297089px;}
.h11{height:37.084875px;}
.h2f{height:42.011823px;}
.ha{height:42.564522px;}
.h4{height:44.024729px;}
.h8{height:44.413271px;}
.h5{height:44.831700px;}
.h9{height:46.355978px;}
.h2e{height:47.782291px;}
.h1d{height:50.760042px;}
.h41{height:52.919415px;}
.h44{height:52.941934px;}
.h43{height:52.956946px;}
.h3e{height:53.294730px;}
.h42{height:53.317249px;}
.h13{height:53.956875px;}
.h12{height:53.962875px;}
.h2{height:54.853950px;}
.h18{height:56.583984px;}
.h15{height:57.128906px;}
.h17{height:57.717773px;}
.h3{height:60.339345px;}
.h1b{height:62.714257px;}
.h24{height:62.898982px;}
.hf{height:64.557900px;}
.h1c{height:64.561510px;}
.h28{height:64.829802px;}
.h35{height:65.894172px;}
.h2c{height:66.571498px;}
.he{height:66.752869px;}
.h23{height:67.635868px;}
.h16{height:67.740234px;}
.h1f{height:70.723420px;}
.h2a{height:71.673436px;}
.h26{height:71.884551px;}
.h21{height:72.623452px;}
.h1a{height:73.784583px;}
.h7{height:76.746253px;}
.hc{height:83.843978px;}
.h10{height:92.095593px;}
.hd{height:93.553907px;}
.hb{height:110.515157px;}
.h14{height:125.075700px;}
.h6{height:219.295056px;}
.h19{height:1262.184345px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.we{width:48.415635px;}
.wf{width:48.453166px;}
.w1e{width:64.929495px;}
.w20{width:67.556700px;}
.wc{width:76.601791px;}
.w1c{width:79.228996px;}
.w8{width:81.105571px;}
.wa{width:85.234037px;}
.wd{width:85.609352px;}
.w1d{width:87.110611px;}
.w1f{width:87.485926px;}
.w9{width:93.866281px;}
.w4{width:101.785428px;}
.w10{width:104.375101px;}
.w18{width:122.014906px;}
.w11{width:123.929013px;}
.w5{width:129.521206px;}
.w19{width:137.065038px;}
.w16{width:137.440353px;}
.w12{width:146.447913px;}
.w6{width:155.455473px;}
.w17{width:156.956733px;}
.w13{width:166.339608px;}
.w1a{width:175.722483px;}
.w1b{width:176.097798px;}
.w15{width:179.475633px;}
.w14{width:186.981933px;}
.w3{width:251.911428px;}
.wb{width:262.074958px;}
.w7{width:263.576218px;}
.w2{width:653.606554px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:1.125945px;}
.x69{left:7.130985px;}
.x25{left:8.256930px;}
.x40{left:9.758190px;}
.x56{left:10.884135px;}
.x37{left:14.637285px;}
.x74{left:20.642325px;}
.x39{left:22.143585px;}
.x6f{left:25.131092px;}
.x1c{left:28.369498px;}
.x3b{left:31.136132px;}
.x42{left:32.262077px;}
.x76{left:33.778350px;}
.x27{left:34.949333px;}
.x1{left:37.118476px;}
.x3e{left:38.657445px;}
.x75{left:39.783390px;}
.x6d{left:40.909335px;}
.x5{left:42.508500px;}
.x3c{left:43.536540px;}
.x3d{left:47.665005px;}
.x6c{left:50.292210px;}
.x18{left:52.257000px;}
.xd{left:53.587500px;}
.xc{left:55.164000px;}
.xb{left:56.202000px;}
.x15{left:59.881500px;}
.x29{left:61.176345px;}
.x2c{left:64.223903px;}
.x1f{left:65.481000px;}
.xe{left:73.006500px;}
.x10{left:75.808500px;}
.xf{left:79.993500px;}
.x2d{left:91.997213px;}
.x19{left:94.197000px;}
.x2b{left:100.239130px;}
.x17{left:102.423000px;}
.x7{left:105.285000px;}
.x1e{left:107.961751px;}
.x61{left:110.213641px;}
.x5e{left:111.714901px;}
.x2f{left:112.999840px;}
.x45{left:116.593996px;}
.x2e{left:117.878935px;}
.x34{left:120.347146px;}
.x12{left:123.039000px;}
.x51{left:126.352186px;}
.x31{left:128.979391px;}
.x13{left:131.235000px;}
.x48{left:132.770073px;}
.x11{left:135.255000px;}
.x23{left:137.649168px;}
.x22{left:139.525743px;}
.x5a{left:145.155468px;}
.x60{left:146.656728px;}
.x3{left:149.185500px;}
.x16{left:150.963000px;}
.x44{left:152.286453px;}
.x33{left:155.664288px;}
.x6b{left:158.291493px;}
.x2{left:159.628500px;}
.x9{left:164.044500px;}
.x14{left:165.195000px;}
.x5f{left:171.052203px;}
.x8{left:179.392500px;}
.x52{left:182.686968px;}
.x4{left:186.687000px;}
.x70{left:189.817953px;}
.x58{left:197.324253px;}
.xa{left:199.545000px;}
.x63{left:216.840633px;}
.x35{left:224.391971px;}
.x5d{left:225.517916px;}
.x4c{left:231.898271px;}
.x49{left:243.533036px;}
.x65{left:248.787446px;}
.x66{left:252.540596px;}
.x67{left:266.427251px;}
.x5b{left:267.928511px;}
.x50{left:273.558236px;}
.x1b{left:283.800000px;}
.x1a{left:284.884500px;}
.x32{left:312.245706px;}
.x4b{left:324.631101px;}
.x24{left:347.525316px;}
.x20{left:365.915751px;}
.x4f{left:367.792326px;}
.x4a{left:372.671421px;}
.x68{left:389.185281px;}
.x26{left:391.812486px;}
.x1d{left:399.318786px;}
.x77{left:404.993549px;}
.x46{left:406.494809px;}
.x3f{left:417.003629px;}
.x36{left:418.504889px;}
.x21{left:419.630834px;}
.x54{left:421.132094px;}
.x71{left:424.885244px;}
.x4d{left:427.137134px;}
.x5c{left:458.663594px;}
.x64{left:461.290799px;}
.x28{left:493.597914px;}
.x38{left:499.602954px;}
.x72{left:504.106734px;}
.x6a{left:527.000949px;}
.x57{left:560.779299px;}
.x6e{left:585.970442px;}
.x41{left:587.471702px;}
.x73{left:591.600167px;}
.x3a{left:593.476742px;}
.x55{left:614.119067px;}
.x2a{left:623.126627px;}
.x59{left:630.617914px;}
.x53{left:632.884817px;}
.x6{left:662.452500px;}
.x47{left:679.829217px;}
.x4e{left:731.247372px;}
.x30{left:767.307637px;}
.x43{left:771.060787px;}
@media print{
.v7{vertical-align:-66.829423pt;}
.v2{vertical-align:-15.002667pt;}
.v4{vertical-align:-12.010080pt;}
.v6{vertical-align:-1.334453pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.010080pt;}
.v3{vertical-align:15.002667pt;}
.v1{vertical-align:33.322667pt;}
.ls34{letter-spacing:-2.001680pt;}
.ls1c{letter-spacing:-0.880739pt;}
.ls31{letter-spacing:-0.779321pt;}
.ls2f{letter-spacing:-0.667227pt;}
.ls20{letter-spacing:-0.565808pt;}
.ls2e{letter-spacing:-0.416349pt;}
.lsf{letter-spacing:-0.392329pt;}
.ls1d{letter-spacing:-0.370978pt;}
.ls10{letter-spacing:-0.341620pt;}
.ls2c{letter-spacing:-0.298918pt;}
.ls29{letter-spacing:-0.178817pt;}
.ls1a{letter-spacing:-0.066723pt;}
.ls26{letter-spacing:-0.021351pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls1e{letter-spacing:0.112094pt;}
.ls32{letter-spacing:0.218850pt;}
.ls23{letter-spacing:0.357633pt;}
.ls11{letter-spacing:0.365640pt;}
.ls25{letter-spacing:0.459052pt;}
.ls1b{letter-spacing:0.555133pt;}
.ls2a{letter-spacing:0.651213pt;}
.ls24{letter-spacing:0.661889pt;}
.ls30{letter-spacing:0.667227pt;}
.lsa{letter-spacing:0.677902pt;}
.ls22{letter-spacing:0.992833pt;}
.ls2b{letter-spacing:1.249048pt;}
.ls13{letter-spacing:2.012356pt;}
.ls16{letter-spacing:2.468739pt;}
.ls3{letter-spacing:2.653286pt;}
.ls5{letter-spacing:2.657824pt;}
.ls2{letter-spacing:2.659691pt;}
.ls12{letter-spacing:3.346809pt;}
.ls19{letter-spacing:3.376167pt;}
.ls17{letter-spacing:4.681262pt;}
.ls33{letter-spacing:5.818217pt;}
.ls8{letter-spacing:6.015716pt;}
.ls1f{letter-spacing:6.175850pt;}
.ls9{letter-spacing:7.350169pt;}
.ls15{letter-spacing:8.684622pt;}
.ls14{letter-spacing:9.965697pt;}
.lsc{letter-spacing:10.019076pt;}
.lsd{letter-spacing:10.179210pt;}
.ls0{letter-spacing:11.293709pt;}
.lse{letter-spacing:11.353529pt;}
.ls1{letter-spacing:12.423080pt;}
.lsb{letter-spacing:15.356889pt;}
.ls21{letter-spacing:18.025796pt;}
.ls18{letter-spacing:18.482179pt;}
.ls4{letter-spacing:19.585088pt;}
.ls2d{letter-spacing:70.859472pt;}
.ls28{letter-spacing:754.366469pt;}
.ls27{letter-spacing:1559.799799pt;}
.ws29{word-spacing:-56.047040pt;}
.ws2c{word-spacing:-43.329700pt;}
.ws2a{word-spacing:-43.084160pt;}
.ws2d{word-spacing:-40.644780pt;}
.ws2b{word-spacing:-40.425929pt;}
.ws30{word-spacing:-39.916168pt;}
.ws39{word-spacing:-18.484848pt;}
.ws33{word-spacing:-16.472492pt;}
.ws34{word-spacing:-15.992089pt;}
.ws32{word-spacing:-13.328520pt;}
.ws2e{word-spacing:-13.269804pt;}
.ws25{word-spacing:-13.032271pt;}
.ws26{word-spacing:-12.666631pt;}
.ws1{word-spacing:-12.497470pt;}
.ws35{word-spacing:-12.487814pt;}
.ws21{word-spacing:-12.480000pt;}
.ws2f{word-spacing:-12.295653pt;}
.ws24{word-spacing:-12.274302pt;}
.ws31{word-spacing:-12.100823pt;}
.ws22{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.361336pt;}
.ws36{word-spacing:-10.301980pt;}
.ws37{word-spacing:-9.650767pt;}
.ws38{word-spacing:-9.351849pt;}
.wsf{word-spacing:-0.110179pt;}
.wse{word-spacing:-0.076513pt;}
.ws28{word-spacing:-0.058182pt;}
.ws3{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.048788pt;}
.ws23{word-spacing:0.000000pt;}
.ws20{word-spacing:10.839336pt;}
.ws1d{word-spacing:11.604466pt;}
.ws2{word-spacing:12.380191pt;}
.ws1c{word-spacing:12.582131pt;}
.ws6{word-spacing:12.858396pt;}
.ws16{word-spacing:13.230333pt;}
.ws8{word-spacing:13.545477pt;}
.ws7{word-spacing:13.549136pt;}
.ws15{word-spacing:13.921073pt;}
.ws1f{word-spacing:14.494955pt;}
.ws27{word-spacing:14.836376pt;}
.ws19{word-spacing:14.877483pt;}
.ws14{word-spacing:15.249420pt;}
.ws17{word-spacing:16.790302pt;}
.ws1b{word-spacing:17.055971pt;}
.ws1a{word-spacing:17.109105pt;}
.ws13{word-spacing:17.906113pt;}
.ws18{word-spacing:18.649987pt;}
.wsd{word-spacing:19.510832pt;}
.wsc{word-spacing:19.513030pt;}
.ws12{word-spacing:20.297137pt;}
.ws10{word-spacing:20.403405pt;}
.ws5{word-spacing:22.219343pt;}
.ws11{word-spacing:22.635027pt;}
.wsb{word-spacing:23.412944pt;}
.wsa{word-spacing:31.996014pt;}
.ws1e{word-spacing:42.465005pt;}
.ws4{word-spacing:63.489641pt;}
._1{margin-left:-12.571859pt;}
._0{margin-left:-11.361336pt;}
._9{margin-left:-9.872748pt;}
._6{margin-left:-6.296493pt;}
._8{margin-left:-4.460016pt;}
._17{margin-left:-3.530148pt;}
._7{margin-left:-2.623539pt;}
._2{margin-left:-1.328347pt;}
._3{width:1.275213pt;}
._5{width:2.656693pt;}
._e{width:3.788624pt;}
._c{width:5.134255pt;}
._4{width:6.694867pt;}
._d{width:7.709030pt;}
._15{width:9.251235pt;}
._14{width:10.494141pt;}
._16{width:11.430683pt;}
._11{width:13.948837pt;}
._f{width:14.999780pt;}
._10{width:15.895361pt;}
._1a{width:17.252461pt;}
._13{width:18.439379pt;}
._12{width:19.613551pt;}
._1e{width:20.681358pt;}
._2f{width:21.687291pt;}
._1c{width:23.091380pt;}
._1d{width:24.036295pt;}
._25{width:25.568406pt;}
._26{width:27.252532pt;}
._3b{width:32.277395pt;}
._3a{width:33.314424pt;}
._39{width:34.300788pt;}
._35{width:36.102663pt;}
._34{width:38.055940pt;}
._b{width:41.777881pt;}
._33{width:43.845568pt;}
._32{width:45.157132pt;}
._38{width:50.181670pt;}
._36{width:51.507230pt;}
._37{width:52.396863pt;}
._a{width:56.464730pt;}
._46{width:59.138159pt;}
._44{width:60.754991pt;}
._45{width:62.353422pt;}
._29{width:64.229908pt;}
._27{width:65.967366pt;}
._28{width:67.276262pt;}
._40{width:68.570196pt;}
._3f{width:70.339035pt;}
._41{width:86.886781pt;}
._43{width:88.386182pt;}
._42{width:89.563454pt;}
._2d{width:109.585832pt;}
._2e{width:110.785827pt;}
._3e{width:118.694042pt;}
._3c{width:119.772524pt;}
._3d{width:120.719217pt;}
._2b{width:137.707577pt;}
._2a{width:138.940612pt;}
._2c{width:140.701077pt;}
._31{width:150.691039pt;}
._30{width:152.388989pt;}
._21{width:334.881064pt;}
._20{width:336.058052pt;}
._19{width:552.837039pt;}
._23{width:754.366469pt;}
._22{width:1216.898670pt;}
._24{width:2086.967701pt;}
._1f{width:2088.658368pt;}
._18{width:2120.713184pt;}
._1b{width:2122.361580pt;}
.fs11{font-size:40.033600pt;}
.fsa{font-size:42.507200pt;}
.fs13{font-size:42.702507pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:48.788048pt;}
.fs2{font-size:53.133867pt;}
.fsb{font-size:53.333333pt;}
.fsf{font-size:56.047040pt;}
.fs10{font-size:58.181867pt;}
.fsd{font-size:58.666667pt;}
.fs12{font-size:58.715947pt;}
.fse{font-size:64.053760pt;}
.fs7{font-size:64.270400pt;}
.fs0{font-size:67.627000pt;}
.fs1{font-size:74.389699pt;}
.fs8{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs9{font-size:110.178667pt;}
.fs6{font-size:132.214933pt;}
.fs3{font-size:262.353888pt;}
.y3f{bottom:-2.021867pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:0.290667pt;}
.y182{bottom:2.989175pt;}
.y178{bottom:3.002520pt;}
.y187{bottom:3.015865pt;}
.y1b4{bottom:3.029209pt;}
.y197{bottom:3.042554pt;}
.y17c{bottom:3.336133pt;}
.y2{bottom:7.274515pt;}
.y167{bottom:7.339493pt;}
.y165{bottom:7.673107pt;}
.y24e{bottom:8.006720pt;}
.y249{bottom:8.326989pt;}
.y245{bottom:8.340333pt;}
.yf8{bottom:8.994215pt;}
.yf6{bottom:9.007560pt;}
.yfb{bottom:9.034249pt;}
.y11c{bottom:9.327829pt;}
.yf4{bottom:9.341173pt;}
.y3e{bottom:15.178133pt;}
.y1{bottom:23.766939pt;}
.y24b{bottom:29.357973pt;}
.y256{bottom:29.384662pt;}
.y246{bottom:29.691587pt;}
.y3d{bottom:32.378133pt;}
.y5{bottom:33.373333pt;}
.y3c{bottom:48.860800pt;}
.y4{bottom:49.313333pt;}
.y76{bottom:57.345333pt;}
.y3{bottom:65.253333pt;}
.y3b{bottom:66.060800pt;}
.y3a{bottom:84.178133pt;}
.y97{bottom:99.450135pt;}
.y74{bottom:100.117361pt;}
.y39{bottom:101.178133pt;}
.y279{bottom:101.451815pt;}
.yc1{bottom:101.785428pt;}
.y149{bottom:105.788788pt;}
.y1e6{bottom:107.080295pt;}
.y1af{bottom:107.747521pt;}
.y226{bottom:109.749201pt;}
.y130{bottom:109.792148pt;}
.y15a{bottom:110.125761pt;}
.y148{bottom:111.460215pt;}
.y96{bottom:116.798028pt;}
.y73{bottom:117.131641pt;}
.y278{bottom:118.466095pt;}
.yc0{bottom:118.799708pt;}
.ye6{bottom:122.803068pt;}
.y225{bottom:123.760961pt;}
.y1e5{bottom:124.094575pt;}
.y1eb{bottom:124.428188pt;}
.y1ae{bottom:125.095415pt;}
.y12f{bottom:126.806428pt;}
.y159{bottom:127.140041pt;}
.y147{bottom:128.474495pt;}
.y161{bottom:129.475335pt;}
.y95{bottom:133.805636pt;}
.y72{bottom:134.152594pt;}
.y277{bottom:135.487047pt;}
.ybf{bottom:135.820660pt;}
.y224{bottom:137.766049pt;}
.ye5{bottom:139.810676pt;}
.y1e4{bottom:141.102182pt;}
.y1ea{bottom:141.435796pt;}
.y1ad{bottom:142.103022pt;}
.y12e{bottom:143.827380pt;}
.y146{bottom:145.815716pt;}
.y116{bottom:146.496287pt;}
.y94{bottom:150.833260pt;}
.y71{bottom:151.487142pt;}
.y223{bottom:151.777809pt;}
.y276{bottom:152.834940pt;}
.ybe{bottom:153.168554pt;}
.y158{bottom:156.504687pt;}
.ye4{bottom:157.158569pt;}
.y1e3{bottom:158.116462pt;}
.y1ac{bottom:159.117302pt;}
.y1e9{bottom:160.494702pt;}
.y12d{bottom:161.175274pt;}
.y145{bottom:162.843340pt;}
.y115{bottom:163.830836pt;}
.y37{bottom:165.152000pt;}
.y222{bottom:165.789569pt;}
.y93{bottom:168.181154pt;}
.y70{bottom:168.514767pt;}
.y275{bottom:169.835876pt;}
.y176{bottom:170.516447pt;}
.ye3{bottom:174.186194pt;}
.y1e2{bottom:175.130742pt;}
.y160{bottom:175.840916pt;}
.y1ab{bottom:176.131582pt;}
.y36{bottom:177.904000pt;}
.y221{bottom:179.801329pt;}
.y144{bottom:179.857620pt;}
.y114{bottom:180.858460pt;}
.y92{bottom:185.222123pt;}
.y6f{bottom:185.555736pt;}
.y274{bottom:186.890189pt;}
.ybd{bottom:187.557416pt;}
.ye2{bottom:191.227163pt;}
.y1e1{bottom:192.185056pt;}
.y35{bottom:192.477333pt;}
.y1aa{bottom:193.185896pt;}
.y220{bottom:193.853123pt;}
.y1e8{bottom:193.896069pt;}
.y12c{bottom:194.229683pt;}
.y143{bottom:197.232203pt;}
.y113{bottom:197.899429pt;}
.y91{bottom:202.236403pt;}
.y6e{bottom:202.903629pt;}
.y175{bottom:203.904469pt;}
.ybc{bottom:204.571696pt;}
.y21f{bottom:207.864883pt;}
.ye1{bottom:208.241443pt;}
.y1e0{bottom:209.199336pt;}
.y1a9{bottom:210.200176pt;}
.y34{bottom:210.921333pt;}
.y12b{bottom:211.243963pt;}
.y142{bottom:214.246483pt;}
.y112{bottom:215.247323pt;}
.y90{bottom:219.250683pt;}
.y6d{bottom:219.917909pt;}
.y174{bottom:220.918749pt;}
.y273{bottom:221.252363pt;}
.ybb{bottom:221.585976pt;}
.y21e{bottom:221.876643pt;}
.ye0{bottom:225.589336pt;}
.y1df{bottom:226.213616pt;}
.y1e7{bottom:226.590176pt;}
.y1a8{bottom:227.214456pt;}
.y12a{bottom:228.258243pt;}
.y141{bottom:231.260763pt;}
.y111{bottom:232.261603pt;}
.y21d{bottom:235.888403pt;}
.y8f{bottom:236.598576pt;}
.y6c{bottom:236.932189pt;}
.y173{bottom:237.933029pt;}
.y272{bottom:238.266643pt;}
.yba{bottom:238.933869pt;}
.y33{bottom:242.533333pt;}
.ydf{bottom:242.603616pt;}
.y1de{bottom:243.227896pt;}
.y1a7{bottom:244.228736pt;}
.y129{bottom:245.606136pt;}
.y140{bottom:248.275043pt;}
.y110{bottom:249.275883pt;}
.y21c{bottom:249.900163pt;}
.y8e{bottom:253.612856pt;}
.y6b{bottom:253.946469pt;}
.y271{bottom:255.280923pt;}
.yb9{bottom:255.948149pt;}
.y32{bottom:258.473333pt;}
.yde{bottom:259.617896pt;}
.y1dd{bottom:260.242176pt;}
.y1a6{bottom:261.243016pt;}
.y128{bottom:262.620416pt;}
.y21b{bottom:263.911923pt;}
.y13f{bottom:265.622936pt;}
.y10f{bottom:266.290163pt;}
.y172{bottom:267.291003pt;}
.yfc{bottom:268.248896pt;}
.y6a{bottom:271.294363pt;}
.y270{bottom:272.295203pt;}
.yb8{bottom:272.962429pt;}
.y31{bottom:274.413333pt;}
.ydd{bottom:276.632176pt;}
.y1dc{bottom:277.256456pt;}
.y1a5{bottom:278.257296pt;}
.y127{bottom:279.634696pt;}
.y13e{bottom:282.637216pt;}
.y10e{bottom:283.638056pt;}
.y8d{bottom:287.975029pt;}
.y69{bottom:288.308643pt;}
.y26f{bottom:289.643096pt;}
.yb7{bottom:289.976709pt;}
.y30{bottom:290.353333pt;}
.y21a{bottom:292.269056pt;}
.yfa{bottom:293.603509pt;}
.ydc{bottom:293.980069pt;}
.y1db{bottom:294.270736pt;}
.y1a4{bottom:295.271576pt;}
.y13d{bottom:299.691530pt;}
.y10d{bottom:300.692370pt;}
.y8c{bottom:305.015998pt;}
.y68{bottom:305.349612pt;}
.y2f{bottom:306.294667pt;}
.y219{bottom:306.320850pt;}
.y26e{bottom:306.697410pt;}
.yb6{bottom:307.364636pt;}
.y126{bottom:309.032703pt;}
.ydb{bottom:311.021038pt;}
.y1da{bottom:311.325050pt;}
.y1a3{bottom:312.325890pt;}
.y163{bottom:316.372196pt;}
.y13c{bottom:316.692465pt;}
.y10c{bottom:317.706650pt;}
.yf9{bottom:318.998156pt;}
.y218{bottom:320.332610pt;}
.y2e{bottom:322.234667pt;}
.y67{bottom:322.377236pt;}
.y26d{bottom:323.711690pt;}
.yb5{bottom:325.046143pt;}
.yda{bottom:328.048663pt;}
.y1d9{bottom:328.339330pt;}
.y1a2{bottom:329.340170pt;}
.y13b{bottom:334.053703pt;}
.y217{bottom:334.344370pt;}
.y10b{bottom:334.707585pt;}
.y2d{bottom:338.174667pt;}
.y8b{bottom:339.391516pt;}
.y66{bottom:339.725130pt;}
.y26c{bottom:340.712625pt;}
.yf7{bottom:344.352770pt;}
.yb4{bottom:344.729330pt;}
.y1d{bottom:345.044000pt;}
.yd9{bottom:345.062943pt;}
.y1d8{bottom:345.353610pt;}
.y1a1{bottom:346.354450pt;}
.y216{bottom:348.356130pt;}
.y13a{bottom:351.067983pt;}
.y10a{bottom:352.068823pt;}
.y2c{bottom:354.114667pt;}
.y8a{bottom:356.405796pt;}
.y65{bottom:356.739410pt;}
.y26b{bottom:358.073863pt;}
.y1c{bottom:360.984000pt;}
.yb3{bottom:361.743610pt;}
.y215{bottom:362.367890pt;}
.yd8{bottom:362.410836pt;}
.y1d7{bottom:362.701503pt;}
.y153{bottom:362.744450pt;}
.y1a0{bottom:363.368730pt;}
.y139{bottom:368.082263pt;}
.y109{bottom:369.083103pt;}
.yf5{bottom:369.707383pt;}
.y2b{bottom:370.054667pt;}
.y64{bottom:373.753690pt;}
.y26a{bottom:375.088143pt;}
.y214{bottom:376.379650pt;}
.y1b{bottom:376.924000pt;}
.yb2{bottom:379.091503pt;}
.yd7{bottom:379.425116pt;}
.y1d6{bottom:379.715783pt;}
.y152{bottom:379.758730pt;}
.y19f{bottom:380.383010pt;}
.y138{bottom:385.096543pt;}
.y2a{bottom:385.994667pt;}
.y108{bottom:386.097383pt;}
.y213{bottom:390.391410pt;}
.y89{bottom:390.767970pt;}
.y63{bottom:391.101583pt;}
.y269{bottom:392.102423pt;}
.yf3{bottom:396.062836pt;}
.yb1{bottom:396.105783pt;}
.yd6{bottom:396.439396pt;}
.y1d5{bottom:396.730063pt;}
.y151{bottom:396.773010pt;}
.y19e{bottom:397.730903pt;}
.y29{bottom:401.934667pt;}
.y137{bottom:402.444436pt;}
.y107{bottom:403.445276pt;}
.y212{bottom:404.403170pt;}
.y88{bottom:407.808939pt;}
.y62{bottom:408.142552pt;}
.y268{bottom:409.477005pt;}
.yb0{bottom:413.146752pt;}
.y1d4{bottom:413.771032pt;}
.yd5{bottom:413.813979pt;}
.y19d{bottom:414.771872pt;}
.y28{bottom:417.876000pt;}
.y211{bottom:418.441619pt;}
.y136{bottom:419.485405pt;}
.y106{bottom:420.486245pt;}
.y87{bottom:424.823219pt;}
.y61{bottom:425.156832pt;}
.y267{bottom:426.491285pt;}
.yaf{bottom:430.161032pt;}
.y1d3{bottom:430.785312pt;}
.yd4{bottom:430.828259pt;}
.y19c{bottom:431.786152pt;}
.y210{bottom:432.453379pt;}
.y150{bottom:433.163552pt;}
.y27{bottom:433.816000pt;}
.y135{bottom:436.499685pt;}
.y1a{bottom:437.144000pt;}
.y105{bottom:437.500525pt;}
.yf2{bottom:441.837499pt;}
.y60{bottom:442.171112pt;}
.y266{bottom:443.505565pt;}
.y15f{bottom:445.507245pt;}
.y20f{bottom:446.465139pt;}
.yae{bottom:447.508925pt;}
.y1d2{bottom:447.799592pt;}
.yd3{bottom:447.842539pt;}
.y19b{bottom:448.800432pt;}
.y26{bottom:449.756000pt;}
.y19{bottom:453.085333pt;}
.y134{bottom:453.847579pt;}
.y104{bottom:454.514805pt;}
.yf1{bottom:458.851779pt;}
.y86{bottom:459.185392pt;}
.y5f{bottom:459.519005pt;}
.y20e{bottom:460.476899pt;}
.y265{bottom:460.519845pt;}
.yad{bottom:464.523205pt;}
.y1d1{bottom:464.813872pt;}
.yd2{bottom:464.856819pt;}
.y19a{bottom:465.814712pt;}
.y18{bottom:469.025333pt;}
.y133{bottom:470.861859pt;}
.y103{bottom:471.862699pt;}
.y25{bottom:472.424000pt;}
.y20d{bottom:474.488659pt;}
.yf0{bottom:475.866059pt;}
.y5e{bottom:476.533285pt;}
.y264{bottom:477.867739pt;}
.y15e{bottom:478.868579pt;}
.yac{bottom:481.537485pt;}
.y1d0{bottom:481.828152pt;}
.yd1{bottom:482.204712pt;}
.y199{bottom:482.828992pt;}
.y17{bottom:484.965333pt;}
.y14f{bottom:487.876139pt;}
.y20c{bottom:488.500419pt;}
.y102{bottom:488.876979pt;}
.y5d{bottom:493.547565pt;}
.y263{bottom:494.882019pt;}
.y15d{bottom:495.882859pt;}
.yab{bottom:498.551765pt;}
.y1cf{bottom:498.842432pt;}
.yd0{bottom:499.218992pt;}
.y198{bottom:499.843272pt;}
.y16{bottom:500.905333pt;}
.y20b{bottom:502.845792pt;}
.y252{bottom:504.890419pt;}
.y14e{bottom:505.224032pt;}
.y101{bottom:505.891259pt;}
.y132{bottom:506.892099pt;}
.y5c{bottom:510.561845pt;}
.y262{bottom:511.896299pt;}
.y15c{bottom:513.230752pt;}
.y1ce{bottom:515.856712pt;}
.yaa{bottom:515.899659pt;}
.ycf{bottom:516.233272pt;}
.y15{bottom:516.845333pt;}
.y196{bottom:516.857552pt;}
.y251{bottom:521.611119pt;}
.y14d{bottom:522.278346pt;}
.yef{bottom:527.616159pt;}
.y5b{bottom:527.949772pt;}
.y261{bottom:528.950612pt;}
.y20a{bottom:530.909346pt;}
.y24{bottom:531.561333pt;}
.y1cd{bottom:532.911026pt;}
.ya9{bottom:532.953972pt;}
.yce{bottom:533.287586pt;}
.y195{bottom:533.911866pt;}
.y100{bottom:538.959012pt;}
.y14c{bottom:539.292626pt;}
.y15b{bottom:542.628759pt;}
.yee{bottom:544.630439pt;}
.y209{bottom:544.921106pt;}
.y5a{bottom:544.964052pt;}
.y260{bottom:546.298506pt;}
.y1cc{bottom:549.925306pt;}
.ya8{bottom:549.968252pt;}
.ycd{bottom:550.635479pt;}
.y194{bottom:550.926146pt;}
.y14{bottom:553.091761pt;}
.y157{bottom:555.639679pt;}
.yff{bottom:556.306906pt;}
.y208{bottom:558.932866pt;}
.yed{bottom:561.644719pt;}
.y59{bottom:561.978332pt;}
.y25f{bottom:563.312786pt;}
.y23f{bottom:564.980852pt;}
.y1cb{bottom:566.939586pt;}
.ya7{bottom:567.316146pt;}
.ycc{bottom:567.649759pt;}
.y193{bottom:567.940426pt;}
.y13{bottom:568.910667pt;}
.y23{bottom:570.256000pt;}
.y156{bottom:572.653959pt;}
.y207{bottom:572.944626pt;}
.yfe{bottom:573.321186pt;}
.y125{bottom:577.658159pt;}
.y58{bottom:578.992612pt;}
.y25e{bottom:580.327066pt;}
.y250{bottom:581.284959pt;}
.y23e{bottom:581.661519pt;}
.y16b{bottom:582.662359pt;}
.y1ca{bottom:583.953866pt;}
.ya6{bottom:584.330426pt;}
.ycb{bottom:584.664039pt;}
.y192{bottom:584.954706pt;}
.y206{bottom:586.956386pt;}
.yfd{bottom:589.334626pt;}
.y155{bottom:589.668239pt;}
.y14b{bottom:592.670759pt;}
.yec{bottom:596.006892pt;}
.y23d{bottom:596.297559pt;}
.y57{bottom:596.340506pt;}
.y25d{bottom:597.674959pt;}
.y1c9{bottom:600.968146pt;}
.ya5{bottom:601.344706pt;}
.y191{bottom:601.968986pt;}
.yca{bottom:602.011932pt;}
.y12{bottom:605.034667pt;}
.y124{bottom:605.972346pt;}
.y131{bottom:608.350586pt;}
.y22{bottom:610.538667pt;}
.yeb{bottom:613.021172pt;}
.y56{bottom:613.354786pt;}
.y25c{bottom:614.689239pt;}
.y205{bottom:614.979906pt;}
.y16a{bottom:616.023692pt;}
.y23c{bottom:616.647972pt;}
.y1c8{bottom:617.982426pt;}
.ya4{bottom:618.358986pt;}
.y190{bottom:618.983266pt;}
.yc9{bottom:619.026212pt;}
.y11{bottom:620.974667pt;}
.y171{bottom:626.032092pt;}
.y204{bottom:629.018355pt;}
.y24f{bottom:629.685581pt;}
.y55{bottom:630.395755pt;}
.y166{bottom:630.686421pt;}
.y123{bottom:631.353648pt;}
.y25b{bottom:631.730208pt;}
.y169{bottom:633.064661pt;}
.y1c7{bottom:635.357008pt;}
.y23b{bottom:635.690621pt;}
.y18f{bottom:636.024235pt;}
.yc8{bottom:636.067181pt;}
.y10{bottom:636.914667pt;}
.y21{bottom:638.082667pt;}
.y203{bottom:643.030115pt;}
.y170{bottom:643.406675pt;}
.yea{bottom:647.410035pt;}
.y54{bottom:647.743648pt;}
.y25a{bottom:648.744488pt;}
.y1c6{bottom:652.371288pt;}
.yf{bottom:652.854667pt;}
.y18e{bottom:653.038515pt;}
.ya3{bottom:653.081461pt;}
.y23a{bottom:655.040195pt;}
.y122{bottom:656.708261pt;}
.y202{bottom:657.041875pt;}
.y16f{bottom:660.420955pt;}
.ye9{bottom:664.424315pt;}
.y53{bottom:664.757928pt;}
.ye{bottom:668.796000pt;}
.y1c5{bottom:669.385568pt;}
.ya2{bottom:670.095741pt;}
.y18d{bottom:670.386408pt;}
.yc7{bottom:670.429355pt;}
.y201{bottom:671.053635pt;}
.y239{bottom:675.056995pt;}
.y168{bottom:676.768008pt;}
.ye8{bottom:681.438595pt;}
.y52{bottom:681.772208pt;}
.y121{bottom:682.062875pt;}
.y24d{bottom:683.397328pt;}
.yd{bottom:684.736000pt;}
.y200{bottom:685.065395pt;}
.y259{bottom:685.108341pt;}
.y20{bottom:685.812000pt;}
.y1c4{bottom:686.399848pt;}
.ya1{bottom:687.110021pt;}
.y18c{bottom:687.400688pt;}
.yc6{bottom:687.443635pt;}
.y162{bottom:689.445315pt;}
.y16e{bottom:689.778928pt;}
.y238{bottom:695.407408pt;}
.y51{bottom:698.786488pt;}
.y1ff{bottom:699.077155pt;}
.yc{bottom:700.676000pt;}
.y1c3{bottom:703.414128pt;}
.ya0{bottom:704.124301pt;}
.y18b{bottom:704.414968pt;}
.yc5{bottom:704.457915pt;}
.y120{bottom:707.417488pt;}
.y1fe{bottom:713.088915pt;}
.y237{bottom:714.756981pt;}
.y50{bottom:716.134381pt;}
.yb{bottom:716.616000pt;}
.y14a{bottom:718.136061pt;}
.y1c2{bottom:720.428408pt;}
.y18a{bottom:721.429248pt;}
.y9f{bottom:721.472195pt;}
.y1f{bottom:725.476000pt;}
.y1fd{bottom:727.434288pt;}
.y4f{bottom:733.148661pt;}
.y11f{bottom:734.106555pt;}
.y236{bottom:734.773781pt;}
.y1c1{bottom:737.442688pt;}
.y189{bottom:738.470217pt;}
.y9e{bottom:738.526508pt;}
.yc4{bottom:738.846777pt;}
.y258{bottom:739.514004pt;}
.y1fc{bottom:741.472737pt;}
.y4e{bottom:750.189630pt;}
.y85{bottom:752.191310pt;}
.ya{bottom:752.740000pt;}
.y235{bottom:754.150044pt;}
.y1c0{bottom:754.483657pt;}
.y188{bottom:755.484497pt;}
.y9d{bottom:755.527444pt;}
.yc3{bottom:755.861057pt;}
.y24c{bottom:760.211375pt;}
.y1e{bottom:765.141333pt;}
.y4d{bottom:767.203910pt;}
.y9{bottom:768.680000pt;}
.y1fb{bottom:769.496257pt;}
.y1bf{bottom:771.497937pt;}
.y186{bottom:772.498777pt;}
.y9c{bottom:772.541724pt;}
.yc2{bottom:772.875337pt;}
.y234{bottom:773.166004pt;}
.y24a{bottom:776.502137pt;}
.y1fa{bottom:783.508017pt;}
.y4c{bottom:784.551804pt;}
.y1ed{bottom:788.221550pt;}
.y1be{bottom:788.512217pt;}
.y11e{bottom:788.888777pt;}
.y185{bottom:789.513057pt;}
.y84{bottom:789.889617pt;}
.y233{bottom:792.515577pt;}
.y1f9{bottom:797.519777pt;}
.y257{bottom:801.523137pt;}
.y4b{bottom:801.566084pt;}
.y8{bottom:804.805333pt;}
.y11d{bottom:805.192884pt;}
.y1bd{bottom:805.526497pt;}
.y184{bottom:806.527337pt;}
.y9b{bottom:806.903897pt;}
.y83{bottom:807.237510pt;}
.y1f8{bottom:811.531537pt;}
.y4a{bottom:818.580364pt;}
.y1bc{bottom:822.540777pt;}
.y1ec{bottom:822.917337pt;}
.y183{bottom:823.541617pt;}
.y9a{bottom:823.918177pt;}
.y82{bottom:824.251790pt;}
.y248{bottom:824.555802pt;}
.y1f7{bottom:825.543297pt;}
.y255{bottom:827.558322pt;}
.y11b{bottom:830.560842pt;}
.y232{bottom:831.895295pt;}
.y38{bottom:834.533867pt;}
.y49{bottom:835.928257pt;}
.y1bb{bottom:839.568402pt;}
.y181{bottom:840.569242pt;}
.y81{bottom:841.266070pt;}
.y247{bottom:851.605171pt;}
.y231{bottom:852.272397pt;}
.y48{bottom:852.982571pt;}
.y1f6{bottom:853.606851pt;}
.y11a{bottom:856.275757pt;}
.y1ba{bottom:856.609371pt;}
.y180{bottom:857.610211pt;}
.y99{bottom:858.320384pt;}
.y80{bottom:858.653997pt;}
.y1f5{bottom:867.618611pt;}
.y47{bottom:869.996851pt;}
.y230{bottom:872.289197pt;}
.y1b9{bottom:873.623651pt;}
.y17f{bottom:874.624491pt;}
.y98{bottom:875.334664pt;}
.y7f{bottom:875.668277pt;}
.y244{bottom:878.627851pt;}
.y119{bottom:881.630371pt;}
.y46{bottom:887.011131pt;}
.y1b8{bottom:890.637931pt;}
.y17e{bottom:891.638771pt;}
.y22f{bottom:892.639611pt;}
.y7e{bottom:892.682557pt;}
.y1f4{bottom:895.642131pt;}
.y254{bottom:900.646331pt;}
.y45{bottom:904.359024pt;}
.ye7{bottom:906.360704pt;}
.y118{bottom:906.984984pt;}
.y1b7{bottom:907.985824pt;}
.y17d{bottom:908.653051pt;}
.y1f3{bottom:909.653891pt;}
.y7d{bottom:909.696837pt;}
.y22e{bottom:912.990024pt;}
.y44{bottom:921.373304pt;}
.y1f2{bottom:923.665651pt;}
.y1b6{bottom:925.000104pt;}
.y22b{bottom:925.376664pt;}
.y17b{bottom:925.667331pt;}
.y7c{bottom:927.044731pt;}
.y253{bottom:927.669011pt;}
.y117{bottom:933.340437pt;}
.y1f1{bottom:937.677411pt;}
.y43{bottom:938.387584pt;}
.y1b5{bottom:942.014384pt;}
.y17a{bottom:943.015224pt;}
.y7b{bottom:944.059011pt;}
.y243{bottom:945.393464pt;}
.y1f0{bottom:952.022784pt;}
.y22d{bottom:953.690851pt;}
.y42{bottom:955.401864pt;}
.y7{bottom:955.908000pt;}
.y1b3{bottom:959.028664pt;}
.y179{bottom:960.056193pt;}
.y7a{bottom:961.099980pt;}
.y242{bottom:962.434433pt;}
.y1ef{bottom:966.061233pt;}
.y22a{bottom:968.773086pt;}
.y22c{bottom:973.734340pt;}
.y1b2{bottom:976.069633pt;}
.y177{bottom:977.070473pt;}
.y79{bottom:978.114260pt;}
.y241{bottom:979.448713pt;}
.y1ee{bottom:980.072993pt;}
.y229{bottom:985.077193pt;}
.y41{bottom:991.792406pt;}
.y164{bottom:992.416686pt;}
.y1b1{bottom:993.083913pt;}
.y78{bottom:995.462153pt;}
.y6{bottom:997.508000pt;}
.y16c{bottom:998.088113pt;}
.y228{bottom:999.088953pt;}
.y1b0{bottom:1010.098193pt;}
.y154{bottom:1010.474753pt;}
.y16d{bottom:1010.808366pt;}
.y240{bottom:1012.142820pt;}
.y77{bottom:1012.476433pt;}
.y227{bottom:1013.100713pt;}
.y75{bottom:1050.297333pt;}
.h32{height:12.997575pt;}
.h2d{height:13.010920pt;}
.h31{height:13.030937pt;}
.h33{height:13.044281pt;}
.h30{height:13.344533pt;}
.h34{height:13.364550pt;}
.h3b{height:18.348733pt;}
.h3d{height:18.382095pt;}
.h36{height:18.682347pt;}
.h3c{height:18.715708pt;}
.h39{height:19.349573pt;}
.h37{height:19.382935pt;}
.h38{height:19.683187pt;}
.h3a{height:19.703203pt;}
.h2b{height:22.685707pt;}
.h29{height:23.019320pt;}
.h20{height:25.354613pt;}
.h22{height:25.387975pt;}
.h27{height:25.688227pt;}
.h25{height:25.708243pt;}
.h1e{height:25.721588pt;}
.h3f{height:26.021840pt;}
.h40{height:26.041857pt;}
.h11{height:32.964334pt;}
.h2f{height:37.343842pt;}
.ha{height:37.835131pt;}
.h4{height:39.133093pt;}
.h8{height:39.478463pt;}
.h5{height:39.850400pt;}
.h9{height:41.205314pt;}
.h2e{height:42.473147pt;}
.h1d{height:45.120038pt;}
.h41{height:47.039480pt;}
.h44{height:47.059497pt;}
.h43{height:47.072841pt;}
.h3e{height:47.373093pt;}
.h42{height:47.393110pt;}
.h13{height:47.961667pt;}
.h12{height:47.967000pt;}
.h2{height:48.759067pt;}
.h18{height:50.296875pt;}
.h15{height:50.781250pt;}
.h17{height:51.304688pt;}
.h3{height:53.634973pt;}
.h1b{height:55.746006pt;}
.h24{height:55.910206pt;}
.hf{height:57.384800pt;}
.h1c{height:57.388009pt;}
.h28{height:57.626491pt;}
.h35{height:58.572597pt;}
.h2c{height:59.174665pt;}
.he{height:59.335883pt;}
.h23{height:60.120772pt;}
.h16{height:60.213542pt;}
.h1f{height:62.865262pt;}
.h2a{height:63.709721pt;}
.h26{height:63.897379pt;}
.h21{height:64.554180pt;}
.h1a{height:65.586296pt;}
.h7{height:68.218892pt;}
.hc{height:74.527980pt;}
.h10{height:81.862749pt;}
.hd{height:83.159029pt;}
.hb{height:98.235695pt;}
.h14{height:111.178400pt;}
.h6{height:194.928939pt;}
.h19{height:1121.941640pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.we{width:43.036120pt;}
.wf{width:43.069481pt;}
.w1e{width:57.715107pt;}
.w20{width:60.050400pt;}
.wc{width:68.090481pt;}
.w1c{width:70.425775pt;}
.w8{width:72.093841pt;}
.wa{width:75.763588pt;}
.wd{width:76.097201pt;}
.w1d{width:77.431655pt;}
.w1f{width:77.765268pt;}
.w9{width:83.436695pt;}
.w4{width:90.475936pt;}
.w10{width:92.777868pt;}
.w18{width:108.457695pt;}
.w11{width:110.159123pt;}
.w5{width:115.129961pt;}
.w19{width:121.835589pt;}
.w16{width:122.169203pt;}
.w12{width:130.175923pt;}
.w6{width:138.182643pt;}
.w17{width:139.517096pt;}
.w13{width:147.857429pt;}
.w1a{width:156.197763pt;}
.w1b{width:156.531376pt;}
.w15{width:159.533896pt;}
.w14{width:166.206163pt;}
.w3{width:223.921269pt;}
.wb{width:232.955518pt;}
.w7{width:234.289972pt;}
.w2{width:580.983604pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:1.000840pt;}
.x69{left:6.338653pt;}
.x25{left:7.339493pt;}
.x40{left:8.673947pt;}
.x56{left:9.674787pt;}
.x37{left:13.010920pt;}
.x74{left:18.348733pt;}
.x39{left:19.683187pt;}
.x6f{left:22.338749pt;}
.x1c{left:25.217332pt;}
.x3b{left:27.676562pt;}
.x42{left:28.677402pt;}
.x76{left:30.025200pt;}
.x27{left:31.066074pt;}
.x1{left:32.994201pt;}
.x3e{left:34.362173pt;}
.x75{left:35.363013pt;}
.x6d{left:36.363853pt;}
.x5{left:37.785333pt;}
.x3c{left:38.699147pt;}
.x3d{left:42.368893pt;}
.x6c{left:44.704187pt;}
.x18{left:46.450667pt;}
.xd{left:47.633333pt;}
.xc{left:49.034667pt;}
.xb{left:49.957333pt;}
.x15{left:53.228000pt;}
.x29{left:54.378973pt;}
.x2c{left:57.087914pt;}
.x1f{left:58.205333pt;}
.xe{left:64.894667pt;}
.x10{left:67.385333pt;}
.xf{left:71.105333pt;}
.x2d{left:81.775300pt;}
.x19{left:83.730667pt;}
.x2b{left:89.101449pt;}
.x17{left:91.042667pt;}
.x7{left:93.586667pt;}
.x1e{left:95.966001pt;}
.x61{left:97.967681pt;}
.x5e{left:99.302135pt;}
.x2f{left:100.444302pt;}
.x45{left:103.639108pt;}
.x2e{left:104.781276pt;}
.x34{left:106.975241pt;}
.x12{left:109.368000pt;}
.x51{left:112.313055pt;}
.x31{left:114.648348pt;}
.x13{left:116.653333pt;}
.x48{left:118.017843pt;}
.x11{left:120.226667pt;}
.x23{left:122.354816pt;}
.x22{left:124.022883pt;}
.x5a{left:129.027083pt;}
.x60{left:130.361536pt;}
.x3{left:132.609333pt;}
.x16{left:134.189333pt;}
.x44{left:135.365736pt;}
.x33{left:138.368256pt;}
.x6b{left:140.703549pt;}
.x2{left:141.892000pt;}
.x9{left:145.817333pt;}
.x14{left:146.840000pt;}
.x5f{left:152.046403pt;}
.x8{left:159.460000pt;}
.x52{left:162.388416pt;}
.x4{left:165.944000pt;}
.x70{left:168.727069pt;}
.x58{left:175.399336pt;}
.xa{left:177.373333pt;}
.x63{left:192.747229pt;}
.x35{left:199.459530pt;}
.x5d{left:200.460370pt;}
.x4c{left:206.131796pt;}
.x49{left:216.473810pt;}
.x65{left:221.144396pt;}
.x66{left:224.480530pt;}
.x67{left:236.824223pt;}
.x5b{left:238.158676pt;}
.x50{left:243.162876pt;}
.x1b{left:252.266667pt;}
.x1a{left:253.230667pt;}
.x32{left:277.551739pt;}
.x4b{left:288.560979pt;}
.x24{left:308.911392pt;}
.x20{left:325.258445pt;}
.x4f{left:326.926512pt;}
.x4a{left:331.263485pt;}
.x68{left:345.942472pt;}
.x26{left:348.277765pt;}
.x1d{left:354.950032pt;}
.x77{left:359.994266pt;}
.x46{left:361.328719pt;}
.x3f{left:370.669892pt;}
.x36{left:372.004346pt;}
.x21{left:373.005186pt;}
.x54{left:374.339639pt;}
.x71{left:377.675772pt;}
.x4d{left:379.677452pt;}
.x5c{left:407.700972pt;}
.x64{left:410.036266pt;}
.x28{left:438.753701pt;}
.x38{left:444.091515pt;}
.x72{left:448.094875pt;}
.x6a{left:468.445288pt;}
.x57{left:498.470488pt;}
.x6e{left:520.862615pt;}
.x41{left:522.197068pt;}
.x73{left:525.866815pt;}
.x3a{left:527.534882pt;}
.x55{left:545.883615pt;}
.x2a{left:553.890335pt;}
.x59{left:560.549257pt;}
.x53{left:562.564282pt;}
.x6{left:588.846667pt;}
.x47{left:604.292637pt;}
.x4e{left:649.997664pt;}
.x30{left:682.051233pt;}
.x43{left:685.387366pt;}
}




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