
    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_727f0fcd65e493aa0a46c14c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_8f577325be7be4e9c0f4b036.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_09e2d9b8b169a18ebdf136e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_55013651080021e9b28591ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_ad29c1067455c70344a7f7a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_c597db63286967b19f1d8c17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_f26dbf7c1e80aa1354372b40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_902cbcac7bba1cbb5382e13c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.001826px;}
.v2{vertical-align:-1.497614px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.060000px;}
.ls1b{letter-spacing:-2.065608px;}
.ls4f{letter-spacing:-1.511420px;}
.ls39{letter-spacing:-0.983016px;}
.ls35{letter-spacing:-0.844470px;}
.ls36{letter-spacing:-0.738911px;}
.ls38{letter-spacing:-0.732314px;}
.ls58{letter-spacing:-0.712521px;}
.ls37{letter-spacing:-0.705924px;}
.ls2c{letter-spacing:-0.611767px;}
.ls47{letter-spacing:-0.545793px;}
.ls2b{letter-spacing:-0.527794px;}
.ls64{letter-spacing:-0.521196px;}
.ls13{letter-spacing:-0.503807px;}
.lsf{letter-spacing:-0.489412px;}
.ls12{letter-spacing:-0.482215px;}
.ls7a{letter-spacing:-0.467821px;}
.ls14{letter-spacing:-0.448625px;}
.ls9{letter-spacing:-0.431833px;}
.ls50{letter-spacing:-0.422235px;}
.ls2d{letter-spacing:-0.413843px;}
.ls54{letter-spacing:-0.407845px;}
.ls2e{letter-spacing:-0.389852px;}
.ls53{letter-spacing:-0.383854px;}
.ls48{letter-spacing:-0.377856px;}
.ls65{letter-spacing:-0.371859px;}
.ls3a{letter-spacing:-0.365861px;}
.ls59{letter-spacing:-0.336468px;}
.ls3b{letter-spacing:-0.317879px;}
.ls7b{letter-spacing:-0.283689px;}
.ls57{letter-spacing:-0.277092px;}
.ls7c{letter-spacing:-0.217715px;}
.ls51{letter-spacing:-0.158338px;}
.ls7{letter-spacing:-0.124752px;}
.ls23{letter-spacing:-0.118754px;}
.ls33{letter-spacing:-0.112156px;}
.ls25{letter-spacing:-0.098961px;}
.ls22{letter-spacing:-0.079169px;}
.ls24{letter-spacing:-0.059377px;}
.ls34{letter-spacing:-0.052779px;}
.ls44{letter-spacing:-0.039585px;}
.ls27{letter-spacing:-0.026390px;}
.ls71{letter-spacing:-0.021592px;}
.ls63{letter-spacing:-0.013195px;}
.ls49{letter-spacing:-0.007197px;}
.ls5{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.006597px;}
.ls67{letter-spacing:0.013195px;}
.ls5a{letter-spacing:0.017993px;}
.ls1c{letter-spacing:0.021592px;}
.ls43{letter-spacing:0.028789px;}
.ls77{letter-spacing:0.035986px;}
.ls0{letter-spacing:0.046782px;}
.ls55{letter-spacing:0.059377px;}
.ls74{letter-spacing:0.071972px;}
.ls75{letter-spacing:0.086367px;}
.ls73{letter-spacing:0.115156px;}
.ls3{letter-spacing:0.131949px;}
.ls1{letter-spacing:0.143944px;}
.ls1f{letter-spacing:0.171533px;}
.ls3c{letter-spacing:0.172734px;}
.ls41{letter-spacing:0.178130px;}
.ls6b{letter-spacing:0.194325px;}
.ls4a{letter-spacing:0.197923px;}
.ls70{letter-spacing:0.208720px;}
.ls76{letter-spacing:0.215917px;}
.ls2a{letter-spacing:0.217715px;}
.ls31{letter-spacing:0.250702px;}
.ls1d{letter-spacing:0.251903px;}
.ls78{letter-spacing:0.259101px;}
.ls6c{letter-spacing:0.273495px;}
.ls2{letter-spacing:0.277093px;}
.ls16{letter-spacing:0.280692px;}
.ls79{letter-spacing:0.287890px;}
.ls6f{letter-spacing:0.302284px;}
.ls15{letter-spacing:0.316679px;}
.ls6e{letter-spacing:0.331073px;}
.ls6{letter-spacing:0.335870px;}
.ls29{letter-spacing:0.336468px;}
.ls17{letter-spacing:0.352665px;}
.ls11{letter-spacing:0.381454px;}
.ls19{letter-spacing:0.395848px;}
.lsc{letter-spacing:0.403045px;}
.ls68{letter-spacing:0.410243px;}
.lsd{letter-spacing:0.417440px;}
.lse{letter-spacing:0.424637px;}
.ls18{letter-spacing:0.431834px;}
.ls3d{letter-spacing:0.439032px;}
.ls3e{letter-spacing:0.446229px;}
.ls10{letter-spacing:0.453426px;}
.ls6a{letter-spacing:0.460623px;}
.ls1a{letter-spacing:0.482215px;}
.ls72{letter-spacing:0.496610px;}
.ls6d{letter-spacing:0.503807px;}
.ls8{letter-spacing:0.518199px;}
.ls7e{letter-spacing:0.534391px;}
.ls28{letter-spacing:0.587170px;}
.ls26{letter-spacing:0.593768px;}
.lsa{letter-spacing:0.662143px;}
.ls32{letter-spacing:0.679534px;}
.ls4b{letter-spacing:0.686132px;}
.ls7d{letter-spacing:0.705924px;}
.ls21{letter-spacing:0.712521px;}
.ls30{letter-spacing:0.719119px;}
.ls56{letter-spacing:0.752106px;}
.ls46{letter-spacing:0.791690px;}
.ls52{letter-spacing:0.976418px;}
.ls45{letter-spacing:1.596576px;}
.ls69{letter-spacing:201.006431px;}
.ls3f{letter-spacing:265.602431px;}
.ls4d{letter-spacing:283.220643px;}
.ls42{letter-spacing:283.590431px;}
.ls4e{letter-spacing:298.216579px;}
.ls62{letter-spacing:334.139531px;}
.ls5c{letter-spacing:341.642372px;}
.ls5b{letter-spacing:352.132709px;}
.ls66{letter-spacing:352.137293px;}
.ls5e{letter-spacing:359.635772px;}
.ls20{letter-spacing:359.691338px;}
.ls61{letter-spacing:362.630372px;}
.ls4c{letter-spacing:371.685448px;}
.ls40{letter-spacing:372.060431px;}
.ls5f{letter-spacing:374.630372px;}
.ls60{letter-spacing:430.283732px;}
.ls5d{letter-spacing:448.100372px;}
.ls1e{letter-spacing:448.274897px;}
.ls4{letter-spacing:837.438567px;}
.lsb{letter-spacing:849.200110px;}
.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;}
}
.ws23{word-spacing:-65.974200px;}
.ws59{word-spacing:-65.525575px;}
.wsce{word-spacing:-20.468951px;}
.ws53{word-spacing:-20.461753px;}
.wsbe{word-spacing:-20.447359px;}
.wsc5{word-spacing:-20.425767px;}
.wsc9{word-spacing:-20.411373px;}
.wsc7{word-spacing:-20.339400px;}
.ws5a{word-spacing:-20.029919px;}
.wscd{word-spacing:-20.008327px;}
.wsca{word-spacing:-19.986735px;}
.ws91{word-spacing:-19.937403px;}
.wsc6{word-spacing:-19.518915px;}
.ws73{word-spacing:-19.059946px;}
.ws90{word-spacing:-19.053349px;}
.wse0{word-spacing:-19.046752px;}
.ws64{word-spacing:-18.934595px;}
.wsa5{word-spacing:-18.927998px;}
.wse1{word-spacing:-18.875219px;}
.wsad{word-spacing:-18.677296px;}
.ws9e{word-spacing:-18.538750px;}
.wsa4{word-spacing:-18.400204px;}
.wsa3{word-spacing:-18.340828px;}
.wsdf{word-spacing:-18.123113px;}
.wsdd{word-spacing:-18.057139px;}
.wsa2{word-spacing:-17.918593px;}
.wsac{word-spacing:-17.819631px;}
.ws65{word-spacing:-17.813034px;}
.ws75{word-spacing:-17.634904px;}
.wsde{word-spacing:-17.628306px;}
.ws74{word-spacing:-17.496358px;}
.ws76{word-spacing:-17.357812px;}
.ws92{word-spacing:-16.127869px;}
.ws66{word-spacing:-16.061894px;}
.ws51{word-spacing:-5.441113px;}
.ws30{word-spacing:-5.433916px;}
.ws63{word-spacing:-5.426719px;}
.ws48{word-spacing:-5.419522px;}
.ws98{word-spacing:-5.369141px;}
.ws54{word-spacing:-3.936890px;}
.ws25{word-spacing:-3.929693px;}
.ws56{word-spacing:-3.922496px;}
.ws4c{word-spacing:-3.908101px;}
.ws84{word-spacing:-3.893707px;}
.ws34{word-spacing:-3.814537px;}
.ws33{word-spacing:-3.792945px;}
.ws88{word-spacing:-2.425470px;}
.ws20{word-spacing:-2.418273px;}
.ws55{word-spacing:-2.411075px;}
.ws31{word-spacing:-2.403878px;}
.ws87{word-spacing:-2.396681px;}
.ws2d{word-spacing:-2.382286px;}
.wsc2{word-spacing:-2.022424px;}
.ws86{word-spacing:-1.511420px;}
.ws81{word-spacing:-1.029198px;}
.ws80{word-spacing:-0.996210px;}
.ws52{word-spacing:-0.978825px;}
.ws8a{word-spacing:-0.950036px;}
.wsa{word-spacing:-0.942838px;}
.ws8e{word-spacing:-0.935641px;}
.ws8d{word-spacing:-0.928444px;}
.ws3e{word-spacing:-0.921247px;}
.ws3c{word-spacing:-0.914049px;}
.wsc{word-spacing:-0.906852px;}
.ws1f{word-spacing:-0.899655px;}
.ws1c{word-spacing:-0.892458px;}
.ws12{word-spacing:-0.885261px;}
.ws36{word-spacing:-0.878063px;}
.wsd7{word-spacing:-0.870866px;}
.ws15{word-spacing:-0.863669px;}
.ws10{word-spacing:-0.856472px;}
.ws19{word-spacing:-0.849274px;}
.ws42{word-spacing:-0.842077px;}
.ws4e{word-spacing:-0.827683px;}
.wsd0{word-spacing:-0.820485px;}
.ws2f{word-spacing:-0.806091px;}
.wscb{word-spacing:-0.791696px;}
.wse{word-spacing:-0.784499px;}
.wsdb{word-spacing:-0.762907px;}
.wsdc{word-spacing:-0.748513px;}
.ws24{word-spacing:-0.726921px;}
.wsd9{word-spacing:-0.712527px;}
.wsc8{word-spacing:-0.705330px;}
.wsd6{word-spacing:-0.690935px;}
.wsd5{word-spacing:-0.683738px;}
.wsda{word-spacing:-0.676541px;}
.ws9{word-spacing:-0.662143px;}
.ws4d{word-spacing:-0.633357px;}
.wsd1{word-spacing:-0.604568px;}
.wsb1{word-spacing:-0.597371px;}
.ws3a{word-spacing:-0.568582px;}
.ws7f{word-spacing:-0.567378px;}
.wsd4{word-spacing:-0.525399px;}
.ws7{word-spacing:-0.518199px;}
.wsd8{word-spacing:-0.496610px;}
.wscc{word-spacing:-0.489412px;}
.ws5{word-spacing:-0.335870px;}
.ws7d{word-spacing:-0.323274px;}
.ws3{word-spacing:-0.277093px;}
.ws93{word-spacing:-0.277092px;}
.wsb2{word-spacing:-0.270494px;}
.wsae{word-spacing:-0.263897px;}
.ws6e{word-spacing:-0.257299px;}
.ws2b{word-spacing:-0.237509px;}
.ws9f{word-spacing:-0.217715px;}
.ws7c{word-spacing:-0.204520px;}
.ws6d{word-spacing:-0.184728px;}
.ws2{word-spacing:-0.143944px;}
.ws4{word-spacing:-0.131949px;}
.ws1d{word-spacing:-0.079170px;}
.wsa8{word-spacing:-0.065975px;}
.ws1{word-spacing:-0.046782px;}
.wsd3{word-spacing:-0.014394px;}
.ws18{word-spacing:-0.007197px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.006597px;}
.ws6f{word-spacing:0.039585px;}
.wsd2{word-spacing:0.050381px;}
.wsa0{word-spacing:0.085766px;}
.ws6{word-spacing:0.124752px;}
.ws83{word-spacing:0.149943px;}
.ws1a{word-spacing:0.158339px;}
.ws1b{word-spacing:0.172734px;}
.ws11{word-spacing:0.215917px;}
.wsb5{word-spacing:0.299886px;}
.ws82{word-spacing:0.317879px;}
.ws94{word-spacing:0.329875px;}
.wsb0{word-spacing:0.341870px;}
.wsa1{word-spacing:0.365861px;}
.ws71{word-spacing:0.383854px;}
.ws72{word-spacing:0.389852px;}
.wsbb{word-spacing:0.395850px;}
.ws8{word-spacing:0.431833px;}
.ws13{word-spacing:0.503807px;}
.wsbf{word-spacing:0.525399px;}
.ws21{word-spacing:0.532596px;}
.ws5c{word-spacing:0.539793px;}
.ws35{word-spacing:0.546990px;}
.ws7a{word-spacing:0.554187px;}
.wsd{word-spacing:0.935641px;}
.wsb{word-spacing:1.050797px;}
.wscf{word-spacing:1.057994px;}
.wsf{word-spacing:1.065192px;}
.wsc3{word-spacing:1.439448px;}
.ws16{word-spacing:1.604985px;}
.ws17{word-spacing:1.698549px;}
.ws9a{word-spacing:2.029622px;}
.ws5e{word-spacing:2.036819px;}
.ws43{word-spacing:2.044016px;}
.ws9d{word-spacing:2.051213px;}
.ws49{word-spacing:2.058411px;}
.ws44{word-spacing:2.065608px;}
.ws41{word-spacing:2.072805px;}
.ws14{word-spacing:2.209553px;}
.ws9c{word-spacing:2.396681px;}
.wsc1{word-spacing:3.476267px;}
.ws45{word-spacing:3.483464px;}
.ws32{word-spacing:3.490661px;}
.ws95{word-spacing:3.497859px;}
.ws26{word-spacing:3.505056px;}
.wsb6{word-spacing:3.512253px;}
.wsa9{word-spacing:3.519450px;}
.ws47{word-spacing:4.994885px;}
.ws85{word-spacing:5.002082px;}
.ws99{word-spacing:5.009279px;}
.ws40{word-spacing:5.016476px;}
.ws2e{word-spacing:5.045265px;}
.ws2c{word-spacing:6.506305px;}
.ws96{word-spacing:6.513502px;}
.ws9b{word-spacing:6.520699px;}
.wsaa{word-spacing:6.535094px;}
.wsbc{word-spacing:8.010528px;}
.ws28{word-spacing:8.017725px;}
.ws22{word-spacing:8.024923px;}
.wsab{word-spacing:8.039317px;}
.ws6c{word-spacing:8.147276px;}
.ws6b{word-spacing:8.183262px;}
.ws67{word-spacing:8.924578px;}
.ws5b{word-spacing:9.485962px;}
.ws29{word-spacing:9.529146px;}
.ws78{word-spacing:9.543540px;}
.ws8b{word-spacing:9.557935px;}
.ws61{word-spacing:9.565132px;}
.ws3d{word-spacing:11.026172px;}
.ws4b{word-spacing:11.040566px;}
.wsb8{word-spacing:12.472817px;}
.ws3b{word-spacing:12.480014px;}
.ws8c{word-spacing:12.494409px;}
.ws6a{word-spacing:12.508803px;}
.ws1e{word-spacing:13.991435px;}
.wsbd{word-spacing:13.998632px;}
.ws97{word-spacing:14.027421px;}
.ws4a{word-spacing:15.502855px;}
.ws50{word-spacing:15.510052px;}
.ws46{word-spacing:15.517249px;}
.ws27{word-spacing:17.014275px;}
.ws79{word-spacing:17.021473px;}
.ws58{word-spacing:17.431715px;}
.wsa6{word-spacing:18.525696px;}
.wsb7{word-spacing:18.540090px;}
.ws69{word-spacing:18.554485px;}
.ws4f{word-spacing:20.037116px;}
.ws39{word-spacing:21.476564px;}
.ws68{word-spacing:21.483761px;}
.wsc0{word-spacing:22.987985px;}
.ws3f{word-spacing:22.995182px;}
.ws60{word-spacing:26.010825px;}
.wsc4{word-spacing:26.046812px;}
.ws38{word-spacing:26.917678px;}
.ws7b{word-spacing:27.515049px;}
.ws77{word-spacing:27.522246px;}
.ws89{word-spacing:27.558232px;}
.ws8f{word-spacing:29.033666px;}
.ws5f{word-spacing:30.465917px;}
.ws5d{word-spacing:30.473114px;}
.ws2a{word-spacing:31.379966px;}
.ws37{word-spacing:31.984535px;}
.ws57{word-spacing:35.007375px;}
.ws62{word-spacing:36.518796px;}
.wsaf{word-spacing:296.019638px;}
.wsb3{word-spacing:306.509536px;}
.wsa7{word-spacing:319.968273px;}
.wsb9{word-spacing:325.998314px;}
.ws70{word-spacing:336.448628px;}
.wsb4{word-spacing:345.434314px;}
.wsba{word-spacing:381.416642px;}
._18{margin-left:-74.274322px;}
._16{margin-left:-56.305921px;}
._6{margin-left:-11.372322px;}
._4{margin-left:-2.774543px;}
._0{margin-left:-1.699746px;}
._1{width:1.138362px;}
._2{width:2.165180px;}
._3{width:3.267486px;}
._5{width:4.392912px;}
._8{width:9.629907px;}
._9{width:17.115037px;}
._7{width:27.551035px;}
._a{width:30.559481px;}
._11{width:283.330131px;}
._14{width:295.390495px;}
._12{width:319.498131px;}
._d{width:331.873160px;}
._b{width:338.992131px;}
._10{width:348.573737px;}
._e{width:358.398905px;}
._13{width:368.974131px;}
._f{width:377.241137px;}
._15{width:380.974131px;}
._c{width:385.207505px;}
._17{width:398.968131px;}
.fc6{color:rgb(51,51,51);}
.fc5{color:rgb(58,58,58);}
.fc4{color:rgb(107,107,107);}
.fc3{color:rgb(98,98,98);}
.fc2{color:rgb(85,85,85);}
.fc1{color:rgb(5,5,5);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.977200px;}
.fs0{font-size:65.974200px;}
.fs5{font-size:71.972400px;}
.fs4{font-size:95.962800px;}
.fs3{font-size:131.949000px;}
.fs2{font-size:143.944200px;}
.fs1{font-size:155.940000px;}
.y0{bottom:0.000000px;}
.y1a9{bottom:3.360415px;}
.yf5{bottom:4.873800px;}
.y114{bottom:4.873950px;}
.y1d8{bottom:6.027869px;}
.y1b8{bottom:6.370792px;}
.y100{bottom:6.372870px;}
.y15f{bottom:7.107133px;}
.y196{bottom:7.122277px;}
.y18e{bottom:7.122583px;}
.y1a6{bottom:12.355200px;}
.y1aa{bottom:12.355483px;}
.y208{bottom:14.993400px;}
.yf7{bottom:14.993981px;}
.y216{bottom:14.994600px;}
.y210{bottom:14.994750px;}
.y20a{bottom:15.023400px;}
.y1f2{bottom:15.354150px;}
.y1d5{bottom:15.369000px;}
.y1ce{bottom:15.369150px;}
.y20d{bottom:15.369750px;}
.y1df{bottom:15.370200px;}
.y1da{bottom:15.398850px;}
.y213{bottom:15.414600px;}
.y1b9{bottom:15.743400px;}
.y1dd{bottom:15.743850px;}
.y1d2{bottom:15.744000px;}
.y1f5{bottom:15.744150px;}
.y1ef{bottom:15.744300px;}
.y1fc{bottom:15.788850px;}
.y161{bottom:16.103850px;}
.y1ac{bottom:16.118700px;}
.y15b{bottom:16.118850px;}
.y158{bottom:16.119000px;}
.yfc{bottom:16.119150px;}
.yf9{bottom:16.119300px;}
.y1af{bottom:16.148550px;}
.y163{bottom:16.492350px;}
.y103{bottom:16.492500px;}
.y1b4{bottom:16.493400px;}
.y1b1{bottom:16.493550px;}
.y166{bottom:16.493700px;}
.y156{bottom:16.494000px;}
.y18c{bottom:16.494450px;}
.y190{bottom:16.524450px;}
.y1fe{bottom:16.538850px;}
.y207{bottom:20.991900px;}
.y1a3{bottom:21.727350px;}
.y1a8{bottom:21.727633px;}
.y118{bottom:21.771450px;}
.y18b{bottom:22.117950px;}
.y2c8{bottom:22.865400px;}
.y2bb{bottom:22.866000px;}
.y2ad{bottom:22.866300px;}
.y2d1{bottom:22.866450px;}
.y2a9{bottom:22.866600px;}
.y2cc{bottom:22.866750px;}
.y2c4{bottom:22.880700px;}
.y2ce{bottom:22.911600px;}
.y2c0{bottom:23.225700px;}
.y2c6{bottom:23.240550px;}
.y2c2{bottom:23.240700px;}
.y29c{bottom:23.240850px;}
.y2b1{bottom:23.241150px;}
.y2d3{bottom:23.241300px;}
.y2ab{bottom:23.241450px;}
.y2ca{bottom:23.270250px;}
.yf2{bottom:23.991300px;}
.y113{bottom:24.741450px;}
.y1b7{bottom:25.145400px;}
.y15e{bottom:25.474350px;}
.y195{bottom:25.474650px;}
.y18d{bottom:25.491450px;}
.y2d5{bottom:25.849650px;}
.y1d7{bottom:25.894350px;}
.y2bd{bottom:26.239500px;}
.yff{bottom:26.241000px;}
.y2af{bottom:26.614650px;}
.y1a4{bottom:30.724350px;}
.yf6{bottom:34.891800px;}
.y2b4{bottom:37.485000px;}
.y2b3{bottom:37.860000px;}
.y1a7{bottom:40.094850px;}
.y2b9{bottom:40.859850px;}
.y2b6{bottom:41.225850px;}
.y2b8{bottom:41.234550px;}
.y116{bottom:41.638950px;}
.y2a6{bottom:42.779950px;}
.yf3{bottom:44.637300px;}
.y112{bottom:44.982600px;}
.y2a1{bottom:45.762100px;}
.y2a3{bottom:45.776400px;}
.y2bf{bottom:53.213850px;}
.y299{bottom:53.260500px;}
.y2{bottom:58.490400px;}
.y29e{bottom:72.751200px;}
.y2a5{bottom:72.767250px;}
.y2a0{bottom:75.749400px;}
.y1a0{bottom:113.592550px;}
.y5b{bottom:113.596914px;}
.y201{bottom:114.340200px;}
.y1cc{bottom:114.714473px;}
.y2f2{bottom:119.964821px;}
.y284{bottom:122.587957px;}
.y2b5{bottom:124.087500px;}
.y74{bottom:128.209951px;}
.y13f{bottom:131.584975px;}
.ya9{bottom:140.580874px;}
.y23b{bottom:140.584473px;}
.y200{bottom:142.455110px;}
.y19f{bottom:143.579850px;}
.y152{bottom:147.704315px;}
.y18{bottom:151.459690px;}
.y283{bottom:152.958510px;}
.y5a{bottom:152.962218px;}
.y1cb{bottom:153.707320px;}
.y107{bottom:153.707850px;}
.ye3{bottom:158.566777px;}
.yc6{bottom:158.570375px;}
.y1ff{bottom:159.316200px;}
.y2f1{bottom:159.317530px;}
.y73{bottom:161.939261px;}
.y26d{bottom:161.940555px;}
.y13e{bottom:161.941134px;}
.y223{bottom:164.577765px;}
.y121{bottom:165.689355px;}
.y17d{bottom:170.579068px;}
.ya8{bottom:170.951428px;}
.y23a{bottom:170.955026px;}
.y251{bottom:170.956825px;}
.y1fb{bottom:173.560500px;}
.y19e{bottom:181.477350px;}
.y282{bottom:182.978198px;}
.y151{bottom:184.476684px;}
.y8a{bottom:186.348123px;}
.ye2{bottom:188.975116px;}
.yc5{bottom:188.978714px;}
.y1fd{bottom:189.349350px;}
.y106{bottom:190.100047px;}
.y26c{bottom:191.972838px;}
.y13d{bottom:191.973417px;}
.y59{bottom:191.976657px;}
.y17{bottom:192.347040px;}
.y1ca{bottom:193.097815px;}
.y222{bottom:194.597454px;}
.y72{bottom:195.721350px;}
.y120{bottom:195.721638px;}
.y2b2{bottom:197.971500px;}
.y2f0{bottom:198.348163px;}
.y17c{bottom:200.596957px;}
.ya7{bottom:200.969316px;}
.y239{bottom:200.972915px;}
.y250{bottom:200.974714px;}
.y19d{bottom:208.092263px;}
.y105{bottom:215.214000px;}
.y89{bottom:216.335424px;}
.y1f9{bottom:217.089000px;}
.ye1{bottom:218.962416px;}
.yc4{bottom:218.966015px;}
.y150{bottom:221.212768px;}
.y26b{bottom:222.337993px;}
.y281{bottom:222.338104px;}
.y13c{bottom:222.338573px;}
.y58{bottom:222.341813px;}
.y1c9{bottom:223.085115px;}
.y221{bottom:224.960810px;}
.y19c{bottom:224.960850px;}
.y102{bottom:229.834500px;}
.y17b{bottom:230.960313px;}
.ya6{bottom:231.332673px;}
.y24f{bottom:231.338070px;}
.y33{bottom:232.457241px;}
.y1fa{bottom:232.458000px;}
.y16{bottom:233.208000px;}
.y71{bottom:234.332122px;}
.y11f{bottom:235.081544px;}
.y2ef{bottom:237.708069px;}
.y19a{bottom:239.580000px;}
.y238{bottom:240.332821px;}
.y104{bottom:246.327000px;}
.y88{bottom:246.698780px;}
.ye0{bottom:249.327572px;}
.yc3{bottom:249.331170px;}
.y26a{bottom:252.325294px;}
.y280{bottom:252.325405px;}
.y57{bottom:252.329113px;}
.y1c8{bottom:253.450271px;}
.y220{bottom:254.948110px;}
.y19b{bottom:256.074000px;}
.y14f{bottom:257.572799px;}
.y1f7{bottom:260.197500px;}
.y17a{bottom:260.949413px;}
.ya5{bottom:261.319973px;}
.y13b{bottom:261.322423px;}
.y24e{bottom:261.325371px;}
.y70{bottom:264.697278px;}
.y11e{bottom:265.068844px;}
.y32{bottom:266.194304px;}
.y2ee{bottom:267.695369px;}
.y2b0{bottom:268.444500px;}
.yd4{bottom:270.318322px;}
.y237{bottom:270.320122px;}
.yfe{bottom:273.316500px;}
.y15{bottom:274.066095px;}
.y1f8{bottom:275.566500px;}
.y87{bottom:276.686080px;}
.ydf{bottom:279.314872px;}
.yc2{bottom:279.318471px;}
.y269{bottom:282.688650px;}
.y27f{bottom:282.688761px;}
.y56{bottom:282.692469px;}
.y1c7{bottom:283.437571px;}
.y198{bottom:284.562000px;}
.y21f{bottom:284.935411px;}
.y101{bottom:289.435650px;}
.y179{bottom:291.312769px;}
.ya4{bottom:291.685129px;}
.y13a{bottom:291.687579px;}
.y24d{bottom:291.690526px;}
.y14e{bottom:294.308883px;}
.y6f{bottom:294.684578px;}
.y11d{bottom:295.434000px;}
.y199{bottom:300.681150px;}
.yd3{bottom:300.681679px;}
.y236{bottom:300.683478px;}
.y1f4{bottom:303.351000px;}
.y2d6{bottom:304.084650px;}
.y31{bottom:305.973449px;}
.y86{bottom:306.720163px;}
.y2ed{bottom:306.726002px;}
.y55{bottom:312.724753px;}
.y1c6{bottom:313.469854px;}
.y14{bottom:314.955844px;}
.y21e{bottom:315.345549px;}
.yfb{bottom:316.470000px;}
.yde{bottom:318.719761px;}
.yc1{bottom:318.723360px;}
.y1f6{bottom:319.095150px;}
.y178{bottom:321.330658px;}
.y27e{bottom:321.703200px;}
.y268{bottom:321.703993px;}
.y139{bottom:321.705468px;}
.y24c{bottom:321.708415px;}
.y2ae{bottom:324.342000px;}
.y6e{bottom:324.702467px;}
.y2d4{bottom:328.840500px;}
.y194{bottom:329.590500px;}
.ya3{bottom:330.715761px;}
.y235{bottom:330.717560px;}
.y14d{bottom:331.074656px;}
.yfd{bottom:332.589150px;}
.y11c{bottom:334.824150px;}
.y85{bottom:337.083519px;}
.y2ec{bottom:337.089358px;}
.y54{bottom:342.712053px;}
.y1c5{bottom:343.833211px;}
.y30{bottom:344.942905px;}
.y21d{bottom:345.318455px;}
.y197{bottom:345.709650px;}
.y1f1{bottom:346.833000px;}
.ydd{bottom:348.692667px;}
.yc0{bottom:348.696266px;}
.y27d{bottom:351.690500px;}
.y267{bottom:351.691294px;}
.y138{bottom:351.692768px;}
.y177{bottom:351.694014px;}
.y6d{bottom:355.065823px;}
.y13{bottom:355.440150px;}
.yf8{bottom:359.953500px;}
.ya2{bottom:360.703062px;}
.y234{bottom:360.704861px;}
.y24b{bottom:360.708459px;}
.y1f3{bottom:362.187150px;}
.y14c{bottom:367.825584px;}
.yd2{bottom:369.701411px;}
.y11b{bottom:370.824692px;}
.y53{bottom:373.077209px;}
.y1c4{bottom:373.820511px;}
.y192{bottom:374.572500px;}
.y21c{bottom:375.681811px;}
.y84{bottom:376.069169px;}
.yfa{bottom:376.072800px;}
.y2eb{bottom:376.075008px;}
.ybf{bottom:378.683566px;}
.y293{bottom:381.679800px;}
.y176{bottom:381.681315px;}
.y27c{bottom:382.053856px;}
.y266{bottom:382.054650px;}
.y137{bottom:382.056124px;}
.y2ac{bottom:383.569500px;}
.y2f{bottom:383.942949px;}
.y6c{bottom:385.054923px;}
.y2d2{bottom:387.318000px;}
.ydc{bottom:387.692712px;}
.y1ee{bottom:389.941500px;}
.y193{bottom:390.691650px;}
.ya1{bottom:391.066418px;}
.y233{bottom:391.068217px;}
.y24a{bottom:391.071816px;}
.y12{bottom:392.177092px;}
.y11a{bottom:395.925150px;}
.yd1{bottom:400.064767px;}
.yf1{bottom:403.062000px;}
.y52{bottom:403.064509px;}
.y1c3{bottom:404.185667px;}
.y14b{bottom:404.187264px;}
.y21b{bottom:405.685305px;}
.y83{bottom:406.432525px;}
.y1f0{bottom:406.435800px;}
.y2ea{bottom:406.438364px;}
.ybe{bottom:409.061317px;}
.y115{bottom:410.559000px;}
.y27b{bottom:412.059150px;}
.y175{bottom:412.060865px;}
.y136{bottom:412.061418px;}
.y6b{bottom:415.432674px;}
.ydb{bottom:418.056068px;}
.y18f{bottom:419.181000px;}
.y292{bottom:420.679800px;}
.ya0{bottom:421.053718px;}
.y232{bottom:421.055518px;}
.y265{bottom:421.056698px;}
.y249{bottom:421.059116px;}
.y2e{bottom:423.302856px;}
.y11{bottom:426.677796px;}
.yf4{bottom:427.803300px;}
.yd0{bottom:430.052068px;}
.y119{bottom:432.330450px;}
.y51{bottom:433.458454px;}
.y1c2{bottom:434.203555px;}
.y191{bottom:435.705450px;}
.y82{bottom:436.450414px;}
.y2e9{bottom:436.456253px;}
.y2aa{bottom:439.078500px;}
.y174{bottom:442.078753px;}
.y14a{bottom:442.456511px;}
.y2d0{bottom:443.202000px;}
.y21a{bottom:445.075800px;}
.y6a{bottom:445.450563px;}
.yda{bottom:448.073956px;}
.ybd{bottom:448.075756px;}
.y9f{bottom:451.445863px;}
.y231{bottom:451.447663px;}
.y27a{bottom:451.447950px;}
.y264{bottom:451.448844px;}
.y135{bottom:451.450113px;}
.y117{bottom:452.197950px;}
.y1ed{bottom:454.822950px;}
.y10{bottom:455.946450px;}
.y291{bottom:459.694950px;}
.y248{bottom:460.449611px;}
.y2d{bottom:462.317294px;}
.y50{bottom:463.445754px;}
.y18a{bottom:464.193000px;}
.y1c1{bottom:464.566912px;}
.y81{bottom:466.815569px;}
.ycf{bottom:469.442562px;}
.y173{bottom:472.066054px;}
.y149{bottom:472.443811px;}
.y219{bottom:472.815862px;}
.y69{bottom:475.813919px;}
.y2e8{bottom:475.816159px;}
.yd9{bottom:478.437313px;}
.ybc{bottom:478.439112px;}
.y9e{bottom:481.434963px;}
.y230{bottom:481.436763px;}
.y279{bottom:481.437450px;}
.y263{bottom:481.437943px;}
.y134{bottom:481.439213px;}
.y290{bottom:481.812450px;}
.y111{bottom:484.435500px;}
.yf{bottom:485.185950px;}
.y218{bottom:489.684450px;}
.y247{bottom:490.436911px;}
.y1ec{bottom:493.062452px;}
.y1c0{bottom:494.556011px;}
.y2a8{bottom:494.931000px;}
.y2cf{bottom:498.679500px;}
.yce{bottom:499.429863px;}
.y2c{bottom:501.677201px;}
.y4f{bottom:502.805660px;}
.y148{bottom:502.807167px;}
.y215{bottom:504.303000px;}
.y80{bottom:505.799420px;}
.y68{bottom:505.801219px;}
.y2e7{bottom:505.803460px;}
.ybb{bottom:508.428212px;}
.y172{bottom:511.425960px;}
.y9d{bottom:511.798319px;}
.y22f{bottom:511.800119px;}
.y278{bottom:511.800450px;}
.y262{bottom:511.801300px;}
.y133{bottom:511.802569px;}
.yf0{bottom:512.925450px;}
.yd8{bottom:517.422963px;}
.y217{bottom:519.297600px;}
.y28f{bottom:520.797450px;}
.y246{bottom:520.802067px;}
.y1bf{bottom:524.545111px;}
.ye{bottom:529.417931px;}
.ycd{bottom:529.793219px;}
.y189{bottom:530.918100px;}
.y1eb{bottom:532.048101px;}
.y147{bottom:532.794468px;}
.y7f{bottom:536.164575px;}
.y67{bottom:536.166375px;}
.y2e6{bottom:536.168615px;}
.yba{bottom:538.791568px;}
.y2b{bottom:540.661051px;}
.y171{bottom:541.413260px;}
.y9c{bottom:541.785620px;}
.y261{bottom:541.788600px;}
.y132{bottom:541.789870px;}
.y4e{bottom:541.791310px;}
.y212{bottom:546.661500px;}
.yd7{bottom:547.788118px;}
.y2a4{bottom:550.410000px;}
.y28e{bottom:550.785261px;}
.yef{bottom:550.785600px;}
.y22e{bottom:550.785769px;}
.y245{bottom:550.789367px;}
.y2cd{bottom:554.533500px;}
.y1be{bottom:554.908467px;}
.ycc{bottom:559.782319px;}
.y214{bottom:562.076100px;}
.y1ea{bottom:562.456440px;}
.y146{bottom:563.204606px;}
.y7e{bottom:566.196859px;}
.yd{bottom:566.574600px;}
.y110{bottom:566.575315px;}
.yb9{bottom:568.823851px;}
.y188{bottom:568.827450px;}
.y170{bottom:571.821599px;}
.y131{bottom:572.198209px;}
.y4d{bottom:572.199649px;}
.y66{bottom:575.197007px;}
.y2e5{bottom:575.199248px;}
.yd6{bottom:577.820401px;}
.y2a{bottom:580.065940px;}
.y9b{bottom:581.190509px;}
.y277{bottom:581.193600px;}
.y22d{bottom:581.194108px;}
.y260{bottom:581.194850px;}
.y20f{bottom:589.440000px;}
.yee{bottom:590.190600px;}
.ycb{bottom:590.190658px;}
.y244{bottom:590.194256px;}
.yc{bottom:591.690053px;}
.y1e9{bottom:592.443741px;}
.y2a7{bottom:593.189100px;}
.y145{bottom:593.191907px;}
.y1bd{bottom:593.939100px;}
.y7d{bottom:596.184159px;}
.yb8{bottom:599.187208px;}
.y16f{bottom:601.810699px;}
.y4c{bottom:602.186950px;}
.y130{bottom:602.187308px;}
.y10f{bottom:603.309750px;}
.y211{bottom:604.434750px;}
.y65{bottom:605.184308px;}
.y2e4{bottom:605.186548px;}
.yd5{bottom:608.183758px;}
.y187{bottom:608.187356px;}
.y2cb{bottom:610.057500px;}
.y9a{bottom:611.179609px;}
.y276{bottom:611.181750px;}
.y25f{bottom:611.182150px;}
.y29{bottom:619.051590px;}
.yed{bottom:620.178750px;}
.y28d{bottom:620.179450px;}
.y22c{bottom:620.179757px;}
.y243{bottom:620.181557px;}
.y1e8{bottom:622.807097px;}
.y144{bottom:623.179207px;}
.yca{bottom:629.176307px;}
.y1bc{bottom:630.299797px;}
.y20c{bottom:631.798500px;}
.yb{bottom:631.799250px;}
.y16e{bottom:632.174055px;}
.y4b{bottom:632.175757px;}
.y7c{bottom:635.544065px;}
.yb7{bottom:638.172857px;}
.y186{bottom:638.176456px;}
.y99{bottom:641.168708px;}
.y25e{bottom:641.171250px;}
.y10e{bottom:641.172307px;}
.y12f{bottom:641.172958px;}
.y64{bottom:644.544214px;}
.y2e3{bottom:644.546454px;}
.y20e{bottom:647.168250px;}
.yec{bottom:650.166750px;}
.y22b{bottom:650.167058px;}
.y1e7{bottom:652.794398px;}
.y1bb{bottom:655.415250px;}
.y2a2{bottom:655.776000px;}
.y29f{bottom:655.791000px;}
.y242{bottom:659.167206px;}
.y16d{bottom:662.161356px;}
.y143{bottom:662.539113px;}
.y2c9{bottom:665.536500px;}
.y28{bottom:667.033790px;}
.yb6{bottom:668.161957px;}
.y185{bottom:668.165556px;}
.y1b6{bottom:670.035000px;}
.y98{bottom:671.532065px;}
.y4a{bottom:671.535663px;}
.y7b{bottom:674.529715px;}
.y209{bottom:674.533500px;}
.y2e2{bottom:674.533755px;}
.yeb{bottom:680.529900px;}
.y25d{bottom:680.530205px;}
.y22a{bottom:680.530414px;}
.y12e{bottom:680.531065px;}
.y1e6{bottom:682.781698px;}
.y63{bottom:683.529864px;}
.ya{bottom:684.278075px;}
.y1ba{bottom:685.778400px;}
.y20b{bottom:689.556900px;}
.y241{bottom:689.559352px;}
.y16c{bottom:692.179245px;}
.y142{bottom:692.557002px;}
.yb5{bottom:698.554102px;}
.y184{bottom:698.557701px;}
.y97{bottom:701.549953px;}
.y10d{bottom:701.553552px;}
.y2e1{bottom:704.925900px;}
.y27{bottom:706.424284px;}
.yc9{bottom:707.550652px;}
.y275{bottom:710.549400px;}
.y25c{bottom:710.549893px;}
.y49{bottom:710.550102px;}
.y1e5{bottom:713.173843px;}
.y1b3{bottom:713.548500px;}
.y7a{bottom:713.920210px;}
.y206{bottom:716.922000px;}
.yea{bottom:719.543053px;}
.y28c{bottom:719.544900px;}
.y12d{bottom:719.545504px;}
.y240{bottom:719.546652px;}
.y9{bottom:721.419900px;}
.y2c7{bottom:721.420500px;}
.y16b{bottom:722.544400px;}
.y62{bottom:722.918559px;}
.yb4{bottom:728.541403px;}
.y183{bottom:728.545001px;}
.y1b5{bottom:730.041900px;}
.y96{bottom:731.913310px;}
.y10c{bottom:731.916908px;}
.yc8{bottom:737.539752px;}
.y274{bottom:740.912400px;}
.y25b{bottom:740.913250px;}
.y48{bottom:740.913458px;}
.y1e4{bottom:743.161144px;}
.y2e0{bottom:743.911354px;}
.y26{bottom:745.409934px;}
.ye9{bottom:749.908209px;}
.y28b{bottom:749.909893px;}
.y229{bottom:749.910008px;}
.y12c{bottom:749.910659px;}
.y79{bottom:752.905859px;}
.y1b0{bottom:758.530500px;}
.yb3{bottom:758.904759px;}
.y303{bottom:758.904900px;}
.y23f{bottom:758.906558px;}
.y182{bottom:758.908358px;}
.y16a{bottom:761.530050px;}
.y61{bottom:761.904209px;}
.y29d{bottom:764.154000px;}
.y8{bottom:764.528550px;}
.yc7{bottom:767.903108px;}
.y95{bottom:770.898959px;}
.y25a{bottom:770.900550px;}
.y47{bottom:770.900759px;}
.y141{bottom:770.902558px;}
.y2fa{bottom:774.649050px;}
.y1b2{bottom:775.024050px;}
.y2c5{bottom:776.899500px;}
.ye8{bottom:779.895509px;}
.y28a{bottom:779.897194px;}
.y228{bottom:779.897309px;}
.y12b{bottom:779.897960px;}
.y205{bottom:781.022550px;}
.y1e3{bottom:782.521050px;}
.y78{bottom:783.269216px;}
.y2df{bottom:783.271260px;}
.y25{bottom:784.769840px;}
.y169{bottom:788.895097px;}
.y23e{bottom:788.895658px;}
.y181{bottom:788.897457px;}
.y60{bottom:792.269364px;}
.y302{bottom:797.515050px;}
.yb2{bottom:797.890409px;}
.y94{bottom:801.262316px;}
.y46{bottom:801.264115px;}
.y1ae{bottom:803.514000px;}
.ye7{bottom:810.258866px;}
.y259{bottom:810.259160px;}
.y273{bottom:810.260550px;}
.y227{bottom:810.260665px;}
.y12a{bottom:810.261316px;}
.y3d{bottom:810.262464px;}
.y2de{bottom:813.258560px;}
.y2f9{bottom:813.260115px;}
.y168{bottom:814.009050px;}
.y1e2{bottom:818.928241px;}
.y204{bottom:819.287803px;}
.y180{bottom:819.289603px;}
.y7{bottom:819.662550px;}
.y77{bottom:822.299848px;}
.y10b{bottom:822.301648px;}
.yb1{bottom:828.282554px;}
.y23d{bottom:828.284353px;}
.y165{bottom:828.658500px;}
.y93{bottom:831.282004px;}
.y45{bottom:831.283803px;}
.y301{bottom:831.656550px;}
.y2c3{bottom:832.782000px;}
.y24{bottom:832.795223px;}
.ye6{bottom:840.276754px;}
.y258{bottom:840.277049px;}
.y226{bottom:840.278554px;}
.y129{bottom:840.279205px;}
.y1e1{bottom:844.027200px;}
.y167{bottom:845.152200px;}
.y1ab{bottom:848.526000px;}
.y289{bottom:849.276255px;}
.y272{bottom:849.276594px;}
.y3c{bottom:849.276903px;}
.y10a{bottom:852.288948px;}
.y2dd{bottom:852.289193px;}
.y2f8{bottom:852.290747px;}
.yb0{bottom:858.271654px;}
.y203{bottom:858.273453px;}
.y1de{bottom:858.646500px;}
.y76{bottom:861.269304px;}
.y5f{bottom:861.271104px;}
.y1ad{bottom:864.644700px;}
.y6{bottom:865.394700px;}
.y29b{bottom:869.518500px;}
.y257{bottom:870.264350px;}
.y92{bottom:870.265854px;}
.y128{bottom:870.266505px;}
.y44{bottom:870.267654px;}
.y23{bottom:872.140735px;}
.y162{bottom:873.642000px;}
.y1e0{bottom:874.016700px;}
.ye5{bottom:879.262404px;}
.y288{bottom:879.263555px;}
.y271{bottom:879.263894px;}
.y140{bottom:879.264204px;}
.y2dc{bottom:882.636355px;}
.y2f7{bottom:882.637910px;}
.y23c{bottom:888.258954px;}
.y202{bottom:888.260754px;}
.y2c1{bottom:888.261000px;}
.y3b{bottom:888.262553px;}
.y2be{bottom:888.276000px;}
.y164{bottom:890.134350px;}
.y75{bottom:891.632660px;}
.y109{bottom:891.634460px;}
.y1a2{bottom:893.523000px;}
.yaf{bottom:897.257304px;}
.y256{bottom:900.629505px;}
.y5e{bottom:900.631010px;}
.y1db{bottom:901.755000px;}
.y300{bottom:902.879700px;}
.y1a5{bottom:905.878200px;}
.y91{bottom:909.625760px;}
.y127{bottom:909.626411px;}
.y287{bottom:909.626911px;}
.y270{bottom:909.627250px;}
.y43{bottom:909.627560px;}
.y22{bottom:911.126385px;}
.y2f6{bottom:912.627010px;}
.y1dc{bottom:917.873850px;}
.ye4{bottom:918.622310px;}
.y17f{bottom:918.624110px;}
.y3a{bottom:918.625909px;}
.y15d{bottom:918.639000px;}
.y2db{bottom:921.622005px;}
.y5{bottom:924.622789px;}
.y298{bottom:925.386000px;}
.yae{bottom:927.620660px;}
.y2ff{bottom:930.244200px;}
.y5d{bottom:930.618310px;}
.y108{bottom:930.620110px;}
.y160{bottom:934.742850px;}
.y255{bottom:939.615155px;}
.y126{bottom:939.615511px;}
.y286{bottom:939.616011px;}
.y26f{bottom:939.616350px;}
.y42{bottom:939.616660px;}
.y21{bottom:944.487392px;}
.y1d6{bottom:945.253500px;}
.y29a{bottom:948.281850px;}
.y90{bottom:948.656393px;}
.y39{bottom:948.658192px;}
.y2f5{bottom:952.030099px;}
.y2da{bottom:952.030344px;}
.yad{bottom:957.652943px;}
.y2fe{bottom:958.028850px;}
.y5c{bottom:961.026649px;}
.y1d9{bottom:961.402350px;}
.y15a{bottom:963.651000px;}
.y4{bottom:963.653125px;}
.y254{bottom:970.023494px;}
.y125{bottom:970.023850px;}
.y285{bottom:970.024350px;}
.y41{bottom:970.024999px;}
.y1a1{bottom:971.147850px;}
.y2bc{bottom:974.148000px;}
.y20{bottom:978.271236px;}
.y8f{bottom:979.019749px;}
.y26e{bottom:979.019850px;}
.y38{bottom:979.021549px;}
.y252{bottom:979.394850px;}
.y15c{bottom:979.769850px;}
.y2f4{bottom:982.019199px;}
.yac{bottom:988.016299px;}
.y1d3{bottom:988.392000px;}
.y3{bottom:989.518310px;}
.y225{bottom:991.013950px;}
.y2d9{bottom:991.015994px;}
.y2fd{bottom:996.264000px;}
.y40{bottom:1000.012299px;}
.y1d4{bottom:1004.511000px;}
.y157{bottom:1008.634500px;}
.y8e{bottom:1009.008849px;}
.y253{bottom:1009.009144px;}
.y124{bottom:1009.009500px;}
.y37{bottom:1009.010648px;}
.y1f{bottom:1012.008299px;}
.yab{bottom:1018.003600px;}
.y2f3{bottom:1021.379105px;}
.y159{bottom:1024.753500px;}
.y297{bottom:1026.627805px;}
.y224{bottom:1030.373856px;}
.y3f{bottom:1030.375655px;}
.y2d8{bottom:1030.375900px;}
.y1d0{bottom:1031.500500px;}
.y2ba{bottom:1033.000500px;}
.y2fc{bottom:1033.749000px;}
.y8d{bottom:1039.372205px;}
.y123{bottom:1039.372500px;}
.y36{bottom:1039.374005px;}
.y1d1{bottom:1047.994500px;}
.yaa{bottom:1048.368755px;}
.y1e{bottom:1051.368205px;}
.y155{bottom:1053.241500px;}
.y1b{bottom:1059.240000px;}
.y3e{bottom:1060.364755px;}
.y2d7{bottom:1060.365000px;}
.y2fb{bottom:1061.488650px;}
.y296{bottom:1065.987711px;}
.y17e{bottom:1069.359506px;}
.y122{bottom:1069.360500px;}
.y35{bottom:1069.361305px;}
.y1cd{bottom:1075.014000px;}
.y8c{bottom:1078.386644px;}
.y2b7{bottom:1088.508000px;}
.y1d{bottom:1090.758700px;}
.y1cf{bottom:1091.133150px;}
.y1a{bottom:1097.880150px;}
.y34{bottom:1099.753450px;}
.y154{bottom:1103.129182px;}
.y295{bottom:1105.002150px;}
.y8b{bottom:1108.750000px;}
.y19{bottom:1132.741350px;}
.y1c{bottom:1138.739100px;}
.y294{bottom:1139.114809px;}
.y153{bottom:1139.865265px;}
.y1{bottom:1193.093250px;}
.h2f{height:38.983500px;}
.h29{height:38.985000px;}
.h32{height:39.022500px;}
.h2a{height:39.358500px;}
.h25{height:39.360000px;}
.h2b{height:39.396000px;}
.h31{height:39.397500px;}
.h1f{height:41.608500px;}
.h20{height:41.646000px;}
.h21{height:41.983500px;}
.h22{height:42.021000px;}
.hc{height:42.358500px;}
.h1e{height:42.360000px;}
.h1d{height:42.381000px;}
.he{height:42.396000px;}
.hd{height:42.733500px;}
.h1c{height:42.771000px;}
.h10{height:43.694327px;}
.h15{height:43.858500px;}
.h1{height:43.972062px;}
.h18{height:44.232000px;}
.h16{height:44.233500px;}
.h17{height:44.256000px;}
.h19{height:44.269500px;}
.h14{height:44.271000px;}
.hb{height:48.063236px;}
.h3{height:49.480650px;}
.h23{height:52.397875px;}
.h8{height:52.433018px;}
.h2c{height:53.979000px;}
.hf{height:54.149337px;}
.h1b{height:55.126500px;}
.h1a{height:55.141500px;}
.h2e{height:57.354000px;}
.h2d{height:57.390000px;}
.h13{height:59.546778px;}
.h9{height:59.563621px;}
.ha{height:59.640000px;}
.h11{height:59.977500px;}
.h7{height:64.978988px;}
.h30{height:69.370500px;}
.h24{height:69.385500px;}
.h6{height:71.972100px;}
.h12{height:73.134000px;}
.h26{height:88.878000px;}
.h27{height:91.861500px;}
.h28{height:91.876500px;}
.h5{height:98.961750px;}
.h4{height:107.958150px;}
.h2{height:116.955000px;}
.h0{height:1263.000000px;}
.wd{width:54.016500px;}
.w13{width:62.226000px;}
.w12{width:72.009000px;}
.we{width:75.757500px;}
.w26{width:76.882500px;}
.w23{width:78.007500px;}
.w22{width:78.382500px;}
.w1e{width:79.507500px;}
.w8{width:82.879500px;}
.w9{width:82.881000px;}
.wc{width:83.254500px;}
.wa{width:83.256000px;}
.w21{width:84.004500px;}
.w24{width:84.754500px;}
.w27{width:85.504500px;}
.w15{width:89.253000px;}
.wb{width:90.378000px;}
.w2{width:92.251500px;}
.w1f{width:92.253000px;}
.w14{width:94.876500px;}
.w10{width:113.244000px;}
.w11{width:119.278500px;}
.wf{width:119.616000px;}
.w16{width:131.274000px;}
.w4{width:131.611500px;}
.w3{width:131.649000px;}
.w5{width:133.111500px;}
.w6{width:139.896000px;}
.w7{width:143.982000px;}
.w1c{width:157.888500px;}
.w18{width:162.762000px;}
.w28{width:163.137000px;}
.w20{width:164.262000px;}
.w1b{width:170.259000px;}
.w19{width:171.759000px;}
.w25{width:256.522500px;}
.w1a{width:329.647500px;}
.w1d{width:586.170000px;}
.w17{width:667.168500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x58{left:4.873350px;}
.x17{left:7.497600px;}
.x1d{left:8.621151px;}
.x32{left:9.745800px;}
.x6b{left:10.870950px;}
.x38{left:13.151100px;}
.x1b{left:14.619750px;}
.x35{left:15.744300px;}
.x2d{left:17.618400px;}
.x19{left:19.493250px;}
.x30{left:20.977200px;}
.x44{left:23.271600px;}
.x74{left:24.769325px;}
.x4e{left:27.349200px;}
.x1f{left:29.237550px;}
.x27{left:35.236800px;}
.x2a{left:38.642100px;}
.x2f{left:40.843200px;}
.x50{left:46.152750px;}
.x28{left:48.357450px;}
.x4a{left:50.636100px;}
.x2b{left:51.761250px;}
.x31{left:53.603700px;}
.x7b{left:58.462200px;}
.x85{left:67.135800px;}
.x87{left:73.509300px;}
.x37{left:81.013950px;}
.x3b{left:84.374250px;}
.x34{left:87.012450px;}
.x39{left:90.371250px;}
.x3f{left:92.243850px;}
.x22{left:95.617200px;}
.x12{left:106.497125px;}
.x1{left:107.995950px;}
.x84{left:109.495500px;}
.xb{left:110.619516px;}
.x23{left:114.368400px;}
.x77{left:115.492950px;}
.x65{left:117.742350px;}
.x55{left:118.866900px;}
.x11{left:124.489500px;}
.x62{left:134.273400px;}
.x6{left:135.772800px;}
.x24{left:145.144201px;}
.x14{left:151.516800px;}
.x64{left:152.641800px;}
.x63{left:156.390300px;}
.xe{left:162.013036px;}
.x68{left:163.512000px;}
.x26{left:166.885500px;}
.x67{left:173.632800px;}
.x57{left:186.003300px;}
.x82{left:189.751800px;}
.x43{left:191.251500px;}
.x8a{left:193.875000px;}
.x69{left:199.123950px;}
.x36{left:200.247450px;}
.x4{left:202.872450px;}
.xf{left:215.992336px;}
.x4f{left:219.784950px;}
.x7{left:223.532080px;}
.x33{left:224.658450px;}
.x5d{left:231.780450px;}
.x54{left:238.153950px;}
.x6a{left:240.027000px;}
.x53{left:241.902450px;}
.x49{left:246.399450px;}
.x7e{left:247.900146px;}
.x7c{left:253.147950px;}
.xa{left:259.520195px;}
.x16{left:268.141500px;}
.x7d{left:271.515450px;}
.x56{left:274.513732px;}
.x7a{left:279.762450px;}
.x59{left:283.135500px;}
.x5{left:284.261100px;}
.x7f{left:285.384450px;}
.x75{left:288.009600px;}
.x76{left:290.258100px;}
.x81{left:293.631464px;}
.x6c{left:295.131600px;}
.x20{left:296.631600px;}
.x29{left:300.753000px;}
.x78{left:304.128741px;}
.x83{left:306.407995px;}
.x5e{left:315.404100px;}
.x52{left:316.527600px;}
.x21{left:318.777600px;}
.x3a{left:319.902600px;}
.x25{left:327.774017px;}
.x8{left:330.398100px;}
.x42{left:336.769735px;}
.x86{left:342.018600px;}
.x41{left:354.016404px;}
.x18{left:361.135500px;}
.xd{left:366.010114px;}
.x45{left:367.882500px;}
.x66{left:369.759047px;}
.x80{left:372.381750px;}
.xc{left:379.502484px;}
.x5f{left:399.041250px;}
.x4b{left:400.166250px;}
.x15{left:402.789750px;}
.x1a{left:405.414750px;}
.x6d{left:411.786750px;}
.x1e{left:413.285400px;}
.x2c{left:441.400500px;}
.x9{left:446.273400px;}
.x5a{left:450.397500px;}
.x46{left:451.522500px;}
.x3d{left:460.517400px;}
.x6e{left:474.388500px;}
.x4c{left:483.788400px;}
.x60{left:487.161900px;}
.x1c{left:493.536000px;}
.x3c{left:502.530900px;}
.x6f{left:529.522050px;}
.x89{left:533.271000px;}
.x47{left:535.144500px;}
.x4d{left:567.382050px;}
.x61{left:571.175550px;}
.x79{left:579.048000px;}
.x2e{left:582.046500px;}
.x3{left:585.405053px;}
.x70{left:594.417000px;}
.x40{left:603.023700px;}
.x5b{left:618.033000px;}
.x48{left:619.156500px;}
.x71{left:625.889700px;}
.x3e{left:645.007200px;}
.x51{left:651.004350px;}
.x72{left:667.168500px;}
.x88{left:697.156500px;}
.x5c{left:701.655000px;}
.x73{left:730.144500px;}
.x13{left:768.033185px;}
.x10{left:776.656012px;}
.x2{left:784.902787px;}
@media print{
.v1{vertical-align:-2.668290pt;}
.v2{vertical-align:-1.331213pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.720000pt;}
.ls1b{letter-spacing:-1.836096pt;}
.ls4f{letter-spacing:-1.343485pt;}
.ls39{letter-spacing:-0.873792pt;}
.ls35{letter-spacing:-0.750640pt;}
.ls36{letter-spacing:-0.656810pt;}
.ls38{letter-spacing:-0.650945pt;}
.ls58{letter-spacing:-0.633352pt;}
.ls37{letter-spacing:-0.627488pt;}
.ls2c{letter-spacing:-0.543793pt;}
.ls47{letter-spacing:-0.485149pt;}
.ls2b{letter-spacing:-0.469150pt;}
.ls64{letter-spacing:-0.463285pt;}
.ls13{letter-spacing:-0.447828pt;}
.lsf{letter-spacing:-0.435033pt;}
.ls12{letter-spacing:-0.428636pt;}
.ls7a{letter-spacing:-0.415841pt;}
.ls14{letter-spacing:-0.398777pt;}
.ls9{letter-spacing:-0.383851pt;}
.ls50{letter-spacing:-0.375320pt;}
.ls2d{letter-spacing:-0.367860pt;}
.ls54{letter-spacing:-0.362529pt;}
.ls2e{letter-spacing:-0.346535pt;}
.ls53{letter-spacing:-0.341204pt;}
.ls48{letter-spacing:-0.335872pt;}
.ls65{letter-spacing:-0.330541pt;}
.ls3a{letter-spacing:-0.325210pt;}
.ls59{letter-spacing:-0.299083pt;}
.ls3b{letter-spacing:-0.282559pt;}
.ls7b{letter-spacing:-0.252168pt;}
.ls57{letter-spacing:-0.246304pt;}
.ls7c{letter-spacing:-0.193524pt;}
.ls51{letter-spacing:-0.140745pt;}
.ls7{letter-spacing:-0.110890pt;}
.ls23{letter-spacing:-0.105559pt;}
.ls33{letter-spacing:-0.099694pt;}
.ls25{letter-spacing:-0.087966pt;}
.ls22{letter-spacing:-0.070372pt;}
.ls24{letter-spacing:-0.052779pt;}
.ls34{letter-spacing:-0.046915pt;}
.ls44{letter-spacing:-0.035186pt;}
.ls27{letter-spacing:-0.023457pt;}
.ls71{letter-spacing:-0.019193pt;}
.ls63{letter-spacing:-0.011729pt;}
.ls49{letter-spacing:-0.006398pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.005864pt;}
.ls67{letter-spacing:0.011729pt;}
.ls5a{letter-spacing:0.015994pt;}
.ls1c{letter-spacing:0.019193pt;}
.ls43{letter-spacing:0.025590pt;}
.ls77{letter-spacing:0.031988pt;}
.ls0{letter-spacing:0.041584pt;}
.ls55{letter-spacing:0.052779pt;}
.ls74{letter-spacing:0.063975pt;}
.ls75{letter-spacing:0.076771pt;}
.ls73{letter-spacing:0.102361pt;}
.ls3{letter-spacing:0.117288pt;}
.ls1{letter-spacing:0.127950pt;}
.ls1f{letter-spacing:0.152474pt;}
.ls3c{letter-spacing:0.153541pt;}
.ls41{letter-spacing:0.158338pt;}
.ls6b{letter-spacing:0.172734pt;}
.ls4a{letter-spacing:0.175931pt;}
.ls70{letter-spacing:0.185529pt;}
.ls76{letter-spacing:0.191926pt;}
.ls2a{letter-spacing:0.193524pt;}
.ls31{letter-spacing:0.222846pt;}
.ls1d{letter-spacing:0.223914pt;}
.ls78{letter-spacing:0.230312pt;}
.ls6c{letter-spacing:0.243107pt;}
.ls2{letter-spacing:0.246305pt;}
.ls16{letter-spacing:0.249504pt;}
.ls79{letter-spacing:0.255902pt;}
.ls6f{letter-spacing:0.268697pt;}
.ls15{letter-spacing:0.281492pt;}
.ls6e{letter-spacing:0.294287pt;}
.ls6{letter-spacing:0.298551pt;}
.ls29{letter-spacing:0.299083pt;}
.ls17{letter-spacing:0.313480pt;}
.ls11{letter-spacing:0.339070pt;}
.ls19{letter-spacing:0.351865pt;}
.lsc{letter-spacing:0.358263pt;}
.ls68{letter-spacing:0.364660pt;}
.lsd{letter-spacing:0.371058pt;}
.lse{letter-spacing:0.377455pt;}
.ls18{letter-spacing:0.383853pt;}
.ls3d{letter-spacing:0.390250pt;}
.ls3e{letter-spacing:0.396648pt;}
.ls10{letter-spacing:0.403045pt;}
.ls6a{letter-spacing:0.409443pt;}
.ls1a{letter-spacing:0.428636pt;}
.ls72{letter-spacing:0.441431pt;}
.ls6d{letter-spacing:0.447828pt;}
.ls8{letter-spacing:0.460621pt;}
.ls7e{letter-spacing:0.475014pt;}
.ls28{letter-spacing:0.521929pt;}
.ls26{letter-spacing:0.527794pt;}
.lsa{letter-spacing:0.588572pt;}
.ls32{letter-spacing:0.604030pt;}
.ls4b{letter-spacing:0.609895pt;}
.ls7d{letter-spacing:0.627488pt;}
.ls21{letter-spacing:0.633352pt;}
.ls30{letter-spacing:0.639217pt;}
.ls56{letter-spacing:0.668539pt;}
.ls46{letter-spacing:0.703725pt;}
.ls52{letter-spacing:0.867927pt;}
.ls45{letter-spacing:1.419178pt;}
.ls69{letter-spacing:178.672383pt;}
.ls3f{letter-spacing:236.091050pt;}
.ls4d{letter-spacing:251.751683pt;}
.ls42{letter-spacing:252.080383pt;}
.ls4e{letter-spacing:265.081403pt;}
.ls62{letter-spacing:297.012916pt;}
.ls5c{letter-spacing:303.682109pt;}
.ls5b{letter-spacing:313.006852pt;}
.ls66{letter-spacing:313.010927pt;}
.ls5e{letter-spacing:319.676242pt;}
.ls20{letter-spacing:319.725634pt;}
.ls61{letter-spacing:322.338109pt;}
.ls4c{letter-spacing:330.387065pt;}
.ls40{letter-spacing:330.720383pt;}
.ls5f{letter-spacing:333.004775pt;}
.ls60{letter-spacing:382.474429pt;}
.ls5d{letter-spacing:398.311442pt;}
.ls1e{letter-spacing:398.466575pt;}
.ls4{letter-spacing:744.389837pt;}
.lsb{letter-spacing:754.844542pt;}
.ws23{word-spacing:-58.643733pt;}
.ws59{word-spacing:-58.244956pt;}
.wsce{word-spacing:-18.194623pt;}
.ws53{word-spacing:-18.188225pt;}
.wsbe{word-spacing:-18.175430pt;}
.wsc5{word-spacing:-18.156237pt;}
.wsc9{word-spacing:-18.143442pt;}
.wsc7{word-spacing:-18.079467pt;}
.ws5a{word-spacing:-17.804372pt;}
.wscd{word-spacing:-17.785180pt;}
.wsca{word-spacing:-17.765987pt;}
.ws91{word-spacing:-17.722136pt;}
.wsc6{word-spacing:-17.350147pt;}
.ws73{word-spacing:-16.942175pt;}
.ws90{word-spacing:-16.936310pt;}
.wse0{word-spacing:-16.930446pt;}
.ws64{word-spacing:-16.830751pt;}
.wsa5{word-spacing:-16.824887pt;}
.wse1{word-spacing:-16.777972pt;}
.wsad{word-spacing:-16.602041pt;}
.ws9e{word-spacing:-16.478889pt;}
.wsa4{word-spacing:-16.355737pt;}
.wsa3{word-spacing:-16.302958pt;}
.wsdf{word-spacing:-16.109434pt;}
.wsdd{word-spacing:-16.050790pt;}
.wsa2{word-spacing:-15.927638pt;}
.wsac{word-spacing:-15.839672pt;}
.ws65{word-spacing:-15.833808pt;}
.ws75{word-spacing:-15.675470pt;}
.wsde{word-spacing:-15.669606pt;}
.ws74{word-spacing:-15.552318pt;}
.ws76{word-spacing:-15.429166pt;}
.ws92{word-spacing:-14.335884pt;}
.ws66{word-spacing:-14.277239pt;}
.ws51{word-spacing:-4.836545pt;}
.ws30{word-spacing:-4.830148pt;}
.ws63{word-spacing:-4.823750pt;}
.ws48{word-spacing:-4.817353pt;}
.ws98{word-spacing:-4.772570pt;}
.ws54{word-spacing:-3.499458pt;}
.ws25{word-spacing:-3.493060pt;}
.ws56{word-spacing:-3.486663pt;}
.ws4c{word-spacing:-3.473868pt;}
.ws84{word-spacing:-3.461073pt;}
.ws34{word-spacing:-3.390700pt;}
.ws33{word-spacing:-3.371507pt;}
.ws88{word-spacing:-2.155973pt;}
.ws20{word-spacing:-2.149576pt;}
.ws55{word-spacing:-2.143178pt;}
.ws31{word-spacing:-2.136781pt;}
.ws87{word-spacing:-2.130383pt;}
.ws2d{word-spacing:-2.117588pt;}
.wsc2{word-spacing:-1.797711pt;}
.ws86{word-spacing:-1.343485pt;}
.ws81{word-spacing:-0.914842pt;}
.ws80{word-spacing:-0.885520pt;}
.ws52{word-spacing:-0.870066pt;}
.ws8a{word-spacing:-0.844476pt;}
.wsa{word-spacing:-0.838079pt;}
.ws8e{word-spacing:-0.831681pt;}
.ws8d{word-spacing:-0.825284pt;}
.ws3e{word-spacing:-0.818886pt;}
.ws3c{word-spacing:-0.812488pt;}
.wsc{word-spacing:-0.806091pt;}
.ws1f{word-spacing:-0.799693pt;}
.ws1c{word-spacing:-0.793296pt;}
.ws12{word-spacing:-0.786898pt;}
.ws36{word-spacing:-0.780501pt;}
.wsd7{word-spacing:-0.774103pt;}
.ws15{word-spacing:-0.767706pt;}
.ws10{word-spacing:-0.761308pt;}
.ws19{word-spacing:-0.754911pt;}
.ws42{word-spacing:-0.748513pt;}
.ws4e{word-spacing:-0.735718pt;}
.wsd0{word-spacing:-0.729320pt;}
.ws2f{word-spacing:-0.716525pt;}
.wscb{word-spacing:-0.703730pt;}
.wse{word-spacing:-0.697333pt;}
.wsdb{word-spacing:-0.678140pt;}
.wsdc{word-spacing:-0.665345pt;}
.ws24{word-spacing:-0.646152pt;}
.wsd9{word-spacing:-0.633357pt;}
.wsc8{word-spacing:-0.626960pt;}
.wsd6{word-spacing:-0.614164pt;}
.wsd5{word-spacing:-0.607767pt;}
.wsda{word-spacing:-0.601369pt;}
.ws9{word-spacing:-0.588572pt;}
.ws4d{word-spacing:-0.562984pt;}
.wsd1{word-spacing:-0.537394pt;}
.wsb1{word-spacing:-0.530996pt;}
.ws3a{word-spacing:-0.505406pt;}
.ws7f{word-spacing:-0.504336pt;}
.wsd4{word-spacing:-0.467021pt;}
.ws7{word-spacing:-0.460621pt;}
.wsd8{word-spacing:-0.441431pt;}
.wscc{word-spacing:-0.435033pt;}
.ws5{word-spacing:-0.298551pt;}
.ws7d{word-spacing:-0.287354pt;}
.ws3{word-spacing:-0.246305pt;}
.ws93{word-spacing:-0.246304pt;}
.wsb2{word-spacing:-0.240439pt;}
.wsae{word-spacing:-0.234575pt;}
.ws6e{word-spacing:-0.228711pt;}
.ws2b{word-spacing:-0.211119pt;}
.ws9f{word-spacing:-0.193524pt;}
.ws7c{word-spacing:-0.181796pt;}
.ws6d{word-spacing:-0.164202pt;}
.ws2{word-spacing:-0.127950pt;}
.ws4{word-spacing:-0.117288pt;}
.ws1d{word-spacing:-0.070373pt;}
.wsa8{word-spacing:-0.058644pt;}
.ws1{word-spacing:-0.041584pt;}
.wsd3{word-spacing:-0.012795pt;}
.ws18{word-spacing:-0.006398pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.005864pt;}
.ws6f{word-spacing:0.035186pt;}
.wsd2{word-spacing:0.044783pt;}
.wsa0{word-spacing:0.076237pt;}
.ws6{word-spacing:0.110890pt;}
.ws83{word-spacing:0.133283pt;}
.ws1a{word-spacing:0.140746pt;}
.ws1b{word-spacing:0.153541pt;}
.ws11{word-spacing:0.191926pt;}
.wsb5{word-spacing:0.266565pt;}
.ws82{word-spacing:0.282559pt;}
.ws94{word-spacing:0.293222pt;}
.wsb0{word-spacing:0.303884pt;}
.wsa1{word-spacing:0.325210pt;}
.ws71{word-spacing:0.341204pt;}
.ws72{word-spacing:0.346535pt;}
.wsbb{word-spacing:0.351866pt;}
.ws8{word-spacing:0.383851pt;}
.ws13{word-spacing:0.447828pt;}
.wsbf{word-spacing:0.467021pt;}
.ws21{word-spacing:0.473418pt;}
.ws5c{word-spacing:0.479816pt;}
.ws35{word-spacing:0.486214pt;}
.ws7a{word-spacing:0.492611pt;}
.wsd{word-spacing:0.831681pt;}
.wsb{word-spacing:0.934042pt;}
.wscf{word-spacing:0.940439pt;}
.wsf{word-spacing:0.946837pt;}
.wsc3{word-spacing:1.279509pt;}
.ws16{word-spacing:1.426653pt;}
.ws17{word-spacing:1.509821pt;}
.ws9a{word-spacing:1.804108pt;}
.ws5e{word-spacing:1.810506pt;}
.ws43{word-spacing:1.816903pt;}
.ws9d{word-spacing:1.823301pt;}
.ws49{word-spacing:1.829698pt;}
.ws44{word-spacing:1.836096pt;}
.ws41{word-spacing:1.842493pt;}
.ws14{word-spacing:1.964047pt;}
.ws9c{word-spacing:2.130383pt;}
.wsc1{word-spacing:3.090015pt;}
.ws45{word-spacing:3.096413pt;}
.ws32{word-spacing:3.102810pt;}
.ws95{word-spacing:3.109208pt;}
.ws26{word-spacing:3.115605pt;}
.wsb6{word-spacing:3.122003pt;}
.wsa9{word-spacing:3.128400pt;}
.ws47{word-spacing:4.439897pt;}
.ws85{word-spacing:4.446295pt;}
.ws99{word-spacing:4.452692pt;}
.ws40{word-spacing:4.459090pt;}
.ws2e{word-spacing:4.484680pt;}
.ws2c{word-spacing:5.783382pt;}
.ws96{word-spacing:5.789780pt;}
.ws9b{word-spacing:5.796177pt;}
.wsaa{word-spacing:5.808972pt;}
.wsbc{word-spacing:7.120469pt;}
.ws28{word-spacing:7.126867pt;}
.ws22{word-spacing:7.133265pt;}
.wsab{word-spacing:7.146060pt;}
.ws6c{word-spacing:7.242023pt;}
.ws6b{word-spacing:7.274011pt;}
.ws67{word-spacing:7.932958pt;}
.ws5b{word-spacing:8.431967pt;}
.ws29{word-spacing:8.470352pt;}
.ws78{word-spacing:8.483147pt;}
.ws8b{word-spacing:8.495942pt;}
.ws61{word-spacing:8.502340pt;}
.ws3d{word-spacing:9.801041pt;}
.ws4b{word-spacing:9.813837pt;}
.wsb8{word-spacing:11.086948pt;}
.ws3b{word-spacing:11.093346pt;}
.ws8c{word-spacing:11.106141pt;}
.ws6a{word-spacing:11.118936pt;}
.ws1e{word-spacing:12.436831pt;}
.wsbd{word-spacing:12.443228pt;}
.ws97{word-spacing:12.468818pt;}
.ws4a{word-spacing:13.780316pt;}
.ws50{word-spacing:13.786713pt;}
.ws46{word-spacing:13.793111pt;}
.ws27{word-spacing:15.123800pt;}
.ws79{word-spacing:15.130198pt;}
.ws58{word-spacing:15.494858pt;}
.wsa6{word-spacing:16.467285pt;}
.wsb7{word-spacing:16.480080pt;}
.ws69{word-spacing:16.492875pt;}
.ws4f{word-spacing:17.810770pt;}
.ws39{word-spacing:19.090279pt;}
.ws68{word-spacing:19.096677pt;}
.wsc0{word-spacing:20.433764pt;}
.ws3f{word-spacing:20.440162pt;}
.ws60{word-spacing:23.120734pt;}
.wsc4{word-spacing:23.152721pt;}
.ws38{word-spacing:23.926825pt;}
.ws7b{word-spacing:24.457821pt;}
.ws77{word-spacing:24.464218pt;}
.ws89{word-spacing:24.496206pt;}
.ws8f{word-spacing:25.807703pt;}
.ws5f{word-spacing:27.080815pt;}
.ws5d{word-spacing:27.087213pt;}
.ws2a{word-spacing:27.893303pt;}
.ws37{word-spacing:28.430697pt;}
.ws57{word-spacing:31.117667pt;}
.ws62{word-spacing:32.461152pt;}
.wsaf{word-spacing:263.128567pt;}
.wsb3{word-spacing:272.452921pt;}
.wsa7{word-spacing:284.416242pt;}
.wsb9{word-spacing:289.776280pt;}
.ws70{word-spacing:299.065447pt;}
.wsb4{word-spacing:307.052723pt;}
.wsba{word-spacing:339.037016pt;}
._18{margin-left:-66.021620pt;}
._16{margin-left:-50.049708pt;}
._6{margin-left:-10.108730pt;}
._4{margin-left:-2.466260pt;}
._0{margin-left:-1.510885pt;}
._1{width:1.011877pt;}
._2{width:1.924604pt;}
._3{width:2.904432pt;}
._5{width:3.904811pt;}
._8{width:8.559917pt;}
._9{width:15.213366pt;}
._7{width:24.489809pt;}
._a{width:27.163983pt;}
._11{width:251.849006pt;}
._14{width:262.569329pt;}
._12{width:283.998339pt;}
._d{width:294.998364pt;}
._b{width:301.326339pt;}
._10{width:309.843322pt;}
._e{width:318.576805pt;}
._13{width:327.977006pt;}
._f{width:335.325455pt;}
._15{width:338.643672pt;}
._c{width:342.406671pt;}
._17{width:354.638339pt;}
.fs6{font-size:53.313067pt;}
.fs0{font-size:58.643733pt;}
.fs5{font-size:63.975467pt;}
.fs4{font-size:85.300267pt;}
.fs3{font-size:117.288000pt;}
.fs2{font-size:127.950400pt;}
.fs1{font-size:138.613333pt;}
.y0{bottom:0.000000pt;}
.y1a9{bottom:2.987036pt;}
.yf5{bottom:4.332267pt;}
.y114{bottom:4.332400pt;}
.y1d8{bottom:5.358106pt;}
.y1b8{bottom:5.662926pt;}
.y100{bottom:5.664773pt;}
.y15f{bottom:6.317451pt;}
.y196{bottom:6.330913pt;}
.y18e{bottom:6.331185pt;}
.y1a6{bottom:10.982400pt;}
.y1aa{bottom:10.982652pt;}
.y208{bottom:13.327467pt;}
.yf7{bottom:13.327983pt;}
.y216{bottom:13.328533pt;}
.y210{bottom:13.328667pt;}
.y20a{bottom:13.354133pt;}
.y1f2{bottom:13.648133pt;}
.y1d5{bottom:13.661333pt;}
.y1ce{bottom:13.661467pt;}
.y20d{bottom:13.662000pt;}
.y1df{bottom:13.662400pt;}
.y1da{bottom:13.687867pt;}
.y213{bottom:13.701867pt;}
.y1b9{bottom:13.994133pt;}
.y1dd{bottom:13.994533pt;}
.y1d2{bottom:13.994667pt;}
.y1f5{bottom:13.994800pt;}
.y1ef{bottom:13.994933pt;}
.y1fc{bottom:14.034533pt;}
.y161{bottom:14.314533pt;}
.y1ac{bottom:14.327733pt;}
.y15b{bottom:14.327867pt;}
.y158{bottom:14.328000pt;}
.yfc{bottom:14.328133pt;}
.yf9{bottom:14.328267pt;}
.y1af{bottom:14.354267pt;}
.y163{bottom:14.659867pt;}
.y103{bottom:14.660000pt;}
.y1b4{bottom:14.660800pt;}
.y1b1{bottom:14.660933pt;}
.y166{bottom:14.661067pt;}
.y156{bottom:14.661333pt;}
.y18c{bottom:14.661733pt;}
.y190{bottom:14.688400pt;}
.y1fe{bottom:14.701200pt;}
.y207{bottom:18.659467pt;}
.y1a3{bottom:19.313200pt;}
.y1a8{bottom:19.313451pt;}
.y118{bottom:19.352400pt;}
.y18b{bottom:19.660400pt;}
.y2c8{bottom:20.324800pt;}
.y2bb{bottom:20.325333pt;}
.y2ad{bottom:20.325600pt;}
.y2d1{bottom:20.325733pt;}
.y2a9{bottom:20.325867pt;}
.y2cc{bottom:20.326000pt;}
.y2c4{bottom:20.338400pt;}
.y2ce{bottom:20.365867pt;}
.y2c0{bottom:20.645067pt;}
.y2c6{bottom:20.658267pt;}
.y2c2{bottom:20.658400pt;}
.y29c{bottom:20.658533pt;}
.y2b1{bottom:20.658800pt;}
.y2d3{bottom:20.658933pt;}
.y2ab{bottom:20.659067pt;}
.y2ca{bottom:20.684667pt;}
.yf2{bottom:21.325600pt;}
.y113{bottom:21.992400pt;}
.y1b7{bottom:22.351467pt;}
.y15e{bottom:22.643867pt;}
.y195{bottom:22.644133pt;}
.y18d{bottom:22.659067pt;}
.y2d5{bottom:22.977467pt;}
.y1d7{bottom:23.017200pt;}
.y2bd{bottom:23.324000pt;}
.yff{bottom:23.325333pt;}
.y2af{bottom:23.657467pt;}
.y1a4{bottom:27.310533pt;}
.yf6{bottom:31.014933pt;}
.y2b4{bottom:33.320000pt;}
.y2b3{bottom:33.653333pt;}
.y1a7{bottom:35.639867pt;}
.y2b9{bottom:36.319867pt;}
.y2b6{bottom:36.645200pt;}
.y2b8{bottom:36.652933pt;}
.y116{bottom:37.012400pt;}
.y2a6{bottom:38.026622pt;}
.yf3{bottom:39.677600pt;}
.y112{bottom:39.984533pt;}
.y2a1{bottom:40.677422pt;}
.y2a3{bottom:40.690133pt;}
.y2bf{bottom:47.301200pt;}
.y299{bottom:47.342667pt;}
.y2{bottom:51.991467pt;}
.y29e{bottom:64.667733pt;}
.y2a5{bottom:64.682000pt;}
.y2a0{bottom:67.332800pt;}
.y1a0{bottom:100.971155pt;}
.y5b{bottom:100.975035pt;}
.y201{bottom:101.635733pt;}
.y1cc{bottom:101.968421pt;}
.y2f2{bottom:106.635397pt;}
.y284{bottom:108.967072pt;}
.y2b5{bottom:110.300000pt;}
.y74{bottom:113.964401pt;}
.y13f{bottom:116.964422pt;}
.ya9{bottom:124.960777pt;}
.y23b{bottom:124.963976pt;}
.y200{bottom:126.626764pt;}
.y19f{bottom:127.626533pt;}
.y152{bottom:131.292724pt;}
.y18{bottom:134.630835pt;}
.y283{bottom:135.963120pt;}
.y5a{bottom:135.966416pt;}
.y1cb{bottom:136.628729pt;}
.y107{bottom:136.629200pt;}
.ye3{bottom:140.948246pt;}
.yc6{bottom:140.951445pt;}
.y1ff{bottom:141.614400pt;}
.y2f1{bottom:141.615582pt;}
.y73{bottom:143.946010pt;}
.y26d{bottom:143.947160pt;}
.y13e{bottom:143.947675pt;}
.y223{bottom:146.291347pt;}
.y121{bottom:147.279426pt;}
.y17d{bottom:151.625838pt;}
.ya8{bottom:151.956824pt;}
.y23a{bottom:151.960023pt;}
.y251{bottom:151.961623pt;}
.y1fb{bottom:154.276000pt;}
.y19e{bottom:161.313200pt;}
.y282{bottom:162.647287pt;}
.y151{bottom:163.979275pt;}
.y8a{bottom:165.642776pt;}
.ye2{bottom:167.977881pt;}
.yc5{bottom:167.981079pt;}
.y1fd{bottom:168.310533pt;}
.y106{bottom:168.977819pt;}
.y26c{bottom:170.642522pt;}
.y13d{bottom:170.643038pt;}
.y59{bottom:170.645917pt;}
.y17{bottom:170.975146pt;}
.y1ca{bottom:171.642502pt;}
.y222{bottom:172.975514pt;}
.y72{bottom:173.974533pt;}
.y120{bottom:173.974789pt;}
.y2b2{bottom:175.974667pt;}
.y2f0{bottom:176.309478pt;}
.y17c{bottom:178.308406pt;}
.ya7{bottom:178.639392pt;}
.y239{bottom:178.642591pt;}
.y250{bottom:178.644190pt;}
.y19d{bottom:184.970900pt;}
.y105{bottom:191.301333pt;}
.y89{bottom:192.298154pt;}
.y1f9{bottom:192.968000pt;}
.ye1{bottom:194.633259pt;}
.yc4{bottom:194.636458pt;}
.y150{bottom:196.633572pt;}
.y26b{bottom:197.633772pt;}
.y281{bottom:197.633870pt;}
.y13c{bottom:197.634287pt;}
.y58{bottom:197.637167pt;}
.y1c9{bottom:198.297880pt;}
.y221{bottom:199.965164pt;}
.y19c{bottom:199.965200pt;}
.y102{bottom:204.297333pt;}
.y17b{bottom:205.298056pt;}
.ya6{bottom:205.629042pt;}
.y24f{bottom:205.633840pt;}
.y33{bottom:206.628659pt;}
.y1fa{bottom:206.629333pt;}
.y16{bottom:207.296000pt;}
.y71{bottom:208.295220pt;}
.y11f{bottom:208.961372pt;}
.y2ef{bottom:211.296061pt;}
.y19a{bottom:212.960000pt;}
.y238{bottom:213.629174pt;}
.y104{bottom:218.957333pt;}
.y88{bottom:219.287804pt;}
.ye0{bottom:221.624508pt;}
.yc3{bottom:221.627707pt;}
.y26a{bottom:224.289150pt;}
.y280{bottom:224.289249pt;}
.y57{bottom:224.292545pt;}
.y1c8{bottom:225.289130pt;}
.y220{bottom:226.620542pt;}
.y19b{bottom:227.621333pt;}
.y14f{bottom:228.953599pt;}
.y1f7{bottom:231.286667pt;}
.y17a{bottom:231.955034pt;}
.ya5{bottom:232.284420pt;}
.y13b{bottom:232.286598pt;}
.y24e{bottom:232.289219pt;}
.y70{bottom:235.286469pt;}
.y11e{bottom:235.616751pt;}
.y32{bottom:236.617159pt;}
.y2ee{bottom:237.951439pt;}
.y2b0{bottom:238.617333pt;}
.yd4{bottom:240.282953pt;}
.y237{bottom:240.284553pt;}
.yfe{bottom:242.948000pt;}
.y15{bottom:243.614306pt;}
.y1f8{bottom:244.948000pt;}
.y87{bottom:245.943183pt;}
.ydf{bottom:248.279886pt;}
.yc2{bottom:248.283085pt;}
.y269{bottom:251.278800pt;}
.y27f{bottom:251.278899pt;}
.y56{bottom:251.282195pt;}
.y1c7{bottom:251.944508pt;}
.y198{bottom:252.944000pt;}
.y21f{bottom:253.275921pt;}
.y101{bottom:257.276133pt;}
.y179{bottom:258.944684pt;}
.ya4{bottom:259.275670pt;}
.y13a{bottom:259.277848pt;}
.y24d{bottom:259.280468pt;}
.y14e{bottom:261.607896pt;}
.y6f{bottom:261.941847pt;}
.y11d{bottom:262.608000pt;}
.y199{bottom:267.272133pt;}
.yd3{bottom:267.272603pt;}
.y236{bottom:267.274203pt;}
.y1f4{bottom:269.645333pt;}
.y2d6{bottom:270.297467pt;}
.y31{bottom:271.976399pt;}
.y86{bottom:272.640145pt;}
.y2ed{bottom:272.645335pt;}
.y55{bottom:277.977558pt;}
.y1c6{bottom:278.639871pt;}
.y14{bottom:279.960750pt;}
.y21e{bottom:280.307155pt;}
.yfb{bottom:281.306667pt;}
.yde{bottom:283.306454pt;}
.yc1{bottom:283.309653pt;}
.y1f6{bottom:283.640133pt;}
.y178{bottom:285.627251pt;}
.y27e{bottom:285.958400pt;}
.y268{bottom:285.959105pt;}
.y139{bottom:285.960416pt;}
.y24c{bottom:285.963036pt;}
.y2ae{bottom:288.304000pt;}
.y6e{bottom:288.624415pt;}
.y2d4{bottom:292.302667pt;}
.y194{bottom:292.969333pt;}
.ya3{bottom:293.969565pt;}
.y235{bottom:293.971165pt;}
.y14d{bottom:294.288583pt;}
.yfd{bottom:295.634800pt;}
.y11c{bottom:297.621467pt;}
.y85{bottom:299.629795pt;}
.y2ec{bottom:299.634985pt;}
.y54{bottom:304.632936pt;}
.y1c5{bottom:305.629521pt;}
.y30{bottom:306.615916pt;}
.y21d{bottom:306.949738pt;}
.y197{bottom:307.297467pt;}
.y1f1{bottom:308.296000pt;}
.ydd{bottom:309.949038pt;}
.yc0{bottom:309.952236pt;}
.y27d{bottom:312.613778pt;}
.y267{bottom:312.614483pt;}
.y138{bottom:312.615794pt;}
.y177{bottom:312.616901pt;}
.y6d{bottom:315.614065pt;}
.y13{bottom:315.946800pt;}
.yf8{bottom:319.958667pt;}
.ya2{bottom:320.624944pt;}
.y234{bottom:320.626543pt;}
.y24b{bottom:320.629742pt;}
.y1f3{bottom:321.944133pt;}
.y14c{bottom:326.956074pt;}
.yd2{bottom:328.623476pt;}
.y11b{bottom:329.621948pt;}
.y53{bottom:331.624185pt;}
.y1c4{bottom:332.284899pt;}
.y192{bottom:332.953333pt;}
.y21c{bottom:333.939388pt;}
.y84{bottom:334.283706pt;}
.yfa{bottom:334.286933pt;}
.y2eb{bottom:334.288896pt;}
.ybf{bottom:336.607615pt;}
.y293{bottom:339.270933pt;}
.y176{bottom:339.272280pt;}
.y27c{bottom:339.603428pt;}
.y266{bottom:339.604133pt;}
.y137{bottom:339.605444pt;}
.y2ac{bottom:340.950667pt;}
.y2f{bottom:341.282622pt;}
.y6c{bottom:342.271043pt;}
.y2d2{bottom:344.282667pt;}
.ydc{bottom:344.615744pt;}
.y1ee{bottom:346.614667pt;}
.y193{bottom:347.281467pt;}
.ya1{bottom:347.614594pt;}
.y233{bottom:347.616193pt;}
.y24a{bottom:347.619392pt;}
.y12{bottom:348.601860pt;}
.y11a{bottom:351.933467pt;}
.yd1{bottom:355.613126pt;}
.yf1{bottom:358.277333pt;}
.y52{bottom:358.279564pt;}
.y1c3{bottom:359.276148pt;}
.y14b{bottom:359.277568pt;}
.y21b{bottom:360.609160pt;}
.y83{bottom:361.273356pt;}
.y1f0{bottom:361.276267pt;}
.y2ea{bottom:361.278546pt;}
.ybe{bottom:363.610060pt;}
.y115{bottom:364.941333pt;}
.y27b{bottom:366.274800pt;}
.y175{bottom:366.276324pt;}
.y136{bottom:366.276816pt;}
.y6b{bottom:369.273488pt;}
.ydb{bottom:371.605394pt;}
.y18f{bottom:372.605333pt;}
.y292{bottom:373.937600pt;}
.ya0{bottom:374.269972pt;}
.y232{bottom:374.271571pt;}
.y265{bottom:374.272621pt;}
.y249{bottom:374.274770pt;}
.y2e{bottom:376.269205pt;}
.y11{bottom:379.269152pt;}
.yf4{bottom:380.269600pt;}
.yd0{bottom:382.268504pt;}
.y119{bottom:384.293733pt;}
.y51{bottom:385.296403pt;}
.y1c2{bottom:385.958716pt;}
.y191{bottom:387.293733pt;}
.y82{bottom:387.955923pt;}
.y2e9{bottom:387.961114pt;}
.y2aa{bottom:390.292000pt;}
.y174{bottom:392.958892pt;}
.y14a{bottom:393.294676pt;}
.y2d0{bottom:393.957333pt;}
.y21a{bottom:395.622933pt;}
.y6a{bottom:395.956056pt;}
.yda{bottom:398.287961pt;}
.ybd{bottom:398.289561pt;}
.y9f{bottom:401.285212pt;}
.y231{bottom:401.286811pt;}
.y27a{bottom:401.287067pt;}
.y264{bottom:401.287861pt;}
.y135{bottom:401.288989pt;}
.y117{bottom:401.953733pt;}
.y1ed{bottom:404.287067pt;}
.y10{bottom:405.285733pt;}
.y291{bottom:408.617733pt;}
.y248{bottom:409.288543pt;}
.y2d{bottom:410.948706pt;}
.y50{bottom:411.951781pt;}
.y18a{bottom:412.616000pt;}
.y1c1{bottom:412.948366pt;}
.y81{bottom:414.947173pt;}
.ycf{bottom:417.282277pt;}
.y173{bottom:419.614270pt;}
.y149{bottom:419.950054pt;}
.y219{bottom:420.280767pt;}
.y69{bottom:422.945706pt;}
.y2e8{bottom:422.947697pt;}
.yd9{bottom:425.277611pt;}
.ybc{bottom:425.279211pt;}
.y9e{bottom:427.942190pt;}
.y230{bottom:427.943789pt;}
.y279{bottom:427.944400pt;}
.y263{bottom:427.944838pt;}
.y134{bottom:427.945967pt;}
.y290{bottom:428.277733pt;}
.y111{bottom:430.609333pt;}
.yf{bottom:431.276400pt;}
.y218{bottom:435.275067pt;}
.y247{bottom:435.943921pt;}
.y1ec{bottom:438.277735pt;}
.y1c0{bottom:439.605344pt;}
.y2a8{bottom:439.938667pt;}
.y2cf{bottom:443.270667pt;}
.yce{bottom:443.937656pt;}
.y2c{bottom:445.935290pt;}
.y4f{bottom:446.938365pt;}
.y148{bottom:446.939704pt;}
.y215{bottom:448.269333pt;}
.y80{bottom:449.599484pt;}
.y68{bottom:449.601084pt;}
.y2e7{bottom:449.603075pt;}
.ybb{bottom:451.936188pt;}
.y172{bottom:454.600853pt;}
.y9d{bottom:454.931840pt;}
.y22f{bottom:454.933439pt;}
.y278{bottom:454.933733pt;}
.y262{bottom:454.934488pt;}
.y133{bottom:454.935617pt;}
.yf0{bottom:455.933733pt;}
.yd8{bottom:459.931522pt;}
.y217{bottom:461.597867pt;}
.y28f{bottom:462.931067pt;}
.y246{bottom:462.935170pt;}
.y1bf{bottom:466.262321pt;}
.ye{bottom:470.593716pt;}
.ycd{bottom:470.927306pt;}
.y189{bottom:471.927200pt;}
.y1eb{bottom:472.931646pt;}
.y147{bottom:473.595083pt;}
.y7f{bottom:476.590734pt;}
.y67{bottom:476.592333pt;}
.y2e6{bottom:476.594325pt;}
.yba{bottom:478.925838pt;}
.y2b{bottom:480.587601pt;}
.y171{bottom:481.256232pt;}
.y9c{bottom:481.587218pt;}
.y261{bottom:481.589867pt;}
.y132{bottom:481.590995pt;}
.y4e{bottom:481.592276pt;}
.y212{bottom:485.921333pt;}
.yd7{bottom:486.922772pt;}
.y2a4{bottom:489.253333pt;}
.y28e{bottom:489.586899pt;}
.yef{bottom:489.587200pt;}
.y22e{bottom:489.587350pt;}
.y245{bottom:489.590549pt;}
.y2cd{bottom:492.918667pt;}
.y1be{bottom:493.251971pt;}
.ycc{bottom:497.584283pt;}
.y214{bottom:499.623200pt;}
.y1ea{bottom:499.961280pt;}
.y146{bottom:500.626317pt;}
.y7e{bottom:503.286097pt;}
.yd{bottom:503.621867pt;}
.y110{bottom:503.622503pt;}
.yb9{bottom:505.621201pt;}
.y188{bottom:505.624400pt;}
.y170{bottom:508.285866pt;}
.y131{bottom:508.620630pt;}
.y4d{bottom:508.621910pt;}
.y66{bottom:511.286229pt;}
.y2e5{bottom:511.288220pt;}
.yd6{bottom:513.618134pt;}
.y2a{bottom:515.614169pt;}
.y9b{bottom:516.613786pt;}
.y277{bottom:516.616533pt;}
.y22d{bottom:516.616984pt;}
.y260{bottom:516.617644pt;}
.y20f{bottom:523.946667pt;}
.yee{bottom:524.613867pt;}
.ycb{bottom:524.613918pt;}
.y244{bottom:524.617117pt;}
.yc{bottom:525.946714pt;}
.y1e9{bottom:526.616659pt;}
.y2a7{bottom:527.279200pt;}
.y145{bottom:527.281695pt;}
.y1bd{bottom:527.945867pt;}
.y7d{bottom:529.941475pt;}
.yb8{bottom:532.610851pt;}
.y16f{bottom:534.942844pt;}
.y4c{bottom:535.277288pt;}
.y130{bottom:535.277607pt;}
.y10f{bottom:536.275333pt;}
.y211{bottom:537.275333pt;}
.y65{bottom:537.941607pt;}
.y2e4{bottom:537.943598pt;}
.yd5{bottom:540.607784pt;}
.y187{bottom:540.610983pt;}
.y2cb{bottom:542.273333pt;}
.y9a{bottom:543.270763pt;}
.y276{bottom:543.272667pt;}
.y25f{bottom:543.273022pt;}
.y29{bottom:550.268080pt;}
.yed{bottom:551.270000pt;}
.y28d{bottom:551.270622pt;}
.y22c{bottom:551.270895pt;}
.y243{bottom:551.272495pt;}
.y1e8{bottom:553.606309pt;}
.y144{bottom:553.937073pt;}
.yca{bottom:559.267829pt;}
.y1bc{bottom:560.266487pt;}
.y20c{bottom:561.598667pt;}
.yb{bottom:561.599333pt;}
.y16e{bottom:561.932494pt;}
.y4b{bottom:561.934006pt;}
.y7c{bottom:564.928058pt;}
.yb7{bottom:567.264762pt;}
.y186{bottom:567.267961pt;}
.y99{bottom:569.927741pt;}
.y25e{bottom:569.930000pt;}
.y10e{bottom:569.930940pt;}
.y12f{bottom:569.931518pt;}
.y64{bottom:572.928190pt;}
.y2e3{bottom:572.930182pt;}
.y20e{bottom:575.260667pt;}
.yec{bottom:577.926000pt;}
.y22b{bottom:577.926274pt;}
.y1e7{bottom:580.261687pt;}
.y1bb{bottom:582.591333pt;}
.y2a2{bottom:582.912000pt;}
.y29f{bottom:582.925333pt;}
.y242{bottom:585.926406pt;}
.y16d{bottom:588.587872pt;}
.y143{bottom:588.923656pt;}
.y2c9{bottom:591.588000pt;}
.y28{bottom:592.918924pt;}
.yb6{bottom:593.921740pt;}
.y185{bottom:593.924938pt;}
.y1b6{bottom:595.586667pt;}
.y98{bottom:596.917391pt;}
.y4a{bottom:596.920590pt;}
.y7b{bottom:599.581969pt;}
.y209{bottom:599.585333pt;}
.y2e2{bottom:599.585560pt;}
.yeb{bottom:604.915467pt;}
.y25d{bottom:604.915738pt;}
.y22a{bottom:604.915924pt;}
.y12e{bottom:604.916502pt;}
.y1e6{bottom:606.917065pt;}
.y63{bottom:607.582101pt;}
.ya{bottom:608.247178pt;}
.y1ba{bottom:609.580800pt;}
.y20b{bottom:612.939467pt;}
.y241{bottom:612.941646pt;}
.y16c{bottom:615.270440pt;}
.y142{bottom:615.606224pt;}
.yb5{bottom:620.936980pt;}
.y184{bottom:620.940179pt;}
.y97{bottom:623.599959pt;}
.y10d{bottom:623.603157pt;}
.y2e1{bottom:626.600800pt;}
.y27{bottom:627.932697pt;}
.yc9{bottom:628.933913pt;}
.y275{bottom:631.599467pt;}
.y25c{bottom:631.599905pt;}
.y49{bottom:631.600091pt;}
.y1e5{bottom:633.932305pt;}
.y1b3{bottom:634.265333pt;}
.y7a{bottom:634.595742pt;}
.y206{bottom:637.264000pt;}
.yea{bottom:639.593825pt;}
.y28c{bottom:639.595467pt;}
.y12d{bottom:639.596003pt;}
.y240{bottom:639.597024pt;}
.y9{bottom:641.262133pt;}
.y2c7{bottom:641.262667pt;}
.y16b{bottom:642.261689pt;}
.y62{bottom:642.594275pt;}
.yb4{bottom:647.592358pt;}
.y183{bottom:647.595557pt;}
.y1b5{bottom:648.926133pt;}
.y96{bottom:650.589609pt;}
.y10c{bottom:650.592807pt;}
.yc8{bottom:655.590891pt;}
.y274{bottom:658.588800pt;}
.y25b{bottom:658.589555pt;}
.y48{bottom:658.589741pt;}
.y1e4{bottom:660.587683pt;}
.y2e0{bottom:661.254537pt;}
.y26{bottom:662.586608pt;}
.ye9{bottom:666.585075pt;}
.y28b{bottom:666.586572pt;}
.y229{bottom:666.586674pt;}
.y12c{bottom:666.587253pt;}
.y79{bottom:669.249653pt;}
.y1b0{bottom:674.249333pt;}
.yb3{bottom:674.582008pt;}
.y303{bottom:674.582133pt;}
.y23f{bottom:674.583607pt;}
.y182{bottom:674.585207pt;}
.y16a{bottom:676.915600pt;}
.y61{bottom:677.248186pt;}
.y29d{bottom:679.248000pt;}
.y8{bottom:679.580933pt;}
.yc7{bottom:682.580541pt;}
.y95{bottom:685.243520pt;}
.y25a{bottom:685.244933pt;}
.y47{bottom:685.245119pt;}
.y141{bottom:685.246718pt;}
.y2fa{bottom:688.576933pt;}
.y1b2{bottom:688.910267pt;}
.y2c5{bottom:690.577333pt;}
.ye8{bottom:693.240453pt;}
.y28a{bottom:693.241950pt;}
.y228{bottom:693.242052pt;}
.y12b{bottom:693.242631pt;}
.y205{bottom:694.242267pt;}
.y1e3{bottom:695.574267pt;}
.y78{bottom:696.239303pt;}
.y2df{bottom:696.241120pt;}
.y25{bottom:697.573191pt;}
.y169{bottom:701.240086pt;}
.y23e{bottom:701.240585pt;}
.y181{bottom:701.242184pt;}
.y60{bottom:704.239435pt;}
.y302{bottom:708.902267pt;}
.yb2{bottom:709.235919pt;}
.y94{bottom:712.233170pt;}
.y46{bottom:712.234769pt;}
.y1ae{bottom:714.234667pt;}
.ye7{bottom:720.230103pt;}
.y259{bottom:720.230365pt;}
.y273{bottom:720.231600pt;}
.y227{bottom:720.231702pt;}
.y12a{bottom:720.232281pt;}
.y3d{bottom:720.233302pt;}
.y2de{bottom:722.896498pt;}
.y2f9{bottom:722.897880pt;}
.y168{bottom:723.563600pt;}
.y1e2{bottom:727.936214pt;}
.y204{bottom:728.255825pt;}
.y180{bottom:728.257425pt;}
.y7{bottom:728.588933pt;}
.y77{bottom:730.933198pt;}
.y10b{bottom:730.934798pt;}
.yb1{bottom:736.251159pt;}
.y23d{bottom:736.252758pt;}
.y165{bottom:736.585333pt;}
.y93{bottom:738.917337pt;}
.y45{bottom:738.918936pt;}
.y301{bottom:739.250267pt;}
.y2c3{bottom:740.250667pt;}
.y24{bottom:740.262421pt;}
.ye6{bottom:746.912671pt;}
.y258{bottom:746.912933pt;}
.y226{bottom:746.914270pt;}
.y129{bottom:746.914849pt;}
.y1e1{bottom:750.246400pt;}
.y167{bottom:751.246400pt;}
.y1ab{bottom:754.245333pt;}
.y289{bottom:754.912226pt;}
.y272{bottom:754.912528pt;}
.y3c{bottom:754.912803pt;}
.y10a{bottom:757.590176pt;}
.y2dd{bottom:757.590394pt;}
.y2f8{bottom:757.591775pt;}
.yb0{bottom:762.908137pt;}
.y203{bottom:762.909736pt;}
.y1de{bottom:763.241333pt;}
.y76{bottom:765.572715pt;}
.y5f{bottom:765.574314pt;}
.y1ad{bottom:768.573067pt;}
.y6{bottom:769.239733pt;}
.y29b{bottom:772.905333pt;}
.y257{bottom:773.568311pt;}
.y92{bottom:773.569648pt;}
.y128{bottom:773.570227pt;}
.y44{bottom:773.571248pt;}
.y23{bottom:775.236209pt;}
.y162{bottom:776.570667pt;}
.y1e0{bottom:776.903733pt;}
.ye5{bottom:781.566582pt;}
.y288{bottom:781.567604pt;}
.y271{bottom:781.567906pt;}
.y140{bottom:781.568181pt;}
.y2dc{bottom:784.565649pt;}
.y2f7{bottom:784.567031pt;}
.y23c{bottom:789.563515pt;}
.y202{bottom:789.565114pt;}
.y2c1{bottom:789.565333pt;}
.y3b{bottom:789.566714pt;}
.y2be{bottom:789.578667pt;}
.y164{bottom:791.230533pt;}
.y75{bottom:792.562365pt;}
.y109{bottom:792.563964pt;}
.y1a2{bottom:794.242667pt;}
.yaf{bottom:797.562048pt;}
.y256{bottom:800.559560pt;}
.y5e{bottom:800.560898pt;}
.y1db{bottom:801.560000pt;}
.y300{bottom:802.559733pt;}
.y1a5{bottom:805.225067pt;}
.y91{bottom:808.556232pt;}
.y127{bottom:808.556810pt;}
.y287{bottom:808.557254pt;}
.y270{bottom:808.557556pt;}
.y43{bottom:808.557831pt;}
.y22{bottom:809.890120pt;}
.y2f6{bottom:811.224008pt;}
.y1dc{bottom:815.887867pt;}
.ye4{bottom:816.553165pt;}
.y17f{bottom:816.554764pt;}
.y3a{bottom:816.556364pt;}
.y15d{bottom:816.568000pt;}
.y2db{bottom:819.219560pt;}
.y5{bottom:821.886923pt;}
.y298{bottom:822.565333pt;}
.yae{bottom:824.551698pt;}
.y2ff{bottom:826.883733pt;}
.y5d{bottom:827.216276pt;}
.y108{bottom:827.217875pt;}
.y160{bottom:830.882533pt;}
.y255{bottom:835.213471pt;}
.y126{bottom:835.213788pt;}
.y286{bottom:835.214232pt;}
.y26f{bottom:835.214533pt;}
.y42{bottom:835.214808pt;}
.y21{bottom:839.544348pt;}
.y1d6{bottom:840.225333pt;}
.y29a{bottom:842.917200pt;}
.y90{bottom:843.250127pt;}
.y39{bottom:843.251726pt;}
.y2f5{bottom:846.248977pt;}
.y2da{bottom:846.249195pt;}
.yad{bottom:851.247060pt;}
.y2fe{bottom:851.581200pt;}
.y5c{bottom:854.245910pt;}
.y1d9{bottom:854.579867pt;}
.y15a{bottom:856.578667pt;}
.y4{bottom:856.580556pt;}
.y254{bottom:862.243106pt;}
.y125{bottom:862.243422pt;}
.y285{bottom:862.243867pt;}
.y41{bottom:862.244443pt;}
.y1a1{bottom:863.242533pt;}
.y2bc{bottom:865.909333pt;}
.y20{bottom:869.574432pt;}
.y8f{bottom:870.239777pt;}
.y26e{bottom:870.239867pt;}
.y38{bottom:870.241376pt;}
.y252{bottom:870.573200pt;}
.y15c{bottom:870.906533pt;}
.y2f4{bottom:872.905955pt;}
.yac{bottom:878.236710pt;}
.y1d3{bottom:878.570667pt;}
.y3{bottom:879.571831pt;}
.y225{bottom:880.901289pt;}
.y2d9{bottom:880.903106pt;}
.y2fd{bottom:885.568000pt;}
.y40{bottom:888.899821pt;}
.y1d4{bottom:892.898667pt;}
.y157{bottom:896.564000pt;}
.y8e{bottom:896.896755pt;}
.y253{bottom:896.897017pt;}
.y124{bottom:896.897333pt;}
.y37{bottom:896.898354pt;}
.y1f{bottom:899.562932pt;}
.yab{bottom:904.892089pt;}
.y2f3{bottom:907.892538pt;}
.y159{bottom:910.892000pt;}
.y297{bottom:912.558049pt;}
.y224{bottom:915.887872pt;}
.y3f{bottom:915.889471pt;}
.y2d8{bottom:915.889689pt;}
.y1d0{bottom:916.889333pt;}
.y2ba{bottom:918.222667pt;}
.y2fc{bottom:918.888000pt;}
.y8d{bottom:923.886405pt;}
.y123{bottom:923.886667pt;}
.y36{bottom:923.888004pt;}
.y1d1{bottom:931.550667pt;}
.yaa{bottom:931.883338pt;}
.y1e{bottom:934.549516pt;}
.y155{bottom:936.214667pt;}
.y1b{bottom:941.546667pt;}
.y3e{bottom:942.546449pt;}
.y2d7{bottom:942.546667pt;}
.y2fb{bottom:943.545467pt;}
.y296{bottom:947.544632pt;}
.y17e{bottom:950.541783pt;}
.y122{bottom:950.542667pt;}
.y35{bottom:950.543382pt;}
.y1cd{bottom:955.568000pt;}
.y8c{bottom:958.565906pt;}
.y2b7{bottom:967.562667pt;}
.y1d{bottom:969.563288pt;}
.y1cf{bottom:969.896133pt;}
.y1a{bottom:975.893467pt;}
.y34{bottom:977.558622pt;}
.y154{bottom:980.559272pt;}
.y295{bottom:982.224133pt;}
.y8b{bottom:985.555556pt;}
.y19{bottom:1006.881200pt;}
.y1c{bottom:1012.212533pt;}
.y294{bottom:1012.546497pt;}
.y153{bottom:1013.213569pt;}
.y1{bottom:1060.527333pt;}
.h2f{height:34.652000pt;}
.h29{height:34.653333pt;}
.h32{height:34.686667pt;}
.h2a{height:34.985333pt;}
.h25{height:34.986667pt;}
.h2b{height:35.018667pt;}
.h31{height:35.020000pt;}
.h1f{height:36.985333pt;}
.h20{height:37.018667pt;}
.h21{height:37.318667pt;}
.h22{height:37.352000pt;}
.hc{height:37.652000pt;}
.h1e{height:37.653333pt;}
.h1d{height:37.672000pt;}
.he{height:37.685333pt;}
.hd{height:37.985333pt;}
.h1c{height:38.018667pt;}
.h10{height:38.839402pt;}
.h15{height:38.985333pt;}
.h1{height:39.086277pt;}
.h18{height:39.317333pt;}
.h16{height:39.318667pt;}
.h17{height:39.338667pt;}
.h19{height:39.350667pt;}
.h14{height:39.352000pt;}
.hb{height:42.722876pt;}
.h3{height:43.982800pt;}
.h23{height:46.575889pt;}
.h8{height:46.607127pt;}
.h2c{height:47.981333pt;}
.hf{height:48.132744pt;}
.h1b{height:49.001333pt;}
.h1a{height:49.014667pt;}
.h2e{height:50.981333pt;}
.h2d{height:51.013333pt;}
.h13{height:52.930470pt;}
.h9{height:52.945441pt;}
.ha{height:53.013333pt;}
.h11{height:53.313333pt;}
.h7{height:57.759101pt;}
.h30{height:61.662667pt;}
.h24{height:61.676000pt;}
.h6{height:63.975200pt;}
.h12{height:65.008000pt;}
.h26{height:79.002667pt;}
.h27{height:81.654667pt;}
.h28{height:81.668000pt;}
.h5{height:87.966000pt;}
.h4{height:95.962800pt;}
.h2{height:103.960000pt;}
.h0{height:1122.666667pt;}
.wd{width:48.014667pt;}
.w13{width:55.312000pt;}
.w12{width:64.008000pt;}
.we{width:67.340000pt;}
.w26{width:68.340000pt;}
.w23{width:69.340000pt;}
.w22{width:69.673333pt;}
.w1e{width:70.673333pt;}
.w8{width:73.670667pt;}
.w9{width:73.672000pt;}
.wc{width:74.004000pt;}
.wa{width:74.005333pt;}
.w21{width:74.670667pt;}
.w24{width:75.337333pt;}
.w27{width:76.004000pt;}
.w15{width:79.336000pt;}
.wb{width:80.336000pt;}
.w2{width:82.001333pt;}
.w1f{width:82.002667pt;}
.w14{width:84.334667pt;}
.w10{width:100.661333pt;}
.w11{width:106.025333pt;}
.wf{width:106.325333pt;}
.w16{width:116.688000pt;}
.w4{width:116.988000pt;}
.w3{width:117.021333pt;}
.w5{width:118.321333pt;}
.w6{width:124.352000pt;}
.w7{width:127.984000pt;}
.w1c{width:140.345333pt;}
.w18{width:144.677333pt;}
.w28{width:145.010667pt;}
.w20{width:146.010667pt;}
.w1b{width:151.341333pt;}
.w19{width:152.674667pt;}
.w25{width:228.020000pt;}
.w1a{width:293.020000pt;}
.w1d{width:521.040000pt;}
.w17{width:593.038667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x58{left:4.331867pt;}
.x17{left:6.664533pt;}
.x1d{left:7.663246pt;}
.x32{left:8.662933pt;}
.x6b{left:9.663067pt;}
.x38{left:11.689867pt;}
.x1b{left:12.995333pt;}
.x35{left:13.994933pt;}
.x2d{left:15.660800pt;}
.x19{left:17.327333pt;}
.x30{left:18.646400pt;}
.x44{left:20.685867pt;}
.x74{left:22.017178pt;}
.x4e{left:24.310400pt;}
.x1f{left:25.988933pt;}
.x27{left:31.321600pt;}
.x2a{left:34.348533pt;}
.x2f{left:36.305067pt;}
.x50{left:41.024667pt;}
.x28{left:42.984400pt;}
.x4a{left:45.009867pt;}
.x2b{left:46.010000pt;}
.x31{left:47.647733pt;}
.x7b{left:51.966400pt;}
.x85{left:59.676267pt;}
.x87{left:65.341600pt;}
.x37{left:72.012400pt;}
.x3b{left:74.999333pt;}
.x34{left:77.344400pt;}
.x39{left:80.330000pt;}
.x3f{left:81.994533pt;}
.x22{left:84.993067pt;}
.x12{left:94.664111pt;}
.x1{left:95.996400pt;}
.x84{left:97.329333pt;}
.xb{left:98.328459pt;}
.x23{left:101.660800pt;}
.x77{left:102.660400pt;}
.x65{left:104.659867pt;}
.x55{left:105.659467pt;}
.x11{left:110.657333pt;}
.x62{left:119.354133pt;}
.x6{left:120.686933pt;}
.x24{left:129.017067pt;}
.x14{left:134.681600pt;}
.x64{left:135.681600pt;}
.x63{left:139.013600pt;}
.xe{left:144.011587pt;}
.x68{left:145.344000pt;}
.x26{left:148.342667pt;}
.x67{left:154.340267pt;}
.x57{left:165.336267pt;}
.x82{left:168.668267pt;}
.x43{left:170.001333pt;}
.x8a{left:172.333333pt;}
.x69{left:176.999067pt;}
.x36{left:177.997733pt;}
.x4{left:180.331067pt;}
.xf{left:191.993187pt;}
.x4f{left:195.364400pt;}
.x7{left:198.695182pt;}
.x33{left:199.696400pt;}
.x5d{left:206.027067pt;}
.x54{left:211.692400pt;}
.x6a{left:213.357333pt;}
.x53{left:215.024400pt;}
.x49{left:219.021733pt;}
.x7e{left:220.355685pt;}
.x7c{left:225.020400pt;}
.xa{left:230.684618pt;}
.x16{left:238.348000pt;}
.x7d{left:241.347067pt;}
.x56{left:244.012206pt;}
.x7a{left:248.677733pt;}
.x59{left:251.676000pt;}
.x5{left:252.676533pt;}
.x7f{left:253.675067pt;}
.x75{left:256.008533pt;}
.x76{left:258.007200pt;}
.x81{left:261.005746pt;}
.x6c{left:262.339200pt;}
.x20{left:263.672533pt;}
.x29{left:267.336000pt;}
.x78{left:270.336659pt;}
.x83{left:272.362662pt;}
.x5e{left:280.359200pt;}
.x52{left:281.357867pt;}
.x21{left:283.357867pt;}
.x3a{left:284.357867pt;}
.x25{left:291.354682pt;}
.x8{left:293.687200pt;}
.x42{left:299.350876pt;}
.x86{left:304.016533pt;}
.x41{left:314.681248pt;}
.x18{left:321.009333pt;}
.xd{left:325.342324pt;}
.x45{left:327.006667pt;}
.x66{left:328.674709pt;}
.x80{left:331.006000pt;}
.xc{left:337.335541pt;}
.x5f{left:354.703333pt;}
.x4b{left:355.703333pt;}
.x15{left:358.035333pt;}
.x1a{left:360.368667pt;}
.x6d{left:366.032667pt;}
.x1e{left:367.364800pt;}
.x2c{left:392.356000pt;}
.x9{left:396.687467pt;}
.x5a{left:400.353333pt;}
.x46{left:401.353333pt;}
.x3d{left:409.348800pt;}
.x6e{left:421.678667pt;}
.x4c{left:430.034133pt;}
.x60{left:433.032800pt;}
.x1c{left:438.698667pt;}
.x3c{left:446.694133pt;}
.x6f{left:470.686267pt;}
.x89{left:474.018667pt;}
.x47{left:475.684000pt;}
.x4d{left:504.339600pt;}
.x61{left:507.711600pt;}
.x79{left:514.709333pt;}
.x2e{left:517.374667pt;}
.x3{left:520.360048pt;}
.x70{left:528.370667pt;}
.x40{left:536.021067pt;}
.x5b{left:549.362667pt;}
.x48{left:550.361333pt;}
.x71{left:556.346400pt;}
.x3e{left:573.339733pt;}
.x51{left:578.670533pt;}
.x72{left:593.038667pt;}
.x88{left:619.694667pt;}
.x5c{left:623.693333pt;}
.x73{left:649.017333pt;}
.x13{left:682.696164pt;}
.x10{left:690.360900pt;}
.x2{left:697.691367pt;}
}




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