
    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_16082e8d0e223f5459ddf196.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.896000;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_4cefa01c82c8641b7ca57191.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_2dd163e5d249f17f2905ed02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_64b267e9602b9e49bad1625e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_c26ef40fb1ca7de2ec043adf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727000;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_40a73813f8f5bd7a850f844b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9d6b56368ce7f96e0f0e856a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_2ccb573dbfbaf1982c57c64a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8033e01ce093ec55efd69a89.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7f47b971390802650fff1a96.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0ead057d121f620bab8487fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_48d321617c091a79c92d027d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d459a45281ac69f1109b96df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5b9ecc3a8b0e5c8e25eba214.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_99611b459cf587d742351a23.woff2')format("woff");}.fff{font-family:fff;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5e4882c05a24786ef52dbafc.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d8d1ad8fb579ed836a195d2e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_95739dc75202dd1d5542d6d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.399000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bacabb885db248272e7048d8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.046000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dafb6ab1abd7727c68248567.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_4ede9968cdf413119c3cabfe.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bb5367ce86a207c4a82e4476.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_32fdf3b29839ad5917f549f3.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_d0278edb6d3080838866b6cb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7f4a372f3ebd645e9d8f1468.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.918000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1e{vertical-align:-59.334000px;}
.v1c{vertical-align:-58.104000px;}
.v1b{vertical-align:-16.062000px;}
.v11{vertical-align:-12.000000px;}
.v1{vertical-align:-9.822000px;}
.vb{vertical-align:-7.890000px;}
.v19{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:10.764000px;}
.v13{vertical-align:13.272000px;}
.v10{vertical-align:17.148000px;}
.v14{vertical-align:19.662000px;}
.ve{vertical-align:24.738000px;}
.v7{vertical-align:26.028000px;}
.v16{vertical-align:28.242000px;}
.v6{vertical-align:29.616000px;}
.v1d{vertical-align:30.888000px;}
.va{vertical-align:34.194000px;}
.v17{vertical-align:37.764000px;}
.v3{vertical-align:48.528000px;}
.v1a{vertical-align:50.766000px;}
.vf{vertical-align:52.980000px;}
.v9{vertical-align:79.620000px;}
.vd{vertical-align:88.302000px;}
.v12{vertical-align:92.892000px;}
.v18{vertical-align:97.728000px;}
.v2{vertical-align:101.142000px;}
.vc{vertical-align:104.358000px;}
.v5{vertical-align:134.280000px;}
.v8{vertical-align:147.048000px;}
.v4{vertical-align:150.342000px;}
.ls3{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000141px;}
.ls22{letter-spacing:0.001114px;}
.ls6a{letter-spacing:0.001139px;}
.ls15{letter-spacing:0.001165px;}
.ls21{letter-spacing:0.001473px;}
.ls2f{letter-spacing:0.002127px;}
.ls65{letter-spacing:0.002706px;}
.lsa{letter-spacing:0.002759px;}
.ls56{letter-spacing:0.003056px;}
.ls3a{letter-spacing:0.003226px;}
.ls2{letter-spacing:0.003239px;}
.ls34{letter-spacing:0.003427px;}
.ls5{letter-spacing:0.003471px;}
.ls27{letter-spacing:0.003744px;}
.lsc{letter-spacing:0.003848px;}
.ls2e{letter-spacing:0.004328px;}
.ls5a{letter-spacing:0.004381px;}
.ls75{letter-spacing:0.004391px;}
.ls46{letter-spacing:0.004478px;}
.ls2d{letter-spacing:0.004528px;}
.ls19{letter-spacing:0.004664px;}
.ls3b{letter-spacing:0.005282px;}
.ls32{letter-spacing:0.005332px;}
.ls53{letter-spacing:0.005591px;}
.ls12{letter-spacing:0.006141px;}
.ls33{letter-spacing:1.900500px;}
.ls26{letter-spacing:1.990552px;}
.lse{letter-spacing:2.569240px;}
.ls1a{letter-spacing:2.575240px;}
.ls2c{letter-spacing:2.668328px;}
.ls2a{letter-spacing:2.984915px;}
.ls54{letter-spacing:2.986528px;}
.ls5c{letter-spacing:2.988532px;}
.ls50{letter-spacing:2.990915px;}
.ls63{letter-spacing:2.991056px;}
.ls64{letter-spacing:3.771239px;}
.ls0{letter-spacing:3.777239px;}
.ls6{letter-spacing:4.173471px;}
.ls3d{letter-spacing:4.179471px;}
.ls45{letter-spacing:5.443358px;}
.ls5b{letter-spacing:5.976532px;}
.ls51{letter-spacing:7.174664px;}
.ls2b{letter-spacing:7.178127px;}
.lsf{letter-spacing:7.493566px;}
.ls41{letter-spacing:9.746657px;}
.ls59{letter-spacing:9.754765px;}
.ls10{letter-spacing:9.755464px;}
.ls60{letter-spacing:9.760765px;}
.ls18{letter-spacing:10.154915px;}
.ls44{letter-spacing:10.160915px;}
.ls35{letter-spacing:10.162714px;}
.ls49{letter-spacing:10.164532px;}
.ls4e{letter-spacing:11.953114px;}
.ls43{letter-spacing:11.953150px;}
.ls36{letter-spacing:11.954127px;}
.ls25{letter-spacing:11.954759px;}
.ls55{letter-spacing:11.957591px;}
.ls69{letter-spacing:11.959114px;}
.ls4a{letter-spacing:14.941223px;}
.ls30{letter-spacing:14.944059px;}
.ls16{letter-spacing:15.418566px;}
.ls14{letter-spacing:15.935518px;}
.ls23{letter-spacing:15.937114px;}
.ls40{letter-spacing:15.937473px;}
.ls52{letter-spacing:15.938759px;}
.ls74{letter-spacing:15.939736px;}
.ls24{letter-spacing:15.943473px;}
.ls48{letter-spacing:17.084127px;}
.ls1f{letter-spacing:17.209165px;}
.ls17{letter-spacing:17.626664px;}
.ls67{letter-spacing:18.179412px;}
.ls66{letter-spacing:18.182706px;}
.ls13{letter-spacing:18.926915px;}
.ls6d{letter-spacing:19.484759px;}
.ls20{letter-spacing:19.919518px;}
.ls68{letter-spacing:19.921114px;}
.ls38{letter-spacing:19.921139px;}
.ls5e{letter-spacing:19.921165px;}
.ls8{letter-spacing:19.921473px;}
.ls1d{letter-spacing:19.922759px;}
.ls72{letter-spacing:19.923736px;}
.ls11{letter-spacing:19.925518px;}
.ls4d{letter-spacing:19.927165px;}
.ls39{letter-spacing:19.927473px;}
.ls7{letter-spacing:19.928759px;}
.ls1e{letter-spacing:20.192915px;}
.ls77{letter-spacing:20.680332px;}
.ls1b{letter-spacing:21.385358px;}
.ls4f{letter-spacing:21.511165px;}
.ls76{letter-spacing:21.841240px;}
.ls5d{letter-spacing:22.111165px;}
.ls4b{letter-spacing:22.298759px;}
.ls61{letter-spacing:23.047165px;}
.ls6c{letter-spacing:23.146800px;}
.ls29{letter-spacing:23.401114px;}
.ls5f{letter-spacing:23.401165px;}
.lsb{letter-spacing:23.402759px;}
.ls71{letter-spacing:23.404404px;}
.ls6e{letter-spacing:23.404800px;}
.ls4c{letter-spacing:23.407165px;}
.ls37{letter-spacing:23.408759px;}
.ls1c{letter-spacing:26.390915px;}
.ls57{letter-spacing:26.392528px;}
.ls73{letter-spacing:27.095518px;}
.ls3f{letter-spacing:27.139473px;}
.ls3e{letter-spacing:27.140759px;}
.ls6b{letter-spacing:28.904759px;}
.ls28{letter-spacing:28.948477px;}
.ls1{letter-spacing:29.918706px;}
.ls6f{letter-spacing:30.706800px;}
.ls62{letter-spacing:32.415056px;}
.ls3c{letter-spacing:33.562714px;}
.lsd{letter-spacing:35.042759px;}
.ls70{letter-spacing:35.114373px;}
.ls9{letter-spacing:35.117578px;}
.ls4{letter-spacing:35.865600px;}
.ls78{letter-spacing:65.594706px;}
.ls47{letter-spacing:99.000532px;}
.ls42{letter-spacing:110.486915px;}
.ls31{letter-spacing:193.985484px;}
.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;}
}
.wse4{word-spacing:-71.731200px;}
.ws1b{word-spacing:-59.429299px;}
.ws5f{word-spacing:-56.789591px;}
.ws2a{word-spacing:-45.664082px;}
.wsb{word-spacing:-42.637126px;}
.ws68{word-spacing:-40.341627px;}
.ws1e{word-spacing:-39.416294px;}
.wsb7{word-spacing:-37.387668px;}
.ws1f{word-spacing:-36.044928px;}
.ws66{word-spacing:-35.112422px;}
.ws1c{word-spacing:-35.040691px;}
.ws4c{word-spacing:-33.756703px;}
.ws46{word-spacing:-33.684972px;}
.ws51{word-spacing:-33.211407px;}
.ws7{word-spacing:-32.544027px;}
.ws53{word-spacing:-29.388273px;}
.ws7a{word-spacing:-26.331015px;}
.ws50{word-spacing:-25.722808px;}
.ws5b{word-spacing:-22.199310px;}
.ws1d{word-spacing:-21.834977px;}
.wsce{word-spacing:-21.548052px;}
.ws29{word-spacing:-19.510886px;}
.ws2d{word-spacing:-19.331558px;}
.ws109{word-spacing:-19.116365px;}
.wscf{word-spacing:-18.685978px;}
.wsd2{word-spacing:-18.542515px;}
.ws6e{word-spacing:-18.399053px;}
.wsa5{word-spacing:-18.255590px;}
.ws7e{word-spacing:-18.248417px;}
.wscb{word-spacing:-18.183859px;}
.ws44{word-spacing:-17.968666px;}
.ws45{word-spacing:-17.896934px;}
.ws26{word-spacing:-17.466547px;}
.ws85{word-spacing:-17.394816px;}
.ws6d{word-spacing:-16.964429px;}
.ws23{word-spacing:-16.892698px;}
.wsdb{word-spacing:-16.670331px;}
.ws83{word-spacing:-16.455137px;}
.wsbb{word-spacing:-16.311286px;}
.ws69{word-spacing:-16.103654px;}
.wsd6{word-spacing:-16.031923px;}
.ws7f{word-spacing:-15.872684px;}
.ws9c{word-spacing:-15.853104px;}
.ws22{word-spacing:-15.829597px;}
.wse6{word-spacing:-15.816730px;}
.ws39{word-spacing:-15.743520px;}
.wsb2{word-spacing:-15.601536px;}
.ws111{word-spacing:-15.529805px;}
.wsae{word-spacing:-15.450900px;}
.ws88{word-spacing:-14.884224px;}
.wsa4{word-spacing:-14.812493px;}
.wse5{word-spacing:-14.597299px;}
.wsdc{word-spacing:-14.525568px;}
.wsdf{word-spacing:-14.382106px;}
.ws9f{word-spacing:-14.374932px;}
.wsf2{word-spacing:-14.347648px;}
.ws84{word-spacing:-14.310374px;}
.ws6{word-spacing:-14.085830px;}
.wsa3{word-spacing:-13.951718px;}
.wsf9{word-spacing:-13.889466px;}
.ws24{word-spacing:-13.593062px;}
.wsaf{word-spacing:-13.449600px;}
.ws19{word-spacing:-13.442427px;}
.ws10b{word-spacing:-13.162675px;}
.ws4b{word-spacing:-13.133069px;}
.ws101{word-spacing:-13.090944px;}
.ws74{word-spacing:-13.038657px;}
.ws75{word-spacing:-13.019213px;}
.ws2c{word-spacing:-12.947482px;}
.ws61{word-spacing:-12.804019px;}
.ws32{word-spacing:-12.732288px;}
.wse0{word-spacing:-12.725115px;}
.ws6c{word-spacing:-12.660557px;}
.wsa0{word-spacing:-12.517094px;}
.wsfc{word-spacing:-12.509921px;}
.ws95{word-spacing:-12.449465px;}
.ws92{word-spacing:-12.445363px;}
.wsd3{word-spacing:-12.301901px;}
.ws8e{word-spacing:-12.086707px;}
.ws11{word-spacing:-11.991283px;}
.wsb0{word-spacing:-11.943245px;}
.ws86{word-spacing:-11.871514px;}
.wsef{word-spacing:-11.860374px;}
.wsdd{word-spacing:-11.792609px;}
.ws41{word-spacing:-11.739423px;}
.ws4d{word-spacing:-11.738934px;}
.ws8b{word-spacing:-11.737549px;}
.ws47{word-spacing:-11.733429px;}
.ws79{word-spacing:-11.731085px;}
.wsaa{word-spacing:-11.730835px;}
.ws1a{word-spacing:-11.728051px;}
.ws78{word-spacing:-11.713361px;}
.ws62{word-spacing:-11.708684px;}
.wse3{word-spacing:-11.703876px;}
.ws8d{word-spacing:-11.703704px;}
.wseb{word-spacing:-11.703652px;}
.ws6f{word-spacing:-11.676382px;}
.ws48{word-spacing:-11.656320px;}
.wsd8{word-spacing:-11.584589px;}
.wsb1{word-spacing:-11.225933px;}
.ws9e{word-spacing:-11.140373px;}
.wse1{word-spacing:-11.082470px;}
.ws113{word-spacing:-11.010739px;}
.wsa2{word-spacing:-10.939008px;}
.wse{word-spacing:-10.878555px;}
.ws34{word-spacing:-10.867277px;}
.ws97{word-spacing:-10.847042px;}
.ws99{word-spacing:-10.813100px;}
.ws77{word-spacing:-10.795546px;}
.ws65{word-spacing:-10.652083px;}
.wsd{word-spacing:-10.616736px;}
.ws64{word-spacing:-10.580352px;}
.ws10d{word-spacing:-10.508621px;}
.ws105{word-spacing:-10.436890px;}
.ws27{word-spacing:-10.365158px;}
.wsca{word-spacing:-10.293427px;}
.ws13{word-spacing:-10.224009px;}
.wsde{word-spacing:-10.221696px;}
.ws28{word-spacing:-10.078234px;}
.wscd{word-spacing:-10.071060px;}
.wsb9{word-spacing:-9.896736px;}
.ws114{word-spacing:-9.863040px;}
.ws73{word-spacing:-9.719578px;}
.wsf5{word-spacing:-9.307644px;}
.ws33{word-spacing:-9.289190px;}
.ws4a{word-spacing:-9.217459px;}
.ws4{word-spacing:-9.176735px;}
.wsd4{word-spacing:-9.145728px;}
.ws5a{word-spacing:-9.002266px;}
.ws10f{word-spacing:-8.930534px;}
.wsbf{word-spacing:-8.914917px;}
.wsa8{word-spacing:-8.715341px;}
.ws9a{word-spacing:-8.653098px;}
.wsa1{word-spacing:-8.643610px;}
.wsff{word-spacing:-8.492974px;}
.ws89{word-spacing:-8.356685px;}
.ws7b{word-spacing:-8.349512px;}
.ws40{word-spacing:-8.141491px;}
.wsf{word-spacing:-8.064007px;}
.ws36{word-spacing:-7.998029px;}
.ws3e{word-spacing:-7.926298px;}
.ws3f{word-spacing:-7.854566px;}
.ws93{word-spacing:-7.632200px;}
.wsda{word-spacing:-7.567642px;}
.ws58{word-spacing:-7.495910px;}
.ws71{word-spacing:-7.352448px;}
.wsa6{word-spacing:-7.345275px;}
.ws7c{word-spacing:-7.280717px;}
.wsfd{word-spacing:-7.273544px;}
.wsd1{word-spacing:-7.130081px;}
.wsbe{word-spacing:-6.951279px;}
.wsd7{word-spacing:-6.778598px;}
.wscc{word-spacing:-6.706867px;}
.ws94{word-spacing:-6.635136px;}
.ws8f{word-spacing:-6.556232px;}
.wsa7{word-spacing:-6.419942px;}
.wse8{word-spacing:-6.412769px;}
.wsfe{word-spacing:-6.348211px;}
.ws81{word-spacing:-6.204749px;}
.ws82{word-spacing:-6.133018px;}
.ws2e{word-spacing:-6.061286px;}
.ws9d{word-spacing:-5.904005px;}
.ws35{word-spacing:-5.846093px;}
.ws87{word-spacing:-5.702630px;}
.ws90{word-spacing:-5.690913px;}
.wsea{word-spacing:-5.559168px;}
.ws8a{word-spacing:-5.408532px;}
.wsa9{word-spacing:-5.057050px;}
.ws3a{word-spacing:-4.770125px;}
.ws2f{word-spacing:-4.698394px;}
.ws30{word-spacing:-4.554931px;}
.ws20{word-spacing:-4.476027px;}
.wsd0{word-spacing:-4.411469px;}
.ws91{word-spacing:-4.196275px;}
.wsb4{word-spacing:-4.124544px;}
.ws5{word-spacing:-3.940367px;}
.wsb5{word-spacing:-3.909350px;}
.ws106{word-spacing:-3.903646px;}
.ws10a{word-spacing:-3.765888px;}
.ws43{word-spacing:-3.586560px;}
.ws5e{word-spacing:-3.569368px;}
.ws31{word-spacing:-3.550694px;}
.ws112{word-spacing:-3.048576px;}
.ws14{word-spacing:-2.958548px;}
.ws63{word-spacing:-2.659785px;}
.ws9{word-spacing:-2.631275px;}
.ws7d{word-spacing:-2.546458px;}
.ws8{word-spacing:-2.107638px;}
.ws37{word-spacing:-1.685683px;}
.ws115{word-spacing:-1.613952px;}
.wsec{word-spacing:-1.606779px;}
.ws117{word-spacing:-1.542221px;}
.wsed{word-spacing:-1.398758px;}
.ws12{word-spacing:-1.387638px;}
.ws25{word-spacing:-1.183565px;}
.ws10{word-spacing:-0.864001px;}
.wsb3{word-spacing:-0.681446px;}
.wsad{word-spacing:-0.609715px;}
.ws6b{word-spacing:-0.394522px;}
.ws1{word-spacing:-0.123975px;}
.ws3c{word-spacing:-0.107597px;}
.ws15{word-spacing:-0.103292px;}
.ws3b{word-spacing:-0.094105px;}
.ws3{word-spacing:-0.086077px;}
.ws96{word-spacing:-0.078546px;}
.ws108{word-spacing:-0.071731px;}
.wsa{word-spacing:-0.065455px;}
.wsc{word-spacing:-0.047821px;}
.ws3d{word-spacing:-0.035866px;}
.ws17{word-spacing:0.000000px;}
.ws67{word-spacing:0.007442px;}
.wsac{word-spacing:0.035866px;}
.wsab{word-spacing:0.043039px;}
.ws102{word-spacing:0.060958px;}
.ws100{word-spacing:0.179328px;}
.ws55{word-spacing:0.390117px;}
.ws4e{word-spacing:0.396117px;}
.ws70{word-spacing:0.430387px;}
.ws18{word-spacing:0.753178px;}
.wse2{word-spacing:0.824909px;}
.wsee{word-spacing:1.183565px;}
.ws9b{word-spacing:5.812368px;}
.wsc7{word-spacing:6.008732px;}
.wsfa{word-spacing:6.990551px;}
.wsfb{word-spacing:11.506919px;}
.wsba{word-spacing:12.554192px;}
.wsf3{word-spacing:13.666920px;}
.wsf8{word-spacing:17.397833px;}
.ws56{word-spacing:18.878835px;}
.ws5d{word-spacing:18.887635px;}
.ws80{word-spacing:22.183797px;}
.wse7{word-spacing:22.453442px;}
.ws42{word-spacing:22.861797px;}
.wsf0{word-spacing:23.419656px;}
.ws10c{word-spacing:23.814758px;}
.ws54{word-spacing:24.560763px;}
.wsf1{word-spacing:24.597839px;}
.ws98{word-spacing:24.637797px;}
.ws16{word-spacing:24.646840px;}
.wsc3{word-spacing:24.663293px;}
.ws104{word-spacing:25.034189px;}
.ws76{word-spacing:25.045797px;}
.ws2b{word-spacing:25.087797px;}
.ws38{word-spacing:26.029685px;}
.wsd9{word-spacing:26.236270px;}
.ws49{word-spacing:26.341797px;}
.ws57{word-spacing:26.345234px;}
.ws59{word-spacing:26.347797px;}
.ws60{word-spacing:26.351635px;}
.ws8c{word-spacing:26.353442px;}
.ws118{word-spacing:26.899200px;}
.ws110{word-spacing:27.042662px;}
.ws2{word-spacing:27.200395px;}
.wsd5{word-spacing:28.885797px;}
.ws5c{word-spacing:32.436931px;}
.ws116{word-spacing:34.359245px;}
.ws107{word-spacing:34.502707px;}
.ws6a{word-spacing:36.978679px;}
.ws0{word-spacing:43.763175px;}
.wsb8{word-spacing:44.103309px;}
.ws10e{word-spacing:46.197857px;}
.wsf4{word-spacing:49.012404px;}
.ws103{word-spacing:49.373767px;}
.wsbd{word-spacing:51.630588px;}
.wsf6{word-spacing:57.325139px;}
.wsf7{word-spacing:62.234234px;}
.wsc4{word-spacing:62.365143px;}
.wsc1{word-spacing:65.376054px;}
.wse9{word-spacing:73.155901px;}
.ws52{word-spacing:75.599426px;}
.wsc5{word-spacing:81.936068px;}
.wsc8{word-spacing:83.048796px;}
.wsc6{word-spacing:100.066992px;}
.ws21{word-spacing:111.349207px;}
.ws72{word-spacing:117.625797px;}
.wsc9{word-spacing:118.394280px;}
.wsbc{word-spacing:155.768857px;}
.wsc2{word-spacing:190.132522px;}
.wsc0{word-spacing:275.489217px;}
.wsb6{word-spacing:288.521227px;}
.ws4f{word-spacing:1184.597729px;}
._2c{margin-left:-37.802342px;}
._26{margin-left:-35.865600px;}
._2b{margin-left:-33.075192px;}
._29{margin-left:-15.924326px;}
._28{margin-left:-12.481229px;}
._1{margin-left:-11.033775px;}
._35{margin-left:-9.296316px;}
._23{margin-left:-7.818701px;}
._5{margin-left:-6.714022px;}
._17{margin-left:-5.688258px;}
._7{margin-left:-4.648169px;}
._0{margin-left:-3.595275px;}
._6{margin-left:-2.324084px;}
._8{margin-left:-1.124387px;}
._e{width:1.048166px;}
._4{width:2.238007px;}
._2{width:3.595275px;}
._33{width:5.336786px;}
._31{width:17.312293px;}
._44{width:18.763307px;}
._a{width:19.964545px;}
._3f{width:21.665473px;}
._c{width:22.954834px;}
._12{width:24.087324px;}
._3a{width:25.700463px;}
._1a{width:27.316316px;}
._36{width:29.355083px;}
._9{width:30.436389px;}
._b{width:31.759127px;}
._f{width:33.154093px;}
._d{width:35.083666px;}
._54{width:36.295987px;}
._30{width:37.399757px;}
._45{width:38.524466px;}
._24{width:40.669890px;}
._19{width:42.839858px;}
._1c{width:45.413196px;}
._51{width:46.513421px;}
._39{width:48.225544px;}
._15{width:50.904397px;}
._32{width:53.525802px;}
._50{width:54.874368px;}
._13{width:56.492968px;}
._3{width:58.516200px;}
._38{width:59.636429px;}
._27{width:61.453700px;}
._2d{width:62.901154px;}
._4a{width:63.949144px;}
._16{width:64.988467px;}
._1f{width:66.622211px;}
._21{width:69.564068px;}
._3b{width:70.613500px;}
._11{width:71.802931px;}
._4c{width:90.523712px;}
._1d{width:93.028940px;}
._2f{width:94.684920px;}
._20{width:97.984819px;}
._46{width:102.571254px;}
._34{width:111.452500px;}
._42{width:130.654139px;}
._14{width:133.061376px;}
._4e{width:135.382753px;}
._3e{width:136.607924px;}
._4f{width:162.981954px;}
._47{width:203.898937px;}
._4b{width:207.665160px;}
._37{width:217.450383px;}
._40{width:299.729470px;}
._49{width:307.967789px;}
._41{width:331.868378px;}
._53{width:355.784790px;}
._4d{width:411.156966px;}
._48{width:414.704605px;}
._43{width:509.530208px;}
._18{width:570.119578px;}
._52{width:577.980937px;}
._3d{width:594.975535px;}
._3c{width:699.990895px;}
._1b{width:845.409564px;}
._22{width:1271.492911px;}
._25{width:1768.733590px;}
._1e{width:1779.722809px;}
._2a{width:2102.828814px;}
._10{width:2218.445168px;}
._2e{width:2251.211981px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.y97{bottom:100.395000px;}
.y1e{bottom:108.000000px;}
.yce{bottom:125.488500px;}
.y5e{bottom:131.835000px;}
.y17d{bottom:131.836500px;}
.yb5{bottom:136.969500px;}
.y118{bottom:140.557500px;}
.y253{bottom:142.443000px;}
.y96{bottom:144.934500px;}
.y131{bottom:145.287000px;}
.y163{bottom:145.851000px;}
.y42{bottom:146.322000px;}
.y1e3{bottom:146.547000px;}
.y1d{bottom:149.590500px;}
.y77{bottom:151.162500px;}
.y19e{bottom:154.809000px;}
.y17c{bottom:155.671500px;}
.y1cc{bottom:158.785500px;}
.ycd{bottom:164.268000px;}
.y231{bottom:165.489000px;}
.yb4{bottom:165.937500px;}
.y252{bottom:166.279500px;}
.y5d{bottom:169.465500px;}
.y41{bottom:170.158500px;}
.y100{bottom:175.123500px;}
.y19d{bottom:178.644000px;}
.y14c{bottom:178.701000px;}
.y117{bottom:179.337000px;}
.y17b{bottom:179.508000px;}
.y130{bottom:179.587500px;}
.ye7{bottom:180.472500px;}
.y1f9{bottom:180.562500px;}
.y95{bottom:181.870500px;}
.y1cb{bottom:182.622000px;}
.y162{bottom:183.700500px;}
.y1e2{bottom:185.092500px;}
.y230{bottom:189.324000px;}
.y1b3{bottom:189.336000px;}
.y76{bottom:189.942000px;}
.y5c{bottom:193.300500px;}
.y40{bottom:193.993500px;}
.yff{bottom:198.958500px;}
.yb3{bottom:202.378500px;}
.y14b{bottom:202.536000px;}
.ycc{bottom:203.047500px;}
.y17a{bottom:203.343000px;}
.ye6{bottom:204.309000px;}
.y1f8{bottom:204.397500px;}
.y251{bottom:205.059000px;}
.y1ca{bottom:206.457000px;}
.y1c{bottom:211.437000px;}
.y75{bottom:213.777000px;}
.y19c{bottom:214.059000px;}
.y216{bottom:214.603500px;}
.y94{bottom:215.116500px;}
.y1e1{bottom:216.166500px;}
.y3f{bottom:217.830000px;}
.y116{bottom:218.116500px;}
.y161{bottom:219.693000px;}
.y179{bottom:227.178000px;}
.y12f{bottom:227.739000px;}
.y22f{bottom:228.103500px;}
.y1b2{bottom:228.115500px;}
.y5b{bottom:228.631500px;}
.y250{bottom:228.894000px;}
.y1b{bottom:233.793000px;}
.yfe{bottom:237.739500px;}
.y215{bottom:238.440000px;}
.yb2{bottom:238.818000px;}
.ye5{bottom:239.722500px;}
.y1f7{bottom:239.812500px;}
.y14a{bottom:241.315500px;}
.y3e{bottom:241.665000px;}
.ycb{bottom:241.827000px;}
.y93{bottom:245.328000px;}
.y92{bottom:246.748500px;}
.y22e{bottom:251.940000px;}
.y74{bottom:252.556500px;}
.y91{bottom:252.933000px;}
.y1e0{bottom:254.713500px;}
.y1c9{bottom:255.381000px;}
.y8f{bottom:255.786000px;}
.y1a{bottom:256.149000px;}
.yfd{bottom:261.574500px;}
.y5a{bottom:264.045000px;}
.y12e{bottom:265.026000px;}
.y3d{bottom:265.501500px;}
.y1b1{bottom:266.896500px;}
.y115{bottom:267.040500px;}
.y8d{bottom:267.442500px;}
.y24f{bottom:267.673500px;}
.yb1{bottom:267.787500px;}
.y160{bottom:268.135500px;}
.y19b{bottom:268.735500px;}
.y178{bottom:268.768500px;}
.y73{bottom:276.393000px;}
.y214{bottom:277.219500px;}
.y19{bottom:278.505000px;}
.y1c8{bottom:279.216000px;}
.y149{bottom:280.095000px;}
.yca{bottom:280.606500px;}
.y90{bottom:282.552000px;}
.y8e{bottom:288.064500px;}
.y3c{bottom:289.336500px;}
.y22d{bottom:290.719500px;}
.y24e{bottom:291.510000px;}
.y15f{bottom:291.972000px;}
.y19a{bottom:292.572000px;}
.y1df{bottom:293.259000px;}
.ye4{bottom:294.112500px;}
.y1f6{bottom:294.291000px;}
.y12d{bottom:299.326500px;}
.yfc{bottom:300.354000px;}
.y213{bottom:301.054500px;}
.yb0{bottom:304.228500px;}
.y1b0{bottom:305.676000px;}
.y114{bottom:305.820000px;}
.y18{bottom:307.041000px;}
.yc9{bottom:309.873000px;}
.y3b{bottom:313.173000px;}
.y22c{bottom:314.554500px;}
.y72{bottom:315.172500px;}
.y15e{bottom:315.807000px;}
.y59{bottom:318.127500px;}
.y148{bottom:318.876000px;}
.yc8{bottom:322.173000px;}
.y24d{bottom:326.925000px;}
.y1c7{bottom:328.138500px;}
.y17{bottom:329.397000px;}
.y8c{bottom:329.535000px;}
.y177{bottom:330.421500px;}
.y1de{bottom:331.339500px;}
.y199{bottom:331.351500px;}
.ye3{bottom:332.338500px;}
.yaf{bottom:335.991000px;}
.yfb{bottom:339.133500px;}
.y212{bottom:339.834000px;}
.y58{bottom:341.964000px;}
.y147{bottom:342.711000px;}
.y113{bottom:344.599500px;}
.y12c{bottom:347.478000px;}
.y22b{bottom:349.969500px;}
.y15d{bottom:351.222000px;}
.y1c6{bottom:351.975000px;}
.y71{bottom:353.952000px;}
.y176{bottom:354.256500px;}
.y3a{bottom:354.564000px;}
.y1af{bottom:354.598500px;}
.y1f5{bottom:356.526000px;}
.y16{bottom:356.641500px;}
.yae{bottom:359.826000px;}
.y8b{bottom:362.779500px;}
.y57{bottom:365.799000px;}
.ye2{bottom:370.564500px;}
.yc7{bottom:373.921500px;}
.y211{bottom:375.249000px;}
.y1c5{bottom:375.810000px;}
.y70{bottom:377.788500px;}
.yfa{bottom:377.914500px;}
.y39{bottom:378.399000px;}
.y1dd{bottom:380.142000px;}
.y198{bottom:380.274000px;}
.y1f4{bottom:380.361000px;}
.y146{bottom:381.490500px;}
.y24c{bottom:381.601500px;}
.y112{bottom:383.379000px;}
.y15{bottom:383.884500px;}
.y175{bottom:384.153000px;}
.y12b{bottom:384.765000px;}
.y56{bottom:389.635500px;}
.y1ae{bottom:393.378000px;}
.yad{bottom:395.241000px;}
.y8a{bottom:399.715500px;}
.y6f{bottom:401.623500px;}
.y38{bottom:402.235500px;}
.y197{bottom:404.110500px;}
.y22a{bottom:404.646000px;}
.y145{bottom:405.327000px;}
.y15c{bottom:405.418500px;}
.y24b{bottom:405.436500px;}
.y14{bottom:406.240500px;}
.ye1{bottom:407.683500px;}
.yc6{bottom:409.336500px;}
.y1c4{bottom:417.400500px;}
.y1dc{bottom:418.687500px;}
.y1f3{bottom:418.759500px;}
.y174{bottom:419.971500px;}
.y12a{bottom:422.050500px;}
.yac{bottom:424.830000px;}
.y55{bottom:424.965000px;}
.y37{bottom:426.070500px;}
.yf9{bottom:426.837000px;}
.y229{bottom:428.481000px;}
.y210{bottom:429.925500px;}
.y1ad{bottom:432.157500px;}
.y111{bottom:432.303000px;}
.y13{bottom:434.776500px;}
.y89{bottom:436.650000px;}
.y6e{bottom:437.038500px;}
.y196{bottom:442.890000px;}
.y15b{bottom:443.268000px;}
.y24a{bottom:444.216000px;}
.y36{bottom:449.907000px;}
.yf8{bottom:450.672000px;}
.y1c3{bottom:453.565500px;}
.y20f{bottom:453.760500px;}
.y144{bottom:454.249500px;}
.y173{bottom:455.790000px;}
.ye0{bottom:456.319500px;}
.y129{bottom:456.351000px;}
.y1f2{bottom:456.394500px;}
.y12{bottom:457.132500px;}
.y1db{bottom:457.234500px;}
.y54{bottom:462.594000px;}
.yc5{bottom:464.013000px;}
.y228{bottom:467.262000px;}
.y249{bottom:468.052500px;}
.y88{bottom:469.896000px;}
.y1ac{bottom:470.938500px;}
.y110{bottom:471.082500px;}
.yf7{bottom:474.508500px;}
.yab{bottom:478.297500px;}
.y15a{bottom:479.260500px;}
.y11{bottom:479.488500px;}
.ydf{bottom:480.156000px;}
.y128{bottom:480.187500px;}
.y269{bottom:484.315500px;}
.y6d{bottom:484.381500px;}
.y172{bottom:485.686500px;}
.y1da{bottom:488.308500px;}
.y227{bottom:491.097000px;}
.y35{bottom:491.296500px;}
.y195{bottom:491.812500px;}
.y143{bottom:493.029000px;}
.y87{bottom:494.425500px;}
.y1ab{bottom:494.773500px;}
.y53{bottom:500.224500px;}
.y10{bottom:501.844500px;}
.y20e{bottom:502.684500px;}
.yc4{bottom:502.792500px;}
.y159{bottom:503.095500px;}
.y1f1{bottom:505.120500px;}
.y248{bottom:506.832000px;}
.y268{bottom:508.150500px;}
.y10f{bottom:509.862000px;}
.yf6{bottom:513.288000px;}
.yaa{bottom:514.738500px;}
.y226{bottom:514.933500px;}
.y34{bottom:515.133000px;}
.y127{bottom:515.602500px;}
.y194{bottom:515.647500px;}
.y1c2{bottom:516.747000px;}
.yde{bottom:518.382000px;}
.y86{bottom:518.859000px;}
.y6c{bottom:520.546500px;}
.y171{bottom:521.101500px;}
.yf{bottom:524.202000px;}
.y20d{bottom:526.519500px;}
.y1d9{bottom:526.855500px;}
.y247{bottom:530.667000px;}
.y142{bottom:531.808500px;}
.y52{bottom:535.554000px;}
.yf5{bottom:537.123000px;}
.y33{bottom:538.968000px;}
.y1c1{bottom:540.582000px;}
.yc3{bottom:541.572000px;}
.y1f0{bottom:543.519000px;}
.y1aa{bottom:543.696000px;}
.ye{bottom:546.558000px;}
.y267{bottom:546.931500px;}
.y10e{bottom:548.641500px;}
.ya9{bottom:551.179500px;}
.y158{bottom:551.539500px;}
.y225{bottom:553.713000px;}
.y193{bottom:554.428500px;}
.ydd{bottom:556.608000px;}
.y85{bottom:556.642500px;}
.y51{bottom:559.390500px;}
.yf4{bottom:560.959500px;}
.y32{bottom:562.804500px;}
.y1c0{bottom:564.418500px;}
.y1d8{bottom:565.401000px;}
.y246{bottom:566.082000px;}
.y1ef{bottom:567.355500px;}
.y1a9{bottom:567.532500px;}
.yd{bottom:568.914000px;}
.y126{bottom:569.506500px;}
.y141{bottom:570.589500px;}
.y266{bottom:570.766500px;}
.y10d{bottom:572.476500px;}
.y170{bottom:574.248000px;}
.y20c{bottom:575.443500px;}
.y224{bottom:577.548000px;}
.yc2{bottom:580.351500px;}
.y84{bottom:580.477500px;}
.ya8{bottom:582.942000px;}
.y6b{bottom:583.728000px;}
.y31{bottom:586.639500px;}
.y1bf{bottom:588.253500px;}
.y157{bottom:589.389000px;}
.y192{bottom:589.842000px;}
.yc{bottom:591.270000px;}
.ydc{bottom:593.725500px;}
.y50{bottom:594.720000px;}
.y20b{bottom:599.278500px;}
.yf3{bottom:599.739000px;}
.y1d7{bottom:603.481500px;}
.yc1{bottom:604.188000px;}
.y1ee{bottom:605.752500px;}
.y1a8{bottom:606.312000px;}
.y125{bottom:606.793500px;}
.y10c{bottom:607.891500px;}
.y140{bottom:609.369000px;}
.y265{bottom:609.546000px;}
.y16f{bottom:610.066500px;}
.ya7{bottom:610.186500px;}
.y1be{bottom:612.090000px;}
.yb{bottom:613.626000px;}
.y83{bottom:615.892500px;}
.y223{bottom:616.327500px;}
.ya6{bottom:616.369500px;}
.y4f{bottom:618.555000px;}
.y245{bottom:621.817500px;}
.y6a{bottom:622.507500px;}
.yda{bottom:622.990500px;}
.yf2{bottom:623.575500px;}
.y156{bottom:627.240000px;}
.yc0{bottom:628.023000px;}
.y30{bottom:628.030500px;}
.y264{bottom:633.382500px;}
.y20a{bottom:634.693500px;}
.yd9{bottom:635.292000px;}
.ya{bottom:635.983500px;}
.y16e{bottom:639.963000px;}
.y222{bottom:640.164000px;}
.y244{bottom:642.141000px;}
.y1ed{bottom:643.389000px;}
.y124{bottom:644.080500px;}
.y13f{bottom:644.782500px;}
.y1a7{bottom:645.091500px;}
.y191{bottom:645.577500px;}
.yf1{bottom:647.410500px;}
.y1bd{bottom:647.503500px;}
.ydb{bottom:649.818000px;}
.ybf{bottom:651.858000px;}
.y2f{bottom:651.867000px;}
.y1d6{bottom:652.284000px;}
.ya5{bottom:653.167500px;}
.y4e{bottom:656.185500px;}
.y9{bottom:658.339500px;}
.ya4{bottom:659.352000px;}
.y69{bottom:661.287000px;}
.y243{bottom:662.464500px;}
.y10b{bottom:662.568000px;}
.y155{bottom:663.231000px;}
.y16d{bottom:663.798000px;}
.y190{bottom:665.901000px;}
.y263{bottom:668.796000px;}
.y82{bottom:669.616500px;}
.y221{bottom:675.579000px;}
.ybe{bottom:675.694500px;}
.y2e{bottom:675.702000px;}
.y1d5{bottom:676.119000px;}
.y123{bottom:678.381000px;}
.y8{bottom:680.436000px;}
.y242{bottom:682.788000px;}
.y1a6{bottom:683.871000px;}
.yf0{bottom:686.190000px;}
.y18f{bottom:686.224500px;}
.yd8{bottom:687.040500px;}
.y209{bottom:689.370000px;}
.y4d{bottom:691.515000px;}
.y1ec{bottom:692.115000px;}
.ya3{bottom:695.793000px;}
.y13e{bottom:699.459000px;}
.y2d{bottom:699.538500px;}
.y68{bottom:700.066500px;}
.y10a{bottom:701.347500px;}
.y1bc{bottom:702.180000px;}
.y241{bottom:703.111500px;}
.y18e{bottom:706.549500px;}
.y81{bottom:706.551000px;}
.yd7{bottom:710.875500px;}
.y16c{bottom:711.192000px;}
.y154{bottom:711.675000px;}
.y1d4{bottom:714.666000px;}
.ybd{bottom:717.285000px;}
.yef{bottom:721.605000px;}
.y220{bottom:722.922000px;}
.y13d{bottom:723.295500px;}
.y2c{bottom:723.373500px;}
.y240{bottom:723.436500px;}
.y67{bottom:723.903000px;}
.y262{bottom:724.531500px;}
.y1bb{bottom:726.016500px;}
.y4c{bottom:726.036000px;}
.y122{bottom:726.532500px;}
.y18d{bottom:726.873000px;}
.ya2{bottom:727.555500px;}
.y1eb{bottom:730.513500px;}
.y1a5{bottom:732.795000px;}
.y153{bottom:735.510000px;}
.y7{bottom:738.211500px;}
.y109{bottom:740.127000px;}
.y80{bottom:743.485500px;}
.y23f{bottom:743.760000px;}
.y261{bottom:744.855000px;}
.y208{bottom:745.105500px;}
.yd6{bottom:746.290500px;}
.y16b{bottom:747.010500px;}
.y18c{bottom:747.196500px;}
.y2b{bottom:747.210000px;}
.y121{bottom:750.369000px;}
.yee{bottom:751.194000px;}
.y1d3{bottom:753.211500px;}
.ya0{bottom:756.820500px;}
.y66{bottom:762.682500px;}
.y1ba{bottom:764.796000px;}
.y260{bottom:765.178500px;}
.y207{bottom:765.429000px;}
.y18b{bottom:767.520000px;}
.y23e{bottom:768.745500px;}
.y1ea{bottom:768.910500px;}
.ya1{bottom:769.122000px;}
.y21f{bottom:770.665500px;}
.y152{bottom:770.925000px;}
.y1a4{bottom:771.574500px;}
.y13c{bottom:771.783000px;}
.y4b{bottom:773.707500px;}
.y7f{bottom:776.731500px;}
.y108{bottom:778.908000px;}
.y6{bottom:779.602500px;}
.ybc{bottom:780.466500px;}
.y9f{bottom:781.252500px;}
.y16a{bottom:782.829000px;}
.y1d2{bottom:784.287000px;}
.y25f{bottom:785.503500px;}
.y206{bottom:785.752500px;}
.y65{bottom:786.517500px;}
.y120{bottom:787.654500px;}
.y2a{bottom:788.599500px;}
.y23d{bottom:789.070500px;}
.y13b{bottom:792.108000px;}
.y18a{bottom:792.507000px;}
.y4a{bottom:797.542500px;}
.yd5{bottom:800.680500px;}
.yed{bottom:805.870500px;}
.y205{bottom:806.076000px;}
.y1e9{bottom:806.547000px;}
.y23c{bottom:809.394000px;}
.y1a3{bottom:810.354000px;}
.y25e{bottom:810.489000px;}
.y13a{bottom:812.431500px;}
.y29{bottom:812.436000px;}
.y169{bottom:812.725500px;}
.y189{bottom:812.830500px;}
.y1b9{bottom:813.718500px;}
.y107{bottom:817.687500px;}
.ybb{bottom:819.246000px;}
.y9e{bottom:820.869000px;}
.y49{bottom:821.379000px;}
.y11f{bottom:821.955000px;}
.y1d1{bottom:822.832500px;}
.yd4{bottom:824.517000px;}
.y7e{bottom:824.701500px;}
.y151{bottom:825.121500px;}
.y64{bottom:825.298500px;}
.y21e{bottom:826.399500px;}
.y25d{bottom:830.812500px;}
.y204{bottom:831.063000px;}
.y188{bottom:833.154000px;}
.y23b{bottom:834.379500px;}
.y5{bottom:835.524000px;}
.y28{bottom:836.271000px;}
.y139{bottom:837.417000px;}
.y106{bottom:841.522500px;}
.yec{bottom:844.650000px;}
.y48{bottom:845.214000px;}
.y21d{bottom:846.723000px;}
.y150{bottom:848.956500px;}
.y1a2{bottom:849.133500px;}
.y25c{bottom:851.137500px;}
.y203{bottom:851.386500px;}
.y1b8{bottom:852.499500px;}
.y23a{bottom:854.703000px;}
.y1e8{bottom:855.273000px;}
.y9d{bottom:856.284000px;}
.y138{bottom:857.740500px;}
.yba{bottom:858.025500px;}
.y187{bottom:858.139500px;}
.y27{bottom:860.107500px;}
.y168{bottom:860.119500px;}
.y1d0{bottom:861.379500px;}
.y7d{bottom:861.637500px;}
.yd3{bottom:862.743000px;}
.y63{bottom:864.078000px;}
.y4{bottom:865.113000px;}
.y21c{bottom:867.048000px;}
.y47{bottom:869.050500px;}
.y11e{bottom:870.108000px;}
.y202{bottom:871.710000px;}
.y1a1{bottom:872.970000px;}
.y239{bottom:875.028000px;}
.y25b{bottom:876.123000px;}
.y1b7{bottom:876.334500px;}
.y186{bottom:878.464500px;}
.y1e7{bottom:879.108000px;}
.y105{bottom:880.302000px;}
.y137{bottom:882.727500px;}
.yeb{bottom:883.429500px;}
.y26{bottom:883.942500px;}
.y167{bottom:883.954500px;}
.y14f{bottom:884.949000px;}
.y21b{bottom:892.033500px;}
.y46{bottom:892.885500px;}
.y11d{bottom:893.943000px;}
.y238{bottom:895.351500px;}
.y25a{bottom:896.446500px;}
.y201{bottom:896.695500px;}
.yb9{bottom:896.805000px;}
.y7c{bottom:898.572000px;}
.y185{bottom:898.788000px;}
.y1cf{bottom:899.458500px;}
.yd2{bottom:899.860500px;}
.y136{bottom:903.051000px;}
.y3{bottom:903.669000px;}
.y9c{bottom:909.751500px;}
.y21a{bottom:912.357000px;}
.y62{bottom:913.000500px;}
.y1b6{bottom:915.114000px;}
.y45{bottom:916.722000px;}
.y200{bottom:917.020500px;}
.y104{bottom:919.081500px;}
.y184{bottom:919.111500px;}
.y166{bottom:919.369500px;}
.y237{bottom:920.337000px;}
.y259{bottom:921.433500px;}
.y1a0{bottom:921.892500px;}
.y14e{bottom:922.800000px;}
.y25{bottom:925.333500px;}
.y135{bottom:928.038000px;}
.y11c{bottom:931.230000px;}
.yea{bottom:932.353500px;}
.y9b{bottom:933.588000px;}
.y7b{bottom:935.506500px;}
.yb8{bottom:935.584500px;}
.y61{bottom:936.837000px;}
.y219{bottom:937.344000px;}
.y1e5{bottom:937.734000px;}
.y1e6{bottom:938.271000px;}
.y236{bottom:940.660500px;}
.y258{bottom:941.757000px;}
.y1ff{bottom:942.006000px;}
.y183{bottom:944.097000px;}
.y2{bottom:944.766000px;}
.y1ce{bottom:948.261000px;}
.y134{bottom:948.361500px;}
.yd1{bottom:948.498000px;}
.y24{bottom:949.170000px;}
.y44{bottom:952.137000px;}
.ye9{bottom:956.188500px;}
.y218{bottom:957.667500px;}
.y103{bottom:957.862500px;}
.y14d{bottom:960.649500px;}
.y19f{bottom:960.672000px;}
.y235{bottom:960.985500px;}
.y257{bottom:962.080500px;}
.y1fe{bottom:962.329500px;}
.y1b5{bottom:964.038000px;}
.y182{bottom:964.422000px;}
.y11b{bottom:968.517000px;}
.y7a{bottom:968.752500px;}
.y9a{bottom:970.029000px;}
.y165{bottom:972.516000px;}
.y23{bottom:973.005000px;}
.y133{bottom:973.347000px;}
.y60{bottom:975.616500px;}
.y1fd{bottom:982.653000px;}
.y1cd{bottom:983.676000px;}
.yb7{bottom:984.508500px;}
.y181{bottom:984.745500px;}
.y1{bottom:985.861500px;}
.y234{bottom:985.971000px;}
.yd0{bottom:986.722500px;}
.y256{bottom:987.066000px;}
.y1b4{bottom:987.873000px;}
.y1e4{bottom:989.017500px;}
.ye8{bottom:994.968000px;}
.y102{bottom:996.642000px;}
.y22{bottom:996.841500px;}
.y132{bottom:996.993000px;}
.y79{bottom:998.019000px;}
.y5f{bottom:999.451500px;}
.y43{bottom:999.480000px;}
.y11a{bottom:1002.817500px;}
.y217{bottom:1002.978000px;}
.y233{bottom:1006.294500px;}
.y99{bottom:1006.468500px;}
.y255{bottom:1007.391000px;}
.y1fc{bottom:1007.640000px;}
.y164{bottom:1008.334500px;}
.y180{bottom:1009.731000px;}
.y78{bottom:1010.319000px;}
.y101{bottom:1020.477000px;}
.yb6{bottom:1023.288000px;}
.ycf{bottom:1024.948500px;}
.y119{bottom:1026.652500px;}
.y1fb{bottom:1027.963500px;}
.y232{bottom:1029.940500px;}
.y17f{bottom:1030.056000px;}
.y98{bottom:1030.305000px;}
.y254{bottom:1031.037000px;}
.y21{bottom:1038.231000px;}
.y1fa{bottom:1051.609500px;}
.y17e{bottom:1052.706000px;}
.y20{bottom:1062.067500px;}
.hf{height:2.869248px;}
.h1c{height:7.377450px;}
.h3{height:45.883675px;}
.h1f{height:49.090950px;}
.h4{height:49.156405px;}
.h8{height:53.798400px;}
.h6{height:53.870131px;}
.h2{height:61.200889px;}
.hc{height:61.893450px;}
.h13{height:64.107450px;}
.h7{height:64.643977px;}
.hb{height:65.481450px;}
.h1d{height:65.487450px;}
.h1e{height:66.753450px;}
.h18{height:70.053450px;}
.h5{height:77.675885px;}
.h19{height:78.608131px;}
.h10{height:82.489248px;}
.h1a{height:82.495248px;}
.h14{height:84.290131px;}
.h1{height:86.286600px;}
.h20{height:102.320400px;}
.hd{height:103.004400px;}
.h9{height:104.011248px;}
.h12{height:112.909248px;}
.h1b{height:124.161450px;}
.h11{height:124.167450px;}
.he{height:149.917248px;}
.h15{height:151.526400px;}
.h16{height:153.211248px;}
.ha{height:170.145450px;}
.h17{height:170.151450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:108.000000px;}
.x29{left:117.564000px;}
.x34{left:120.687000px;}
.x4{left:130.183500px;}
.xf{left:134.332500px;}
.x11{left:149.791500px;}
.xa{left:151.897500px;}
.x2{left:158.107500px;}
.x1{left:161.728500px;}
.xb{left:169.090500px;}
.x28{left:170.284500px;}
.x31{left:171.663000px;}
.x23{left:172.969500px;}
.x9{left:176.304000px;}
.x22{left:177.954000px;}
.x21{left:179.355000px;}
.x2c{left:182.106000px;}
.xc{left:190.527000px;}
.x17{left:216.757500px;}
.x24{left:227.325000px;}
.x33{left:229.057500px;}
.x1c{left:247.467000px;}
.x2d{left:257.844000px;}
.x1d{left:260.217000px;}
.x18{left:271.345500px;}
.x12{left:288.024000px;}
.x1b{left:318.121500px;}
.x2a{left:351.364500px;}
.x19{left:355.351500px;}
.x15{left:362.803500px;}
.x16{left:364.161000px;}
.x26{left:369.489000px;}
.x7{left:383.473500px;}
.x3{left:389.340000px;}
.x6{left:391.575000px;}
.x2e{left:398.125500px;}
.x5{left:407.166000px;}
.x10{left:415.822500px;}
.x8{left:423.267000px;}
.x25{left:446.901000px;}
.x27{left:450.222000px;}
.xe{left:454.611000px;}
.x1a{left:470.823000px;}
.x1e{left:480.664500px;}
.x32{left:493.702500px;}
.x13{left:519.948000px;}
.x2f{left:538.405500px;}
.x14{left:567.994500px;}
.x1f{left:570.243000px;}
.x2b{left:585.165000px;}
.x20{left:618.289500px;}
.x30{left:678.685500px;}
@media print{
.v1e{vertical-align:-52.741333pt;}
.v1c{vertical-align:-51.648000pt;}
.v1b{vertical-align:-14.277333pt;}
.v11{vertical-align:-10.666667pt;}
.v1{vertical-align:-8.730667pt;}
.vb{vertical-align:-7.013333pt;}
.v19{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:9.568000pt;}
.v13{vertical-align:11.797333pt;}
.v10{vertical-align:15.242667pt;}
.v14{vertical-align:17.477333pt;}
.ve{vertical-align:21.989333pt;}
.v7{vertical-align:23.136000pt;}
.v16{vertical-align:25.104000pt;}
.v6{vertical-align:26.325333pt;}
.v1d{vertical-align:27.456000pt;}
.va{vertical-align:30.394667pt;}
.v17{vertical-align:33.568000pt;}
.v3{vertical-align:43.136000pt;}
.v1a{vertical-align:45.125333pt;}
.vf{vertical-align:47.093333pt;}
.v9{vertical-align:70.773333pt;}
.vd{vertical-align:78.490667pt;}
.v12{vertical-align:82.570667pt;}
.v18{vertical-align:86.869333pt;}
.v2{vertical-align:89.904000pt;}
.vc{vertical-align:92.762667pt;}
.v5{vertical-align:119.360000pt;}
.v8{vertical-align:130.709333pt;}
.v4{vertical-align:133.637333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000125pt;}
.ls22{letter-spacing:0.000990pt;}
.ls6a{letter-spacing:0.001012pt;}
.ls15{letter-spacing:0.001036pt;}
.ls21{letter-spacing:0.001309pt;}
.ls2f{letter-spacing:0.001891pt;}
.ls65{letter-spacing:0.002405pt;}
.lsa{letter-spacing:0.002452pt;}
.ls56{letter-spacing:0.002717pt;}
.ls3a{letter-spacing:0.002868pt;}
.ls2{letter-spacing:0.002879pt;}
.ls34{letter-spacing:0.003046pt;}
.ls5{letter-spacing:0.003086pt;}
.ls27{letter-spacing:0.003328pt;}
.lsc{letter-spacing:0.003420pt;}
.ls2e{letter-spacing:0.003847pt;}
.ls5a{letter-spacing:0.003895pt;}
.ls75{letter-spacing:0.003903pt;}
.ls46{letter-spacing:0.003980pt;}
.ls2d{letter-spacing:0.004025pt;}
.ls19{letter-spacing:0.004145pt;}
.ls3b{letter-spacing:0.004695pt;}
.ls32{letter-spacing:0.004739pt;}
.ls53{letter-spacing:0.004970pt;}
.ls12{letter-spacing:0.005459pt;}
.ls33{letter-spacing:1.689334pt;}
.ls26{letter-spacing:1.769380pt;}
.lse{letter-spacing:2.283769pt;}
.ls1a{letter-spacing:2.289103pt;}
.ls2c{letter-spacing:2.371847pt;}
.ls2a{letter-spacing:2.653258pt;}
.ls54{letter-spacing:2.654692pt;}
.ls5c{letter-spacing:2.656473pt;}
.ls50{letter-spacing:2.658591pt;}
.ls63{letter-spacing:2.658717pt;}
.ls64{letter-spacing:3.352213pt;}
.ls0{letter-spacing:3.357546pt;}
.ls6{letter-spacing:3.709752pt;}
.ls3d{letter-spacing:3.715086pt;}
.ls45{letter-spacing:4.838541pt;}
.ls5b{letter-spacing:5.312473pt;}
.ls51{letter-spacing:6.377479pt;}
.ls2b{letter-spacing:6.380558pt;}
.lsf{letter-spacing:6.660948pt;}
.ls41{letter-spacing:8.663695pt;}
.ls59{letter-spacing:8.670903pt;}
.ls10{letter-spacing:8.671524pt;}
.ls60{letter-spacing:8.676236pt;}
.ls18{letter-spacing:9.026591pt;}
.ls44{letter-spacing:9.031925pt;}
.ls35{letter-spacing:9.033523pt;}
.ls49{letter-spacing:9.035139pt;}
.ls4e{letter-spacing:10.624990pt;}
.ls43{letter-spacing:10.625022pt;}
.ls36{letter-spacing:10.625891pt;}
.ls25{letter-spacing:10.626452pt;}
.ls55{letter-spacing:10.628970pt;}
.ls69{letter-spacing:10.630323pt;}
.ls4a{letter-spacing:13.281087pt;}
.ls30{letter-spacing:13.283608pt;}
.ls16{letter-spacing:13.705392pt;}
.ls14{letter-spacing:14.164905pt;}
.ls23{letter-spacing:14.166323pt;}
.ls40{letter-spacing:14.166642pt;}
.ls52{letter-spacing:14.167786pt;}
.ls74{letter-spacing:14.168655pt;}
.ls24{letter-spacing:14.171976pt;}
.ls48{letter-spacing:15.185891pt;}
.ls1f{letter-spacing:15.297036pt;}
.ls17{letter-spacing:15.668145pt;}
.ls67{letter-spacing:16.159477pt;}
.ls66{letter-spacing:16.162405pt;}
.ls13{letter-spacing:16.823925pt;}
.ls6d{letter-spacing:17.319786pt;}
.ls20{letter-spacing:17.706238pt;}
.ls68{letter-spacing:17.707657pt;}
.ls38{letter-spacing:17.707679pt;}
.ls5e{letter-spacing:17.707703pt;}
.ls8{letter-spacing:17.707976pt;}
.ls1d{letter-spacing:17.709119pt;}
.ls72{letter-spacing:17.709988pt;}
.ls11{letter-spacing:17.711572pt;}
.ls4d{letter-spacing:17.713036pt;}
.ls39{letter-spacing:17.713309pt;}
.ls7{letter-spacing:17.714452pt;}
.ls1e{letter-spacing:17.949258pt;}
.ls77{letter-spacing:18.382517pt;}
.ls1b{letter-spacing:19.009207pt;}
.ls4f{letter-spacing:19.121036pt;}
.ls76{letter-spacing:19.414436pt;}
.ls5d{letter-spacing:19.654369pt;}
.ls4b{letter-spacing:19.821119pt;}
.ls61{letter-spacing:20.486369pt;}
.ls6c{letter-spacing:20.574933pt;}
.ls29{letter-spacing:20.800990pt;}
.ls5f{letter-spacing:20.801036pt;}
.lsb{letter-spacing:20.802452pt;}
.ls71{letter-spacing:20.803915pt;}
.ls6e{letter-spacing:20.804267pt;}
.ls4c{letter-spacing:20.806369pt;}
.ls37{letter-spacing:20.807786pt;}
.ls1c{letter-spacing:23.458591pt;}
.ls57{letter-spacing:23.460025pt;}
.ls73{letter-spacing:24.084905pt;}
.ls3f{letter-spacing:24.123976pt;}
.ls3e{letter-spacing:24.125119pt;}
.ls6b{letter-spacing:25.693119pt;}
.ls28{letter-spacing:25.731980pt;}
.ls1{letter-spacing:26.594405pt;}
.ls6f{letter-spacing:27.294933pt;}
.ls62{letter-spacing:28.813383pt;}
.ls3c{letter-spacing:29.833523pt;}
.lsd{letter-spacing:31.149119pt;}
.ls70{letter-spacing:31.212776pt;}
.ls9{letter-spacing:31.215625pt;}
.ls4{letter-spacing:31.880533pt;}
.ls78{letter-spacing:58.306405pt;}
.ls47{letter-spacing:88.000473pt;}
.ls42{letter-spacing:98.210591pt;}
.ls31{letter-spacing:172.431541pt;}
.wse4{word-spacing:-63.761067pt;}
.ws1b{word-spacing:-52.826044pt;}
.ws5f{word-spacing:-50.479636pt;}
.ws2a{word-spacing:-40.590295pt;}
.wsb{word-spacing:-37.899668pt;}
.ws68{word-spacing:-35.859224pt;}
.ws1e{word-spacing:-35.036706pt;}
.wsb7{word-spacing:-33.233482pt;}
.ws1f{word-spacing:-32.039936pt;}
.ws66{word-spacing:-31.211042pt;}
.ws1c{word-spacing:-31.147281pt;}
.ws4c{word-spacing:-30.005958pt;}
.ws46{word-spacing:-29.942197pt;}
.ws51{word-spacing:-29.521250pt;}
.ws7{word-spacing:-28.928024pt;}
.ws53{word-spacing:-26.122909pt;}
.ws7a{word-spacing:-23.405347pt;}
.ws50{word-spacing:-22.864719pt;}
.ws5b{word-spacing:-19.732720pt;}
.ws1d{word-spacing:-19.408869pt;}
.wsce{word-spacing:-19.153824pt;}
.ws29{word-spacing:-17.343010pt;}
.ws2d{word-spacing:-17.183607pt;}
.ws109{word-spacing:-16.992324pt;}
.wscf{word-spacing:-16.609758pt;}
.wsd2{word-spacing:-16.482236pt;}
.ws6e{word-spacing:-16.354714pt;}
.wsa5{word-spacing:-16.227191pt;}
.ws7e{word-spacing:-16.220815pt;}
.wscb{word-spacing:-16.163430pt;}
.ws44{word-spacing:-15.972147pt;}
.ws45{word-spacing:-15.908386pt;}
.ws26{word-spacing:-15.525820pt;}
.ws85{word-spacing:-15.462059pt;}
.ws6d{word-spacing:-15.079492pt;}
.ws23{word-spacing:-15.015731pt;}
.wsdb{word-spacing:-14.818072pt;}
.ws83{word-spacing:-14.626789pt;}
.wsbb{word-spacing:-14.498921pt;}
.ws69{word-spacing:-14.314359pt;}
.wsd6{word-spacing:-14.250598pt;}
.ws7f{word-spacing:-14.109053pt;}
.ws9c{word-spacing:-14.091648pt;}
.ws22{word-spacing:-14.070753pt;}
.wse6{word-spacing:-14.059315pt;}
.ws39{word-spacing:-13.994240pt;}
.wsb2{word-spacing:-13.868032pt;}
.ws111{word-spacing:-13.804271pt;}
.wsae{word-spacing:-13.734134pt;}
.ws88{word-spacing:-13.230421pt;}
.wsa4{word-spacing:-13.166660pt;}
.wse5{word-spacing:-12.975377pt;}
.wsdc{word-spacing:-12.911616pt;}
.wsdf{word-spacing:-12.784094pt;}
.ws9f{word-spacing:-12.777718pt;}
.wsf2{word-spacing:-12.753465pt;}
.ws84{word-spacing:-12.720333pt;}
.ws6{word-spacing:-12.520738pt;}
.wsa3{word-spacing:-12.401527pt;}
.wsf9{word-spacing:-12.346192pt;}
.ws24{word-spacing:-12.082722pt;}
.wsaf{word-spacing:-11.955200pt;}
.ws19{word-spacing:-11.948824pt;}
.ws10b{word-spacing:-11.700156pt;}
.ws4b{word-spacing:-11.673839pt;}
.ws101{word-spacing:-11.636395pt;}
.ws74{word-spacing:-11.589917pt;}
.ws75{word-spacing:-11.572634pt;}
.ws2c{word-spacing:-11.508873pt;}
.ws61{word-spacing:-11.381350pt;}
.ws32{word-spacing:-11.317589pt;}
.wse0{word-spacing:-11.311213pt;}
.ws6c{word-spacing:-11.253828pt;}
.wsa0{word-spacing:-11.126306pt;}
.wsfc{word-spacing:-11.119930pt;}
.ws95{word-spacing:-11.066191pt;}
.ws92{word-spacing:-11.062545pt;}
.wsd3{word-spacing:-10.935023pt;}
.ws8e{word-spacing:-10.743740pt;}
.ws11{word-spacing:-10.658918pt;}
.wsb0{word-spacing:-10.616218pt;}
.ws86{word-spacing:-10.552457pt;}
.wsef{word-spacing:-10.542554pt;}
.wsdd{word-spacing:-10.482319pt;}
.ws41{word-spacing:-10.435043pt;}
.ws4d{word-spacing:-10.434608pt;}
.ws8b{word-spacing:-10.433377pt;}
.ws47{word-spacing:-10.429715pt;}
.ws79{word-spacing:-10.427631pt;}
.wsaa{word-spacing:-10.427409pt;}
.ws1a{word-spacing:-10.424934pt;}
.ws78{word-spacing:-10.411877pt;}
.ws62{word-spacing:-10.407719pt;}
.wse3{word-spacing:-10.403446pt;}
.ws8d{word-spacing:-10.403292pt;}
.wseb{word-spacing:-10.403246pt;}
.ws6f{word-spacing:-10.379006pt;}
.ws48{word-spacing:-10.361173pt;}
.wsd8{word-spacing:-10.297412pt;}
.wsb1{word-spacing:-9.978607pt;}
.ws9e{word-spacing:-9.902554pt;}
.wse1{word-spacing:-9.851085pt;}
.ws113{word-spacing:-9.787324pt;}
.wsa2{word-spacing:-9.723563pt;}
.wse{word-spacing:-9.669826pt;}
.ws34{word-spacing:-9.659802pt;}
.ws97{word-spacing:-9.641815pt;}
.ws99{word-spacing:-9.611644pt;}
.ws77{word-spacing:-9.596041pt;}
.ws65{word-spacing:-9.468518pt;}
.wsd{word-spacing:-9.437099pt;}
.ws64{word-spacing:-9.404757pt;}
.ws10d{word-spacing:-9.340996pt;}
.ws105{word-spacing:-9.277235pt;}
.ws27{word-spacing:-9.213474pt;}
.wsca{word-spacing:-9.149713pt;}
.ws13{word-spacing:-9.088008pt;}
.wsde{word-spacing:-9.085952pt;}
.ws28{word-spacing:-8.958430pt;}
.wscd{word-spacing:-8.952054pt;}
.wsb9{word-spacing:-8.797098pt;}
.ws114{word-spacing:-8.767147pt;}
.ws73{word-spacing:-8.639625pt;}
.wsf5{word-spacing:-8.273461pt;}
.ws33{word-spacing:-8.257058pt;}
.ws4a{word-spacing:-8.193297pt;}
.ws4{word-spacing:-8.157098pt;}
.wsd4{word-spacing:-8.129536pt;}
.ws5a{word-spacing:-8.002014pt;}
.ws10f{word-spacing:-7.938253pt;}
.wsbf{word-spacing:-7.924370pt;}
.wsa8{word-spacing:-7.746970pt;}
.ws9a{word-spacing:-7.691643pt;}
.wsa1{word-spacing:-7.683209pt;}
.wsff{word-spacing:-7.549310pt;}
.ws89{word-spacing:-7.428164pt;}
.ws7b{word-spacing:-7.421788pt;}
.ws40{word-spacing:-7.236881pt;}
.wsf{word-spacing:-7.168006pt;}
.ws36{word-spacing:-7.109359pt;}
.ws3e{word-spacing:-7.045598pt;}
.ws3f{word-spacing:-6.981837pt;}
.ws93{word-spacing:-6.784177pt;}
.wsda{word-spacing:-6.726793pt;}
.ws58{word-spacing:-6.663031pt;}
.ws71{word-spacing:-6.535509pt;}
.wsa6{word-spacing:-6.529133pt;}
.ws7c{word-spacing:-6.471748pt;}
.wsfd{word-spacing:-6.465372pt;}
.wsd1{word-spacing:-6.337850pt;}
.wsbe{word-spacing:-6.178914pt;}
.wsd7{word-spacing:-6.025421pt;}
.wscc{word-spacing:-5.961660pt;}
.ws94{word-spacing:-5.897899pt;}
.ws8f{word-spacing:-5.827761pt;}
.wsa7{word-spacing:-5.706615pt;}
.wse8{word-spacing:-5.700239pt;}
.wsfe{word-spacing:-5.642854pt;}
.ws81{word-spacing:-5.515332pt;}
.ws82{word-spacing:-5.451571pt;}
.ws2e{word-spacing:-5.387810pt;}
.ws9d{word-spacing:-5.248004pt;}
.ws35{word-spacing:-5.196527pt;}
.ws87{word-spacing:-5.069005pt;}
.ws90{word-spacing:-5.058589pt;}
.wsea{word-spacing:-4.941483pt;}
.ws8a{word-spacing:-4.807584pt;}
.wsa9{word-spacing:-4.495155pt;}
.ws3a{word-spacing:-4.240111pt;}
.ws2f{word-spacing:-4.176350pt;}
.ws30{word-spacing:-4.048828pt;}
.ws20{word-spacing:-3.978691pt;}
.wsd0{word-spacing:-3.921306pt;}
.ws91{word-spacing:-3.730022pt;}
.wsb4{word-spacing:-3.666261pt;}
.ws5{word-spacing:-3.502548pt;}
.wsb5{word-spacing:-3.474978pt;}
.ws106{word-spacing:-3.469908pt;}
.ws10a{word-spacing:-3.347456pt;}
.ws43{word-spacing:-3.188053pt;}
.ws5e{word-spacing:-3.172772pt;}
.ws31{word-spacing:-3.156173pt;}
.ws112{word-spacing:-2.709845pt;}
.ws14{word-spacing:-2.629820pt;}
.ws63{word-spacing:-2.364254pt;}
.ws9{word-spacing:-2.338911pt;}
.ws7d{word-spacing:-2.263518pt;}
.ws8{word-spacing:-1.873456pt;}
.ws37{word-spacing:-1.498385pt;}
.ws115{word-spacing:-1.434624pt;}
.wsec{word-spacing:-1.428248pt;}
.ws117{word-spacing:-1.370863pt;}
.wsed{word-spacing:-1.243341pt;}
.ws12{word-spacing:-1.233456pt;}
.ws25{word-spacing:-1.052058pt;}
.ws10{word-spacing:-0.768001pt;}
.wsb3{word-spacing:-0.605730pt;}
.wsad{word-spacing:-0.541969pt;}
.ws6b{word-spacing:-0.350686pt;}
.ws1{word-spacing:-0.110200pt;}
.ws3c{word-spacing:-0.095642pt;}
.ws15{word-spacing:-0.091815pt;}
.ws3b{word-spacing:-0.083649pt;}
.ws3{word-spacing:-0.076513pt;}
.ws96{word-spacing:-0.069818pt;}
.ws108{word-spacing:-0.063761pt;}
.wsa{word-spacing:-0.058182pt;}
.wsc{word-spacing:-0.042507pt;}
.ws3d{word-spacing:-0.031881pt;}
.ws17{word-spacing:0.000000pt;}
.ws67{word-spacing:0.006615pt;}
.wsac{word-spacing:0.031881pt;}
.wsab{word-spacing:0.038257pt;}
.ws102{word-spacing:0.054185pt;}
.ws100{word-spacing:0.159403pt;}
.ws55{word-spacing:0.346771pt;}
.ws4e{word-spacing:0.352104pt;}
.ws70{word-spacing:0.382566pt;}
.ws18{word-spacing:0.669491pt;}
.wse2{word-spacing:0.733252pt;}
.wsee{word-spacing:1.052058pt;}
.ws9b{word-spacing:5.166550pt;}
.wsc7{word-spacing:5.341095pt;}
.wsfa{word-spacing:6.213823pt;}
.wsfb{word-spacing:10.228372pt;}
.wsba{word-spacing:11.159282pt;}
.wsf3{word-spacing:12.148374pt;}
.wsf8{word-spacing:15.464740pt;}
.ws56{word-spacing:16.781187pt;}
.ws5d{word-spacing:16.789009pt;}
.ws80{word-spacing:19.718931pt;}
.wse7{word-spacing:19.958615pt;}
.ws42{word-spacing:20.321597pt;}
.wsf0{word-spacing:20.817472pt;}
.ws10c{word-spacing:21.168674pt;}
.ws54{word-spacing:21.831789pt;}
.wsf1{word-spacing:21.864745pt;}
.ws98{word-spacing:21.900264pt;}
.ws16{word-spacing:21.908303pt;}
.wsc3{word-spacing:21.922927pt;}
.ws104{word-spacing:22.252612pt;}
.ws76{word-spacing:22.262931pt;}
.ws2b{word-spacing:22.300264pt;}
.ws38{word-spacing:23.137498pt;}
.wsd9{word-spacing:23.321129pt;}
.ws49{word-spacing:23.414931pt;}
.ws57{word-spacing:23.417986pt;}
.ws59{word-spacing:23.420264pt;}
.ws60{word-spacing:23.423676pt;}
.ws8c{word-spacing:23.425282pt;}
.ws118{word-spacing:23.910400pt;}
.ws110{word-spacing:24.037922pt;}
.ws2{word-spacing:24.178129pt;}
.wsd5{word-spacing:25.676264pt;}
.ws5c{word-spacing:28.832828pt;}
.ws116{word-spacing:30.541551pt;}
.ws107{word-spacing:30.669073pt;}
.ws6a{word-spacing:32.869937pt;}
.ws0{word-spacing:38.900600pt;}
.wsb8{word-spacing:39.202942pt;}
.ws10e{word-spacing:41.064761pt;}
.wsf4{word-spacing:43.566582pt;}
.ws103{word-spacing:43.887793pt;}
.wsbd{word-spacing:45.893856pt;}
.wsf6{word-spacing:50.955679pt;}
.wsf7{word-spacing:55.319319pt;}
.wsc4{word-spacing:55.435683pt;}
.wsc1{word-spacing:58.112048pt;}
.wse9{word-spacing:65.027468pt;}
.ws52{word-spacing:67.199490pt;}
.wsc5{word-spacing:72.832061pt;}
.wsc8{word-spacing:73.821152pt;}
.wsc6{word-spacing:88.948438pt;}
.ws21{word-spacing:98.977073pt;}
.ws72{word-spacing:104.556264pt;}
.wsc9{word-spacing:105.239360pt;}
.wsbc{word-spacing:138.461206pt;}
.wsc2{word-spacing:169.006686pt;}
.wsc0{word-spacing:244.879304pt;}
.wsb6{word-spacing:256.463313pt;}
.ws4f{word-spacing:1052.975759pt;}
._2c{margin-left:-33.602082pt;}
._26{margin-left:-31.880533pt;}
._2b{margin-left:-29.400171pt;}
._29{margin-left:-14.154957pt;}
._28{margin-left:-11.094426pt;}
._1{margin-left:-9.807800pt;}
._35{margin-left:-8.263392pt;}
._23{margin-left:-6.949956pt;}
._5{margin-left:-5.968019pt;}
._17{margin-left:-5.056229pt;}
._7{margin-left:-4.131706pt;}
._0{margin-left:-3.195800pt;}
._6{margin-left:-2.065853pt;}
._8{margin-left:-0.999455pt;}
._e{width:0.931703pt;}
._4{width:1.989340pt;}
._2{width:3.195800pt;}
._33{width:4.743810pt;}
._31{width:15.388705pt;}
._44{width:16.678495pt;}
._a{width:17.746262pt;}
._3f{width:19.258198pt;}
._c{width:20.404297pt;}
._12{width:21.410955pt;}
._3a{width:22.844856pt;}
._1a{width:24.281170pt;}
._36{width:26.093407pt;}
._9{width:27.054568pt;}
._b{width:28.230335pt;}
._f{width:29.470305pt;}
._d{width:31.185481pt;}
._54{width:32.263100pt;}
._30{width:33.244229pt;}
._45{width:34.243970pt;}
._24{width:36.151013pt;}
._19{width:38.079874pt;}
._1c{width:40.367285pt;}
._51{width:41.345263pt;}
._39{width:42.867150pt;}
._15{width:45.248353pt;}
._32{width:47.578491pt;}
._50{width:48.777216pt;}
._13{width:50.215972pt;}
._3{width:52.014400pt;}
._38{width:53.010159pt;}
._27{width:54.625511pt;}
._2d{width:55.912137pt;}
._4a{width:56.843684pt;}
._16{width:57.767526pt;}
._1f{width:59.219743pt;}
._21{width:61.834727pt;}
._3b{width:62.767555pt;}
._11{width:63.824828pt;}
._4c{width:80.465522pt;}
._1d{width:82.692391pt;}
._2f{width:84.164373pt;}
._20{width:87.097617pt;}
._46{width:91.174448pt;}
._34{width:99.068889pt;}
._42{width:116.137013pt;}
._14{width:118.276779pt;}
._4e{width:120.340225pt;}
._3e{width:121.429266pt;}
._4f{width:144.872848pt;}
._47{width:181.243499pt;}
._4b{width:184.591253pt;}
._37{width:193.289230pt;}
._40{width:266.426196pt;}
._49{width:273.749146pt;}
._41{width:294.994114pt;}
._53{width:316.253147pt;}
._4d{width:365.472859pt;}
._48{width:368.626316pt;}
._43{width:452.915740pt;}
._18{width:506.772958pt;}
._52{width:513.760833pt;}
._3d{width:528.867142pt;}
._3c{width:622.214129pt;}
._1b{width:751.475168pt;}
._22{width:1130.215921pt;}
._25{width:1572.207635pt;}
._1e{width:1581.975830pt;}
._2a{width:1869.181168pt;}
._10{width:1971.951261pt;}
._2e{width:2001.077316pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.y97{bottom:89.240000pt;}
.y1e{bottom:96.000000pt;}
.yce{bottom:111.545333pt;}
.y5e{bottom:117.186667pt;}
.y17d{bottom:117.188000pt;}
.yb5{bottom:121.750667pt;}
.y118{bottom:124.940000pt;}
.y253{bottom:126.616000pt;}
.y96{bottom:128.830667pt;}
.y131{bottom:129.144000pt;}
.y163{bottom:129.645333pt;}
.y42{bottom:130.064000pt;}
.y1e3{bottom:130.264000pt;}
.y1d{bottom:132.969333pt;}
.y77{bottom:134.366667pt;}
.y19e{bottom:137.608000pt;}
.y17c{bottom:138.374667pt;}
.y1cc{bottom:141.142667pt;}
.ycd{bottom:146.016000pt;}
.y231{bottom:147.101333pt;}
.yb4{bottom:147.500000pt;}
.y252{bottom:147.804000pt;}
.y5d{bottom:150.636000pt;}
.y41{bottom:151.252000pt;}
.y100{bottom:155.665333pt;}
.y19d{bottom:158.794667pt;}
.y14c{bottom:158.845333pt;}
.y117{bottom:159.410667pt;}
.y17b{bottom:159.562667pt;}
.y130{bottom:159.633333pt;}
.ye7{bottom:160.420000pt;}
.y1f9{bottom:160.500000pt;}
.y95{bottom:161.662667pt;}
.y1cb{bottom:162.330667pt;}
.y162{bottom:163.289333pt;}
.y1e2{bottom:164.526667pt;}
.y230{bottom:168.288000pt;}
.y1b3{bottom:168.298667pt;}
.y76{bottom:168.837333pt;}
.y5c{bottom:171.822667pt;}
.y40{bottom:172.438667pt;}
.yff{bottom:176.852000pt;}
.yb3{bottom:179.892000pt;}
.y14b{bottom:180.032000pt;}
.ycc{bottom:180.486667pt;}
.y17a{bottom:180.749333pt;}
.ye6{bottom:181.608000pt;}
.y1f8{bottom:181.686667pt;}
.y251{bottom:182.274667pt;}
.y1ca{bottom:183.517333pt;}
.y1c{bottom:187.944000pt;}
.y75{bottom:190.024000pt;}
.y19c{bottom:190.274667pt;}
.y216{bottom:190.758667pt;}
.y94{bottom:191.214667pt;}
.y1e1{bottom:192.148000pt;}
.y3f{bottom:193.626667pt;}
.y116{bottom:193.881333pt;}
.y161{bottom:195.282667pt;}
.y179{bottom:201.936000pt;}
.y12f{bottom:202.434667pt;}
.y22f{bottom:202.758667pt;}
.y1b2{bottom:202.769333pt;}
.y5b{bottom:203.228000pt;}
.y250{bottom:203.461333pt;}
.y1b{bottom:207.816000pt;}
.yfe{bottom:211.324000pt;}
.y215{bottom:211.946667pt;}
.yb2{bottom:212.282667pt;}
.ye5{bottom:213.086667pt;}
.y1f7{bottom:213.166667pt;}
.y14a{bottom:214.502667pt;}
.y3e{bottom:214.813333pt;}
.ycb{bottom:214.957333pt;}
.y93{bottom:218.069333pt;}
.y92{bottom:219.332000pt;}
.y22e{bottom:223.946667pt;}
.y74{bottom:224.494667pt;}
.y91{bottom:224.829333pt;}
.y1e0{bottom:226.412000pt;}
.y1c9{bottom:227.005333pt;}
.y8f{bottom:227.365333pt;}
.y1a{bottom:227.688000pt;}
.yfd{bottom:232.510667pt;}
.y5a{bottom:234.706667pt;}
.y12e{bottom:235.578667pt;}
.y3d{bottom:236.001333pt;}
.y1b1{bottom:237.241333pt;}
.y115{bottom:237.369333pt;}
.y8d{bottom:237.726667pt;}
.y24f{bottom:237.932000pt;}
.yb1{bottom:238.033333pt;}
.y160{bottom:238.342667pt;}
.y19b{bottom:238.876000pt;}
.y178{bottom:238.905333pt;}
.y73{bottom:245.682667pt;}
.y214{bottom:246.417333pt;}
.y19{bottom:247.560000pt;}
.y1c8{bottom:248.192000pt;}
.y149{bottom:248.973333pt;}
.yca{bottom:249.428000pt;}
.y90{bottom:251.157333pt;}
.y8e{bottom:256.057333pt;}
.y3c{bottom:257.188000pt;}
.y22d{bottom:258.417333pt;}
.y24e{bottom:259.120000pt;}
.y15f{bottom:259.530667pt;}
.y19a{bottom:260.064000pt;}
.y1df{bottom:260.674667pt;}
.ye4{bottom:261.433333pt;}
.y1f6{bottom:261.592000pt;}
.y12d{bottom:266.068000pt;}
.yfc{bottom:266.981333pt;}
.y213{bottom:267.604000pt;}
.yb0{bottom:270.425333pt;}
.y1b0{bottom:271.712000pt;}
.y114{bottom:271.840000pt;}
.y18{bottom:272.925333pt;}
.yc9{bottom:275.442667pt;}
.y3b{bottom:278.376000pt;}
.y22c{bottom:279.604000pt;}
.y72{bottom:280.153333pt;}
.y15e{bottom:280.717333pt;}
.y59{bottom:282.780000pt;}
.y148{bottom:283.445333pt;}
.yc8{bottom:286.376000pt;}
.y24d{bottom:290.600000pt;}
.y1c7{bottom:291.678667pt;}
.y17{bottom:292.797333pt;}
.y8c{bottom:292.920000pt;}
.y177{bottom:293.708000pt;}
.y1de{bottom:294.524000pt;}
.y199{bottom:294.534667pt;}
.ye3{bottom:295.412000pt;}
.yaf{bottom:298.658667pt;}
.yfb{bottom:301.452000pt;}
.y212{bottom:302.074667pt;}
.y58{bottom:303.968000pt;}
.y147{bottom:304.632000pt;}
.y113{bottom:306.310667pt;}
.y12c{bottom:308.869333pt;}
.y22b{bottom:311.084000pt;}
.y15d{bottom:312.197333pt;}
.y1c6{bottom:312.866667pt;}
.y71{bottom:314.624000pt;}
.y176{bottom:314.894667pt;}
.y3a{bottom:315.168000pt;}
.y1af{bottom:315.198667pt;}
.y1f5{bottom:316.912000pt;}
.y16{bottom:317.014667pt;}
.yae{bottom:319.845333pt;}
.y8b{bottom:322.470667pt;}
.y57{bottom:325.154667pt;}
.ye2{bottom:329.390667pt;}
.yc7{bottom:332.374667pt;}
.y211{bottom:333.554667pt;}
.y1c5{bottom:334.053333pt;}
.y70{bottom:335.812000pt;}
.yfa{bottom:335.924000pt;}
.y39{bottom:336.354667pt;}
.y1dd{bottom:337.904000pt;}
.y198{bottom:338.021333pt;}
.y1f4{bottom:338.098667pt;}
.y146{bottom:339.102667pt;}
.y24c{bottom:339.201333pt;}
.y112{bottom:340.781333pt;}
.y15{bottom:341.230667pt;}
.y175{bottom:341.469333pt;}
.y12b{bottom:342.013333pt;}
.y56{bottom:346.342667pt;}
.y1ae{bottom:349.669333pt;}
.yad{bottom:351.325333pt;}
.y8a{bottom:355.302667pt;}
.y6f{bottom:356.998667pt;}
.y38{bottom:357.542667pt;}
.y197{bottom:359.209333pt;}
.y22a{bottom:359.685333pt;}
.y145{bottom:360.290667pt;}
.y15c{bottom:360.372000pt;}
.y24b{bottom:360.388000pt;}
.y14{bottom:361.102667pt;}
.ye1{bottom:362.385333pt;}
.yc6{bottom:363.854667pt;}
.y1c4{bottom:371.022667pt;}
.y1dc{bottom:372.166667pt;}
.y1f3{bottom:372.230667pt;}
.y174{bottom:373.308000pt;}
.y12a{bottom:375.156000pt;}
.yac{bottom:377.626667pt;}
.y55{bottom:377.746667pt;}
.y37{bottom:378.729333pt;}
.yf9{bottom:379.410667pt;}
.y229{bottom:380.872000pt;}
.y210{bottom:382.156000pt;}
.y1ad{bottom:384.140000pt;}
.y111{bottom:384.269333pt;}
.y13{bottom:386.468000pt;}
.y89{bottom:388.133333pt;}
.y6e{bottom:388.478667pt;}
.y196{bottom:393.680000pt;}
.y15b{bottom:394.016000pt;}
.y24a{bottom:394.858667pt;}
.y36{bottom:399.917333pt;}
.yf8{bottom:400.597333pt;}
.y1c3{bottom:403.169333pt;}
.y20f{bottom:403.342667pt;}
.y144{bottom:403.777333pt;}
.y173{bottom:405.146667pt;}
.ye0{bottom:405.617333pt;}
.y129{bottom:405.645333pt;}
.y1f2{bottom:405.684000pt;}
.y12{bottom:406.340000pt;}
.y1db{bottom:406.430667pt;}
.y54{bottom:411.194667pt;}
.yc5{bottom:412.456000pt;}
.y228{bottom:415.344000pt;}
.y249{bottom:416.046667pt;}
.y88{bottom:417.685333pt;}
.y1ac{bottom:418.612000pt;}
.y110{bottom:418.740000pt;}
.yf7{bottom:421.785333pt;}
.yab{bottom:425.153333pt;}
.y15a{bottom:426.009333pt;}
.y11{bottom:426.212000pt;}
.ydf{bottom:426.805333pt;}
.y128{bottom:426.833333pt;}
.y269{bottom:430.502667pt;}
.y6d{bottom:430.561333pt;}
.y172{bottom:431.721333pt;}
.y1da{bottom:434.052000pt;}
.y227{bottom:436.530667pt;}
.y35{bottom:436.708000pt;}
.y195{bottom:437.166667pt;}
.y143{bottom:438.248000pt;}
.y87{bottom:439.489333pt;}
.y1ab{bottom:439.798667pt;}
.y53{bottom:444.644000pt;}
.y10{bottom:446.084000pt;}
.y20e{bottom:446.830667pt;}
.yc4{bottom:446.926667pt;}
.y159{bottom:447.196000pt;}
.y1f1{bottom:448.996000pt;}
.y248{bottom:450.517333pt;}
.y268{bottom:451.689333pt;}
.y10f{bottom:453.210667pt;}
.yf6{bottom:456.256000pt;}
.yaa{bottom:457.545333pt;}
.y226{bottom:457.718667pt;}
.y34{bottom:457.896000pt;}
.y127{bottom:458.313333pt;}
.y194{bottom:458.353333pt;}
.y1c2{bottom:459.330667pt;}
.yde{bottom:460.784000pt;}
.y86{bottom:461.208000pt;}
.y6c{bottom:462.708000pt;}
.y171{bottom:463.201333pt;}
.yf{bottom:465.957333pt;}
.y20d{bottom:468.017333pt;}
.y1d9{bottom:468.316000pt;}
.y247{bottom:471.704000pt;}
.y142{bottom:472.718667pt;}
.y52{bottom:476.048000pt;}
.yf5{bottom:477.442667pt;}
.y33{bottom:479.082667pt;}
.y1c1{bottom:480.517333pt;}
.yc3{bottom:481.397333pt;}
.y1f0{bottom:483.128000pt;}
.y1aa{bottom:483.285333pt;}
.ye{bottom:485.829333pt;}
.y267{bottom:486.161333pt;}
.y10e{bottom:487.681333pt;}
.ya9{bottom:489.937333pt;}
.y158{bottom:490.257333pt;}
.y225{bottom:492.189333pt;}
.y193{bottom:492.825333pt;}
.ydd{bottom:494.762667pt;}
.y85{bottom:494.793333pt;}
.y51{bottom:497.236000pt;}
.yf4{bottom:498.630667pt;}
.y32{bottom:500.270667pt;}
.y1c0{bottom:501.705333pt;}
.y1d8{bottom:502.578667pt;}
.y246{bottom:503.184000pt;}
.y1ef{bottom:504.316000pt;}
.y1a9{bottom:504.473333pt;}
.yd{bottom:505.701333pt;}
.y126{bottom:506.228000pt;}
.y141{bottom:507.190667pt;}
.y266{bottom:507.348000pt;}
.y10d{bottom:508.868000pt;}
.y170{bottom:510.442667pt;}
.y20c{bottom:511.505333pt;}
.y224{bottom:513.376000pt;}
.yc2{bottom:515.868000pt;}
.y84{bottom:515.980000pt;}
.ya8{bottom:518.170667pt;}
.y6b{bottom:518.869333pt;}
.y31{bottom:521.457333pt;}
.y1bf{bottom:522.892000pt;}
.y157{bottom:523.901333pt;}
.y192{bottom:524.304000pt;}
.yc{bottom:525.573333pt;}
.ydc{bottom:527.756000pt;}
.y50{bottom:528.640000pt;}
.y20b{bottom:532.692000pt;}
.yf3{bottom:533.101333pt;}
.y1d7{bottom:536.428000pt;}
.yc1{bottom:537.056000pt;}
.y1ee{bottom:538.446667pt;}
.y1a8{bottom:538.944000pt;}
.y125{bottom:539.372000pt;}
.y10c{bottom:540.348000pt;}
.y140{bottom:541.661333pt;}
.y265{bottom:541.818667pt;}
.y16f{bottom:542.281333pt;}
.ya7{bottom:542.388000pt;}
.y1be{bottom:544.080000pt;}
.yb{bottom:545.445333pt;}
.y83{bottom:547.460000pt;}
.y223{bottom:547.846667pt;}
.ya6{bottom:547.884000pt;}
.y4f{bottom:549.826667pt;}
.y245{bottom:552.726667pt;}
.y6a{bottom:553.340000pt;}
.yda{bottom:553.769333pt;}
.yf2{bottom:554.289333pt;}
.y156{bottom:557.546667pt;}
.yc0{bottom:558.242667pt;}
.y30{bottom:558.249333pt;}
.y264{bottom:563.006667pt;}
.y20a{bottom:564.172000pt;}
.yd9{bottom:564.704000pt;}
.ya{bottom:565.318667pt;}
.y16e{bottom:568.856000pt;}
.y222{bottom:569.034667pt;}
.y244{bottom:570.792000pt;}
.y1ed{bottom:571.901333pt;}
.y124{bottom:572.516000pt;}
.y13f{bottom:573.140000pt;}
.y1a7{bottom:573.414667pt;}
.y191{bottom:573.846667pt;}
.yf1{bottom:575.476000pt;}
.y1bd{bottom:575.558667pt;}
.ydb{bottom:577.616000pt;}
.ybf{bottom:579.429333pt;}
.y2f{bottom:579.437333pt;}
.y1d6{bottom:579.808000pt;}
.ya5{bottom:580.593333pt;}
.y4e{bottom:583.276000pt;}
.y9{bottom:585.190667pt;}
.ya4{bottom:586.090667pt;}
.y69{bottom:587.810667pt;}
.y243{bottom:588.857333pt;}
.y10b{bottom:588.949333pt;}
.y155{bottom:589.538667pt;}
.y16d{bottom:590.042667pt;}
.y190{bottom:591.912000pt;}
.y263{bottom:594.485333pt;}
.y82{bottom:595.214667pt;}
.y221{bottom:600.514667pt;}
.ybe{bottom:600.617333pt;}
.y2e{bottom:600.624000pt;}
.y1d5{bottom:600.994667pt;}
.y123{bottom:603.005333pt;}
.y8{bottom:604.832000pt;}
.y242{bottom:606.922667pt;}
.y1a6{bottom:607.885333pt;}
.yf0{bottom:609.946667pt;}
.y18f{bottom:609.977333pt;}
.yd8{bottom:610.702667pt;}
.y209{bottom:612.773333pt;}
.y4d{bottom:614.680000pt;}
.y1ec{bottom:615.213333pt;}
.ya3{bottom:618.482667pt;}
.y13e{bottom:621.741333pt;}
.y2d{bottom:621.812000pt;}
.y68{bottom:622.281333pt;}
.y10a{bottom:623.420000pt;}
.y1bc{bottom:624.160000pt;}
.y241{bottom:624.988000pt;}
.y18e{bottom:628.044000pt;}
.y81{bottom:628.045333pt;}
.yd7{bottom:631.889333pt;}
.y16c{bottom:632.170667pt;}
.y154{bottom:632.600000pt;}
.y1d4{bottom:635.258667pt;}
.ybd{bottom:637.586667pt;}
.yef{bottom:641.426667pt;}
.y220{bottom:642.597333pt;}
.y13d{bottom:642.929333pt;}
.y2c{bottom:642.998667pt;}
.y240{bottom:643.054667pt;}
.y67{bottom:643.469333pt;}
.y262{bottom:644.028000pt;}
.y1bb{bottom:645.348000pt;}
.y4c{bottom:645.365333pt;}
.y122{bottom:645.806667pt;}
.y18d{bottom:646.109333pt;}
.ya2{bottom:646.716000pt;}
.y1eb{bottom:649.345333pt;}
.y1a5{bottom:651.373333pt;}
.y153{bottom:653.786667pt;}
.y7{bottom:656.188000pt;}
.y109{bottom:657.890667pt;}
.y80{bottom:660.876000pt;}
.y23f{bottom:661.120000pt;}
.y261{bottom:662.093333pt;}
.y208{bottom:662.316000pt;}
.yd6{bottom:663.369333pt;}
.y16b{bottom:664.009333pt;}
.y18c{bottom:664.174667pt;}
.y2b{bottom:664.186667pt;}
.y121{bottom:666.994667pt;}
.yee{bottom:667.728000pt;}
.y1d3{bottom:669.521333pt;}
.ya0{bottom:672.729333pt;}
.y66{bottom:677.940000pt;}
.y1ba{bottom:679.818667pt;}
.y260{bottom:680.158667pt;}
.y207{bottom:680.381333pt;}
.y18b{bottom:682.240000pt;}
.y23e{bottom:683.329333pt;}
.y1ea{bottom:683.476000pt;}
.ya1{bottom:683.664000pt;}
.y21f{bottom:685.036000pt;}
.y152{bottom:685.266667pt;}
.y1a4{bottom:685.844000pt;}
.y13c{bottom:686.029333pt;}
.y4b{bottom:687.740000pt;}
.y7f{bottom:690.428000pt;}
.y108{bottom:692.362667pt;}
.y6{bottom:692.980000pt;}
.ybc{bottom:693.748000pt;}
.y9f{bottom:694.446667pt;}
.y16a{bottom:695.848000pt;}
.y1d2{bottom:697.144000pt;}
.y25f{bottom:698.225333pt;}
.y206{bottom:698.446667pt;}
.y65{bottom:699.126667pt;}
.y120{bottom:700.137333pt;}
.y2a{bottom:700.977333pt;}
.y23d{bottom:701.396000pt;}
.y13b{bottom:704.096000pt;}
.y18a{bottom:704.450667pt;}
.y4a{bottom:708.926667pt;}
.yd5{bottom:711.716000pt;}
.yed{bottom:716.329333pt;}
.y205{bottom:716.512000pt;}
.y1e9{bottom:716.930667pt;}
.y23c{bottom:719.461333pt;}
.y1a3{bottom:720.314667pt;}
.y25e{bottom:720.434667pt;}
.y13a{bottom:722.161333pt;}
.y29{bottom:722.165333pt;}
.y169{bottom:722.422667pt;}
.y189{bottom:722.516000pt;}
.y1b9{bottom:723.305333pt;}
.y107{bottom:726.833333pt;}
.ybb{bottom:728.218667pt;}
.y9e{bottom:729.661333pt;}
.y49{bottom:730.114667pt;}
.y11f{bottom:730.626667pt;}
.y1d1{bottom:731.406667pt;}
.yd4{bottom:732.904000pt;}
.y7e{bottom:733.068000pt;}
.y151{bottom:733.441333pt;}
.y64{bottom:733.598667pt;}
.y21e{bottom:734.577333pt;}
.y25d{bottom:738.500000pt;}
.y204{bottom:738.722667pt;}
.y188{bottom:740.581333pt;}
.y23b{bottom:741.670667pt;}
.y5{bottom:742.688000pt;}
.y28{bottom:743.352000pt;}
.y139{bottom:744.370667pt;}
.y106{bottom:748.020000pt;}
.yec{bottom:750.800000pt;}
.y48{bottom:751.301333pt;}
.y21d{bottom:752.642667pt;}
.y150{bottom:754.628000pt;}
.y1a2{bottom:754.785333pt;}
.y25c{bottom:756.566667pt;}
.y203{bottom:756.788000pt;}
.y1b8{bottom:757.777333pt;}
.y23a{bottom:759.736000pt;}
.y1e8{bottom:760.242667pt;}
.y9d{bottom:761.141333pt;}
.y138{bottom:762.436000pt;}
.yba{bottom:762.689333pt;}
.y187{bottom:762.790667pt;}
.y27{bottom:764.540000pt;}
.y168{bottom:764.550667pt;}
.y1d0{bottom:765.670667pt;}
.y7d{bottom:765.900000pt;}
.yd3{bottom:766.882667pt;}
.y63{bottom:768.069333pt;}
.y4{bottom:768.989333pt;}
.y21c{bottom:770.709333pt;}
.y47{bottom:772.489333pt;}
.y11e{bottom:773.429333pt;}
.y202{bottom:774.853333pt;}
.y1a1{bottom:775.973333pt;}
.y239{bottom:777.802667pt;}
.y25b{bottom:778.776000pt;}
.y1b7{bottom:778.964000pt;}
.y186{bottom:780.857333pt;}
.y1e7{bottom:781.429333pt;}
.y105{bottom:782.490667pt;}
.y137{bottom:784.646667pt;}
.yeb{bottom:785.270667pt;}
.y26{bottom:785.726667pt;}
.y167{bottom:785.737333pt;}
.y14f{bottom:786.621333pt;}
.y21b{bottom:792.918667pt;}
.y46{bottom:793.676000pt;}
.y11d{bottom:794.616000pt;}
.y238{bottom:795.868000pt;}
.y25a{bottom:796.841333pt;}
.y201{bottom:797.062667pt;}
.yb9{bottom:797.160000pt;}
.y7c{bottom:798.730667pt;}
.y185{bottom:798.922667pt;}
.y1cf{bottom:799.518667pt;}
.yd2{bottom:799.876000pt;}
.y136{bottom:802.712000pt;}
.y3{bottom:803.261333pt;}
.y9c{bottom:808.668000pt;}
.y21a{bottom:810.984000pt;}
.y62{bottom:811.556000pt;}
.y1b6{bottom:813.434667pt;}
.y45{bottom:814.864000pt;}
.y200{bottom:815.129333pt;}
.y104{bottom:816.961333pt;}
.y184{bottom:816.988000pt;}
.y166{bottom:817.217333pt;}
.y237{bottom:818.077333pt;}
.y259{bottom:819.052000pt;}
.y1a0{bottom:819.460000pt;}
.y14e{bottom:820.266667pt;}
.y25{bottom:822.518667pt;}
.y135{bottom:824.922667pt;}
.y11c{bottom:827.760000pt;}
.yea{bottom:828.758667pt;}
.y9b{bottom:829.856000pt;}
.y7b{bottom:831.561333pt;}
.yb8{bottom:831.630667pt;}
.y61{bottom:832.744000pt;}
.y219{bottom:833.194667pt;}
.y1e5{bottom:833.541333pt;}
.y1e6{bottom:834.018667pt;}
.y236{bottom:836.142667pt;}
.y258{bottom:837.117333pt;}
.y1ff{bottom:837.338667pt;}
.y183{bottom:839.197333pt;}
.y2{bottom:839.792000pt;}
.y1ce{bottom:842.898667pt;}
.y134{bottom:842.988000pt;}
.yd1{bottom:843.109333pt;}
.y24{bottom:843.706667pt;}
.y44{bottom:846.344000pt;}
.ye9{bottom:849.945333pt;}
.y218{bottom:851.260000pt;}
.y103{bottom:851.433333pt;}
.y14d{bottom:853.910667pt;}
.y19f{bottom:853.930667pt;}
.y235{bottom:854.209333pt;}
.y257{bottom:855.182667pt;}
.y1fe{bottom:855.404000pt;}
.y1b5{bottom:856.922667pt;}
.y182{bottom:857.264000pt;}
.y11b{bottom:860.904000pt;}
.y7a{bottom:861.113333pt;}
.y9a{bottom:862.248000pt;}
.y165{bottom:864.458667pt;}
.y23{bottom:864.893333pt;}
.y133{bottom:865.197333pt;}
.y60{bottom:867.214667pt;}
.y1fd{bottom:873.469333pt;}
.y1cd{bottom:874.378667pt;}
.yb7{bottom:875.118667pt;}
.y181{bottom:875.329333pt;}
.y1{bottom:876.321333pt;}
.y234{bottom:876.418667pt;}
.yd0{bottom:877.086667pt;}
.y256{bottom:877.392000pt;}
.y1b4{bottom:878.109333pt;}
.y1e4{bottom:879.126667pt;}
.ye8{bottom:884.416000pt;}
.y102{bottom:885.904000pt;}
.y22{bottom:886.081333pt;}
.y132{bottom:886.216000pt;}
.y79{bottom:887.128000pt;}
.y5f{bottom:888.401333pt;}
.y43{bottom:888.426667pt;}
.y11a{bottom:891.393333pt;}
.y217{bottom:891.536000pt;}
.y233{bottom:894.484000pt;}
.y99{bottom:894.638667pt;}
.y255{bottom:895.458667pt;}
.y1fc{bottom:895.680000pt;}
.y164{bottom:896.297333pt;}
.y180{bottom:897.538667pt;}
.y78{bottom:898.061333pt;}
.y101{bottom:907.090667pt;}
.yb6{bottom:909.589333pt;}
.ycf{bottom:911.065333pt;}
.y119{bottom:912.580000pt;}
.y1fb{bottom:913.745333pt;}
.y232{bottom:915.502667pt;}
.y17f{bottom:915.605333pt;}
.y98{bottom:915.826667pt;}
.y254{bottom:916.477333pt;}
.y21{bottom:922.872000pt;}
.y1fa{bottom:934.764000pt;}
.y17e{bottom:935.738667pt;}
.y20{bottom:944.060000pt;}
.hf{height:2.550443pt;}
.h1c{height:6.557733pt;}
.h3{height:40.785489pt;}
.h1f{height:43.636400pt;}
.h4{height:43.694582pt;}
.h8{height:47.820800pt;}
.h6{height:47.884561pt;}
.h2{height:54.400790pt;}
.hc{height:55.016400pt;}
.h13{height:56.984400pt;}
.h7{height:57.461313pt;}
.hb{height:58.205733pt;}
.h1d{height:58.211067pt;}
.h1e{height:59.336400pt;}
.h18{height:62.269733pt;}
.h5{height:69.045231pt;}
.h19{height:69.873894pt;}
.h10{height:73.323776pt;}
.h1a{height:73.329109pt;}
.h14{height:74.924561pt;}
.h1{height:76.699200pt;}
.h20{height:90.951467pt;}
.hd{height:91.559467pt;}
.h9{height:92.454443pt;}
.h12{height:100.363776pt;}
.h1b{height:110.365733pt;}
.h11{height:110.371067pt;}
.he{height:133.259776pt;}
.h15{height:134.690133pt;}
.h16{height:136.187776pt;}
.ha{height:151.240400pt;}
.h17{height:151.245733pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:96.000000pt;}
.x29{left:104.501333pt;}
.x34{left:107.277333pt;}
.x4{left:115.718667pt;}
.xf{left:119.406667pt;}
.x11{left:133.148000pt;}
.xa{left:135.020000pt;}
.x2{left:140.540000pt;}
.x1{left:143.758667pt;}
.xb{left:150.302667pt;}
.x28{left:151.364000pt;}
.x31{left:152.589333pt;}
.x23{left:153.750667pt;}
.x9{left:156.714667pt;}
.x22{left:158.181333pt;}
.x21{left:159.426667pt;}
.x2c{left:161.872000pt;}
.xc{left:169.357333pt;}
.x17{left:192.673333pt;}
.x24{left:202.066667pt;}
.x33{left:203.606667pt;}
.x1c{left:219.970667pt;}
.x2d{left:229.194667pt;}
.x1d{left:231.304000pt;}
.x18{left:241.196000pt;}
.x12{left:256.021333pt;}
.x1b{left:282.774667pt;}
.x2a{left:312.324000pt;}
.x19{left:315.868000pt;}
.x15{left:322.492000pt;}
.x16{left:323.698667pt;}
.x26{left:328.434667pt;}
.x7{left:340.865333pt;}
.x3{left:346.080000pt;}
.x6{left:348.066667pt;}
.x2e{left:353.889333pt;}
.x5{left:361.925333pt;}
.x10{left:369.620000pt;}
.x8{left:376.237333pt;}
.x25{left:397.245333pt;}
.x27{left:400.197333pt;}
.xe{left:404.098667pt;}
.x1a{left:418.509333pt;}
.x1e{left:427.257333pt;}
.x32{left:438.846667pt;}
.x13{left:462.176000pt;}
.x2f{left:478.582667pt;}
.x14{left:504.884000pt;}
.x1f{left:506.882667pt;}
.x2b{left:520.146667pt;}
.x20{left:549.590667pt;}
.x30{left:603.276000pt;}
}




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